import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { UserWhereUniqueInputObjectSchema as UserWhereUniqueInputObjectSchema } from './UserWhereUniqueInput.schema'; import { UserCreateWithoutShoppingVendorsInputObjectSchema as UserCreateWithoutShoppingVendorsInputObjectSchema } from './UserCreateWithoutShoppingVendorsInput.schema'; import { UserUncheckedCreateWithoutShoppingVendorsInputObjectSchema as UserUncheckedCreateWithoutShoppingVendorsInputObjectSchema } from './UserUncheckedCreateWithoutShoppingVendorsInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => UserWhereUniqueInputObjectSchema), create: z.union([z.lazy(() => UserCreateWithoutShoppingVendorsInputObjectSchema), z.lazy(() => UserUncheckedCreateWithoutShoppingVendorsInputObjectSchema)]) }).strict(); export const UserCreateOrConnectWithoutShoppingVendorsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const UserCreateOrConnectWithoutShoppingVendorsInputObjectZodSchema = makeSchema();