Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/ClaimUpdateManyWithWhereWithoutStaffInput.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 { ClaimUncheckedUpdateManyWithoutStaffInputObjectSchema as ClaimUncheckedUpdateManyWithoutStaffInputObjectSchema } from './ClaimUncheckedUpdateManyWithoutStaffInput.schema'
const makeSchema = () => z.object({
where: z.lazy(() => ClaimScalarWhereInputObjectSchema),
data: z.union([z.lazy(() => ClaimUpdateManyMutationInputObjectSchema), z.lazy(() => ClaimUncheckedUpdateManyWithoutStaffInputObjectSchema)])
}).strict();
export const ClaimUpdateManyWithWhereWithoutStaffInputObjectSchema: z.ZodType<Prisma.ClaimUpdateManyWithWhereWithoutStaffInput> = makeSchema() as unknown as z.ZodType<Prisma.ClaimUpdateManyWithWhereWithoutStaffInput>;
export const ClaimUpdateManyWithWhereWithoutStaffInputObjectZodSchema = makeSchema();