File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 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" ,
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" ,
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import * as nock from 'nock';
1717import { URL } from 'url' ;
1818import { GoogleApis } from '../src' ;
1919import { Utils } from './utils' ;
20- import { GoogleAuth } from 'google-auth-library' ;
20+ import { AuthClient , GoogleAuth } from 'google-auth-library' ;
2121import * as sinon from 'sinon' ;
2222import { GaxiosResponse } from 'gaxios' ;
2323import { 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
You can’t perform that action at this time.
0 commit comments