import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { CloudFileCreateWithoutUserInputObjectSchema as CloudFileCreateWithoutUserInputObjectSchema } from './CloudFileCreateWithoutUserInput.schema'; import { CloudFileUncheckedCreateWithoutUserInputObjectSchema as CloudFileUncheckedCreateWithoutUserInputObjectSchema } from './CloudFileUncheckedCreateWithoutUserInput.schema'; import { CloudFileCreateOrConnectWithoutUserInputObjectSchema as CloudFileCreateOrConnectWithoutUserInputObjectSchema } from './CloudFileCreateOrConnectWithoutUserInput.schema'; import { CloudFileCreateManyUserInputEnvelopeObjectSchema as CloudFileCreateManyUserInputEnvelopeObjectSchema } from './CloudFileCreateManyUserInputEnvelope.schema'; import { CloudFileWhereUniqueInputObjectSchema as CloudFileWhereUniqueInputObjectSchema } from './CloudFileWhereUniqueInput.schema' const makeSchema = () => z.object({ create: z.union([z.lazy(() => CloudFileCreateWithoutUserInputObjectSchema), z.lazy(() => CloudFileCreateWithoutUserInputObjectSchema).array(), z.lazy(() => CloudFileUncheckedCreateWithoutUserInputObjectSchema), z.lazy(() => CloudFileUncheckedCreateWithoutUserInputObjectSchema).array()]).optional(), connectOrCreate: z.union([z.lazy(() => CloudFileCreateOrConnectWithoutUserInputObjectSchema), z.lazy(() => CloudFileCreateOrConnectWithoutUserInputObjectSchema).array()]).optional(), createMany: z.lazy(() => CloudFileCreateManyUserInputEnvelopeObjectSchema).optional(), connect: z.union([z.lazy(() => CloudFileWhereUniqueInputObjectSchema), z.lazy(() => CloudFileWhereUniqueInputObjectSchema).array()]).optional() }).strict(); export const CloudFileUncheckedCreateNestedManyWithoutUserInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const CloudFileUncheckedCreateNestedManyWithoutUserInputObjectZodSchema = makeSchema();