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