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