fix: fix remote browser socket connection and related updates

This commit is contained in:
Gitead
2026-04-30 11:52:58 -04:00
parent 441cfcc8e3
commit d8f852741a
959 changed files with 13338 additions and 2208 deletions

View File

@@ -37,9 +37,11 @@ exports.AppointmentProcedureIncludeObjectZodSchema = exports.AppointmentProcedur
const z = __importStar(require("zod"));
const AppointmentArgs_schema_1 = require("./AppointmentArgs.schema");
const PatientArgs_schema_1 = require("./PatientArgs.schema");
const NpiProviderArgs_schema_1 = require("./NpiProviderArgs.schema");
const makeSchema = () => z.object({
appointment: z.union([z.boolean(), z.lazy(() => AppointmentArgs_schema_1.AppointmentArgsObjectSchema)]).optional(),
patient: z.union([z.boolean(), z.lazy(() => PatientArgs_schema_1.PatientArgsObjectSchema)]).optional()
patient: z.union([z.boolean(), z.lazy(() => PatientArgs_schema_1.PatientArgsObjectSchema)]).optional(),
npiProvider: z.union([z.boolean(), z.lazy(() => NpiProviderArgs_schema_1.NpiProviderArgsObjectSchema)]).optional()
}).strict();
exports.AppointmentProcedureIncludeObjectSchema = makeSchema();
exports.AppointmentProcedureIncludeObjectZodSchema = makeSchema();