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

18 lines
502 B
TypeScript

import { z } from "zod/v4";
export const VercelResourceRotateSecretsSchema = z.object({
resource: z
.object({
id: z.string().meta({
description: "The unique identifier of the resource.",
}),
})
.meta({ description: "The resource whose secrets should be rotated." }),
installation_id: z.string().meta({
description: "The Vercel integration configuration ID.",
}),
vercel_request_body: z.any().meta({
description: "The raw request body from Vercel's rotation request.",
}),
});