initial commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
import { InsuranceCredentialScalarWhereInputObjectSchema as InsuranceCredentialScalarWhereInputObjectSchema } from './InsuranceCredentialScalarWhereInput.schema';
|
||||
import { InsuranceCredentialUpdateManyMutationInputObjectSchema as InsuranceCredentialUpdateManyMutationInputObjectSchema } from './InsuranceCredentialUpdateManyMutationInput.schema';
|
||||
import { InsuranceCredentialUncheckedUpdateManyWithoutUserInputObjectSchema as InsuranceCredentialUncheckedUpdateManyWithoutUserInputObjectSchema } from './InsuranceCredentialUncheckedUpdateManyWithoutUserInput.schema'
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
where: z.lazy(() => InsuranceCredentialScalarWhereInputObjectSchema),
|
||||
data: z.union([z.lazy(() => InsuranceCredentialUpdateManyMutationInputObjectSchema), z.lazy(() => InsuranceCredentialUncheckedUpdateManyWithoutUserInputObjectSchema)])
|
||||
}).strict();
|
||||
export const InsuranceCredentialUpdateManyWithWhereWithoutUserInputObjectSchema: z.ZodType<Prisma.InsuranceCredentialUpdateManyWithWhereWithoutUserInput> = makeSchema() as unknown as z.ZodType<Prisma.InsuranceCredentialUpdateManyWithWhereWithoutUserInput>;
|
||||
export const InsuranceCredentialUpdateManyWithWhereWithoutUserInputObjectZodSchema = makeSchema();
|
||||
Reference in New Issue
Block a user