ch-admin-api-client-typescript 2.1.4 → 2.1.5
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 +24 -36
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +42 -63
- package/package.json +1 -1
- package/src/api.ts +44 -68
package/lib/api.js
CHANGED
|
@@ -1041,7 +1041,6 @@ exports.ArticlesApiAxiosParamCreator = function (configuration) {
|
|
|
1041
1041
|
*
|
|
1042
1042
|
* @summary GetAll ArticleContributors.
|
|
1043
1043
|
* @param {string} articleId
|
|
1044
|
-
* @param {string} [articleId2]
|
|
1045
1044
|
* @param {string} [articleName]
|
|
1046
1045
|
* @param {string} [contributorId]
|
|
1047
1046
|
* @param {string} [contributorName]
|
|
@@ -1055,7 +1054,7 @@ exports.ArticlesApiAxiosParamCreator = function (configuration) {
|
|
|
1055
1054
|
* @param {*} [options] Override http request option.
|
|
1056
1055
|
* @throws {RequiredError}
|
|
1057
1056
|
*/
|
|
1058
|
-
apiV1ArticlesArticleIdContributorsGet: function (articleId,
|
|
1057
|
+
apiV1ArticlesArticleIdContributorsGet: function (articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options) {
|
|
1059
1058
|
if (options === void 0) { options = {}; }
|
|
1060
1059
|
return __awaiter(_this, void 0, void 0, function () {
|
|
1061
1060
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -1080,9 +1079,6 @@ exports.ArticlesApiAxiosParamCreator = function (configuration) {
|
|
|
1080
1079
|
// authentication oauth2 required
|
|
1081
1080
|
// oauth required
|
|
1082
1081
|
_a.sent();
|
|
1083
|
-
if (articleId2 !== undefined) {
|
|
1084
|
-
localVarQueryParameter['ArticleId'] = articleId2;
|
|
1085
|
-
}
|
|
1086
1082
|
if (articleName !== undefined) {
|
|
1087
1083
|
localVarQueryParameter['ArticleName'] = articleName;
|
|
1088
1084
|
}
|
|
@@ -1814,7 +1810,6 @@ exports.ArticlesApiAxiosParamCreator = function (configuration) {
|
|
|
1814
1810
|
*
|
|
1815
1811
|
* @summary GetAll ArticleContributors.
|
|
1816
1812
|
* @param {string} articleId
|
|
1817
|
-
* @param {string} [articleId2]
|
|
1818
1813
|
* @param {string} [articleName]
|
|
1819
1814
|
* @param {string} [contributorId]
|
|
1820
1815
|
* @param {string} [contributorName]
|
|
@@ -1828,7 +1823,7 @@ exports.ArticlesApiAxiosParamCreator = function (configuration) {
|
|
|
1828
1823
|
* @param {*} [options] Override http request option.
|
|
1829
1824
|
* @throws {RequiredError}
|
|
1830
1825
|
*/
|
|
1831
|
-
apiV1ArticlesArticleIdTagsGet: function (articleId,
|
|
1826
|
+
apiV1ArticlesArticleIdTagsGet: function (articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options) {
|
|
1832
1827
|
if (options === void 0) { options = {}; }
|
|
1833
1828
|
return __awaiter(_this, void 0, void 0, function () {
|
|
1834
1829
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -1853,9 +1848,6 @@ exports.ArticlesApiAxiosParamCreator = function (configuration) {
|
|
|
1853
1848
|
// authentication oauth2 required
|
|
1854
1849
|
// oauth required
|
|
1855
1850
|
_a.sent();
|
|
1856
|
-
if (articleId2 !== undefined) {
|
|
1857
|
-
localVarQueryParameter['ArticleId'] = articleId2;
|
|
1858
|
-
}
|
|
1859
1851
|
if (articleName !== undefined) {
|
|
1860
1852
|
localVarQueryParameter['ArticleName'] = articleName;
|
|
1861
1853
|
}
|
|
@@ -2325,7 +2317,6 @@ exports.ArticlesApiFp = function (configuration) {
|
|
|
2325
2317
|
*
|
|
2326
2318
|
* @summary GetAll ArticleContributors.
|
|
2327
2319
|
* @param {string} articleId
|
|
2328
|
-
* @param {string} [articleId2]
|
|
2329
2320
|
* @param {string} [articleName]
|
|
2330
2321
|
* @param {string} [contributorId]
|
|
2331
2322
|
* @param {string} [contributorName]
|
|
@@ -2339,12 +2330,12 @@ exports.ArticlesApiFp = function (configuration) {
|
|
|
2339
2330
|
* @param {*} [options] Override http request option.
|
|
2340
2331
|
* @throws {RequiredError}
|
|
2341
2332
|
*/
|
|
2342
|
-
apiV1ArticlesArticleIdContributorsGet: function (articleId,
|
|
2333
|
+
apiV1ArticlesArticleIdContributorsGet: function (articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options) {
|
|
2343
2334
|
return __awaiter(this, void 0, void 0, function () {
|
|
2344
2335
|
var localVarAxiosArgs;
|
|
2345
2336
|
return __generator(this, function (_a) {
|
|
2346
2337
|
switch (_a.label) {
|
|
2347
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ArticlesArticleIdContributorsGet(articleId,
|
|
2338
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options)];
|
|
2348
2339
|
case 1:
|
|
2349
2340
|
localVarAxiosArgs = _a.sent();
|
|
2350
2341
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -2657,7 +2648,6 @@ exports.ArticlesApiFp = function (configuration) {
|
|
|
2657
2648
|
*
|
|
2658
2649
|
* @summary GetAll ArticleContributors.
|
|
2659
2650
|
* @param {string} articleId
|
|
2660
|
-
* @param {string} [articleId2]
|
|
2661
2651
|
* @param {string} [articleName]
|
|
2662
2652
|
* @param {string} [contributorId]
|
|
2663
2653
|
* @param {string} [contributorName]
|
|
@@ -2671,12 +2661,12 @@ exports.ArticlesApiFp = function (configuration) {
|
|
|
2671
2661
|
* @param {*} [options] Override http request option.
|
|
2672
2662
|
* @throws {RequiredError}
|
|
2673
2663
|
*/
|
|
2674
|
-
apiV1ArticlesArticleIdTagsGet: function (articleId,
|
|
2664
|
+
apiV1ArticlesArticleIdTagsGet: function (articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options) {
|
|
2675
2665
|
return __awaiter(this, void 0, void 0, function () {
|
|
2676
2666
|
var localVarAxiosArgs;
|
|
2677
2667
|
return __generator(this, function (_a) {
|
|
2678
2668
|
switch (_a.label) {
|
|
2679
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ArticlesArticleIdTagsGet(articleId,
|
|
2669
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ArticlesArticleIdTagsGet(articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options)];
|
|
2680
2670
|
case 1:
|
|
2681
2671
|
localVarAxiosArgs = _a.sent();
|
|
2682
2672
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -2873,7 +2863,6 @@ exports.ArticlesApiFactory = function (configuration, basePath, axios) {
|
|
|
2873
2863
|
*
|
|
2874
2864
|
* @summary GetAll ArticleContributors.
|
|
2875
2865
|
* @param {string} articleId
|
|
2876
|
-
* @param {string} [articleId2]
|
|
2877
2866
|
* @param {string} [articleName]
|
|
2878
2867
|
* @param {string} [contributorId]
|
|
2879
2868
|
* @param {string} [contributorName]
|
|
@@ -2887,8 +2876,8 @@ exports.ArticlesApiFactory = function (configuration, basePath, axios) {
|
|
|
2887
2876
|
* @param {*} [options] Override http request option.
|
|
2888
2877
|
* @throws {RequiredError}
|
|
2889
2878
|
*/
|
|
2890
|
-
apiV1ArticlesArticleIdContributorsGet: function (articleId,
|
|
2891
|
-
return localVarFp.apiV1ArticlesArticleIdContributorsGet(articleId,
|
|
2879
|
+
apiV1ArticlesArticleIdContributorsGet: function (articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options) {
|
|
2880
|
+
return localVarFp.apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
2892
2881
|
},
|
|
2893
2882
|
/**
|
|
2894
2883
|
*
|
|
@@ -3055,7 +3044,6 @@ exports.ArticlesApiFactory = function (configuration, basePath, axios) {
|
|
|
3055
3044
|
*
|
|
3056
3045
|
* @summary GetAll ArticleContributors.
|
|
3057
3046
|
* @param {string} articleId
|
|
3058
|
-
* @param {string} [articleId2]
|
|
3059
3047
|
* @param {string} [articleName]
|
|
3060
3048
|
* @param {string} [contributorId]
|
|
3061
3049
|
* @param {string} [contributorName]
|
|
@@ -3069,8 +3057,8 @@ exports.ArticlesApiFactory = function (configuration, basePath, axios) {
|
|
|
3069
3057
|
* @param {*} [options] Override http request option.
|
|
3070
3058
|
* @throws {RequiredError}
|
|
3071
3059
|
*/
|
|
3072
|
-
apiV1ArticlesArticleIdTagsGet: function (articleId,
|
|
3073
|
-
return localVarFp.apiV1ArticlesArticleIdTagsGet(articleId,
|
|
3060
|
+
apiV1ArticlesArticleIdTagsGet: function (articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options) {
|
|
3061
|
+
return localVarFp.apiV1ArticlesArticleIdTagsGet(articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
3074
3062
|
},
|
|
3075
3063
|
/**
|
|
3076
3064
|
*
|
|
@@ -3211,7 +3199,6 @@ var ArticlesApi = /** @class */ (function (_super) {
|
|
|
3211
3199
|
*
|
|
3212
3200
|
* @summary GetAll ArticleContributors.
|
|
3213
3201
|
* @param {string} articleId
|
|
3214
|
-
* @param {string} [articleId2]
|
|
3215
3202
|
* @param {string} [articleName]
|
|
3216
3203
|
* @param {string} [contributorId]
|
|
3217
3204
|
* @param {string} [contributorName]
|
|
@@ -3226,9 +3213,9 @@ var ArticlesApi = /** @class */ (function (_super) {
|
|
|
3226
3213
|
* @throws {RequiredError}
|
|
3227
3214
|
* @memberof ArticlesApi
|
|
3228
3215
|
*/
|
|
3229
|
-
ArticlesApi.prototype.apiV1ArticlesArticleIdContributorsGet = function (articleId,
|
|
3216
|
+
ArticlesApi.prototype.apiV1ArticlesArticleIdContributorsGet = function (articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options) {
|
|
3230
3217
|
var _this = this;
|
|
3231
|
-
return exports.ArticlesApiFp(this.configuration).apiV1ArticlesArticleIdContributorsGet(articleId,
|
|
3218
|
+
return exports.ArticlesApiFp(this.configuration).apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
3232
3219
|
};
|
|
3233
3220
|
/**
|
|
3234
3221
|
*
|
|
@@ -3423,7 +3410,6 @@ var ArticlesApi = /** @class */ (function (_super) {
|
|
|
3423
3410
|
*
|
|
3424
3411
|
* @summary GetAll ArticleContributors.
|
|
3425
3412
|
* @param {string} articleId
|
|
3426
|
-
* @param {string} [articleId2]
|
|
3427
3413
|
* @param {string} [articleName]
|
|
3428
3414
|
* @param {string} [contributorId]
|
|
3429
3415
|
* @param {string} [contributorName]
|
|
@@ -3438,9 +3424,9 @@ var ArticlesApi = /** @class */ (function (_super) {
|
|
|
3438
3424
|
* @throws {RequiredError}
|
|
3439
3425
|
* @memberof ArticlesApi
|
|
3440
3426
|
*/
|
|
3441
|
-
ArticlesApi.prototype.apiV1ArticlesArticleIdTagsGet = function (articleId,
|
|
3427
|
+
ArticlesApi.prototype.apiV1ArticlesArticleIdTagsGet = function (articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options) {
|
|
3442
3428
|
var _this = this;
|
|
3443
|
-
return exports.ArticlesApiFp(this.configuration).apiV1ArticlesArticleIdTagsGet(articleId,
|
|
3429
|
+
return exports.ArticlesApiFp(this.configuration).apiV1ArticlesArticleIdTagsGet(articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
3444
3430
|
};
|
|
3445
3431
|
/**
|
|
3446
3432
|
*
|
|
@@ -13410,13 +13396,12 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
13410
13396
|
/**
|
|
13411
13397
|
*
|
|
13412
13398
|
* @summary Get all HospitalServices.
|
|
13413
|
-
* @param {string}
|
|
13399
|
+
* @param {string} hospitalId
|
|
13400
|
+
* @param {string} [hospitalName]
|
|
13401
|
+
* @param {string} [hospitalSlug]
|
|
13414
13402
|
* @param {string} [id]
|
|
13415
13403
|
* @param {string} [name]
|
|
13416
13404
|
* @param {string} [description]
|
|
13417
|
-
* @param {string} [hospitalId]
|
|
13418
|
-
* @param {string} [hospitalName]
|
|
13419
|
-
* @param {string} [hospitalSlug]
|
|
13420
13405
|
* @param {string} [specialtyId]
|
|
13421
13406
|
* @param {string} [specialtyTypeId]
|
|
13422
13407
|
* @param {string} [specialtyTypeName]
|
|
@@ -13430,17 +13415,17 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
13430
13415
|
* @param {*} [options] Override http request option.
|
|
13431
13416
|
* @throws {RequiredError}
|
|
13432
13417
|
*/
|
|
13433
|
-
apiV1HospitalsHospitalIdServicesGet: function (
|
|
13418
|
+
apiV1HospitalsHospitalIdServicesGet: function (hospitalId, hospitalName, hospitalSlug, id, name, description, specialtyId, specialtyTypeId, specialtyTypeName, marketingType, procedure, created, languageCode, page, limit, lastRetrieved, options) {
|
|
13434
13419
|
if (options === void 0) { options = {}; }
|
|
13435
13420
|
return __awaiter(_this, void 0, void 0, function () {
|
|
13436
13421
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
13437
13422
|
return __generator(this, function (_a) {
|
|
13438
13423
|
switch (_a.label) {
|
|
13439
13424
|
case 0:
|
|
13440
|
-
// verify required parameter '
|
|
13441
|
-
common_1.assertParamExists('apiV1HospitalsHospitalIdServicesGet', '
|
|
13425
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
13426
|
+
common_1.assertParamExists('apiV1HospitalsHospitalIdServicesGet', 'hospitalId', hospitalId);
|
|
13442
13427
|
localVarPath = "/api/v1/hospitals/{hospitalId}/services"
|
|
13443
|
-
.replace("{" + "hospitalId" + "}", encodeURIComponent(String(
|
|
13428
|
+
.replace("{" + "hospitalId" + "}", encodeURIComponent(String(hospitalId)));
|
|
13444
13429
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
13445
13430
|
if (configuration) {
|
|
13446
13431
|
baseOptions = configuration.baseOptions;
|
|
@@ -13455,6 +13440,12 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
13455
13440
|
// authentication oauth2 required
|
|
13456
13441
|
// oauth required
|
|
13457
13442
|
_a.sent();
|
|
13443
|
+
if (hospitalName !== undefined) {
|
|
13444
|
+
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
13445
|
+
}
|
|
13446
|
+
if (hospitalSlug !== undefined) {
|
|
13447
|
+
localVarQueryParameter['HospitalSlug'] = hospitalSlug;
|
|
13448
|
+
}
|
|
13458
13449
|
if (id !== undefined) {
|
|
13459
13450
|
localVarQueryParameter['Id'] = id;
|
|
13460
13451
|
}
|
|
@@ -13464,15 +13455,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
13464
13455
|
if (description !== undefined) {
|
|
13465
13456
|
localVarQueryParameter['Description'] = description;
|
|
13466
13457
|
}
|
|
13467
|
-
if (hospitalId !== undefined) {
|
|
13468
|
-
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
13469
|
-
}
|
|
13470
|
-
if (hospitalName !== undefined) {
|
|
13471
|
-
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
13472
|
-
}
|
|
13473
|
-
if (hospitalSlug !== undefined) {
|
|
13474
|
-
localVarQueryParameter['HospitalSlug'] = hospitalSlug;
|
|
13475
|
-
}
|
|
13476
13458
|
if (specialtyId !== undefined) {
|
|
13477
13459
|
localVarQueryParameter['SpecialtyId'] = specialtyId;
|
|
13478
13460
|
}
|
|
@@ -14654,13 +14636,12 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
14654
14636
|
/**
|
|
14655
14637
|
*
|
|
14656
14638
|
* @summary Get all HospitalServices.
|
|
14657
|
-
* @param {string}
|
|
14639
|
+
* @param {string} hospitalId
|
|
14640
|
+
* @param {string} [hospitalName]
|
|
14641
|
+
* @param {string} [hospitalSlug]
|
|
14658
14642
|
* @param {string} [id]
|
|
14659
14643
|
* @param {string} [name]
|
|
14660
14644
|
* @param {string} [description]
|
|
14661
|
-
* @param {string} [hospitalId]
|
|
14662
|
-
* @param {string} [hospitalName]
|
|
14663
|
-
* @param {string} [hospitalSlug]
|
|
14664
14645
|
* @param {string} [specialtyId]
|
|
14665
14646
|
* @param {string} [specialtyTypeId]
|
|
14666
14647
|
* @param {string} [specialtyTypeName]
|
|
@@ -14674,12 +14655,12 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
14674
14655
|
* @param {*} [options] Override http request option.
|
|
14675
14656
|
* @throws {RequiredError}
|
|
14676
14657
|
*/
|
|
14677
|
-
apiV1HospitalsHospitalIdServicesGet: function (
|
|
14658
|
+
apiV1HospitalsHospitalIdServicesGet: function (hospitalId, hospitalName, hospitalSlug, id, name, description, specialtyId, specialtyTypeId, specialtyTypeName, marketingType, procedure, created, languageCode, page, limit, lastRetrieved, options) {
|
|
14678
14659
|
return __awaiter(this, void 0, void 0, function () {
|
|
14679
14660
|
var localVarAxiosArgs;
|
|
14680
14661
|
return __generator(this, function (_a) {
|
|
14681
14662
|
switch (_a.label) {
|
|
14682
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdServicesGet(
|
|
14663
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdServicesGet(hospitalId, hospitalName, hospitalSlug, id, name, description, specialtyId, specialtyTypeId, specialtyTypeName, marketingType, procedure, created, languageCode, page, limit, lastRetrieved, options)];
|
|
14683
14664
|
case 1:
|
|
14684
14665
|
localVarAxiosArgs = _a.sent();
|
|
14685
14666
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -15263,13 +15244,12 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
15263
15244
|
/**
|
|
15264
15245
|
*
|
|
15265
15246
|
* @summary Get all HospitalServices.
|
|
15266
|
-
* @param {string}
|
|
15247
|
+
* @param {string} hospitalId
|
|
15248
|
+
* @param {string} [hospitalName]
|
|
15249
|
+
* @param {string} [hospitalSlug]
|
|
15267
15250
|
* @param {string} [id]
|
|
15268
15251
|
* @param {string} [name]
|
|
15269
15252
|
* @param {string} [description]
|
|
15270
|
-
* @param {string} [hospitalId]
|
|
15271
|
-
* @param {string} [hospitalName]
|
|
15272
|
-
* @param {string} [hospitalSlug]
|
|
15273
15253
|
* @param {string} [specialtyId]
|
|
15274
15254
|
* @param {string} [specialtyTypeId]
|
|
15275
15255
|
* @param {string} [specialtyTypeName]
|
|
@@ -15283,8 +15263,8 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
15283
15263
|
* @param {*} [options] Override http request option.
|
|
15284
15264
|
* @throws {RequiredError}
|
|
15285
15265
|
*/
|
|
15286
|
-
apiV1HospitalsHospitalIdServicesGet: function (
|
|
15287
|
-
return localVarFp.apiV1HospitalsHospitalIdServicesGet(
|
|
15266
|
+
apiV1HospitalsHospitalIdServicesGet: function (hospitalId, hospitalName, hospitalSlug, id, name, description, specialtyId, specialtyTypeId, specialtyTypeName, marketingType, procedure, created, languageCode, page, limit, lastRetrieved, options) {
|
|
15267
|
+
return localVarFp.apiV1HospitalsHospitalIdServicesGet(hospitalId, hospitalName, hospitalSlug, id, name, description, specialtyId, specialtyTypeId, specialtyTypeName, marketingType, procedure, created, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
15288
15268
|
},
|
|
15289
15269
|
/**
|
|
15290
15270
|
*
|
|
@@ -15820,13 +15800,12 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
15820
15800
|
/**
|
|
15821
15801
|
*
|
|
15822
15802
|
* @summary Get all HospitalServices.
|
|
15823
|
-
* @param {string}
|
|
15803
|
+
* @param {string} hospitalId
|
|
15804
|
+
* @param {string} [hospitalName]
|
|
15805
|
+
* @param {string} [hospitalSlug]
|
|
15824
15806
|
* @param {string} [id]
|
|
15825
15807
|
* @param {string} [name]
|
|
15826
15808
|
* @param {string} [description]
|
|
15827
|
-
* @param {string} [hospitalId]
|
|
15828
|
-
* @param {string} [hospitalName]
|
|
15829
|
-
* @param {string} [hospitalSlug]
|
|
15830
15809
|
* @param {string} [specialtyId]
|
|
15831
15810
|
* @param {string} [specialtyTypeId]
|
|
15832
15811
|
* @param {string} [specialtyTypeName]
|
|
@@ -15841,9 +15820,9 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
15841
15820
|
* @throws {RequiredError}
|
|
15842
15821
|
* @memberof HospitalsApi
|
|
15843
15822
|
*/
|
|
15844
|
-
HospitalsApi.prototype.apiV1HospitalsHospitalIdServicesGet = function (
|
|
15823
|
+
HospitalsApi.prototype.apiV1HospitalsHospitalIdServicesGet = function (hospitalId, hospitalName, hospitalSlug, id, name, description, specialtyId, specialtyTypeId, specialtyTypeName, marketingType, procedure, created, languageCode, page, limit, lastRetrieved, options) {
|
|
15845
15824
|
var _this = this;
|
|
15846
|
-
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdServicesGet(
|
|
15825
|
+
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdServicesGet(hospitalId, hospitalName, hospitalSlug, id, name, description, specialtyId, specialtyTypeId, specialtyTypeName, marketingType, procedure, created, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
15847
15826
|
};
|
|
15848
15827
|
/**
|
|
15849
15828
|
*
|