ch-admin-api-client-typescript 3.4.1 → 3.4.3
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.d.ts +566 -447
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +388 -276
- package/package.json +1 -1
- package/src/api.ts +753 -570
package/lib/api.js
CHANGED
|
@@ -329,16 +329,17 @@ exports.AboutUsApiAxiosParamCreator = function (configuration) {
|
|
|
329
329
|
* @param {string} [hospitalName]
|
|
330
330
|
* @param {string} [hospitalSlug]
|
|
331
331
|
* @param {string} [name]
|
|
332
|
-
* @param {string} [languageCode]
|
|
333
332
|
* @param {boolean} [returnDefaultValue]
|
|
334
333
|
* @param {boolean} [confirmed]
|
|
334
|
+
* @param {string} [languageCode]
|
|
335
|
+
* @param {boolean} [showHidden]
|
|
335
336
|
* @param {number} [page]
|
|
336
337
|
* @param {number} [limit]
|
|
337
338
|
* @param {Date} [lastRetrieved]
|
|
338
339
|
* @param {*} [options] Override http request option.
|
|
339
340
|
* @throws {RequiredError}
|
|
340
341
|
*/
|
|
341
|
-
apiV1AboutusGet: function (hospitalId, hospitalName, hospitalSlug, name,
|
|
342
|
+
apiV1AboutusGet: function (hospitalId, hospitalName, hospitalSlug, name, returnDefaultValue, confirmed, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
342
343
|
if (options === void 0) { options = {}; }
|
|
343
344
|
return __awaiter(_this, void 0, void 0, function () {
|
|
344
345
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -372,15 +373,18 @@ exports.AboutUsApiAxiosParamCreator = function (configuration) {
|
|
|
372
373
|
if (name !== undefined) {
|
|
373
374
|
localVarQueryParameter['Name'] = name;
|
|
374
375
|
}
|
|
375
|
-
if (languageCode !== undefined) {
|
|
376
|
-
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
377
|
-
}
|
|
378
376
|
if (returnDefaultValue !== undefined) {
|
|
379
377
|
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
380
378
|
}
|
|
381
379
|
if (confirmed !== undefined) {
|
|
382
380
|
localVarQueryParameter['Confirmed'] = confirmed;
|
|
383
381
|
}
|
|
382
|
+
if (languageCode !== undefined) {
|
|
383
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
384
|
+
}
|
|
385
|
+
if (showHidden !== undefined) {
|
|
386
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
387
|
+
}
|
|
384
388
|
if (page !== undefined) {
|
|
385
389
|
localVarQueryParameter['page'] = page;
|
|
386
390
|
}
|
|
@@ -651,21 +655,22 @@ exports.AboutUsApiFp = function (configuration) {
|
|
|
651
655
|
* @param {string} [hospitalName]
|
|
652
656
|
* @param {string} [hospitalSlug]
|
|
653
657
|
* @param {string} [name]
|
|
654
|
-
* @param {string} [languageCode]
|
|
655
658
|
* @param {boolean} [returnDefaultValue]
|
|
656
659
|
* @param {boolean} [confirmed]
|
|
660
|
+
* @param {string} [languageCode]
|
|
661
|
+
* @param {boolean} [showHidden]
|
|
657
662
|
* @param {number} [page]
|
|
658
663
|
* @param {number} [limit]
|
|
659
664
|
* @param {Date} [lastRetrieved]
|
|
660
665
|
* @param {*} [options] Override http request option.
|
|
661
666
|
* @throws {RequiredError}
|
|
662
667
|
*/
|
|
663
|
-
apiV1AboutusGet: function (hospitalId, hospitalName, hospitalSlug, name,
|
|
668
|
+
apiV1AboutusGet: function (hospitalId, hospitalName, hospitalSlug, name, returnDefaultValue, confirmed, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
664
669
|
return __awaiter(this, void 0, void 0, function () {
|
|
665
670
|
var localVarAxiosArgs;
|
|
666
671
|
return __generator(this, function (_a) {
|
|
667
672
|
switch (_a.label) {
|
|
668
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1AboutusGet(hospitalId, hospitalName, hospitalSlug, name,
|
|
673
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1AboutusGet(hospitalId, hospitalName, hospitalSlug, name, returnDefaultValue, confirmed, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
669
674
|
case 1:
|
|
670
675
|
localVarAxiosArgs = _a.sent();
|
|
671
676
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -793,17 +798,18 @@ exports.AboutUsApiFactory = function (configuration, basePath, axios) {
|
|
|
793
798
|
* @param {string} [hospitalName]
|
|
794
799
|
* @param {string} [hospitalSlug]
|
|
795
800
|
* @param {string} [name]
|
|
796
|
-
* @param {string} [languageCode]
|
|
797
801
|
* @param {boolean} [returnDefaultValue]
|
|
798
802
|
* @param {boolean} [confirmed]
|
|
803
|
+
* @param {string} [languageCode]
|
|
804
|
+
* @param {boolean} [showHidden]
|
|
799
805
|
* @param {number} [page]
|
|
800
806
|
* @param {number} [limit]
|
|
801
807
|
* @param {Date} [lastRetrieved]
|
|
802
808
|
* @param {*} [options] Override http request option.
|
|
803
809
|
* @throws {RequiredError}
|
|
804
810
|
*/
|
|
805
|
-
apiV1AboutusGet: function (hospitalId, hospitalName, hospitalSlug, name,
|
|
806
|
-
return localVarFp.apiV1AboutusGet(hospitalId, hospitalName, hospitalSlug, name,
|
|
811
|
+
apiV1AboutusGet: function (hospitalId, hospitalName, hospitalSlug, name, returnDefaultValue, confirmed, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
812
|
+
return localVarFp.apiV1AboutusGet(hospitalId, hospitalName, hospitalSlug, name, returnDefaultValue, confirmed, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
807
813
|
},
|
|
808
814
|
/**
|
|
809
815
|
*
|
|
@@ -879,9 +885,10 @@ var AboutUsApi = /** @class */ (function (_super) {
|
|
|
879
885
|
* @param {string} [hospitalName]
|
|
880
886
|
* @param {string} [hospitalSlug]
|
|
881
887
|
* @param {string} [name]
|
|
882
|
-
* @param {string} [languageCode]
|
|
883
888
|
* @param {boolean} [returnDefaultValue]
|
|
884
889
|
* @param {boolean} [confirmed]
|
|
890
|
+
* @param {string} [languageCode]
|
|
891
|
+
* @param {boolean} [showHidden]
|
|
885
892
|
* @param {number} [page]
|
|
886
893
|
* @param {number} [limit]
|
|
887
894
|
* @param {Date} [lastRetrieved]
|
|
@@ -889,9 +896,9 @@ var AboutUsApi = /** @class */ (function (_super) {
|
|
|
889
896
|
* @throws {RequiredError}
|
|
890
897
|
* @memberof AboutUsApi
|
|
891
898
|
*/
|
|
892
|
-
AboutUsApi.prototype.apiV1AboutusGet = function (hospitalId, hospitalName, hospitalSlug, name,
|
|
899
|
+
AboutUsApi.prototype.apiV1AboutusGet = function (hospitalId, hospitalName, hospitalSlug, name, returnDefaultValue, confirmed, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
893
900
|
var _this = this;
|
|
894
|
-
return exports.AboutUsApiFp(this.configuration).apiV1AboutusGet(hospitalId, hospitalName, hospitalSlug, name,
|
|
901
|
+
return exports.AboutUsApiFp(this.configuration).apiV1AboutusGet(hospitalId, hospitalName, hospitalSlug, name, returnDefaultValue, confirmed, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
895
902
|
};
|
|
896
903
|
/**
|
|
897
904
|
*
|
|
@@ -2619,14 +2626,13 @@ exports.ArticlesApiAxiosParamCreator = function (configuration) {
|
|
|
2619
2626
|
* @param {string} [contributorId]
|
|
2620
2627
|
* @param {string} [languageCode]
|
|
2621
2628
|
* @param {boolean} [showHidden]
|
|
2622
|
-
* @param {boolean} [returnDefaultValue]
|
|
2623
2629
|
* @param {number} [page]
|
|
2624
2630
|
* @param {number} [limit]
|
|
2625
2631
|
* @param {Date} [lastRetrieved]
|
|
2626
2632
|
* @param {*} [options] Override http request option.
|
|
2627
2633
|
* @throws {RequiredError}
|
|
2628
2634
|
*/
|
|
2629
|
-
apiV1ArticlesGet: function (id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden,
|
|
2635
|
+
apiV1ArticlesGet: function (id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
2630
2636
|
if (options === void 0) { options = {}; }
|
|
2631
2637
|
return __awaiter(_this, void 0, void 0, function () {
|
|
2632
2638
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -2696,9 +2702,6 @@ exports.ArticlesApiAxiosParamCreator = function (configuration) {
|
|
|
2696
2702
|
if (showHidden !== undefined) {
|
|
2697
2703
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
2698
2704
|
}
|
|
2699
|
-
if (returnDefaultValue !== undefined) {
|
|
2700
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
2701
|
-
}
|
|
2702
2705
|
if (page !== undefined) {
|
|
2703
2706
|
localVarQueryParameter['page'] = page;
|
|
2704
2707
|
}
|
|
@@ -3327,19 +3330,18 @@ exports.ArticlesApiFp = function (configuration) {
|
|
|
3327
3330
|
* @param {string} [contributorId]
|
|
3328
3331
|
* @param {string} [languageCode]
|
|
3329
3332
|
* @param {boolean} [showHidden]
|
|
3330
|
-
* @param {boolean} [returnDefaultValue]
|
|
3331
3333
|
* @param {number} [page]
|
|
3332
3334
|
* @param {number} [limit]
|
|
3333
3335
|
* @param {Date} [lastRetrieved]
|
|
3334
3336
|
* @param {*} [options] Override http request option.
|
|
3335
3337
|
* @throws {RequiredError}
|
|
3336
3338
|
*/
|
|
3337
|
-
apiV1ArticlesGet: function (id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden,
|
|
3339
|
+
apiV1ArticlesGet: function (id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
3338
3340
|
return __awaiter(this, void 0, void 0, function () {
|
|
3339
3341
|
var localVarAxiosArgs;
|
|
3340
3342
|
return __generator(this, function (_a) {
|
|
3341
3343
|
switch (_a.label) {
|
|
3342
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ArticlesGet(id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden,
|
|
3344
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ArticlesGet(id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
3343
3345
|
case 1:
|
|
3344
3346
|
localVarAxiosArgs = _a.sent();
|
|
3345
3347
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -3682,15 +3684,14 @@ exports.ArticlesApiFactory = function (configuration, basePath, axios) {
|
|
|
3682
3684
|
* @param {string} [contributorId]
|
|
3683
3685
|
* @param {string} [languageCode]
|
|
3684
3686
|
* @param {boolean} [showHidden]
|
|
3685
|
-
* @param {boolean} [returnDefaultValue]
|
|
3686
3687
|
* @param {number} [page]
|
|
3687
3688
|
* @param {number} [limit]
|
|
3688
3689
|
* @param {Date} [lastRetrieved]
|
|
3689
3690
|
* @param {*} [options] Override http request option.
|
|
3690
3691
|
* @throws {RequiredError}
|
|
3691
3692
|
*/
|
|
3692
|
-
apiV1ArticlesGet: function (id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden,
|
|
3693
|
-
return localVarFp.apiV1ArticlesGet(id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden,
|
|
3693
|
+
apiV1ArticlesGet: function (id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
3694
|
+
return localVarFp.apiV1ArticlesGet(id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
3694
3695
|
},
|
|
3695
3696
|
/**
|
|
3696
3697
|
*
|
|
@@ -4055,7 +4056,6 @@ var ArticlesApi = /** @class */ (function (_super) {
|
|
|
4055
4056
|
* @param {string} [contributorId]
|
|
4056
4057
|
* @param {string} [languageCode]
|
|
4057
4058
|
* @param {boolean} [showHidden]
|
|
4058
|
-
* @param {boolean} [returnDefaultValue]
|
|
4059
4059
|
* @param {number} [page]
|
|
4060
4060
|
* @param {number} [limit]
|
|
4061
4061
|
* @param {Date} [lastRetrieved]
|
|
@@ -4063,9 +4063,9 @@ var ArticlesApi = /** @class */ (function (_super) {
|
|
|
4063
4063
|
* @throws {RequiredError}
|
|
4064
4064
|
* @memberof ArticlesApi
|
|
4065
4065
|
*/
|
|
4066
|
-
ArticlesApi.prototype.apiV1ArticlesGet = function (id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden,
|
|
4066
|
+
ArticlesApi.prototype.apiV1ArticlesGet = function (id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
4067
4067
|
var _this = this;
|
|
4068
|
-
return exports.ArticlesApiFp(this.configuration).apiV1ArticlesGet(id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden,
|
|
4068
|
+
return exports.ArticlesApiFp(this.configuration).apiV1ArticlesGet(id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
4069
4069
|
};
|
|
4070
4070
|
/**
|
|
4071
4071
|
*
|
|
@@ -4239,10 +4239,11 @@ exports.BookingsApiAxiosParamCreator = function (configuration) {
|
|
|
4239
4239
|
*
|
|
4240
4240
|
* @summary Get booking.
|
|
4241
4241
|
* @param {string} bookingId
|
|
4242
|
+
* @param {string} [languageCode]
|
|
4242
4243
|
* @param {*} [options] Override http request option.
|
|
4243
4244
|
* @throws {RequiredError}
|
|
4244
4245
|
*/
|
|
4245
|
-
apiV1BookingsBookingIdGet: function (bookingId, options) {
|
|
4246
|
+
apiV1BookingsBookingIdGet: function (bookingId, languageCode, options) {
|
|
4246
4247
|
if (options === void 0) { options = {}; }
|
|
4247
4248
|
return __awaiter(_this, void 0, void 0, function () {
|
|
4248
4249
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -4267,6 +4268,9 @@ exports.BookingsApiAxiosParamCreator = function (configuration) {
|
|
|
4267
4268
|
// authentication oauth2 required
|
|
4268
4269
|
// oauth required
|
|
4269
4270
|
_a.sent();
|
|
4271
|
+
if (languageCode !== undefined) {
|
|
4272
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
4273
|
+
}
|
|
4270
4274
|
common_1.setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4271
4275
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4272
4276
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -4370,7 +4374,12 @@ exports.BookingsApiAxiosParamCreator = function (configuration) {
|
|
|
4370
4374
|
/**
|
|
4371
4375
|
*
|
|
4372
4376
|
* @summary Get all bookings.
|
|
4373
|
-
* @param {string} [
|
|
4377
|
+
* @param {string} [userId]
|
|
4378
|
+
* @param {string} [userName]
|
|
4379
|
+
* @param {string} [hospitalId]
|
|
4380
|
+
* @param {string} [hospitalName]
|
|
4381
|
+
* @param {string} [dealId]
|
|
4382
|
+
* @param {string} [dealName]
|
|
4374
4383
|
* @param {boolean} [isOpen]
|
|
4375
4384
|
* @param {boolean} [isCompleted]
|
|
4376
4385
|
* @param {BookingStatus} [status]
|
|
@@ -4379,13 +4388,15 @@ exports.BookingsApiAxiosParamCreator = function (configuration) {
|
|
|
4379
4388
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
4380
4389
|
* @param {boolean} [isExternal]
|
|
4381
4390
|
* @param {boolean} [paymentEnabled]
|
|
4391
|
+
* @param {string} [languageCode]
|
|
4392
|
+
* @param {boolean} [showHidden]
|
|
4382
4393
|
* @param {number} [page]
|
|
4383
4394
|
* @param {number} [limit]
|
|
4384
4395
|
* @param {Date} [lastRetrieved]
|
|
4385
4396
|
* @param {*} [options] Override http request option.
|
|
4386
4397
|
* @throws {RequiredError}
|
|
4387
4398
|
*/
|
|
4388
|
-
apiV1BookingsGet: function (
|
|
4399
|
+
apiV1BookingsGet: function (userId, userName, hospitalId, hospitalName, dealId, dealName, isOpen, isCompleted, status, dealPackageId, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
4389
4400
|
if (options === void 0) { options = {}; }
|
|
4390
4401
|
return __awaiter(_this, void 0, void 0, function () {
|
|
4391
4402
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -4407,8 +4418,23 @@ exports.BookingsApiAxiosParamCreator = function (configuration) {
|
|
|
4407
4418
|
// authentication oauth2 required
|
|
4408
4419
|
// oauth required
|
|
4409
4420
|
_a.sent();
|
|
4410
|
-
if (
|
|
4411
|
-
localVarQueryParameter['
|
|
4421
|
+
if (userId !== undefined) {
|
|
4422
|
+
localVarQueryParameter['UserId'] = userId;
|
|
4423
|
+
}
|
|
4424
|
+
if (userName !== undefined) {
|
|
4425
|
+
localVarQueryParameter['UserName'] = userName;
|
|
4426
|
+
}
|
|
4427
|
+
if (hospitalId !== undefined) {
|
|
4428
|
+
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
4429
|
+
}
|
|
4430
|
+
if (hospitalName !== undefined) {
|
|
4431
|
+
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
4432
|
+
}
|
|
4433
|
+
if (dealId !== undefined) {
|
|
4434
|
+
localVarQueryParameter['DealId'] = dealId;
|
|
4435
|
+
}
|
|
4436
|
+
if (dealName !== undefined) {
|
|
4437
|
+
localVarQueryParameter['DealName'] = dealName;
|
|
4412
4438
|
}
|
|
4413
4439
|
if (isOpen !== undefined) {
|
|
4414
4440
|
localVarQueryParameter['IsOpen'] = isOpen;
|
|
@@ -4434,6 +4460,12 @@ exports.BookingsApiAxiosParamCreator = function (configuration) {
|
|
|
4434
4460
|
if (paymentEnabled !== undefined) {
|
|
4435
4461
|
localVarQueryParameter['PaymentEnabled'] = paymentEnabled;
|
|
4436
4462
|
}
|
|
4463
|
+
if (languageCode !== undefined) {
|
|
4464
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
4465
|
+
}
|
|
4466
|
+
if (showHidden !== undefined) {
|
|
4467
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
4468
|
+
}
|
|
4437
4469
|
if (page !== undefined) {
|
|
4438
4470
|
localVarQueryParameter['page'] = page;
|
|
4439
4471
|
}
|
|
@@ -4530,15 +4562,16 @@ exports.BookingsApiFp = function (configuration) {
|
|
|
4530
4562
|
*
|
|
4531
4563
|
* @summary Get booking.
|
|
4532
4564
|
* @param {string} bookingId
|
|
4565
|
+
* @param {string} [languageCode]
|
|
4533
4566
|
* @param {*} [options] Override http request option.
|
|
4534
4567
|
* @throws {RequiredError}
|
|
4535
4568
|
*/
|
|
4536
|
-
apiV1BookingsBookingIdGet: function (bookingId, options) {
|
|
4569
|
+
apiV1BookingsBookingIdGet: function (bookingId, languageCode, options) {
|
|
4537
4570
|
return __awaiter(this, void 0, void 0, function () {
|
|
4538
4571
|
var localVarAxiosArgs;
|
|
4539
4572
|
return __generator(this, function (_a) {
|
|
4540
4573
|
switch (_a.label) {
|
|
4541
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1BookingsBookingIdGet(bookingId, options)];
|
|
4574
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1BookingsBookingIdGet(bookingId, languageCode, options)];
|
|
4542
4575
|
case 1:
|
|
4543
4576
|
localVarAxiosArgs = _a.sent();
|
|
4544
4577
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -4590,7 +4623,12 @@ exports.BookingsApiFp = function (configuration) {
|
|
|
4590
4623
|
/**
|
|
4591
4624
|
*
|
|
4592
4625
|
* @summary Get all bookings.
|
|
4593
|
-
* @param {string} [
|
|
4626
|
+
* @param {string} [userId]
|
|
4627
|
+
* @param {string} [userName]
|
|
4628
|
+
* @param {string} [hospitalId]
|
|
4629
|
+
* @param {string} [hospitalName]
|
|
4630
|
+
* @param {string} [dealId]
|
|
4631
|
+
* @param {string} [dealName]
|
|
4594
4632
|
* @param {boolean} [isOpen]
|
|
4595
4633
|
* @param {boolean} [isCompleted]
|
|
4596
4634
|
* @param {BookingStatus} [status]
|
|
@@ -4599,18 +4637,20 @@ exports.BookingsApiFp = function (configuration) {
|
|
|
4599
4637
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
4600
4638
|
* @param {boolean} [isExternal]
|
|
4601
4639
|
* @param {boolean} [paymentEnabled]
|
|
4640
|
+
* @param {string} [languageCode]
|
|
4641
|
+
* @param {boolean} [showHidden]
|
|
4602
4642
|
* @param {number} [page]
|
|
4603
4643
|
* @param {number} [limit]
|
|
4604
4644
|
* @param {Date} [lastRetrieved]
|
|
4605
4645
|
* @param {*} [options] Override http request option.
|
|
4606
4646
|
* @throws {RequiredError}
|
|
4607
4647
|
*/
|
|
4608
|
-
apiV1BookingsGet: function (
|
|
4648
|
+
apiV1BookingsGet: function (userId, userName, hospitalId, hospitalName, dealId, dealName, isOpen, isCompleted, status, dealPackageId, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
4609
4649
|
return __awaiter(this, void 0, void 0, function () {
|
|
4610
4650
|
var localVarAxiosArgs;
|
|
4611
4651
|
return __generator(this, function (_a) {
|
|
4612
4652
|
switch (_a.label) {
|
|
4613
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1BookingsGet(
|
|
4653
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1BookingsGet(userId, userName, hospitalId, hospitalName, dealId, dealName, isOpen, isCompleted, status, dealPackageId, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
4614
4654
|
case 1:
|
|
4615
4655
|
localVarAxiosArgs = _a.sent();
|
|
4616
4656
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -4662,11 +4702,12 @@ exports.BookingsApiFactory = function (configuration, basePath, axios) {
|
|
|
4662
4702
|
*
|
|
4663
4703
|
* @summary Get booking.
|
|
4664
4704
|
* @param {string} bookingId
|
|
4705
|
+
* @param {string} [languageCode]
|
|
4665
4706
|
* @param {*} [options] Override http request option.
|
|
4666
4707
|
* @throws {RequiredError}
|
|
4667
4708
|
*/
|
|
4668
|
-
apiV1BookingsBookingIdGet: function (bookingId, options) {
|
|
4669
|
-
return localVarFp.apiV1BookingsBookingIdGet(bookingId, options).then(function (request) { return request(axios, basePath); });
|
|
4709
|
+
apiV1BookingsBookingIdGet: function (bookingId, languageCode, options) {
|
|
4710
|
+
return localVarFp.apiV1BookingsBookingIdGet(bookingId, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
4670
4711
|
},
|
|
4671
4712
|
/**
|
|
4672
4713
|
*
|
|
@@ -4692,7 +4733,12 @@ exports.BookingsApiFactory = function (configuration, basePath, axios) {
|
|
|
4692
4733
|
/**
|
|
4693
4734
|
*
|
|
4694
4735
|
* @summary Get all bookings.
|
|
4695
|
-
* @param {string} [
|
|
4736
|
+
* @param {string} [userId]
|
|
4737
|
+
* @param {string} [userName]
|
|
4738
|
+
* @param {string} [hospitalId]
|
|
4739
|
+
* @param {string} [hospitalName]
|
|
4740
|
+
* @param {string} [dealId]
|
|
4741
|
+
* @param {string} [dealName]
|
|
4696
4742
|
* @param {boolean} [isOpen]
|
|
4697
4743
|
* @param {boolean} [isCompleted]
|
|
4698
4744
|
* @param {BookingStatus} [status]
|
|
@@ -4701,14 +4747,16 @@ exports.BookingsApiFactory = function (configuration, basePath, axios) {
|
|
|
4701
4747
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
4702
4748
|
* @param {boolean} [isExternal]
|
|
4703
4749
|
* @param {boolean} [paymentEnabled]
|
|
4750
|
+
* @param {string} [languageCode]
|
|
4751
|
+
* @param {boolean} [showHidden]
|
|
4704
4752
|
* @param {number} [page]
|
|
4705
4753
|
* @param {number} [limit]
|
|
4706
4754
|
* @param {Date} [lastRetrieved]
|
|
4707
4755
|
* @param {*} [options] Override http request option.
|
|
4708
4756
|
* @throws {RequiredError}
|
|
4709
4757
|
*/
|
|
4710
|
-
apiV1BookingsGet: function (
|
|
4711
|
-
return localVarFp.apiV1BookingsGet(
|
|
4758
|
+
apiV1BookingsGet: function (userId, userName, hospitalId, hospitalName, dealId, dealName, isOpen, isCompleted, status, dealPackageId, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
4759
|
+
return localVarFp.apiV1BookingsGet(userId, userName, hospitalId, hospitalName, dealId, dealName, isOpen, isCompleted, status, dealPackageId, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
4712
4760
|
},
|
|
4713
4761
|
};
|
|
4714
4762
|
};
|
|
@@ -4764,13 +4812,14 @@ var BookingsApi = /** @class */ (function (_super) {
|
|
|
4764
4812
|
*
|
|
4765
4813
|
* @summary Get booking.
|
|
4766
4814
|
* @param {string} bookingId
|
|
4815
|
+
* @param {string} [languageCode]
|
|
4767
4816
|
* @param {*} [options] Override http request option.
|
|
4768
4817
|
* @throws {RequiredError}
|
|
4769
4818
|
* @memberof BookingsApi
|
|
4770
4819
|
*/
|
|
4771
|
-
BookingsApi.prototype.apiV1BookingsBookingIdGet = function (bookingId, options) {
|
|
4820
|
+
BookingsApi.prototype.apiV1BookingsBookingIdGet = function (bookingId, languageCode, options) {
|
|
4772
4821
|
var _this = this;
|
|
4773
|
-
return exports.BookingsApiFp(this.configuration).apiV1BookingsBookingIdGet(bookingId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
4822
|
+
return exports.BookingsApiFp(this.configuration).apiV1BookingsBookingIdGet(bookingId, languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
4774
4823
|
};
|
|
4775
4824
|
/**
|
|
4776
4825
|
*
|
|
@@ -4800,7 +4849,12 @@ var BookingsApi = /** @class */ (function (_super) {
|
|
|
4800
4849
|
/**
|
|
4801
4850
|
*
|
|
4802
4851
|
* @summary Get all bookings.
|
|
4803
|
-
* @param {string} [
|
|
4852
|
+
* @param {string} [userId]
|
|
4853
|
+
* @param {string} [userName]
|
|
4854
|
+
* @param {string} [hospitalId]
|
|
4855
|
+
* @param {string} [hospitalName]
|
|
4856
|
+
* @param {string} [dealId]
|
|
4857
|
+
* @param {string} [dealName]
|
|
4804
4858
|
* @param {boolean} [isOpen]
|
|
4805
4859
|
* @param {boolean} [isCompleted]
|
|
4806
4860
|
* @param {BookingStatus} [status]
|
|
@@ -4809,6 +4863,8 @@ var BookingsApi = /** @class */ (function (_super) {
|
|
|
4809
4863
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
4810
4864
|
* @param {boolean} [isExternal]
|
|
4811
4865
|
* @param {boolean} [paymentEnabled]
|
|
4866
|
+
* @param {string} [languageCode]
|
|
4867
|
+
* @param {boolean} [showHidden]
|
|
4812
4868
|
* @param {number} [page]
|
|
4813
4869
|
* @param {number} [limit]
|
|
4814
4870
|
* @param {Date} [lastRetrieved]
|
|
@@ -4816,9 +4872,9 @@ var BookingsApi = /** @class */ (function (_super) {
|
|
|
4816
4872
|
* @throws {RequiredError}
|
|
4817
4873
|
* @memberof BookingsApi
|
|
4818
4874
|
*/
|
|
4819
|
-
BookingsApi.prototype.apiV1BookingsGet = function (
|
|
4875
|
+
BookingsApi.prototype.apiV1BookingsGet = function (userId, userName, hospitalId, hospitalName, dealId, dealName, isOpen, isCompleted, status, dealPackageId, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
4820
4876
|
var _this = this;
|
|
4821
|
-
return exports.BookingsApiFp(this.configuration).apiV1BookingsGet(
|
|
4877
|
+
return exports.BookingsApiFp(this.configuration).apiV1BookingsGet(userId, userName, hospitalId, hospitalName, dealId, dealName, isOpen, isCompleted, status, dealPackageId, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
4822
4878
|
};
|
|
4823
4879
|
return BookingsApi;
|
|
4824
4880
|
}(base_1.BaseAPI));
|
|
@@ -6894,10 +6950,11 @@ exports.ConsultationsApiAxiosParamCreator = function (configuration) {
|
|
|
6894
6950
|
*
|
|
6895
6951
|
* @summary Get consultation.
|
|
6896
6952
|
* @param {string} consultationId
|
|
6953
|
+
* @param {string} [languageCode]
|
|
6897
6954
|
* @param {*} [options] Override http request option.
|
|
6898
6955
|
* @throws {RequiredError}
|
|
6899
6956
|
*/
|
|
6900
|
-
apiV1ConsultationsConsultationIdGet: function (consultationId, options) {
|
|
6957
|
+
apiV1ConsultationsConsultationIdGet: function (consultationId, languageCode, options) {
|
|
6901
6958
|
if (options === void 0) { options = {}; }
|
|
6902
6959
|
return __awaiter(_this, void 0, void 0, function () {
|
|
6903
6960
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -6922,6 +6979,9 @@ exports.ConsultationsApiAxiosParamCreator = function (configuration) {
|
|
|
6922
6979
|
// authentication oauth2 required
|
|
6923
6980
|
// oauth required
|
|
6924
6981
|
_a.sent();
|
|
6982
|
+
if (languageCode !== undefined) {
|
|
6983
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
6984
|
+
}
|
|
6925
6985
|
common_1.setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6926
6986
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6927
6987
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -7025,7 +7085,14 @@ exports.ConsultationsApiAxiosParamCreator = function (configuration) {
|
|
|
7025
7085
|
/**
|
|
7026
7086
|
*
|
|
7027
7087
|
* @summary Get all consultations.
|
|
7028
|
-
* @param {string} [
|
|
7088
|
+
* @param {string} [userId]
|
|
7089
|
+
* @param {string} [userName]
|
|
7090
|
+
* @param {string} [hospitalId]
|
|
7091
|
+
* @param {string} [hospitalName]
|
|
7092
|
+
* @param {string} [doctorId]
|
|
7093
|
+
* @param {string} [doctorName]
|
|
7094
|
+
* @param {string} [dealId]
|
|
7095
|
+
* @param {string} [dealName]
|
|
7029
7096
|
* @param {boolean} [isOpen]
|
|
7030
7097
|
* @param {boolean} [isCompleted]
|
|
7031
7098
|
* @param {ConsultationStatus} [status]
|
|
@@ -7034,13 +7101,15 @@ exports.ConsultationsApiAxiosParamCreator = function (configuration) {
|
|
|
7034
7101
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
7035
7102
|
* @param {boolean} [isExternal]
|
|
7036
7103
|
* @param {boolean} [paymentEnabled]
|
|
7104
|
+
* @param {string} [languageCode]
|
|
7105
|
+
* @param {boolean} [showHidden]
|
|
7037
7106
|
* @param {number} [page]
|
|
7038
7107
|
* @param {number} [limit]
|
|
7039
7108
|
* @param {Date} [lastRetrieved]
|
|
7040
7109
|
* @param {*} [options] Override http request option.
|
|
7041
7110
|
* @throws {RequiredError}
|
|
7042
7111
|
*/
|
|
7043
|
-
apiV1ConsultationsGet: function (
|
|
7112
|
+
apiV1ConsultationsGet: function (userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, isOpen, isCompleted, status, consultationType, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
7044
7113
|
if (options === void 0) { options = {}; }
|
|
7045
7114
|
return __awaiter(_this, void 0, void 0, function () {
|
|
7046
7115
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -7062,8 +7131,29 @@ exports.ConsultationsApiAxiosParamCreator = function (configuration) {
|
|
|
7062
7131
|
// authentication oauth2 required
|
|
7063
7132
|
// oauth required
|
|
7064
7133
|
_a.sent();
|
|
7065
|
-
if (
|
|
7066
|
-
localVarQueryParameter['
|
|
7134
|
+
if (userId !== undefined) {
|
|
7135
|
+
localVarQueryParameter['UserId'] = userId;
|
|
7136
|
+
}
|
|
7137
|
+
if (userName !== undefined) {
|
|
7138
|
+
localVarQueryParameter['UserName'] = userName;
|
|
7139
|
+
}
|
|
7140
|
+
if (hospitalId !== undefined) {
|
|
7141
|
+
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
7142
|
+
}
|
|
7143
|
+
if (hospitalName !== undefined) {
|
|
7144
|
+
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
7145
|
+
}
|
|
7146
|
+
if (doctorId !== undefined) {
|
|
7147
|
+
localVarQueryParameter['DoctorId'] = doctorId;
|
|
7148
|
+
}
|
|
7149
|
+
if (doctorName !== undefined) {
|
|
7150
|
+
localVarQueryParameter['DoctorName'] = doctorName;
|
|
7151
|
+
}
|
|
7152
|
+
if (dealId !== undefined) {
|
|
7153
|
+
localVarQueryParameter['DealId'] = dealId;
|
|
7154
|
+
}
|
|
7155
|
+
if (dealName !== undefined) {
|
|
7156
|
+
localVarQueryParameter['DealName'] = dealName;
|
|
7067
7157
|
}
|
|
7068
7158
|
if (isOpen !== undefined) {
|
|
7069
7159
|
localVarQueryParameter['IsOpen'] = isOpen;
|
|
@@ -7089,6 +7179,12 @@ exports.ConsultationsApiAxiosParamCreator = function (configuration) {
|
|
|
7089
7179
|
if (paymentEnabled !== undefined) {
|
|
7090
7180
|
localVarQueryParameter['PaymentEnabled'] = paymentEnabled;
|
|
7091
7181
|
}
|
|
7182
|
+
if (languageCode !== undefined) {
|
|
7183
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
7184
|
+
}
|
|
7185
|
+
if (showHidden !== undefined) {
|
|
7186
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
7187
|
+
}
|
|
7092
7188
|
if (page !== undefined) {
|
|
7093
7189
|
localVarQueryParameter['page'] = page;
|
|
7094
7190
|
}
|
|
@@ -7185,15 +7281,16 @@ exports.ConsultationsApiFp = function (configuration) {
|
|
|
7185
7281
|
*
|
|
7186
7282
|
* @summary Get consultation.
|
|
7187
7283
|
* @param {string} consultationId
|
|
7284
|
+
* @param {string} [languageCode]
|
|
7188
7285
|
* @param {*} [options] Override http request option.
|
|
7189
7286
|
* @throws {RequiredError}
|
|
7190
7287
|
*/
|
|
7191
|
-
apiV1ConsultationsConsultationIdGet: function (consultationId, options) {
|
|
7288
|
+
apiV1ConsultationsConsultationIdGet: function (consultationId, languageCode, options) {
|
|
7192
7289
|
return __awaiter(this, void 0, void 0, function () {
|
|
7193
7290
|
var localVarAxiosArgs;
|
|
7194
7291
|
return __generator(this, function (_a) {
|
|
7195
7292
|
switch (_a.label) {
|
|
7196
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ConsultationsConsultationIdGet(consultationId, options)];
|
|
7293
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ConsultationsConsultationIdGet(consultationId, languageCode, options)];
|
|
7197
7294
|
case 1:
|
|
7198
7295
|
localVarAxiosArgs = _a.sent();
|
|
7199
7296
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -7245,7 +7342,14 @@ exports.ConsultationsApiFp = function (configuration) {
|
|
|
7245
7342
|
/**
|
|
7246
7343
|
*
|
|
7247
7344
|
* @summary Get all consultations.
|
|
7248
|
-
* @param {string} [
|
|
7345
|
+
* @param {string} [userId]
|
|
7346
|
+
* @param {string} [userName]
|
|
7347
|
+
* @param {string} [hospitalId]
|
|
7348
|
+
* @param {string} [hospitalName]
|
|
7349
|
+
* @param {string} [doctorId]
|
|
7350
|
+
* @param {string} [doctorName]
|
|
7351
|
+
* @param {string} [dealId]
|
|
7352
|
+
* @param {string} [dealName]
|
|
7249
7353
|
* @param {boolean} [isOpen]
|
|
7250
7354
|
* @param {boolean} [isCompleted]
|
|
7251
7355
|
* @param {ConsultationStatus} [status]
|
|
@@ -7254,18 +7358,20 @@ exports.ConsultationsApiFp = function (configuration) {
|
|
|
7254
7358
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
7255
7359
|
* @param {boolean} [isExternal]
|
|
7256
7360
|
* @param {boolean} [paymentEnabled]
|
|
7361
|
+
* @param {string} [languageCode]
|
|
7362
|
+
* @param {boolean} [showHidden]
|
|
7257
7363
|
* @param {number} [page]
|
|
7258
7364
|
* @param {number} [limit]
|
|
7259
7365
|
* @param {Date} [lastRetrieved]
|
|
7260
7366
|
* @param {*} [options] Override http request option.
|
|
7261
7367
|
* @throws {RequiredError}
|
|
7262
7368
|
*/
|
|
7263
|
-
apiV1ConsultationsGet: function (
|
|
7369
|
+
apiV1ConsultationsGet: function (userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, isOpen, isCompleted, status, consultationType, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
7264
7370
|
return __awaiter(this, void 0, void 0, function () {
|
|
7265
7371
|
var localVarAxiosArgs;
|
|
7266
7372
|
return __generator(this, function (_a) {
|
|
7267
7373
|
switch (_a.label) {
|
|
7268
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ConsultationsGet(
|
|
7374
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ConsultationsGet(userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, isOpen, isCompleted, status, consultationType, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
7269
7375
|
case 1:
|
|
7270
7376
|
localVarAxiosArgs = _a.sent();
|
|
7271
7377
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -7317,11 +7423,12 @@ exports.ConsultationsApiFactory = function (configuration, basePath, axios) {
|
|
|
7317
7423
|
*
|
|
7318
7424
|
* @summary Get consultation.
|
|
7319
7425
|
* @param {string} consultationId
|
|
7426
|
+
* @param {string} [languageCode]
|
|
7320
7427
|
* @param {*} [options] Override http request option.
|
|
7321
7428
|
* @throws {RequiredError}
|
|
7322
7429
|
*/
|
|
7323
|
-
apiV1ConsultationsConsultationIdGet: function (consultationId, options) {
|
|
7324
|
-
return localVarFp.apiV1ConsultationsConsultationIdGet(consultationId, options).then(function (request) { return request(axios, basePath); });
|
|
7430
|
+
apiV1ConsultationsConsultationIdGet: function (consultationId, languageCode, options) {
|
|
7431
|
+
return localVarFp.apiV1ConsultationsConsultationIdGet(consultationId, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
7325
7432
|
},
|
|
7326
7433
|
/**
|
|
7327
7434
|
*
|
|
@@ -7347,7 +7454,14 @@ exports.ConsultationsApiFactory = function (configuration, basePath, axios) {
|
|
|
7347
7454
|
/**
|
|
7348
7455
|
*
|
|
7349
7456
|
* @summary Get all consultations.
|
|
7350
|
-
* @param {string} [
|
|
7457
|
+
* @param {string} [userId]
|
|
7458
|
+
* @param {string} [userName]
|
|
7459
|
+
* @param {string} [hospitalId]
|
|
7460
|
+
* @param {string} [hospitalName]
|
|
7461
|
+
* @param {string} [doctorId]
|
|
7462
|
+
* @param {string} [doctorName]
|
|
7463
|
+
* @param {string} [dealId]
|
|
7464
|
+
* @param {string} [dealName]
|
|
7351
7465
|
* @param {boolean} [isOpen]
|
|
7352
7466
|
* @param {boolean} [isCompleted]
|
|
7353
7467
|
* @param {ConsultationStatus} [status]
|
|
@@ -7356,14 +7470,16 @@ exports.ConsultationsApiFactory = function (configuration, basePath, axios) {
|
|
|
7356
7470
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
7357
7471
|
* @param {boolean} [isExternal]
|
|
7358
7472
|
* @param {boolean} [paymentEnabled]
|
|
7473
|
+
* @param {string} [languageCode]
|
|
7474
|
+
* @param {boolean} [showHidden]
|
|
7359
7475
|
* @param {number} [page]
|
|
7360
7476
|
* @param {number} [limit]
|
|
7361
7477
|
* @param {Date} [lastRetrieved]
|
|
7362
7478
|
* @param {*} [options] Override http request option.
|
|
7363
7479
|
* @throws {RequiredError}
|
|
7364
7480
|
*/
|
|
7365
|
-
apiV1ConsultationsGet: function (
|
|
7366
|
-
return localVarFp.apiV1ConsultationsGet(
|
|
7481
|
+
apiV1ConsultationsGet: function (userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, isOpen, isCompleted, status, consultationType, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
7482
|
+
return localVarFp.apiV1ConsultationsGet(userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, isOpen, isCompleted, status, consultationType, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
7367
7483
|
},
|
|
7368
7484
|
};
|
|
7369
7485
|
};
|
|
@@ -7419,13 +7535,14 @@ var ConsultationsApi = /** @class */ (function (_super) {
|
|
|
7419
7535
|
*
|
|
7420
7536
|
* @summary Get consultation.
|
|
7421
7537
|
* @param {string} consultationId
|
|
7538
|
+
* @param {string} [languageCode]
|
|
7422
7539
|
* @param {*} [options] Override http request option.
|
|
7423
7540
|
* @throws {RequiredError}
|
|
7424
7541
|
* @memberof ConsultationsApi
|
|
7425
7542
|
*/
|
|
7426
|
-
ConsultationsApi.prototype.apiV1ConsultationsConsultationIdGet = function (consultationId, options) {
|
|
7543
|
+
ConsultationsApi.prototype.apiV1ConsultationsConsultationIdGet = function (consultationId, languageCode, options) {
|
|
7427
7544
|
var _this = this;
|
|
7428
|
-
return exports.ConsultationsApiFp(this.configuration).apiV1ConsultationsConsultationIdGet(consultationId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7545
|
+
return exports.ConsultationsApiFp(this.configuration).apiV1ConsultationsConsultationIdGet(consultationId, languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7429
7546
|
};
|
|
7430
7547
|
/**
|
|
7431
7548
|
*
|
|
@@ -7455,7 +7572,14 @@ var ConsultationsApi = /** @class */ (function (_super) {
|
|
|
7455
7572
|
/**
|
|
7456
7573
|
*
|
|
7457
7574
|
* @summary Get all consultations.
|
|
7458
|
-
* @param {string} [
|
|
7575
|
+
* @param {string} [userId]
|
|
7576
|
+
* @param {string} [userName]
|
|
7577
|
+
* @param {string} [hospitalId]
|
|
7578
|
+
* @param {string} [hospitalName]
|
|
7579
|
+
* @param {string} [doctorId]
|
|
7580
|
+
* @param {string} [doctorName]
|
|
7581
|
+
* @param {string} [dealId]
|
|
7582
|
+
* @param {string} [dealName]
|
|
7459
7583
|
* @param {boolean} [isOpen]
|
|
7460
7584
|
* @param {boolean} [isCompleted]
|
|
7461
7585
|
* @param {ConsultationStatus} [status]
|
|
@@ -7464,6 +7588,8 @@ var ConsultationsApi = /** @class */ (function (_super) {
|
|
|
7464
7588
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
7465
7589
|
* @param {boolean} [isExternal]
|
|
7466
7590
|
* @param {boolean} [paymentEnabled]
|
|
7591
|
+
* @param {string} [languageCode]
|
|
7592
|
+
* @param {boolean} [showHidden]
|
|
7467
7593
|
* @param {number} [page]
|
|
7468
7594
|
* @param {number} [limit]
|
|
7469
7595
|
* @param {Date} [lastRetrieved]
|
|
@@ -7471,9 +7597,9 @@ var ConsultationsApi = /** @class */ (function (_super) {
|
|
|
7471
7597
|
* @throws {RequiredError}
|
|
7472
7598
|
* @memberof ConsultationsApi
|
|
7473
7599
|
*/
|
|
7474
|
-
ConsultationsApi.prototype.apiV1ConsultationsGet = function (
|
|
7600
|
+
ConsultationsApi.prototype.apiV1ConsultationsGet = function (userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, isOpen, isCompleted, status, consultationType, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
7475
7601
|
var _this = this;
|
|
7476
|
-
return exports.ConsultationsApiFp(this.configuration).apiV1ConsultationsGet(
|
|
7602
|
+
return exports.ConsultationsApiFp(this.configuration).apiV1ConsultationsGet(userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, isOpen, isCompleted, status, consultationType, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7477
7603
|
};
|
|
7478
7604
|
return ConsultationsApi;
|
|
7479
7605
|
}(base_1.BaseAPI));
|
|
@@ -9104,14 +9230,13 @@ exports.CountriesApiAxiosParamCreator = function (configuration) {
|
|
|
9104
9230
|
* @param {Date} [createdDate]
|
|
9105
9231
|
* @param {string} [languageCode]
|
|
9106
9232
|
* @param {boolean} [showHidden]
|
|
9107
|
-
* @param {boolean} [returnDefaultValue]
|
|
9108
9233
|
* @param {number} [page]
|
|
9109
9234
|
* @param {number} [limit]
|
|
9110
9235
|
* @param {Date} [lastRetrieved]
|
|
9111
9236
|
* @param {*} [options] Override http request option.
|
|
9112
9237
|
* @throws {RequiredError}
|
|
9113
9238
|
*/
|
|
9114
|
-
apiV1CountriesGet: function (id, name, description, createdDate, languageCode, showHidden,
|
|
9239
|
+
apiV1CountriesGet: function (id, name, description, createdDate, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
9115
9240
|
if (options === void 0) { options = {}; }
|
|
9116
9241
|
return __awaiter(_this, void 0, void 0, function () {
|
|
9117
9242
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -9153,9 +9278,6 @@ exports.CountriesApiAxiosParamCreator = function (configuration) {
|
|
|
9153
9278
|
if (showHidden !== undefined) {
|
|
9154
9279
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
9155
9280
|
}
|
|
9156
|
-
if (returnDefaultValue !== undefined) {
|
|
9157
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
9158
|
-
}
|
|
9159
9281
|
if (page !== undefined) {
|
|
9160
9282
|
localVarQueryParameter['page'] = page;
|
|
9161
9283
|
}
|
|
@@ -9481,19 +9603,18 @@ exports.CountriesApiFp = function (configuration) {
|
|
|
9481
9603
|
* @param {Date} [createdDate]
|
|
9482
9604
|
* @param {string} [languageCode]
|
|
9483
9605
|
* @param {boolean} [showHidden]
|
|
9484
|
-
* @param {boolean} [returnDefaultValue]
|
|
9485
9606
|
* @param {number} [page]
|
|
9486
9607
|
* @param {number} [limit]
|
|
9487
9608
|
* @param {Date} [lastRetrieved]
|
|
9488
9609
|
* @param {*} [options] Override http request option.
|
|
9489
9610
|
* @throws {RequiredError}
|
|
9490
9611
|
*/
|
|
9491
|
-
apiV1CountriesGet: function (id, name, description, createdDate, languageCode, showHidden,
|
|
9612
|
+
apiV1CountriesGet: function (id, name, description, createdDate, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
9492
9613
|
return __awaiter(this, void 0, void 0, function () {
|
|
9493
9614
|
var localVarAxiosArgs;
|
|
9494
9615
|
return __generator(this, function (_a) {
|
|
9495
9616
|
switch (_a.label) {
|
|
9496
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1CountriesGet(id, name, description, createdDate, languageCode, showHidden,
|
|
9617
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1CountriesGet(id, name, description, createdDate, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
9497
9618
|
case 1:
|
|
9498
9619
|
localVarAxiosArgs = _a.sent();
|
|
9499
9620
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -9663,15 +9784,14 @@ exports.CountriesApiFactory = function (configuration, basePath, axios) {
|
|
|
9663
9784
|
* @param {Date} [createdDate]
|
|
9664
9785
|
* @param {string} [languageCode]
|
|
9665
9786
|
* @param {boolean} [showHidden]
|
|
9666
|
-
* @param {boolean} [returnDefaultValue]
|
|
9667
9787
|
* @param {number} [page]
|
|
9668
9788
|
* @param {number} [limit]
|
|
9669
9789
|
* @param {Date} [lastRetrieved]
|
|
9670
9790
|
* @param {*} [options] Override http request option.
|
|
9671
9791
|
* @throws {RequiredError}
|
|
9672
9792
|
*/
|
|
9673
|
-
apiV1CountriesGet: function (id, name, description, createdDate, languageCode, showHidden,
|
|
9674
|
-
return localVarFp.apiV1CountriesGet(id, name, description, createdDate, languageCode, showHidden,
|
|
9793
|
+
apiV1CountriesGet: function (id, name, description, createdDate, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
9794
|
+
return localVarFp.apiV1CountriesGet(id, name, description, createdDate, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
9675
9795
|
},
|
|
9676
9796
|
/**
|
|
9677
9797
|
*
|
|
@@ -9837,7 +9957,6 @@ var CountriesApi = /** @class */ (function (_super) {
|
|
|
9837
9957
|
* @param {Date} [createdDate]
|
|
9838
9958
|
* @param {string} [languageCode]
|
|
9839
9959
|
* @param {boolean} [showHidden]
|
|
9840
|
-
* @param {boolean} [returnDefaultValue]
|
|
9841
9960
|
* @param {number} [page]
|
|
9842
9961
|
* @param {number} [limit]
|
|
9843
9962
|
* @param {Date} [lastRetrieved]
|
|
@@ -9845,9 +9964,9 @@ var CountriesApi = /** @class */ (function (_super) {
|
|
|
9845
9964
|
* @throws {RequiredError}
|
|
9846
9965
|
* @memberof CountriesApi
|
|
9847
9966
|
*/
|
|
9848
|
-
CountriesApi.prototype.apiV1CountriesGet = function (id, name, description, createdDate, languageCode, showHidden,
|
|
9967
|
+
CountriesApi.prototype.apiV1CountriesGet = function (id, name, description, createdDate, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
9849
9968
|
var _this = this;
|
|
9850
|
-
return exports.CountriesApiFp(this.configuration).apiV1CountriesGet(id, name, description, createdDate, languageCode, showHidden,
|
|
9969
|
+
return exports.CountriesApiFp(this.configuration).apiV1CountriesGet(id, name, description, createdDate, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
9851
9970
|
};
|
|
9852
9971
|
/**
|
|
9853
9972
|
*
|
|
@@ -10058,11 +10177,10 @@ exports.DealsApiAxiosParamCreator = function (configuration) {
|
|
|
10058
10177
|
* @summary Get deal.
|
|
10059
10178
|
* @param {string} dealId
|
|
10060
10179
|
* @param {string} [languageCode]
|
|
10061
|
-
* @param {boolean} [returnDefaultValue]
|
|
10062
10180
|
* @param {*} [options] Override http request option.
|
|
10063
10181
|
* @throws {RequiredError}
|
|
10064
10182
|
*/
|
|
10065
|
-
apiV1DealsDealIdGet: function (dealId, languageCode,
|
|
10183
|
+
apiV1DealsDealIdGet: function (dealId, languageCode, options) {
|
|
10066
10184
|
if (options === void 0) { options = {}; }
|
|
10067
10185
|
return __awaiter(_this, void 0, void 0, function () {
|
|
10068
10186
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -10090,9 +10208,6 @@ exports.DealsApiAxiosParamCreator = function (configuration) {
|
|
|
10090
10208
|
if (languageCode !== undefined) {
|
|
10091
10209
|
localVarQueryParameter['languageCode'] = languageCode;
|
|
10092
10210
|
}
|
|
10093
|
-
if (returnDefaultValue !== undefined) {
|
|
10094
|
-
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
10095
|
-
}
|
|
10096
10211
|
common_1.setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
10097
10212
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
10098
10213
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -10114,13 +10229,15 @@ exports.DealsApiAxiosParamCreator = function (configuration) {
|
|
|
10114
10229
|
* @param {string} [countryId]
|
|
10115
10230
|
* @param {string} [hospitalId]
|
|
10116
10231
|
* @param {string} [hospitalName]
|
|
10232
|
+
* @param {string} [languageCode]
|
|
10233
|
+
* @param {boolean} [showHidden]
|
|
10117
10234
|
* @param {number} [page]
|
|
10118
10235
|
* @param {number} [limit]
|
|
10119
10236
|
* @param {Date} [lastRetrieved]
|
|
10120
10237
|
* @param {*} [options] Override http request option.
|
|
10121
10238
|
* @throws {RequiredError}
|
|
10122
10239
|
*/
|
|
10123
|
-
apiV1DealsDealIdPackagesGet: function (dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, page, limit, lastRetrieved, options) {
|
|
10240
|
+
apiV1DealsDealIdPackagesGet: function (dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
10124
10241
|
if (options === void 0) { options = {}; }
|
|
10125
10242
|
return __awaiter(_this, void 0, void 0, function () {
|
|
10126
10243
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -10163,6 +10280,12 @@ exports.DealsApiAxiosParamCreator = function (configuration) {
|
|
|
10163
10280
|
if (hospitalName !== undefined) {
|
|
10164
10281
|
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
10165
10282
|
}
|
|
10283
|
+
if (languageCode !== undefined) {
|
|
10284
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
10285
|
+
}
|
|
10286
|
+
if (showHidden !== undefined) {
|
|
10287
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
10288
|
+
}
|
|
10166
10289
|
if (page !== undefined) {
|
|
10167
10290
|
localVarQueryParameter['page'] = page;
|
|
10168
10291
|
}
|
|
@@ -10237,10 +10360,11 @@ exports.DealsApiAxiosParamCreator = function (configuration) {
|
|
|
10237
10360
|
* @summary Get DealPackage.
|
|
10238
10361
|
* @param {string} dealId
|
|
10239
10362
|
* @param {string} packageId
|
|
10363
|
+
* @param {string} [languageCode]
|
|
10240
10364
|
* @param {*} [options] Override http request option.
|
|
10241
10365
|
* @throws {RequiredError}
|
|
10242
10366
|
*/
|
|
10243
|
-
apiV1DealsDealIdPackagesPackageIdGet: function (dealId, packageId, options) {
|
|
10367
|
+
apiV1DealsDealIdPackagesPackageIdGet: function (dealId, packageId, languageCode, options) {
|
|
10244
10368
|
if (options === void 0) { options = {}; }
|
|
10245
10369
|
return __awaiter(_this, void 0, void 0, function () {
|
|
10246
10370
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -10268,6 +10392,9 @@ exports.DealsApiAxiosParamCreator = function (configuration) {
|
|
|
10268
10392
|
// authentication oauth2 required
|
|
10269
10393
|
// oauth required
|
|
10270
10394
|
_a.sent();
|
|
10395
|
+
if (languageCode !== undefined) {
|
|
10396
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
10397
|
+
}
|
|
10271
10398
|
common_1.setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
10272
10399
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
10273
10400
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -11053,16 +11180,15 @@ exports.DealsApiFp = function (configuration) {
|
|
|
11053
11180
|
* @summary Get deal.
|
|
11054
11181
|
* @param {string} dealId
|
|
11055
11182
|
* @param {string} [languageCode]
|
|
11056
|
-
* @param {boolean} [returnDefaultValue]
|
|
11057
11183
|
* @param {*} [options] Override http request option.
|
|
11058
11184
|
* @throws {RequiredError}
|
|
11059
11185
|
*/
|
|
11060
|
-
apiV1DealsDealIdGet: function (dealId, languageCode,
|
|
11186
|
+
apiV1DealsDealIdGet: function (dealId, languageCode, options) {
|
|
11061
11187
|
return __awaiter(this, void 0, void 0, function () {
|
|
11062
11188
|
var localVarAxiosArgs;
|
|
11063
11189
|
return __generator(this, function (_a) {
|
|
11064
11190
|
switch (_a.label) {
|
|
11065
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DealsDealIdGet(dealId, languageCode,
|
|
11191
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DealsDealIdGet(dealId, languageCode, options)];
|
|
11066
11192
|
case 1:
|
|
11067
11193
|
localVarAxiosArgs = _a.sent();
|
|
11068
11194
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -11080,18 +11206,20 @@ exports.DealsApiFp = function (configuration) {
|
|
|
11080
11206
|
* @param {string} [countryId]
|
|
11081
11207
|
* @param {string} [hospitalId]
|
|
11082
11208
|
* @param {string} [hospitalName]
|
|
11209
|
+
* @param {string} [languageCode]
|
|
11210
|
+
* @param {boolean} [showHidden]
|
|
11083
11211
|
* @param {number} [page]
|
|
11084
11212
|
* @param {number} [limit]
|
|
11085
11213
|
* @param {Date} [lastRetrieved]
|
|
11086
11214
|
* @param {*} [options] Override http request option.
|
|
11087
11215
|
* @throws {RequiredError}
|
|
11088
11216
|
*/
|
|
11089
|
-
apiV1DealsDealIdPackagesGet: function (dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, page, limit, lastRetrieved, options) {
|
|
11217
|
+
apiV1DealsDealIdPackagesGet: function (dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
11090
11218
|
return __awaiter(this, void 0, void 0, function () {
|
|
11091
11219
|
var localVarAxiosArgs;
|
|
11092
11220
|
return __generator(this, function (_a) {
|
|
11093
11221
|
switch (_a.label) {
|
|
11094
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DealsDealIdPackagesGet(dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, page, limit, lastRetrieved, options)];
|
|
11222
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DealsDealIdPackagesGet(dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
11095
11223
|
case 1:
|
|
11096
11224
|
localVarAxiosArgs = _a.sent();
|
|
11097
11225
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -11125,15 +11253,16 @@ exports.DealsApiFp = function (configuration) {
|
|
|
11125
11253
|
* @summary Get DealPackage.
|
|
11126
11254
|
* @param {string} dealId
|
|
11127
11255
|
* @param {string} packageId
|
|
11256
|
+
* @param {string} [languageCode]
|
|
11128
11257
|
* @param {*} [options] Override http request option.
|
|
11129
11258
|
* @throws {RequiredError}
|
|
11130
11259
|
*/
|
|
11131
|
-
apiV1DealsDealIdPackagesPackageIdGet: function (dealId, packageId, options) {
|
|
11260
|
+
apiV1DealsDealIdPackagesPackageIdGet: function (dealId, packageId, languageCode, options) {
|
|
11132
11261
|
return __awaiter(this, void 0, void 0, function () {
|
|
11133
11262
|
var localVarAxiosArgs;
|
|
11134
11263
|
return __generator(this, function (_a) {
|
|
11135
11264
|
switch (_a.label) {
|
|
11136
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DealsDealIdPackagesPackageIdGet(dealId, packageId, options)];
|
|
11265
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DealsDealIdPackagesPackageIdGet(dealId, packageId, languageCode, options)];
|
|
11137
11266
|
case 1:
|
|
11138
11267
|
localVarAxiosArgs = _a.sent();
|
|
11139
11268
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -11461,12 +11590,11 @@ exports.DealsApiFactory = function (configuration, basePath, axios) {
|
|
|
11461
11590
|
* @summary Get deal.
|
|
11462
11591
|
* @param {string} dealId
|
|
11463
11592
|
* @param {string} [languageCode]
|
|
11464
|
-
* @param {boolean} [returnDefaultValue]
|
|
11465
11593
|
* @param {*} [options] Override http request option.
|
|
11466
11594
|
* @throws {RequiredError}
|
|
11467
11595
|
*/
|
|
11468
|
-
apiV1DealsDealIdGet: function (dealId, languageCode,
|
|
11469
|
-
return localVarFp.apiV1DealsDealIdGet(dealId, languageCode,
|
|
11596
|
+
apiV1DealsDealIdGet: function (dealId, languageCode, options) {
|
|
11597
|
+
return localVarFp.apiV1DealsDealIdGet(dealId, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
11470
11598
|
},
|
|
11471
11599
|
/**
|
|
11472
11600
|
*
|
|
@@ -11478,14 +11606,16 @@ exports.DealsApiFactory = function (configuration, basePath, axios) {
|
|
|
11478
11606
|
* @param {string} [countryId]
|
|
11479
11607
|
* @param {string} [hospitalId]
|
|
11480
11608
|
* @param {string} [hospitalName]
|
|
11609
|
+
* @param {string} [languageCode]
|
|
11610
|
+
* @param {boolean} [showHidden]
|
|
11481
11611
|
* @param {number} [page]
|
|
11482
11612
|
* @param {number} [limit]
|
|
11483
11613
|
* @param {Date} [lastRetrieved]
|
|
11484
11614
|
* @param {*} [options] Override http request option.
|
|
11485
11615
|
* @throws {RequiredError}
|
|
11486
11616
|
*/
|
|
11487
|
-
apiV1DealsDealIdPackagesGet: function (dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, page, limit, lastRetrieved, options) {
|
|
11488
|
-
return localVarFp.apiV1DealsDealIdPackagesGet(dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
11617
|
+
apiV1DealsDealIdPackagesGet: function (dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
11618
|
+
return localVarFp.apiV1DealsDealIdPackagesGet(dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
11489
11619
|
},
|
|
11490
11620
|
/**
|
|
11491
11621
|
*
|
|
@@ -11503,11 +11633,12 @@ exports.DealsApiFactory = function (configuration, basePath, axios) {
|
|
|
11503
11633
|
* @summary Get DealPackage.
|
|
11504
11634
|
* @param {string} dealId
|
|
11505
11635
|
* @param {string} packageId
|
|
11636
|
+
* @param {string} [languageCode]
|
|
11506
11637
|
* @param {*} [options] Override http request option.
|
|
11507
11638
|
* @throws {RequiredError}
|
|
11508
11639
|
*/
|
|
11509
|
-
apiV1DealsDealIdPackagesPackageIdGet: function (dealId, packageId, options) {
|
|
11510
|
-
return localVarFp.apiV1DealsDealIdPackagesPackageIdGet(dealId, packageId, options).then(function (request) { return request(axios, basePath); });
|
|
11640
|
+
apiV1DealsDealIdPackagesPackageIdGet: function (dealId, packageId, languageCode, options) {
|
|
11641
|
+
return localVarFp.apiV1DealsDealIdPackagesPackageIdGet(dealId, packageId, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
11511
11642
|
},
|
|
11512
11643
|
/**
|
|
11513
11644
|
*
|
|
@@ -11715,14 +11846,13 @@ var DealsApi = /** @class */ (function (_super) {
|
|
|
11715
11846
|
* @summary Get deal.
|
|
11716
11847
|
* @param {string} dealId
|
|
11717
11848
|
* @param {string} [languageCode]
|
|
11718
|
-
* @param {boolean} [returnDefaultValue]
|
|
11719
11849
|
* @param {*} [options] Override http request option.
|
|
11720
11850
|
* @throws {RequiredError}
|
|
11721
11851
|
* @memberof DealsApi
|
|
11722
11852
|
*/
|
|
11723
|
-
DealsApi.prototype.apiV1DealsDealIdGet = function (dealId, languageCode,
|
|
11853
|
+
DealsApi.prototype.apiV1DealsDealIdGet = function (dealId, languageCode, options) {
|
|
11724
11854
|
var _this = this;
|
|
11725
|
-
return exports.DealsApiFp(this.configuration).apiV1DealsDealIdGet(dealId, languageCode,
|
|
11855
|
+
return exports.DealsApiFp(this.configuration).apiV1DealsDealIdGet(dealId, languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
11726
11856
|
};
|
|
11727
11857
|
/**
|
|
11728
11858
|
*
|
|
@@ -11734,6 +11864,8 @@ var DealsApi = /** @class */ (function (_super) {
|
|
|
11734
11864
|
* @param {string} [countryId]
|
|
11735
11865
|
* @param {string} [hospitalId]
|
|
11736
11866
|
* @param {string} [hospitalName]
|
|
11867
|
+
* @param {string} [languageCode]
|
|
11868
|
+
* @param {boolean} [showHidden]
|
|
11737
11869
|
* @param {number} [page]
|
|
11738
11870
|
* @param {number} [limit]
|
|
11739
11871
|
* @param {Date} [lastRetrieved]
|
|
@@ -11741,9 +11873,9 @@ var DealsApi = /** @class */ (function (_super) {
|
|
|
11741
11873
|
* @throws {RequiredError}
|
|
11742
11874
|
* @memberof DealsApi
|
|
11743
11875
|
*/
|
|
11744
|
-
DealsApi.prototype.apiV1DealsDealIdPackagesGet = function (dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, page, limit, lastRetrieved, options) {
|
|
11876
|
+
DealsApi.prototype.apiV1DealsDealIdPackagesGet = function (dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
11745
11877
|
var _this = this;
|
|
11746
|
-
return exports.DealsApiFp(this.configuration).apiV1DealsDealIdPackagesGet(dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
11878
|
+
return exports.DealsApiFp(this.configuration).apiV1DealsDealIdPackagesGet(dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
11747
11879
|
};
|
|
11748
11880
|
/**
|
|
11749
11881
|
*
|
|
@@ -11763,13 +11895,14 @@ var DealsApi = /** @class */ (function (_super) {
|
|
|
11763
11895
|
* @summary Get DealPackage.
|
|
11764
11896
|
* @param {string} dealId
|
|
11765
11897
|
* @param {string} packageId
|
|
11898
|
+
* @param {string} [languageCode]
|
|
11766
11899
|
* @param {*} [options] Override http request option.
|
|
11767
11900
|
* @throws {RequiredError}
|
|
11768
11901
|
* @memberof DealsApi
|
|
11769
11902
|
*/
|
|
11770
|
-
DealsApi.prototype.apiV1DealsDealIdPackagesPackageIdGet = function (dealId, packageId, options) {
|
|
11903
|
+
DealsApi.prototype.apiV1DealsDealIdPackagesPackageIdGet = function (dealId, packageId, languageCode, options) {
|
|
11771
11904
|
var _this = this;
|
|
11772
|
-
return exports.DealsApiFp(this.configuration).apiV1DealsDealIdPackagesPackageIdGet(dealId, packageId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
11905
|
+
return exports.DealsApiFp(this.configuration).apiV1DealsDealIdPackagesPackageIdGet(dealId, packageId, languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
11773
11906
|
};
|
|
11774
11907
|
/**
|
|
11775
11908
|
*
|
|
@@ -11987,8 +12120,8 @@ exports.DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
|
|
|
11987
12120
|
* @param {string} [hospitalId]
|
|
11988
12121
|
* @param {string} [hospitalName]
|
|
11989
12122
|
* @param {string} [doctorId]
|
|
11990
|
-
* @param {string} [
|
|
11991
|
-
* @param {string} [
|
|
12123
|
+
* @param {string} [doctorName]
|
|
12124
|
+
* @param {string} [doctorSlug]
|
|
11992
12125
|
* @param {string} [languageCode]
|
|
11993
12126
|
* @param {boolean} [showHidden]
|
|
11994
12127
|
* @param {number} [page]
|
|
@@ -11997,7 +12130,7 @@ exports.DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
|
|
|
11997
12130
|
* @param {*} [options] Override http request option.
|
|
11998
12131
|
* @throws {RequiredError}
|
|
11999
12132
|
*/
|
|
12000
|
-
apiV1DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId,
|
|
12133
|
+
apiV1DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
12001
12134
|
if (options === void 0) { options = {}; }
|
|
12002
12135
|
return __awaiter(_this, void 0, void 0, function () {
|
|
12003
12136
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -12028,11 +12161,11 @@ exports.DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
|
|
|
12028
12161
|
if (doctorId !== undefined) {
|
|
12029
12162
|
localVarQueryParameter['DoctorId'] = doctorId;
|
|
12030
12163
|
}
|
|
12031
|
-
if (
|
|
12032
|
-
localVarQueryParameter['
|
|
12164
|
+
if (doctorName !== undefined) {
|
|
12165
|
+
localVarQueryParameter['DoctorName'] = doctorName;
|
|
12033
12166
|
}
|
|
12034
|
-
if (
|
|
12035
|
-
localVarQueryParameter['
|
|
12167
|
+
if (doctorSlug !== undefined) {
|
|
12168
|
+
localVarQueryParameter['DoctorSlug'] = doctorSlug;
|
|
12036
12169
|
}
|
|
12037
12170
|
if (languageCode !== undefined) {
|
|
12038
12171
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
@@ -12109,10 +12242,11 @@ exports.DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
|
|
|
12109
12242
|
*
|
|
12110
12243
|
* @summary Get doctor affiliation.
|
|
12111
12244
|
* @param {string} id
|
|
12245
|
+
* @param {string} [languageCode]
|
|
12112
12246
|
* @param {*} [options] Override http request option.
|
|
12113
12247
|
* @throws {RequiredError}
|
|
12114
12248
|
*/
|
|
12115
|
-
apiV1DoctoraffiliationsIdGet: function (id, options) {
|
|
12249
|
+
apiV1DoctoraffiliationsIdGet: function (id, languageCode, options) {
|
|
12116
12250
|
if (options === void 0) { options = {}; }
|
|
12117
12251
|
return __awaiter(_this, void 0, void 0, function () {
|
|
12118
12252
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -12137,6 +12271,9 @@ exports.DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
|
|
|
12137
12271
|
// authentication oauth2 required
|
|
12138
12272
|
// oauth required
|
|
12139
12273
|
_a.sent();
|
|
12274
|
+
if (languageCode !== undefined) {
|
|
12275
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
12276
|
+
}
|
|
12140
12277
|
common_1.setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12141
12278
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12142
12279
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -12250,8 +12387,8 @@ exports.DoctorAffiliationsApiFp = function (configuration) {
|
|
|
12250
12387
|
* @param {string} [hospitalId]
|
|
12251
12388
|
* @param {string} [hospitalName]
|
|
12252
12389
|
* @param {string} [doctorId]
|
|
12253
|
-
* @param {string} [
|
|
12254
|
-
* @param {string} [
|
|
12390
|
+
* @param {string} [doctorName]
|
|
12391
|
+
* @param {string} [doctorSlug]
|
|
12255
12392
|
* @param {string} [languageCode]
|
|
12256
12393
|
* @param {boolean} [showHidden]
|
|
12257
12394
|
* @param {number} [page]
|
|
@@ -12260,12 +12397,12 @@ exports.DoctorAffiliationsApiFp = function (configuration) {
|
|
|
12260
12397
|
* @param {*} [options] Override http request option.
|
|
12261
12398
|
* @throws {RequiredError}
|
|
12262
12399
|
*/
|
|
12263
|
-
apiV1DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId,
|
|
12400
|
+
apiV1DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
12264
12401
|
return __awaiter(this, void 0, void 0, function () {
|
|
12265
12402
|
var localVarAxiosArgs;
|
|
12266
12403
|
return __generator(this, function (_a) {
|
|
12267
12404
|
switch (_a.label) {
|
|
12268
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId,
|
|
12405
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
12269
12406
|
case 1:
|
|
12270
12407
|
localVarAxiosArgs = _a.sent();
|
|
12271
12408
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -12297,15 +12434,16 @@ exports.DoctorAffiliationsApiFp = function (configuration) {
|
|
|
12297
12434
|
*
|
|
12298
12435
|
* @summary Get doctor affiliation.
|
|
12299
12436
|
* @param {string} id
|
|
12437
|
+
* @param {string} [languageCode]
|
|
12300
12438
|
* @param {*} [options] Override http request option.
|
|
12301
12439
|
* @throws {RequiredError}
|
|
12302
12440
|
*/
|
|
12303
|
-
apiV1DoctoraffiliationsIdGet: function (id, options) {
|
|
12441
|
+
apiV1DoctoraffiliationsIdGet: function (id, languageCode, options) {
|
|
12304
12442
|
return __awaiter(this, void 0, void 0, function () {
|
|
12305
12443
|
var localVarAxiosArgs;
|
|
12306
12444
|
return __generator(this, function (_a) {
|
|
12307
12445
|
switch (_a.label) {
|
|
12308
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctoraffiliationsIdGet(id, options)];
|
|
12446
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctoraffiliationsIdGet(id, languageCode, options)];
|
|
12309
12447
|
case 1:
|
|
12310
12448
|
localVarAxiosArgs = _a.sent();
|
|
12311
12449
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -12368,8 +12506,8 @@ exports.DoctorAffiliationsApiFactory = function (configuration, basePath, axios)
|
|
|
12368
12506
|
* @param {string} [hospitalId]
|
|
12369
12507
|
* @param {string} [hospitalName]
|
|
12370
12508
|
* @param {string} [doctorId]
|
|
12371
|
-
* @param {string} [
|
|
12372
|
-
* @param {string} [
|
|
12509
|
+
* @param {string} [doctorName]
|
|
12510
|
+
* @param {string} [doctorSlug]
|
|
12373
12511
|
* @param {string} [languageCode]
|
|
12374
12512
|
* @param {boolean} [showHidden]
|
|
12375
12513
|
* @param {number} [page]
|
|
@@ -12378,8 +12516,8 @@ exports.DoctorAffiliationsApiFactory = function (configuration, basePath, axios)
|
|
|
12378
12516
|
* @param {*} [options] Override http request option.
|
|
12379
12517
|
* @throws {RequiredError}
|
|
12380
12518
|
*/
|
|
12381
|
-
apiV1DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId,
|
|
12382
|
-
return localVarFp.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId,
|
|
12519
|
+
apiV1DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
12520
|
+
return localVarFp.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
12383
12521
|
},
|
|
12384
12522
|
/**
|
|
12385
12523
|
*
|
|
@@ -12395,11 +12533,12 @@ exports.DoctorAffiliationsApiFactory = function (configuration, basePath, axios)
|
|
|
12395
12533
|
*
|
|
12396
12534
|
* @summary Get doctor affiliation.
|
|
12397
12535
|
* @param {string} id
|
|
12536
|
+
* @param {string} [languageCode]
|
|
12398
12537
|
* @param {*} [options] Override http request option.
|
|
12399
12538
|
* @throws {RequiredError}
|
|
12400
12539
|
*/
|
|
12401
|
-
apiV1DoctoraffiliationsIdGet: function (id, options) {
|
|
12402
|
-
return localVarFp.apiV1DoctoraffiliationsIdGet(id, options).then(function (request) { return request(axios, basePath); });
|
|
12540
|
+
apiV1DoctoraffiliationsIdGet: function (id, languageCode, options) {
|
|
12541
|
+
return localVarFp.apiV1DoctoraffiliationsIdGet(id, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
12403
12542
|
},
|
|
12404
12543
|
/**
|
|
12405
12544
|
*
|
|
@@ -12440,8 +12579,8 @@ var DoctorAffiliationsApi = /** @class */ (function (_super) {
|
|
|
12440
12579
|
* @param {string} [hospitalId]
|
|
12441
12580
|
* @param {string} [hospitalName]
|
|
12442
12581
|
* @param {string} [doctorId]
|
|
12443
|
-
* @param {string} [
|
|
12444
|
-
* @param {string} [
|
|
12582
|
+
* @param {string} [doctorName]
|
|
12583
|
+
* @param {string} [doctorSlug]
|
|
12445
12584
|
* @param {string} [languageCode]
|
|
12446
12585
|
* @param {boolean} [showHidden]
|
|
12447
12586
|
* @param {number} [page]
|
|
@@ -12451,9 +12590,9 @@ var DoctorAffiliationsApi = /** @class */ (function (_super) {
|
|
|
12451
12590
|
* @throws {RequiredError}
|
|
12452
12591
|
* @memberof DoctorAffiliationsApi
|
|
12453
12592
|
*/
|
|
12454
|
-
DoctorAffiliationsApi.prototype.apiV1DoctoraffiliationsGet = function (hospitalId, hospitalName, doctorId,
|
|
12593
|
+
DoctorAffiliationsApi.prototype.apiV1DoctoraffiliationsGet = function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
12455
12594
|
var _this = this;
|
|
12456
|
-
return exports.DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId,
|
|
12595
|
+
return exports.DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
12457
12596
|
};
|
|
12458
12597
|
/**
|
|
12459
12598
|
*
|
|
@@ -12471,13 +12610,14 @@ var DoctorAffiliationsApi = /** @class */ (function (_super) {
|
|
|
12471
12610
|
*
|
|
12472
12611
|
* @summary Get doctor affiliation.
|
|
12473
12612
|
* @param {string} id
|
|
12613
|
+
* @param {string} [languageCode]
|
|
12474
12614
|
* @param {*} [options] Override http request option.
|
|
12475
12615
|
* @throws {RequiredError}
|
|
12476
12616
|
* @memberof DoctorAffiliationsApi
|
|
12477
12617
|
*/
|
|
12478
|
-
DoctorAffiliationsApi.prototype.apiV1DoctoraffiliationsIdGet = function (id, options) {
|
|
12618
|
+
DoctorAffiliationsApi.prototype.apiV1DoctoraffiliationsIdGet = function (id, languageCode, options) {
|
|
12479
12619
|
var _this = this;
|
|
12480
|
-
return exports.DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsIdGet(id, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
12620
|
+
return exports.DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsIdGet(id, languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
12481
12621
|
};
|
|
12482
12622
|
/**
|
|
12483
12623
|
*
|
|
@@ -13964,13 +14104,14 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
13964
14104
|
* @param {string} [doctorName]
|
|
13965
14105
|
* @param {string} [specialtyId]
|
|
13966
14106
|
* @param {string} [specialtyName]
|
|
14107
|
+
* @param {string} [languageCode]
|
|
13967
14108
|
* @param {number} [page]
|
|
13968
14109
|
* @param {number} [limit]
|
|
13969
14110
|
* @param {Date} [lastRetrieved]
|
|
13970
14111
|
* @param {*} [options] Override http request option.
|
|
13971
14112
|
* @throws {RequiredError}
|
|
13972
14113
|
*/
|
|
13973
|
-
apiV1DoctorsDoctorIdSpecialtiesGet: function (doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options) {
|
|
14114
|
+
apiV1DoctorsDoctorIdSpecialtiesGet: function (doctorId, doctorName, specialtyId, specialtyName, languageCode, page, limit, lastRetrieved, options) {
|
|
13974
14115
|
if (options === void 0) { options = {}; }
|
|
13975
14116
|
return __awaiter(_this, void 0, void 0, function () {
|
|
13976
14117
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -14004,6 +14145,9 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
14004
14145
|
if (specialtyName !== undefined) {
|
|
14005
14146
|
localVarQueryParameter['SpecialtyName'] = specialtyName;
|
|
14006
14147
|
}
|
|
14148
|
+
if (languageCode !== undefined) {
|
|
14149
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
14150
|
+
}
|
|
14007
14151
|
if (page !== undefined) {
|
|
14008
14152
|
localVarQueryParameter['page'] = page;
|
|
14009
14153
|
}
|
|
@@ -15160,18 +15304,19 @@ exports.DoctorsApiFp = function (configuration) {
|
|
|
15160
15304
|
* @param {string} [doctorName]
|
|
15161
15305
|
* @param {string} [specialtyId]
|
|
15162
15306
|
* @param {string} [specialtyName]
|
|
15307
|
+
* @param {string} [languageCode]
|
|
15163
15308
|
* @param {number} [page]
|
|
15164
15309
|
* @param {number} [limit]
|
|
15165
15310
|
* @param {Date} [lastRetrieved]
|
|
15166
15311
|
* @param {*} [options] Override http request option.
|
|
15167
15312
|
* @throws {RequiredError}
|
|
15168
15313
|
*/
|
|
15169
|
-
apiV1DoctorsDoctorIdSpecialtiesGet: function (doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options) {
|
|
15314
|
+
apiV1DoctorsDoctorIdSpecialtiesGet: function (doctorId, doctorName, specialtyId, specialtyName, languageCode, page, limit, lastRetrieved, options) {
|
|
15170
15315
|
return __awaiter(this, void 0, void 0, function () {
|
|
15171
15316
|
var localVarAxiosArgs;
|
|
15172
15317
|
return __generator(this, function (_a) {
|
|
15173
15318
|
switch (_a.label) {
|
|
15174
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options)];
|
|
15319
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, page, limit, lastRetrieved, options)];
|
|
15175
15320
|
case 1:
|
|
15176
15321
|
localVarAxiosArgs = _a.sent();
|
|
15177
15322
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -15729,14 +15874,15 @@ exports.DoctorsApiFactory = function (configuration, basePath, axios) {
|
|
|
15729
15874
|
* @param {string} [doctorName]
|
|
15730
15875
|
* @param {string} [specialtyId]
|
|
15731
15876
|
* @param {string} [specialtyName]
|
|
15877
|
+
* @param {string} [languageCode]
|
|
15732
15878
|
* @param {number} [page]
|
|
15733
15879
|
* @param {number} [limit]
|
|
15734
15880
|
* @param {Date} [lastRetrieved]
|
|
15735
15881
|
* @param {*} [options] Override http request option.
|
|
15736
15882
|
* @throws {RequiredError}
|
|
15737
15883
|
*/
|
|
15738
|
-
apiV1DoctorsDoctorIdSpecialtiesGet: function (doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options) {
|
|
15739
|
-
return localVarFp.apiV1DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
15884
|
+
apiV1DoctorsDoctorIdSpecialtiesGet: function (doctorId, doctorName, specialtyId, specialtyName, languageCode, page, limit, lastRetrieved, options) {
|
|
15885
|
+
return localVarFp.apiV1DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
15740
15886
|
},
|
|
15741
15887
|
/**
|
|
15742
15888
|
*
|
|
@@ -16268,6 +16414,7 @@ var DoctorsApi = /** @class */ (function (_super) {
|
|
|
16268
16414
|
* @param {string} [doctorName]
|
|
16269
16415
|
* @param {string} [specialtyId]
|
|
16270
16416
|
* @param {string} [specialtyName]
|
|
16417
|
+
* @param {string} [languageCode]
|
|
16271
16418
|
* @param {number} [page]
|
|
16272
16419
|
* @param {number} [limit]
|
|
16273
16420
|
* @param {Date} [lastRetrieved]
|
|
@@ -16275,9 +16422,9 @@ var DoctorsApi = /** @class */ (function (_super) {
|
|
|
16275
16422
|
* @throws {RequiredError}
|
|
16276
16423
|
* @memberof DoctorsApi
|
|
16277
16424
|
*/
|
|
16278
|
-
DoctorsApi.prototype.apiV1DoctorsDoctorIdSpecialtiesGet = function (doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options) {
|
|
16425
|
+
DoctorsApi.prototype.apiV1DoctorsDoctorIdSpecialtiesGet = function (doctorId, doctorName, specialtyId, specialtyName, languageCode, page, limit, lastRetrieved, options) {
|
|
16279
16426
|
var _this = this;
|
|
16280
|
-
return exports.DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
16427
|
+
return exports.DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
16281
16428
|
};
|
|
16282
16429
|
/**
|
|
16283
16430
|
*
|
|
@@ -19315,7 +19462,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
19315
19462
|
* @param {boolean} [showHidden]
|
|
19316
19463
|
* @param {string} [languageCode]
|
|
19317
19464
|
* @param {Array<string>} [ids]
|
|
19318
|
-
* @param {boolean} [returnDefaultValue]
|
|
19319
19465
|
* @param {boolean} [paymentEnabled]
|
|
19320
19466
|
* @param {number} [page]
|
|
19321
19467
|
* @param {number} [limit]
|
|
@@ -19323,7 +19469,7 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
19323
19469
|
* @param {*} [options] Override http request option.
|
|
19324
19470
|
* @throws {RequiredError}
|
|
19325
19471
|
*/
|
|
19326
|
-
apiV1HospitalsGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
19472
|
+
apiV1HospitalsGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
19327
19473
|
if (options === void 0) { options = {}; }
|
|
19328
19474
|
return __awaiter(_this, void 0, void 0, function () {
|
|
19329
19475
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -19380,9 +19526,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
19380
19526
|
if (ids) {
|
|
19381
19527
|
localVarQueryParameter['Ids'] = ids;
|
|
19382
19528
|
}
|
|
19383
|
-
if (returnDefaultValue !== undefined) {
|
|
19384
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
19385
|
-
}
|
|
19386
19529
|
if (paymentEnabled !== undefined) {
|
|
19387
19530
|
localVarQueryParameter['PaymentEnabled'] = paymentEnabled;
|
|
19388
19531
|
}
|
|
@@ -21134,8 +21277,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
21134
21277
|
* @param {string} [name]
|
|
21135
21278
|
* @param {string} [slug]
|
|
21136
21279
|
* @param {MarketingType} [marketingType]
|
|
21137
|
-
* @param {boolean} [returnDefaultValue]
|
|
21138
|
-
* @param {boolean} [includeServices]
|
|
21139
21280
|
* @param {string} [languageCode]
|
|
21140
21281
|
* @param {boolean} [showHidden]
|
|
21141
21282
|
* @param {number} [page]
|
|
@@ -21144,7 +21285,7 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
21144
21285
|
* @param {*} [options] Override http request option.
|
|
21145
21286
|
* @throws {RequiredError}
|
|
21146
21287
|
*/
|
|
21147
|
-
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
21288
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
21148
21289
|
if (options === void 0) { options = {}; }
|
|
21149
21290
|
return __awaiter(_this, void 0, void 0, function () {
|
|
21150
21291
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -21193,12 +21334,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
21193
21334
|
if (marketingType !== undefined) {
|
|
21194
21335
|
localVarQueryParameter['MarketingType'] = marketingType;
|
|
21195
21336
|
}
|
|
21196
|
-
if (returnDefaultValue !== undefined) {
|
|
21197
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
21198
|
-
}
|
|
21199
|
-
if (includeServices !== undefined) {
|
|
21200
|
-
localVarQueryParameter['IncludeServices'] = includeServices;
|
|
21201
|
-
}
|
|
21202
21337
|
if (languageCode !== undefined) {
|
|
21203
21338
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
21204
21339
|
}
|
|
@@ -21560,8 +21695,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
21560
21695
|
* @param {string} [name]
|
|
21561
21696
|
* @param {string} [slug]
|
|
21562
21697
|
* @param {MarketingType} [marketingType]
|
|
21563
|
-
* @param {boolean} [returnDefaultValue]
|
|
21564
|
-
* @param {boolean} [includeServices]
|
|
21565
21698
|
* @param {string} [languageCode]
|
|
21566
21699
|
* @param {boolean} [showHidden]
|
|
21567
21700
|
* @param {number} [page]
|
|
@@ -21570,7 +21703,7 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
21570
21703
|
* @param {*} [options] Override http request option.
|
|
21571
21704
|
* @throws {RequiredError}
|
|
21572
21705
|
*/
|
|
21573
|
-
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
21706
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
21574
21707
|
if (options === void 0) { options = {}; }
|
|
21575
21708
|
return __awaiter(_this, void 0, void 0, function () {
|
|
21576
21709
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -21619,12 +21752,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
21619
21752
|
if (marketingType !== undefined) {
|
|
21620
21753
|
localVarQueryParameter['MarketingType'] = marketingType;
|
|
21621
21754
|
}
|
|
21622
|
-
if (returnDefaultValue !== undefined) {
|
|
21623
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
21624
|
-
}
|
|
21625
|
-
if (includeServices !== undefined) {
|
|
21626
|
-
localVarQueryParameter['IncludeServices'] = includeServices;
|
|
21627
|
-
}
|
|
21628
21755
|
if (languageCode !== undefined) {
|
|
21629
21756
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
21630
21757
|
}
|
|
@@ -21765,12 +21892,10 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
21765
21892
|
* @param {string} hospitalId
|
|
21766
21893
|
* @param {string} specialtyId
|
|
21767
21894
|
* @param {string} [languageCode]
|
|
21768
|
-
* @param {boolean} [returnDefaultValue]
|
|
21769
|
-
* @param {boolean} [includeServices]
|
|
21770
21895
|
* @param {*} [options] Override http request option.
|
|
21771
21896
|
* @throws {RequiredError}
|
|
21772
21897
|
*/
|
|
21773
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, languageCode,
|
|
21898
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, languageCode, options) {
|
|
21774
21899
|
if (options === void 0) { options = {}; }
|
|
21775
21900
|
return __awaiter(_this, void 0, void 0, function () {
|
|
21776
21901
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -21801,12 +21926,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
21801
21926
|
if (languageCode !== undefined) {
|
|
21802
21927
|
localVarQueryParameter['languageCode'] = languageCode;
|
|
21803
21928
|
}
|
|
21804
|
-
if (returnDefaultValue !== undefined) {
|
|
21805
|
-
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
21806
|
-
}
|
|
21807
|
-
if (includeServices !== undefined) {
|
|
21808
|
-
localVarQueryParameter['includeServices'] = includeServices;
|
|
21809
|
-
}
|
|
21810
21929
|
common_1.setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
21811
21930
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
21812
21931
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -21880,15 +21999,15 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
21880
21999
|
* @param {MarketingType} [marketingType]
|
|
21881
22000
|
* @param {Procedure} [procedure]
|
|
21882
22001
|
* @param {Date} [created]
|
|
22002
|
+
* @param {boolean} [showHidden]
|
|
21883
22003
|
* @param {string} [languageCode]
|
|
21884
|
-
* @param {boolean} [returnDefaultValue]
|
|
21885
22004
|
* @param {number} [page]
|
|
21886
22005
|
* @param {number} [limit]
|
|
21887
22006
|
* @param {Date} [lastRetrieved]
|
|
21888
22007
|
* @param {*} [options] Override http request option.
|
|
21889
22008
|
* @throws {RequiredError}
|
|
21890
22009
|
*/
|
|
21891
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: function (hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created,
|
|
22010
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: function (hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options) {
|
|
21892
22011
|
if (options === void 0) { options = {}; }
|
|
21893
22012
|
return __awaiter(_this, void 0, void 0, function () {
|
|
21894
22013
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -21939,12 +22058,12 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
21939
22058
|
created.toISOString() :
|
|
21940
22059
|
created;
|
|
21941
22060
|
}
|
|
22061
|
+
if (showHidden !== undefined) {
|
|
22062
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
22063
|
+
}
|
|
21942
22064
|
if (languageCode !== undefined) {
|
|
21943
22065
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
21944
22066
|
}
|
|
21945
|
-
if (returnDefaultValue !== undefined) {
|
|
21946
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
21947
|
-
}
|
|
21948
22067
|
if (page !== undefined) {
|
|
21949
22068
|
localVarQueryParameter['page'] = page;
|
|
21950
22069
|
}
|
|
@@ -22844,7 +22963,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
22844
22963
|
* @param {boolean} [showHidden]
|
|
22845
22964
|
* @param {string} [languageCode]
|
|
22846
22965
|
* @param {Array<string>} [ids]
|
|
22847
|
-
* @param {boolean} [returnDefaultValue]
|
|
22848
22966
|
* @param {boolean} [paymentEnabled]
|
|
22849
22967
|
* @param {number} [page]
|
|
22850
22968
|
* @param {number} [limit]
|
|
@@ -22852,7 +22970,7 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
22852
22970
|
* @param {*} [options] Override http request option.
|
|
22853
22971
|
* @throws {RequiredError}
|
|
22854
22972
|
*/
|
|
22855
|
-
apiV1HospitalsSimpleGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
22973
|
+
apiV1HospitalsSimpleGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
22856
22974
|
if (options === void 0) { options = {}; }
|
|
22857
22975
|
return __awaiter(_this, void 0, void 0, function () {
|
|
22858
22976
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -22909,9 +23027,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
22909
23027
|
if (ids) {
|
|
22910
23028
|
localVarQueryParameter['Ids'] = ids;
|
|
22911
23029
|
}
|
|
22912
|
-
if (returnDefaultValue !== undefined) {
|
|
22913
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
22914
|
-
}
|
|
22915
23030
|
if (paymentEnabled !== undefined) {
|
|
22916
23031
|
localVarQueryParameter['PaymentEnabled'] = paymentEnabled;
|
|
22917
23032
|
}
|
|
@@ -23010,7 +23125,6 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
23010
23125
|
* @param {boolean} [showHidden]
|
|
23011
23126
|
* @param {string} [languageCode]
|
|
23012
23127
|
* @param {Array<string>} [ids]
|
|
23013
|
-
* @param {boolean} [returnDefaultValue]
|
|
23014
23128
|
* @param {boolean} [paymentEnabled]
|
|
23015
23129
|
* @param {number} [page]
|
|
23016
23130
|
* @param {number} [limit]
|
|
@@ -23018,12 +23132,12 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
23018
23132
|
* @param {*} [options] Override http request option.
|
|
23019
23133
|
* @throws {RequiredError}
|
|
23020
23134
|
*/
|
|
23021
|
-
apiV1HospitalsGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
23135
|
+
apiV1HospitalsGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
23022
23136
|
return __awaiter(this, void 0, void 0, function () {
|
|
23023
23137
|
var localVarAxiosArgs;
|
|
23024
23138
|
return __generator(this, function (_a) {
|
|
23025
23139
|
switch (_a.label) {
|
|
23026
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
23140
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options)];
|
|
23027
23141
|
case 1:
|
|
23028
23142
|
localVarAxiosArgs = _a.sent();
|
|
23029
23143
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -23776,8 +23890,6 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
23776
23890
|
* @param {string} [name]
|
|
23777
23891
|
* @param {string} [slug]
|
|
23778
23892
|
* @param {MarketingType} [marketingType]
|
|
23779
|
-
* @param {boolean} [returnDefaultValue]
|
|
23780
|
-
* @param {boolean} [includeServices]
|
|
23781
23893
|
* @param {string} [languageCode]
|
|
23782
23894
|
* @param {boolean} [showHidden]
|
|
23783
23895
|
* @param {number} [page]
|
|
@@ -23786,12 +23898,12 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
23786
23898
|
* @param {*} [options] Override http request option.
|
|
23787
23899
|
* @throws {RequiredError}
|
|
23788
23900
|
*/
|
|
23789
|
-
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
23901
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
23790
23902
|
return __awaiter(this, void 0, void 0, function () {
|
|
23791
23903
|
var localVarAxiosArgs;
|
|
23792
23904
|
return __generator(this, function (_a) {
|
|
23793
23905
|
switch (_a.label) {
|
|
23794
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
23906
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
23795
23907
|
case 1:
|
|
23796
23908
|
localVarAxiosArgs = _a.sent();
|
|
23797
23909
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -23947,8 +24059,6 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
23947
24059
|
* @param {string} [name]
|
|
23948
24060
|
* @param {string} [slug]
|
|
23949
24061
|
* @param {MarketingType} [marketingType]
|
|
23950
|
-
* @param {boolean} [returnDefaultValue]
|
|
23951
|
-
* @param {boolean} [includeServices]
|
|
23952
24062
|
* @param {string} [languageCode]
|
|
23953
24063
|
* @param {boolean} [showHidden]
|
|
23954
24064
|
* @param {number} [page]
|
|
@@ -23957,12 +24067,12 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
23957
24067
|
* @param {*} [options] Override http request option.
|
|
23958
24068
|
* @throws {RequiredError}
|
|
23959
24069
|
*/
|
|
23960
|
-
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
24070
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
23961
24071
|
return __awaiter(this, void 0, void 0, function () {
|
|
23962
24072
|
var localVarAxiosArgs;
|
|
23963
24073
|
return __generator(this, function (_a) {
|
|
23964
24074
|
switch (_a.label) {
|
|
23965
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
24075
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
23966
24076
|
case 1:
|
|
23967
24077
|
localVarAxiosArgs = _a.sent();
|
|
23968
24078
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -24021,17 +24131,15 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
24021
24131
|
* @param {string} hospitalId
|
|
24022
24132
|
* @param {string} specialtyId
|
|
24023
24133
|
* @param {string} [languageCode]
|
|
24024
|
-
* @param {boolean} [returnDefaultValue]
|
|
24025
|
-
* @param {boolean} [includeServices]
|
|
24026
24134
|
* @param {*} [options] Override http request option.
|
|
24027
24135
|
* @throws {RequiredError}
|
|
24028
24136
|
*/
|
|
24029
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, languageCode,
|
|
24137
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, languageCode, options) {
|
|
24030
24138
|
return __awaiter(this, void 0, void 0, function () {
|
|
24031
24139
|
var localVarAxiosArgs;
|
|
24032
24140
|
return __generator(this, function (_a) {
|
|
24033
24141
|
switch (_a.label) {
|
|
24034
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode,
|
|
24142
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options)];
|
|
24035
24143
|
case 1:
|
|
24036
24144
|
localVarAxiosArgs = _a.sent();
|
|
24037
24145
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -24073,20 +24181,20 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
24073
24181
|
* @param {MarketingType} [marketingType]
|
|
24074
24182
|
* @param {Procedure} [procedure]
|
|
24075
24183
|
* @param {Date} [created]
|
|
24184
|
+
* @param {boolean} [showHidden]
|
|
24076
24185
|
* @param {string} [languageCode]
|
|
24077
|
-
* @param {boolean} [returnDefaultValue]
|
|
24078
24186
|
* @param {number} [page]
|
|
24079
24187
|
* @param {number} [limit]
|
|
24080
24188
|
* @param {Date} [lastRetrieved]
|
|
24081
24189
|
* @param {*} [options] Override http request option.
|
|
24082
24190
|
* @throws {RequiredError}
|
|
24083
24191
|
*/
|
|
24084
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: function (hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created,
|
|
24192
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: function (hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options) {
|
|
24085
24193
|
return __awaiter(this, void 0, void 0, function () {
|
|
24086
24194
|
var localVarAxiosArgs;
|
|
24087
24195
|
return __generator(this, function (_a) {
|
|
24088
24196
|
switch (_a.label) {
|
|
24089
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created,
|
|
24197
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options)];
|
|
24090
24198
|
case 1:
|
|
24091
24199
|
localVarAxiosArgs = _a.sent();
|
|
24092
24200
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -24470,7 +24578,6 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
24470
24578
|
* @param {boolean} [showHidden]
|
|
24471
24579
|
* @param {string} [languageCode]
|
|
24472
24580
|
* @param {Array<string>} [ids]
|
|
24473
|
-
* @param {boolean} [returnDefaultValue]
|
|
24474
24581
|
* @param {boolean} [paymentEnabled]
|
|
24475
24582
|
* @param {number} [page]
|
|
24476
24583
|
* @param {number} [limit]
|
|
@@ -24478,12 +24585,12 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
24478
24585
|
* @param {*} [options] Override http request option.
|
|
24479
24586
|
* @throws {RequiredError}
|
|
24480
24587
|
*/
|
|
24481
|
-
apiV1HospitalsSimpleGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
24588
|
+
apiV1HospitalsSimpleGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
24482
24589
|
return __awaiter(this, void 0, void 0, function () {
|
|
24483
24590
|
var localVarAxiosArgs;
|
|
24484
24591
|
return __generator(this, function (_a) {
|
|
24485
24592
|
switch (_a.label) {
|
|
24486
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
24593
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options)];
|
|
24487
24594
|
case 1:
|
|
24488
24595
|
localVarAxiosArgs = _a.sent();
|
|
24489
24596
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -24535,7 +24642,6 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
24535
24642
|
* @param {boolean} [showHidden]
|
|
24536
24643
|
* @param {string} [languageCode]
|
|
24537
24644
|
* @param {Array<string>} [ids]
|
|
24538
|
-
* @param {boolean} [returnDefaultValue]
|
|
24539
24645
|
* @param {boolean} [paymentEnabled]
|
|
24540
24646
|
* @param {number} [page]
|
|
24541
24647
|
* @param {number} [limit]
|
|
@@ -24543,8 +24649,8 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
24543
24649
|
* @param {*} [options] Override http request option.
|
|
24544
24650
|
* @throws {RequiredError}
|
|
24545
24651
|
*/
|
|
24546
|
-
apiV1HospitalsGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
24547
|
-
return localVarFp.apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
24652
|
+
apiV1HospitalsGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
24653
|
+
return localVarFp.apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
24548
24654
|
},
|
|
24549
24655
|
/**
|
|
24550
24656
|
*
|
|
@@ -24961,8 +25067,6 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
24961
25067
|
* @param {string} [name]
|
|
24962
25068
|
* @param {string} [slug]
|
|
24963
25069
|
* @param {MarketingType} [marketingType]
|
|
24964
|
-
* @param {boolean} [returnDefaultValue]
|
|
24965
|
-
* @param {boolean} [includeServices]
|
|
24966
25070
|
* @param {string} [languageCode]
|
|
24967
25071
|
* @param {boolean} [showHidden]
|
|
24968
25072
|
* @param {number} [page]
|
|
@@ -24971,8 +25075,8 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
24971
25075
|
* @param {*} [options] Override http request option.
|
|
24972
25076
|
* @throws {RequiredError}
|
|
24973
25077
|
*/
|
|
24974
|
-
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
24975
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
25078
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
25079
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
24976
25080
|
},
|
|
24977
25081
|
/**
|
|
24978
25082
|
*
|
|
@@ -25062,8 +25166,6 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
25062
25166
|
* @param {string} [name]
|
|
25063
25167
|
* @param {string} [slug]
|
|
25064
25168
|
* @param {MarketingType} [marketingType]
|
|
25065
|
-
* @param {boolean} [returnDefaultValue]
|
|
25066
|
-
* @param {boolean} [includeServices]
|
|
25067
25169
|
* @param {string} [languageCode]
|
|
25068
25170
|
* @param {boolean} [showHidden]
|
|
25069
25171
|
* @param {number} [page]
|
|
@@ -25072,8 +25174,8 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
25072
25174
|
* @param {*} [options] Override http request option.
|
|
25073
25175
|
* @throws {RequiredError}
|
|
25074
25176
|
*/
|
|
25075
|
-
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
25076
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
25177
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
25178
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
25077
25179
|
},
|
|
25078
25180
|
/**
|
|
25079
25181
|
*
|
|
@@ -25106,13 +25208,11 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
25106
25208
|
* @param {string} hospitalId
|
|
25107
25209
|
* @param {string} specialtyId
|
|
25108
25210
|
* @param {string} [languageCode]
|
|
25109
|
-
* @param {boolean} [returnDefaultValue]
|
|
25110
|
-
* @param {boolean} [includeServices]
|
|
25111
25211
|
* @param {*} [options] Override http request option.
|
|
25112
25212
|
* @throws {RequiredError}
|
|
25113
25213
|
*/
|
|
25114
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, languageCode,
|
|
25115
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode,
|
|
25214
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, languageCode, options) {
|
|
25215
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
25116
25216
|
},
|
|
25117
25217
|
/**
|
|
25118
25218
|
*
|
|
@@ -25138,16 +25238,16 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
25138
25238
|
* @param {MarketingType} [marketingType]
|
|
25139
25239
|
* @param {Procedure} [procedure]
|
|
25140
25240
|
* @param {Date} [created]
|
|
25241
|
+
* @param {boolean} [showHidden]
|
|
25141
25242
|
* @param {string} [languageCode]
|
|
25142
|
-
* @param {boolean} [returnDefaultValue]
|
|
25143
25243
|
* @param {number} [page]
|
|
25144
25244
|
* @param {number} [limit]
|
|
25145
25245
|
* @param {Date} [lastRetrieved]
|
|
25146
25246
|
* @param {*} [options] Override http request option.
|
|
25147
25247
|
* @throws {RequiredError}
|
|
25148
25248
|
*/
|
|
25149
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: function (hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created,
|
|
25150
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created,
|
|
25249
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: function (hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options) {
|
|
25250
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
25151
25251
|
},
|
|
25152
25252
|
/**
|
|
25153
25253
|
*
|
|
@@ -25365,7 +25465,6 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
25365
25465
|
* @param {boolean} [showHidden]
|
|
25366
25466
|
* @param {string} [languageCode]
|
|
25367
25467
|
* @param {Array<string>} [ids]
|
|
25368
|
-
* @param {boolean} [returnDefaultValue]
|
|
25369
25468
|
* @param {boolean} [paymentEnabled]
|
|
25370
25469
|
* @param {number} [page]
|
|
25371
25470
|
* @param {number} [limit]
|
|
@@ -25373,8 +25472,8 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
25373
25472
|
* @param {*} [options] Override http request option.
|
|
25374
25473
|
* @throws {RequiredError}
|
|
25375
25474
|
*/
|
|
25376
|
-
apiV1HospitalsSimpleGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
25377
|
-
return localVarFp.apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
25475
|
+
apiV1HospitalsSimpleGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
25476
|
+
return localVarFp.apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
25378
25477
|
},
|
|
25379
25478
|
/**
|
|
25380
25479
|
*
|
|
@@ -25414,7 +25513,6 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
25414
25513
|
* @param {boolean} [showHidden]
|
|
25415
25514
|
* @param {string} [languageCode]
|
|
25416
25515
|
* @param {Array<string>} [ids]
|
|
25417
|
-
* @param {boolean} [returnDefaultValue]
|
|
25418
25516
|
* @param {boolean} [paymentEnabled]
|
|
25419
25517
|
* @param {number} [page]
|
|
25420
25518
|
* @param {number} [limit]
|
|
@@ -25423,9 +25521,9 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
25423
25521
|
* @throws {RequiredError}
|
|
25424
25522
|
* @memberof HospitalsApi
|
|
25425
25523
|
*/
|
|
25426
|
-
HospitalsApi.prototype.apiV1HospitalsGet = function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
25524
|
+
HospitalsApi.prototype.apiV1HospitalsGet = function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
25427
25525
|
var _this = this;
|
|
25428
|
-
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
25526
|
+
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
25429
25527
|
};
|
|
25430
25528
|
/**
|
|
25431
25529
|
*
|
|
@@ -25908,8 +26006,6 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
25908
26006
|
* @param {string} [name]
|
|
25909
26007
|
* @param {string} [slug]
|
|
25910
26008
|
* @param {MarketingType} [marketingType]
|
|
25911
|
-
* @param {boolean} [returnDefaultValue]
|
|
25912
|
-
* @param {boolean} [includeServices]
|
|
25913
26009
|
* @param {string} [languageCode]
|
|
25914
26010
|
* @param {boolean} [showHidden]
|
|
25915
26011
|
* @param {number} [page]
|
|
@@ -25919,9 +26015,9 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
25919
26015
|
* @throws {RequiredError}
|
|
25920
26016
|
* @memberof HospitalsApi
|
|
25921
26017
|
*/
|
|
25922
|
-
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesGet = function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
26018
|
+
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesGet = function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
25923
26019
|
var _this = this;
|
|
25924
|
-
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
26020
|
+
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
25925
26021
|
};
|
|
25926
26022
|
/**
|
|
25927
26023
|
*
|
|
@@ -26023,8 +26119,6 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
26023
26119
|
* @param {string} [name]
|
|
26024
26120
|
* @param {string} [slug]
|
|
26025
26121
|
* @param {MarketingType} [marketingType]
|
|
26026
|
-
* @param {boolean} [returnDefaultValue]
|
|
26027
|
-
* @param {boolean} [includeServices]
|
|
26028
26122
|
* @param {string} [languageCode]
|
|
26029
26123
|
* @param {boolean} [showHidden]
|
|
26030
26124
|
* @param {number} [page]
|
|
@@ -26034,9 +26128,9 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
26034
26128
|
* @throws {RequiredError}
|
|
26035
26129
|
* @memberof HospitalsApi
|
|
26036
26130
|
*/
|
|
26037
|
-
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesSimpleGet = function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
26131
|
+
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesSimpleGet = function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
26038
26132
|
var _this = this;
|
|
26039
|
-
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
26133
|
+
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
26040
26134
|
};
|
|
26041
26135
|
/**
|
|
26042
26136
|
*
|
|
@@ -26073,15 +26167,13 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
26073
26167
|
* @param {string} hospitalId
|
|
26074
26168
|
* @param {string} specialtyId
|
|
26075
26169
|
* @param {string} [languageCode]
|
|
26076
|
-
* @param {boolean} [returnDefaultValue]
|
|
26077
|
-
* @param {boolean} [includeServices]
|
|
26078
26170
|
* @param {*} [options] Override http request option.
|
|
26079
26171
|
* @throws {RequiredError}
|
|
26080
26172
|
* @memberof HospitalsApi
|
|
26081
26173
|
*/
|
|
26082
|
-
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet = function (hospitalId, specialtyId, languageCode,
|
|
26174
|
+
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet = function (hospitalId, specialtyId, languageCode, options) {
|
|
26083
26175
|
var _this = this;
|
|
26084
|
-
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode,
|
|
26176
|
+
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
26085
26177
|
};
|
|
26086
26178
|
/**
|
|
26087
26179
|
*
|
|
@@ -26109,8 +26201,8 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
26109
26201
|
* @param {MarketingType} [marketingType]
|
|
26110
26202
|
* @param {Procedure} [procedure]
|
|
26111
26203
|
* @param {Date} [created]
|
|
26204
|
+
* @param {boolean} [showHidden]
|
|
26112
26205
|
* @param {string} [languageCode]
|
|
26113
|
-
* @param {boolean} [returnDefaultValue]
|
|
26114
26206
|
* @param {number} [page]
|
|
26115
26207
|
* @param {number} [limit]
|
|
26116
26208
|
* @param {Date} [lastRetrieved]
|
|
@@ -26118,9 +26210,9 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
26118
26210
|
* @throws {RequiredError}
|
|
26119
26211
|
* @memberof HospitalsApi
|
|
26120
26212
|
*/
|
|
26121
|
-
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet = function (hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created,
|
|
26213
|
+
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet = function (hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options) {
|
|
26122
26214
|
var _this = this;
|
|
26123
|
-
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created,
|
|
26215
|
+
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
26124
26216
|
};
|
|
26125
26217
|
/**
|
|
26126
26218
|
*
|
|
@@ -26370,7 +26462,6 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
26370
26462
|
* @param {boolean} [showHidden]
|
|
26371
26463
|
* @param {string} [languageCode]
|
|
26372
26464
|
* @param {Array<string>} [ids]
|
|
26373
|
-
* @param {boolean} [returnDefaultValue]
|
|
26374
26465
|
* @param {boolean} [paymentEnabled]
|
|
26375
26466
|
* @param {number} [page]
|
|
26376
26467
|
* @param {number} [limit]
|
|
@@ -26379,9 +26470,9 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
26379
26470
|
* @throws {RequiredError}
|
|
26380
26471
|
* @memberof HospitalsApi
|
|
26381
26472
|
*/
|
|
26382
|
-
HospitalsApi.prototype.apiV1HospitalsSimpleGet = function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
26473
|
+
HospitalsApi.prototype.apiV1HospitalsSimpleGet = function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
26383
26474
|
var _this = this;
|
|
26384
|
-
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
26475
|
+
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
26385
26476
|
};
|
|
26386
26477
|
/**
|
|
26387
26478
|
*
|
|
@@ -27209,14 +27300,16 @@ exports.ManagersApiAxiosParamCreator = function (configuration) {
|
|
|
27209
27300
|
*
|
|
27210
27301
|
* @summary Get all manager affiliations.
|
|
27211
27302
|
* @param {string} managerId
|
|
27303
|
+
* @param {string} [hospitalId]
|
|
27212
27304
|
* @param {string} [hospitalName]
|
|
27305
|
+
* @param {string} [languageCode]
|
|
27213
27306
|
* @param {number} [page]
|
|
27214
27307
|
* @param {number} [limit]
|
|
27215
27308
|
* @param {Date} [lastRetrieved]
|
|
27216
27309
|
* @param {*} [options] Override http request option.
|
|
27217
27310
|
* @throws {RequiredError}
|
|
27218
27311
|
*/
|
|
27219
|
-
apiV1ManagersManagerIdAffiliationsGet: function (managerId, hospitalName, page, limit, lastRetrieved, options) {
|
|
27312
|
+
apiV1ManagersManagerIdAffiliationsGet: function (managerId, hospitalId, hospitalName, languageCode, page, limit, lastRetrieved, options) {
|
|
27220
27313
|
if (options === void 0) { options = {}; }
|
|
27221
27314
|
return __awaiter(_this, void 0, void 0, function () {
|
|
27222
27315
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -27241,9 +27334,15 @@ exports.ManagersApiAxiosParamCreator = function (configuration) {
|
|
|
27241
27334
|
// authentication oauth2 required
|
|
27242
27335
|
// oauth required
|
|
27243
27336
|
_a.sent();
|
|
27337
|
+
if (hospitalId !== undefined) {
|
|
27338
|
+
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
27339
|
+
}
|
|
27244
27340
|
if (hospitalName !== undefined) {
|
|
27245
27341
|
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
27246
27342
|
}
|
|
27343
|
+
if (languageCode !== undefined) {
|
|
27344
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
27345
|
+
}
|
|
27247
27346
|
if (page !== undefined) {
|
|
27248
27347
|
localVarQueryParameter['page'] = page;
|
|
27249
27348
|
}
|
|
@@ -27622,19 +27721,21 @@ exports.ManagersApiFp = function (configuration) {
|
|
|
27622
27721
|
*
|
|
27623
27722
|
* @summary Get all manager affiliations.
|
|
27624
27723
|
* @param {string} managerId
|
|
27724
|
+
* @param {string} [hospitalId]
|
|
27625
27725
|
* @param {string} [hospitalName]
|
|
27726
|
+
* @param {string} [languageCode]
|
|
27626
27727
|
* @param {number} [page]
|
|
27627
27728
|
* @param {number} [limit]
|
|
27628
27729
|
* @param {Date} [lastRetrieved]
|
|
27629
27730
|
* @param {*} [options] Override http request option.
|
|
27630
27731
|
* @throws {RequiredError}
|
|
27631
27732
|
*/
|
|
27632
|
-
apiV1ManagersManagerIdAffiliationsGet: function (managerId, hospitalName, page, limit, lastRetrieved, options) {
|
|
27733
|
+
apiV1ManagersManagerIdAffiliationsGet: function (managerId, hospitalId, hospitalName, languageCode, page, limit, lastRetrieved, options) {
|
|
27633
27734
|
return __awaiter(this, void 0, void 0, function () {
|
|
27634
27735
|
var localVarAxiosArgs;
|
|
27635
27736
|
return __generator(this, function (_a) {
|
|
27636
27737
|
switch (_a.label) {
|
|
27637
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ManagersManagerIdAffiliationsGet(managerId, hospitalName, page, limit, lastRetrieved, options)];
|
|
27738
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ManagersManagerIdAffiliationsGet(managerId, hospitalId, hospitalName, languageCode, page, limit, lastRetrieved, options)];
|
|
27638
27739
|
case 1:
|
|
27639
27740
|
localVarAxiosArgs = _a.sent();
|
|
27640
27741
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -27818,15 +27919,17 @@ exports.ManagersApiFactory = function (configuration, basePath, axios) {
|
|
|
27818
27919
|
*
|
|
27819
27920
|
* @summary Get all manager affiliations.
|
|
27820
27921
|
* @param {string} managerId
|
|
27922
|
+
* @param {string} [hospitalId]
|
|
27821
27923
|
* @param {string} [hospitalName]
|
|
27924
|
+
* @param {string} [languageCode]
|
|
27822
27925
|
* @param {number} [page]
|
|
27823
27926
|
* @param {number} [limit]
|
|
27824
27927
|
* @param {Date} [lastRetrieved]
|
|
27825
27928
|
* @param {*} [options] Override http request option.
|
|
27826
27929
|
* @throws {RequiredError}
|
|
27827
27930
|
*/
|
|
27828
|
-
apiV1ManagersManagerIdAffiliationsGet: function (managerId, hospitalName, page, limit, lastRetrieved, options) {
|
|
27829
|
-
return localVarFp.apiV1ManagersManagerIdAffiliationsGet(managerId, hospitalName, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
27931
|
+
apiV1ManagersManagerIdAffiliationsGet: function (managerId, hospitalId, hospitalName, languageCode, page, limit, lastRetrieved, options) {
|
|
27932
|
+
return localVarFp.apiV1ManagersManagerIdAffiliationsGet(managerId, hospitalId, hospitalName, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
27830
27933
|
},
|
|
27831
27934
|
/**
|
|
27832
27935
|
*
|
|
@@ -27940,7 +28043,9 @@ var ManagersApi = /** @class */ (function (_super) {
|
|
|
27940
28043
|
*
|
|
27941
28044
|
* @summary Get all manager affiliations.
|
|
27942
28045
|
* @param {string} managerId
|
|
28046
|
+
* @param {string} [hospitalId]
|
|
27943
28047
|
* @param {string} [hospitalName]
|
|
28048
|
+
* @param {string} [languageCode]
|
|
27944
28049
|
* @param {number} [page]
|
|
27945
28050
|
* @param {number} [limit]
|
|
27946
28051
|
* @param {Date} [lastRetrieved]
|
|
@@ -27948,9 +28053,9 @@ var ManagersApi = /** @class */ (function (_super) {
|
|
|
27948
28053
|
* @throws {RequiredError}
|
|
27949
28054
|
* @memberof ManagersApi
|
|
27950
28055
|
*/
|
|
27951
|
-
ManagersApi.prototype.apiV1ManagersManagerIdAffiliationsGet = function (managerId, hospitalName, page, limit, lastRetrieved, options) {
|
|
28056
|
+
ManagersApi.prototype.apiV1ManagersManagerIdAffiliationsGet = function (managerId, hospitalId, hospitalName, languageCode, page, limit, lastRetrieved, options) {
|
|
27952
28057
|
var _this = this;
|
|
27953
|
-
return exports.ManagersApiFp(this.configuration).apiV1ManagersManagerIdAffiliationsGet(managerId, hospitalName, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
28058
|
+
return exports.ManagersApiFp(this.configuration).apiV1ManagersManagerIdAffiliationsGet(managerId, hospitalId, hospitalName, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
27954
28059
|
};
|
|
27955
28060
|
/**
|
|
27956
28061
|
*
|
|
@@ -31137,13 +31242,14 @@ exports.ServiceReviewsApiAxiosParamCreator = function (configuration) {
|
|
|
31137
31242
|
* @param {number} [rate]
|
|
31138
31243
|
* @param {ReviewType} [reviewType]
|
|
31139
31244
|
* @param {string} [languageCode]
|
|
31245
|
+
* @param {boolean} [showHidden]
|
|
31140
31246
|
* @param {number} [page]
|
|
31141
31247
|
* @param {number} [limit]
|
|
31142
31248
|
* @param {Date} [lastRetrieved]
|
|
31143
31249
|
* @param {*} [options] Override http request option.
|
|
31144
31250
|
* @throws {RequiredError}
|
|
31145
31251
|
*/
|
|
31146
|
-
apiV1ServicereviewsGet: function (serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, page, limit, lastRetrieved, options) {
|
|
31252
|
+
apiV1ServicereviewsGet: function (serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
31147
31253
|
if (options === void 0) { options = {}; }
|
|
31148
31254
|
return __awaiter(_this, void 0, void 0, function () {
|
|
31149
31255
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -31192,6 +31298,9 @@ exports.ServiceReviewsApiAxiosParamCreator = function (configuration) {
|
|
|
31192
31298
|
if (languageCode !== undefined) {
|
|
31193
31299
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
31194
31300
|
}
|
|
31301
|
+
if (showHidden !== undefined) {
|
|
31302
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
31303
|
+
}
|
|
31195
31304
|
if (page !== undefined) {
|
|
31196
31305
|
localVarQueryParameter['page'] = page;
|
|
31197
31306
|
}
|
|
@@ -31663,18 +31772,19 @@ exports.ServiceReviewsApiFp = function (configuration) {
|
|
|
31663
31772
|
* @param {number} [rate]
|
|
31664
31773
|
* @param {ReviewType} [reviewType]
|
|
31665
31774
|
* @param {string} [languageCode]
|
|
31775
|
+
* @param {boolean} [showHidden]
|
|
31666
31776
|
* @param {number} [page]
|
|
31667
31777
|
* @param {number} [limit]
|
|
31668
31778
|
* @param {Date} [lastRetrieved]
|
|
31669
31779
|
* @param {*} [options] Override http request option.
|
|
31670
31780
|
* @throws {RequiredError}
|
|
31671
31781
|
*/
|
|
31672
|
-
apiV1ServicereviewsGet: function (serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, page, limit, lastRetrieved, options) {
|
|
31782
|
+
apiV1ServicereviewsGet: function (serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
31673
31783
|
return __awaiter(this, void 0, void 0, function () {
|
|
31674
31784
|
var localVarAxiosArgs;
|
|
31675
31785
|
return __generator(this, function (_a) {
|
|
31676
31786
|
switch (_a.label) {
|
|
31677
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, page, limit, lastRetrieved, options)];
|
|
31787
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
31678
31788
|
case 1:
|
|
31679
31789
|
localVarAxiosArgs = _a.sent();
|
|
31680
31790
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -31893,14 +32003,15 @@ exports.ServiceReviewsApiFactory = function (configuration, basePath, axios) {
|
|
|
31893
32003
|
* @param {number} [rate]
|
|
31894
32004
|
* @param {ReviewType} [reviewType]
|
|
31895
32005
|
* @param {string} [languageCode]
|
|
32006
|
+
* @param {boolean} [showHidden]
|
|
31896
32007
|
* @param {number} [page]
|
|
31897
32008
|
* @param {number} [limit]
|
|
31898
32009
|
* @param {Date} [lastRetrieved]
|
|
31899
32010
|
* @param {*} [options] Override http request option.
|
|
31900
32011
|
* @throws {RequiredError}
|
|
31901
32012
|
*/
|
|
31902
|
-
apiV1ServicereviewsGet: function (serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, page, limit, lastRetrieved, options) {
|
|
31903
|
-
return localVarFp.apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
32013
|
+
apiV1ServicereviewsGet: function (serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
32014
|
+
return localVarFp.apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
31904
32015
|
},
|
|
31905
32016
|
/**
|
|
31906
32017
|
*
|
|
@@ -32027,6 +32138,7 @@ var ServiceReviewsApi = /** @class */ (function (_super) {
|
|
|
32027
32138
|
* @param {number} [rate]
|
|
32028
32139
|
* @param {ReviewType} [reviewType]
|
|
32029
32140
|
* @param {string} [languageCode]
|
|
32141
|
+
* @param {boolean} [showHidden]
|
|
32030
32142
|
* @param {number} [page]
|
|
32031
32143
|
* @param {number} [limit]
|
|
32032
32144
|
* @param {Date} [lastRetrieved]
|
|
@@ -32034,9 +32146,9 @@ var ServiceReviewsApi = /** @class */ (function (_super) {
|
|
|
32034
32146
|
* @throws {RequiredError}
|
|
32035
32147
|
* @memberof ServiceReviewsApi
|
|
32036
32148
|
*/
|
|
32037
|
-
ServiceReviewsApi.prototype.apiV1ServicereviewsGet = function (serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, page, limit, lastRetrieved, options) {
|
|
32149
|
+
ServiceReviewsApi.prototype.apiV1ServicereviewsGet = function (serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
32038
32150
|
var _this = this;
|
|
32039
|
-
return exports.ServiceReviewsApiFp(this.configuration).apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
32151
|
+
return exports.ServiceReviewsApiFp(this.configuration).apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
32040
32152
|
};
|
|
32041
32153
|
/**
|
|
32042
32154
|
*
|
|
@@ -32183,15 +32295,15 @@ exports.ServicesApiAxiosParamCreator = function (configuration) {
|
|
|
32183
32295
|
* @param {MarketingType} [marketingType]
|
|
32184
32296
|
* @param {Procedure} [procedure]
|
|
32185
32297
|
* @param {Date} [created]
|
|
32298
|
+
* @param {boolean} [showHidden]
|
|
32186
32299
|
* @param {string} [languageCode]
|
|
32187
|
-
* @param {boolean} [returnDefaultValue]
|
|
32188
32300
|
* @param {number} [page]
|
|
32189
32301
|
* @param {number} [limit]
|
|
32190
32302
|
* @param {Date} [lastRetrieved]
|
|
32191
32303
|
* @param {*} [options] Override http request option.
|
|
32192
32304
|
* @throws {RequiredError}
|
|
32193
32305
|
*/
|
|
32194
|
-
apiV1ServicesGet: function (id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created,
|
|
32306
|
+
apiV1ServicesGet: function (id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options) {
|
|
32195
32307
|
if (options === void 0) { options = {}; }
|
|
32196
32308
|
return __awaiter(_this, void 0, void 0, function () {
|
|
32197
32309
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -32257,12 +32369,12 @@ exports.ServicesApiAxiosParamCreator = function (configuration) {
|
|
|
32257
32369
|
created.toISOString() :
|
|
32258
32370
|
created;
|
|
32259
32371
|
}
|
|
32372
|
+
if (showHidden !== undefined) {
|
|
32373
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
32374
|
+
}
|
|
32260
32375
|
if (languageCode !== undefined) {
|
|
32261
32376
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
32262
32377
|
}
|
|
32263
|
-
if (returnDefaultValue !== undefined) {
|
|
32264
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
32265
|
-
}
|
|
32266
32378
|
if (page !== undefined) {
|
|
32267
32379
|
localVarQueryParameter['page'] = page;
|
|
32268
32380
|
}
|
|
@@ -32411,20 +32523,20 @@ exports.ServicesApiFp = function (configuration) {
|
|
|
32411
32523
|
* @param {MarketingType} [marketingType]
|
|
32412
32524
|
* @param {Procedure} [procedure]
|
|
32413
32525
|
* @param {Date} [created]
|
|
32526
|
+
* @param {boolean} [showHidden]
|
|
32414
32527
|
* @param {string} [languageCode]
|
|
32415
|
-
* @param {boolean} [returnDefaultValue]
|
|
32416
32528
|
* @param {number} [page]
|
|
32417
32529
|
* @param {number} [limit]
|
|
32418
32530
|
* @param {Date} [lastRetrieved]
|
|
32419
32531
|
* @param {*} [options] Override http request option.
|
|
32420
32532
|
* @throws {RequiredError}
|
|
32421
32533
|
*/
|
|
32422
|
-
apiV1ServicesGet: function (id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created,
|
|
32534
|
+
apiV1ServicesGet: function (id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options) {
|
|
32423
32535
|
return __awaiter(this, void 0, void 0, function () {
|
|
32424
32536
|
var localVarAxiosArgs;
|
|
32425
32537
|
return __generator(this, function (_a) {
|
|
32426
32538
|
switch (_a.label) {
|
|
32427
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created,
|
|
32539
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options)];
|
|
32428
32540
|
case 1:
|
|
32429
32541
|
localVarAxiosArgs = _a.sent();
|
|
32430
32542
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -32500,16 +32612,16 @@ exports.ServicesApiFactory = function (configuration, basePath, axios) {
|
|
|
32500
32612
|
* @param {MarketingType} [marketingType]
|
|
32501
32613
|
* @param {Procedure} [procedure]
|
|
32502
32614
|
* @param {Date} [created]
|
|
32615
|
+
* @param {boolean} [showHidden]
|
|
32503
32616
|
* @param {string} [languageCode]
|
|
32504
|
-
* @param {boolean} [returnDefaultValue]
|
|
32505
32617
|
* @param {number} [page]
|
|
32506
32618
|
* @param {number} [limit]
|
|
32507
32619
|
* @param {Date} [lastRetrieved]
|
|
32508
32620
|
* @param {*} [options] Override http request option.
|
|
32509
32621
|
* @throws {RequiredError}
|
|
32510
32622
|
*/
|
|
32511
|
-
apiV1ServicesGet: function (id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created,
|
|
32512
|
-
return localVarFp.apiV1ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created,
|
|
32623
|
+
apiV1ServicesGet: function (id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options) {
|
|
32624
|
+
return localVarFp.apiV1ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
32513
32625
|
},
|
|
32514
32626
|
/**
|
|
32515
32627
|
*
|
|
@@ -32563,8 +32675,8 @@ var ServicesApi = /** @class */ (function (_super) {
|
|
|
32563
32675
|
* @param {MarketingType} [marketingType]
|
|
32564
32676
|
* @param {Procedure} [procedure]
|
|
32565
32677
|
* @param {Date} [created]
|
|
32678
|
+
* @param {boolean} [showHidden]
|
|
32566
32679
|
* @param {string} [languageCode]
|
|
32567
|
-
* @param {boolean} [returnDefaultValue]
|
|
32568
32680
|
* @param {number} [page]
|
|
32569
32681
|
* @param {number} [limit]
|
|
32570
32682
|
* @param {Date} [lastRetrieved]
|
|
@@ -32572,9 +32684,9 @@ var ServicesApi = /** @class */ (function (_super) {
|
|
|
32572
32684
|
* @throws {RequiredError}
|
|
32573
32685
|
* @memberof ServicesApi
|
|
32574
32686
|
*/
|
|
32575
|
-
ServicesApi.prototype.apiV1ServicesGet = function (id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created,
|
|
32687
|
+
ServicesApi.prototype.apiV1ServicesGet = function (id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options) {
|
|
32576
32688
|
var _this = this;
|
|
32577
|
-
return exports.ServicesApiFp(this.configuration).apiV1ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created,
|
|
32689
|
+
return exports.ServicesApiFp(this.configuration).apiV1ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
32578
32690
|
};
|
|
32579
32691
|
/**
|
|
32580
32692
|
*
|