// This file is auto-generated by scripts/generate-schemas.ts // Do not edit manually. import { z } from "zod"; import { ChangeSubscriptionSchema, DeliveryFormatSchema, DestinationSchema, EventSubscriptionSchema, MessageSubscriptionSchema, } from "./common.ts"; export const SubscriptionDraftSchema = z.object({ destination: DestinationSchema, key: z.string().nullish(), messages: z.array(MessageSubscriptionSchema).nullish(), changes: z.array(ChangeSubscriptionSchema).nullish(), events: z.array(EventSubscriptionSchema).nullish(), format: DeliveryFormatSchema.nullish(), });