import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { CloudFolderWhereUniqueInputObjectSchema as CloudFolderWhereUniqueInputObjectSchema } from './CloudFolderWhereUniqueInput.schema'; import { CloudFolderCreateWithoutPatientInputObjectSchema as CloudFolderCreateWithoutPatientInputObjectSchema } from './CloudFolderCreateWithoutPatientInput.schema'; import { CloudFolderUncheckedCreateWithoutPatientInputObjectSchema as CloudFolderUncheckedCreateWithoutPatientInputObjectSchema } from './CloudFolderUncheckedCreateWithoutPatientInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => CloudFolderWhereUniqueInputObjectSchema), create: z.union([z.lazy(() => CloudFolderCreateWithoutPatientInputObjectSchema), z.lazy(() => CloudFolderUncheckedCreateWithoutPatientInputObjectSchema)]) }).strict(); export const CloudFolderCreateOrConnectWithoutPatientInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const CloudFolderCreateOrConnectWithoutPatientInputObjectZodSchema = makeSchema();