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