ch-api-client-typescript2 5.79.15 → 5.79.17
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/articles-api.d.ts +36 -9
- package/lib/api/articles-api.d.ts.map +1 -1
- package/lib/api/articles-api.js +45 -27
- package/lib/api/deals-api.d.ts +39 -30
- package/lib/api/deals-api.d.ts.map +1 -1
- package/lib/api/deals-api.js +52 -46
- package/lib/api/doctor-affiliations-api.d.ts +36 -9
- package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
- package/lib/api/doctor-affiliations-api.js +45 -27
- package/lib/api/doctors-api.d.ts +40 -13
- package/lib/api/doctors-api.d.ts.map +1 -1
- package/lib/api/doctors-api.js +49 -31
- package/lib/api/hospitals-api.d.ts +96 -29
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +115 -69
- package/lib/api/service-reviews-api.d.ts +12 -3
- package/lib/api/service-reviews-api.d.ts.map +1 -1
- package/lib/api/service-reviews-api.js +15 -9
- package/lib/api/services-api.d.ts +36 -9
- package/lib/api/services-api.d.ts.map +1 -1
- package/lib/api/services-api.js +45 -27
- package/lib/api/specialties-api.d.ts +24 -6
- package/lib/api/specialties-api.d.ts.map +1 -1
- package/lib/api/specialties-api.js +30 -18
- package/lib/api/specialty-types-api.d.ts +28 -10
- package/lib/api/specialty-types-api.d.ts.map +1 -1
- package/lib/api/specialty-types-api.js +34 -22
- package/package.json +1 -1
package/lib/api/deals-api.js
CHANGED
|
@@ -105,17 +105,18 @@ var DealsApiAxiosParamCreator = function (configuration) {
|
|
|
105
105
|
*
|
|
106
106
|
* @summary Get deal.
|
|
107
107
|
* @param {string} dealId
|
|
108
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
108
109
|
* @param {string} [languageCode]
|
|
109
110
|
* @param {boolean} [returnDefaultValue]
|
|
110
111
|
* @param {*} [options] Override http request option.
|
|
111
112
|
* @throws {RequiredError}
|
|
112
113
|
*/
|
|
113
|
-
apiV2DealsDealIdGet: function (dealId_1, languageCode_1, returnDefaultValue_1) {
|
|
114
|
+
apiV2DealsDealIdGet: function (dealId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1) {
|
|
114
115
|
var args_1 = [];
|
|
115
|
-
for (var _i =
|
|
116
|
-
args_1[_i -
|
|
116
|
+
for (var _i = 4; _i < arguments.length; _i++) {
|
|
117
|
+
args_1[_i - 4] = arguments[_i];
|
|
117
118
|
}
|
|
118
|
-
return __awaiter(_this, __spreadArray([dealId_1, languageCode_1, returnDefaultValue_1], args_1, true), void 0, function (dealId, languageCode, returnDefaultValue, options) {
|
|
119
|
+
return __awaiter(_this, __spreadArray([dealId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1], args_1, true), void 0, function (dealId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
119
120
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
120
121
|
if (options === void 0) { options = {}; }
|
|
121
122
|
return __generator(this, function (_a) {
|
|
@@ -136,6 +137,9 @@ var DealsApiAxiosParamCreator = function (configuration) {
|
|
|
136
137
|
if (returnDefaultValue !== undefined) {
|
|
137
138
|
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
138
139
|
}
|
|
140
|
+
if (xCloudhospitalPlatform != null) {
|
|
141
|
+
localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
|
|
142
|
+
}
|
|
139
143
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
140
144
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
141
145
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -464,6 +468,7 @@ var DealsApiAxiosParamCreator = function (configuration) {
|
|
|
464
468
|
/**
|
|
465
469
|
*
|
|
466
470
|
* @summary Get all deals.
|
|
471
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
467
472
|
* @param {string} [id]
|
|
468
473
|
* @param {string} [name]
|
|
469
474
|
* @param {MarketingType} [marketingType]
|
|
@@ -481,7 +486,6 @@ var DealsApiAxiosParamCreator = function (configuration) {
|
|
|
481
486
|
* @param {Array<string>} [ids]
|
|
482
487
|
* @param {number} [serviceDuration]
|
|
483
488
|
* @param {string} [languageCode]
|
|
484
|
-
* @param {boolean} [showHidden]
|
|
485
489
|
* @param {boolean} [returnDefaultValue]
|
|
486
490
|
* @param {number} [page]
|
|
487
491
|
* @param {number} [limit]
|
|
@@ -489,12 +493,12 @@ var DealsApiAxiosParamCreator = function (configuration) {
|
|
|
489
493
|
* @param {*} [options] Override http request option.
|
|
490
494
|
* @throws {RequiredError}
|
|
491
495
|
*/
|
|
492
|
-
apiV2DealsGet: function (id_1, name_1, marketingType_1, countryId_1, hospitalId_1, hospitalName_1, specialtyId_1, specialtyName_1, specialtyTypeId_1, specialtyTypeName_1, serviceId_1, serviceName_1, exceptHospitalId_1, exceptDealId_1, ids_1, serviceDuration_1, languageCode_1,
|
|
496
|
+
apiV2DealsGet: function (xCloudhospitalPlatform_1, id_1, name_1, marketingType_1, countryId_1, hospitalId_1, hospitalName_1, specialtyId_1, specialtyName_1, specialtyTypeId_1, specialtyTypeName_1, serviceId_1, serviceName_1, exceptHospitalId_1, exceptDealId_1, ids_1, serviceDuration_1, languageCode_1, returnDefaultValue_1, page_1, limit_1, lastRetrieved_1) {
|
|
493
497
|
var args_1 = [];
|
|
494
498
|
for (var _i = 22; _i < arguments.length; _i++) {
|
|
495
499
|
args_1[_i - 22] = arguments[_i];
|
|
496
500
|
}
|
|
497
|
-
return __awaiter(_this, __spreadArray([id_1, name_1, marketingType_1, countryId_1, hospitalId_1, hospitalName_1, specialtyId_1, specialtyName_1, specialtyTypeId_1, specialtyTypeName_1, serviceId_1, serviceName_1, exceptHospitalId_1, exceptDealId_1, ids_1, serviceDuration_1, languageCode_1,
|
|
501
|
+
return __awaiter(_this, __spreadArray([xCloudhospitalPlatform_1, id_1, name_1, marketingType_1, countryId_1, hospitalId_1, hospitalName_1, specialtyId_1, specialtyName_1, specialtyTypeId_1, specialtyTypeName_1, serviceId_1, serviceName_1, exceptHospitalId_1, exceptDealId_1, ids_1, serviceDuration_1, languageCode_1, returnDefaultValue_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (xCloudhospitalPlatform, id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceId, serviceName, exceptHospitalId, exceptDealId, ids, serviceDuration, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
498
502
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
499
503
|
if (options === void 0) { options = {}; }
|
|
500
504
|
return __generator(this, function (_a) {
|
|
@@ -557,9 +561,6 @@ var DealsApiAxiosParamCreator = function (configuration) {
|
|
|
557
561
|
if (languageCode !== undefined) {
|
|
558
562
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
559
563
|
}
|
|
560
|
-
if (showHidden !== undefined) {
|
|
561
|
-
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
562
|
-
}
|
|
563
564
|
if (returnDefaultValue !== undefined) {
|
|
564
565
|
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
565
566
|
}
|
|
@@ -574,6 +575,9 @@ var DealsApiAxiosParamCreator = function (configuration) {
|
|
|
574
575
|
lastRetrieved.toISOString() :
|
|
575
576
|
lastRetrieved;
|
|
576
577
|
}
|
|
578
|
+
if (xCloudhospitalPlatform != null) {
|
|
579
|
+
localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
|
|
580
|
+
}
|
|
577
581
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
578
582
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
579
583
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -604,7 +608,6 @@ var DealsApiAxiosParamCreator = function (configuration) {
|
|
|
604
608
|
* @param {Array<string>} [ids]
|
|
605
609
|
* @param {number} [serviceDuration]
|
|
606
610
|
* @param {string} [languageCode]
|
|
607
|
-
* @param {boolean} [showHidden]
|
|
608
611
|
* @param {boolean} [returnDefaultValue]
|
|
609
612
|
* @param {number} [page]
|
|
610
613
|
* @param {number} [limit]
|
|
@@ -612,12 +615,12 @@ var DealsApiAxiosParamCreator = function (configuration) {
|
|
|
612
615
|
* @param {*} [options] Override http request option.
|
|
613
616
|
* @throws {RequiredError}
|
|
614
617
|
*/
|
|
615
|
-
apiV2DealsSimpleGet: function (id_1, name_1, marketingType_1, countryId_1, hospitalId_1, hospitalName_1, specialtyId_1, specialtyName_1, specialtyTypeId_1, specialtyTypeName_1, serviceId_1, serviceName_1, exceptHospitalId_1, exceptDealId_1, ids_1, serviceDuration_1, languageCode_1,
|
|
618
|
+
apiV2DealsSimpleGet: function (id_1, name_1, marketingType_1, countryId_1, hospitalId_1, hospitalName_1, specialtyId_1, specialtyName_1, specialtyTypeId_1, specialtyTypeName_1, serviceId_1, serviceName_1, exceptHospitalId_1, exceptDealId_1, ids_1, serviceDuration_1, languageCode_1, returnDefaultValue_1, page_1, limit_1, lastRetrieved_1) {
|
|
616
619
|
var args_1 = [];
|
|
617
|
-
for (var _i =
|
|
618
|
-
args_1[_i -
|
|
620
|
+
for (var _i = 21; _i < arguments.length; _i++) {
|
|
621
|
+
args_1[_i - 21] = arguments[_i];
|
|
619
622
|
}
|
|
620
|
-
return __awaiter(_this, __spreadArray([id_1, name_1, marketingType_1, countryId_1, hospitalId_1, hospitalName_1, specialtyId_1, specialtyName_1, specialtyTypeId_1, specialtyTypeName_1, serviceId_1, serviceName_1, exceptHospitalId_1, exceptDealId_1, ids_1, serviceDuration_1, languageCode_1,
|
|
623
|
+
return __awaiter(_this, __spreadArray([id_1, name_1, marketingType_1, countryId_1, hospitalId_1, hospitalName_1, specialtyId_1, specialtyName_1, specialtyTypeId_1, specialtyTypeName_1, serviceId_1, serviceName_1, exceptHospitalId_1, exceptDealId_1, ids_1, serviceDuration_1, languageCode_1, returnDefaultValue_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceId, serviceName, exceptHospitalId, exceptDealId, ids, serviceDuration, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
621
624
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
622
625
|
if (options === void 0) { options = {}; }
|
|
623
626
|
return __generator(this, function (_a) {
|
|
@@ -680,9 +683,6 @@ var DealsApiAxiosParamCreator = function (configuration) {
|
|
|
680
683
|
if (languageCode !== undefined) {
|
|
681
684
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
682
685
|
}
|
|
683
|
-
if (showHidden !== undefined) {
|
|
684
|
-
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
685
|
-
}
|
|
686
686
|
if (returnDefaultValue !== undefined) {
|
|
687
687
|
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
688
688
|
}
|
|
@@ -711,6 +711,7 @@ var DealsApiAxiosParamCreator = function (configuration) {
|
|
|
711
711
|
*
|
|
712
712
|
* @summary Get deal by slug.
|
|
713
713
|
* @param {string} slug
|
|
714
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
714
715
|
* @param {string} [languageCode]
|
|
715
716
|
* @param {boolean} [returnDefaultValue]
|
|
716
717
|
* @param {string} [previewSecret]
|
|
@@ -718,12 +719,12 @@ var DealsApiAxiosParamCreator = function (configuration) {
|
|
|
718
719
|
* @param {*} [options] Override http request option.
|
|
719
720
|
* @throws {RequiredError}
|
|
720
721
|
*/
|
|
721
|
-
apiV2DealsSlugGet: function (slug_1, languageCode_1, returnDefaultValue_1, previewSecret_1, hospitalId_1) {
|
|
722
|
+
apiV2DealsSlugGet: function (slug_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, previewSecret_1, hospitalId_1) {
|
|
722
723
|
var args_1 = [];
|
|
723
|
-
for (var _i =
|
|
724
|
-
args_1[_i -
|
|
724
|
+
for (var _i = 6; _i < arguments.length; _i++) {
|
|
725
|
+
args_1[_i - 6] = arguments[_i];
|
|
725
726
|
}
|
|
726
|
-
return __awaiter(_this, __spreadArray([slug_1, languageCode_1, returnDefaultValue_1, previewSecret_1, hospitalId_1], args_1, true), void 0, function (slug, languageCode, returnDefaultValue, previewSecret, hospitalId, options) {
|
|
727
|
+
return __awaiter(_this, __spreadArray([slug_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, previewSecret_1, hospitalId_1], args_1, true), void 0, function (slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, hospitalId, options) {
|
|
727
728
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
728
729
|
if (options === void 0) { options = {}; }
|
|
729
730
|
return __generator(this, function (_a) {
|
|
@@ -750,6 +751,9 @@ var DealsApiAxiosParamCreator = function (configuration) {
|
|
|
750
751
|
if (hospitalId !== undefined) {
|
|
751
752
|
localVarQueryParameter['hospitalId'] = hospitalId;
|
|
752
753
|
}
|
|
754
|
+
if (xCloudhospitalPlatform != null) {
|
|
755
|
+
localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
|
|
756
|
+
}
|
|
753
757
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
754
758
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
755
759
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -774,17 +778,18 @@ var DealsApiFp = function (configuration) {
|
|
|
774
778
|
*
|
|
775
779
|
* @summary Get deal.
|
|
776
780
|
* @param {string} dealId
|
|
781
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
777
782
|
* @param {string} [languageCode]
|
|
778
783
|
* @param {boolean} [returnDefaultValue]
|
|
779
784
|
* @param {*} [options] Override http request option.
|
|
780
785
|
* @throws {RequiredError}
|
|
781
786
|
*/
|
|
782
|
-
apiV2DealsDealIdGet: function (dealId, languageCode, returnDefaultValue, options) {
|
|
787
|
+
apiV2DealsDealIdGet: function (dealId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
783
788
|
return __awaiter(this, void 0, void 0, function () {
|
|
784
789
|
var localVarAxiosArgs;
|
|
785
790
|
return __generator(this, function (_a) {
|
|
786
791
|
switch (_a.label) {
|
|
787
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DealsDealIdGet(dealId, languageCode, returnDefaultValue, options)];
|
|
792
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DealsDealIdGet(dealId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options)];
|
|
788
793
|
case 1:
|
|
789
794
|
localVarAxiosArgs = _a.sent();
|
|
790
795
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -924,6 +929,7 @@ var DealsApiFp = function (configuration) {
|
|
|
924
929
|
/**
|
|
925
930
|
*
|
|
926
931
|
* @summary Get all deals.
|
|
932
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
927
933
|
* @param {string} [id]
|
|
928
934
|
* @param {string} [name]
|
|
929
935
|
* @param {MarketingType} [marketingType]
|
|
@@ -941,7 +947,6 @@ var DealsApiFp = function (configuration) {
|
|
|
941
947
|
* @param {Array<string>} [ids]
|
|
942
948
|
* @param {number} [serviceDuration]
|
|
943
949
|
* @param {string} [languageCode]
|
|
944
|
-
* @param {boolean} [showHidden]
|
|
945
950
|
* @param {boolean} [returnDefaultValue]
|
|
946
951
|
* @param {number} [page]
|
|
947
952
|
* @param {number} [limit]
|
|
@@ -949,12 +954,12 @@ var DealsApiFp = function (configuration) {
|
|
|
949
954
|
* @param {*} [options] Override http request option.
|
|
950
955
|
* @throws {RequiredError}
|
|
951
956
|
*/
|
|
952
|
-
apiV2DealsGet: function (id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceId, serviceName, exceptHospitalId, exceptDealId, ids, serviceDuration, languageCode,
|
|
957
|
+
apiV2DealsGet: function (xCloudhospitalPlatform, id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceId, serviceName, exceptHospitalId, exceptDealId, ids, serviceDuration, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
953
958
|
return __awaiter(this, void 0, void 0, function () {
|
|
954
959
|
var localVarAxiosArgs;
|
|
955
960
|
return __generator(this, function (_a) {
|
|
956
961
|
switch (_a.label) {
|
|
957
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DealsGet(id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceId, serviceName, exceptHospitalId, exceptDealId, ids, serviceDuration, languageCode,
|
|
962
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DealsGet(xCloudhospitalPlatform, id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceId, serviceName, exceptHospitalId, exceptDealId, ids, serviceDuration, languageCode, returnDefaultValue, page, limit, lastRetrieved, options)];
|
|
958
963
|
case 1:
|
|
959
964
|
localVarAxiosArgs = _a.sent();
|
|
960
965
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -982,7 +987,6 @@ var DealsApiFp = function (configuration) {
|
|
|
982
987
|
* @param {Array<string>} [ids]
|
|
983
988
|
* @param {number} [serviceDuration]
|
|
984
989
|
* @param {string} [languageCode]
|
|
985
|
-
* @param {boolean} [showHidden]
|
|
986
990
|
* @param {boolean} [returnDefaultValue]
|
|
987
991
|
* @param {number} [page]
|
|
988
992
|
* @param {number} [limit]
|
|
@@ -990,12 +994,12 @@ var DealsApiFp = function (configuration) {
|
|
|
990
994
|
* @param {*} [options] Override http request option.
|
|
991
995
|
* @throws {RequiredError}
|
|
992
996
|
*/
|
|
993
|
-
apiV2DealsSimpleGet: function (id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceId, serviceName, exceptHospitalId, exceptDealId, ids, serviceDuration, languageCode,
|
|
997
|
+
apiV2DealsSimpleGet: function (id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceId, serviceName, exceptHospitalId, exceptDealId, ids, serviceDuration, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
994
998
|
return __awaiter(this, void 0, void 0, function () {
|
|
995
999
|
var localVarAxiosArgs;
|
|
996
1000
|
return __generator(this, function (_a) {
|
|
997
1001
|
switch (_a.label) {
|
|
998
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DealsSimpleGet(id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceId, serviceName, exceptHospitalId, exceptDealId, ids, serviceDuration, languageCode,
|
|
1002
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DealsSimpleGet(id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceId, serviceName, exceptHospitalId, exceptDealId, ids, serviceDuration, languageCode, returnDefaultValue, page, limit, lastRetrieved, options)];
|
|
999
1003
|
case 1:
|
|
1000
1004
|
localVarAxiosArgs = _a.sent();
|
|
1001
1005
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -1007,6 +1011,7 @@ var DealsApiFp = function (configuration) {
|
|
|
1007
1011
|
*
|
|
1008
1012
|
* @summary Get deal by slug.
|
|
1009
1013
|
* @param {string} slug
|
|
1014
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
1010
1015
|
* @param {string} [languageCode]
|
|
1011
1016
|
* @param {boolean} [returnDefaultValue]
|
|
1012
1017
|
* @param {string} [previewSecret]
|
|
@@ -1014,12 +1019,12 @@ var DealsApiFp = function (configuration) {
|
|
|
1014
1019
|
* @param {*} [options] Override http request option.
|
|
1015
1020
|
* @throws {RequiredError}
|
|
1016
1021
|
*/
|
|
1017
|
-
apiV2DealsSlugGet: function (slug, languageCode, returnDefaultValue, previewSecret, hospitalId, options) {
|
|
1022
|
+
apiV2DealsSlugGet: function (slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, hospitalId, options) {
|
|
1018
1023
|
return __awaiter(this, void 0, void 0, function () {
|
|
1019
1024
|
var localVarAxiosArgs;
|
|
1020
1025
|
return __generator(this, function (_a) {
|
|
1021
1026
|
switch (_a.label) {
|
|
1022
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DealsSlugGet(slug, languageCode, returnDefaultValue, previewSecret, hospitalId, options)];
|
|
1027
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DealsSlugGet(slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, hospitalId, options)];
|
|
1023
1028
|
case 1:
|
|
1024
1029
|
localVarAxiosArgs = _a.sent();
|
|
1025
1030
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -1041,13 +1046,14 @@ var DealsApiFactory = function (configuration, basePath, axios) {
|
|
|
1041
1046
|
*
|
|
1042
1047
|
* @summary Get deal.
|
|
1043
1048
|
* @param {string} dealId
|
|
1049
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
1044
1050
|
* @param {string} [languageCode]
|
|
1045
1051
|
* @param {boolean} [returnDefaultValue]
|
|
1046
1052
|
* @param {*} [options] Override http request option.
|
|
1047
1053
|
* @throws {RequiredError}
|
|
1048
1054
|
*/
|
|
1049
|
-
apiV2DealsDealIdGet: function (dealId, languageCode, returnDefaultValue, options) {
|
|
1050
|
-
return localVarFp.apiV2DealsDealIdGet(dealId, languageCode, returnDefaultValue, options).then(function (request) { return request(axios, basePath); });
|
|
1055
|
+
apiV2DealsDealIdGet: function (dealId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
1056
|
+
return localVarFp.apiV2DealsDealIdGet(dealId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options).then(function (request) { return request(axios, basePath); });
|
|
1051
1057
|
},
|
|
1052
1058
|
/**
|
|
1053
1059
|
*
|
|
@@ -1131,6 +1137,7 @@ var DealsApiFactory = function (configuration, basePath, axios) {
|
|
|
1131
1137
|
/**
|
|
1132
1138
|
*
|
|
1133
1139
|
* @summary Get all deals.
|
|
1140
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
1134
1141
|
* @param {string} [id]
|
|
1135
1142
|
* @param {string} [name]
|
|
1136
1143
|
* @param {MarketingType} [marketingType]
|
|
@@ -1148,7 +1155,6 @@ var DealsApiFactory = function (configuration, basePath, axios) {
|
|
|
1148
1155
|
* @param {Array<string>} [ids]
|
|
1149
1156
|
* @param {number} [serviceDuration]
|
|
1150
1157
|
* @param {string} [languageCode]
|
|
1151
|
-
* @param {boolean} [showHidden]
|
|
1152
1158
|
* @param {boolean} [returnDefaultValue]
|
|
1153
1159
|
* @param {number} [page]
|
|
1154
1160
|
* @param {number} [limit]
|
|
@@ -1156,8 +1162,8 @@ var DealsApiFactory = function (configuration, basePath, axios) {
|
|
|
1156
1162
|
* @param {*} [options] Override http request option.
|
|
1157
1163
|
* @throws {RequiredError}
|
|
1158
1164
|
*/
|
|
1159
|
-
apiV2DealsGet: function (id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceId, serviceName, exceptHospitalId, exceptDealId, ids, serviceDuration, languageCode,
|
|
1160
|
-
return localVarFp.apiV2DealsGet(id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceId, serviceName, exceptHospitalId, exceptDealId, ids, serviceDuration, languageCode,
|
|
1165
|
+
apiV2DealsGet: function (xCloudhospitalPlatform, id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceId, serviceName, exceptHospitalId, exceptDealId, ids, serviceDuration, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
1166
|
+
return localVarFp.apiV2DealsGet(xCloudhospitalPlatform, id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceId, serviceName, exceptHospitalId, exceptDealId, ids, serviceDuration, languageCode, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
1161
1167
|
},
|
|
1162
1168
|
/**
|
|
1163
1169
|
*
|
|
@@ -1179,7 +1185,6 @@ var DealsApiFactory = function (configuration, basePath, axios) {
|
|
|
1179
1185
|
* @param {Array<string>} [ids]
|
|
1180
1186
|
* @param {number} [serviceDuration]
|
|
1181
1187
|
* @param {string} [languageCode]
|
|
1182
|
-
* @param {boolean} [showHidden]
|
|
1183
1188
|
* @param {boolean} [returnDefaultValue]
|
|
1184
1189
|
* @param {number} [page]
|
|
1185
1190
|
* @param {number} [limit]
|
|
@@ -1187,13 +1192,14 @@ var DealsApiFactory = function (configuration, basePath, axios) {
|
|
|
1187
1192
|
* @param {*} [options] Override http request option.
|
|
1188
1193
|
* @throws {RequiredError}
|
|
1189
1194
|
*/
|
|
1190
|
-
apiV2DealsSimpleGet: function (id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceId, serviceName, exceptHospitalId, exceptDealId, ids, serviceDuration, languageCode,
|
|
1191
|
-
return localVarFp.apiV2DealsSimpleGet(id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceId, serviceName, exceptHospitalId, exceptDealId, ids, serviceDuration, languageCode,
|
|
1195
|
+
apiV2DealsSimpleGet: function (id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceId, serviceName, exceptHospitalId, exceptDealId, ids, serviceDuration, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
1196
|
+
return localVarFp.apiV2DealsSimpleGet(id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceId, serviceName, exceptHospitalId, exceptDealId, ids, serviceDuration, languageCode, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
1192
1197
|
},
|
|
1193
1198
|
/**
|
|
1194
1199
|
*
|
|
1195
1200
|
* @summary Get deal by slug.
|
|
1196
1201
|
* @param {string} slug
|
|
1202
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
1197
1203
|
* @param {string} [languageCode]
|
|
1198
1204
|
* @param {boolean} [returnDefaultValue]
|
|
1199
1205
|
* @param {string} [previewSecret]
|
|
@@ -1201,8 +1207,8 @@ var DealsApiFactory = function (configuration, basePath, axios) {
|
|
|
1201
1207
|
* @param {*} [options] Override http request option.
|
|
1202
1208
|
* @throws {RequiredError}
|
|
1203
1209
|
*/
|
|
1204
|
-
apiV2DealsSlugGet: function (slug, languageCode, returnDefaultValue, previewSecret, hospitalId, options) {
|
|
1205
|
-
return localVarFp.apiV2DealsSlugGet(slug, languageCode, returnDefaultValue, previewSecret, hospitalId, options).then(function (request) { return request(axios, basePath); });
|
|
1210
|
+
apiV2DealsSlugGet: function (slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, hospitalId, options) {
|
|
1211
|
+
return localVarFp.apiV2DealsSlugGet(slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, hospitalId, options).then(function (request) { return request(axios, basePath); });
|
|
1206
1212
|
},
|
|
1207
1213
|
};
|
|
1208
1214
|
};
|
|
@@ -1228,7 +1234,7 @@ var DealsApi = /** @class */ (function (_super) {
|
|
|
1228
1234
|
*/
|
|
1229
1235
|
DealsApi.prototype.apiV2DealsDealIdGet = function (requestParameters, options) {
|
|
1230
1236
|
var _this = this;
|
|
1231
|
-
return (0, exports.DealsApiFp)(this.configuration).apiV2DealsDealIdGet(requestParameters.dealId, requestParameters.languageCode, requestParameters.returnDefaultValue, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1237
|
+
return (0, exports.DealsApiFp)(this.configuration).apiV2DealsDealIdGet(requestParameters.dealId, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1232
1238
|
};
|
|
1233
1239
|
/**
|
|
1234
1240
|
*
|
|
@@ -1301,7 +1307,7 @@ var DealsApi = /** @class */ (function (_super) {
|
|
|
1301
1307
|
DealsApi.prototype.apiV2DealsGet = function (requestParameters, options) {
|
|
1302
1308
|
var _this = this;
|
|
1303
1309
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
1304
|
-
return (0, exports.DealsApiFp)(this.configuration).apiV2DealsGet(requestParameters.id, requestParameters.name, requestParameters.marketingType, requestParameters.countryId, requestParameters.hospitalId, requestParameters.hospitalName, requestParameters.specialtyId, requestParameters.specialtyName, requestParameters.specialtyTypeId, requestParameters.specialtyTypeName, requestParameters.serviceId, requestParameters.serviceName, requestParameters.exceptHospitalId, requestParameters.exceptDealId, requestParameters.ids, requestParameters.serviceDuration, requestParameters.languageCode, requestParameters.
|
|
1310
|
+
return (0, exports.DealsApiFp)(this.configuration).apiV2DealsGet(requestParameters.xCloudhospitalPlatform, requestParameters.id, requestParameters.name, requestParameters.marketingType, requestParameters.countryId, requestParameters.hospitalId, requestParameters.hospitalName, requestParameters.specialtyId, requestParameters.specialtyName, requestParameters.specialtyTypeId, requestParameters.specialtyTypeName, requestParameters.serviceId, requestParameters.serviceName, requestParameters.exceptHospitalId, requestParameters.exceptDealId, requestParameters.ids, requestParameters.serviceDuration, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1305
1311
|
};
|
|
1306
1312
|
/**
|
|
1307
1313
|
*
|
|
@@ -1314,7 +1320,7 @@ var DealsApi = /** @class */ (function (_super) {
|
|
|
1314
1320
|
DealsApi.prototype.apiV2DealsSimpleGet = function (requestParameters, options) {
|
|
1315
1321
|
var _this = this;
|
|
1316
1322
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
1317
|
-
return (0, exports.DealsApiFp)(this.configuration).apiV2DealsSimpleGet(requestParameters.id, requestParameters.name, requestParameters.marketingType, requestParameters.countryId, requestParameters.hospitalId, requestParameters.hospitalName, requestParameters.specialtyId, requestParameters.specialtyName, requestParameters.specialtyTypeId, requestParameters.specialtyTypeName, requestParameters.serviceId, requestParameters.serviceName, requestParameters.exceptHospitalId, requestParameters.exceptDealId, requestParameters.ids, requestParameters.serviceDuration, requestParameters.languageCode, requestParameters.
|
|
1323
|
+
return (0, exports.DealsApiFp)(this.configuration).apiV2DealsSimpleGet(requestParameters.id, requestParameters.name, requestParameters.marketingType, requestParameters.countryId, requestParameters.hospitalId, requestParameters.hospitalName, requestParameters.specialtyId, requestParameters.specialtyName, requestParameters.specialtyTypeId, requestParameters.specialtyTypeName, requestParameters.serviceId, requestParameters.serviceName, requestParameters.exceptHospitalId, requestParameters.exceptDealId, requestParameters.ids, requestParameters.serviceDuration, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1318
1324
|
};
|
|
1319
1325
|
/**
|
|
1320
1326
|
*
|
|
@@ -1326,7 +1332,7 @@ var DealsApi = /** @class */ (function (_super) {
|
|
|
1326
1332
|
*/
|
|
1327
1333
|
DealsApi.prototype.apiV2DealsSlugGet = function (requestParameters, options) {
|
|
1328
1334
|
var _this = this;
|
|
1329
|
-
return (0, exports.DealsApiFp)(this.configuration).apiV2DealsSlugGet(requestParameters.slug, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, requestParameters.hospitalId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1335
|
+
return (0, exports.DealsApiFp)(this.configuration).apiV2DealsSlugGet(requestParameters.slug, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, requestParameters.hospitalId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1330
1336
|
};
|
|
1331
1337
|
return DealsApi;
|
|
1332
1338
|
}(base_1.BaseAPI));
|
|
@@ -64,6 +64,7 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
64
64
|
/**
|
|
65
65
|
*
|
|
66
66
|
* @summary Get all doctor affiliations.
|
|
67
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
67
68
|
* @param {string} [hospitalId]
|
|
68
69
|
* @param {string} [hospitalName]
|
|
69
70
|
* @param {string} [doctorId]
|
|
@@ -81,26 +82,28 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
81
82
|
* @param {*} [options] Override http request option.
|
|
82
83
|
* @throws {RequiredError}
|
|
83
84
|
*/
|
|
84
|
-
apiV2DoctoraffiliationsGet: (hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, marketingType?: MarketingType, countryId?: string, exceptDoctorId?: string, appointmentEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
85
|
+
apiV2DoctoraffiliationsGet: (xCloudhospitalPlatform?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, marketingType?: MarketingType, countryId?: string, exceptDoctorId?: string, appointmentEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
85
86
|
/**
|
|
86
87
|
*
|
|
87
88
|
* @summary Get doctor affiliation.
|
|
88
89
|
* @param {string} id
|
|
90
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
89
91
|
* @param {string} [languageCode]
|
|
90
92
|
* @param {*} [options] Override http request option.
|
|
91
93
|
* @throws {RequiredError}
|
|
92
94
|
*/
|
|
93
|
-
apiV2DoctoraffiliationsIdGet: (id: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
95
|
+
apiV2DoctoraffiliationsIdGet: (id: string, xCloudhospitalPlatform?: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
94
96
|
/**
|
|
95
97
|
*
|
|
96
98
|
* @summary Get doctorAffiliation by slug
|
|
97
99
|
* @param {string} slug
|
|
100
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
98
101
|
* @param {string} [languageCode]
|
|
99
102
|
* @param {string} [hospitalId]
|
|
100
103
|
* @param {*} [options] Override http request option.
|
|
101
104
|
* @throws {RequiredError}
|
|
102
105
|
*/
|
|
103
|
-
apiV2DoctoraffiliationsSlugGet: (slug: string, languageCode?: string, hospitalId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
106
|
+
apiV2DoctoraffiliationsSlugGet: (slug: string, xCloudhospitalPlatform?: string, languageCode?: string, hospitalId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
104
107
|
};
|
|
105
108
|
/**
|
|
106
109
|
* DoctorAffiliationsApi - functional programming interface
|
|
@@ -147,6 +150,7 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration) =>
|
|
|
147
150
|
/**
|
|
148
151
|
*
|
|
149
152
|
* @summary Get all doctor affiliations.
|
|
153
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
150
154
|
* @param {string} [hospitalId]
|
|
151
155
|
* @param {string} [hospitalName]
|
|
152
156
|
* @param {string} [doctorId]
|
|
@@ -164,26 +168,28 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration) =>
|
|
|
164
168
|
* @param {*} [options] Override http request option.
|
|
165
169
|
* @throws {RequiredError}
|
|
166
170
|
*/
|
|
167
|
-
apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, marketingType?: MarketingType, countryId?: string, exceptDoctorId?: string, appointmentEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
171
|
+
apiV2DoctoraffiliationsGet(xCloudhospitalPlatform?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, marketingType?: MarketingType, countryId?: string, exceptDoctorId?: string, appointmentEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
168
172
|
/**
|
|
169
173
|
*
|
|
170
174
|
* @summary Get doctor affiliation.
|
|
171
175
|
* @param {string} id
|
|
176
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
172
177
|
* @param {string} [languageCode]
|
|
173
178
|
* @param {*} [options] Override http request option.
|
|
174
179
|
* @throws {RequiredError}
|
|
175
180
|
*/
|
|
176
|
-
apiV2DoctoraffiliationsIdGet(id: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>>;
|
|
181
|
+
apiV2DoctoraffiliationsIdGet(id: string, xCloudhospitalPlatform?: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>>;
|
|
177
182
|
/**
|
|
178
183
|
*
|
|
179
184
|
* @summary Get doctorAffiliation by slug
|
|
180
185
|
* @param {string} slug
|
|
186
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
181
187
|
* @param {string} [languageCode]
|
|
182
188
|
* @param {string} [hospitalId]
|
|
183
189
|
* @param {*} [options] Override http request option.
|
|
184
190
|
* @throws {RequiredError}
|
|
185
191
|
*/
|
|
186
|
-
apiV2DoctoraffiliationsSlugGet(slug: string, languageCode?: string, hospitalId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>>;
|
|
192
|
+
apiV2DoctoraffiliationsSlugGet(slug: string, xCloudhospitalPlatform?: string, languageCode?: string, hospitalId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>>;
|
|
187
193
|
};
|
|
188
194
|
/**
|
|
189
195
|
* DoctorAffiliationsApi - factory interface
|
|
@@ -230,6 +236,7 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
230
236
|
/**
|
|
231
237
|
*
|
|
232
238
|
* @summary Get all doctor affiliations.
|
|
239
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
233
240
|
* @param {string} [hospitalId]
|
|
234
241
|
* @param {string} [hospitalName]
|
|
235
242
|
* @param {string} [doctorId]
|
|
@@ -247,26 +254,28 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
247
254
|
* @param {*} [options] Override http request option.
|
|
248
255
|
* @throws {RequiredError}
|
|
249
256
|
*/
|
|
250
|
-
apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, marketingType?: MarketingType, countryId?: string, exceptDoctorId?: string, appointmentEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
257
|
+
apiV2DoctoraffiliationsGet(xCloudhospitalPlatform?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, marketingType?: MarketingType, countryId?: string, exceptDoctorId?: string, appointmentEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
251
258
|
/**
|
|
252
259
|
*
|
|
253
260
|
* @summary Get doctor affiliation.
|
|
254
261
|
* @param {string} id
|
|
262
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
255
263
|
* @param {string} [languageCode]
|
|
256
264
|
* @param {*} [options] Override http request option.
|
|
257
265
|
* @throws {RequiredError}
|
|
258
266
|
*/
|
|
259
|
-
apiV2DoctoraffiliationsIdGet(id: string, languageCode?: string, options?: any): AxiosPromise<DoctorAffiliationModel>;
|
|
267
|
+
apiV2DoctoraffiliationsIdGet(id: string, xCloudhospitalPlatform?: string, languageCode?: string, options?: any): AxiosPromise<DoctorAffiliationModel>;
|
|
260
268
|
/**
|
|
261
269
|
*
|
|
262
270
|
* @summary Get doctorAffiliation by slug
|
|
263
271
|
* @param {string} slug
|
|
272
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
264
273
|
* @param {string} [languageCode]
|
|
265
274
|
* @param {string} [hospitalId]
|
|
266
275
|
* @param {*} [options] Override http request option.
|
|
267
276
|
* @throws {RequiredError}
|
|
268
277
|
*/
|
|
269
|
-
apiV2DoctoraffiliationsSlugGet(slug: string, languageCode?: string, hospitalId?: string, options?: any): AxiosPromise<DoctorAffiliationModel>;
|
|
278
|
+
apiV2DoctoraffiliationsSlugGet(slug: string, xCloudhospitalPlatform?: string, languageCode?: string, hospitalId?: string, options?: any): AxiosPromise<DoctorAffiliationModel>;
|
|
270
279
|
};
|
|
271
280
|
/**
|
|
272
281
|
* Request parameters for apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet operation in DoctorAffiliationsApi.
|
|
@@ -391,6 +400,12 @@ export interface DoctorAffiliationsApiApiV2DoctoraffiliationsDoctorAffiliationId
|
|
|
391
400
|
* @interface DoctorAffiliationsApiApiV2DoctoraffiliationsGetRequest
|
|
392
401
|
*/
|
|
393
402
|
export interface DoctorAffiliationsApiApiV2DoctoraffiliationsGetRequest {
|
|
403
|
+
/**
|
|
404
|
+
* Platform identifier from request header
|
|
405
|
+
* @type {string}
|
|
406
|
+
* @memberof DoctorAffiliationsApiApiV2DoctoraffiliationsGet
|
|
407
|
+
*/
|
|
408
|
+
readonly xCloudhospitalPlatform?: string;
|
|
394
409
|
/**
|
|
395
410
|
*
|
|
396
411
|
* @type {string}
|
|
@@ -488,6 +503,12 @@ export interface DoctorAffiliationsApiApiV2DoctoraffiliationsIdGetRequest {
|
|
|
488
503
|
* @memberof DoctorAffiliationsApiApiV2DoctoraffiliationsIdGet
|
|
489
504
|
*/
|
|
490
505
|
readonly id: string;
|
|
506
|
+
/**
|
|
507
|
+
* Platform identifier from request header
|
|
508
|
+
* @type {string}
|
|
509
|
+
* @memberof DoctorAffiliationsApiApiV2DoctoraffiliationsIdGet
|
|
510
|
+
*/
|
|
511
|
+
readonly xCloudhospitalPlatform?: string;
|
|
491
512
|
/**
|
|
492
513
|
*
|
|
493
514
|
* @type {string}
|
|
@@ -507,6 +528,12 @@ export interface DoctorAffiliationsApiApiV2DoctoraffiliationsSlugGetRequest {
|
|
|
507
528
|
* @memberof DoctorAffiliationsApiApiV2DoctoraffiliationsSlugGet
|
|
508
529
|
*/
|
|
509
530
|
readonly slug: string;
|
|
531
|
+
/**
|
|
532
|
+
* Platform identifier from request header
|
|
533
|
+
* @type {string}
|
|
534
|
+
* @memberof DoctorAffiliationsApiApiV2DoctoraffiliationsSlugGet
|
|
535
|
+
*/
|
|
536
|
+
readonly xCloudhospitalPlatform?: string;
|
|
510
537
|
/**
|
|
511
538
|
*
|
|
512
539
|
* @type {string}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"doctor-affiliations-api.d.ts","sourceRoot":"","sources":["../../src/api/doctor-affiliations-api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AACrF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAKjD,OAAO,EAAiC,WAAW,EAAE,OAAO,EAAiB,MAAM,SAAS,CAAC;AAE7F,OAAO,EAAE,sBAAsB,EAAE,MAAM,WAAW,CAAC;AAEnD,OAAO,EAAE,uBAAuB,EAAE,MAAM,WAAW,CAAC;AAEpD,OAAO,EAAE,qCAAqC,EAAE,MAAM,WAAW,CAAC;AAElE,OAAO,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AAE1C,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAEvC,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AAEtC,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC;;;GAGG;AACH,eAAO,MAAM,sCAAsC,mBAA6B,aAAa;IAErF;;;;;;;;;;;;;OAaG;8FAC6F,MAAM,SAAS,MAAM,UAAU,MAAM,aAAa,MAAM,eAAe,OAAO,aAAa,OAAO,0BAA0B,MAAM,gCAAgC,OAAO,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA2DlU;;;;;;;;;;;OAWG;+EAC8E,MAAM,OAAO,MAAM,cAAc,SAAS,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAiDzO;;;;;;;OAOG;sFACqF,MAAM,WAAW,MAAM,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA8BxK
|
|
1
|
+
{"version":3,"file":"doctor-affiliations-api.d.ts","sourceRoot":"","sources":["../../src/api/doctor-affiliations-api.ts"],"names":[],"mappings":"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"}
|