import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { PatientConversationWhereUniqueInputObjectSchema as PatientConversationWhereUniqueInputObjectSchema } from './PatientConversationWhereUniqueInput.schema'; import { PatientConversationUpdateWithoutUserInputObjectSchema as PatientConversationUpdateWithoutUserInputObjectSchema } from './PatientConversationUpdateWithoutUserInput.schema'; import { PatientConversationUncheckedUpdateWithoutUserInputObjectSchema as PatientConversationUncheckedUpdateWithoutUserInputObjectSchema } from './PatientConversationUncheckedUpdateWithoutUserInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => PatientConversationWhereUniqueInputObjectSchema), data: z.union([z.lazy(() => PatientConversationUpdateWithoutUserInputObjectSchema), z.lazy(() => PatientConversationUncheckedUpdateWithoutUserInputObjectSchema)]) }).strict(); export const PatientConversationUpdateWithWhereUniqueWithoutUserInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const PatientConversationUpdateWithWhereUniqueWithoutUserInputObjectZodSchema = makeSchema();