ch-api-client-typescript2 5.91.4 → 5.91.7
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 +42 -6
- package/lib/api/articles-api.d.ts.map +1 -1
- package/lib/api/articles-api.js +42 -18
- package/lib/api/deals-api.d.ts +42 -6
- package/lib/api/deals-api.d.ts.map +1 -1
- package/lib/api/deals-api.js +42 -18
- package/lib/api/doctor-affiliations-api.d.ts +42 -6
- package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
- package/lib/api/doctor-affiliations-api.js +42 -18
- package/lib/api/general-articles-api.d.ts +42 -6
- package/lib/api/general-articles-api.d.ts.map +1 -1
- package/lib/api/general-articles-api.js +42 -18
- package/lib/api/hospitals-api.d.ts +234 -36
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +240 -108
- 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 +24 -6
- package/lib/api/specialty-types-api.d.ts.map +1 -1
- package/lib/api/specialty-types-api.js +30 -18
- package/package.json +1 -1
package/lib/api/hospitals-api.js
CHANGED
|
@@ -446,15 +446,17 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
446
446
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
447
447
|
* @param {boolean} [returnDefaultValue]
|
|
448
448
|
* @param {string} [previewSecret]
|
|
449
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
450
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
449
451
|
* @param {*} [options] Override http request option.
|
|
450
452
|
* @throws {RequiredError}
|
|
451
453
|
*/
|
|
452
|
-
apiV2HospitalsHospitalIdArticlesSlugGet: function (hospitalId_1, slug_1, languageCode_1, returnDefaultValue_1, previewSecret_1) {
|
|
454
|
+
apiV2HospitalsHospitalIdArticlesSlugGet: function (hospitalId_1, slug_1, languageCode_1, returnDefaultValue_1, previewSecret_1, hospitalFaqLimit_1, platformFaqLimit_1) {
|
|
453
455
|
var args_1 = [];
|
|
454
|
-
for (var _i =
|
|
455
|
-
args_1[_i -
|
|
456
|
+
for (var _i = 7; _i < arguments.length; _i++) {
|
|
457
|
+
args_1[_i - 7] = arguments[_i];
|
|
456
458
|
}
|
|
457
|
-
return __awaiter(_this, __spreadArray([hospitalId_1, slug_1, languageCode_1, returnDefaultValue_1, previewSecret_1], args_1, true), void 0, function (hospitalId, slug, languageCode, returnDefaultValue, previewSecret, options) {
|
|
459
|
+
return __awaiter(_this, __spreadArray([hospitalId_1, slug_1, languageCode_1, returnDefaultValue_1, previewSecret_1, hospitalFaqLimit_1, platformFaqLimit_1], args_1, true), void 0, function (hospitalId, slug, languageCode, returnDefaultValue, previewSecret, hospitalFaqLimit, platformFaqLimit, options) {
|
|
458
460
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
459
461
|
if (options === void 0) { options = {}; }
|
|
460
462
|
return __generator(this, function (_a) {
|
|
@@ -481,6 +483,12 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
481
483
|
if (previewSecret !== undefined) {
|
|
482
484
|
localVarQueryParameter['previewSecret'] = previewSecret;
|
|
483
485
|
}
|
|
486
|
+
if (hospitalFaqLimit !== undefined) {
|
|
487
|
+
localVarQueryParameter['hospitalFaqLimit'] = hospitalFaqLimit;
|
|
488
|
+
}
|
|
489
|
+
if (platformFaqLimit !== undefined) {
|
|
490
|
+
localVarQueryParameter['platformFaqLimit'] = platformFaqLimit;
|
|
491
|
+
}
|
|
484
492
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
485
493
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
486
494
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -725,15 +733,17 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
725
733
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
726
734
|
* @param {boolean} [returnDefaultValue]
|
|
727
735
|
* @param {string} [previewSecret]
|
|
736
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
737
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
728
738
|
* @param {*} [options] Override http request option.
|
|
729
739
|
* @throws {RequiredError}
|
|
730
740
|
*/
|
|
731
|
-
apiV2HospitalsHospitalIdDealsSlugGet: function (hospitalId_1, slug_1, languageCode_1, returnDefaultValue_1, previewSecret_1) {
|
|
741
|
+
apiV2HospitalsHospitalIdDealsSlugGet: function (hospitalId_1, slug_1, languageCode_1, returnDefaultValue_1, previewSecret_1, hospitalFaqLimit_1, platformFaqLimit_1) {
|
|
732
742
|
var args_1 = [];
|
|
733
|
-
for (var _i =
|
|
734
|
-
args_1[_i -
|
|
743
|
+
for (var _i = 7; _i < arguments.length; _i++) {
|
|
744
|
+
args_1[_i - 7] = arguments[_i];
|
|
735
745
|
}
|
|
736
|
-
return __awaiter(_this, __spreadArray([hospitalId_1, slug_1, languageCode_1, returnDefaultValue_1, previewSecret_1], args_1, true), void 0, function (hospitalId, slug, languageCode, returnDefaultValue, previewSecret, options) {
|
|
746
|
+
return __awaiter(_this, __spreadArray([hospitalId_1, slug_1, languageCode_1, returnDefaultValue_1, previewSecret_1, hospitalFaqLimit_1, platformFaqLimit_1], args_1, true), void 0, function (hospitalId, slug, languageCode, returnDefaultValue, previewSecret, hospitalFaqLimit, platformFaqLimit, options) {
|
|
737
747
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
738
748
|
if (options === void 0) { options = {}; }
|
|
739
749
|
return __generator(this, function (_a) {
|
|
@@ -760,6 +770,12 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
760
770
|
if (previewSecret !== undefined) {
|
|
761
771
|
localVarQueryParameter['previewSecret'] = previewSecret;
|
|
762
772
|
}
|
|
773
|
+
if (hospitalFaqLimit !== undefined) {
|
|
774
|
+
localVarQueryParameter['hospitalFaqLimit'] = hospitalFaqLimit;
|
|
775
|
+
}
|
|
776
|
+
if (platformFaqLimit !== undefined) {
|
|
777
|
+
localVarQueryParameter['platformFaqLimit'] = platformFaqLimit;
|
|
778
|
+
}
|
|
763
779
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
764
780
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
765
781
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -825,15 +841,17 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
825
841
|
* @param {string} hospitalId
|
|
826
842
|
* @param {string} slug
|
|
827
843
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
844
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
845
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
828
846
|
* @param {*} [options] Override http request option.
|
|
829
847
|
* @throws {RequiredError}
|
|
830
848
|
*/
|
|
831
|
-
apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet: function (hospitalId_1, slug_1, languageCode_1) {
|
|
849
|
+
apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet: function (hospitalId_1, slug_1, languageCode_1, hospitalFaqLimit_1, platformFaqLimit_1) {
|
|
832
850
|
var args_1 = [];
|
|
833
|
-
for (var _i =
|
|
834
|
-
args_1[_i -
|
|
851
|
+
for (var _i = 5; _i < arguments.length; _i++) {
|
|
852
|
+
args_1[_i - 5] = arguments[_i];
|
|
835
853
|
}
|
|
836
|
-
return __awaiter(_this, __spreadArray([hospitalId_1, slug_1, languageCode_1], args_1, true), void 0, function (hospitalId, slug, languageCode, options) {
|
|
854
|
+
return __awaiter(_this, __spreadArray([hospitalId_1, slug_1, languageCode_1, hospitalFaqLimit_1, platformFaqLimit_1], args_1, true), void 0, function (hospitalId, slug, languageCode, hospitalFaqLimit, platformFaqLimit, options) {
|
|
837
855
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
838
856
|
if (options === void 0) { options = {}; }
|
|
839
857
|
return __generator(this, function (_a) {
|
|
@@ -854,6 +872,12 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
854
872
|
if (languageCode !== undefined) {
|
|
855
873
|
localVarQueryParameter['languageCode'] = languageCode;
|
|
856
874
|
}
|
|
875
|
+
if (hospitalFaqLimit !== undefined) {
|
|
876
|
+
localVarQueryParameter['hospitalFaqLimit'] = hospitalFaqLimit;
|
|
877
|
+
}
|
|
878
|
+
if (platformFaqLimit !== undefined) {
|
|
879
|
+
localVarQueryParameter['platformFaqLimit'] = platformFaqLimit;
|
|
880
|
+
}
|
|
857
881
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
858
882
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
859
883
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -1386,15 +1410,17 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
1386
1410
|
* @param {boolean} [returnDefaultValue]
|
|
1387
1411
|
* @param {string} [previewSecret]
|
|
1388
1412
|
* @param {Array<string>} [fillAdditionalFields] Comma separated list of additional fields to include. Available values: Doctors, Deals, Reviews, HospitalServices, IsIncludedToBranch, PlatformFaqs, HospitalFaqs
|
|
1413
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
1414
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
1389
1415
|
* @param {*} [options] Override http request option.
|
|
1390
1416
|
* @throws {RequiredError}
|
|
1391
1417
|
*/
|
|
1392
|
-
apiV2HospitalsHospitalIdGet: function (hospitalId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, previewSecret_1, fillAdditionalFields_1) {
|
|
1418
|
+
apiV2HospitalsHospitalIdGet: function (hospitalId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, previewSecret_1, fillAdditionalFields_1, hospitalFaqLimit_1, platformFaqLimit_1) {
|
|
1393
1419
|
var args_1 = [];
|
|
1394
|
-
for (var _i =
|
|
1395
|
-
args_1[_i -
|
|
1420
|
+
for (var _i = 8; _i < arguments.length; _i++) {
|
|
1421
|
+
args_1[_i - 8] = arguments[_i];
|
|
1396
1422
|
}
|
|
1397
|
-
return __awaiter(_this, __spreadArray([hospitalId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, previewSecret_1, fillAdditionalFields_1], args_1, true), void 0, function (hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, options) {
|
|
1423
|
+
return __awaiter(_this, __spreadArray([hospitalId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, previewSecret_1, fillAdditionalFields_1, hospitalFaqLimit_1, platformFaqLimit_1], args_1, true), void 0, function (hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, hospitalFaqLimit, platformFaqLimit, options) {
|
|
1398
1424
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
1399
1425
|
if (options === void 0) { options = {}; }
|
|
1400
1426
|
return __generator(this, function (_a) {
|
|
@@ -1430,6 +1456,12 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
1430
1456
|
if (fillAdditionalFields) {
|
|
1431
1457
|
localVarQueryParameter['fillAdditionalFields'] = fillAdditionalFields;
|
|
1432
1458
|
}
|
|
1459
|
+
if (hospitalFaqLimit !== undefined) {
|
|
1460
|
+
localVarQueryParameter['hospitalFaqLimit'] = hospitalFaqLimit;
|
|
1461
|
+
}
|
|
1462
|
+
if (platformFaqLimit !== undefined) {
|
|
1463
|
+
localVarQueryParameter['platformFaqLimit'] = platformFaqLimit;
|
|
1464
|
+
}
|
|
1433
1465
|
if (xCloudhospitalPlatform != null) {
|
|
1434
1466
|
localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
|
|
1435
1467
|
}
|
|
@@ -2504,15 +2536,17 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
2504
2536
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
2505
2537
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
2506
2538
|
* @param {boolean} [returnDefaultValue]
|
|
2539
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
2540
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
2507
2541
|
* @param {*} [options] Override http request option.
|
|
2508
2542
|
* @throws {RequiredError}
|
|
2509
2543
|
*/
|
|
2510
|
-
apiV2HospitalsHospitalIdServicesServiceIdGet: function (hospitalId_1, serviceId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1) {
|
|
2544
|
+
apiV2HospitalsHospitalIdServicesServiceIdGet: function (hospitalId_1, serviceId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, hospitalFaqLimit_1, platformFaqLimit_1) {
|
|
2511
2545
|
var args_1 = [];
|
|
2512
|
-
for (var _i =
|
|
2513
|
-
args_1[_i -
|
|
2546
|
+
for (var _i = 7; _i < arguments.length; _i++) {
|
|
2547
|
+
args_1[_i - 7] = arguments[_i];
|
|
2514
2548
|
}
|
|
2515
|
-
return __awaiter(_this, __spreadArray([hospitalId_1, serviceId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1], args_1, true), void 0, function (hospitalId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
2549
|
+
return __awaiter(_this, __spreadArray([hospitalId_1, serviceId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, hospitalFaqLimit_1, platformFaqLimit_1], args_1, true), void 0, function (hospitalId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, platformFaqLimit, options) {
|
|
2516
2550
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
2517
2551
|
if (options === void 0) { options = {}; }
|
|
2518
2552
|
return __generator(this, function (_a) {
|
|
@@ -2536,6 +2570,12 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
2536
2570
|
if (returnDefaultValue !== undefined) {
|
|
2537
2571
|
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
2538
2572
|
}
|
|
2573
|
+
if (hospitalFaqLimit !== undefined) {
|
|
2574
|
+
localVarQueryParameter['hospitalFaqLimit'] = hospitalFaqLimit;
|
|
2575
|
+
}
|
|
2576
|
+
if (platformFaqLimit !== undefined) {
|
|
2577
|
+
localVarQueryParameter['platformFaqLimit'] = platformFaqLimit;
|
|
2578
|
+
}
|
|
2539
2579
|
if (xCloudhospitalPlatform != null) {
|
|
2540
2580
|
localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
|
|
2541
2581
|
}
|
|
@@ -2558,15 +2598,17 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
2558
2598
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
2559
2599
|
* @param {boolean} [returnDefaultValue]
|
|
2560
2600
|
* @param {string} [previewSecret]
|
|
2601
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
2602
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
2561
2603
|
* @param {*} [options] Override http request option.
|
|
2562
2604
|
* @throws {RequiredError}
|
|
2563
2605
|
*/
|
|
2564
|
-
apiV2HospitalsHospitalIdServicesSlugGet: function (hospitalId_1, slug_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, previewSecret_1) {
|
|
2606
|
+
apiV2HospitalsHospitalIdServicesSlugGet: function (hospitalId_1, slug_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, previewSecret_1, hospitalFaqLimit_1, platformFaqLimit_1) {
|
|
2565
2607
|
var args_1 = [];
|
|
2566
|
-
for (var _i =
|
|
2567
|
-
args_1[_i -
|
|
2608
|
+
for (var _i = 8; _i < arguments.length; _i++) {
|
|
2609
|
+
args_1[_i - 8] = arguments[_i];
|
|
2568
2610
|
}
|
|
2569
|
-
return __awaiter(_this, __spreadArray([hospitalId_1, slug_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, previewSecret_1], args_1, true), void 0, function (hospitalId, slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, options) {
|
|
2611
|
+
return __awaiter(_this, __spreadArray([hospitalId_1, slug_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, previewSecret_1, hospitalFaqLimit_1, platformFaqLimit_1], args_1, true), void 0, function (hospitalId, slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, hospitalFaqLimit, platformFaqLimit, options) {
|
|
2570
2612
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
2571
2613
|
if (options === void 0) { options = {}; }
|
|
2572
2614
|
return __generator(this, function (_a) {
|
|
@@ -2593,6 +2635,12 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
2593
2635
|
if (previewSecret !== undefined) {
|
|
2594
2636
|
localVarQueryParameter['previewSecret'] = previewSecret;
|
|
2595
2637
|
}
|
|
2638
|
+
if (hospitalFaqLimit !== undefined) {
|
|
2639
|
+
localVarQueryParameter['hospitalFaqLimit'] = hospitalFaqLimit;
|
|
2640
|
+
}
|
|
2641
|
+
if (platformFaqLimit !== undefined) {
|
|
2642
|
+
localVarQueryParameter['platformFaqLimit'] = platformFaqLimit;
|
|
2643
|
+
}
|
|
2596
2644
|
if (xCloudhospitalPlatform != null) {
|
|
2597
2645
|
localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
|
|
2598
2646
|
}
|
|
@@ -2998,15 +3046,17 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
2998
3046
|
* @param {string} slug
|
|
2999
3047
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
3000
3048
|
* @param {string} [previewSecret]
|
|
3049
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
3050
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
3001
3051
|
* @param {*} [options] Override http request option.
|
|
3002
3052
|
* @throws {RequiredError}
|
|
3003
3053
|
*/
|
|
3004
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet: function (hospitalId_1, slug_1, languageCode_1, previewSecret_1) {
|
|
3054
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet: function (hospitalId_1, slug_1, languageCode_1, previewSecret_1, hospitalFaqLimit_1, platformFaqLimit_1) {
|
|
3005
3055
|
var args_1 = [];
|
|
3006
|
-
for (var _i =
|
|
3007
|
-
args_1[_i -
|
|
3056
|
+
for (var _i = 6; _i < arguments.length; _i++) {
|
|
3057
|
+
args_1[_i - 6] = arguments[_i];
|
|
3008
3058
|
}
|
|
3009
|
-
return __awaiter(_this, __spreadArray([hospitalId_1, slug_1, languageCode_1, previewSecret_1], args_1, true), void 0, function (hospitalId, slug, languageCode, previewSecret, options) {
|
|
3059
|
+
return __awaiter(_this, __spreadArray([hospitalId_1, slug_1, languageCode_1, previewSecret_1, hospitalFaqLimit_1, platformFaqLimit_1], args_1, true), void 0, function (hospitalId, slug, languageCode, previewSecret, hospitalFaqLimit, platformFaqLimit, options) {
|
|
3010
3060
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
3011
3061
|
if (options === void 0) { options = {}; }
|
|
3012
3062
|
return __generator(this, function (_a) {
|
|
@@ -3030,6 +3080,12 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
3030
3080
|
if (previewSecret !== undefined) {
|
|
3031
3081
|
localVarQueryParameter['previewSecret'] = previewSecret;
|
|
3032
3082
|
}
|
|
3083
|
+
if (hospitalFaqLimit !== undefined) {
|
|
3084
|
+
localVarQueryParameter['hospitalFaqLimit'] = hospitalFaqLimit;
|
|
3085
|
+
}
|
|
3086
|
+
if (platformFaqLimit !== undefined) {
|
|
3087
|
+
localVarQueryParameter['platformFaqLimit'] = platformFaqLimit;
|
|
3088
|
+
}
|
|
3033
3089
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
3034
3090
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3035
3091
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -3046,15 +3102,17 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
3046
3102
|
* @param {string} hospitalId
|
|
3047
3103
|
* @param {string} specialtyId
|
|
3048
3104
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
3105
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
3106
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
3049
3107
|
* @param {*} [options] Override http request option.
|
|
3050
3108
|
* @throws {RequiredError}
|
|
3051
3109
|
*/
|
|
3052
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId_1, specialtyId_1, languageCode_1) {
|
|
3110
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId_1, specialtyId_1, languageCode_1, hospitalFaqLimit_1, platformFaqLimit_1) {
|
|
3053
3111
|
var args_1 = [];
|
|
3054
|
-
for (var _i =
|
|
3055
|
-
args_1[_i -
|
|
3112
|
+
for (var _i = 5; _i < arguments.length; _i++) {
|
|
3113
|
+
args_1[_i - 5] = arguments[_i];
|
|
3056
3114
|
}
|
|
3057
|
-
return __awaiter(_this, __spreadArray([hospitalId_1, specialtyId_1, languageCode_1], args_1, true), void 0, function (hospitalId, specialtyId, languageCode, options) {
|
|
3115
|
+
return __awaiter(_this, __spreadArray([hospitalId_1, specialtyId_1, languageCode_1, hospitalFaqLimit_1, platformFaqLimit_1], args_1, true), void 0, function (hospitalId, specialtyId, languageCode, hospitalFaqLimit, platformFaqLimit, options) {
|
|
3058
3116
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
3059
3117
|
if (options === void 0) { options = {}; }
|
|
3060
3118
|
return __generator(this, function (_a) {
|
|
@@ -3075,6 +3133,12 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
3075
3133
|
if (languageCode !== undefined) {
|
|
3076
3134
|
localVarQueryParameter['languageCode'] = languageCode;
|
|
3077
3135
|
}
|
|
3136
|
+
if (hospitalFaqLimit !== undefined) {
|
|
3137
|
+
localVarQueryParameter['hospitalFaqLimit'] = hospitalFaqLimit;
|
|
3138
|
+
}
|
|
3139
|
+
if (platformFaqLimit !== undefined) {
|
|
3140
|
+
localVarQueryParameter['platformFaqLimit'] = platformFaqLimit;
|
|
3141
|
+
}
|
|
3078
3142
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
3079
3143
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3080
3144
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -3278,15 +3342,17 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
3278
3342
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
3279
3343
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
3280
3344
|
* @param {boolean} [returnDefaultValue]
|
|
3345
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
3346
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
3281
3347
|
* @param {*} [options] Override http request option.
|
|
3282
3348
|
* @throws {RequiredError}
|
|
3283
3349
|
*/
|
|
3284
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet: function (hospitalId_1, specialtyId_1, serviceId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1) {
|
|
3350
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet: function (hospitalId_1, specialtyId_1, serviceId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, hospitalFaqLimit_1, platformFaqLimit_1) {
|
|
3285
3351
|
var args_1 = [];
|
|
3286
|
-
for (var _i =
|
|
3287
|
-
args_1[_i -
|
|
3352
|
+
for (var _i = 8; _i < arguments.length; _i++) {
|
|
3353
|
+
args_1[_i - 8] = arguments[_i];
|
|
3288
3354
|
}
|
|
3289
|
-
return __awaiter(_this, __spreadArray([hospitalId_1, specialtyId_1, serviceId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1], args_1, true), void 0, function (hospitalId, specialtyId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
3355
|
+
return __awaiter(_this, __spreadArray([hospitalId_1, specialtyId_1, serviceId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, hospitalFaqLimit_1, platformFaqLimit_1], args_1, true), void 0, function (hospitalId, specialtyId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, platformFaqLimit, options) {
|
|
3290
3356
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
3291
3357
|
if (options === void 0) { options = {}; }
|
|
3292
3358
|
return __generator(this, function (_a) {
|
|
@@ -3313,6 +3379,12 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
3313
3379
|
if (returnDefaultValue !== undefined) {
|
|
3314
3380
|
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
3315
3381
|
}
|
|
3382
|
+
if (hospitalFaqLimit !== undefined) {
|
|
3383
|
+
localVarQueryParameter['hospitalFaqLimit'] = hospitalFaqLimit;
|
|
3384
|
+
}
|
|
3385
|
+
if (platformFaqLimit !== undefined) {
|
|
3386
|
+
localVarQueryParameter['platformFaqLimit'] = platformFaqLimit;
|
|
3387
|
+
}
|
|
3316
3388
|
if (xCloudhospitalPlatform != null) {
|
|
3317
3389
|
localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
|
|
3318
3390
|
}
|
|
@@ -3449,15 +3521,16 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
3449
3521
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
3450
3522
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
3451
3523
|
* @param {boolean} [returnDefaultValue]
|
|
3524
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
3452
3525
|
* @param {*} [options] Override http request option.
|
|
3453
3526
|
* @throws {RequiredError}
|
|
3454
3527
|
*/
|
|
3455
|
-
apiV2HospitalsHospitalIdSummaryGet: function (hospitalId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1) {
|
|
3528
|
+
apiV2HospitalsHospitalIdSummaryGet: function (hospitalId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, hospitalFaqLimit_1) {
|
|
3456
3529
|
var args_1 = [];
|
|
3457
|
-
for (var _i =
|
|
3458
|
-
args_1[_i -
|
|
3530
|
+
for (var _i = 5; _i < arguments.length; _i++) {
|
|
3531
|
+
args_1[_i - 5] = arguments[_i];
|
|
3459
3532
|
}
|
|
3460
|
-
return __awaiter(_this, __spreadArray([hospitalId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1], args_1, true), void 0, function (hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
3533
|
+
return __awaiter(_this, __spreadArray([hospitalId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, hospitalFaqLimit_1], args_1, true), void 0, function (hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, options) {
|
|
3461
3534
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
3462
3535
|
if (options === void 0) { options = {}; }
|
|
3463
3536
|
return __generator(this, function (_a) {
|
|
@@ -3478,6 +3551,9 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
3478
3551
|
if (returnDefaultValue !== undefined) {
|
|
3479
3552
|
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
3480
3553
|
}
|
|
3554
|
+
if (hospitalFaqLimit !== undefined) {
|
|
3555
|
+
localVarQueryParameter['hospitalFaqLimit'] = hospitalFaqLimit;
|
|
3556
|
+
}
|
|
3481
3557
|
if (xCloudhospitalPlatform != null) {
|
|
3482
3558
|
localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
|
|
3483
3559
|
}
|
|
@@ -3956,15 +4032,17 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
3956
4032
|
* @param {boolean} [returnDefaultValue]
|
|
3957
4033
|
* @param {string} [previewSecret]
|
|
3958
4034
|
* @param {Array<string>} [fillAdditionalFields] Comma separated list of additional fields to include. Available values: Doctors, Deals, Reviews, HospitalServices, IsIncludedToBranch, PlatformFaqs, HospitalFaqs
|
|
4035
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
4036
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
3959
4037
|
* @param {*} [options] Override http request option.
|
|
3960
4038
|
* @throws {RequiredError}
|
|
3961
4039
|
*/
|
|
3962
|
-
apiV2HospitalsSlugGet: function (slug_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, previewSecret_1, fillAdditionalFields_1) {
|
|
4040
|
+
apiV2HospitalsSlugGet: function (slug_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, previewSecret_1, fillAdditionalFields_1, hospitalFaqLimit_1, platformFaqLimit_1) {
|
|
3963
4041
|
var args_1 = [];
|
|
3964
|
-
for (var _i =
|
|
3965
|
-
args_1[_i -
|
|
4042
|
+
for (var _i = 8; _i < arguments.length; _i++) {
|
|
4043
|
+
args_1[_i - 8] = arguments[_i];
|
|
3966
4044
|
}
|
|
3967
|
-
return __awaiter(_this, __spreadArray([slug_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, previewSecret_1, fillAdditionalFields_1], args_1, true), void 0, function (slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, options) {
|
|
4045
|
+
return __awaiter(_this, __spreadArray([slug_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, previewSecret_1, fillAdditionalFields_1, hospitalFaqLimit_1, platformFaqLimit_1], args_1, true), void 0, function (slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, hospitalFaqLimit, platformFaqLimit, options) {
|
|
3968
4046
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
3969
4047
|
if (options === void 0) { options = {}; }
|
|
3970
4048
|
return __generator(this, function (_a) {
|
|
@@ -4000,6 +4078,12 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
4000
4078
|
if (fillAdditionalFields) {
|
|
4001
4079
|
localVarQueryParameter['fillAdditionalFields'] = fillAdditionalFields;
|
|
4002
4080
|
}
|
|
4081
|
+
if (hospitalFaqLimit !== undefined) {
|
|
4082
|
+
localVarQueryParameter['hospitalFaqLimit'] = hospitalFaqLimit;
|
|
4083
|
+
}
|
|
4084
|
+
if (platformFaqLimit !== undefined) {
|
|
4085
|
+
localVarQueryParameter['platformFaqLimit'] = platformFaqLimit;
|
|
4086
|
+
}
|
|
4003
4087
|
if (xCloudhospitalPlatform != null) {
|
|
4004
4088
|
localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
|
|
4005
4089
|
}
|
|
@@ -4021,15 +4105,16 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
4021
4105
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
4022
4106
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
4023
4107
|
* @param {boolean} [returnDefaultValue]
|
|
4108
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
4024
4109
|
* @param {*} [options] Override http request option.
|
|
4025
4110
|
* @throws {RequiredError}
|
|
4026
4111
|
*/
|
|
4027
|
-
apiV2HospitalsSlugSummaryGet: function (slug_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1) {
|
|
4112
|
+
apiV2HospitalsSlugSummaryGet: function (slug_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, hospitalFaqLimit_1) {
|
|
4028
4113
|
var args_1 = [];
|
|
4029
|
-
for (var _i =
|
|
4030
|
-
args_1[_i -
|
|
4114
|
+
for (var _i = 5; _i < arguments.length; _i++) {
|
|
4115
|
+
args_1[_i - 5] = arguments[_i];
|
|
4031
4116
|
}
|
|
4032
|
-
return __awaiter(_this, __spreadArray([slug_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1], args_1, true), void 0, function (slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
4117
|
+
return __awaiter(_this, __spreadArray([slug_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, hospitalFaqLimit_1], args_1, true), void 0, function (slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, options) {
|
|
4033
4118
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
4034
4119
|
if (options === void 0) { options = {}; }
|
|
4035
4120
|
return __generator(this, function (_a) {
|
|
@@ -4050,6 +4135,9 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
4050
4135
|
if (returnDefaultValue !== undefined) {
|
|
4051
4136
|
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
4052
4137
|
}
|
|
4138
|
+
if (hospitalFaqLimit !== undefined) {
|
|
4139
|
+
localVarQueryParameter['hospitalFaqLimit'] = hospitalFaqLimit;
|
|
4140
|
+
}
|
|
4053
4141
|
if (xCloudhospitalPlatform != null) {
|
|
4054
4142
|
localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
|
|
4055
4143
|
}
|
|
@@ -4215,15 +4303,17 @@ var HospitalsApiFp = function (configuration) {
|
|
|
4215
4303
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
4216
4304
|
* @param {boolean} [returnDefaultValue]
|
|
4217
4305
|
* @param {string} [previewSecret]
|
|
4306
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
4307
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
4218
4308
|
* @param {*} [options] Override http request option.
|
|
4219
4309
|
* @throws {RequiredError}
|
|
4220
4310
|
*/
|
|
4221
|
-
apiV2HospitalsHospitalIdArticlesSlugGet: function (hospitalId, slug, languageCode, returnDefaultValue, previewSecret, options) {
|
|
4311
|
+
apiV2HospitalsHospitalIdArticlesSlugGet: function (hospitalId, slug, languageCode, returnDefaultValue, previewSecret, hospitalFaqLimit, platformFaqLimit, options) {
|
|
4222
4312
|
return __awaiter(this, void 0, void 0, function () {
|
|
4223
4313
|
var localVarAxiosArgs;
|
|
4224
4314
|
return __generator(this, function (_a) {
|
|
4225
4315
|
switch (_a.label) {
|
|
4226
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdArticlesSlugGet(hospitalId, slug, languageCode, returnDefaultValue, previewSecret, options)];
|
|
4316
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdArticlesSlugGet(hospitalId, slug, languageCode, returnDefaultValue, previewSecret, hospitalFaqLimit, platformFaqLimit, options)];
|
|
4227
4317
|
case 1:
|
|
4228
4318
|
localVarAxiosArgs = _a.sent();
|
|
4229
4319
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -4337,15 +4427,17 @@ var HospitalsApiFp = function (configuration) {
|
|
|
4337
4427
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
4338
4428
|
* @param {boolean} [returnDefaultValue]
|
|
4339
4429
|
* @param {string} [previewSecret]
|
|
4430
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
4431
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
4340
4432
|
* @param {*} [options] Override http request option.
|
|
4341
4433
|
* @throws {RequiredError}
|
|
4342
4434
|
*/
|
|
4343
|
-
apiV2HospitalsHospitalIdDealsSlugGet: function (hospitalId, slug, languageCode, returnDefaultValue, previewSecret, options) {
|
|
4435
|
+
apiV2HospitalsHospitalIdDealsSlugGet: function (hospitalId, slug, languageCode, returnDefaultValue, previewSecret, hospitalFaqLimit, platformFaqLimit, options) {
|
|
4344
4436
|
return __awaiter(this, void 0, void 0, function () {
|
|
4345
4437
|
var localVarAxiosArgs;
|
|
4346
4438
|
return __generator(this, function (_a) {
|
|
4347
4439
|
switch (_a.label) {
|
|
4348
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdDealsSlugGet(hospitalId, slug, languageCode, returnDefaultValue, previewSecret, options)];
|
|
4440
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdDealsSlugGet(hospitalId, slug, languageCode, returnDefaultValue, previewSecret, hospitalFaqLimit, platformFaqLimit, options)];
|
|
4349
4441
|
case 1:
|
|
4350
4442
|
localVarAxiosArgs = _a.sent();
|
|
4351
4443
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -4382,15 +4474,17 @@ var HospitalsApiFp = function (configuration) {
|
|
|
4382
4474
|
* @param {string} hospitalId
|
|
4383
4475
|
* @param {string} slug
|
|
4384
4476
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
4477
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
4478
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
4385
4479
|
* @param {*} [options] Override http request option.
|
|
4386
4480
|
* @throws {RequiredError}
|
|
4387
4481
|
*/
|
|
4388
|
-
apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet: function (hospitalId, slug, languageCode, options) {
|
|
4482
|
+
apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet: function (hospitalId, slug, languageCode, hospitalFaqLimit, platformFaqLimit, options) {
|
|
4389
4483
|
return __awaiter(this, void 0, void 0, function () {
|
|
4390
4484
|
var localVarAxiosArgs;
|
|
4391
4485
|
return __generator(this, function (_a) {
|
|
4392
4486
|
switch (_a.label) {
|
|
4393
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet(hospitalId, slug, languageCode, options)];
|
|
4487
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet(hospitalId, slug, languageCode, hospitalFaqLimit, platformFaqLimit, options)];
|
|
4394
4488
|
case 1:
|
|
4395
4489
|
localVarAxiosArgs = _a.sent();
|
|
4396
4490
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -4628,15 +4722,17 @@ var HospitalsApiFp = function (configuration) {
|
|
|
4628
4722
|
* @param {boolean} [returnDefaultValue]
|
|
4629
4723
|
* @param {string} [previewSecret]
|
|
4630
4724
|
* @param {Array<string>} [fillAdditionalFields] Comma separated list of additional fields to include. Available values: Doctors, Deals, Reviews, HospitalServices, IsIncludedToBranch, PlatformFaqs, HospitalFaqs
|
|
4725
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
4726
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
4631
4727
|
* @param {*} [options] Override http request option.
|
|
4632
4728
|
* @throws {RequiredError}
|
|
4633
4729
|
*/
|
|
4634
|
-
apiV2HospitalsHospitalIdGet: function (hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, options) {
|
|
4730
|
+
apiV2HospitalsHospitalIdGet: function (hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, hospitalFaqLimit, platformFaqLimit, options) {
|
|
4635
4731
|
return __awaiter(this, void 0, void 0, function () {
|
|
4636
4732
|
var localVarAxiosArgs;
|
|
4637
4733
|
return __generator(this, function (_a) {
|
|
4638
4734
|
switch (_a.label) {
|
|
4639
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdGet(hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, options)];
|
|
4735
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdGet(hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, hospitalFaqLimit, platformFaqLimit, options)];
|
|
4640
4736
|
case 1:
|
|
4641
4737
|
localVarAxiosArgs = _a.sent();
|
|
4642
4738
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -5113,15 +5209,17 @@ var HospitalsApiFp = function (configuration) {
|
|
|
5113
5209
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
5114
5210
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
5115
5211
|
* @param {boolean} [returnDefaultValue]
|
|
5212
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
5213
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
5116
5214
|
* @param {*} [options] Override http request option.
|
|
5117
5215
|
* @throws {RequiredError}
|
|
5118
5216
|
*/
|
|
5119
|
-
apiV2HospitalsHospitalIdServicesServiceIdGet: function (hospitalId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
5217
|
+
apiV2HospitalsHospitalIdServicesServiceIdGet: function (hospitalId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, platformFaqLimit, options) {
|
|
5120
5218
|
return __awaiter(this, void 0, void 0, function () {
|
|
5121
5219
|
var localVarAxiosArgs;
|
|
5122
5220
|
return __generator(this, function (_a) {
|
|
5123
5221
|
switch (_a.label) {
|
|
5124
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdServicesServiceIdGet(hospitalId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options)];
|
|
5222
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdServicesServiceIdGet(hospitalId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, platformFaqLimit, options)];
|
|
5125
5223
|
case 1:
|
|
5126
5224
|
localVarAxiosArgs = _a.sent();
|
|
5127
5225
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -5138,15 +5236,17 @@ var HospitalsApiFp = function (configuration) {
|
|
|
5138
5236
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
5139
5237
|
* @param {boolean} [returnDefaultValue]
|
|
5140
5238
|
* @param {string} [previewSecret]
|
|
5239
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
5240
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
5141
5241
|
* @param {*} [options] Override http request option.
|
|
5142
5242
|
* @throws {RequiredError}
|
|
5143
5243
|
*/
|
|
5144
|
-
apiV2HospitalsHospitalIdServicesSlugGet: function (hospitalId, slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, options) {
|
|
5244
|
+
apiV2HospitalsHospitalIdServicesSlugGet: function (hospitalId, slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, hospitalFaqLimit, platformFaqLimit, options) {
|
|
5145
5245
|
return __awaiter(this, void 0, void 0, function () {
|
|
5146
5246
|
var localVarAxiosArgs;
|
|
5147
5247
|
return __generator(this, function (_a) {
|
|
5148
5248
|
switch (_a.label) {
|
|
5149
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdServicesSlugGet(hospitalId, slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, options)];
|
|
5249
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdServicesSlugGet(hospitalId, slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, hospitalFaqLimit, platformFaqLimit, options)];
|
|
5150
5250
|
case 1:
|
|
5151
5251
|
localVarAxiosArgs = _a.sent();
|
|
5152
5252
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -5307,15 +5407,17 @@ var HospitalsApiFp = function (configuration) {
|
|
|
5307
5407
|
* @param {string} slug
|
|
5308
5408
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
5309
5409
|
* @param {string} [previewSecret]
|
|
5410
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
5411
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
5310
5412
|
* @param {*} [options] Override http request option.
|
|
5311
5413
|
* @throws {RequiredError}
|
|
5312
5414
|
*/
|
|
5313
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet: function (hospitalId, slug, languageCode, previewSecret, options) {
|
|
5415
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet: function (hospitalId, slug, languageCode, previewSecret, hospitalFaqLimit, platformFaqLimit, options) {
|
|
5314
5416
|
return __awaiter(this, void 0, void 0, function () {
|
|
5315
5417
|
var localVarAxiosArgs;
|
|
5316
5418
|
return __generator(this, function (_a) {
|
|
5317
5419
|
switch (_a.label) {
|
|
5318
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode, previewSecret, options)];
|
|
5420
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode, previewSecret, hospitalFaqLimit, platformFaqLimit, options)];
|
|
5319
5421
|
case 1:
|
|
5320
5422
|
localVarAxiosArgs = _a.sent();
|
|
5321
5423
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -5329,15 +5431,17 @@ var HospitalsApiFp = function (configuration) {
|
|
|
5329
5431
|
* @param {string} hospitalId
|
|
5330
5432
|
* @param {string} specialtyId
|
|
5331
5433
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
5434
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
5435
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
5332
5436
|
* @param {*} [options] Override http request option.
|
|
5333
5437
|
* @throws {RequiredError}
|
|
5334
5438
|
*/
|
|
5335
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, languageCode, options) {
|
|
5439
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, languageCode, hospitalFaqLimit, platformFaqLimit, options) {
|
|
5336
5440
|
return __awaiter(this, void 0, void 0, function () {
|
|
5337
5441
|
var localVarAxiosArgs;
|
|
5338
5442
|
return __generator(this, function (_a) {
|
|
5339
5443
|
switch (_a.label) {
|
|
5340
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options)];
|
|
5444
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, hospitalFaqLimit, platformFaqLimit, options)];
|
|
5341
5445
|
case 1:
|
|
5342
5446
|
localVarAxiosArgs = _a.sent();
|
|
5343
5447
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -5418,15 +5522,17 @@ var HospitalsApiFp = function (configuration) {
|
|
|
5418
5522
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
5419
5523
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
5420
5524
|
* @param {boolean} [returnDefaultValue]
|
|
5525
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
5526
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
5421
5527
|
* @param {*} [options] Override http request option.
|
|
5422
5528
|
* @throws {RequiredError}
|
|
5423
5529
|
*/
|
|
5424
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet: function (hospitalId, specialtyId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
5530
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet: function (hospitalId, specialtyId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, platformFaqLimit, options) {
|
|
5425
5531
|
return __awaiter(this, void 0, void 0, function () {
|
|
5426
5532
|
var localVarAxiosArgs;
|
|
5427
5533
|
return __generator(this, function (_a) {
|
|
5428
5534
|
switch (_a.label) {
|
|
5429
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId, specialtyId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options)];
|
|
5535
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId, specialtyId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, platformFaqLimit, options)];
|
|
5430
5536
|
case 1:
|
|
5431
5537
|
localVarAxiosArgs = _a.sent();
|
|
5432
5538
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -5491,15 +5597,16 @@ var HospitalsApiFp = function (configuration) {
|
|
|
5491
5597
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
5492
5598
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
5493
5599
|
* @param {boolean} [returnDefaultValue]
|
|
5600
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
5494
5601
|
* @param {*} [options] Override http request option.
|
|
5495
5602
|
* @throws {RequiredError}
|
|
5496
5603
|
*/
|
|
5497
|
-
apiV2HospitalsHospitalIdSummaryGet: function (hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
5604
|
+
apiV2HospitalsHospitalIdSummaryGet: function (hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, options) {
|
|
5498
5605
|
return __awaiter(this, void 0, void 0, function () {
|
|
5499
5606
|
var localVarAxiosArgs;
|
|
5500
5607
|
return __generator(this, function (_a) {
|
|
5501
5608
|
switch (_a.label) {
|
|
5502
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdSummaryGet(hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options)];
|
|
5609
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdSummaryGet(hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, options)];
|
|
5503
5610
|
case 1:
|
|
5504
5611
|
localVarAxiosArgs = _a.sent();
|
|
5505
5612
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -5713,15 +5820,17 @@ var HospitalsApiFp = function (configuration) {
|
|
|
5713
5820
|
* @param {boolean} [returnDefaultValue]
|
|
5714
5821
|
* @param {string} [previewSecret]
|
|
5715
5822
|
* @param {Array<string>} [fillAdditionalFields] Comma separated list of additional fields to include. Available values: Doctors, Deals, Reviews, HospitalServices, IsIncludedToBranch, PlatformFaqs, HospitalFaqs
|
|
5823
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
5824
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
5716
5825
|
* @param {*} [options] Override http request option.
|
|
5717
5826
|
* @throws {RequiredError}
|
|
5718
5827
|
*/
|
|
5719
|
-
apiV2HospitalsSlugGet: function (slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, options) {
|
|
5828
|
+
apiV2HospitalsSlugGet: function (slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, hospitalFaqLimit, platformFaqLimit, options) {
|
|
5720
5829
|
return __awaiter(this, void 0, void 0, function () {
|
|
5721
5830
|
var localVarAxiosArgs;
|
|
5722
5831
|
return __generator(this, function (_a) {
|
|
5723
5832
|
switch (_a.label) {
|
|
5724
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsSlugGet(slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, options)];
|
|
5833
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsSlugGet(slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, hospitalFaqLimit, platformFaqLimit, options)];
|
|
5725
5834
|
case 1:
|
|
5726
5835
|
localVarAxiosArgs = _a.sent();
|
|
5727
5836
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -5736,15 +5845,16 @@ var HospitalsApiFp = function (configuration) {
|
|
|
5736
5845
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
5737
5846
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
5738
5847
|
* @param {boolean} [returnDefaultValue]
|
|
5848
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
5739
5849
|
* @param {*} [options] Override http request option.
|
|
5740
5850
|
* @throws {RequiredError}
|
|
5741
5851
|
*/
|
|
5742
|
-
apiV2HospitalsSlugSummaryGet: function (slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
5852
|
+
apiV2HospitalsSlugSummaryGet: function (slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, options) {
|
|
5743
5853
|
return __awaiter(this, void 0, void 0, function () {
|
|
5744
5854
|
var localVarAxiosArgs;
|
|
5745
5855
|
return __generator(this, function (_a) {
|
|
5746
5856
|
switch (_a.label) {
|
|
5747
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsSlugSummaryGet(slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, options)];
|
|
5857
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsSlugSummaryGet(slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, options)];
|
|
5748
5858
|
case 1:
|
|
5749
5859
|
localVarAxiosArgs = _a.sent();
|
|
5750
5860
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -5854,11 +5964,13 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
5854
5964
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
5855
5965
|
* @param {boolean} [returnDefaultValue]
|
|
5856
5966
|
* @param {string} [previewSecret]
|
|
5967
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
5968
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
5857
5969
|
* @param {*} [options] Override http request option.
|
|
5858
5970
|
* @throws {RequiredError}
|
|
5859
5971
|
*/
|
|
5860
|
-
apiV2HospitalsHospitalIdArticlesSlugGet: function (hospitalId, slug, languageCode, returnDefaultValue, previewSecret, options) {
|
|
5861
|
-
return localVarFp.apiV2HospitalsHospitalIdArticlesSlugGet(hospitalId, slug, languageCode, returnDefaultValue, previewSecret, options).then(function (request) { return request(axios, basePath); });
|
|
5972
|
+
apiV2HospitalsHospitalIdArticlesSlugGet: function (hospitalId, slug, languageCode, returnDefaultValue, previewSecret, hospitalFaqLimit, platformFaqLimit, options) {
|
|
5973
|
+
return localVarFp.apiV2HospitalsHospitalIdArticlesSlugGet(hospitalId, slug, languageCode, returnDefaultValue, previewSecret, hospitalFaqLimit, platformFaqLimit, options).then(function (request) { return request(axios, basePath); });
|
|
5862
5974
|
},
|
|
5863
5975
|
/**
|
|
5864
5976
|
*
|
|
@@ -5926,11 +6038,13 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
5926
6038
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
5927
6039
|
* @param {boolean} [returnDefaultValue]
|
|
5928
6040
|
* @param {string} [previewSecret]
|
|
6041
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
6042
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
5929
6043
|
* @param {*} [options] Override http request option.
|
|
5930
6044
|
* @throws {RequiredError}
|
|
5931
6045
|
*/
|
|
5932
|
-
apiV2HospitalsHospitalIdDealsSlugGet: function (hospitalId, slug, languageCode, returnDefaultValue, previewSecret, options) {
|
|
5933
|
-
return localVarFp.apiV2HospitalsHospitalIdDealsSlugGet(hospitalId, slug, languageCode, returnDefaultValue, previewSecret, options).then(function (request) { return request(axios, basePath); });
|
|
6046
|
+
apiV2HospitalsHospitalIdDealsSlugGet: function (hospitalId, slug, languageCode, returnDefaultValue, previewSecret, hospitalFaqLimit, platformFaqLimit, options) {
|
|
6047
|
+
return localVarFp.apiV2HospitalsHospitalIdDealsSlugGet(hospitalId, slug, languageCode, returnDefaultValue, previewSecret, hospitalFaqLimit, platformFaqLimit, options).then(function (request) { return request(axios, basePath); });
|
|
5934
6048
|
},
|
|
5935
6049
|
/**
|
|
5936
6050
|
*
|
|
@@ -5951,11 +6065,13 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
5951
6065
|
* @param {string} hospitalId
|
|
5952
6066
|
* @param {string} slug
|
|
5953
6067
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
6068
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
6069
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
5954
6070
|
* @param {*} [options] Override http request option.
|
|
5955
6071
|
* @throws {RequiredError}
|
|
5956
6072
|
*/
|
|
5957
|
-
apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet: function (hospitalId, slug, languageCode, options) {
|
|
5958
|
-
return localVarFp.apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet(hospitalId, slug, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
6073
|
+
apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet: function (hospitalId, slug, languageCode, hospitalFaqLimit, platformFaqLimit, options) {
|
|
6074
|
+
return localVarFp.apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet(hospitalId, slug, languageCode, hospitalFaqLimit, platformFaqLimit, options).then(function (request) { return request(axios, basePath); });
|
|
5959
6075
|
},
|
|
5960
6076
|
/**
|
|
5961
6077
|
*
|
|
@@ -6097,11 +6213,13 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
6097
6213
|
* @param {boolean} [returnDefaultValue]
|
|
6098
6214
|
* @param {string} [previewSecret]
|
|
6099
6215
|
* @param {Array<string>} [fillAdditionalFields] Comma separated list of additional fields to include. Available values: Doctors, Deals, Reviews, HospitalServices, IsIncludedToBranch, PlatformFaqs, HospitalFaqs
|
|
6216
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
6217
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
6100
6218
|
* @param {*} [options] Override http request option.
|
|
6101
6219
|
* @throws {RequiredError}
|
|
6102
6220
|
*/
|
|
6103
|
-
apiV2HospitalsHospitalIdGet: function (hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, options) {
|
|
6104
|
-
return localVarFp.apiV2HospitalsHospitalIdGet(hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, options).then(function (request) { return request(axios, basePath); });
|
|
6221
|
+
apiV2HospitalsHospitalIdGet: function (hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, hospitalFaqLimit, platformFaqLimit, options) {
|
|
6222
|
+
return localVarFp.apiV2HospitalsHospitalIdGet(hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, hospitalFaqLimit, platformFaqLimit, options).then(function (request) { return request(axios, basePath); });
|
|
6105
6223
|
},
|
|
6106
6224
|
/**
|
|
6107
6225
|
*
|
|
@@ -6382,11 +6500,13 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
6382
6500
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
6383
6501
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
6384
6502
|
* @param {boolean} [returnDefaultValue]
|
|
6503
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
6504
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
6385
6505
|
* @param {*} [options] Override http request option.
|
|
6386
6506
|
* @throws {RequiredError}
|
|
6387
6507
|
*/
|
|
6388
|
-
apiV2HospitalsHospitalIdServicesServiceIdGet: function (hospitalId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
6389
|
-
return localVarFp.apiV2HospitalsHospitalIdServicesServiceIdGet(hospitalId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options).then(function (request) { return request(axios, basePath); });
|
|
6508
|
+
apiV2HospitalsHospitalIdServicesServiceIdGet: function (hospitalId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, platformFaqLimit, options) {
|
|
6509
|
+
return localVarFp.apiV2HospitalsHospitalIdServicesServiceIdGet(hospitalId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, platformFaqLimit, options).then(function (request) { return request(axios, basePath); });
|
|
6390
6510
|
},
|
|
6391
6511
|
/**
|
|
6392
6512
|
*
|
|
@@ -6397,11 +6517,13 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
6397
6517
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
6398
6518
|
* @param {boolean} [returnDefaultValue]
|
|
6399
6519
|
* @param {string} [previewSecret]
|
|
6520
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
6521
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
6400
6522
|
* @param {*} [options] Override http request option.
|
|
6401
6523
|
* @throws {RequiredError}
|
|
6402
6524
|
*/
|
|
6403
|
-
apiV2HospitalsHospitalIdServicesSlugGet: function (hospitalId, slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, options) {
|
|
6404
|
-
return localVarFp.apiV2HospitalsHospitalIdServicesSlugGet(hospitalId, slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, options).then(function (request) { return request(axios, basePath); });
|
|
6525
|
+
apiV2HospitalsHospitalIdServicesSlugGet: function (hospitalId, slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, hospitalFaqLimit, platformFaqLimit, options) {
|
|
6526
|
+
return localVarFp.apiV2HospitalsHospitalIdServicesSlugGet(hospitalId, slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, hospitalFaqLimit, platformFaqLimit, options).then(function (request) { return request(axios, basePath); });
|
|
6405
6527
|
},
|
|
6406
6528
|
/**
|
|
6407
6529
|
*
|
|
@@ -6506,11 +6628,13 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
6506
6628
|
* @param {string} slug
|
|
6507
6629
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
6508
6630
|
* @param {string} [previewSecret]
|
|
6631
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
6632
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
6509
6633
|
* @param {*} [options] Override http request option.
|
|
6510
6634
|
* @throws {RequiredError}
|
|
6511
6635
|
*/
|
|
6512
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet: function (hospitalId, slug, languageCode, previewSecret, options) {
|
|
6513
|
-
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode, previewSecret, options).then(function (request) { return request(axios, basePath); });
|
|
6636
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet: function (hospitalId, slug, languageCode, previewSecret, hospitalFaqLimit, platformFaqLimit, options) {
|
|
6637
|
+
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode, previewSecret, hospitalFaqLimit, platformFaqLimit, options).then(function (request) { return request(axios, basePath); });
|
|
6514
6638
|
},
|
|
6515
6639
|
/**
|
|
6516
6640
|
*
|
|
@@ -6518,11 +6642,13 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
6518
6642
|
* @param {string} hospitalId
|
|
6519
6643
|
* @param {string} specialtyId
|
|
6520
6644
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
6645
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
6646
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
6521
6647
|
* @param {*} [options] Override http request option.
|
|
6522
6648
|
* @throws {RequiredError}
|
|
6523
6649
|
*/
|
|
6524
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, languageCode, options) {
|
|
6525
|
-
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
6650
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, languageCode, hospitalFaqLimit, platformFaqLimit, options) {
|
|
6651
|
+
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, hospitalFaqLimit, platformFaqLimit, options).then(function (request) { return request(axios, basePath); });
|
|
6526
6652
|
},
|
|
6527
6653
|
/**
|
|
6528
6654
|
*
|
|
@@ -6577,11 +6703,13 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
6577
6703
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
6578
6704
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
6579
6705
|
* @param {boolean} [returnDefaultValue]
|
|
6706
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
6707
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
6580
6708
|
* @param {*} [options] Override http request option.
|
|
6581
6709
|
* @throws {RequiredError}
|
|
6582
6710
|
*/
|
|
6583
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet: function (hospitalId, specialtyId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
6584
|
-
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId, specialtyId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options).then(function (request) { return request(axios, basePath); });
|
|
6711
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet: function (hospitalId, specialtyId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, platformFaqLimit, options) {
|
|
6712
|
+
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId, specialtyId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, platformFaqLimit, options).then(function (request) { return request(axios, basePath); });
|
|
6585
6713
|
},
|
|
6586
6714
|
/**
|
|
6587
6715
|
*
|
|
@@ -6620,11 +6748,12 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
6620
6748
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
6621
6749
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
6622
6750
|
* @param {boolean} [returnDefaultValue]
|
|
6751
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
6623
6752
|
* @param {*} [options] Override http request option.
|
|
6624
6753
|
* @throws {RequiredError}
|
|
6625
6754
|
*/
|
|
6626
|
-
apiV2HospitalsHospitalIdSummaryGet: function (hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
6627
|
-
return localVarFp.apiV2HospitalsHospitalIdSummaryGet(hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options).then(function (request) { return request(axios, basePath); });
|
|
6755
|
+
apiV2HospitalsHospitalIdSummaryGet: function (hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, options) {
|
|
6756
|
+
return localVarFp.apiV2HospitalsHospitalIdSummaryGet(hospitalId, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, options).then(function (request) { return request(axios, basePath); });
|
|
6628
6757
|
},
|
|
6629
6758
|
/**
|
|
6630
6759
|
*
|
|
@@ -6752,11 +6881,13 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
6752
6881
|
* @param {boolean} [returnDefaultValue]
|
|
6753
6882
|
* @param {string} [previewSecret]
|
|
6754
6883
|
* @param {Array<string>} [fillAdditionalFields] Comma separated list of additional fields to include. Available values: Doctors, Deals, Reviews, HospitalServices, IsIncludedToBranch, PlatformFaqs, HospitalFaqs
|
|
6884
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
6885
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
6755
6886
|
* @param {*} [options] Override http request option.
|
|
6756
6887
|
* @throws {RequiredError}
|
|
6757
6888
|
*/
|
|
6758
|
-
apiV2HospitalsSlugGet: function (slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, options) {
|
|
6759
|
-
return localVarFp.apiV2HospitalsSlugGet(slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, options).then(function (request) { return request(axios, basePath); });
|
|
6889
|
+
apiV2HospitalsSlugGet: function (slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, hospitalFaqLimit, platformFaqLimit, options) {
|
|
6890
|
+
return localVarFp.apiV2HospitalsSlugGet(slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, fillAdditionalFields, hospitalFaqLimit, platformFaqLimit, options).then(function (request) { return request(axios, basePath); });
|
|
6760
6891
|
},
|
|
6761
6892
|
/**
|
|
6762
6893
|
* This endpoint does not support preview mode. Only confirmed translations are returned.
|
|
@@ -6765,11 +6896,12 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
6765
6896
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
6766
6897
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
6767
6898
|
* @param {boolean} [returnDefaultValue]
|
|
6899
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
6768
6900
|
* @param {*} [options] Override http request option.
|
|
6769
6901
|
* @throws {RequiredError}
|
|
6770
6902
|
*/
|
|
6771
|
-
apiV2HospitalsSlugSummaryGet: function (slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
6772
|
-
return localVarFp.apiV2HospitalsSlugSummaryGet(slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, options).then(function (request) { return request(axios, basePath); });
|
|
6903
|
+
apiV2HospitalsSlugSummaryGet: function (slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, options) {
|
|
6904
|
+
return localVarFp.apiV2HospitalsSlugSummaryGet(slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, hospitalFaqLimit, options).then(function (request) { return request(axios, basePath); });
|
|
6773
6905
|
},
|
|
6774
6906
|
};
|
|
6775
6907
|
};
|
|
@@ -6856,7 +6988,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
6856
6988
|
*/
|
|
6857
6989
|
HospitalsApi.prototype.apiV2HospitalsHospitalIdArticlesSlugGet = function (requestParameters, options) {
|
|
6858
6990
|
var _this = this;
|
|
6859
|
-
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdArticlesSlugGet(requestParameters.hospitalId, requestParameters.slug, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
6991
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdArticlesSlugGet(requestParameters.hospitalId, requestParameters.slug, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, requestParameters.hospitalFaqLimit, requestParameters.platformFaqLimit, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
6860
6992
|
};
|
|
6861
6993
|
/**
|
|
6862
6994
|
*
|
|
@@ -6916,7 +7048,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
6916
7048
|
*/
|
|
6917
7049
|
HospitalsApi.prototype.apiV2HospitalsHospitalIdDealsSlugGet = function (requestParameters, options) {
|
|
6918
7050
|
var _this = this;
|
|
6919
|
-
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdDealsSlugGet(requestParameters.hospitalId, requestParameters.slug, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7051
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdDealsSlugGet(requestParameters.hospitalId, requestParameters.slug, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, requestParameters.hospitalFaqLimit, requestParameters.platformFaqLimit, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
6920
7052
|
};
|
|
6921
7053
|
/**
|
|
6922
7054
|
*
|
|
@@ -6940,7 +7072,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
6940
7072
|
*/
|
|
6941
7073
|
HospitalsApi.prototype.apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet = function (requestParameters, options) {
|
|
6942
7074
|
var _this = this;
|
|
6943
|
-
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet(requestParameters.hospitalId, requestParameters.slug, requestParameters.languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7075
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet(requestParameters.hospitalId, requestParameters.slug, requestParameters.languageCode, requestParameters.hospitalFaqLimit, requestParameters.platformFaqLimit, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
6944
7076
|
};
|
|
6945
7077
|
/**
|
|
6946
7078
|
*
|
|
@@ -7060,7 +7192,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
7060
7192
|
*/
|
|
7061
7193
|
HospitalsApi.prototype.apiV2HospitalsHospitalIdGet = function (requestParameters, options) {
|
|
7062
7194
|
var _this = this;
|
|
7063
|
-
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdGet(requestParameters.hospitalId, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, requestParameters.fillAdditionalFields, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7195
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdGet(requestParameters.hospitalId, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, requestParameters.fillAdditionalFields, requestParameters.hospitalFaqLimit, requestParameters.platformFaqLimit, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7064
7196
|
};
|
|
7065
7197
|
/**
|
|
7066
7198
|
*
|
|
@@ -7300,7 +7432,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
7300
7432
|
*/
|
|
7301
7433
|
HospitalsApi.prototype.apiV2HospitalsHospitalIdServicesServiceIdGet = function (requestParameters, options) {
|
|
7302
7434
|
var _this = this;
|
|
7303
|
-
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdServicesServiceIdGet(requestParameters.hospitalId, requestParameters.serviceId, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7435
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdServicesServiceIdGet(requestParameters.hospitalId, requestParameters.serviceId, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.hospitalFaqLimit, requestParameters.platformFaqLimit, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7304
7436
|
};
|
|
7305
7437
|
/**
|
|
7306
7438
|
*
|
|
@@ -7312,7 +7444,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
7312
7444
|
*/
|
|
7313
7445
|
HospitalsApi.prototype.apiV2HospitalsHospitalIdServicesSlugGet = function (requestParameters, options) {
|
|
7314
7446
|
var _this = this;
|
|
7315
|
-
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdServicesSlugGet(requestParameters.hospitalId, requestParameters.slug, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7447
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdServicesSlugGet(requestParameters.hospitalId, requestParameters.slug, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, requestParameters.hospitalFaqLimit, requestParameters.platformFaqLimit, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7316
7448
|
};
|
|
7317
7449
|
/**
|
|
7318
7450
|
*
|
|
@@ -7384,7 +7516,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
7384
7516
|
*/
|
|
7385
7517
|
HospitalsApi.prototype.apiV2HospitalsHospitalIdSpecialtiesSlugGet = function (requestParameters, options) {
|
|
7386
7518
|
var _this = this;
|
|
7387
|
-
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSlugGet(requestParameters.hospitalId, requestParameters.slug, requestParameters.languageCode, requestParameters.previewSecret, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7519
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSlugGet(requestParameters.hospitalId, requestParameters.slug, requestParameters.languageCode, requestParameters.previewSecret, requestParameters.hospitalFaqLimit, requestParameters.platformFaqLimit, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7388
7520
|
};
|
|
7389
7521
|
/**
|
|
7390
7522
|
*
|
|
@@ -7396,7 +7528,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
7396
7528
|
*/
|
|
7397
7529
|
HospitalsApi.prototype.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet = function (requestParameters, options) {
|
|
7398
7530
|
var _this = this;
|
|
7399
|
-
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7531
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.languageCode, requestParameters.hospitalFaqLimit, requestParameters.platformFaqLimit, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7400
7532
|
};
|
|
7401
7533
|
/**
|
|
7402
7534
|
*
|
|
@@ -7432,7 +7564,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
7432
7564
|
*/
|
|
7433
7565
|
HospitalsApi.prototype.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet = function (requestParameters, options) {
|
|
7434
7566
|
var _this = this;
|
|
7435
|
-
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7567
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.hospitalFaqLimit, requestParameters.platformFaqLimit, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7436
7568
|
};
|
|
7437
7569
|
/**
|
|
7438
7570
|
*
|
|
@@ -7468,7 +7600,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
7468
7600
|
*/
|
|
7469
7601
|
HospitalsApi.prototype.apiV2HospitalsHospitalIdSummaryGet = function (requestParameters, options) {
|
|
7470
7602
|
var _this = this;
|
|
7471
|
-
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdSummaryGet(requestParameters.hospitalId, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7603
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdSummaryGet(requestParameters.hospitalId, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.hospitalFaqLimit, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7472
7604
|
};
|
|
7473
7605
|
/**
|
|
7474
7606
|
*
|
|
@@ -7577,7 +7709,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
7577
7709
|
*/
|
|
7578
7710
|
HospitalsApi.prototype.apiV2HospitalsSlugGet = function (requestParameters, options) {
|
|
7579
7711
|
var _this = this;
|
|
7580
|
-
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsSlugGet(requestParameters.slug, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, requestParameters.fillAdditionalFields, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7712
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsSlugGet(requestParameters.slug, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, requestParameters.fillAdditionalFields, requestParameters.hospitalFaqLimit, requestParameters.platformFaqLimit, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7581
7713
|
};
|
|
7582
7714
|
/**
|
|
7583
7715
|
* This endpoint does not support preview mode. Only confirmed translations are returned.
|
|
@@ -7589,7 +7721,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
7589
7721
|
*/
|
|
7590
7722
|
HospitalsApi.prototype.apiV2HospitalsSlugSummaryGet = function (requestParameters, options) {
|
|
7591
7723
|
var _this = this;
|
|
7592
|
-
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsSlugSummaryGet(requestParameters.slug, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7724
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsSlugSummaryGet(requestParameters.slug, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.hospitalFaqLimit, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7593
7725
|
};
|
|
7594
7726
|
return HospitalsApi;
|
|
7595
7727
|
}(base_1.BaseAPI));
|