7 lines
527 B
TypeScript
7 lines
527 B
TypeScript
import type { Prisma } from '../../generated/prisma';
|
|
import * as z from 'zod';
|
|
import { PdfGroupWhereInputObjectSchema as PdfGroupWhereInputObjectSchema } from './objects/PdfGroupWhereInput.schema';
|
|
|
|
export const PdfGroupDeleteManySchema: z.ZodType<Prisma.PdfGroupDeleteManyArgs> = z.object({ where: PdfGroupWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType<Prisma.PdfGroupDeleteManyArgs>;
|
|
|
|
export const PdfGroupDeleteManyZodSchema = z.object({ where: PdfGroupWhereInputObjectSchema.optional() }).strict(); |