initial commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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();
|
||||
Reference in New Issue
Block a user