Variable zAccessTokenRequestConst
zAccessTokenRequest: ZodDiscriminatedUnion<
[
ZodObject<
{
code: ZodString;
code_verifier: ZodString;
grant_type: ZodLiteral<"authorization_code">;
redirect_uri: ZodString;
},
$strip,
>,
ZodObject<
{
grant_type: ZodLiteral<"refresh_token">;
refresh_token: ZodString;
scope: ZodOptional<ZodString>;
},
$strip,
>,
],
"grant_type",
> = ...