Variable zRefreshTokenProfileJwtPayloadConst
zRefreshTokenProfileJwtPayload: ZodObject<
{
aud: ZodString;
client_id: ZodString;
cnf: ZodObject<{ jkt: ZodString }, $strip>;
exp: ZodNumber;
iat: ZodNumber;
iss: ZodString;
jti: ZodString;
nbf: ZodNumber;
nonce: ZodOptional<ZodString>;
status: ZodOptional<ZodRecord<ZodString, ZodAny>>;
sub: ZodString;
trust_chain: ZodOptional<ZodTuple<[ZodString], ZodString>>;
},
$loose,
> = ...