Variable ClientAddressSchemaConst
ClientAddressSchema: ZodObject<
{
type: ZodEnum<["BILLING", "SHIPPING", "OTHER"]>;
name: ZodString;
street: ZodString;
city: ZodString;
state: ZodOptional<ZodString>;
postalCode: ZodString;
country: ZodString;
isDefault: ZodDefault<ZodBoolean>;
},
"strip",
ZodTypeAny,
{
type: "OTHER"
| "BILLING"
| "SHIPPING";
name: string;
street: string;
city: string;
state?: string;
postalCode: string;
country: string;
isDefault: boolean;
},
{
type: "OTHER"
| "BILLING"
| "SHIPPING";
name: string;
street: string;
city: string;
state?: string;
postalCode: string;
country: string;
isDefault?: boolean;
},
> = ...