/opt/canhelp/node_modules/google-auth-library/build/src/auth
NameSizeModeActions
authclient.d.ts107640644editdlrm
authclient.js112470644editdlrm
awsclient.d.ts53150644editdlrm
awsclient.js75560644editdlrm
awsrequestsigner.d.ts16260644editdlrm
awsrequestsigner.js94420644editdlrm
baseexternalclient.d.ts130200644editdlrm
baseexternalclient.js208570644editdlrm
certificatesubjecttokensupplier.d.ts22020644editdlrm
certificatesubjecttokensupplier.js106190644editdlrm
computeclient.d.ts13590644editdlrm
computeclient.js44970644editdlrm
credentials.d.ts23590644editdlrm
credentials.js7040644editdlrm
defaultawssecuritycredentialssupplier.d.ts37950644editdlrm
defaultawssecuritycredentialssupplier.js93300644editdlrm
downscopedclient.d.ts66930644editdlrm
downscopedclient.js123530644editdlrm
envDetect.d.ts3630644editdlrm
envDetect.js28310644editdlrm
executable-response.d.ts44890644editdlrm
executable-response.js75190644editdlrm
externalAccountAuthorizedUserClient.d.ts31730644editdlrm
externalAccountAuthorizedUserClient.js100050644editdlrm
externalclient.d.ts15280644editdlrm
externalclient.js30480644editdlrm
filesubjecttokensupplier.d.ts16080644editdlrm
filesubjecttokensupplier.js35150644editdlrm
googleauth.d.ts235740644editdlrm
googleauth.js363740644editdlrm
iam.d.ts6230644editdlrm
iam.js13730644editdlrm
identitypoolclient.d.ts56260644editdlrm
identitypoolclient.js67750644editdlrm
idtokenclient.d.ts9380644editdlrm
idtokenclient.js21060644editdlrm
impersonated.d.ts56870644editdlrm
impersonated.js86540644editdlrm
jwtaccess.d.ts23360644editdlrm
jwtaccess.js72130644editdlrm
jwtclient.d.ts51220644editdlrm
jwtclient.js112560644editdlrm
loginticket.d.ts53670644editdlrm
loginticket.js17950644editdlrm
oauth2client.d.ts253260644editdlrm
oauth2client.js336620644editdlrm
oauth2common.d.ts40940644editdlrm
oauth2common.js80800644editdlrm
passthrough.d.ts10970644editdlrm
passthrough.js18420644editdlrm
pluggable-auth-client.d.ts54850644editdlrm
pluggable-auth-client.js100020644editdlrm
pluggable-auth-handler.d.ts21090644editdlrm
pluggable-auth-handler.js72600644editdlrm
refreshclient.d.ts34360644editdlrm
refreshclient.js66500644editdlrm
stscredentials.d.ts52610644editdlrm
stscredentials.js47380644editdlrm
urlsubjecttokensupplier.d.ts21860644editdlrm
urlsubjecttokensupplier.js28590644editdlrm
Edit: /opt/canhelp/node_modules/google-auth-library/build/src/auth/credentials.d.ts (2359B)
export interface Credentials { /** * This field is only present if the access_type parameter was set to offline in the authentication request. For details, see Refresh tokens. */ refresh_token?: string | null; /** * The time in ms at which this token is thought to expire. */ expiry_date?: number | null; /** * A token that can be sent to a Google API. */ access_token?: string | null; /** * Identifies the type of token returned. At this time, this field always has the value Bearer. */ token_type?: string | null; /** * A JWT that contains identity information about the user that is digitally signed by Google. */ id_token?: string | null; /** * The scopes of access granted by the access_token expressed as a list of space-delimited, case-sensitive strings. */ scope?: string; } export interface CredentialRequest { /** * This field is only present if the access_type parameter was set to offline in the authentication request. For details, see Refresh tokens. */ refresh_token?: string; /** * A token that can be sent to a Google API. */ access_token?: string; /** * Identifies the type of token returned. At this time, this field always has the value Bearer. */ token_type?: string; /** * The remaining lifetime of the access token in seconds. */ expires_in?: number; /** * A JWT that contains identity information about the user that is digitally signed by Google. */ id_token?: string; /** * The scopes of access granted by the access_token expressed as a list of space-delimited, case-sensitive strings. */ scope?: string; } export interface JWTInput { type?: string; client_email?: string; private_key?: string; private_key_id?: string; project_id?: string; client_id?: string; client_secret?: string; refresh_token?: string; quota_project_id?: string; universe_domain?: string; } export interface ImpersonatedJWTInput { type?: string; source_credentials?: JWTInput; service_account_impersonation_url?: string; delegates?: string[]; scopes?: string[]; } export interface CredentialBody { client_email?: string; private_key?: string; universe_domain?: string; }