Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/PdfFileUpdateManyWithWhereWithoutGroupInput.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 { PdfFileScalarWhereInputObjectSchema as PdfFileScalarWhereInputObjectSchema } from './PdfFileScalarWhereInput.schema';
import { PdfFileUpdateManyMutationInputObjectSchema as PdfFileUpdateManyMutationInputObjectSchema } from './PdfFileUpdateManyMutationInput.schema';
import { PdfFileUncheckedUpdateManyWithoutGroupInputObjectSchema as PdfFileUncheckedUpdateManyWithoutGroupInputObjectSchema } from './PdfFileUncheckedUpdateManyWithoutGroupInput.schema'
const makeSchema = () => z.object({
where: z.lazy(() => PdfFileScalarWhereInputObjectSchema),
data: z.union([z.lazy(() => PdfFileUpdateManyMutationInputObjectSchema), z.lazy(() => PdfFileUncheckedUpdateManyWithoutGroupInputObjectSchema)])
}).strict();
export const PdfFileUpdateManyWithWhereWithoutGroupInputObjectSchema: z.ZodType<Prisma.PdfFileUpdateManyWithWhereWithoutGroupInput> = makeSchema() as unknown as z.ZodType<Prisma.PdfFileUpdateManyWithWhereWithoutGroupInput>;
export const PdfFileUpdateManyWithWhereWithoutGroupInputObjectZodSchema = makeSchema();