Variable OAuthTokensSchemaConst
OAuthTokensSchema: ZodObject<
{
access_token: ZodString;
expires_in: ZodOptional<ZodNumber>;
refresh_token: ZodOptional<ZodString>;
scope: ZodOptional<ZodString>;
token_type: ZodString;
},
"strip",
ZodTypeAny,
{
access_token: string;
expires_in?: number;
refresh_token?: string;
scope?: string;
token_type: string;
},
{
access_token: string;
expires_in?: number;
refresh_token?: string;
scope?: string;
token_type: string;
},
> = ...
OAuth 2.1 token response