ch-api-client-typescript2 3.3.4 → 3.4.0

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.js CHANGED
@@ -6260,13 +6260,14 @@ var DoctorsApiAxiosParamCreator = function (configuration) {
6260
6260
  * @summary Get all doctor affiliations.
6261
6261
  * @param {string} doctorId
6262
6262
  * @param {string} [hospitalName]
6263
+ * @param {string} [languageCode]
6263
6264
  * @param {number} [page]
6264
6265
  * @param {number} [limit]
6265
6266
  * @param {Date} [lastRetrieved]
6266
6267
  * @param {*} [options] Override http request option.
6267
6268
  * @throws {RequiredError}
6268
6269
  */
6269
- apiV2DoctorsDoctorIdAffiliationsGet: function (doctorId, hospitalName, page, limit, lastRetrieved, options) {
6270
+ apiV2DoctorsDoctorIdAffiliationsGet: function (doctorId, hospitalName, languageCode, page, limit, lastRetrieved, options) {
6270
6271
  if (options === void 0) { options = {}; }
6271
6272
  return __awaiter(_this, void 0, void 0, function () {
6272
6273
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -6285,6 +6286,9 @@ var DoctorsApiAxiosParamCreator = function (configuration) {
6285
6286
  if (hospitalName !== undefined) {
6286
6287
  localVarQueryParameter['HospitalName'] = hospitalName;
6287
6288
  }
6289
+ if (languageCode !== undefined) {
6290
+ localVarQueryParameter['LanguageCode'] = languageCode;
6291
+ }
6288
6292
  if (page !== undefined) {
6289
6293
  localVarQueryParameter['page'] = page;
6290
6294
  }
@@ -6880,13 +6884,15 @@ var DoctorsApiAxiosParamCreator = function (configuration) {
6880
6884
  * @param {string} [doctorName]
6881
6885
  * @param {string} [specialtyId]
6882
6886
  * @param {string} [specialtyName]
6887
+ * @param {string} [languageCode]
6888
+ * @param {boolean} [showHidden]
6883
6889
  * @param {number} [page]
6884
6890
  * @param {number} [limit]
6885
6891
  * @param {Date} [lastRetrieved]
6886
6892
  * @param {*} [options] Override http request option.
6887
6893
  * @throws {RequiredError}
6888
6894
  */
6889
- apiV2DoctorsDoctorIdSpecialtiesGet: function (doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options) {
6895
+ apiV2DoctorsDoctorIdSpecialtiesGet: function (doctorId, doctorName, specialtyId, specialtyName, languageCode, showHidden, page, limit, lastRetrieved, options) {
6890
6896
  if (options === void 0) { options = {}; }
6891
6897
  return __awaiter(_this, void 0, void 0, function () {
6892
6898
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -6911,6 +6917,12 @@ var DoctorsApiAxiosParamCreator = function (configuration) {
6911
6917
  if (specialtyName !== undefined) {
6912
6918
  localVarQueryParameter['SpecialtyName'] = specialtyName;
6913
6919
  }
6920
+ if (languageCode !== undefined) {
6921
+ localVarQueryParameter['LanguageCode'] = languageCode;
6922
+ }
6923
+ if (showHidden !== undefined) {
6924
+ localVarQueryParameter['ShowHidden'] = showHidden;
6925
+ }
6914
6926
  if (page !== undefined) {
6915
6927
  localVarQueryParameter['page'] = page;
6916
6928
  }
@@ -6937,10 +6949,11 @@ var DoctorsApiAxiosParamCreator = function (configuration) {
6937
6949
  * @summary Get DoctorSpecialty
6938
6950
  * @param {string} doctorId
6939
6951
  * @param {string} specialtyId
6952
+ * @param {string} [languageCode]
6940
6953
  * @param {*} [options] Override http request option.
6941
6954
  * @throws {RequiredError}
6942
6955
  */
6943
- apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet: function (doctorId, specialtyId, options) {
6956
+ apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet: function (doctorId, specialtyId, languageCode, options) {
6944
6957
  if (options === void 0) { options = {}; }
6945
6958
  return __awaiter(_this, void 0, void 0, function () {
6946
6959
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -6959,6 +6972,9 @@ var DoctorsApiAxiosParamCreator = function (configuration) {
6959
6972
  localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
6960
6973
  localVarHeaderParameter = {};
6961
6974
  localVarQueryParameter = {};
6975
+ if (languageCode !== undefined) {
6976
+ localVarQueryParameter['languageCode'] = languageCode;
6977
+ }
6962
6978
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
6963
6979
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
6964
6980
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -7230,18 +7246,19 @@ var DoctorsApiFp = function (configuration) {
7230
7246
  * @summary Get all doctor affiliations.
7231
7247
  * @param {string} doctorId
7232
7248
  * @param {string} [hospitalName]
7249
+ * @param {string} [languageCode]
7233
7250
  * @param {number} [page]
7234
7251
  * @param {number} [limit]
7235
7252
  * @param {Date} [lastRetrieved]
7236
7253
  * @param {*} [options] Override http request option.
7237
7254
  * @throws {RequiredError}
7238
7255
  */
7239
- apiV2DoctorsDoctorIdAffiliationsGet: function (doctorId, hospitalName, page, limit, lastRetrieved, options) {
7256
+ apiV2DoctorsDoctorIdAffiliationsGet: function (doctorId, hospitalName, languageCode, page, limit, lastRetrieved, options) {
7240
7257
  return __awaiter(this, void 0, void 0, function () {
7241
7258
  var localVarAxiosArgs;
7242
7259
  return __generator(this, function (_a) {
7243
7260
  switch (_a.label) {
7244
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, page, limit, lastRetrieved, options)];
7261
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, languageCode, page, limit, lastRetrieved, options)];
7245
7262
  case 1:
7246
7263
  localVarAxiosArgs = _a.sent();
7247
7264
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -7534,18 +7551,20 @@ var DoctorsApiFp = function (configuration) {
7534
7551
  * @param {string} [doctorName]
7535
7552
  * @param {string} [specialtyId]
7536
7553
  * @param {string} [specialtyName]
7554
+ * @param {string} [languageCode]
7555
+ * @param {boolean} [showHidden]
7537
7556
  * @param {number} [page]
7538
7557
  * @param {number} [limit]
7539
7558
  * @param {Date} [lastRetrieved]
7540
7559
  * @param {*} [options] Override http request option.
7541
7560
  * @throws {RequiredError}
7542
7561
  */
7543
- apiV2DoctorsDoctorIdSpecialtiesGet: function (doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options) {
7562
+ apiV2DoctorsDoctorIdSpecialtiesGet: function (doctorId, doctorName, specialtyId, specialtyName, languageCode, showHidden, page, limit, lastRetrieved, options) {
7544
7563
  return __awaiter(this, void 0, void 0, function () {
7545
7564
  var localVarAxiosArgs;
7546
7565
  return __generator(this, function (_a) {
7547
7566
  switch (_a.label) {
7548
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options)];
7567
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, showHidden, page, limit, lastRetrieved, options)];
7549
7568
  case 1:
7550
7569
  localVarAxiosArgs = _a.sent();
7551
7570
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -7558,15 +7577,16 @@ var DoctorsApiFp = function (configuration) {
7558
7577
  * @summary Get DoctorSpecialty
7559
7578
  * @param {string} doctorId
7560
7579
  * @param {string} specialtyId
7580
+ * @param {string} [languageCode]
7561
7581
  * @param {*} [options] Override http request option.
7562
7582
  * @throws {RequiredError}
7563
7583
  */
7564
- apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet: function (doctorId, specialtyId, options) {
7584
+ apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet: function (doctorId, specialtyId, languageCode, options) {
7565
7585
  return __awaiter(this, void 0, void 0, function () {
7566
7586
  var localVarAxiosArgs;
7567
7587
  return __generator(this, function (_a) {
7568
7588
  switch (_a.label) {
7569
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId, specialtyId, options)];
7589
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId, specialtyId, languageCode, options)];
7570
7590
  case 1:
7571
7591
  localVarAxiosArgs = _a.sent();
7572
7592
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -7682,14 +7702,15 @@ var DoctorsApiFactory = function (configuration, basePath, axios) {
7682
7702
  * @summary Get all doctor affiliations.
7683
7703
  * @param {string} doctorId
7684
7704
  * @param {string} [hospitalName]
7705
+ * @param {string} [languageCode]
7685
7706
  * @param {number} [page]
7686
7707
  * @param {number} [limit]
7687
7708
  * @param {Date} [lastRetrieved]
7688
7709
  * @param {*} [options] Override http request option.
7689
7710
  * @throws {RequiredError}
7690
7711
  */
7691
- apiV2DoctorsDoctorIdAffiliationsGet: function (doctorId, hospitalName, page, limit, lastRetrieved, options) {
7692
- return localVarFp.apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
7712
+ apiV2DoctorsDoctorIdAffiliationsGet: function (doctorId, hospitalName, languageCode, page, limit, lastRetrieved, options) {
7713
+ return localVarFp.apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
7693
7714
  },
7694
7715
  /**
7695
7716
  *
@@ -7856,25 +7877,28 @@ var DoctorsApiFactory = function (configuration, basePath, axios) {
7856
7877
  * @param {string} [doctorName]
7857
7878
  * @param {string} [specialtyId]
7858
7879
  * @param {string} [specialtyName]
7880
+ * @param {string} [languageCode]
7881
+ * @param {boolean} [showHidden]
7859
7882
  * @param {number} [page]
7860
7883
  * @param {number} [limit]
7861
7884
  * @param {Date} [lastRetrieved]
7862
7885
  * @param {*} [options] Override http request option.
7863
7886
  * @throws {RequiredError}
7864
7887
  */
7865
- apiV2DoctorsDoctorIdSpecialtiesGet: function (doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options) {
7866
- return localVarFp.apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
7888
+ apiV2DoctorsDoctorIdSpecialtiesGet: function (doctorId, doctorName, specialtyId, specialtyName, languageCode, showHidden, page, limit, lastRetrieved, options) {
7889
+ return localVarFp.apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
7867
7890
  },
7868
7891
  /**
7869
7892
  *
7870
7893
  * @summary Get DoctorSpecialty
7871
7894
  * @param {string} doctorId
7872
7895
  * @param {string} specialtyId
7896
+ * @param {string} [languageCode]
7873
7897
  * @param {*} [options] Override http request option.
7874
7898
  * @throws {RequiredError}
7875
7899
  */
7876
- apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet: function (doctorId, specialtyId, options) {
7877
- return localVarFp.apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId, specialtyId, options).then(function (request) { return request(axios, basePath); });
7900
+ apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet: function (doctorId, specialtyId, languageCode, options) {
7901
+ return localVarFp.apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId, specialtyId, languageCode, options).then(function (request) { return request(axios, basePath); });
7878
7902
  },
7879
7903
  /**
7880
7904
  *
@@ -7958,6 +7982,7 @@ var DoctorsApi = /** @class */ (function (_super) {
7958
7982
  * @summary Get all doctor affiliations.
7959
7983
  * @param {string} doctorId
7960
7984
  * @param {string} [hospitalName]
7985
+ * @param {string} [languageCode]
7961
7986
  * @param {number} [page]
7962
7987
  * @param {number} [limit]
7963
7988
  * @param {Date} [lastRetrieved]
@@ -7965,9 +7990,9 @@ var DoctorsApi = /** @class */ (function (_super) {
7965
7990
  * @throws {RequiredError}
7966
7991
  * @memberof DoctorsApi
7967
7992
  */
7968
- DoctorsApi.prototype.apiV2DoctorsDoctorIdAffiliationsGet = function (doctorId, hospitalName, page, limit, lastRetrieved, options) {
7993
+ DoctorsApi.prototype.apiV2DoctorsDoctorIdAffiliationsGet = function (doctorId, hospitalName, languageCode, page, limit, lastRetrieved, options) {
7969
7994
  var _this = this;
7970
- return (0, exports.DoctorsApiFp)(this.configuration).apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
7995
+ return (0, exports.DoctorsApiFp)(this.configuration).apiV2DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
7971
7996
  };
7972
7997
  /**
7973
7998
  *
@@ -8158,6 +8183,8 @@ var DoctorsApi = /** @class */ (function (_super) {
8158
8183
  * @param {string} [doctorName]
8159
8184
  * @param {string} [specialtyId]
8160
8185
  * @param {string} [specialtyName]
8186
+ * @param {string} [languageCode]
8187
+ * @param {boolean} [showHidden]
8161
8188
  * @param {number} [page]
8162
8189
  * @param {number} [limit]
8163
8190
  * @param {Date} [lastRetrieved]
@@ -8165,22 +8192,23 @@ var DoctorsApi = /** @class */ (function (_super) {
8165
8192
  * @throws {RequiredError}
8166
8193
  * @memberof DoctorsApi
8167
8194
  */
8168
- DoctorsApi.prototype.apiV2DoctorsDoctorIdSpecialtiesGet = function (doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options) {
8195
+ DoctorsApi.prototype.apiV2DoctorsDoctorIdSpecialtiesGet = function (doctorId, doctorName, specialtyId, specialtyName, languageCode, showHidden, page, limit, lastRetrieved, options) {
8169
8196
  var _this = this;
8170
- return (0, exports.DoctorsApiFp)(this.configuration).apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
8197
+ return (0, exports.DoctorsApiFp)(this.configuration).apiV2DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
8171
8198
  };
8172
8199
  /**
8173
8200
  *
8174
8201
  * @summary Get DoctorSpecialty
8175
8202
  * @param {string} doctorId
8176
8203
  * @param {string} specialtyId
8204
+ * @param {string} [languageCode]
8177
8205
  * @param {*} [options] Override http request option.
8178
8206
  * @throws {RequiredError}
8179
8207
  * @memberof DoctorsApi
8180
8208
  */
8181
- DoctorsApi.prototype.apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet = function (doctorId, specialtyId, options) {
8209
+ DoctorsApi.prototype.apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet = function (doctorId, specialtyId, languageCode, options) {
8182
8210
  var _this = this;
8183
- return (0, exports.DoctorsApiFp)(this.configuration).apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId, specialtyId, options).then(function (request) { return request(_this.axios, _this.basePath); });
8211
+ return (0, exports.DoctorsApiFp)(this.configuration).apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId, specialtyId, languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
8184
8212
  };
8185
8213
  /**
8186
8214
  *
@@ -10568,17 +10596,14 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
10568
10596
  * @param {string} [name]
10569
10597
  * @param {string} [slug]
10570
10598
  * @param {MarketingType} [marketingType]
10571
- * @param {boolean} [returnDefaultValue]
10572
- * @param {boolean} [includeServices]
10573
10599
  * @param {string} [languageCode]
10574
- * @param {boolean} [showHidden]
10575
10600
  * @param {number} [page]
10576
10601
  * @param {number} [limit]
10577
10602
  * @param {Date} [lastRetrieved]
10578
10603
  * @param {*} [options] Override http request option.
10579
10604
  * @throws {RequiredError}
10580
10605
  */
10581
- apiV2HospitalsHospitalIdSpecialtiesGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options) {
10606
+ apiV2HospitalsHospitalIdSpecialtiesGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options) {
10582
10607
  if (options === void 0) { options = {}; }
10583
10608
  return __awaiter(_this, void 0, void 0, function () {
10584
10609
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -10618,18 +10643,9 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
10618
10643
  if (marketingType !== undefined) {
10619
10644
  localVarQueryParameter['MarketingType'] = marketingType;
10620
10645
  }
10621
- if (returnDefaultValue !== undefined) {
10622
- localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
10623
- }
10624
- if (includeServices !== undefined) {
10625
- localVarQueryParameter['IncludeServices'] = includeServices;
10626
- }
10627
10646
  if (languageCode !== undefined) {
10628
10647
  localVarQueryParameter['LanguageCode'] = languageCode;
10629
10648
  }
10630
- if (showHidden !== undefined) {
10631
- localVarQueryParameter['ShowHidden'] = showHidden;
10632
- }
10633
10649
  if (page !== undefined) {
10634
10650
  localVarQueryParameter['page'] = page;
10635
10651
  }
@@ -10763,17 +10779,14 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
10763
10779
  * @param {string} [name]
10764
10780
  * @param {string} [slug]
10765
10781
  * @param {MarketingType} [marketingType]
10766
- * @param {boolean} [returnDefaultValue]
10767
- * @param {boolean} [includeServices]
10768
10782
  * @param {string} [languageCode]
10769
- * @param {boolean} [showHidden]
10770
10783
  * @param {number} [page]
10771
10784
  * @param {number} [limit]
10772
10785
  * @param {Date} [lastRetrieved]
10773
10786
  * @param {*} [options] Override http request option.
10774
10787
  * @throws {RequiredError}
10775
10788
  */
10776
- apiV2HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options) {
10789
+ apiV2HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options) {
10777
10790
  if (options === void 0) { options = {}; }
10778
10791
  return __awaiter(_this, void 0, void 0, function () {
10779
10792
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -10813,18 +10826,9 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
10813
10826
  if (marketingType !== undefined) {
10814
10827
  localVarQueryParameter['MarketingType'] = marketingType;
10815
10828
  }
10816
- if (returnDefaultValue !== undefined) {
10817
- localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
10818
- }
10819
- if (includeServices !== undefined) {
10820
- localVarQueryParameter['IncludeServices'] = includeServices;
10821
- }
10822
10829
  if (languageCode !== undefined) {
10823
10830
  localVarQueryParameter['LanguageCode'] = languageCode;
10824
10831
  }
10825
- if (showHidden !== undefined) {
10826
- localVarQueryParameter['ShowHidden'] = showHidden;
10827
- }
10828
10832
  if (page !== undefined) {
10829
10833
  localVarQueryParameter['page'] = page;
10830
10834
  }
@@ -10852,12 +10856,10 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
10852
10856
  * @param {string} hospitalId
10853
10857
  * @param {string} slug
10854
10858
  * @param {string} [languageCode]
10855
- * @param {boolean} [returnDefaultValue]
10856
- * @param {boolean} [includeServices]
10857
10859
  * @param {*} [options] Override http request option.
10858
10860
  * @throws {RequiredError}
10859
10861
  */
10860
- apiV2HospitalsHospitalIdSpecialtiesSlugGet: function (hospitalId, slug, languageCode, returnDefaultValue, includeServices, options) {
10862
+ apiV2HospitalsHospitalIdSpecialtiesSlugGet: function (hospitalId, slug, languageCode, options) {
10861
10863
  if (options === void 0) { options = {}; }
10862
10864
  return __awaiter(_this, void 0, void 0, function () {
10863
10865
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -10879,12 +10881,6 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
10879
10881
  if (languageCode !== undefined) {
10880
10882
  localVarQueryParameter['languageCode'] = languageCode;
10881
10883
  }
10882
- if (returnDefaultValue !== undefined) {
10883
- localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
10884
- }
10885
- if (includeServices !== undefined) {
10886
- localVarQueryParameter['includeServices'] = includeServices;
10887
- }
10888
10884
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
10889
10885
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
10890
10886
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -10901,12 +10897,10 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
10901
10897
  * @param {string} hospitalId
10902
10898
  * @param {string} specialtyId
10903
10899
  * @param {string} [languageCode]
10904
- * @param {boolean} [returnDefaultValue]
10905
- * @param {boolean} [includeServices]
10906
10900
  * @param {*} [options] Override http request option.
10907
10901
  * @throws {RequiredError}
10908
10902
  */
10909
- apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, languageCode, returnDefaultValue, includeServices, options) {
10903
+ apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, languageCode, options) {
10910
10904
  if (options === void 0) { options = {}; }
10911
10905
  return __awaiter(_this, void 0, void 0, function () {
10912
10906
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -10928,12 +10922,6 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
10928
10922
  if (languageCode !== undefined) {
10929
10923
  localVarQueryParameter['languageCode'] = languageCode;
10930
10924
  }
10931
- if (returnDefaultValue !== undefined) {
10932
- localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
10933
- }
10934
- if (includeServices !== undefined) {
10935
- localVarQueryParameter['includeServices'] = includeServices;
10936
- }
10937
10925
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
10938
10926
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
10939
10927
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -11798,22 +11786,19 @@ var HospitalsApiFp = function (configuration) {
11798
11786
  * @param {string} [name]
11799
11787
  * @param {string} [slug]
11800
11788
  * @param {MarketingType} [marketingType]
11801
- * @param {boolean} [returnDefaultValue]
11802
- * @param {boolean} [includeServices]
11803
11789
  * @param {string} [languageCode]
11804
- * @param {boolean} [showHidden]
11805
11790
  * @param {number} [page]
11806
11791
  * @param {number} [limit]
11807
11792
  * @param {Date} [lastRetrieved]
11808
11793
  * @param {*} [options] Override http request option.
11809
11794
  * @throws {RequiredError}
11810
11795
  */
11811
- apiV2HospitalsHospitalIdSpecialtiesGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options) {
11796
+ apiV2HospitalsHospitalIdSpecialtiesGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options) {
11812
11797
  return __awaiter(this, void 0, void 0, function () {
11813
11798
  var localVarAxiosArgs;
11814
11799
  return __generator(this, function (_a) {
11815
11800
  switch (_a.label) {
11816
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options)];
11801
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options)];
11817
11802
  case 1:
11818
11803
  localVarAxiosArgs = _a.sent();
11819
11804
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -11881,22 +11866,19 @@ var HospitalsApiFp = function (configuration) {
11881
11866
  * @param {string} [name]
11882
11867
  * @param {string} [slug]
11883
11868
  * @param {MarketingType} [marketingType]
11884
- * @param {boolean} [returnDefaultValue]
11885
- * @param {boolean} [includeServices]
11886
11869
  * @param {string} [languageCode]
11887
- * @param {boolean} [showHidden]
11888
11870
  * @param {number} [page]
11889
11871
  * @param {number} [limit]
11890
11872
  * @param {Date} [lastRetrieved]
11891
11873
  * @param {*} [options] Override http request option.
11892
11874
  * @throws {RequiredError}
11893
11875
  */
11894
- apiV2HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options) {
11876
+ apiV2HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options) {
11895
11877
  return __awaiter(this, void 0, void 0, function () {
11896
11878
  var localVarAxiosArgs;
11897
11879
  return __generator(this, function (_a) {
11898
11880
  switch (_a.label) {
11899
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options)];
11881
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options)];
11900
11882
  case 1:
11901
11883
  localVarAxiosArgs = _a.sent();
11902
11884
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -11910,17 +11892,15 @@ var HospitalsApiFp = function (configuration) {
11910
11892
  * @param {string} hospitalId
11911
11893
  * @param {string} slug
11912
11894
  * @param {string} [languageCode]
11913
- * @param {boolean} [returnDefaultValue]
11914
- * @param {boolean} [includeServices]
11915
11895
  * @param {*} [options] Override http request option.
11916
11896
  * @throws {RequiredError}
11917
11897
  */
11918
- apiV2HospitalsHospitalIdSpecialtiesSlugGet: function (hospitalId, slug, languageCode, returnDefaultValue, includeServices, options) {
11898
+ apiV2HospitalsHospitalIdSpecialtiesSlugGet: function (hospitalId, slug, languageCode, options) {
11919
11899
  return __awaiter(this, void 0, void 0, function () {
11920
11900
  var localVarAxiosArgs;
11921
11901
  return __generator(this, function (_a) {
11922
11902
  switch (_a.label) {
11923
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode, returnDefaultValue, includeServices, options)];
11903
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode, options)];
11924
11904
  case 1:
11925
11905
  localVarAxiosArgs = _a.sent();
11926
11906
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -11934,17 +11914,15 @@ var HospitalsApiFp = function (configuration) {
11934
11914
  * @param {string} hospitalId
11935
11915
  * @param {string} specialtyId
11936
11916
  * @param {string} [languageCode]
11937
- * @param {boolean} [returnDefaultValue]
11938
- * @param {boolean} [includeServices]
11939
11917
  * @param {*} [options] Override http request option.
11940
11918
  * @throws {RequiredError}
11941
11919
  */
11942
- apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, languageCode, returnDefaultValue, includeServices, options) {
11920
+ apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, languageCode, options) {
11943
11921
  return __awaiter(this, void 0, void 0, function () {
11944
11922
  var localVarAxiosArgs;
11945
11923
  return __generator(this, function (_a) {
11946
11924
  switch (_a.label) {
11947
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, returnDefaultValue, includeServices, options)];
11925
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options)];
11948
11926
  case 1:
11949
11927
  localVarAxiosArgs = _a.sent();
11950
11928
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -12387,18 +12365,15 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
12387
12365
  * @param {string} [name]
12388
12366
  * @param {string} [slug]
12389
12367
  * @param {MarketingType} [marketingType]
12390
- * @param {boolean} [returnDefaultValue]
12391
- * @param {boolean} [includeServices]
12392
12368
  * @param {string} [languageCode]
12393
- * @param {boolean} [showHidden]
12394
12369
  * @param {number} [page]
12395
12370
  * @param {number} [limit]
12396
12371
  * @param {Date} [lastRetrieved]
12397
12372
  * @param {*} [options] Override http request option.
12398
12373
  * @throws {RequiredError}
12399
12374
  */
12400
- apiV2HospitalsHospitalIdSpecialtiesGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options) {
12401
- return localVarFp.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
12375
+ apiV2HospitalsHospitalIdSpecialtiesGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options) {
12376
+ return localVarFp.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
12402
12377
  },
12403
12378
  /**
12404
12379
  *
@@ -12440,18 +12415,15 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
12440
12415
  * @param {string} [name]
12441
12416
  * @param {string} [slug]
12442
12417
  * @param {MarketingType} [marketingType]
12443
- * @param {boolean} [returnDefaultValue]
12444
- * @param {boolean} [includeServices]
12445
12418
  * @param {string} [languageCode]
12446
- * @param {boolean} [showHidden]
12447
12419
  * @param {number} [page]
12448
12420
  * @param {number} [limit]
12449
12421
  * @param {Date} [lastRetrieved]
12450
12422
  * @param {*} [options] Override http request option.
12451
12423
  * @throws {RequiredError}
12452
12424
  */
12453
- apiV2HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options) {
12454
- return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
12425
+ apiV2HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options) {
12426
+ return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
12455
12427
  },
12456
12428
  /**
12457
12429
  *
@@ -12459,13 +12431,11 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
12459
12431
  * @param {string} hospitalId
12460
12432
  * @param {string} slug
12461
12433
  * @param {string} [languageCode]
12462
- * @param {boolean} [returnDefaultValue]
12463
- * @param {boolean} [includeServices]
12464
12434
  * @param {*} [options] Override http request option.
12465
12435
  * @throws {RequiredError}
12466
12436
  */
12467
- apiV2HospitalsHospitalIdSpecialtiesSlugGet: function (hospitalId, slug, languageCode, returnDefaultValue, includeServices, options) {
12468
- return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode, returnDefaultValue, includeServices, options).then(function (request) { return request(axios, basePath); });
12437
+ apiV2HospitalsHospitalIdSpecialtiesSlugGet: function (hospitalId, slug, languageCode, options) {
12438
+ return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode, options).then(function (request) { return request(axios, basePath); });
12469
12439
  },
12470
12440
  /**
12471
12441
  *
@@ -12473,13 +12443,11 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
12473
12443
  * @param {string} hospitalId
12474
12444
  * @param {string} specialtyId
12475
12445
  * @param {string} [languageCode]
12476
- * @param {boolean} [returnDefaultValue]
12477
- * @param {boolean} [includeServices]
12478
12446
  * @param {*} [options] Override http request option.
12479
12447
  * @throws {RequiredError}
12480
12448
  */
12481
- apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, languageCode, returnDefaultValue, includeServices, options) {
12482
- return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, returnDefaultValue, includeServices, options).then(function (request) { return request(axios, basePath); });
12449
+ apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, languageCode, options) {
12450
+ return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options).then(function (request) { return request(axios, basePath); });
12483
12451
  },
12484
12452
  /**
12485
12453
  *
@@ -12868,10 +12836,7 @@ var HospitalsApi = /** @class */ (function (_super) {
12868
12836
  * @param {string} [name]
12869
12837
  * @param {string} [slug]
12870
12838
  * @param {MarketingType} [marketingType]
12871
- * @param {boolean} [returnDefaultValue]
12872
- * @param {boolean} [includeServices]
12873
12839
  * @param {string} [languageCode]
12874
- * @param {boolean} [showHidden]
12875
12840
  * @param {number} [page]
12876
12841
  * @param {number} [limit]
12877
12842
  * @param {Date} [lastRetrieved]
@@ -12879,9 +12844,9 @@ var HospitalsApi = /** @class */ (function (_super) {
12879
12844
  * @throws {RequiredError}
12880
12845
  * @memberof HospitalsApi
12881
12846
  */
12882
- HospitalsApi.prototype.apiV2HospitalsHospitalIdSpecialtiesGet = function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options) {
12847
+ HospitalsApi.prototype.apiV2HospitalsHospitalIdSpecialtiesGet = function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options) {
12883
12848
  var _this = this;
12884
- return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
12849
+ return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
12885
12850
  };
12886
12851
  /**
12887
12852
  *
@@ -12927,10 +12892,7 @@ var HospitalsApi = /** @class */ (function (_super) {
12927
12892
  * @param {string} [name]
12928
12893
  * @param {string} [slug]
12929
12894
  * @param {MarketingType} [marketingType]
12930
- * @param {boolean} [returnDefaultValue]
12931
- * @param {boolean} [includeServices]
12932
12895
  * @param {string} [languageCode]
12933
- * @param {boolean} [showHidden]
12934
12896
  * @param {number} [page]
12935
12897
  * @param {number} [limit]
12936
12898
  * @param {Date} [lastRetrieved]
@@ -12938,9 +12900,9 @@ var HospitalsApi = /** @class */ (function (_super) {
12938
12900
  * @throws {RequiredError}
12939
12901
  * @memberof HospitalsApi
12940
12902
  */
12941
- HospitalsApi.prototype.apiV2HospitalsHospitalIdSpecialtiesSimpleGet = function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options) {
12903
+ HospitalsApi.prototype.apiV2HospitalsHospitalIdSpecialtiesSimpleGet = function (hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options) {
12942
12904
  var _this = this;
12943
- return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
12905
+ return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
12944
12906
  };
12945
12907
  /**
12946
12908
  *
@@ -12948,15 +12910,13 @@ var HospitalsApi = /** @class */ (function (_super) {
12948
12910
  * @param {string} hospitalId
12949
12911
  * @param {string} slug
12950
12912
  * @param {string} [languageCode]
12951
- * @param {boolean} [returnDefaultValue]
12952
- * @param {boolean} [includeServices]
12953
12913
  * @param {*} [options] Override http request option.
12954
12914
  * @throws {RequiredError}
12955
12915
  * @memberof HospitalsApi
12956
12916
  */
12957
- HospitalsApi.prototype.apiV2HospitalsHospitalIdSpecialtiesSlugGet = function (hospitalId, slug, languageCode, returnDefaultValue, includeServices, options) {
12917
+ HospitalsApi.prototype.apiV2HospitalsHospitalIdSpecialtiesSlugGet = function (hospitalId, slug, languageCode, options) {
12958
12918
  var _this = this;
12959
- return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode, returnDefaultValue, includeServices, options).then(function (request) { return request(_this.axios, _this.basePath); });
12919
+ return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId, slug, languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
12960
12920
  };
12961
12921
  /**
12962
12922
  *
@@ -12964,15 +12924,13 @@ var HospitalsApi = /** @class */ (function (_super) {
12964
12924
  * @param {string} hospitalId
12965
12925
  * @param {string} specialtyId
12966
12926
  * @param {string} [languageCode]
12967
- * @param {boolean} [returnDefaultValue]
12968
- * @param {boolean} [includeServices]
12969
12927
  * @param {*} [options] Override http request option.
12970
12928
  * @throws {RequiredError}
12971
12929
  * @memberof HospitalsApi
12972
12930
  */
12973
- HospitalsApi.prototype.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet = function (hospitalId, specialtyId, languageCode, returnDefaultValue, includeServices, options) {
12931
+ HospitalsApi.prototype.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet = function (hospitalId, specialtyId, languageCode, options) {
12974
12932
  var _this = this;
12975
- return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, returnDefaultValue, includeServices, options).then(function (request) { return request(_this.axios, _this.basePath); });
12933
+ return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
12976
12934
  };
12977
12935
  /**
12978
12936
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ch-api-client-typescript2",
3
- "version": "3.3.4",
3
+ "version": "3.4.0",
4
4
  "description": "Openapi generated typescript-axios client for CloudHospital",
5
5
  "main": "index.js",
6
6
  "scripts": {