Skip to content

Commit f775898

Browse files
committed
chore: update googleapis common
1 parent 1927cc8 commit f775898

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@
5555
"client library"
5656
],
5757
"dependencies": {
58-
"google-auth-library": "^10.0.0-rc.1",
59-
"googleapis-common": "^8.0.2-rc.0"
58+
"google-auth-library": "^10.1.0",
59+
"googleapis-common": "^8.0.0"
6060
},
6161
"devDependencies": {
6262
"@types/execa": "^2.0.2",
@@ -73,11 +73,10 @@
7373
"@types/url-template": "^2.0.28",
7474
"@types/yargs-parser": "^21.0.3",
7575
"c8": "^10.1.3",
76-
"cheerio": "^1.0.0",
7776
"codecov": "^3.8.3",
7877
"cross-env": "^7.0.3",
7978
"execa": "^5.0.0",
80-
"gaxios": "^7.0.0-rc.5",
79+
"gaxios": "^7.1.0",
8180
"gts": "^6.0.2",
8281
"js-green-licenses": "^4.0.0",
8382
"jsdoc": "^4.0.4",

test/test.options.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import * as nock from 'nock';
1717
import {URL} from 'url';
1818
import {GoogleApis} from '../src';
1919
import {Utils} from './utils';
20-
import {GoogleAuth} from 'google-auth-library';
20+
import {AuthClient, GoogleAuth} from 'google-auth-library';
2121
import * as sinon from 'sinon';
2222
import {GaxiosResponse} from 'gaxios';
2323
import {JSONClient} from 'google-auth-library/build/src/auth/googleauth';
@@ -309,7 +309,7 @@ describe('Options', () => {
309309
const auth = new GoogleAuth();
310310
const stub = sandbox.stub(auth, 'request').resolves({} as GaxiosResponse);
311311
// global options
312-
google.options({auth: auth as GoogleAuth<JSONClient>});
312+
google.options({auth: auth as GoogleAuth<AuthClient>});
313313
// per-API options
314314
const drive = google.drive({version: 'v3', auth});
315315
// per-call options

0 commit comments

Comments
 (0)