fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -37,10 +37,12 @@ exports.AppointmentProcedureSelectObjectZodSchema = exports.AppointmentProcedure
|
||||
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({
|
||||
id: z.boolean().optional(),
|
||||
appointmentId: z.boolean().optional(),
|
||||
patientId: z.boolean().optional(),
|
||||
npiProviderId: z.boolean().optional(),
|
||||
procedureCode: z.boolean().optional(),
|
||||
procedureLabel: z.boolean().optional(),
|
||||
fee: z.boolean().optional(),
|
||||
@@ -52,7 +54,8 @@ const makeSchema = () => z.object({
|
||||
comboKey: z.boolean().optional(),
|
||||
createdAt: z.boolean().optional(),
|
||||
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.AppointmentProcedureSelectObjectSchema = makeSchema();
|
||||
exports.AppointmentProcedureSelectObjectZodSchema = makeSchema();
|
||||
|
||||
Reference in New Issue
Block a user