import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { PdfGroupCreateWithoutPatientInputObjectSchema as PdfGroupCreateWithoutPatientInputObjectSchema } from './PdfGroupCreateWithoutPatientInput.schema'; import { PdfGroupUncheckedCreateWithoutPatientInputObjectSchema as PdfGroupUncheckedCreateWithoutPatientInputObjectSchema } from './PdfGroupUncheckedCreateWithoutPatientInput.schema'; import { PdfGroupCreateOrConnectWithoutPatientInputObjectSchema as PdfGroupCreateOrConnectWithoutPatientInputObjectSchema } from './PdfGroupCreateOrConnectWithoutPatientInput.schema'; import { PdfGroupCreateManyPatientInputEnvelopeObjectSchema as PdfGroupCreateManyPatientInputEnvelopeObjectSchema } from './PdfGroupCreateManyPatientInputEnvelope.schema'; import { PdfGroupWhereUniqueInputObjectSchema as PdfGroupWhereUniqueInputObjectSchema } from './PdfGroupWhereUniqueInput.schema' const makeSchema = () => z.object({ create: z.union([z.lazy(() => PdfGroupCreateWithoutPatientInputObjectSchema), z.lazy(() => PdfGroupCreateWithoutPatientInputObjectSchema).array(), z.lazy(() => PdfGroupUncheckedCreateWithoutPatientInputObjectSchema), z.lazy(() => PdfGroupUncheckedCreateWithoutPatientInputObjectSchema).array()]).optional(), connectOrCreate: z.union([z.lazy(() => PdfGroupCreateOrConnectWithoutPatientInputObjectSchema), z.lazy(() => PdfGroupCreateOrConnectWithoutPatientInputObjectSchema).array()]).optional(), createMany: z.lazy(() => PdfGroupCreateManyPatientInputEnvelopeObjectSchema).optional(), connect: z.union([z.lazy(() => PdfGroupWhereUniqueInputObjectSchema), z.lazy(() => PdfGroupWhereUniqueInputObjectSchema).array()]).optional() }).strict(); export const PdfGroupCreateNestedManyWithoutPatientInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const PdfGroupCreateNestedManyWithoutPatientInputObjectZodSchema = makeSchema();