import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { UserWhereUniqueInputObjectSchema as UserWhereUniqueInputObjectSchema } from './UserWhereUniqueInput.schema'; import { UserCreateWithoutInsuranceCredentialsInputObjectSchema as UserCreateWithoutInsuranceCredentialsInputObjectSchema } from './UserCreateWithoutInsuranceCredentialsInput.schema'; import { UserUncheckedCreateWithoutInsuranceCredentialsInputObjectSchema as UserUncheckedCreateWithoutInsuranceCredentialsInputObjectSchema } from './UserUncheckedCreateWithoutInsuranceCredentialsInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => UserWhereUniqueInputObjectSchema), create: z.union([z.lazy(() => UserCreateWithoutInsuranceCredentialsInputObjectSchema), z.lazy(() => UserUncheckedCreateWithoutInsuranceCredentialsInputObjectSchema)]) }).strict(); export const UserCreateOrConnectWithoutInsuranceCredentialsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const UserCreateOrConnectWithoutInsuranceCredentialsInputObjectZodSchema = makeSchema();