initial commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
import { ClaimScalarWhereInputObjectSchema as ClaimScalarWhereInputObjectSchema } from './ClaimScalarWhereInput.schema';
|
||||
import { ClaimUpdateManyMutationInputObjectSchema as ClaimUpdateManyMutationInputObjectSchema } from './ClaimUpdateManyMutationInput.schema';
|
||||
import { ClaimUncheckedUpdateManyWithoutUserInputObjectSchema as ClaimUncheckedUpdateManyWithoutUserInputObjectSchema } from './ClaimUncheckedUpdateManyWithoutUserInput.schema'
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
where: z.lazy(() => ClaimScalarWhereInputObjectSchema),
|
||||
data: z.union([z.lazy(() => ClaimUpdateManyMutationInputObjectSchema), z.lazy(() => ClaimUncheckedUpdateManyWithoutUserInputObjectSchema)])
|
||||
}).strict();
|
||||
export const ClaimUpdateManyWithWhereWithoutUserInputObjectSchema: z.ZodType<Prisma.ClaimUpdateManyWithWhereWithoutUserInput> = makeSchema() as unknown as z.ZodType<Prisma.ClaimUpdateManyWithWhereWithoutUserInput>;
|
||||
export const ClaimUpdateManyWithWhereWithoutUserInputObjectZodSchema = makeSchema();
|
||||
Reference in New Issue
Block a user