ch-admin-api-client-typescript 2.5.8 → 2.6.2
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 +82 -56
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +70 -65
- package/package.json +1 -1
- package/src/api.ts +119 -65
package/lib/api.js
CHANGED
|
@@ -8283,7 +8283,6 @@ exports.CountriesApiAxiosParamCreator = function (configuration) {
|
|
|
8283
8283
|
},
|
|
8284
8284
|
/**
|
|
8285
8285
|
*
|
|
8286
|
-
* @summary Get country by slug.
|
|
8287
8286
|
* @param {string} slug
|
|
8288
8287
|
* @param {string} [languageCode]
|
|
8289
8288
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -8585,7 +8584,6 @@ exports.CountriesApiFp = function (configuration) {
|
|
|
8585
8584
|
},
|
|
8586
8585
|
/**
|
|
8587
8586
|
*
|
|
8588
|
-
* @summary Get country by slug.
|
|
8589
8587
|
* @param {string} slug
|
|
8590
8588
|
* @param {string} [languageCode]
|
|
8591
8589
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -8748,7 +8746,6 @@ exports.CountriesApiFactory = function (configuration, basePath, axios) {
|
|
|
8748
8746
|
},
|
|
8749
8747
|
/**
|
|
8750
8748
|
*
|
|
8751
|
-
* @summary Get country by slug.
|
|
8752
8749
|
* @param {string} slug
|
|
8753
8750
|
* @param {string} [languageCode]
|
|
8754
8751
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -8927,7 +8924,6 @@ var CountriesApi = /** @class */ (function (_super) {
|
|
|
8927
8924
|
};
|
|
8928
8925
|
/**
|
|
8929
8926
|
*
|
|
8930
|
-
* @summary Get country by slug.
|
|
8931
8927
|
* @param {string} slug
|
|
8932
8928
|
* @param {string} [languageCode]
|
|
8933
8929
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -8996,10 +8992,12 @@ exports.DealsApiAxiosParamCreator = function (configuration) {
|
|
|
8996
8992
|
*
|
|
8997
8993
|
* @summary Get deal.
|
|
8998
8994
|
* @param {string} dealId
|
|
8995
|
+
* @param {string} [languageCode]
|
|
8996
|
+
* @param {boolean} [returnDefaultValue]
|
|
8999
8997
|
* @param {*} [options] Override http request option.
|
|
9000
8998
|
* @throws {RequiredError}
|
|
9001
8999
|
*/
|
|
9002
|
-
apiV1DealsDealIdGet: function (dealId, options) {
|
|
9000
|
+
apiV1DealsDealIdGet: function (dealId, languageCode, returnDefaultValue, options) {
|
|
9003
9001
|
if (options === void 0) { options = {}; }
|
|
9004
9002
|
return __awaiter(_this, void 0, void 0, function () {
|
|
9005
9003
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -9024,6 +9022,12 @@ exports.DealsApiAxiosParamCreator = function (configuration) {
|
|
|
9024
9022
|
// authentication oauth2 required
|
|
9025
9023
|
// oauth required
|
|
9026
9024
|
_a.sent();
|
|
9025
|
+
if (languageCode !== undefined) {
|
|
9026
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
9027
|
+
}
|
|
9028
|
+
if (returnDefaultValue !== undefined) {
|
|
9029
|
+
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
9030
|
+
}
|
|
9027
9031
|
common_1.setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9028
9032
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
9029
9033
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -9613,13 +9617,16 @@ exports.DealsApiAxiosParamCreator = function (configuration) {
|
|
|
9613
9617
|
* @param {string} [exceptHospitalId]
|
|
9614
9618
|
* @param {string} [exceptDealId]
|
|
9615
9619
|
* @param {Array<string>} [ids]
|
|
9620
|
+
* @param {string} [languageCode]
|
|
9621
|
+
* @param {boolean} [showHidden]
|
|
9622
|
+
* @param {boolean} [returnDefaultValue]
|
|
9616
9623
|
* @param {number} [page]
|
|
9617
9624
|
* @param {number} [limit]
|
|
9618
9625
|
* @param {Date} [lastRetrieved]
|
|
9619
9626
|
* @param {*} [options] Override http request option.
|
|
9620
9627
|
* @throws {RequiredError}
|
|
9621
9628
|
*/
|
|
9622
|
-
apiV1DealsGet: function (id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyTypeId, exceptHospitalId, exceptDealId, ids, page, limit, lastRetrieved, options) {
|
|
9629
|
+
apiV1DealsGet: function (id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyTypeId, exceptHospitalId, exceptDealId, ids, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
9623
9630
|
if (options === void 0) { options = {}; }
|
|
9624
9631
|
return __awaiter(_this, void 0, void 0, function () {
|
|
9625
9632
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -9674,6 +9681,15 @@ exports.DealsApiAxiosParamCreator = function (configuration) {
|
|
|
9674
9681
|
if (ids) {
|
|
9675
9682
|
localVarQueryParameter['Ids'] = ids;
|
|
9676
9683
|
}
|
|
9684
|
+
if (languageCode !== undefined) {
|
|
9685
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
9686
|
+
}
|
|
9687
|
+
if (showHidden !== undefined) {
|
|
9688
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
9689
|
+
}
|
|
9690
|
+
if (returnDefaultValue !== undefined) {
|
|
9691
|
+
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
9692
|
+
}
|
|
9677
9693
|
if (page !== undefined) {
|
|
9678
9694
|
localVarQueryParameter['page'] = page;
|
|
9679
9695
|
}
|
|
@@ -9742,10 +9758,12 @@ exports.DealsApiAxiosParamCreator = function (configuration) {
|
|
|
9742
9758
|
*
|
|
9743
9759
|
* @summary Get deal by slug.
|
|
9744
9760
|
* @param {string} slug
|
|
9761
|
+
* @param {string} [languageCode]
|
|
9762
|
+
* @param {boolean} [returnDefaultValue]
|
|
9745
9763
|
* @param {*} [options] Override http request option.
|
|
9746
9764
|
* @throws {RequiredError}
|
|
9747
9765
|
*/
|
|
9748
|
-
apiV1DealsSlugGet: function (slug, options) {
|
|
9766
|
+
apiV1DealsSlugGet: function (slug, languageCode, returnDefaultValue, options) {
|
|
9749
9767
|
if (options === void 0) { options = {}; }
|
|
9750
9768
|
return __awaiter(_this, void 0, void 0, function () {
|
|
9751
9769
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -9770,6 +9788,12 @@ exports.DealsApiAxiosParamCreator = function (configuration) {
|
|
|
9770
9788
|
// authentication oauth2 required
|
|
9771
9789
|
// oauth required
|
|
9772
9790
|
_a.sent();
|
|
9791
|
+
if (languageCode !== undefined) {
|
|
9792
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
9793
|
+
}
|
|
9794
|
+
if (returnDefaultValue !== undefined) {
|
|
9795
|
+
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
9796
|
+
}
|
|
9773
9797
|
common_1.setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9774
9798
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
9775
9799
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -9814,15 +9838,17 @@ exports.DealsApiFp = function (configuration) {
|
|
|
9814
9838
|
*
|
|
9815
9839
|
* @summary Get deal.
|
|
9816
9840
|
* @param {string} dealId
|
|
9841
|
+
* @param {string} [languageCode]
|
|
9842
|
+
* @param {boolean} [returnDefaultValue]
|
|
9817
9843
|
* @param {*} [options] Override http request option.
|
|
9818
9844
|
* @throws {RequiredError}
|
|
9819
9845
|
*/
|
|
9820
|
-
apiV1DealsDealIdGet: function (dealId, options) {
|
|
9846
|
+
apiV1DealsDealIdGet: function (dealId, languageCode, returnDefaultValue, options) {
|
|
9821
9847
|
return __awaiter(this, void 0, void 0, function () {
|
|
9822
9848
|
var localVarAxiosArgs;
|
|
9823
9849
|
return __generator(this, function (_a) {
|
|
9824
9850
|
switch (_a.label) {
|
|
9825
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DealsDealIdGet(dealId, options)];
|
|
9851
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DealsDealIdGet(dealId, languageCode, returnDefaultValue, options)];
|
|
9826
9852
|
case 1:
|
|
9827
9853
|
localVarAxiosArgs = _a.sent();
|
|
9828
9854
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -10087,18 +10113,21 @@ exports.DealsApiFp = function (configuration) {
|
|
|
10087
10113
|
* @param {string} [exceptHospitalId]
|
|
10088
10114
|
* @param {string} [exceptDealId]
|
|
10089
10115
|
* @param {Array<string>} [ids]
|
|
10116
|
+
* @param {string} [languageCode]
|
|
10117
|
+
* @param {boolean} [showHidden]
|
|
10118
|
+
* @param {boolean} [returnDefaultValue]
|
|
10090
10119
|
* @param {number} [page]
|
|
10091
10120
|
* @param {number} [limit]
|
|
10092
10121
|
* @param {Date} [lastRetrieved]
|
|
10093
10122
|
* @param {*} [options] Override http request option.
|
|
10094
10123
|
* @throws {RequiredError}
|
|
10095
10124
|
*/
|
|
10096
|
-
apiV1DealsGet: function (id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyTypeId, exceptHospitalId, exceptDealId, ids, page, limit, lastRetrieved, options) {
|
|
10125
|
+
apiV1DealsGet: function (id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyTypeId, exceptHospitalId, exceptDealId, ids, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
10097
10126
|
return __awaiter(this, void 0, void 0, function () {
|
|
10098
10127
|
var localVarAxiosArgs;
|
|
10099
10128
|
return __generator(this, function (_a) {
|
|
10100
10129
|
switch (_a.label) {
|
|
10101
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DealsGet(id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyTypeId, exceptHospitalId, exceptDealId, ids, page, limit, lastRetrieved, options)];
|
|
10130
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DealsGet(id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyTypeId, exceptHospitalId, exceptDealId, ids, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options)];
|
|
10102
10131
|
case 1:
|
|
10103
10132
|
localVarAxiosArgs = _a.sent();
|
|
10104
10133
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -10130,15 +10159,17 @@ exports.DealsApiFp = function (configuration) {
|
|
|
10130
10159
|
*
|
|
10131
10160
|
* @summary Get deal by slug.
|
|
10132
10161
|
* @param {string} slug
|
|
10162
|
+
* @param {string} [languageCode]
|
|
10163
|
+
* @param {boolean} [returnDefaultValue]
|
|
10133
10164
|
* @param {*} [options] Override http request option.
|
|
10134
10165
|
* @throws {RequiredError}
|
|
10135
10166
|
*/
|
|
10136
|
-
apiV1DealsSlugGet: function (slug, options) {
|
|
10167
|
+
apiV1DealsSlugGet: function (slug, languageCode, returnDefaultValue, options) {
|
|
10137
10168
|
return __awaiter(this, void 0, void 0, function () {
|
|
10138
10169
|
var localVarAxiosArgs;
|
|
10139
10170
|
return __generator(this, function (_a) {
|
|
10140
10171
|
switch (_a.label) {
|
|
10141
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DealsSlugGet(slug, options)];
|
|
10172
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DealsSlugGet(slug, languageCode, returnDefaultValue, options)];
|
|
10142
10173
|
case 1:
|
|
10143
10174
|
localVarAxiosArgs = _a.sent();
|
|
10144
10175
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -10169,11 +10200,13 @@ exports.DealsApiFactory = function (configuration, basePath, axios) {
|
|
|
10169
10200
|
*
|
|
10170
10201
|
* @summary Get deal.
|
|
10171
10202
|
* @param {string} dealId
|
|
10203
|
+
* @param {string} [languageCode]
|
|
10204
|
+
* @param {boolean} [returnDefaultValue]
|
|
10172
10205
|
* @param {*} [options] Override http request option.
|
|
10173
10206
|
* @throws {RequiredError}
|
|
10174
10207
|
*/
|
|
10175
|
-
apiV1DealsDealIdGet: function (dealId, options) {
|
|
10176
|
-
return localVarFp.apiV1DealsDealIdGet(dealId, options).then(function (request) { return request(axios, basePath); });
|
|
10208
|
+
apiV1DealsDealIdGet: function (dealId, languageCode, returnDefaultValue, options) {
|
|
10209
|
+
return localVarFp.apiV1DealsDealIdGet(dealId, languageCode, returnDefaultValue, options).then(function (request) { return request(axios, basePath); });
|
|
10177
10210
|
},
|
|
10178
10211
|
/**
|
|
10179
10212
|
*
|
|
@@ -10322,14 +10355,17 @@ exports.DealsApiFactory = function (configuration, basePath, axios) {
|
|
|
10322
10355
|
* @param {string} [exceptHospitalId]
|
|
10323
10356
|
* @param {string} [exceptDealId]
|
|
10324
10357
|
* @param {Array<string>} [ids]
|
|
10358
|
+
* @param {string} [languageCode]
|
|
10359
|
+
* @param {boolean} [showHidden]
|
|
10360
|
+
* @param {boolean} [returnDefaultValue]
|
|
10325
10361
|
* @param {number} [page]
|
|
10326
10362
|
* @param {number} [limit]
|
|
10327
10363
|
* @param {Date} [lastRetrieved]
|
|
10328
10364
|
* @param {*} [options] Override http request option.
|
|
10329
10365
|
* @throws {RequiredError}
|
|
10330
10366
|
*/
|
|
10331
|
-
apiV1DealsGet: function (id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyTypeId, exceptHospitalId, exceptDealId, ids, page, limit, lastRetrieved, options) {
|
|
10332
|
-
return localVarFp.apiV1DealsGet(id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyTypeId, exceptHospitalId, exceptDealId, ids, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
10367
|
+
apiV1DealsGet: function (id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyTypeId, exceptHospitalId, exceptDealId, ids, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
10368
|
+
return localVarFp.apiV1DealsGet(id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyTypeId, exceptHospitalId, exceptDealId, ids, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
10333
10369
|
},
|
|
10334
10370
|
/**
|
|
10335
10371
|
*
|
|
@@ -10345,11 +10381,13 @@ exports.DealsApiFactory = function (configuration, basePath, axios) {
|
|
|
10345
10381
|
*
|
|
10346
10382
|
* @summary Get deal by slug.
|
|
10347
10383
|
* @param {string} slug
|
|
10384
|
+
* @param {string} [languageCode]
|
|
10385
|
+
* @param {boolean} [returnDefaultValue]
|
|
10348
10386
|
* @param {*} [options] Override http request option.
|
|
10349
10387
|
* @throws {RequiredError}
|
|
10350
10388
|
*/
|
|
10351
|
-
apiV1DealsSlugGet: function (slug, options) {
|
|
10352
|
-
return localVarFp.apiV1DealsSlugGet(slug, options).then(function (request) { return request(axios, basePath); });
|
|
10389
|
+
apiV1DealsSlugGet: function (slug, languageCode, returnDefaultValue, options) {
|
|
10390
|
+
return localVarFp.apiV1DealsSlugGet(slug, languageCode, returnDefaultValue, options).then(function (request) { return request(axios, basePath); });
|
|
10353
10391
|
},
|
|
10354
10392
|
};
|
|
10355
10393
|
};
|
|
@@ -10380,13 +10418,15 @@ var DealsApi = /** @class */ (function (_super) {
|
|
|
10380
10418
|
*
|
|
10381
10419
|
* @summary Get deal.
|
|
10382
10420
|
* @param {string} dealId
|
|
10421
|
+
* @param {string} [languageCode]
|
|
10422
|
+
* @param {boolean} [returnDefaultValue]
|
|
10383
10423
|
* @param {*} [options] Override http request option.
|
|
10384
10424
|
* @throws {RequiredError}
|
|
10385
10425
|
* @memberof DealsApi
|
|
10386
10426
|
*/
|
|
10387
|
-
DealsApi.prototype.apiV1DealsDealIdGet = function (dealId, options) {
|
|
10427
|
+
DealsApi.prototype.apiV1DealsDealIdGet = function (dealId, languageCode, returnDefaultValue, options) {
|
|
10388
10428
|
var _this = this;
|
|
10389
|
-
return exports.DealsApiFp(this.configuration).apiV1DealsDealIdGet(dealId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
10429
|
+
return exports.DealsApiFp(this.configuration).apiV1DealsDealIdGet(dealId, languageCode, returnDefaultValue, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
10390
10430
|
};
|
|
10391
10431
|
/**
|
|
10392
10432
|
*
|
|
@@ -10557,6 +10597,9 @@ var DealsApi = /** @class */ (function (_super) {
|
|
|
10557
10597
|
* @param {string} [exceptHospitalId]
|
|
10558
10598
|
* @param {string} [exceptDealId]
|
|
10559
10599
|
* @param {Array<string>} [ids]
|
|
10600
|
+
* @param {string} [languageCode]
|
|
10601
|
+
* @param {boolean} [showHidden]
|
|
10602
|
+
* @param {boolean} [returnDefaultValue]
|
|
10560
10603
|
* @param {number} [page]
|
|
10561
10604
|
* @param {number} [limit]
|
|
10562
10605
|
* @param {Date} [lastRetrieved]
|
|
@@ -10564,9 +10607,9 @@ var DealsApi = /** @class */ (function (_super) {
|
|
|
10564
10607
|
* @throws {RequiredError}
|
|
10565
10608
|
* @memberof DealsApi
|
|
10566
10609
|
*/
|
|
10567
|
-
DealsApi.prototype.apiV1DealsGet = function (id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyTypeId, exceptHospitalId, exceptDealId, ids, page, limit, lastRetrieved, options) {
|
|
10610
|
+
DealsApi.prototype.apiV1DealsGet = function (id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyTypeId, exceptHospitalId, exceptDealId, ids, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
10568
10611
|
var _this = this;
|
|
10569
|
-
return exports.DealsApiFp(this.configuration).apiV1DealsGet(id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyTypeId, exceptHospitalId, exceptDealId, ids, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
10612
|
+
return exports.DealsApiFp(this.configuration).apiV1DealsGet(id, name, marketingType, countryId, hospitalId, hospitalName, specialtyId, specialtyTypeId, exceptHospitalId, exceptDealId, ids, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
10570
10613
|
};
|
|
10571
10614
|
/**
|
|
10572
10615
|
*
|
|
@@ -10584,13 +10627,15 @@ var DealsApi = /** @class */ (function (_super) {
|
|
|
10584
10627
|
*
|
|
10585
10628
|
* @summary Get deal by slug.
|
|
10586
10629
|
* @param {string} slug
|
|
10630
|
+
* @param {string} [languageCode]
|
|
10631
|
+
* @param {boolean} [returnDefaultValue]
|
|
10587
10632
|
* @param {*} [options] Override http request option.
|
|
10588
10633
|
* @throws {RequiredError}
|
|
10589
10634
|
* @memberof DealsApi
|
|
10590
10635
|
*/
|
|
10591
|
-
DealsApi.prototype.apiV1DealsSlugGet = function (slug, options) {
|
|
10636
|
+
DealsApi.prototype.apiV1DealsSlugGet = function (slug, languageCode, returnDefaultValue, options) {
|
|
10592
10637
|
var _this = this;
|
|
10593
|
-
return exports.DealsApiFp(this.configuration).apiV1DealsSlugGet(slug, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
10638
|
+
return exports.DealsApiFp(this.configuration).apiV1DealsSlugGet(slug, languageCode, returnDefaultValue, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
10594
10639
|
};
|
|
10595
10640
|
return DealsApi;
|
|
10596
10641
|
}(base_1.BaseAPI));
|
|
@@ -11387,7 +11432,6 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
11387
11432
|
},
|
|
11388
11433
|
/**
|
|
11389
11434
|
*
|
|
11390
|
-
* @summary Get Doctor.
|
|
11391
11435
|
* @param {string} doctorId
|
|
11392
11436
|
* @param {string} [languageCode]
|
|
11393
11437
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -12396,7 +12440,6 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
12396
12440
|
},
|
|
12397
12441
|
/**
|
|
12398
12442
|
*
|
|
12399
|
-
* @summary Get Doctor by slug.
|
|
12400
12443
|
* @param {string} slug
|
|
12401
12444
|
* @param {string} [languageCode]
|
|
12402
12445
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -12788,7 +12831,6 @@ exports.DoctorsApiFp = function (configuration) {
|
|
|
12788
12831
|
},
|
|
12789
12832
|
/**
|
|
12790
12833
|
*
|
|
12791
|
-
* @summary Get Doctor.
|
|
12792
12834
|
* @param {string} doctorId
|
|
12793
12835
|
* @param {string} [languageCode]
|
|
12794
12836
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13215,7 +13257,6 @@ exports.DoctorsApiFp = function (configuration) {
|
|
|
13215
13257
|
},
|
|
13216
13258
|
/**
|
|
13217
13259
|
*
|
|
13218
|
-
* @summary Get Doctor by slug.
|
|
13219
13260
|
* @param {string} slug
|
|
13220
13261
|
* @param {string} [languageCode]
|
|
13221
13262
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13428,7 +13469,6 @@ exports.DoctorsApiFactory = function (configuration, basePath, axios) {
|
|
|
13428
13469
|
},
|
|
13429
13470
|
/**
|
|
13430
13471
|
*
|
|
13431
|
-
* @summary Get Doctor.
|
|
13432
13472
|
* @param {string} doctorId
|
|
13433
13473
|
* @param {string} [languageCode]
|
|
13434
13474
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13665,7 +13705,6 @@ exports.DoctorsApiFactory = function (configuration, basePath, axios) {
|
|
|
13665
13705
|
},
|
|
13666
13706
|
/**
|
|
13667
13707
|
*
|
|
13668
|
-
* @summary Get Doctor by slug.
|
|
13669
13708
|
* @param {string} slug
|
|
13670
13709
|
* @param {string} [languageCode]
|
|
13671
13710
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13902,7 +13941,6 @@ var DoctorsApi = /** @class */ (function (_super) {
|
|
|
13902
13941
|
};
|
|
13903
13942
|
/**
|
|
13904
13943
|
*
|
|
13905
|
-
* @summary Get Doctor.
|
|
13906
13944
|
* @param {string} doctorId
|
|
13907
13945
|
* @param {string} [languageCode]
|
|
13908
13946
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -14177,7 +14215,6 @@ var DoctorsApi = /** @class */ (function (_super) {
|
|
|
14177
14215
|
};
|
|
14178
14216
|
/**
|
|
14179
14217
|
*
|
|
14180
|
-
* @summary Get Doctor by slug.
|
|
14181
14218
|
* @param {string} slug
|
|
14182
14219
|
* @param {string} [languageCode]
|
|
14183
14220
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18554,7 +18591,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
18554
18591
|
},
|
|
18555
18592
|
/**
|
|
18556
18593
|
*
|
|
18557
|
-
* @summary Delete HospitalService
|
|
18558
18594
|
* @param {string} hospitalId
|
|
18559
18595
|
* @param {string} specialtyId
|
|
18560
18596
|
* @param {string} serviceId
|
|
@@ -18605,7 +18641,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
18605
18641
|
},
|
|
18606
18642
|
/**
|
|
18607
18643
|
*
|
|
18608
|
-
* @summary Get HospitalService.
|
|
18609
18644
|
* @param {string} hospitalId
|
|
18610
18645
|
* @param {string} specialtyId
|
|
18611
18646
|
* @param {string} serviceId
|
|
@@ -19166,7 +19201,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
19166
19201
|
},
|
|
19167
19202
|
/**
|
|
19168
19203
|
*
|
|
19169
|
-
* @summary Get Hospital by slug.
|
|
19170
19204
|
* @param {string} slug
|
|
19171
19205
|
* @param {string} [languageCode]
|
|
19172
19206
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -20017,7 +20051,6 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
20017
20051
|
},
|
|
20018
20052
|
/**
|
|
20019
20053
|
*
|
|
20020
|
-
* @summary Delete HospitalService
|
|
20021
20054
|
* @param {string} hospitalId
|
|
20022
20055
|
* @param {string} specialtyId
|
|
20023
20056
|
* @param {string} serviceId
|
|
@@ -20039,7 +20072,6 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
20039
20072
|
},
|
|
20040
20073
|
/**
|
|
20041
20074
|
*
|
|
20042
|
-
* @summary Get HospitalService.
|
|
20043
20075
|
* @param {string} hospitalId
|
|
20044
20076
|
* @param {string} specialtyId
|
|
20045
20077
|
* @param {string} serviceId
|
|
@@ -20262,7 +20294,6 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
20262
20294
|
},
|
|
20263
20295
|
/**
|
|
20264
20296
|
*
|
|
20265
|
-
* @summary Get Hospital by slug.
|
|
20266
20297
|
* @param {string} slug
|
|
20267
20298
|
* @param {string} [languageCode]
|
|
20268
20299
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -20744,7 +20775,6 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
20744
20775
|
},
|
|
20745
20776
|
/**
|
|
20746
20777
|
*
|
|
20747
|
-
* @summary Delete HospitalService
|
|
20748
20778
|
* @param {string} hospitalId
|
|
20749
20779
|
* @param {string} specialtyId
|
|
20750
20780
|
* @param {string} serviceId
|
|
@@ -20756,7 +20786,6 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
20756
20786
|
},
|
|
20757
20787
|
/**
|
|
20758
20788
|
*
|
|
20759
|
-
* @summary Get HospitalService.
|
|
20760
20789
|
* @param {string} hospitalId
|
|
20761
20790
|
* @param {string} specialtyId
|
|
20762
20791
|
* @param {string} serviceId
|
|
@@ -20889,7 +20918,6 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
20889
20918
|
},
|
|
20890
20919
|
/**
|
|
20891
20920
|
*
|
|
20892
|
-
* @summary Get Hospital by slug.
|
|
20893
20921
|
* @param {string} slug
|
|
20894
20922
|
* @param {string} [languageCode]
|
|
20895
20923
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -21433,7 +21461,6 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
21433
21461
|
};
|
|
21434
21462
|
/**
|
|
21435
21463
|
*
|
|
21436
|
-
* @summary Delete HospitalService
|
|
21437
21464
|
* @param {string} hospitalId
|
|
21438
21465
|
* @param {string} specialtyId
|
|
21439
21466
|
* @param {string} serviceId
|
|
@@ -21447,7 +21474,6 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
21447
21474
|
};
|
|
21448
21475
|
/**
|
|
21449
21476
|
*
|
|
21450
|
-
* @summary Get HospitalService.
|
|
21451
21477
|
* @param {string} hospitalId
|
|
21452
21478
|
* @param {string} specialtyId
|
|
21453
21479
|
* @param {string} serviceId
|
|
@@ -21598,7 +21624,6 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
21598
21624
|
};
|
|
21599
21625
|
/**
|
|
21600
21626
|
*
|
|
21601
|
-
* @summary Get Hospital by slug.
|
|
21602
21627
|
* @param {string} slug
|
|
21603
21628
|
* @param {string} [languageCode]
|
|
21604
21629
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -25744,7 +25769,6 @@ exports.ServicesApiAxiosParamCreator = function (configuration) {
|
|
|
25744
25769
|
},
|
|
25745
25770
|
/**
|
|
25746
25771
|
*
|
|
25747
|
-
* @summary Get HospitalService.
|
|
25748
25772
|
* @param {string} serviceId
|
|
25749
25773
|
* @param {string} [languageCode]
|
|
25750
25774
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -25795,7 +25819,6 @@ exports.ServicesApiAxiosParamCreator = function (configuration) {
|
|
|
25795
25819
|
},
|
|
25796
25820
|
/**
|
|
25797
25821
|
*
|
|
25798
|
-
* @summary Get HospitalService by slug.
|
|
25799
25822
|
* @param {string} slug
|
|
25800
25823
|
* @param {string} [languageCode]
|
|
25801
25824
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -25893,7 +25916,6 @@ exports.ServicesApiFp = function (configuration) {
|
|
|
25893
25916
|
},
|
|
25894
25917
|
/**
|
|
25895
25918
|
*
|
|
25896
|
-
* @summary Get HospitalService.
|
|
25897
25919
|
* @param {string} serviceId
|
|
25898
25920
|
* @param {string} [languageCode]
|
|
25899
25921
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -25915,7 +25937,6 @@ exports.ServicesApiFp = function (configuration) {
|
|
|
25915
25937
|
},
|
|
25916
25938
|
/**
|
|
25917
25939
|
*
|
|
25918
|
-
* @summary Get HospitalService by slug.
|
|
25919
25940
|
* @param {string} slug
|
|
25920
25941
|
* @param {string} [languageCode]
|
|
25921
25942
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -25974,7 +25995,6 @@ exports.ServicesApiFactory = function (configuration, basePath, axios) {
|
|
|
25974
25995
|
},
|
|
25975
25996
|
/**
|
|
25976
25997
|
*
|
|
25977
|
-
* @summary Get HospitalService.
|
|
25978
25998
|
* @param {string} serviceId
|
|
25979
25999
|
* @param {string} [languageCode]
|
|
25980
26000
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -25986,7 +26006,6 @@ exports.ServicesApiFactory = function (configuration, basePath, axios) {
|
|
|
25986
26006
|
},
|
|
25987
26007
|
/**
|
|
25988
26008
|
*
|
|
25989
|
-
* @summary Get HospitalService by slug.
|
|
25990
26009
|
* @param {string} slug
|
|
25991
26010
|
* @param {string} [languageCode]
|
|
25992
26011
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -26041,7 +26060,6 @@ var ServicesApi = /** @class */ (function (_super) {
|
|
|
26041
26060
|
};
|
|
26042
26061
|
/**
|
|
26043
26062
|
*
|
|
26044
|
-
* @summary Get HospitalService.
|
|
26045
26063
|
* @param {string} serviceId
|
|
26046
26064
|
* @param {string} [languageCode]
|
|
26047
26065
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -26055,7 +26073,6 @@ var ServicesApi = /** @class */ (function (_super) {
|
|
|
26055
26073
|
};
|
|
26056
26074
|
/**
|
|
26057
26075
|
*
|
|
26058
|
-
* @summary Get HospitalService by slug.
|
|
26059
26076
|
* @param {string} slug
|
|
26060
26077
|
* @param {string} [languageCode]
|
|
26061
26078
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -26730,7 +26747,6 @@ exports.SpecialtiesApiAxiosParamCreator = function (configuration) {
|
|
|
26730
26747
|
},
|
|
26731
26748
|
/**
|
|
26732
26749
|
*
|
|
26733
|
-
* @summary Get Specialty by slug.
|
|
26734
26750
|
* @param {string} slug
|
|
26735
26751
|
* @param {string} [languageCode]
|
|
26736
26752
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -27236,7 +27252,6 @@ exports.SpecialtiesApiFp = function (configuration) {
|
|
|
27236
27252
|
},
|
|
27237
27253
|
/**
|
|
27238
27254
|
*
|
|
27239
|
-
* @summary Get Specialty by slug.
|
|
27240
27255
|
* @param {string} slug
|
|
27241
27256
|
* @param {string} [languageCode]
|
|
27242
27257
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -27471,7 +27486,6 @@ exports.SpecialtiesApiFactory = function (configuration, basePath, axios) {
|
|
|
27471
27486
|
},
|
|
27472
27487
|
/**
|
|
27473
27488
|
*
|
|
27474
|
-
* @summary Get Specialty by slug.
|
|
27475
27489
|
* @param {string} slug
|
|
27476
27490
|
* @param {string} [languageCode]
|
|
27477
27491
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -27624,7 +27638,6 @@ var SpecialtiesApi = /** @class */ (function (_super) {
|
|
|
27624
27638
|
};
|
|
27625
27639
|
/**
|
|
27626
27640
|
*
|
|
27627
|
-
* @summary Get Specialty by slug.
|
|
27628
27641
|
* @param {string} slug
|
|
27629
27642
|
* @param {string} [languageCode]
|
|
27630
27643
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -27989,7 +28002,6 @@ exports.SpecialtyTypesApiAxiosParamCreator = function (configuration) {
|
|
|
27989
28002
|
},
|
|
27990
28003
|
/**
|
|
27991
28004
|
*
|
|
27992
|
-
* @summary Get Department by slug.
|
|
27993
28005
|
* @param {string} slug
|
|
27994
28006
|
* @param {string} [languageCode]
|
|
27995
28007
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -28083,7 +28095,6 @@ exports.SpecialtyTypesApiAxiosParamCreator = function (configuration) {
|
|
|
28083
28095
|
},
|
|
28084
28096
|
/**
|
|
28085
28097
|
*
|
|
28086
|
-
* @summary Get Department.
|
|
28087
28098
|
* @param {string} specialtyTypeId
|
|
28088
28099
|
* @param {string} [languageCode]
|
|
28089
28100
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -28528,7 +28539,6 @@ exports.SpecialtyTypesApiFp = function (configuration) {
|
|
|
28528
28539
|
},
|
|
28529
28540
|
/**
|
|
28530
28541
|
*
|
|
28531
|
-
* @summary Get Department by slug.
|
|
28532
28542
|
* @param {string} slug
|
|
28533
28543
|
* @param {string} [languageCode]
|
|
28534
28544
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -28570,7 +28580,6 @@ exports.SpecialtyTypesApiFp = function (configuration) {
|
|
|
28570
28580
|
},
|
|
28571
28581
|
/**
|
|
28572
28582
|
*
|
|
28573
|
-
* @summary Get Department.
|
|
28574
28583
|
* @param {string} specialtyTypeId
|
|
28575
28584
|
* @param {string} [languageCode]
|
|
28576
28585
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -28786,7 +28795,6 @@ exports.SpecialtyTypesApiFactory = function (configuration, basePath, axios) {
|
|
|
28786
28795
|
},
|
|
28787
28796
|
/**
|
|
28788
28797
|
*
|
|
28789
|
-
* @summary Get Department by slug.
|
|
28790
28798
|
* @param {string} slug
|
|
28791
28799
|
* @param {string} [languageCode]
|
|
28792
28800
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -28808,7 +28816,6 @@ exports.SpecialtyTypesApiFactory = function (configuration, basePath, axios) {
|
|
|
28808
28816
|
},
|
|
28809
28817
|
/**
|
|
28810
28818
|
*
|
|
28811
|
-
* @summary Get Department.
|
|
28812
28819
|
* @param {string} specialtyTypeId
|
|
28813
28820
|
* @param {string} [languageCode]
|
|
28814
28821
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -28964,7 +28971,6 @@ var SpecialtyTypesApi = /** @class */ (function (_super) {
|
|
|
28964
28971
|
};
|
|
28965
28972
|
/**
|
|
28966
28973
|
*
|
|
28967
|
-
* @summary Get Department by slug.
|
|
28968
28974
|
* @param {string} slug
|
|
28969
28975
|
* @param {string} [languageCode]
|
|
28970
28976
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -28990,7 +28996,6 @@ var SpecialtyTypesApi = /** @class */ (function (_super) {
|
|
|
28990
28996
|
};
|
|
28991
28997
|
/**
|
|
28992
28998
|
*
|
|
28993
|
-
* @summary Get Department.
|
|
28994
28999
|
* @param {string} specialtyTypeId
|
|
28995
29000
|
* @param {string} [languageCode]
|
|
28996
29001
|
* @param {boolean} [returnDefaultValue]
|