7 lines
626 B
TypeScript
7 lines
626 B
TypeScript
import type { Prisma } from '../../generated/prisma';
|
|
import * as z from 'zod';
|
|
import { InsuranceCredentialWhereInputObjectSchema as InsuranceCredentialWhereInputObjectSchema } from './objects/InsuranceCredentialWhereInput.schema';
|
|
|
|
export const InsuranceCredentialDeleteManySchema: z.ZodType<Prisma.InsuranceCredentialDeleteManyArgs> = z.object({ where: InsuranceCredentialWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType<Prisma.InsuranceCredentialDeleteManyArgs>;
|
|
|
|
export const InsuranceCredentialDeleteManyZodSchema = z.object({ where: InsuranceCredentialWhereInputObjectSchema.optional() }).strict(); |