fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -8,7 +8,8 @@ import { EnumPatientStatusFieldUpdateOperationsInputObjectSchema as EnumPatientS
|
||||
import { PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema as PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutAppointmentsNestedInput.schema';
|
||||
import { StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema as StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema } from './StaffUpdateOneWithoutAppointmentsNestedInput.schema';
|
||||
import { AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentProcedureUpdateManyWithoutAppointmentNestedInput.schema';
|
||||
import { ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema as ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema } from './ClaimUpdateManyWithoutAppointmentNestedInput.schema'
|
||||
import { ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema as ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema } from './ClaimUpdateManyWithoutAppointmentNestedInput.schema';
|
||||
import { AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema'
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(),
|
||||
@@ -24,7 +25,8 @@ const makeSchema = () => z.object({
|
||||
patient: z.lazy(() => PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(),
|
||||
staff: z.lazy(() => StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(),
|
||||
procedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(),
|
||||
claims: z.lazy(() => ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema).optional()
|
||||
claims: z.lazy(() => ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(),
|
||||
files: z.lazy(() => AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema).optional()
|
||||
}).strict();
|
||||
export const AppointmentUpdateWithoutUserInputObjectSchema: z.ZodType<Prisma.AppointmentUpdateWithoutUserInput> = makeSchema() as unknown as z.ZodType<Prisma.AppointmentUpdateWithoutUserInput>;
|
||||
export const AppointmentUpdateWithoutUserInputObjectZodSchema = makeSchema();
|
||||
|
||||
Reference in New Issue
Block a user