ch-admin-api-client-typescript 5.23.2 → 5.23.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api/appointments-api.d.ts +47 -0
- package/lib/api/appointments-api.d.ts.map +1 -1
- package/lib/api/appointments-api.js +85 -0
- package/lib/api/deals-api.d.ts +110 -0
- package/lib/api/deals-api.d.ts.map +1 -1
- package/lib/api/deals-api.js +127 -0
- package/lib/api/doctor-affiliations-api.d.ts +101 -0
- package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
- package/lib/api/doctor-affiliations-api.js +121 -0
- package/lib/api/hospitals-api.d.ts +328 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +381 -0
- package/lib/api/prescriptions-api.d.ts +447 -0
- package/lib/api/prescriptions-api.d.ts.map +1 -0
- package/lib/api/prescriptions-api.js +727 -0
- package/lib/api.d.ts +1 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -0
- package/lib/models/appointment-timetable-date-model.d.ts +58 -0
- package/lib/models/appointment-timetable-date-model.d.ts.map +1 -0
- package/lib/models/appointment-timetable-date-model.js +15 -0
- package/lib/models/appointment-timetable-status.d.ts +22 -0
- package/lib/models/appointment-timetable-status.d.ts.map +1 -0
- package/lib/models/appointment-timetable-status.js +25 -0
- package/lib/models/appointment-timetable-time-slot-model.d.ts +74 -0
- package/lib/models/appointment-timetable-time-slot-model.d.ts.map +1 -0
- package/lib/models/appointment-timetable-time-slot-model.js +15 -0
- package/lib/models/create-doctor-affiliation-command.d.ts +6 -0
- package/lib/models/create-doctor-affiliation-command.d.ts.map +1 -1
- package/lib/models/create-hospital-command.d.ts +24 -0
- package/lib/models/create-hospital-command.d.ts.map +1 -1
- package/lib/models/create-prescription-command.d.ts +184 -0
- package/lib/models/create-prescription-command.d.ts.map +1 -0
- package/lib/models/create-prescription-command.js +15 -0
- package/lib/models/create-walk-in-appointment-command.d.ts +154 -0
- package/lib/models/create-walk-in-appointment-command.d.ts.map +1 -0
- package/lib/models/create-walk-in-appointment-command.js +15 -0
- package/lib/models/doctor-affiliation-item-model.d.ts +3 -3
- package/lib/models/doctor-affiliation-item-model.d.ts.map +1 -1
- package/lib/models/doctor-affiliation-model.d.ts +9 -3
- package/lib/models/doctor-affiliation-model.d.ts.map +1 -1
- package/lib/models/get-appointment-timetables-response-model.d.ts +44 -0
- package/lib/models/get-appointment-timetables-response-model.d.ts.map +1 -0
- package/lib/models/get-appointment-timetables-response-model.js +15 -0
- package/lib/models/hospital-model.d.ts +24 -0
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +16 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +16 -0
- package/lib/models/prescription-diagnosis-input-model.d.ts +37 -0
- package/lib/models/prescription-diagnosis-input-model.d.ts.map +1 -0
- package/lib/models/prescription-diagnosis-input-model.js +15 -0
- package/lib/models/prescription-diagnosis-item-model.d.ts +37 -0
- package/lib/models/prescription-diagnosis-item-model.d.ts.map +1 -0
- package/lib/models/prescription-diagnosis-item-model.js +15 -0
- package/lib/models/prescription-item-model.d.ts +164 -0
- package/lib/models/prescription-item-model.d.ts.map +1 -0
- package/lib/models/prescription-item-model.js +15 -0
- package/lib/models/prescription-medication-input-model.d.ts +79 -0
- package/lib/models/prescription-medication-input-model.d.ts.map +1 -0
- package/lib/models/prescription-medication-input-model.js +15 -0
- package/lib/models/prescription-medication-item-model.d.ts +79 -0
- package/lib/models/prescription-medication-item-model.d.ts.map +1 -0
- package/lib/models/prescription-medication-item-model.js +15 -0
- package/lib/models/prescription-model.d.ts +185 -0
- package/lib/models/prescription-model.d.ts.map +1 -0
- package/lib/models/prescription-model.js +15 -0
- package/lib/models/prescription-symptom-input-model.d.ts +49 -0
- package/lib/models/prescription-symptom-input-model.d.ts.map +1 -0
- package/lib/models/prescription-symptom-input-model.js +15 -0
- package/lib/models/prescription-symptom-item-model.d.ts +49 -0
- package/lib/models/prescription-symptom-item-model.d.ts.map +1 -0
- package/lib/models/prescription-symptom-item-model.js +15 -0
- package/lib/models/prescriptions-model.d.ts +33 -0
- package/lib/models/prescriptions-model.d.ts.map +1 -0
- package/lib/models/prescriptions-model.js +15 -0
- package/lib/models/update-doctor-affiliation-command.d.ts +6 -0
- package/lib/models/update-doctor-affiliation-command.d.ts.map +1 -1
- package/lib/models/update-hospital-command.d.ts +24 -0
- package/lib/models/update-hospital-command.d.ts.map +1 -1
- package/lib/models/update-prescription-command.d.ts +154 -0
- package/lib/models/update-prescription-command.d.ts.map +1 -0
- package/lib/models/update-prescription-command.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +17 -0
- package/src/api/appointments-api.ts +87 -0
- package/src/api/deals-api.ts +184 -0
- package/src/api/doctor-affiliations-api.ts +171 -0
- package/src/api/hospitals-api.ts +548 -0
- package/src/api/prescriptions-api.ts +776 -0
- package/src/api.ts +1 -0
- package/src/models/appointment-timetable-date-model.ts +69 -0
- package/src/models/appointment-timetable-status.ts +31 -0
- package/src/models/appointment-timetable-time-slot-model.ts +81 -0
- package/src/models/create-doctor-affiliation-command.ts +6 -0
- package/src/models/create-hospital-command.ts +24 -0
- package/src/models/create-prescription-command.ts +195 -0
- package/src/models/create-walk-in-appointment-command.ts +165 -0
- package/src/models/doctor-affiliation-item-model.ts +3 -3
- package/src/models/doctor-affiliation-model.ts +9 -3
- package/src/models/get-appointment-timetables-response-model.ts +51 -0
- package/src/models/hospital-model.ts +24 -0
- package/src/models/index.ts +16 -0
- package/src/models/prescription-diagnosis-input-model.ts +42 -0
- package/src/models/prescription-diagnosis-item-model.ts +42 -0
- package/src/models/prescription-item-model.ts +171 -0
- package/src/models/prescription-medication-input-model.ts +84 -0
- package/src/models/prescription-medication-item-model.ts +84 -0
- package/src/models/prescription-model.ts +198 -0
- package/src/models/prescription-symptom-input-model.ts +54 -0
- package/src/models/prescription-symptom-item-model.ts +54 -0
- package/src/models/prescriptions-model.ts +42 -0
- package/src/models/update-doctor-affiliation-command.ts +6 -0
- package/src/models/update-hospital-command.ts +24 -0
- package/src/models/update-prescription-command.ts +165 -0
package/lib/api/hospitals-api.js
CHANGED
|
@@ -573,6 +573,73 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
573
573
|
});
|
|
574
574
|
});
|
|
575
575
|
},
|
|
576
|
+
/**
|
|
577
|
+
*
|
|
578
|
+
* @summary Get Hospital appointment timetables for application
|
|
579
|
+
* @param {string} hospitalId
|
|
580
|
+
* @param {number} [year]
|
|
581
|
+
* @param {number} [month]
|
|
582
|
+
* @param {string} [timeZone]
|
|
583
|
+
* @param {boolean} [isExternal]
|
|
584
|
+
* @param {boolean} [isOnline]
|
|
585
|
+
* @param {string} [appointmentIdExcluded]
|
|
586
|
+
* @param {*} [options] Override http request option.
|
|
587
|
+
* @throws {RequiredError}
|
|
588
|
+
*/
|
|
589
|
+
apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet: function (hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options) {
|
|
590
|
+
if (options === void 0) { options = {}; }
|
|
591
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
592
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
593
|
+
return __generator(this, function (_a) {
|
|
594
|
+
switch (_a.label) {
|
|
595
|
+
case 0:
|
|
596
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
597
|
+
(0, common_1.assertParamExists)('apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet', 'hospitalId', hospitalId);
|
|
598
|
+
localVarPath = "/api/v1/hospitals/{hospitalId}/appointmenttimetables/application"
|
|
599
|
+
.replace("{".concat("hospitalId", "}"), encodeURIComponent(String(hospitalId)));
|
|
600
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
601
|
+
if (configuration) {
|
|
602
|
+
baseOptions = configuration.baseOptions;
|
|
603
|
+
}
|
|
604
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
605
|
+
localVarHeaderParameter = {};
|
|
606
|
+
localVarQueryParameter = {};
|
|
607
|
+
// authentication oauth2 required
|
|
608
|
+
// oauth required
|
|
609
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
|
|
610
|
+
case 1:
|
|
611
|
+
// authentication oauth2 required
|
|
612
|
+
// oauth required
|
|
613
|
+
_a.sent();
|
|
614
|
+
if (year !== undefined) {
|
|
615
|
+
localVarQueryParameter['Year'] = year;
|
|
616
|
+
}
|
|
617
|
+
if (month !== undefined) {
|
|
618
|
+
localVarQueryParameter['Month'] = month;
|
|
619
|
+
}
|
|
620
|
+
if (timeZone !== undefined) {
|
|
621
|
+
localVarQueryParameter['TimeZone'] = timeZone;
|
|
622
|
+
}
|
|
623
|
+
if (isExternal !== undefined) {
|
|
624
|
+
localVarQueryParameter['IsExternal'] = isExternal;
|
|
625
|
+
}
|
|
626
|
+
if (isOnline !== undefined) {
|
|
627
|
+
localVarQueryParameter['IsOnline'] = isOnline;
|
|
628
|
+
}
|
|
629
|
+
if (appointmentIdExcluded !== undefined) {
|
|
630
|
+
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
631
|
+
}
|
|
632
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
633
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
634
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
635
|
+
return [2 /*return*/, {
|
|
636
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
637
|
+
options: localVarRequestOptions,
|
|
638
|
+
}];
|
|
639
|
+
}
|
|
640
|
+
});
|
|
641
|
+
});
|
|
642
|
+
},
|
|
576
643
|
/**
|
|
577
644
|
*
|
|
578
645
|
* @summary Add, update, delete Hospital appointment timetables
|
|
@@ -6551,6 +6618,77 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
6551
6618
|
});
|
|
6552
6619
|
});
|
|
6553
6620
|
},
|
|
6621
|
+
/**
|
|
6622
|
+
*
|
|
6623
|
+
* @summary Get HospitalSpecialty appointment timetables for application
|
|
6624
|
+
* @param {string} hospitalId
|
|
6625
|
+
* @param {string} hospitalSpecialtyId
|
|
6626
|
+
* @param {number} [year]
|
|
6627
|
+
* @param {number} [month]
|
|
6628
|
+
* @param {string} [timeZone]
|
|
6629
|
+
* @param {boolean} [isExternal]
|
|
6630
|
+
* @param {boolean} [isOnline]
|
|
6631
|
+
* @param {string} [appointmentIdExcluded]
|
|
6632
|
+
* @param {*} [options] Override http request option.
|
|
6633
|
+
* @throws {RequiredError}
|
|
6634
|
+
*/
|
|
6635
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet: function (hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options) {
|
|
6636
|
+
if (options === void 0) { options = {}; }
|
|
6637
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
6638
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
6639
|
+
return __generator(this, function (_a) {
|
|
6640
|
+
switch (_a.label) {
|
|
6641
|
+
case 0:
|
|
6642
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
6643
|
+
(0, common_1.assertParamExists)('apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet', 'hospitalId', hospitalId);
|
|
6644
|
+
// verify required parameter 'hospitalSpecialtyId' is not null or undefined
|
|
6645
|
+
(0, common_1.assertParamExists)('apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet', 'hospitalSpecialtyId', hospitalSpecialtyId);
|
|
6646
|
+
localVarPath = "/api/v1/hospitals/{hospitalId}/specialties/{hospitalSpecialtyId}/appointmenttimetables/application"
|
|
6647
|
+
.replace("{".concat("hospitalId", "}"), encodeURIComponent(String(hospitalId)))
|
|
6648
|
+
.replace("{".concat("hospitalSpecialtyId", "}"), encodeURIComponent(String(hospitalSpecialtyId)));
|
|
6649
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
6650
|
+
if (configuration) {
|
|
6651
|
+
baseOptions = configuration.baseOptions;
|
|
6652
|
+
}
|
|
6653
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
6654
|
+
localVarHeaderParameter = {};
|
|
6655
|
+
localVarQueryParameter = {};
|
|
6656
|
+
// authentication oauth2 required
|
|
6657
|
+
// oauth required
|
|
6658
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
|
|
6659
|
+
case 1:
|
|
6660
|
+
// authentication oauth2 required
|
|
6661
|
+
// oauth required
|
|
6662
|
+
_a.sent();
|
|
6663
|
+
if (year !== undefined) {
|
|
6664
|
+
localVarQueryParameter['Year'] = year;
|
|
6665
|
+
}
|
|
6666
|
+
if (month !== undefined) {
|
|
6667
|
+
localVarQueryParameter['Month'] = month;
|
|
6668
|
+
}
|
|
6669
|
+
if (timeZone !== undefined) {
|
|
6670
|
+
localVarQueryParameter['TimeZone'] = timeZone;
|
|
6671
|
+
}
|
|
6672
|
+
if (isExternal !== undefined) {
|
|
6673
|
+
localVarQueryParameter['IsExternal'] = isExternal;
|
|
6674
|
+
}
|
|
6675
|
+
if (isOnline !== undefined) {
|
|
6676
|
+
localVarQueryParameter['IsOnline'] = isOnline;
|
|
6677
|
+
}
|
|
6678
|
+
if (appointmentIdExcluded !== undefined) {
|
|
6679
|
+
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
6680
|
+
}
|
|
6681
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
6682
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6683
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6684
|
+
return [2 /*return*/, {
|
|
6685
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
6686
|
+
options: localVarRequestOptions,
|
|
6687
|
+
}];
|
|
6688
|
+
}
|
|
6689
|
+
});
|
|
6690
|
+
});
|
|
6691
|
+
},
|
|
6554
6692
|
/**
|
|
6555
6693
|
*
|
|
6556
6694
|
* @summary Add, update, delete HospitalSpecialty appointment timetables
|
|
@@ -7785,6 +7923,81 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
7785
7923
|
});
|
|
7786
7924
|
});
|
|
7787
7925
|
},
|
|
7926
|
+
/**
|
|
7927
|
+
*
|
|
7928
|
+
* @summary Get Service appointment timetables for application
|
|
7929
|
+
* @param {string} hospitalId
|
|
7930
|
+
* @param {string} specialtyId
|
|
7931
|
+
* @param {string} serviceId
|
|
7932
|
+
* @param {number} [year]
|
|
7933
|
+
* @param {number} [month]
|
|
7934
|
+
* @param {string} [timeZone]
|
|
7935
|
+
* @param {boolean} [isExternal]
|
|
7936
|
+
* @param {boolean} [isOnline]
|
|
7937
|
+
* @param {string} [appointmentIdExcluded]
|
|
7938
|
+
* @param {*} [options] Override http request option.
|
|
7939
|
+
* @throws {RequiredError}
|
|
7940
|
+
*/
|
|
7941
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet: function (hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options) {
|
|
7942
|
+
if (options === void 0) { options = {}; }
|
|
7943
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
7944
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
7945
|
+
return __generator(this, function (_a) {
|
|
7946
|
+
switch (_a.label) {
|
|
7947
|
+
case 0:
|
|
7948
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
7949
|
+
(0, common_1.assertParamExists)('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet', 'hospitalId', hospitalId);
|
|
7950
|
+
// verify required parameter 'specialtyId' is not null or undefined
|
|
7951
|
+
(0, common_1.assertParamExists)('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet', 'specialtyId', specialtyId);
|
|
7952
|
+
// verify required parameter 'serviceId' is not null or undefined
|
|
7953
|
+
(0, common_1.assertParamExists)('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet', 'serviceId', serviceId);
|
|
7954
|
+
localVarPath = "/api/v1/hospitals/{hospitalId}/specialties/{specialtyId}/services/{serviceId}/appointmenttimetables/application"
|
|
7955
|
+
.replace("{".concat("hospitalId", "}"), encodeURIComponent(String(hospitalId)))
|
|
7956
|
+
.replace("{".concat("specialtyId", "}"), encodeURIComponent(String(specialtyId)))
|
|
7957
|
+
.replace("{".concat("serviceId", "}"), encodeURIComponent(String(serviceId)));
|
|
7958
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
7959
|
+
if (configuration) {
|
|
7960
|
+
baseOptions = configuration.baseOptions;
|
|
7961
|
+
}
|
|
7962
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
7963
|
+
localVarHeaderParameter = {};
|
|
7964
|
+
localVarQueryParameter = {};
|
|
7965
|
+
// authentication oauth2 required
|
|
7966
|
+
// oauth required
|
|
7967
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
|
|
7968
|
+
case 1:
|
|
7969
|
+
// authentication oauth2 required
|
|
7970
|
+
// oauth required
|
|
7971
|
+
_a.sent();
|
|
7972
|
+
if (year !== undefined) {
|
|
7973
|
+
localVarQueryParameter['Year'] = year;
|
|
7974
|
+
}
|
|
7975
|
+
if (month !== undefined) {
|
|
7976
|
+
localVarQueryParameter['Month'] = month;
|
|
7977
|
+
}
|
|
7978
|
+
if (timeZone !== undefined) {
|
|
7979
|
+
localVarQueryParameter['TimeZone'] = timeZone;
|
|
7980
|
+
}
|
|
7981
|
+
if (isExternal !== undefined) {
|
|
7982
|
+
localVarQueryParameter['IsExternal'] = isExternal;
|
|
7983
|
+
}
|
|
7984
|
+
if (isOnline !== undefined) {
|
|
7985
|
+
localVarQueryParameter['IsOnline'] = isOnline;
|
|
7986
|
+
}
|
|
7987
|
+
if (appointmentIdExcluded !== undefined) {
|
|
7988
|
+
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
7989
|
+
}
|
|
7990
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
7991
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7992
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
7993
|
+
return [2 /*return*/, {
|
|
7994
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
7995
|
+
options: localVarRequestOptions,
|
|
7996
|
+
}];
|
|
7997
|
+
}
|
|
7998
|
+
});
|
|
7999
|
+
});
|
|
8000
|
+
},
|
|
7788
8001
|
/**
|
|
7789
8002
|
*
|
|
7790
8003
|
* @summary Add, update and delete service appointment timetables
|
|
@@ -9493,6 +9706,32 @@ var HospitalsApiFp = function (configuration) {
|
|
|
9493
9706
|
});
|
|
9494
9707
|
});
|
|
9495
9708
|
},
|
|
9709
|
+
/**
|
|
9710
|
+
*
|
|
9711
|
+
* @summary Get Hospital appointment timetables for application
|
|
9712
|
+
* @param {string} hospitalId
|
|
9713
|
+
* @param {number} [year]
|
|
9714
|
+
* @param {number} [month]
|
|
9715
|
+
* @param {string} [timeZone]
|
|
9716
|
+
* @param {boolean} [isExternal]
|
|
9717
|
+
* @param {boolean} [isOnline]
|
|
9718
|
+
* @param {string} [appointmentIdExcluded]
|
|
9719
|
+
* @param {*} [options] Override http request option.
|
|
9720
|
+
* @throws {RequiredError}
|
|
9721
|
+
*/
|
|
9722
|
+
apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet: function (hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options) {
|
|
9723
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
9724
|
+
var localVarAxiosArgs;
|
|
9725
|
+
return __generator(this, function (_a) {
|
|
9726
|
+
switch (_a.label) {
|
|
9727
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options)];
|
|
9728
|
+
case 1:
|
|
9729
|
+
localVarAxiosArgs = _a.sent();
|
|
9730
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
9731
|
+
}
|
|
9732
|
+
});
|
|
9733
|
+
});
|
|
9734
|
+
},
|
|
9496
9735
|
/**
|
|
9497
9736
|
*
|
|
9498
9737
|
* @summary Add, update, delete Hospital appointment timetables
|
|
@@ -12031,6 +12270,33 @@ var HospitalsApiFp = function (configuration) {
|
|
|
12031
12270
|
});
|
|
12032
12271
|
});
|
|
12033
12272
|
},
|
|
12273
|
+
/**
|
|
12274
|
+
*
|
|
12275
|
+
* @summary Get HospitalSpecialty appointment timetables for application
|
|
12276
|
+
* @param {string} hospitalId
|
|
12277
|
+
* @param {string} hospitalSpecialtyId
|
|
12278
|
+
* @param {number} [year]
|
|
12279
|
+
* @param {number} [month]
|
|
12280
|
+
* @param {string} [timeZone]
|
|
12281
|
+
* @param {boolean} [isExternal]
|
|
12282
|
+
* @param {boolean} [isOnline]
|
|
12283
|
+
* @param {string} [appointmentIdExcluded]
|
|
12284
|
+
* @param {*} [options] Override http request option.
|
|
12285
|
+
* @throws {RequiredError}
|
|
12286
|
+
*/
|
|
12287
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet: function (hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options) {
|
|
12288
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
12289
|
+
var localVarAxiosArgs;
|
|
12290
|
+
return __generator(this, function (_a) {
|
|
12291
|
+
switch (_a.label) {
|
|
12292
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options)];
|
|
12293
|
+
case 1:
|
|
12294
|
+
localVarAxiosArgs = _a.sent();
|
|
12295
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
12296
|
+
}
|
|
12297
|
+
});
|
|
12298
|
+
});
|
|
12299
|
+
},
|
|
12034
12300
|
/**
|
|
12035
12301
|
*
|
|
12036
12302
|
* @summary Add, update, delete HospitalSpecialty appointment timetables
|
|
@@ -12532,6 +12798,34 @@ var HospitalsApiFp = function (configuration) {
|
|
|
12532
12798
|
});
|
|
12533
12799
|
});
|
|
12534
12800
|
},
|
|
12801
|
+
/**
|
|
12802
|
+
*
|
|
12803
|
+
* @summary Get Service appointment timetables for application
|
|
12804
|
+
* @param {string} hospitalId
|
|
12805
|
+
* @param {string} specialtyId
|
|
12806
|
+
* @param {string} serviceId
|
|
12807
|
+
* @param {number} [year]
|
|
12808
|
+
* @param {number} [month]
|
|
12809
|
+
* @param {string} [timeZone]
|
|
12810
|
+
* @param {boolean} [isExternal]
|
|
12811
|
+
* @param {boolean} [isOnline]
|
|
12812
|
+
* @param {string} [appointmentIdExcluded]
|
|
12813
|
+
* @param {*} [options] Override http request option.
|
|
12814
|
+
* @throws {RequiredError}
|
|
12815
|
+
*/
|
|
12816
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet: function (hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options) {
|
|
12817
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
12818
|
+
var localVarAxiosArgs;
|
|
12819
|
+
return __generator(this, function (_a) {
|
|
12820
|
+
switch (_a.label) {
|
|
12821
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options)];
|
|
12822
|
+
case 1:
|
|
12823
|
+
localVarAxiosArgs = _a.sent();
|
|
12824
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
12825
|
+
}
|
|
12826
|
+
});
|
|
12827
|
+
});
|
|
12828
|
+
},
|
|
12535
12829
|
/**
|
|
12536
12830
|
*
|
|
12537
12831
|
* @summary Add, update and delete service appointment timetables
|
|
@@ -13279,6 +13573,22 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
13279
13573
|
apiV1HospitalsHospitalIdAppointmenttimetableoverridesPost: function (hospitalId, saveHospitalAppointmentTimetableOverridesCommand, options) {
|
|
13280
13574
|
return localVarFp.apiV1HospitalsHospitalIdAppointmenttimetableoverridesPost(hospitalId, saveHospitalAppointmentTimetableOverridesCommand, options).then(function (request) { return request(axios, basePath); });
|
|
13281
13575
|
},
|
|
13576
|
+
/**
|
|
13577
|
+
*
|
|
13578
|
+
* @summary Get Hospital appointment timetables for application
|
|
13579
|
+
* @param {string} hospitalId
|
|
13580
|
+
* @param {number} [year]
|
|
13581
|
+
* @param {number} [month]
|
|
13582
|
+
* @param {string} [timeZone]
|
|
13583
|
+
* @param {boolean} [isExternal]
|
|
13584
|
+
* @param {boolean} [isOnline]
|
|
13585
|
+
* @param {string} [appointmentIdExcluded]
|
|
13586
|
+
* @param {*} [options] Override http request option.
|
|
13587
|
+
* @throws {RequiredError}
|
|
13588
|
+
*/
|
|
13589
|
+
apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet: function (hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options) {
|
|
13590
|
+
return localVarFp.apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then(function (request) { return request(axios, basePath); });
|
|
13591
|
+
},
|
|
13282
13592
|
/**
|
|
13283
13593
|
*
|
|
13284
13594
|
* @summary Add, update, delete Hospital appointment timetables
|
|
@@ -14687,6 +14997,23 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
14687
14997
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPost: function (hospitalId, hospitalSpecialtyId, saveHospitalSpecialtyAppointmentTimetableOverridesCommand, options) {
|
|
14688
14998
|
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPost(hospitalId, hospitalSpecialtyId, saveHospitalSpecialtyAppointmentTimetableOverridesCommand, options).then(function (request) { return request(axios, basePath); });
|
|
14689
14999
|
},
|
|
15000
|
+
/**
|
|
15001
|
+
*
|
|
15002
|
+
* @summary Get HospitalSpecialty appointment timetables for application
|
|
15003
|
+
* @param {string} hospitalId
|
|
15004
|
+
* @param {string} hospitalSpecialtyId
|
|
15005
|
+
* @param {number} [year]
|
|
15006
|
+
* @param {number} [month]
|
|
15007
|
+
* @param {string} [timeZone]
|
|
15008
|
+
* @param {boolean} [isExternal]
|
|
15009
|
+
* @param {boolean} [isOnline]
|
|
15010
|
+
* @param {string} [appointmentIdExcluded]
|
|
15011
|
+
* @param {*} [options] Override http request option.
|
|
15012
|
+
* @throws {RequiredError}
|
|
15013
|
+
*/
|
|
15014
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet: function (hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options) {
|
|
15015
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then(function (request) { return request(axios, basePath); });
|
|
15016
|
+
},
|
|
14690
15017
|
/**
|
|
14691
15018
|
*
|
|
14692
15019
|
* @summary Add, update, delete HospitalSpecialty appointment timetables
|
|
@@ -14978,6 +15305,24 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
14978
15305
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPost: function (hospitalId, specialtyId, serviceId, saveServiceAppointmentTimetableOverridesCommand, options) {
|
|
14979
15306
|
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPost(hospitalId, specialtyId, serviceId, saveServiceAppointmentTimetableOverridesCommand, options).then(function (request) { return request(axios, basePath); });
|
|
14980
15307
|
},
|
|
15308
|
+
/**
|
|
15309
|
+
*
|
|
15310
|
+
* @summary Get Service appointment timetables for application
|
|
15311
|
+
* @param {string} hospitalId
|
|
15312
|
+
* @param {string} specialtyId
|
|
15313
|
+
* @param {string} serviceId
|
|
15314
|
+
* @param {number} [year]
|
|
15315
|
+
* @param {number} [month]
|
|
15316
|
+
* @param {string} [timeZone]
|
|
15317
|
+
* @param {boolean} [isExternal]
|
|
15318
|
+
* @param {boolean} [isOnline]
|
|
15319
|
+
* @param {string} [appointmentIdExcluded]
|
|
15320
|
+
* @param {*} [options] Override http request option.
|
|
15321
|
+
* @throws {RequiredError}
|
|
15322
|
+
*/
|
|
15323
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet: function (hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options) {
|
|
15324
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then(function (request) { return request(axios, basePath); });
|
|
15325
|
+
},
|
|
14981
15326
|
/**
|
|
14982
15327
|
*
|
|
14983
15328
|
* @summary Add, update and delete service appointment timetables
|
|
@@ -15444,6 +15789,18 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
15444
15789
|
var _this = this;
|
|
15445
15790
|
return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdAppointmenttimetableoverridesPost(requestParameters.hospitalId, requestParameters.saveHospitalAppointmentTimetableOverridesCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
15446
15791
|
};
|
|
15792
|
+
/**
|
|
15793
|
+
*
|
|
15794
|
+
* @summary Get Hospital appointment timetables for application
|
|
15795
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesApplicationGetRequest} requestParameters Request parameters.
|
|
15796
|
+
* @param {*} [options] Override http request option.
|
|
15797
|
+
* @throws {RequiredError}
|
|
15798
|
+
* @memberof HospitalsApi
|
|
15799
|
+
*/
|
|
15800
|
+
HospitalsApi.prototype.apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet = function (requestParameters, options) {
|
|
15801
|
+
var _this = this;
|
|
15802
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(requestParameters.hospitalId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
15803
|
+
};
|
|
15447
15804
|
/**
|
|
15448
15805
|
*
|
|
15449
15806
|
* @summary Add, update, delete Hospital appointment timetables
|
|
@@ -16800,6 +17157,18 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
16800
17157
|
var _this = this;
|
|
16801
17158
|
return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPost(requestParameters.hospitalId, requestParameters.hospitalSpecialtyId, requestParameters.saveHospitalSpecialtyAppointmentTimetableOverridesCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
16802
17159
|
};
|
|
17160
|
+
/**
|
|
17161
|
+
*
|
|
17162
|
+
* @summary Get HospitalSpecialty appointment timetables for application
|
|
17163
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGetRequest} requestParameters Request parameters.
|
|
17164
|
+
* @param {*} [options] Override http request option.
|
|
17165
|
+
* @throws {RequiredError}
|
|
17166
|
+
* @memberof HospitalsApi
|
|
17167
|
+
*/
|
|
17168
|
+
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet = function (requestParameters, options) {
|
|
17169
|
+
var _this = this;
|
|
17170
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(requestParameters.hospitalId, requestParameters.hospitalSpecialtyId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
17171
|
+
};
|
|
16803
17172
|
/**
|
|
16804
17173
|
*
|
|
16805
17174
|
* @summary Add, update, delete HospitalSpecialty appointment timetables
|
|
@@ -17052,6 +17421,18 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
17052
17421
|
var _this = this;
|
|
17053
17422
|
return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPost(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, requestParameters.saveServiceAppointmentTimetableOverridesCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
17054
17423
|
};
|
|
17424
|
+
/**
|
|
17425
|
+
*
|
|
17426
|
+
* @summary Get Service appointment timetables for application
|
|
17427
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGetRequest} requestParameters Request parameters.
|
|
17428
|
+
* @param {*} [options] Override http request option.
|
|
17429
|
+
* @throws {RequiredError}
|
|
17430
|
+
* @memberof HospitalsApi
|
|
17431
|
+
*/
|
|
17432
|
+
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet = function (requestParameters, options) {
|
|
17433
|
+
var _this = this;
|
|
17434
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
17435
|
+
};
|
|
17055
17436
|
/**
|
|
17056
17437
|
*
|
|
17057
17438
|
* @summary Add, update and delete service appointment timetables
|