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

7 lines
554 B
TypeScript

import type { Prisma } from '../../generated/prisma';
import * as z from 'zod';
import { ServiceLineWhereInputObjectSchema as ServiceLineWhereInputObjectSchema } from './objects/ServiceLineWhereInput.schema';
export const ServiceLineDeleteManySchema: z.ZodType<Prisma.ServiceLineDeleteManyArgs> = z.object({ where: ServiceLineWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType<Prisma.ServiceLineDeleteManyArgs>;
export const ServiceLineDeleteManyZodSchema = z.object({ where: ServiceLineWhereInputObjectSchema.optional() }).strict();