Files
DentalManagementMHAprilgg/packages/db/shared/schemas/deleteManyNotification.schema.ts
2026-04-04 22:13:55 -04:00

7 lines
563 B
TypeScript

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();