8 lines
942 B
TypeScript
8 lines
942 B
TypeScript
import type { Prisma } from '../../generated/prisma';
|
|
import * as z from 'zod';
|
|
import { InsuranceCredentialUpdateManyMutationInputObjectSchema as InsuranceCredentialUpdateManyMutationInputObjectSchema } from './objects/InsuranceCredentialUpdateManyMutationInput.schema';
|
|
import { InsuranceCredentialWhereInputObjectSchema as InsuranceCredentialWhereInputObjectSchema } from './objects/InsuranceCredentialWhereInput.schema';
|
|
|
|
export const InsuranceCredentialUpdateManySchema: z.ZodType<Prisma.InsuranceCredentialUpdateManyArgs> = z.object({ data: InsuranceCredentialUpdateManyMutationInputObjectSchema, where: InsuranceCredentialWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType<Prisma.InsuranceCredentialUpdateManyArgs>;
|
|
|
|
export const InsuranceCredentialUpdateManyZodSchema = z.object({ data: InsuranceCredentialUpdateManyMutationInputObjectSchema, where: InsuranceCredentialWhereInputObjectSchema.optional() }).strict(); |