ch-api-client-typescript2 2.7.5 → 2.7.6

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
@@ -8928,7 +8928,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
8928
8928
  * @summary Get all Hospitals.
8929
8929
  * @param {string} [hospitalId]
8930
8930
  * @param {string} [name]
8931
- * @param {string} [description]
8932
8931
  * @param {string} [countryId]
8933
8932
  * @param {Date} [created]
8934
8933
  * @param {MarketingType} [marketingType]
@@ -8946,7 +8945,7 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
8946
8945
  * @param {*} [options] Override http request option.
8947
8946
  * @throws {RequiredError}
8948
8947
  */
8949
- apiV2HospitalsGet: function (hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
8948
+ apiV2HospitalsGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
8950
8949
  if (options === void 0) { options = {}; }
8951
8950
  return __awaiter(_this, void 0, void 0, function () {
8952
8951
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -8965,9 +8964,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
8965
8964
  if (name !== undefined) {
8966
8965
  localVarQueryParameter['Name'] = name;
8967
8966
  }
8968
- if (description !== undefined) {
8969
- localVarQueryParameter['Description'] = description;
8970
- }
8971
8967
  if (countryId !== undefined) {
8972
8968
  localVarQueryParameter['CountryId'] = countryId;
8973
8969
  }
@@ -9567,6 +9563,7 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
9567
9563
  * @param {string} [specialtyId]
9568
9564
  * @param {string} [specialtyName]
9569
9565
  * @param {string} [specialtyTypeId]
9566
+ * @param {string} [title]
9570
9567
  * @param {MarketingType} [marketingType]
9571
9568
  * @param {Date} [created]
9572
9569
  * @param {number} [page]
@@ -9575,7 +9572,7 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
9575
9572
  * @param {*} [options] Override http request option.
9576
9573
  * @throws {RequiredError}
9577
9574
  */
9578
- apiV2HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, marketingType, created, page, limit, lastRetrieved, options) {
9575
+ apiV2HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, created, page, limit, lastRetrieved, options) {
9579
9576
  if (options === void 0) { options = {}; }
9580
9577
  return __awaiter(_this, void 0, void 0, function () {
9581
9578
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -9606,6 +9603,9 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
9606
9603
  if (specialtyTypeId !== undefined) {
9607
9604
  localVarQueryParameter['SpecialtyTypeId'] = specialtyTypeId;
9608
9605
  }
9606
+ if (title !== undefined) {
9607
+ localVarQueryParameter['Title'] = title;
9608
+ }
9609
9609
  if (marketingType !== undefined) {
9610
9610
  localVarQueryParameter['MarketingType'] = marketingType;
9611
9611
  }
@@ -9943,7 +9943,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
9943
9943
  * @summary Get all Hospitals.
9944
9944
  * @param {string} [hospitalId]
9945
9945
  * @param {string} [name]
9946
- * @param {string} [description]
9947
9946
  * @param {string} [countryId]
9948
9947
  * @param {Date} [created]
9949
9948
  * @param {MarketingType} [marketingType]
@@ -9961,7 +9960,7 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
9961
9960
  * @param {*} [options] Override http request option.
9962
9961
  * @throws {RequiredError}
9963
9962
  */
9964
- apiV2HospitalsSimpleGet: function (hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
9963
+ apiV2HospitalsSimpleGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
9965
9964
  if (options === void 0) { options = {}; }
9966
9965
  return __awaiter(_this, void 0, void 0, function () {
9967
9966
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -9980,9 +9979,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
9980
9979
  if (name !== undefined) {
9981
9980
  localVarQueryParameter['Name'] = name;
9982
9981
  }
9983
- if (description !== undefined) {
9984
- localVarQueryParameter['Description'] = description;
9985
- }
9986
9982
  if (countryId !== undefined) {
9987
9983
  localVarQueryParameter['CountryId'] = countryId;
9988
9984
  }
@@ -10093,7 +10089,6 @@ exports.HospitalsApiFp = function (configuration) {
10093
10089
  * @summary Get all Hospitals.
10094
10090
  * @param {string} [hospitalId]
10095
10091
  * @param {string} [name]
10096
- * @param {string} [description]
10097
10092
  * @param {string} [countryId]
10098
10093
  * @param {Date} [created]
10099
10094
  * @param {MarketingType} [marketingType]
@@ -10111,12 +10106,12 @@ exports.HospitalsApiFp = function (configuration) {
10111
10106
  * @param {*} [options] Override http request option.
10112
10107
  * @throws {RequiredError}
10113
10108
  */
10114
- apiV2HospitalsGet: function (hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
10109
+ apiV2HospitalsGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
10115
10110
  return __awaiter(this, void 0, void 0, function () {
10116
10111
  var localVarAxiosArgs;
10117
10112
  return __generator(this, function (_a) {
10118
10113
  switch (_a.label) {
10119
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsGet(hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options)];
10114
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options)];
10120
10115
  case 1:
10121
10116
  localVarAxiosArgs = _a.sent();
10122
10117
  return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -10392,6 +10387,7 @@ exports.HospitalsApiFp = function (configuration) {
10392
10387
  * @param {string} [specialtyId]
10393
10388
  * @param {string} [specialtyName]
10394
10389
  * @param {string} [specialtyTypeId]
10390
+ * @param {string} [title]
10395
10391
  * @param {MarketingType} [marketingType]
10396
10392
  * @param {Date} [created]
10397
10393
  * @param {number} [page]
@@ -10400,12 +10396,12 @@ exports.HospitalsApiFp = function (configuration) {
10400
10396
  * @param {*} [options] Override http request option.
10401
10397
  * @throws {RequiredError}
10402
10398
  */
10403
- apiV2HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, marketingType, created, page, limit, lastRetrieved, options) {
10399
+ apiV2HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, created, page, limit, lastRetrieved, options) {
10404
10400
  return __awaiter(this, void 0, void 0, function () {
10405
10401
  var localVarAxiosArgs;
10406
10402
  return __generator(this, function (_a) {
10407
10403
  switch (_a.label) {
10408
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, marketingType, created, page, limit, lastRetrieved, options)];
10404
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, created, page, limit, lastRetrieved, options)];
10409
10405
  case 1:
10410
10406
  localVarAxiosArgs = _a.sent();
10411
10407
  return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -10551,7 +10547,6 @@ exports.HospitalsApiFp = function (configuration) {
10551
10547
  * @summary Get all Hospitals.
10552
10548
  * @param {string} [hospitalId]
10553
10549
  * @param {string} [name]
10554
- * @param {string} [description]
10555
10550
  * @param {string} [countryId]
10556
10551
  * @param {Date} [created]
10557
10552
  * @param {MarketingType} [marketingType]
@@ -10569,12 +10564,12 @@ exports.HospitalsApiFp = function (configuration) {
10569
10564
  * @param {*} [options] Override http request option.
10570
10565
  * @throws {RequiredError}
10571
10566
  */
10572
- apiV2HospitalsSimpleGet: function (hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
10567
+ apiV2HospitalsSimpleGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
10573
10568
  return __awaiter(this, void 0, void 0, function () {
10574
10569
  var localVarAxiosArgs;
10575
10570
  return __generator(this, function (_a) {
10576
10571
  switch (_a.label) {
10577
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsSimpleGet(hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options)];
10572
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options)];
10578
10573
  case 1:
10579
10574
  localVarAxiosArgs = _a.sent();
10580
10575
  return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -10617,7 +10612,6 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
10617
10612
  * @summary Get all Hospitals.
10618
10613
  * @param {string} [hospitalId]
10619
10614
  * @param {string} [name]
10620
- * @param {string} [description]
10621
10615
  * @param {string} [countryId]
10622
10616
  * @param {Date} [created]
10623
10617
  * @param {MarketingType} [marketingType]
@@ -10635,8 +10629,8 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
10635
10629
  * @param {*} [options] Override http request option.
10636
10630
  * @throws {RequiredError}
10637
10631
  */
10638
- apiV2HospitalsGet: function (hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
10639
- return localVarFp.apiV2HospitalsGet(hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
10632
+ apiV2HospitalsGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
10633
+ return localVarFp.apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
10640
10634
  },
10641
10635
  /**
10642
10636
  *
@@ -10796,6 +10790,7 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
10796
10790
  * @param {string} [specialtyId]
10797
10791
  * @param {string} [specialtyName]
10798
10792
  * @param {string} [specialtyTypeId]
10793
+ * @param {string} [title]
10799
10794
  * @param {MarketingType} [marketingType]
10800
10795
  * @param {Date} [created]
10801
10796
  * @param {number} [page]
@@ -10804,8 +10799,8 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
10804
10799
  * @param {*} [options] Override http request option.
10805
10800
  * @throws {RequiredError}
10806
10801
  */
10807
- apiV2HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, marketingType, created, page, limit, lastRetrieved, options) {
10808
- return localVarFp.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, marketingType, created, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
10802
+ apiV2HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, created, page, limit, lastRetrieved, options) {
10803
+ return localVarFp.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, created, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
10809
10804
  },
10810
10805
  /**
10811
10806
  *
@@ -10895,7 +10890,6 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
10895
10890
  * @summary Get all Hospitals.
10896
10891
  * @param {string} [hospitalId]
10897
10892
  * @param {string} [name]
10898
- * @param {string} [description]
10899
10893
  * @param {string} [countryId]
10900
10894
  * @param {Date} [created]
10901
10895
  * @param {MarketingType} [marketingType]
@@ -10913,8 +10907,8 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
10913
10907
  * @param {*} [options] Override http request option.
10914
10908
  * @throws {RequiredError}
10915
10909
  */
10916
- apiV2HospitalsSimpleGet: function (hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
10917
- return localVarFp.apiV2HospitalsSimpleGet(hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
10910
+ apiV2HospitalsSimpleGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
10911
+ return localVarFp.apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
10918
10912
  },
10919
10913
  /**
10920
10914
  *
@@ -10945,7 +10939,6 @@ var HospitalsApi = /** @class */ (function (_super) {
10945
10939
  * @summary Get all Hospitals.
10946
10940
  * @param {string} [hospitalId]
10947
10941
  * @param {string} [name]
10948
- * @param {string} [description]
10949
10942
  * @param {string} [countryId]
10950
10943
  * @param {Date} [created]
10951
10944
  * @param {MarketingType} [marketingType]
@@ -10964,9 +10957,9 @@ var HospitalsApi = /** @class */ (function (_super) {
10964
10957
  * @throws {RequiredError}
10965
10958
  * @memberof HospitalsApi
10966
10959
  */
10967
- HospitalsApi.prototype.apiV2HospitalsGet = function (hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
10960
+ HospitalsApi.prototype.apiV2HospitalsGet = function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
10968
10961
  var _this = this;
10969
- return exports.HospitalsApiFp(this.configuration).apiV2HospitalsGet(hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
10962
+ return exports.HospitalsApiFp(this.configuration).apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
10970
10963
  };
10971
10964
  /**
10972
10965
  *
@@ -11148,6 +11141,7 @@ var HospitalsApi = /** @class */ (function (_super) {
11148
11141
  * @param {string} [specialtyId]
11149
11142
  * @param {string} [specialtyName]
11150
11143
  * @param {string} [specialtyTypeId]
11144
+ * @param {string} [title]
11151
11145
  * @param {MarketingType} [marketingType]
11152
11146
  * @param {Date} [created]
11153
11147
  * @param {number} [page]
@@ -11157,9 +11151,9 @@ var HospitalsApi = /** @class */ (function (_super) {
11157
11151
  * @throws {RequiredError}
11158
11152
  * @memberof HospitalsApi
11159
11153
  */
11160
- HospitalsApi.prototype.apiV2HospitalsHospitalIdSpecialtiesGet = function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, marketingType, created, page, limit, lastRetrieved, options) {
11154
+ HospitalsApi.prototype.apiV2HospitalsHospitalIdSpecialtiesGet = function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, created, page, limit, lastRetrieved, options) {
11161
11155
  var _this = this;
11162
- return exports.HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, marketingType, created, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
11156
+ return exports.HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, created, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
11163
11157
  };
11164
11158
  /**
11165
11159
  *
@@ -11259,7 +11253,6 @@ var HospitalsApi = /** @class */ (function (_super) {
11259
11253
  * @summary Get all Hospitals.
11260
11254
  * @param {string} [hospitalId]
11261
11255
  * @param {string} [name]
11262
- * @param {string} [description]
11263
11256
  * @param {string} [countryId]
11264
11257
  * @param {Date} [created]
11265
11258
  * @param {MarketingType} [marketingType]
@@ -11278,9 +11271,9 @@ var HospitalsApi = /** @class */ (function (_super) {
11278
11271
  * @throws {RequiredError}
11279
11272
  * @memberof HospitalsApi
11280
11273
  */
11281
- HospitalsApi.prototype.apiV2HospitalsSimpleGet = function (hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
11274
+ HospitalsApi.prototype.apiV2HospitalsSimpleGet = function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
11282
11275
  var _this = this;
11283
- return exports.HospitalsApiFp(this.configuration).apiV2HospitalsSimpleGet(hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
11276
+ return exports.HospitalsApiFp(this.configuration).apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
11284
11277
  };
11285
11278
  /**
11286
11279
  *
@@ -15937,14 +15930,13 @@ exports.ServicesCategoriesApiAxiosParamCreator = function (configuration) {
15937
15930
  * @summary Get all ServiceCategories.
15938
15931
  * @param {string} [id]
15939
15932
  * @param {string} [name]
15940
- * @param {string} [description]
15941
15933
  * @param {number} [page]
15942
15934
  * @param {number} [limit]
15943
15935
  * @param {Date} [lastRetrieved]
15944
15936
  * @param {*} [options] Override http request option.
15945
15937
  * @throws {RequiredError}
15946
15938
  */
15947
- apiV2ServicescategoriesGet: function (id, name, description, page, limit, lastRetrieved, options) {
15939
+ apiV2ServicescategoriesGet: function (id, name, page, limit, lastRetrieved, options) {
15948
15940
  if (options === void 0) { options = {}; }
15949
15941
  return __awaiter(_this, void 0, void 0, function () {
15950
15942
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -15963,9 +15955,6 @@ exports.ServicesCategoriesApiAxiosParamCreator = function (configuration) {
15963
15955
  if (name !== undefined) {
15964
15956
  localVarQueryParameter['Name'] = name;
15965
15957
  }
15966
- if (description !== undefined) {
15967
- localVarQueryParameter['Description'] = description;
15968
- }
15969
15958
  if (page !== undefined) {
15970
15959
  localVarQueryParameter['page'] = page;
15971
15960
  }
@@ -16034,19 +16023,18 @@ exports.ServicesCategoriesApiFp = function (configuration) {
16034
16023
  * @summary Get all ServiceCategories.
16035
16024
  * @param {string} [id]
16036
16025
  * @param {string} [name]
16037
- * @param {string} [description]
16038
16026
  * @param {number} [page]
16039
16027
  * @param {number} [limit]
16040
16028
  * @param {Date} [lastRetrieved]
16041
16029
  * @param {*} [options] Override http request option.
16042
16030
  * @throws {RequiredError}
16043
16031
  */
16044
- apiV2ServicescategoriesGet: function (id, name, description, page, limit, lastRetrieved, options) {
16032
+ apiV2ServicescategoriesGet: function (id, name, page, limit, lastRetrieved, options) {
16045
16033
  return __awaiter(this, void 0, void 0, function () {
16046
16034
  var localVarAxiosArgs;
16047
16035
  return __generator(this, function (_a) {
16048
16036
  switch (_a.label) {
16049
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2ServicescategoriesGet(id, name, description, page, limit, lastRetrieved, options)];
16037
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2ServicescategoriesGet(id, name, page, limit, lastRetrieved, options)];
16050
16038
  case 1:
16051
16039
  localVarAxiosArgs = _a.sent();
16052
16040
  return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -16088,15 +16076,14 @@ exports.ServicesCategoriesApiFactory = function (configuration, basePath, axios)
16088
16076
  * @summary Get all ServiceCategories.
16089
16077
  * @param {string} [id]
16090
16078
  * @param {string} [name]
16091
- * @param {string} [description]
16092
16079
  * @param {number} [page]
16093
16080
  * @param {number} [limit]
16094
16081
  * @param {Date} [lastRetrieved]
16095
16082
  * @param {*} [options] Override http request option.
16096
16083
  * @throws {RequiredError}
16097
16084
  */
16098
- apiV2ServicescategoriesGet: function (id, name, description, page, limit, lastRetrieved, options) {
16099
- return localVarFp.apiV2ServicescategoriesGet(id, name, description, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
16085
+ apiV2ServicescategoriesGet: function (id, name, page, limit, lastRetrieved, options) {
16086
+ return localVarFp.apiV2ServicescategoriesGet(id, name, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
16100
16087
  },
16101
16088
  /**
16102
16089
  *
@@ -16126,7 +16113,6 @@ var ServicesCategoriesApi = /** @class */ (function (_super) {
16126
16113
  * @summary Get all ServiceCategories.
16127
16114
  * @param {string} [id]
16128
16115
  * @param {string} [name]
16129
- * @param {string} [description]
16130
16116
  * @param {number} [page]
16131
16117
  * @param {number} [limit]
16132
16118
  * @param {Date} [lastRetrieved]
@@ -16134,9 +16120,9 @@ var ServicesCategoriesApi = /** @class */ (function (_super) {
16134
16120
  * @throws {RequiredError}
16135
16121
  * @memberof ServicesCategoriesApi
16136
16122
  */
16137
- ServicesCategoriesApi.prototype.apiV2ServicescategoriesGet = function (id, name, description, page, limit, lastRetrieved, options) {
16123
+ ServicesCategoriesApi.prototype.apiV2ServicescategoriesGet = function (id, name, page, limit, lastRetrieved, options) {
16138
16124
  var _this = this;
16139
- return exports.ServicesCategoriesApiFp(this.configuration).apiV2ServicescategoriesGet(id, name, description, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
16125
+ return exports.ServicesCategoriesApiFp(this.configuration).apiV2ServicescategoriesGet(id, name, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
16140
16126
  };
16141
16127
  /**
16142
16128
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ch-api-client-typescript2",
3
- "version": "2.7.5",
3
+ "version": "2.7.6",
4
4
  "description": "Openapi generated typescript-axios client for CloudHospital",
5
5
  "main": "index.js",
6
6
  "scripts": {