fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user