import { z } from 'zod' import { AnyZodObject } from 'zod/lib/types' export const getDiscriminatedUnionSchema = (key: Key, value: Value) => (schema: Schema) => z.object({ type: z.literal(value) }).merge(schema)