Variable OAuthTokensSchemaConst
OAuthTokensSchema: ZodObject<
{
access_token: ZodString;
expires_in: ZodOptional<ZodCoercedNumber<unknown>>;
id_token: ZodOptional<ZodString>;
refresh_token: ZodOptional<ZodString>;
scope: ZodOptional<ZodString>;
token_type: ZodString;
},
$strip,
> = ...
OAuth 2.1 token response