initial commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
import { ClaimWhereInputObjectSchema as ClaimWhereInputObjectSchema } from './ClaimWhereInput.schema';
|
||||
import { ClaimUpdateWithoutServiceLinesInputObjectSchema as ClaimUpdateWithoutServiceLinesInputObjectSchema } from './ClaimUpdateWithoutServiceLinesInput.schema';
|
||||
import { ClaimUncheckedUpdateWithoutServiceLinesInputObjectSchema as ClaimUncheckedUpdateWithoutServiceLinesInputObjectSchema } from './ClaimUncheckedUpdateWithoutServiceLinesInput.schema'
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
where: z.lazy(() => ClaimWhereInputObjectSchema).optional(),
|
||||
data: z.union([z.lazy(() => ClaimUpdateWithoutServiceLinesInputObjectSchema), z.lazy(() => ClaimUncheckedUpdateWithoutServiceLinesInputObjectSchema)])
|
||||
}).strict();
|
||||
export const ClaimUpdateToOneWithWhereWithoutServiceLinesInputObjectSchema: z.ZodType<Prisma.ClaimUpdateToOneWithWhereWithoutServiceLinesInput> = makeSchema() as unknown as z.ZodType<Prisma.ClaimUpdateToOneWithWhereWithoutServiceLinesInput>;
|
||||
export const ClaimUpdateToOneWithWhereWithoutServiceLinesInputObjectZodSchema = makeSchema();
|
||||
Reference in New Issue
Block a user