ch-admin-api-client-typescript 5.25.21 → 5.25.22
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/deals-api.d.ts +12 -3
- package/lib/api/deals-api.d.ts.map +1 -1
- package/lib/api/deals-api.js +12 -6
- package/lib/api/doctor-affiliations-api.d.ts +12 -3
- package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
- package/lib/api/doctor-affiliations-api.js +12 -6
- package/lib/api/hospitals-api.d.ts +36 -9
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +36 -18
- package/lib/models/payment-method.d.ts +1 -0
- package/lib/models/payment-method.d.ts.map +1 -1
- package/lib/models/payment-method.js +2 -1
- package/package.json +1 -1
- package/src/api/deals-api.ts +20 -6
- package/src/api/doctor-affiliations-api.ts +20 -6
- package/src/api/hospitals-api.ts +60 -18
- package/src/models/payment-method.ts +2 -1
package/lib/api/hospitals-api.js
CHANGED
|
@@ -583,10 +583,11 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
583
583
|
* @param {boolean} [isExternal]
|
|
584
584
|
* @param {boolean} [isOnline]
|
|
585
585
|
* @param {string} [appointmentIdExcluded]
|
|
586
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
586
587
|
* @param {*} [options] Override http request option.
|
|
587
588
|
* @throws {RequiredError}
|
|
588
589
|
*/
|
|
589
|
-
apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet: function (hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options) {
|
|
590
|
+
apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet: function (hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options) {
|
|
590
591
|
if (options === void 0) { options = {}; }
|
|
591
592
|
return __awaiter(_this, void 0, void 0, function () {
|
|
592
593
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -629,6 +630,9 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
629
630
|
if (appointmentIdExcluded !== undefined) {
|
|
630
631
|
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
631
632
|
}
|
|
633
|
+
if (excludeUnavailableTimeSlots !== undefined) {
|
|
634
|
+
localVarQueryParameter['ExcludeUnavailableTimeSlots'] = excludeUnavailableTimeSlots;
|
|
635
|
+
}
|
|
632
636
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
633
637
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
634
638
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -6681,10 +6685,11 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
6681
6685
|
* @param {boolean} [isExternal]
|
|
6682
6686
|
* @param {boolean} [isOnline]
|
|
6683
6687
|
* @param {string} [appointmentIdExcluded]
|
|
6688
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
6684
6689
|
* @param {*} [options] Override http request option.
|
|
6685
6690
|
* @throws {RequiredError}
|
|
6686
6691
|
*/
|
|
6687
|
-
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet: function (hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options) {
|
|
6692
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet: function (hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options) {
|
|
6688
6693
|
if (options === void 0) { options = {}; }
|
|
6689
6694
|
return __awaiter(_this, void 0, void 0, function () {
|
|
6690
6695
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -6730,6 +6735,9 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
6730
6735
|
if (appointmentIdExcluded !== undefined) {
|
|
6731
6736
|
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
6732
6737
|
}
|
|
6738
|
+
if (excludeUnavailableTimeSlots !== undefined) {
|
|
6739
|
+
localVarQueryParameter['ExcludeUnavailableTimeSlots'] = excludeUnavailableTimeSlots;
|
|
6740
|
+
}
|
|
6733
6741
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
6734
6742
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6735
6743
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -7987,10 +7995,11 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
7987
7995
|
* @param {boolean} [isExternal]
|
|
7988
7996
|
* @param {boolean} [isOnline]
|
|
7989
7997
|
* @param {string} [appointmentIdExcluded]
|
|
7998
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
7990
7999
|
* @param {*} [options] Override http request option.
|
|
7991
8000
|
* @throws {RequiredError}
|
|
7992
8001
|
*/
|
|
7993
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet: function (hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options) {
|
|
8002
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet: function (hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options) {
|
|
7994
8003
|
if (options === void 0) { options = {}; }
|
|
7995
8004
|
return __awaiter(_this, void 0, void 0, function () {
|
|
7996
8005
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -8039,6 +8048,9 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
8039
8048
|
if (appointmentIdExcluded !== undefined) {
|
|
8040
8049
|
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
8041
8050
|
}
|
|
8051
|
+
if (excludeUnavailableTimeSlots !== undefined) {
|
|
8052
|
+
localVarQueryParameter['ExcludeUnavailableTimeSlots'] = excludeUnavailableTimeSlots;
|
|
8053
|
+
}
|
|
8042
8054
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
8043
8055
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
8044
8056
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -9768,15 +9780,16 @@ var HospitalsApiFp = function (configuration) {
|
|
|
9768
9780
|
* @param {boolean} [isExternal]
|
|
9769
9781
|
* @param {boolean} [isOnline]
|
|
9770
9782
|
* @param {string} [appointmentIdExcluded]
|
|
9783
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
9771
9784
|
* @param {*} [options] Override http request option.
|
|
9772
9785
|
* @throws {RequiredError}
|
|
9773
9786
|
*/
|
|
9774
|
-
apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet: function (hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options) {
|
|
9787
|
+
apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet: function (hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options) {
|
|
9775
9788
|
return __awaiter(this, void 0, void 0, function () {
|
|
9776
9789
|
var localVarAxiosArgs;
|
|
9777
9790
|
return __generator(this, function (_a) {
|
|
9778
9791
|
switch (_a.label) {
|
|
9779
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options)];
|
|
9792
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options)];
|
|
9780
9793
|
case 1:
|
|
9781
9794
|
localVarAxiosArgs = _a.sent();
|
|
9782
9795
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -12354,15 +12367,16 @@ var HospitalsApiFp = function (configuration) {
|
|
|
12354
12367
|
* @param {boolean} [isExternal]
|
|
12355
12368
|
* @param {boolean} [isOnline]
|
|
12356
12369
|
* @param {string} [appointmentIdExcluded]
|
|
12370
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
12357
12371
|
* @param {*} [options] Override http request option.
|
|
12358
12372
|
* @throws {RequiredError}
|
|
12359
12373
|
*/
|
|
12360
|
-
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet: function (hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options) {
|
|
12374
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet: function (hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options) {
|
|
12361
12375
|
return __awaiter(this, void 0, void 0, function () {
|
|
12362
12376
|
var localVarAxiosArgs;
|
|
12363
12377
|
return __generator(this, function (_a) {
|
|
12364
12378
|
switch (_a.label) {
|
|
12365
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options)];
|
|
12379
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options)];
|
|
12366
12380
|
case 1:
|
|
12367
12381
|
localVarAxiosArgs = _a.sent();
|
|
12368
12382
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -12883,15 +12897,16 @@ var HospitalsApiFp = function (configuration) {
|
|
|
12883
12897
|
* @param {boolean} [isExternal]
|
|
12884
12898
|
* @param {boolean} [isOnline]
|
|
12885
12899
|
* @param {string} [appointmentIdExcluded]
|
|
12900
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
12886
12901
|
* @param {*} [options] Override http request option.
|
|
12887
12902
|
* @throws {RequiredError}
|
|
12888
12903
|
*/
|
|
12889
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet: function (hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options) {
|
|
12904
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet: function (hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options) {
|
|
12890
12905
|
return __awaiter(this, void 0, void 0, function () {
|
|
12891
12906
|
var localVarAxiosArgs;
|
|
12892
12907
|
return __generator(this, function (_a) {
|
|
12893
12908
|
switch (_a.label) {
|
|
12894
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options)];
|
|
12909
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options)];
|
|
12895
12910
|
case 1:
|
|
12896
12911
|
localVarAxiosArgs = _a.sent();
|
|
12897
12912
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -13656,11 +13671,12 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
13656
13671
|
* @param {boolean} [isExternal]
|
|
13657
13672
|
* @param {boolean} [isOnline]
|
|
13658
13673
|
* @param {string} [appointmentIdExcluded]
|
|
13674
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
13659
13675
|
* @param {*} [options] Override http request option.
|
|
13660
13676
|
* @throws {RequiredError}
|
|
13661
13677
|
*/
|
|
13662
|
-
apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet: function (hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options) {
|
|
13663
|
-
return localVarFp.apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then(function (request) { return request(axios, basePath); });
|
|
13678
|
+
apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet: function (hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options) {
|
|
13679
|
+
return localVarFp.apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options).then(function (request) { return request(axios, basePath); });
|
|
13664
13680
|
},
|
|
13665
13681
|
/**
|
|
13666
13682
|
*
|
|
@@ -15092,11 +15108,12 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
15092
15108
|
* @param {boolean} [isExternal]
|
|
15093
15109
|
* @param {boolean} [isOnline]
|
|
15094
15110
|
* @param {string} [appointmentIdExcluded]
|
|
15111
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
15095
15112
|
* @param {*} [options] Override http request option.
|
|
15096
15113
|
* @throws {RequiredError}
|
|
15097
15114
|
*/
|
|
15098
|
-
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet: function (hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options) {
|
|
15099
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then(function (request) { return request(axios, basePath); });
|
|
15115
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet: function (hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options) {
|
|
15116
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options).then(function (request) { return request(axios, basePath); });
|
|
15100
15117
|
},
|
|
15101
15118
|
/**
|
|
15102
15119
|
*
|
|
@@ -15401,11 +15418,12 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
15401
15418
|
* @param {boolean} [isExternal]
|
|
15402
15419
|
* @param {boolean} [isOnline]
|
|
15403
15420
|
* @param {string} [appointmentIdExcluded]
|
|
15421
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
15404
15422
|
* @param {*} [options] Override http request option.
|
|
15405
15423
|
* @throws {RequiredError}
|
|
15406
15424
|
*/
|
|
15407
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet: function (hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options) {
|
|
15408
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then(function (request) { return request(axios, basePath); });
|
|
15425
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet: function (hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options) {
|
|
15426
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options).then(function (request) { return request(axios, basePath); });
|
|
15409
15427
|
},
|
|
15410
15428
|
/**
|
|
15411
15429
|
*
|
|
@@ -15883,7 +15901,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
15883
15901
|
*/
|
|
15884
15902
|
HospitalsApi.prototype.apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet = function (requestParameters, options) {
|
|
15885
15903
|
var _this = this;
|
|
15886
|
-
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); });
|
|
15904
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(requestParameters.hospitalId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, requestParameters.excludeUnavailableTimeSlots, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
15887
15905
|
};
|
|
15888
15906
|
/**
|
|
15889
15907
|
*
|
|
@@ -17263,7 +17281,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
17263
17281
|
*/
|
|
17264
17282
|
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet = function (requestParameters, options) {
|
|
17265
17283
|
var _this = this;
|
|
17266
|
-
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); });
|
|
17284
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(requestParameters.hospitalId, requestParameters.hospitalSpecialtyId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, requestParameters.excludeUnavailableTimeSlots, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
17267
17285
|
};
|
|
17268
17286
|
/**
|
|
17269
17287
|
*
|
|
@@ -17527,7 +17545,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
17527
17545
|
*/
|
|
17528
17546
|
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet = function (requestParameters, options) {
|
|
17529
17547
|
var _this = this;
|
|
17530
|
-
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); });
|
|
17548
|
+
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, requestParameters.excludeUnavailableTimeSlots, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
17531
17549
|
};
|
|
17532
17550
|
/**
|
|
17533
17551
|
*
|
|
@@ -20,6 +20,7 @@ export declare const PaymentMethod: {
|
|
|
20
20
|
readonly BankTransfer: "BankTransfer";
|
|
21
21
|
readonly Upi: "Upi";
|
|
22
22
|
readonly HospitalPaymentGateway: "HospitalPaymentGateway";
|
|
23
|
+
readonly Cash: "Cash";
|
|
23
24
|
};
|
|
24
25
|
export type PaymentMethod = typeof PaymentMethod[keyof typeof PaymentMethod];
|
|
25
26
|
//# sourceMappingURL=payment-method.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payment-method.d.ts","sourceRoot":"","sources":["../../src/models/payment-method.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"payment-method.d.ts","sourceRoot":"","sources":["../../src/models/payment-method.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,aAAa;;;;;;;CAOhB,CAAC;AAEX,MAAM,MAAM,aAAa,GAAG,OAAO,aAAa,CAAC,MAAM,OAAO,aAAa,CAAC,CAAC"}
|
package/package.json
CHANGED
package/src/api/deals-api.ts
CHANGED
|
@@ -443,10 +443,11 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
443
443
|
* @param {boolean} [isExternal]
|
|
444
444
|
* @param {boolean} [isOnline]
|
|
445
445
|
* @param {string} [appointmentIdExcluded]
|
|
446
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
446
447
|
* @param {*} [options] Override http request option.
|
|
447
448
|
* @throws {RequiredError}
|
|
448
449
|
*/
|
|
449
|
-
apiV1DealsDealIdPackagesPackageIdAppointmenttimetablesApplicationGet: async (dealId: string, packageId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
450
|
+
apiV1DealsDealIdPackagesPackageIdAppointmenttimetablesApplicationGet: async (dealId: string, packageId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
450
451
|
// verify required parameter 'dealId' is not null or undefined
|
|
451
452
|
assertParamExists('apiV1DealsDealIdPackagesPackageIdAppointmenttimetablesApplicationGet', 'dealId', dealId)
|
|
452
453
|
// verify required parameter 'packageId' is not null or undefined
|
|
@@ -493,6 +494,10 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
493
494
|
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
494
495
|
}
|
|
495
496
|
|
|
497
|
+
if (excludeUnavailableTimeSlots !== undefined) {
|
|
498
|
+
localVarQueryParameter['ExcludeUnavailableTimeSlots'] = excludeUnavailableTimeSlots;
|
|
499
|
+
}
|
|
500
|
+
|
|
496
501
|
|
|
497
502
|
|
|
498
503
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1650,11 +1655,12 @@ export const DealsApiFp = function(configuration?: Configuration) {
|
|
|
1650
1655
|
* @param {boolean} [isExternal]
|
|
1651
1656
|
* @param {boolean} [isOnline]
|
|
1652
1657
|
* @param {string} [appointmentIdExcluded]
|
|
1658
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
1653
1659
|
* @param {*} [options] Override http request option.
|
|
1654
1660
|
* @throws {RequiredError}
|
|
1655
1661
|
*/
|
|
1656
|
-
async apiV1DealsDealIdPackagesPackageIdAppointmenttimetablesApplicationGet(dealId: string, packageId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>> {
|
|
1657
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DealsDealIdPackagesPackageIdAppointmenttimetablesApplicationGet(dealId, packageId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options);
|
|
1662
|
+
async apiV1DealsDealIdPackagesPackageIdAppointmenttimetablesApplicationGet(dealId: string, packageId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>> {
|
|
1663
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DealsDealIdPackagesPackageIdAppointmenttimetablesApplicationGet(dealId, packageId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options);
|
|
1658
1664
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1659
1665
|
},
|
|
1660
1666
|
/**
|
|
@@ -2032,11 +2038,12 @@ export const DealsApiFactory = function (configuration?: Configuration, basePath
|
|
|
2032
2038
|
* @param {boolean} [isExternal]
|
|
2033
2039
|
* @param {boolean} [isOnline]
|
|
2034
2040
|
* @param {string} [appointmentIdExcluded]
|
|
2041
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
2035
2042
|
* @param {*} [options] Override http request option.
|
|
2036
2043
|
* @throws {RequiredError}
|
|
2037
2044
|
*/
|
|
2038
|
-
apiV1DealsDealIdPackagesPackageIdAppointmenttimetablesApplicationGet(dealId: string, packageId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel> {
|
|
2039
|
-
return localVarFp.apiV1DealsDealIdPackagesPackageIdAppointmenttimetablesApplicationGet(dealId, packageId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
2045
|
+
apiV1DealsDealIdPackagesPackageIdAppointmenttimetablesApplicationGet(dealId: string, packageId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel> {
|
|
2046
|
+
return localVarFp.apiV1DealsDealIdPackagesPackageIdAppointmenttimetablesApplicationGet(dealId, packageId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options).then((request) => request(axios, basePath));
|
|
2040
2047
|
},
|
|
2041
2048
|
/**
|
|
2042
2049
|
*
|
|
@@ -2612,6 +2619,13 @@ export interface DealsApiApiV1DealsDealIdPackagesPackageIdAppointmenttimetablesA
|
|
|
2612
2619
|
* @memberof DealsApiApiV1DealsDealIdPackagesPackageIdAppointmenttimetablesApplicationGet
|
|
2613
2620
|
*/
|
|
2614
2621
|
readonly appointmentIdExcluded?: string
|
|
2622
|
+
|
|
2623
|
+
/**
|
|
2624
|
+
*
|
|
2625
|
+
* @type {boolean}
|
|
2626
|
+
* @memberof DealsApiApiV1DealsDealIdPackagesPackageIdAppointmenttimetablesApplicationGet
|
|
2627
|
+
*/
|
|
2628
|
+
readonly excludeUnavailableTimeSlots?: boolean
|
|
2615
2629
|
}
|
|
2616
2630
|
|
|
2617
2631
|
/**
|
|
@@ -3451,7 +3465,7 @@ export class DealsApi extends BaseAPI {
|
|
|
3451
3465
|
* @memberof DealsApi
|
|
3452
3466
|
*/
|
|
3453
3467
|
public apiV1DealsDealIdPackagesPackageIdAppointmenttimetablesApplicationGet(requestParameters: DealsApiApiV1DealsDealIdPackagesPackageIdAppointmenttimetablesApplicationGetRequest, options?: AxiosRequestConfig) {
|
|
3454
|
-
return DealsApiFp(this.configuration).apiV1DealsDealIdPackagesPackageIdAppointmenttimetablesApplicationGet(requestParameters.dealId, requestParameters.packageId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
3468
|
+
return DealsApiFp(this.configuration).apiV1DealsDealIdPackagesPackageIdAppointmenttimetablesApplicationGet(requestParameters.dealId, requestParameters.packageId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, requestParameters.excludeUnavailableTimeSlots, options).then((request) => request(this.axios, this.basePath));
|
|
3455
3469
|
}
|
|
3456
3470
|
|
|
3457
3471
|
/**
|
|
@@ -241,10 +241,11 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
241
241
|
* @param {boolean} [isExternal]
|
|
242
242
|
* @param {boolean} [isOnline]
|
|
243
243
|
* @param {string} [appointmentIdExcluded]
|
|
244
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
244
245
|
* @param {*} [options] Override http request option.
|
|
245
246
|
* @throws {RequiredError}
|
|
246
247
|
*/
|
|
247
|
-
apiV1DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesApplicationGet: async (doctorAffiliationId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
248
|
+
apiV1DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesApplicationGet: async (doctorAffiliationId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
248
249
|
// verify required parameter 'doctorAffiliationId' is not null or undefined
|
|
249
250
|
assertParamExists('apiV1DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesApplicationGet', 'doctorAffiliationId', doctorAffiliationId)
|
|
250
251
|
const localVarPath = `/api/v1/doctoraffiliations/{doctorAffiliationId}/appointmenttimetables/application`
|
|
@@ -288,6 +289,10 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
288
289
|
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
289
290
|
}
|
|
290
291
|
|
|
292
|
+
if (excludeUnavailableTimeSlots !== undefined) {
|
|
293
|
+
localVarQueryParameter['ExcludeUnavailableTimeSlots'] = excludeUnavailableTimeSlots;
|
|
294
|
+
}
|
|
295
|
+
|
|
291
296
|
|
|
292
297
|
|
|
293
298
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1089,11 +1094,12 @@ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
|
|
|
1089
1094
|
* @param {boolean} [isExternal]
|
|
1090
1095
|
* @param {boolean} [isOnline]
|
|
1091
1096
|
* @param {string} [appointmentIdExcluded]
|
|
1097
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
1092
1098
|
* @param {*} [options] Override http request option.
|
|
1093
1099
|
* @throws {RequiredError}
|
|
1094
1100
|
*/
|
|
1095
|
-
async apiV1DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesApplicationGet(doctorAffiliationId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>> {
|
|
1096
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesApplicationGet(doctorAffiliationId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options);
|
|
1101
|
+
async apiV1DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesApplicationGet(doctorAffiliationId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>> {
|
|
1102
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesApplicationGet(doctorAffiliationId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options);
|
|
1097
1103
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1098
1104
|
},
|
|
1099
1105
|
/**
|
|
@@ -1351,11 +1357,12 @@ export const DoctorAffiliationsApiFactory = function (configuration?: Configurat
|
|
|
1351
1357
|
* @param {boolean} [isExternal]
|
|
1352
1358
|
* @param {boolean} [isOnline]
|
|
1353
1359
|
* @param {string} [appointmentIdExcluded]
|
|
1360
|
+
* @param {boolean} [excludeUnavailableTimeSlots]
|
|
1354
1361
|
* @param {*} [options] Override http request option.
|
|
1355
1362
|
* @throws {RequiredError}
|
|
1356
1363
|
*/
|
|
1357
|
-
apiV1DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesApplicationGet(doctorAffiliationId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel> {
|
|
1358
|
-
return localVarFp.apiV1DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesApplicationGet(doctorAffiliationId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
1364
|
+
apiV1DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesApplicationGet(doctorAffiliationId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel> {
|
|
1365
|
+
return localVarFp.apiV1DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesApplicationGet(doctorAffiliationId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options).then((request) => request(axios, basePath));
|
|
1359
1366
|
},
|
|
1360
1367
|
/**
|
|
1361
1368
|
*
|
|
@@ -1700,6 +1707,13 @@ export interface DoctorAffiliationsApiApiV1DoctoraffiliationsDoctorAffiliationId
|
|
|
1700
1707
|
* @memberof DoctorAffiliationsApiApiV1DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesApplicationGet
|
|
1701
1708
|
*/
|
|
1702
1709
|
readonly appointmentIdExcluded?: string
|
|
1710
|
+
|
|
1711
|
+
/**
|
|
1712
|
+
*
|
|
1713
|
+
* @type {boolean}
|
|
1714
|
+
* @memberof DoctorAffiliationsApiApiV1DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesApplicationGet
|
|
1715
|
+
*/
|
|
1716
|
+
readonly excludeUnavailableTimeSlots?: boolean
|
|
1703
1717
|
}
|
|
1704
1718
|
|
|
1705
1719
|
/**
|
|
@@ -2188,7 +2202,7 @@ export class DoctorAffiliationsApi extends BaseAPI {
|
|
|
2188
2202
|
* @memberof DoctorAffiliationsApi
|
|
2189
2203
|
*/
|
|
2190
2204
|
public apiV1DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesApplicationGet(requestParameters: DoctorAffiliationsApiApiV1DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesApplicationGetRequest, options?: AxiosRequestConfig) {
|
|
2191
|
-
return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesApplicationGet(requestParameters.doctorAffiliationId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
2205
|
+
return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesApplicationGet(requestParameters.doctorAffiliationId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, requestParameters.excludeUnavailableTimeSlots, options).then((request) => request(this.axios, this.basePath));
|
|
2192
2206
|
}
|
|
2193
2207
|
|
|
2194
2208
|
/**
|