Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/ClaimUpdateManyWithWhereWithoutAppointmentInput.schema.ts
2026-04-04 22:13:55 -04:00

13 lines
1.1 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
import { ClaimScalarWhereInputObjectSchema as ClaimScalarWhereInputObjectSchema } from './ClaimScalarWhereInput.schema';
import { ClaimUpdateManyMutationInputObjectSchema as ClaimUpdateManyMutationInputObjectSchema } from './ClaimUpdateManyMutationInput.schema';
import { ClaimUncheckedUpdateManyWithoutAppointmentInputObjectSchema as ClaimUncheckedUpdateManyWithoutAppointmentInputObjectSchema } from './ClaimUncheckedUpdateManyWithoutAppointmentInput.schema'
const makeSchema = () => z.object({
where: z.lazy(() => ClaimScalarWhereInputObjectSchema),
data: z.union([z.lazy(() => ClaimUpdateManyMutationInputObjectSchema), z.lazy(() => ClaimUncheckedUpdateManyWithoutAppointmentInputObjectSchema)])
}).strict();
export const ClaimUpdateManyWithWhereWithoutAppointmentInputObjectSchema: z.ZodType<Prisma.ClaimUpdateManyWithWhereWithoutAppointmentInput> = makeSchema() as unknown as z.ZodType<Prisma.ClaimUpdateManyWithWhereWithoutAppointmentInput>;
export const ClaimUpdateManyWithWhereWithoutAppointmentInputObjectZodSchema = makeSchema();