initial commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
import { PdfGroupWhereUniqueInputObjectSchema as PdfGroupWhereUniqueInputObjectSchema } from './PdfGroupWhereUniqueInput.schema';
|
||||
import { PdfGroupUpdateWithoutPatientInputObjectSchema as PdfGroupUpdateWithoutPatientInputObjectSchema } from './PdfGroupUpdateWithoutPatientInput.schema';
|
||||
import { PdfGroupUncheckedUpdateWithoutPatientInputObjectSchema as PdfGroupUncheckedUpdateWithoutPatientInputObjectSchema } from './PdfGroupUncheckedUpdateWithoutPatientInput.schema'
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
where: z.lazy(() => PdfGroupWhereUniqueInputObjectSchema),
|
||||
data: z.union([z.lazy(() => PdfGroupUpdateWithoutPatientInputObjectSchema), z.lazy(() => PdfGroupUncheckedUpdateWithoutPatientInputObjectSchema)])
|
||||
}).strict();
|
||||
export const PdfGroupUpdateWithWhereUniqueWithoutPatientInputObjectSchema: z.ZodType<Prisma.PdfGroupUpdateWithWhereUniqueWithoutPatientInput> = makeSchema() as unknown as z.ZodType<Prisma.PdfGroupUpdateWithWhereUniqueWithoutPatientInput>;
|
||||
export const PdfGroupUpdateWithWhereUniqueWithoutPatientInputObjectZodSchema = makeSchema();
|
||||
Reference in New Issue
Block a user