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

7 lines
572 B
TypeScript

import type { Prisma } from '../../generated/prisma';
import * as z from 'zod';
import { CommunicationWhereInputObjectSchema as CommunicationWhereInputObjectSchema } from './objects/CommunicationWhereInput.schema';
export const CommunicationDeleteManySchema: z.ZodType<Prisma.CommunicationDeleteManyArgs> = z.object({ where: CommunicationWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType<Prisma.CommunicationDeleteManyArgs>;
export const CommunicationDeleteManyZodSchema = z.object({ where: CommunicationWhereInputObjectSchema.optional() }).strict();