webhook: ZodObject<
{
event_types: ZodOptional<ZodArray<ZodString, "many">>;
secret: ZodOptional<ZodString>;
url: ZodString;
webhook_id: ZodString;
},
"strip",
ZodTypeAny,
{
event_types?: string[];
secret?: string;
url: string;
webhook_id: string;
},
{
event_types?: string[];
secret?: string;
url: string;
webhook_id: string;
},
> = ...