initial commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
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();
|
||||
Reference in New Issue
Block a user