import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { UserWhereInputObjectSchema as UserWhereInputObjectSchema } from './UserWhereInput.schema'; import { UserUpdateWithoutBackupsInputObjectSchema as UserUpdateWithoutBackupsInputObjectSchema } from './UserUpdateWithoutBackupsInput.schema'; import { UserUncheckedUpdateWithoutBackupsInputObjectSchema as UserUncheckedUpdateWithoutBackupsInputObjectSchema } from './UserUncheckedUpdateWithoutBackupsInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => UserWhereInputObjectSchema).optional(), data: z.union([z.lazy(() => UserUpdateWithoutBackupsInputObjectSchema), z.lazy(() => UserUncheckedUpdateWithoutBackupsInputObjectSchema)]) }).strict(); export const UserUpdateToOneWithWhereWithoutBackupsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const UserUpdateToOneWithWhereWithoutBackupsInputObjectZodSchema = makeSchema();