import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { UserWhereInputObjectSchema as UserWhereInputObjectSchema } from './UserWhereInput.schema'; import { UserUpdateWithoutNpiProvidersInputObjectSchema as UserUpdateWithoutNpiProvidersInputObjectSchema } from './UserUpdateWithoutNpiProvidersInput.schema'; import { UserUncheckedUpdateWithoutNpiProvidersInputObjectSchema as UserUncheckedUpdateWithoutNpiProvidersInputObjectSchema } from './UserUncheckedUpdateWithoutNpiProvidersInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => UserWhereInputObjectSchema).optional(), data: z.union([z.lazy(() => UserUpdateWithoutNpiProvidersInputObjectSchema), z.lazy(() => UserUncheckedUpdateWithoutNpiProvidersInputObjectSchema)]) }).strict(); export const UserUpdateToOneWithWhereWithoutNpiProvidersInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const UserUpdateToOneWithWhereWithoutNpiProvidersInputObjectZodSchema = makeSchema();