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 { ClaimUncheckedUpdateManyWithoutPatientInputObjectSchema as ClaimUncheckedUpdateManyWithoutPatientInputObjectSchema } from './ClaimUncheckedUpdateManyWithoutPatientInput.schema'
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
where: z.lazy(() => ClaimScalarWhereInputObjectSchema),
|
||||
data: z.union([z.lazy(() => ClaimUpdateManyMutationInputObjectSchema), z.lazy(() => ClaimUncheckedUpdateManyWithoutPatientInputObjectSchema)])
|
||||
}).strict();
|
||||
export const ClaimUpdateManyWithWhereWithoutPatientInputObjectSchema: z.ZodType<Prisma.ClaimUpdateManyWithWhereWithoutPatientInput> = makeSchema() as unknown as z.ZodType<Prisma.ClaimUpdateManyWithWhereWithoutPatientInput>;
|
||||
export const ClaimUpdateManyWithWhereWithoutPatientInputObjectZodSchema = makeSchema();
|
||||
Reference in New Issue
Block a user