Files
DentalManagementMH05/packages/db/shared/schemas/objects/AppointmentFileUpdateManyWithWhereWithoutAppointmentInput.schema.ts

13 lines
1.3 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
import { AppointmentFileScalarWhereInputObjectSchema as AppointmentFileScalarWhereInputObjectSchema } from './AppointmentFileScalarWhereInput.schema';
import { AppointmentFileUpdateManyMutationInputObjectSchema as AppointmentFileUpdateManyMutationInputObjectSchema } from './AppointmentFileUpdateManyMutationInput.schema';
import { AppointmentFileUncheckedUpdateManyWithoutAppointmentInputObjectSchema as AppointmentFileUncheckedUpdateManyWithoutAppointmentInputObjectSchema } from './AppointmentFileUncheckedUpdateManyWithoutAppointmentInput.schema'
const makeSchema = () => z.object({
where: z.lazy(() => AppointmentFileScalarWhereInputObjectSchema),
data: z.union([z.lazy(() => AppointmentFileUpdateManyMutationInputObjectSchema), z.lazy(() => AppointmentFileUncheckedUpdateManyWithoutAppointmentInputObjectSchema)])
}).strict();
export const AppointmentFileUpdateManyWithWhereWithoutAppointmentInputObjectSchema: z.ZodType<Prisma.AppointmentFileUpdateManyWithWhereWithoutAppointmentInput> = makeSchema() as unknown as z.ZodType<Prisma.AppointmentFileUpdateManyWithWhereWithoutAppointmentInput>;
export const AppointmentFileUpdateManyWithWhereWithoutAppointmentInputObjectZodSchema = makeSchema();