/
opt
/
canhelp
/
node_modules
/
google-auth-library
/
build
/
src
/
auth
/
/opt/canhelp/node_modules/google-auth-library/build/src/auth
mkdir
upload
Name
Size
Mode
Actions
authclient.d.ts
10764
0644
edit
dl
rm
authclient.js
11247
0644
edit
dl
rm
awsclient.d.ts
5315
0644
edit
dl
rm
awsclient.js
7556
0644
edit
dl
rm
awsrequestsigner.d.ts
1626
0644
edit
dl
rm
awsrequestsigner.js
9442
0644
edit
dl
rm
baseexternalclient.d.ts
13020
0644
edit
dl
rm
baseexternalclient.js
20857
0644
edit
dl
rm
certificatesubjecttokensupplier.d.ts
2202
0644
edit
dl
rm
certificatesubjecttokensupplier.js
10619
0644
edit
dl
rm
computeclient.d.ts
1359
0644
edit
dl
rm
computeclient.js
4497
0644
edit
dl
rm
credentials.d.ts
2359
0644
edit
dl
rm
credentials.js
704
0644
edit
dl
rm
defaultawssecuritycredentialssupplier.d.ts
3795
0644
edit
dl
rm
defaultawssecuritycredentialssupplier.js
9330
0644
edit
dl
rm
downscopedclient.d.ts
6693
0644
edit
dl
rm
downscopedclient.js
12353
0644
edit
dl
rm
envDetect.d.ts
363
0644
edit
dl
rm
envDetect.js
2831
0644
edit
dl
rm
executable-response.d.ts
4489
0644
edit
dl
rm
executable-response.js
7519
0644
edit
dl
rm
externalAccountAuthorizedUserClient.d.ts
3173
0644
edit
dl
rm
externalAccountAuthorizedUserClient.js
10005
0644
edit
dl
rm
externalclient.d.ts
1528
0644
edit
dl
rm
externalclient.js
3048
0644
edit
dl
rm
filesubjecttokensupplier.d.ts
1608
0644
edit
dl
rm
filesubjecttokensupplier.js
3515
0644
edit
dl
rm
googleauth.d.ts
23574
0644
edit
dl
rm
googleauth.js
36374
0644
edit
dl
rm
iam.d.ts
623
0644
edit
dl
rm
iam.js
1373
0644
edit
dl
rm
identitypoolclient.d.ts
5626
0644
edit
dl
rm
identitypoolclient.js
6775
0644
edit
dl
rm
idtokenclient.d.ts
938
0644
edit
dl
rm
idtokenclient.js
2106
0644
edit
dl
rm
impersonated.d.ts
5687
0644
edit
dl
rm
impersonated.js
8654
0644
edit
dl
rm
jwtaccess.d.ts
2336
0644
edit
dl
rm
jwtaccess.js
7213
0644
edit
dl
rm
jwtclient.d.ts
5122
0644
edit
dl
rm
jwtclient.js
11256
0644
edit
dl
rm
loginticket.d.ts
5367
0644
edit
dl
rm
loginticket.js
1795
0644
edit
dl
rm
oauth2client.d.ts
25326
0644
edit
dl
rm
oauth2client.js
33662
0644
edit
dl
rm
oauth2common.d.ts
4094
0644
edit
dl
rm
oauth2common.js
8080
0644
edit
dl
rm
passthrough.d.ts
1097
0644
edit
dl
rm
passthrough.js
1842
0644
edit
dl
rm
pluggable-auth-client.d.ts
5485
0644
edit
dl
rm
pluggable-auth-client.js
10002
0644
edit
dl
rm
pluggable-auth-handler.d.ts
2109
0644
edit
dl
rm
pluggable-auth-handler.js
7260
0644
edit
dl
rm
refreshclient.d.ts
3436
0644
edit
dl
rm
refreshclient.js
6650
0644
edit
dl
rm
stscredentials.d.ts
5261
0644
edit
dl
rm
stscredentials.js
4738
0644
edit
dl
rm
urlsubjecttokensupplier.d.ts
2186
0644
edit
dl
rm
urlsubjecttokensupplier.js
2859
0644
edit
dl
rm
Edit:
/opt/canhelp/node_modules/google-auth-library/build/src/auth/executable-response.d.ts
(4489B)
/** * Interface defining the JSON formatted response of a 3rd party executable * used by the pluggable auth client. */ export interface ExecutableResponseJson { /** * The version of the JSON response. Only version 1 is currently supported. * Always required. */ version: number; /** * Whether the executable ran successfully. Always required. */ success: boolean; /** * The epoch time for expiration of the token in seconds, required for * successful responses. */ expiration_time?: number; /** * The type of subject token in the response, currently supported values are: * urn:ietf:params:oauth:token-type:saml2 * urn:ietf:params:oauth:token-type:id_token * urn:ietf:params:oauth:token-type:jwt */ token_type?: string; /** * The error code from the executable, required when unsuccessful. */ code?: string; /** * The error message from the executable, required when unsuccessful. */ message?: string; /** * The ID token to be used as a subject token when token_type is id_token or jwt. */ id_token?: string; /** * The response to be used as a subject token when token_type is saml2. */ saml_response?: string; } /** * Defines the response of a 3rd party executable run by the pluggable auth client. */ export declare class ExecutableResponse { /** * The version of the Executable response. Only version 1 is currently supported. */ readonly version: number; /** * Whether the executable ran successfully. */ readonly success: boolean; /** * The epoch time for expiration of the token in seconds. */ readonly expirationTime?: number; /** * The type of subject token in the response, currently supported values are: * urn:ietf:params:oauth:token-type:saml2 * urn:ietf:params:oauth:token-type:id_token * urn:ietf:params:oauth:token-type:jwt */ readonly tokenType?: string; /** * The error code from the executable. */ readonly errorCode?: string; /** * The error message from the executable. */ readonly errorMessage?: string; /** * The subject token from the executable, format depends on tokenType. */ readonly subjectToken?: string; /** * Instantiates an ExecutableResponse instance using the provided JSON object * from the output of the executable. * @param responseJson Response from a 3rd party executable, loaded from a * run of the executable or a cached output file. */ constructor(responseJson: ExecutableResponseJson); /** * @return A boolean representing if the response has a valid token. Returns * true when the response was successful and the token is not expired. */ isValid(): boolean; /** * @return A boolean representing if the response is expired. Returns true if the * provided timeout has passed. */ isExpired(): boolean; } /** * An error thrown by the ExecutableResponse class. */ export declare class ExecutableResponseError extends Error { constructor(message: string); } /** * An error thrown when the 'version' field in an executable response is missing or invalid. */ export declare class InvalidVersionFieldError extends ExecutableResponseError { } /** * An error thrown when the 'success' field in an executable response is missing or invalid. */ export declare class InvalidSuccessFieldError extends ExecutableResponseError { } /** * An error thrown when the 'expiration_time' field in an executable response is missing or invalid. */ export declare class InvalidExpirationTimeFieldError extends ExecutableResponseError { } /** * An error thrown when the 'token_type' field in an executable response is missing or invalid. */ export declare class InvalidTokenTypeFieldError extends ExecutableResponseError { } /** * An error thrown when the 'code' field in an executable response is missing or invalid. */ export declare class InvalidCodeFieldError extends ExecutableResponseError { } /** * An error thrown when the 'message' field in an executable response is missing or invalid. */ export declare class InvalidMessageFieldError extends ExecutableResponseError { } /** * An error thrown when the subject token in an executable response is missing or invalid. */ export declare class InvalidSubjectTokenError extends ExecutableResponseError { }
Save
cmd:
run