initial commit
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
import { PatientDocumentWhereInputObjectSchema as PatientDocumentWhereInputObjectSchema } from './objects/PatientDocumentWhereInput.schema';
|
||||
|
||||
export const PatientDocumentDeleteManySchema: z.ZodType<Prisma.PatientDocumentDeleteManyArgs> = z.object({ where: PatientDocumentWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType<Prisma.PatientDocumentDeleteManyArgs>;
|
||||
|
||||
export const PatientDocumentDeleteManyZodSchema = z.object({ where: PatientDocumentWhereInputObjectSchema.optional() }).strict();
|
||||
Reference in New Issue
Block a user