import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { PdfGroupWhereUniqueInputObjectSchema as PdfGroupWhereUniqueInputObjectSchema } from './PdfGroupWhereUniqueInput.schema'; import { PdfGroupCreateWithoutPdfsInputObjectSchema as PdfGroupCreateWithoutPdfsInputObjectSchema } from './PdfGroupCreateWithoutPdfsInput.schema'; import { PdfGroupUncheckedCreateWithoutPdfsInputObjectSchema as PdfGroupUncheckedCreateWithoutPdfsInputObjectSchema } from './PdfGroupUncheckedCreateWithoutPdfsInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => PdfGroupWhereUniqueInputObjectSchema), create: z.union([z.lazy(() => PdfGroupCreateWithoutPdfsInputObjectSchema), z.lazy(() => PdfGroupUncheckedCreateWithoutPdfsInputObjectSchema)]) }).strict(); export const PdfGroupCreateOrConnectWithoutPdfsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const PdfGroupCreateOrConnectWithoutPdfsInputObjectZodSchema = makeSchema();