fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -2,7 +2,8 @@ import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
import { PatientStatusSchema } from '../enums/PatientStatus.schema';
|
||||
import { AppointmentProcedureUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentProcedureUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentProcedureUncheckedCreateNestedManyWithoutAppointmentInput.schema';
|
||||
import { ClaimUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema as ClaimUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema } from './ClaimUncheckedCreateNestedManyWithoutAppointmentInput.schema'
|
||||
import { ClaimUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema as ClaimUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema } from './ClaimUncheckedCreateNestedManyWithoutAppointmentInput.schema';
|
||||
import { AppointmentFileUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentFileUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentFileUncheckedCreateNestedManyWithoutAppointmentInput.schema'
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
id: z.number().int().optional(),
|
||||
@@ -19,7 +20,8 @@ const makeSchema = () => z.object({
|
||||
createdAt: z.coerce.date().optional(),
|
||||
eligibilityStatus: PatientStatusSchema.optional(),
|
||||
procedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema).optional(),
|
||||
claims: z.lazy(() => ClaimUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema).optional()
|
||||
claims: z.lazy(() => ClaimUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema).optional(),
|
||||
files: z.lazy(() => AppointmentFileUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema).optional()
|
||||
}).strict();
|
||||
export const AppointmentUncheckedCreateWithoutUserInputObjectSchema: z.ZodType<Prisma.AppointmentUncheckedCreateWithoutUserInput> = makeSchema() as unknown as z.ZodType<Prisma.AppointmentUncheckedCreateWithoutUserInput>;
|
||||
export const AppointmentUncheckedCreateWithoutUserInputObjectZodSchema = makeSchema();
|
||||
|
||||
Reference in New Issue
Block a user