import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { PatientConversationWhereInputObjectSchema as PatientConversationWhereInputObjectSchema } from './PatientConversationWhereInput.schema'; import { PatientConversationUpdateWithoutPatientInputObjectSchema as PatientConversationUpdateWithoutPatientInputObjectSchema } from './PatientConversationUpdateWithoutPatientInput.schema'; import { PatientConversationUncheckedUpdateWithoutPatientInputObjectSchema as PatientConversationUncheckedUpdateWithoutPatientInputObjectSchema } from './PatientConversationUncheckedUpdateWithoutPatientInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => PatientConversationWhereInputObjectSchema).optional(), data: z.union([z.lazy(() => PatientConversationUpdateWithoutPatientInputObjectSchema), z.lazy(() => PatientConversationUncheckedUpdateWithoutPatientInputObjectSchema)]) }).strict(); export const PatientConversationUpdateToOneWithWhereWithoutPatientInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const PatientConversationUpdateToOneWithWhereWithoutPatientInputObjectZodSchema = makeSchema();