ch-admin-api-client-typescript 2.8.10 → 2.8.13
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 +56 -24
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +76 -41
- package/package.json +1 -1
- package/src/api.ts +93 -41
package/lib/api.js
CHANGED
|
@@ -6635,10 +6635,11 @@ exports.ContributorsApiAxiosParamCreator = function (configuration) {
|
|
|
6635
6635
|
* @summary Get Contributor.
|
|
6636
6636
|
* @param {string} contributorId
|
|
6637
6637
|
* @param {string} [languageCode]
|
|
6638
|
+
* @param {boolean} [returnDefaultValue]
|
|
6638
6639
|
* @param {*} [options] Override http request option.
|
|
6639
6640
|
* @throws {RequiredError}
|
|
6640
6641
|
*/
|
|
6641
|
-
apiV1ContributorsContributorIdGet: function (contributorId, languageCode, options) {
|
|
6642
|
+
apiV1ContributorsContributorIdGet: function (contributorId, languageCode, returnDefaultValue, options) {
|
|
6642
6643
|
if (options === void 0) { options = {}; }
|
|
6643
6644
|
return __awaiter(_this, void 0, void 0, function () {
|
|
6644
6645
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -6666,6 +6667,9 @@ exports.ContributorsApiAxiosParamCreator = function (configuration) {
|
|
|
6666
6667
|
if (languageCode !== undefined) {
|
|
6667
6668
|
localVarQueryParameter['languageCode'] = languageCode;
|
|
6668
6669
|
}
|
|
6670
|
+
if (returnDefaultValue !== undefined) {
|
|
6671
|
+
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
6672
|
+
}
|
|
6669
6673
|
common_1.setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6670
6674
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6671
6675
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -6996,15 +7000,16 @@ exports.ContributorsApiAxiosParamCreator = function (configuration) {
|
|
|
6996
7000
|
* @param {string} [website]
|
|
6997
7001
|
* @param {string} [hospitalId]
|
|
6998
7002
|
* @param {boolean} [interviewerOnly]
|
|
6999
|
-
* @param {string} [languageCode]
|
|
7000
7003
|
* @param {boolean} [showHidden]
|
|
7004
|
+
* @param {string} [languageCode]
|
|
7005
|
+
* @param {boolean} [returnDefaultValue]
|
|
7001
7006
|
* @param {number} [page]
|
|
7002
7007
|
* @param {number} [limit]
|
|
7003
7008
|
* @param {Date} [lastRetrieved]
|
|
7004
7009
|
* @param {*} [options] Override http request option.
|
|
7005
7010
|
* @throws {RequiredError}
|
|
7006
7011
|
*/
|
|
7007
|
-
apiV1ContributorsGet: function (id, name, email, description, website, hospitalId, interviewerOnly, languageCode,
|
|
7012
|
+
apiV1ContributorsGet: function (id, name, email, description, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
7008
7013
|
if (options === void 0) { options = {}; }
|
|
7009
7014
|
return __awaiter(_this, void 0, void 0, function () {
|
|
7010
7015
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -7047,11 +7052,14 @@ exports.ContributorsApiAxiosParamCreator = function (configuration) {
|
|
|
7047
7052
|
if (interviewerOnly !== undefined) {
|
|
7048
7053
|
localVarQueryParameter['InterviewerOnly'] = interviewerOnly;
|
|
7049
7054
|
}
|
|
7055
|
+
if (showHidden !== undefined) {
|
|
7056
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
7057
|
+
}
|
|
7050
7058
|
if (languageCode !== undefined) {
|
|
7051
7059
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
7052
7060
|
}
|
|
7053
|
-
if (
|
|
7054
|
-
localVarQueryParameter['
|
|
7061
|
+
if (returnDefaultValue !== undefined) {
|
|
7062
|
+
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
7055
7063
|
}
|
|
7056
7064
|
if (page !== undefined) {
|
|
7057
7065
|
localVarQueryParameter['page'] = page;
|
|
@@ -7122,10 +7130,11 @@ exports.ContributorsApiAxiosParamCreator = function (configuration) {
|
|
|
7122
7130
|
* @summary Get Contributor by slug.
|
|
7123
7131
|
* @param {string} slug
|
|
7124
7132
|
* @param {string} [languageCode]
|
|
7133
|
+
* @param {boolean} [returnDefaultValue]
|
|
7125
7134
|
* @param {*} [options] Override http request option.
|
|
7126
7135
|
* @throws {RequiredError}
|
|
7127
7136
|
*/
|
|
7128
|
-
apiV1ContributorsSlugGet: function (slug, languageCode, options) {
|
|
7137
|
+
apiV1ContributorsSlugGet: function (slug, languageCode, returnDefaultValue, options) {
|
|
7129
7138
|
if (options === void 0) { options = {}; }
|
|
7130
7139
|
return __awaiter(_this, void 0, void 0, function () {
|
|
7131
7140
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -7153,6 +7162,9 @@ exports.ContributorsApiAxiosParamCreator = function (configuration) {
|
|
|
7153
7162
|
if (languageCode !== undefined) {
|
|
7154
7163
|
localVarQueryParameter['languageCode'] = languageCode;
|
|
7155
7164
|
}
|
|
7165
|
+
if (returnDefaultValue !== undefined) {
|
|
7166
|
+
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
7167
|
+
}
|
|
7156
7168
|
common_1.setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7157
7169
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7158
7170
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -7198,15 +7210,16 @@ exports.ContributorsApiFp = function (configuration) {
|
|
|
7198
7210
|
* @summary Get Contributor.
|
|
7199
7211
|
* @param {string} contributorId
|
|
7200
7212
|
* @param {string} [languageCode]
|
|
7213
|
+
* @param {boolean} [returnDefaultValue]
|
|
7201
7214
|
* @param {*} [options] Override http request option.
|
|
7202
7215
|
* @throws {RequiredError}
|
|
7203
7216
|
*/
|
|
7204
|
-
apiV1ContributorsContributorIdGet: function (contributorId, languageCode, options) {
|
|
7217
|
+
apiV1ContributorsContributorIdGet: function (contributorId, languageCode, returnDefaultValue, options) {
|
|
7205
7218
|
return __awaiter(this, void 0, void 0, function () {
|
|
7206
7219
|
var localVarAxiosArgs;
|
|
7207
7220
|
return __generator(this, function (_a) {
|
|
7208
7221
|
switch (_a.label) {
|
|
7209
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ContributorsContributorIdGet(contributorId, languageCode, options)];
|
|
7222
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ContributorsContributorIdGet(contributorId, languageCode, returnDefaultValue, options)];
|
|
7210
7223
|
case 1:
|
|
7211
7224
|
localVarAxiosArgs = _a.sent();
|
|
7212
7225
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -7357,20 +7370,21 @@ exports.ContributorsApiFp = function (configuration) {
|
|
|
7357
7370
|
* @param {string} [website]
|
|
7358
7371
|
* @param {string} [hospitalId]
|
|
7359
7372
|
* @param {boolean} [interviewerOnly]
|
|
7360
|
-
* @param {string} [languageCode]
|
|
7361
7373
|
* @param {boolean} [showHidden]
|
|
7374
|
+
* @param {string} [languageCode]
|
|
7375
|
+
* @param {boolean} [returnDefaultValue]
|
|
7362
7376
|
* @param {number} [page]
|
|
7363
7377
|
* @param {number} [limit]
|
|
7364
7378
|
* @param {Date} [lastRetrieved]
|
|
7365
7379
|
* @param {*} [options] Override http request option.
|
|
7366
7380
|
* @throws {RequiredError}
|
|
7367
7381
|
*/
|
|
7368
|
-
apiV1ContributorsGet: function (id, name, email, description, website, hospitalId, interviewerOnly, languageCode,
|
|
7382
|
+
apiV1ContributorsGet: function (id, name, email, description, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
7369
7383
|
return __awaiter(this, void 0, void 0, function () {
|
|
7370
7384
|
var localVarAxiosArgs;
|
|
7371
7385
|
return __generator(this, function (_a) {
|
|
7372
7386
|
switch (_a.label) {
|
|
7373
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ContributorsGet(id, name, email, description, website, hospitalId, interviewerOnly, languageCode,
|
|
7387
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ContributorsGet(id, name, email, description, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options)];
|
|
7374
7388
|
case 1:
|
|
7375
7389
|
localVarAxiosArgs = _a.sent();
|
|
7376
7390
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -7403,15 +7417,16 @@ exports.ContributorsApiFp = function (configuration) {
|
|
|
7403
7417
|
* @summary Get Contributor by slug.
|
|
7404
7418
|
* @param {string} slug
|
|
7405
7419
|
* @param {string} [languageCode]
|
|
7420
|
+
* @param {boolean} [returnDefaultValue]
|
|
7406
7421
|
* @param {*} [options] Override http request option.
|
|
7407
7422
|
* @throws {RequiredError}
|
|
7408
7423
|
*/
|
|
7409
|
-
apiV1ContributorsSlugGet: function (slug, languageCode, options) {
|
|
7424
|
+
apiV1ContributorsSlugGet: function (slug, languageCode, returnDefaultValue, options) {
|
|
7410
7425
|
return __awaiter(this, void 0, void 0, function () {
|
|
7411
7426
|
var localVarAxiosArgs;
|
|
7412
7427
|
return __generator(this, function (_a) {
|
|
7413
7428
|
switch (_a.label) {
|
|
7414
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ContributorsSlugGet(slug, languageCode, options)];
|
|
7429
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ContributorsSlugGet(slug, languageCode, returnDefaultValue, options)];
|
|
7415
7430
|
case 1:
|
|
7416
7431
|
localVarAxiosArgs = _a.sent();
|
|
7417
7432
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -7443,11 +7458,12 @@ exports.ContributorsApiFactory = function (configuration, basePath, axios) {
|
|
|
7443
7458
|
* @summary Get Contributor.
|
|
7444
7459
|
* @param {string} contributorId
|
|
7445
7460
|
* @param {string} [languageCode]
|
|
7461
|
+
* @param {boolean} [returnDefaultValue]
|
|
7446
7462
|
* @param {*} [options] Override http request option.
|
|
7447
7463
|
* @throws {RequiredError}
|
|
7448
7464
|
*/
|
|
7449
|
-
apiV1ContributorsContributorIdGet: function (contributorId, languageCode, options) {
|
|
7450
|
-
return localVarFp.apiV1ContributorsContributorIdGet(contributorId, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
7465
|
+
apiV1ContributorsContributorIdGet: function (contributorId, languageCode, returnDefaultValue, options) {
|
|
7466
|
+
return localVarFp.apiV1ContributorsContributorIdGet(contributorId, languageCode, returnDefaultValue, options).then(function (request) { return request(axios, basePath); });
|
|
7451
7467
|
},
|
|
7452
7468
|
/**
|
|
7453
7469
|
*
|
|
@@ -7532,16 +7548,17 @@ exports.ContributorsApiFactory = function (configuration, basePath, axios) {
|
|
|
7532
7548
|
* @param {string} [website]
|
|
7533
7549
|
* @param {string} [hospitalId]
|
|
7534
7550
|
* @param {boolean} [interviewerOnly]
|
|
7535
|
-
* @param {string} [languageCode]
|
|
7536
7551
|
* @param {boolean} [showHidden]
|
|
7552
|
+
* @param {string} [languageCode]
|
|
7553
|
+
* @param {boolean} [returnDefaultValue]
|
|
7537
7554
|
* @param {number} [page]
|
|
7538
7555
|
* @param {number} [limit]
|
|
7539
7556
|
* @param {Date} [lastRetrieved]
|
|
7540
7557
|
* @param {*} [options] Override http request option.
|
|
7541
7558
|
* @throws {RequiredError}
|
|
7542
7559
|
*/
|
|
7543
|
-
apiV1ContributorsGet: function (id, name, email, description, website, hospitalId, interviewerOnly, languageCode,
|
|
7544
|
-
return localVarFp.apiV1ContributorsGet(id, name, email, description, website, hospitalId, interviewerOnly, languageCode,
|
|
7560
|
+
apiV1ContributorsGet: function (id, name, email, description, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
7561
|
+
return localVarFp.apiV1ContributorsGet(id, name, email, description, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
7545
7562
|
},
|
|
7546
7563
|
/**
|
|
7547
7564
|
*
|
|
@@ -7558,11 +7575,12 @@ exports.ContributorsApiFactory = function (configuration, basePath, axios) {
|
|
|
7558
7575
|
* @summary Get Contributor by slug.
|
|
7559
7576
|
* @param {string} slug
|
|
7560
7577
|
* @param {string} [languageCode]
|
|
7578
|
+
* @param {boolean} [returnDefaultValue]
|
|
7561
7579
|
* @param {*} [options] Override http request option.
|
|
7562
7580
|
* @throws {RequiredError}
|
|
7563
7581
|
*/
|
|
7564
|
-
apiV1ContributorsSlugGet: function (slug, languageCode, options) {
|
|
7565
|
-
return localVarFp.apiV1ContributorsSlugGet(slug, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
7582
|
+
apiV1ContributorsSlugGet: function (slug, languageCode, returnDefaultValue, options) {
|
|
7583
|
+
return localVarFp.apiV1ContributorsSlugGet(slug, languageCode, returnDefaultValue, options).then(function (request) { return request(axios, basePath); });
|
|
7566
7584
|
},
|
|
7567
7585
|
};
|
|
7568
7586
|
};
|
|
@@ -7594,13 +7612,14 @@ var ContributorsApi = /** @class */ (function (_super) {
|
|
|
7594
7612
|
* @summary Get Contributor.
|
|
7595
7613
|
* @param {string} contributorId
|
|
7596
7614
|
* @param {string} [languageCode]
|
|
7615
|
+
* @param {boolean} [returnDefaultValue]
|
|
7597
7616
|
* @param {*} [options] Override http request option.
|
|
7598
7617
|
* @throws {RequiredError}
|
|
7599
7618
|
* @memberof ContributorsApi
|
|
7600
7619
|
*/
|
|
7601
|
-
ContributorsApi.prototype.apiV1ContributorsContributorIdGet = function (contributorId, languageCode, options) {
|
|
7620
|
+
ContributorsApi.prototype.apiV1ContributorsContributorIdGet = function (contributorId, languageCode, returnDefaultValue, options) {
|
|
7602
7621
|
var _this = this;
|
|
7603
|
-
return exports.ContributorsApiFp(this.configuration).apiV1ContributorsContributorIdGet(contributorId, languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7622
|
+
return exports.ContributorsApiFp(this.configuration).apiV1ContributorsContributorIdGet(contributorId, languageCode, returnDefaultValue, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7604
7623
|
};
|
|
7605
7624
|
/**
|
|
7606
7625
|
*
|
|
@@ -7697,8 +7716,9 @@ var ContributorsApi = /** @class */ (function (_super) {
|
|
|
7697
7716
|
* @param {string} [website]
|
|
7698
7717
|
* @param {string} [hospitalId]
|
|
7699
7718
|
* @param {boolean} [interviewerOnly]
|
|
7700
|
-
* @param {string} [languageCode]
|
|
7701
7719
|
* @param {boolean} [showHidden]
|
|
7720
|
+
* @param {string} [languageCode]
|
|
7721
|
+
* @param {boolean} [returnDefaultValue]
|
|
7702
7722
|
* @param {number} [page]
|
|
7703
7723
|
* @param {number} [limit]
|
|
7704
7724
|
* @param {Date} [lastRetrieved]
|
|
@@ -7706,9 +7726,9 @@ var ContributorsApi = /** @class */ (function (_super) {
|
|
|
7706
7726
|
* @throws {RequiredError}
|
|
7707
7727
|
* @memberof ContributorsApi
|
|
7708
7728
|
*/
|
|
7709
|
-
ContributorsApi.prototype.apiV1ContributorsGet = function (id, name, email, description, website, hospitalId, interviewerOnly, languageCode,
|
|
7729
|
+
ContributorsApi.prototype.apiV1ContributorsGet = function (id, name, email, description, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
7710
7730
|
var _this = this;
|
|
7711
|
-
return exports.ContributorsApiFp(this.configuration).apiV1ContributorsGet(id, name, email, description, website, hospitalId, interviewerOnly, languageCode,
|
|
7731
|
+
return exports.ContributorsApiFp(this.configuration).apiV1ContributorsGet(id, name, email, description, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7712
7732
|
};
|
|
7713
7733
|
/**
|
|
7714
7734
|
*
|
|
@@ -7727,13 +7747,14 @@ var ContributorsApi = /** @class */ (function (_super) {
|
|
|
7727
7747
|
* @summary Get Contributor by slug.
|
|
7728
7748
|
* @param {string} slug
|
|
7729
7749
|
* @param {string} [languageCode]
|
|
7750
|
+
* @param {boolean} [returnDefaultValue]
|
|
7730
7751
|
* @param {*} [options] Override http request option.
|
|
7731
7752
|
* @throws {RequiredError}
|
|
7732
7753
|
* @memberof ContributorsApi
|
|
7733
7754
|
*/
|
|
7734
|
-
ContributorsApi.prototype.apiV1ContributorsSlugGet = function (slug, languageCode, options) {
|
|
7755
|
+
ContributorsApi.prototype.apiV1ContributorsSlugGet = function (slug, languageCode, returnDefaultValue, options) {
|
|
7735
7756
|
var _this = this;
|
|
7736
|
-
return exports.ContributorsApiFp(this.configuration).apiV1ContributorsSlugGet(slug, languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7757
|
+
return exports.ContributorsApiFp(this.configuration).apiV1ContributorsSlugGet(slug, languageCode, returnDefaultValue, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7737
7758
|
};
|
|
7738
7759
|
return ContributorsApi;
|
|
7739
7760
|
}(base_1.BaseAPI));
|
|
@@ -18782,6 +18803,7 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
18782
18803
|
* @param {string} [specialtyId]
|
|
18783
18804
|
* @param {string} [specialtyName]
|
|
18784
18805
|
* @param {string} [specialtyTypeId]
|
|
18806
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
18785
18807
|
* @param {string} [title]
|
|
18786
18808
|
* @param {MarketingType} [marketingType]
|
|
18787
18809
|
* @param {string} [languageCode]
|
|
@@ -18794,7 +18816,7 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
18794
18816
|
* @param {*} [options] Override http request option.
|
|
18795
18817
|
* @throws {RequiredError}
|
|
18796
18818
|
*/
|
|
18797
|
-
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
18819
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
18798
18820
|
if (options === void 0) { options = {}; }
|
|
18799
18821
|
return __awaiter(_this, void 0, void 0, function () {
|
|
18800
18822
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -18834,6 +18856,9 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
18834
18856
|
if (specialtyTypeId !== undefined) {
|
|
18835
18857
|
localVarQueryParameter['SpecialtyTypeId'] = specialtyTypeId;
|
|
18836
18858
|
}
|
|
18859
|
+
if (hospitalSpecialtySlug !== undefined) {
|
|
18860
|
+
localVarQueryParameter['HospitalSpecialtySlug'] = hospitalSpecialtySlug;
|
|
18861
|
+
}
|
|
18837
18862
|
if (title !== undefined) {
|
|
18838
18863
|
localVarQueryParameter['Title'] = title;
|
|
18839
18864
|
}
|
|
@@ -18929,6 +18954,7 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
18929
18954
|
* @param {string} [specialtyId]
|
|
18930
18955
|
* @param {string} [specialtyName]
|
|
18931
18956
|
* @param {string} [specialtyTypeId]
|
|
18957
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
18932
18958
|
* @param {string} [title]
|
|
18933
18959
|
* @param {MarketingType} [marketingType]
|
|
18934
18960
|
* @param {string} [languageCode]
|
|
@@ -18941,7 +18967,7 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
18941
18967
|
* @param {*} [options] Override http request option.
|
|
18942
18968
|
* @throws {RequiredError}
|
|
18943
18969
|
*/
|
|
18944
|
-
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
18970
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
18945
18971
|
if (options === void 0) { options = {}; }
|
|
18946
18972
|
return __awaiter(_this, void 0, void 0, function () {
|
|
18947
18973
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -18981,6 +19007,9 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
18981
19007
|
if (specialtyTypeId !== undefined) {
|
|
18982
19008
|
localVarQueryParameter['SpecialtyTypeId'] = specialtyTypeId;
|
|
18983
19009
|
}
|
|
19010
|
+
if (hospitalSpecialtySlug !== undefined) {
|
|
19011
|
+
localVarQueryParameter['HospitalSpecialtySlug'] = hospitalSpecialtySlug;
|
|
19012
|
+
}
|
|
18984
19013
|
if (title !== undefined) {
|
|
18985
19014
|
localVarQueryParameter['Title'] = title;
|
|
18986
19015
|
}
|
|
@@ -20657,6 +20686,7 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
20657
20686
|
* @param {string} [specialtyId]
|
|
20658
20687
|
* @param {string} [specialtyName]
|
|
20659
20688
|
* @param {string} [specialtyTypeId]
|
|
20689
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
20660
20690
|
* @param {string} [title]
|
|
20661
20691
|
* @param {MarketingType} [marketingType]
|
|
20662
20692
|
* @param {string} [languageCode]
|
|
@@ -20669,12 +20699,12 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
20669
20699
|
* @param {*} [options] Override http request option.
|
|
20670
20700
|
* @throws {RequiredError}
|
|
20671
20701
|
*/
|
|
20672
|
-
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
20702
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
20673
20703
|
return __awaiter(this, void 0, void 0, function () {
|
|
20674
20704
|
var localVarAxiosArgs;
|
|
20675
20705
|
return __generator(this, function (_a) {
|
|
20676
20706
|
switch (_a.label) {
|
|
20677
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options)];
|
|
20707
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options)];
|
|
20678
20708
|
case 1:
|
|
20679
20709
|
localVarAxiosArgs = _a.sent();
|
|
20680
20710
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -20712,6 +20742,7 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
20712
20742
|
* @param {string} [specialtyId]
|
|
20713
20743
|
* @param {string} [specialtyName]
|
|
20714
20744
|
* @param {string} [specialtyTypeId]
|
|
20745
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
20715
20746
|
* @param {string} [title]
|
|
20716
20747
|
* @param {MarketingType} [marketingType]
|
|
20717
20748
|
* @param {string} [languageCode]
|
|
@@ -20724,12 +20755,12 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
20724
20755
|
* @param {*} [options] Override http request option.
|
|
20725
20756
|
* @throws {RequiredError}
|
|
20726
20757
|
*/
|
|
20727
|
-
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
20758
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
20728
20759
|
return __awaiter(this, void 0, void 0, function () {
|
|
20729
20760
|
var localVarAxiosArgs;
|
|
20730
20761
|
return __generator(this, function (_a) {
|
|
20731
20762
|
switch (_a.label) {
|
|
20732
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options)];
|
|
20763
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options)];
|
|
20733
20764
|
case 1:
|
|
20734
20765
|
localVarAxiosArgs = _a.sent();
|
|
20735
20766
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -21502,6 +21533,7 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
21502
21533
|
* @param {string} [specialtyId]
|
|
21503
21534
|
* @param {string} [specialtyName]
|
|
21504
21535
|
* @param {string} [specialtyTypeId]
|
|
21536
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
21505
21537
|
* @param {string} [title]
|
|
21506
21538
|
* @param {MarketingType} [marketingType]
|
|
21507
21539
|
* @param {string} [languageCode]
|
|
@@ -21514,8 +21546,8 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
21514
21546
|
* @param {*} [options] Override http request option.
|
|
21515
21547
|
* @throws {RequiredError}
|
|
21516
21548
|
*/
|
|
21517
|
-
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
21518
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
21549
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
21550
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
21519
21551
|
},
|
|
21520
21552
|
/**
|
|
21521
21553
|
*
|
|
@@ -21537,6 +21569,7 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
21537
21569
|
* @param {string} [specialtyId]
|
|
21538
21570
|
* @param {string} [specialtyName]
|
|
21539
21571
|
* @param {string} [specialtyTypeId]
|
|
21572
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
21540
21573
|
* @param {string} [title]
|
|
21541
21574
|
* @param {MarketingType} [marketingType]
|
|
21542
21575
|
* @param {string} [languageCode]
|
|
@@ -21549,8 +21582,8 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
21549
21582
|
* @param {*} [options] Override http request option.
|
|
21550
21583
|
* @throws {RequiredError}
|
|
21551
21584
|
*/
|
|
21552
|
-
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
21553
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
21585
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
21586
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
21554
21587
|
},
|
|
21555
21588
|
/**
|
|
21556
21589
|
*
|
|
@@ -22217,6 +22250,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
22217
22250
|
* @param {string} [specialtyId]
|
|
22218
22251
|
* @param {string} [specialtyName]
|
|
22219
22252
|
* @param {string} [specialtyTypeId]
|
|
22253
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
22220
22254
|
* @param {string} [title]
|
|
22221
22255
|
* @param {MarketingType} [marketingType]
|
|
22222
22256
|
* @param {string} [languageCode]
|
|
@@ -22230,9 +22264,9 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
22230
22264
|
* @throws {RequiredError}
|
|
22231
22265
|
* @memberof HospitalsApi
|
|
22232
22266
|
*/
|
|
22233
|
-
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesGet = function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
22267
|
+
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesGet = function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
22234
22268
|
var _this = this;
|
|
22235
|
-
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
22269
|
+
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
22236
22270
|
};
|
|
22237
22271
|
/**
|
|
22238
22272
|
*
|
|
@@ -22256,6 +22290,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
22256
22290
|
* @param {string} [specialtyId]
|
|
22257
22291
|
* @param {string} [specialtyName]
|
|
22258
22292
|
* @param {string} [specialtyTypeId]
|
|
22293
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
22259
22294
|
* @param {string} [title]
|
|
22260
22295
|
* @param {MarketingType} [marketingType]
|
|
22261
22296
|
* @param {string} [languageCode]
|
|
@@ -22269,9 +22304,9 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
22269
22304
|
* @throws {RequiredError}
|
|
22270
22305
|
* @memberof HospitalsApi
|
|
22271
22306
|
*/
|
|
22272
|
-
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesSimpleGet = function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
22307
|
+
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesSimpleGet = function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
22273
22308
|
var _this = this;
|
|
22274
|
-
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
22309
|
+
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
22275
22310
|
};
|
|
22276
22311
|
/**
|
|
22277
22312
|
*
|