Variable postCreditCardRequestSchemaConst
postCreditCardRequestSchema: ZodObject<
{
body: ZodObject<
{
card_number: ZodString;
cvv: ZodString;
expiry_month: ZodInt;
expiry_year: ZodInt;
},
$strip,
>;
path: ZodOptional<ZodNever>;
query: ZodOptional<ZodNever>;
},
$strip,
> = ...