import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { AppointmentCreateManyPatientInputObjectSchema as AppointmentCreateManyPatientInputObjectSchema } from './AppointmentCreateManyPatientInput.schema' const makeSchema = () => z.object({ data: z.union([z.lazy(() => AppointmentCreateManyPatientInputObjectSchema), z.lazy(() => AppointmentCreateManyPatientInputObjectSchema).array()]), skipDuplicates: z.boolean().optional() }).strict(); export const AppointmentCreateManyPatientInputEnvelopeObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const AppointmentCreateManyPatientInputEnvelopeObjectZodSchema = makeSchema();