7 lines
554 B
TypeScript
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(); |