You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 3, 2026. It is now read-only.
I'm getting the following errors while updating from 5.18.3 to 5.19.0:
node_modules/@google-cloud/common/build/src/util.d.ts:42:18 - error TS2430: Interface 'MakeAuthenticatedRequestFactoryConfig' incorrectly extends interface 'GoogleAuthOptions<JSONClient>'.
Types of property 'authClient' are incompatible.
Type 'GoogleAuth<JSONClient> | undefined' is not assignable to type 'JSONClient | undefined'.
Type 'GoogleAuth<JSONClient>' is not assignable to type 'JSONClient | undefined'.
Type 'GoogleAuth<JSONClient>' is missing the following properties from type 'JWT': createScoped, getRequestMetadataAsync, fetchIdToken, hasUserScopes, and 53 more.
42 export interface MakeAuthenticatedRequestFactoryConfig extends GoogleAuthOptions {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
node_modules/@google-cloud/common/build/src/service.d.ts:29:18 - error TS2430: Interface 'ServiceOptions' incorrectly extends interface 'GoogleAuthOptions<JSONClient>'.
Types of property 'authClient' are incompatible.
Type 'GoogleAuth<JSONClient> | undefined' is not assignable to type 'JSONClient | undefined'.
29 export interface ServiceOptions extends GoogleAuthOptions {
~~~~~~~~~~~~~~
Found 2 errors.
Worth to say I am initializing the client without any explicit authentication.
Environment details
@google-cloud/storageversion: 5.19.0Steps to reproduce
I'm getting the following errors while updating from 5.18.3 to 5.19.0:
Worth to say I am initializing the client without any explicit authentication.
Thanks!