initial commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
import { AppointmentArgsObjectSchema as AppointmentArgsObjectSchema } from './AppointmentArgs.schema';
|
||||
import { PatientArgsObjectSchema as PatientArgsObjectSchema } from './PatientArgs.schema'
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
appointment: z.union([z.boolean(), z.lazy(() => AppointmentArgsObjectSchema)]).optional(),
|
||||
patient: z.union([z.boolean(), z.lazy(() => PatientArgsObjectSchema)]).optional()
|
||||
}).strict();
|
||||
export const AppointmentProcedureIncludeObjectSchema: z.ZodType<Prisma.AppointmentProcedureInclude> = makeSchema() as unknown as z.ZodType<Prisma.AppointmentProcedureInclude>;
|
||||
export const AppointmentProcedureIncludeObjectZodSchema = makeSchema();
|
||||
Reference in New Issue
Block a user