import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { PatientConversationWhereUniqueInputObjectSchema as PatientConversationWhereUniqueInputObjectSchema } from './PatientConversationWhereUniqueInput.schema'; import { PatientConversationCreateWithoutPatientInputObjectSchema as PatientConversationCreateWithoutPatientInputObjectSchema } from './PatientConversationCreateWithoutPatientInput.schema'; import { PatientConversationUncheckedCreateWithoutPatientInputObjectSchema as PatientConversationUncheckedCreateWithoutPatientInputObjectSchema } from './PatientConversationUncheckedCreateWithoutPatientInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => PatientConversationWhereUniqueInputObjectSchema), create: z.union([z.lazy(() => PatientConversationCreateWithoutPatientInputObjectSchema), z.lazy(() => PatientConversationUncheckedCreateWithoutPatientInputObjectSchema)]) }).strict(); export const PatientConversationCreateOrConnectWithoutPatientInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const PatientConversationCreateOrConnectWithoutPatientInputObjectZodSchema = makeSchema();