import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { AppointmentArgsObjectSchema as AppointmentArgsObjectSchema } from './AppointmentArgs.schema'; import { PatientArgsObjectSchema as PatientArgsObjectSchema } from './PatientArgs.schema' const makeSchema = () => z.object({ appointment: z.union([z.boolean(), z.lazy(() => AppointmentArgsObjectSchema)]).optional(), patient: z.union([z.boolean(), z.lazy(() => PatientArgsObjectSchema)]).optional() }).strict(); export const AppointmentProcedureIncludeObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const AppointmentProcedureIncludeObjectZodSchema = makeSchema();