import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { UserWhereUniqueInputObjectSchema as UserWhereUniqueInputObjectSchema } from './UserWhereUniqueInput.schema'; import { UserCreateWithoutOfficeContactInputObjectSchema as UserCreateWithoutOfficeContactInputObjectSchema } from './UserCreateWithoutOfficeContactInput.schema'; import { UserUncheckedCreateWithoutOfficeContactInputObjectSchema as UserUncheckedCreateWithoutOfficeContactInputObjectSchema } from './UserUncheckedCreateWithoutOfficeContactInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => UserWhereUniqueInputObjectSchema), create: z.union([z.lazy(() => UserCreateWithoutOfficeContactInputObjectSchema), z.lazy(() => UserUncheckedCreateWithoutOfficeContactInputObjectSchema)]) }).strict(); export const UserCreateOrConnectWithoutOfficeContactInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const UserCreateOrConnectWithoutOfficeContactInputObjectZodSchema = makeSchema();