7 lines
653 B
TypeScript
7 lines
653 B
TypeScript
import type { Prisma } from '../../generated/prisma';
|
|
import * as z from 'zod';
|
|
import { ServiceLineTransactionWhereInputObjectSchema as ServiceLineTransactionWhereInputObjectSchema } from './objects/ServiceLineTransactionWhereInput.schema';
|
|
|
|
export const ServiceLineTransactionDeleteManySchema: z.ZodType<Prisma.ServiceLineTransactionDeleteManyArgs> = z.object({ where: ServiceLineTransactionWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType<Prisma.ServiceLineTransactionDeleteManyArgs>;
|
|
|
|
export const ServiceLineTransactionDeleteManyZodSchema = z.object({ where: ServiceLineTransactionWhereInputObjectSchema.optional() }).strict(); |