Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateNestedManyWithoutUserInput.schema.ts
2026-04-04 22:13:55 -04:00

17 lines
2.0 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
import { NpiProviderCreateWithoutUserInputObjectSchema as NpiProviderCreateWithoutUserInputObjectSchema } from './NpiProviderCreateWithoutUserInput.schema';
import { NpiProviderUncheckedCreateWithoutUserInputObjectSchema as NpiProviderUncheckedCreateWithoutUserInputObjectSchema } from './NpiProviderUncheckedCreateWithoutUserInput.schema';
import { NpiProviderCreateOrConnectWithoutUserInputObjectSchema as NpiProviderCreateOrConnectWithoutUserInputObjectSchema } from './NpiProviderCreateOrConnectWithoutUserInput.schema';
import { NpiProviderCreateManyUserInputEnvelopeObjectSchema as NpiProviderCreateManyUserInputEnvelopeObjectSchema } from './NpiProviderCreateManyUserInputEnvelope.schema';
import { NpiProviderWhereUniqueInputObjectSchema as NpiProviderWhereUniqueInputObjectSchema } from './NpiProviderWhereUniqueInput.schema'
const makeSchema = () => z.object({
create: z.union([z.lazy(() => NpiProviderCreateWithoutUserInputObjectSchema), z.lazy(() => NpiProviderCreateWithoutUserInputObjectSchema).array(), z.lazy(() => NpiProviderUncheckedCreateWithoutUserInputObjectSchema), z.lazy(() => NpiProviderUncheckedCreateWithoutUserInputObjectSchema).array()]).optional(),
connectOrCreate: z.union([z.lazy(() => NpiProviderCreateOrConnectWithoutUserInputObjectSchema), z.lazy(() => NpiProviderCreateOrConnectWithoutUserInputObjectSchema).array()]).optional(),
createMany: z.lazy(() => NpiProviderCreateManyUserInputEnvelopeObjectSchema).optional(),
connect: z.union([z.lazy(() => NpiProviderWhereUniqueInputObjectSchema), z.lazy(() => NpiProviderWhereUniqueInputObjectSchema).array()]).optional()
}).strict();
export const NpiProviderUncheckedCreateNestedManyWithoutUserInputObjectSchema: z.ZodType<Prisma.NpiProviderUncheckedCreateNestedManyWithoutUserInput> = makeSchema() as unknown as z.ZodType<Prisma.NpiProviderUncheckedCreateNestedManyWithoutUserInput>;
export const NpiProviderUncheckedCreateNestedManyWithoutUserInputObjectZodSchema = makeSchema();