Change request method access modifier

Signed-off-by: Diego Mondragon <mdiegoarmando@google.com>
This commit is contained in:
Diego Mondragon
2023-12-12 14:36:12 -08:00
parent ef3cad4d00
commit f8cb33d4a4
@@ -92,7 +92,10 @@ export class CloudbuildClient implements CloudbuildApi {
);
}
async request(url: string, method: string = 'GET'): Promise<Response> {
private async request(
url: string,
method: string = 'GET',
): Promise<Response> {
const requestHeaders = {
Accept: '*/*',
Authorization: `Bearer ${await this.getToken()}`,