Files
cfw-autumn/shared/api/webhooks/vercel/vercelWebhookEvent.ts
2026-03-23 16:29:36 +00:00

11 lines
268 B
TypeScript

import { z } from "zod/v4";
export const VercelWebhookEventSchema = z.object({
installation_id: z.string().meta({
description: "The Vercel integration configuration ID.",
}),
event: z.any().meta({
description: "The raw Vercel webhook event payload.",
}),
});