13 lines
1.3 KiB
TypeScript
13 lines
1.3 KiB
TypeScript
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();
|