ch-api-client-typescript2 4.6.9 → 4.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +24 -78
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +28 -14
- package/package.json +1 -1
- package/src/api.ts +38 -84
package/lib/api.js
CHANGED
|
@@ -11169,6 +11169,7 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
11169
11169
|
* @param {string} [specialtyTypeId]
|
|
11170
11170
|
* @param {string} [specialtyId]
|
|
11171
11171
|
* @param {string} [exceptHospitalId]
|
|
11172
|
+
* @param {number} [mediaCount]
|
|
11172
11173
|
* @param {boolean} [showHidden]
|
|
11173
11174
|
* @param {string} [languageCode]
|
|
11174
11175
|
* @param {Array<string>} [ids]
|
|
@@ -11180,7 +11181,7 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
11180
11181
|
* @param {*} [options] Override http request option.
|
|
11181
11182
|
* @throws {RequiredError}
|
|
11182
11183
|
*/
|
|
11183
|
-
apiV2HospitalsGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
11184
|
+
apiV2HospitalsGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
11184
11185
|
if (options === void 0) { options = {}; }
|
|
11185
11186
|
return __awaiter(_this, void 0, void 0, function () {
|
|
11186
11187
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -11219,6 +11220,9 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
11219
11220
|
if (exceptHospitalId !== undefined) {
|
|
11220
11221
|
localVarQueryParameter['ExceptHospitalId'] = exceptHospitalId;
|
|
11221
11222
|
}
|
|
11223
|
+
if (mediaCount !== undefined) {
|
|
11224
|
+
localVarQueryParameter['MediaCount'] = mediaCount;
|
|
11225
|
+
}
|
|
11222
11226
|
if (showHidden !== undefined) {
|
|
11223
11227
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
11224
11228
|
}
|
|
@@ -12799,6 +12803,7 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
12799
12803
|
* @param {string} [specialtyTypeId]
|
|
12800
12804
|
* @param {string} [specialtyId]
|
|
12801
12805
|
* @param {string} [exceptHospitalId]
|
|
12806
|
+
* @param {number} [mediaCount]
|
|
12802
12807
|
* @param {boolean} [showHidden]
|
|
12803
12808
|
* @param {string} [languageCode]
|
|
12804
12809
|
* @param {Array<string>} [ids]
|
|
@@ -12810,7 +12815,7 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
12810
12815
|
* @param {*} [options] Override http request option.
|
|
12811
12816
|
* @throws {RequiredError}
|
|
12812
12817
|
*/
|
|
12813
|
-
apiV2HospitalsSimpleGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
12818
|
+
apiV2HospitalsSimpleGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
12814
12819
|
if (options === void 0) { options = {}; }
|
|
12815
12820
|
return __awaiter(_this, void 0, void 0, function () {
|
|
12816
12821
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -12849,6 +12854,9 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
12849
12854
|
if (exceptHospitalId !== undefined) {
|
|
12850
12855
|
localVarQueryParameter['ExceptHospitalId'] = exceptHospitalId;
|
|
12851
12856
|
}
|
|
12857
|
+
if (mediaCount !== undefined) {
|
|
12858
|
+
localVarQueryParameter['MediaCount'] = mediaCount;
|
|
12859
|
+
}
|
|
12852
12860
|
if (showHidden !== undefined) {
|
|
12853
12861
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
12854
12862
|
}
|
|
@@ -12946,6 +12954,7 @@ var HospitalsApiFp = function (configuration) {
|
|
|
12946
12954
|
* @param {string} [specialtyTypeId]
|
|
12947
12955
|
* @param {string} [specialtyId]
|
|
12948
12956
|
* @param {string} [exceptHospitalId]
|
|
12957
|
+
* @param {number} [mediaCount]
|
|
12949
12958
|
* @param {boolean} [showHidden]
|
|
12950
12959
|
* @param {string} [languageCode]
|
|
12951
12960
|
* @param {Array<string>} [ids]
|
|
@@ -12957,12 +12966,12 @@ var HospitalsApiFp = function (configuration) {
|
|
|
12957
12966
|
* @param {*} [options] Override http request option.
|
|
12958
12967
|
* @throws {RequiredError}
|
|
12959
12968
|
*/
|
|
12960
|
-
apiV2HospitalsGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
12969
|
+
apiV2HospitalsGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
12961
12970
|
return __awaiter(this, void 0, void 0, function () {
|
|
12962
12971
|
var localVarAxiosArgs;
|
|
12963
12972
|
return __generator(this, function (_a) {
|
|
12964
12973
|
switch (_a.label) {
|
|
12965
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options)];
|
|
12974
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options)];
|
|
12966
12975
|
case 1:
|
|
12967
12976
|
localVarAxiosArgs = _a.sent();
|
|
12968
12977
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -13693,6 +13702,7 @@ var HospitalsApiFp = function (configuration) {
|
|
|
13693
13702
|
* @param {string} [specialtyTypeId]
|
|
13694
13703
|
* @param {string} [specialtyId]
|
|
13695
13704
|
* @param {string} [exceptHospitalId]
|
|
13705
|
+
* @param {number} [mediaCount]
|
|
13696
13706
|
* @param {boolean} [showHidden]
|
|
13697
13707
|
* @param {string} [languageCode]
|
|
13698
13708
|
* @param {Array<string>} [ids]
|
|
@@ -13704,12 +13714,12 @@ var HospitalsApiFp = function (configuration) {
|
|
|
13704
13714
|
* @param {*} [options] Override http request option.
|
|
13705
13715
|
* @throws {RequiredError}
|
|
13706
13716
|
*/
|
|
13707
|
-
apiV2HospitalsSimpleGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
13717
|
+
apiV2HospitalsSimpleGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
13708
13718
|
return __awaiter(this, void 0, void 0, function () {
|
|
13709
13719
|
var localVarAxiosArgs;
|
|
13710
13720
|
return __generator(this, function (_a) {
|
|
13711
13721
|
switch (_a.label) {
|
|
13712
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options)];
|
|
13722
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options)];
|
|
13713
13723
|
case 1:
|
|
13714
13724
|
localVarAxiosArgs = _a.sent();
|
|
13715
13725
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -13759,6 +13769,7 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
13759
13769
|
* @param {string} [specialtyTypeId]
|
|
13760
13770
|
* @param {string} [specialtyId]
|
|
13761
13771
|
* @param {string} [exceptHospitalId]
|
|
13772
|
+
* @param {number} [mediaCount]
|
|
13762
13773
|
* @param {boolean} [showHidden]
|
|
13763
13774
|
* @param {string} [languageCode]
|
|
13764
13775
|
* @param {Array<string>} [ids]
|
|
@@ -13770,8 +13781,8 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
13770
13781
|
* @param {*} [options] Override http request option.
|
|
13771
13782
|
* @throws {RequiredError}
|
|
13772
13783
|
*/
|
|
13773
|
-
apiV2HospitalsGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
13774
|
-
return localVarFp.apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
13784
|
+
apiV2HospitalsGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
13785
|
+
return localVarFp.apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
13775
13786
|
},
|
|
13776
13787
|
/**
|
|
13777
13788
|
*
|
|
@@ -14206,6 +14217,7 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
14206
14217
|
* @param {string} [specialtyTypeId]
|
|
14207
14218
|
* @param {string} [specialtyId]
|
|
14208
14219
|
* @param {string} [exceptHospitalId]
|
|
14220
|
+
* @param {number} [mediaCount]
|
|
14209
14221
|
* @param {boolean} [showHidden]
|
|
14210
14222
|
* @param {string} [languageCode]
|
|
14211
14223
|
* @param {Array<string>} [ids]
|
|
@@ -14217,8 +14229,8 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
14217
14229
|
* @param {*} [options] Override http request option.
|
|
14218
14230
|
* @throws {RequiredError}
|
|
14219
14231
|
*/
|
|
14220
|
-
apiV2HospitalsSimpleGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
14221
|
-
return localVarFp.apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
14232
|
+
apiV2HospitalsSimpleGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
14233
|
+
return localVarFp.apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
14222
14234
|
},
|
|
14223
14235
|
/**
|
|
14224
14236
|
*
|
|
@@ -14256,6 +14268,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
14256
14268
|
* @param {string} [specialtyTypeId]
|
|
14257
14269
|
* @param {string} [specialtyId]
|
|
14258
14270
|
* @param {string} [exceptHospitalId]
|
|
14271
|
+
* @param {number} [mediaCount]
|
|
14259
14272
|
* @param {boolean} [showHidden]
|
|
14260
14273
|
* @param {string} [languageCode]
|
|
14261
14274
|
* @param {Array<string>} [ids]
|
|
@@ -14268,9 +14281,9 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
14268
14281
|
* @throws {RequiredError}
|
|
14269
14282
|
* @memberof HospitalsApi
|
|
14270
14283
|
*/
|
|
14271
|
-
HospitalsApi.prototype.apiV2HospitalsGet = function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
14284
|
+
HospitalsApi.prototype.apiV2HospitalsGet = function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
14272
14285
|
var _this = this;
|
|
14273
|
-
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
14286
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
14274
14287
|
};
|
|
14275
14288
|
/**
|
|
14276
14289
|
*
|
|
@@ -14763,6 +14776,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
14763
14776
|
* @param {string} [specialtyTypeId]
|
|
14764
14777
|
* @param {string} [specialtyId]
|
|
14765
14778
|
* @param {string} [exceptHospitalId]
|
|
14779
|
+
* @param {number} [mediaCount]
|
|
14766
14780
|
* @param {boolean} [showHidden]
|
|
14767
14781
|
* @param {string} [languageCode]
|
|
14768
14782
|
* @param {Array<string>} [ids]
|
|
@@ -14775,9 +14789,9 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
14775
14789
|
* @throws {RequiredError}
|
|
14776
14790
|
* @memberof HospitalsApi
|
|
14777
14791
|
*/
|
|
14778
|
-
HospitalsApi.prototype.apiV2HospitalsSimpleGet = function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
14792
|
+
HospitalsApi.prototype.apiV2HospitalsSimpleGet = function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
14779
14793
|
var _this = this;
|
|
14780
|
-
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
14794
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
14781
14795
|
};
|
|
14782
14796
|
/**
|
|
14783
14797
|
*
|
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -542,10 +542,10 @@ export interface ArticleContributorModel {
|
|
|
542
542
|
'contributorContent'?: string | null;
|
|
543
543
|
/**
|
|
544
544
|
*
|
|
545
|
-
* @type {Array<
|
|
545
|
+
* @type {Array<SnsHandleModel>}
|
|
546
546
|
* @memberof ArticleContributorModel
|
|
547
547
|
*/
|
|
548
|
-
'contributorSnsHandles'?: Array<
|
|
548
|
+
'contributorSnsHandles'?: Array<SnsHandleModel> | null;
|
|
549
549
|
/**
|
|
550
550
|
*
|
|
551
551
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -2666,10 +2666,10 @@ export interface ContributorModel {
|
|
|
2666
2666
|
'content'?: string | null;
|
|
2667
2667
|
/**
|
|
2668
2668
|
*
|
|
2669
|
-
* @type {Array<
|
|
2669
|
+
* @type {Array<SnsHandleModel>}
|
|
2670
2670
|
* @memberof ContributorModel
|
|
2671
2671
|
*/
|
|
2672
|
-
'snsHandles'?: Array<
|
|
2672
|
+
'snsHandles'?: Array<SnsHandleModel> | null;
|
|
2673
2673
|
/**
|
|
2674
2674
|
*
|
|
2675
2675
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -6467,16 +6467,16 @@ export interface HospitalModel {
|
|
|
6467
6467
|
'evaluations'?: Array<HospitalEvaluationItemModel> | null;
|
|
6468
6468
|
/**
|
|
6469
6469
|
*
|
|
6470
|
-
* @type {Array<
|
|
6470
|
+
* @type {Array<WorkingDayModel>}
|
|
6471
6471
|
* @memberof HospitalModel
|
|
6472
6472
|
*/
|
|
6473
|
-
'hospitalWorkingDays'?: Array<
|
|
6473
|
+
'hospitalWorkingDays'?: Array<WorkingDayModel> | null;
|
|
6474
6474
|
/**
|
|
6475
6475
|
*
|
|
6476
|
-
* @type {Array<
|
|
6476
|
+
* @type {Array<SnsHandleModel>}
|
|
6477
6477
|
* @memberof HospitalModel
|
|
6478
6478
|
*/
|
|
6479
|
-
'hospitalSnsHandles'?: Array<
|
|
6479
|
+
'hospitalSnsHandles'?: Array<SnsHandleModel> | null;
|
|
6480
6480
|
/**
|
|
6481
6481
|
*
|
|
6482
6482
|
* @type {Array<HospitalLanguageItemModel>}
|
|
@@ -9163,31 +9163,6 @@ export interface ServiceReviewsModel {
|
|
|
9163
9163
|
*/
|
|
9164
9164
|
'metaData'?: PagedListMetaData;
|
|
9165
9165
|
}
|
|
9166
|
-
/**
|
|
9167
|
-
*
|
|
9168
|
-
* @export
|
|
9169
|
-
* @interface SnsHandle
|
|
9170
|
-
*/
|
|
9171
|
-
export interface SnsHandle {
|
|
9172
|
-
/**
|
|
9173
|
-
*
|
|
9174
|
-
* @type {string}
|
|
9175
|
-
* @memberof SnsHandle
|
|
9176
|
-
*/
|
|
9177
|
-
'id'?: string;
|
|
9178
|
-
/**
|
|
9179
|
-
*
|
|
9180
|
-
* @type {SnsType}
|
|
9181
|
-
* @memberof SnsHandle
|
|
9182
|
-
*/
|
|
9183
|
-
'snsType'?: SnsType;
|
|
9184
|
-
/**
|
|
9185
|
-
*
|
|
9186
|
-
* @type {string}
|
|
9187
|
-
* @memberof SnsHandle
|
|
9188
|
-
*/
|
|
9189
|
-
'handle'?: string | null;
|
|
9190
|
-
}
|
|
9191
9166
|
/**
|
|
9192
9167
|
*
|
|
9193
9168
|
* @export
|
|
@@ -10602,43 +10577,6 @@ export interface UserModel {
|
|
|
10602
10577
|
*/
|
|
10603
10578
|
'locations'?: Array<UserLocationModel> | null;
|
|
10604
10579
|
}
|
|
10605
|
-
/**
|
|
10606
|
-
*
|
|
10607
|
-
* @export
|
|
10608
|
-
* @interface WorkingDay
|
|
10609
|
-
*/
|
|
10610
|
-
export interface WorkingDay {
|
|
10611
|
-
/**
|
|
10612
|
-
*
|
|
10613
|
-
* @type {string}
|
|
10614
|
-
* @memberof WorkingDay
|
|
10615
|
-
*/
|
|
10616
|
-
'id'?: string;
|
|
10617
|
-
/**
|
|
10618
|
-
*
|
|
10619
|
-
* @type {string}
|
|
10620
|
-
* @memberof WorkingDay
|
|
10621
|
-
*/
|
|
10622
|
-
'dayOfWeek'?: string | null;
|
|
10623
|
-
/**
|
|
10624
|
-
*
|
|
10625
|
-
* @type {Date}
|
|
10626
|
-
* @memberof WorkingDay
|
|
10627
|
-
*/
|
|
10628
|
-
'timeFrom'?: Date;
|
|
10629
|
-
/**
|
|
10630
|
-
*
|
|
10631
|
-
* @type {Date}
|
|
10632
|
-
* @memberof WorkingDay
|
|
10633
|
-
*/
|
|
10634
|
-
'timeTo'?: Date;
|
|
10635
|
-
/**
|
|
10636
|
-
*
|
|
10637
|
-
* @type {boolean}
|
|
10638
|
-
* @memberof WorkingDay
|
|
10639
|
-
*/
|
|
10640
|
-
'checkHoliday'?: boolean;
|
|
10641
|
-
}
|
|
10642
10580
|
/**
|
|
10643
10581
|
*
|
|
10644
10582
|
* @export
|
|
@@ -20874,6 +20812,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20874
20812
|
* @param {string} [specialtyTypeId]
|
|
20875
20813
|
* @param {string} [specialtyId]
|
|
20876
20814
|
* @param {string} [exceptHospitalId]
|
|
20815
|
+
* @param {number} [mediaCount]
|
|
20877
20816
|
* @param {boolean} [showHidden]
|
|
20878
20817
|
* @param {string} [languageCode]
|
|
20879
20818
|
* @param {Array<string>} [ids]
|
|
@@ -20885,7 +20824,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20885
20824
|
* @param {*} [options] Override http request option.
|
|
20886
20825
|
* @throws {RequiredError}
|
|
20887
20826
|
*/
|
|
20888
|
-
apiV2HospitalsGet: async (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
20827
|
+
apiV2HospitalsGet: async (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, mediaCount?: number, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
20889
20828
|
const localVarPath = `/api/v2/hospitals`;
|
|
20890
20829
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
20891
20830
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -20932,6 +20871,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20932
20871
|
localVarQueryParameter['ExceptHospitalId'] = exceptHospitalId;
|
|
20933
20872
|
}
|
|
20934
20873
|
|
|
20874
|
+
if (mediaCount !== undefined) {
|
|
20875
|
+
localVarQueryParameter['MediaCount'] = mediaCount;
|
|
20876
|
+
}
|
|
20877
|
+
|
|
20935
20878
|
if (showHidden !== undefined) {
|
|
20936
20879
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
20937
20880
|
}
|
|
@@ -22662,6 +22605,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
22662
22605
|
* @param {string} [specialtyTypeId]
|
|
22663
22606
|
* @param {string} [specialtyId]
|
|
22664
22607
|
* @param {string} [exceptHospitalId]
|
|
22608
|
+
* @param {number} [mediaCount]
|
|
22665
22609
|
* @param {boolean} [showHidden]
|
|
22666
22610
|
* @param {string} [languageCode]
|
|
22667
22611
|
* @param {Array<string>} [ids]
|
|
@@ -22673,7 +22617,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
22673
22617
|
* @param {*} [options] Override http request option.
|
|
22674
22618
|
* @throws {RequiredError}
|
|
22675
22619
|
*/
|
|
22676
|
-
apiV2HospitalsSimpleGet: async (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
22620
|
+
apiV2HospitalsSimpleGet: async (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, mediaCount?: number, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
22677
22621
|
const localVarPath = `/api/v2/hospitals/simple`;
|
|
22678
22622
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
22679
22623
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -22720,6 +22664,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
22720
22664
|
localVarQueryParameter['ExceptHospitalId'] = exceptHospitalId;
|
|
22721
22665
|
}
|
|
22722
22666
|
|
|
22667
|
+
if (mediaCount !== undefined) {
|
|
22668
|
+
localVarQueryParameter['MediaCount'] = mediaCount;
|
|
22669
|
+
}
|
|
22670
|
+
|
|
22723
22671
|
if (showHidden !== undefined) {
|
|
22724
22672
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
22725
22673
|
}
|
|
@@ -22829,6 +22777,7 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
22829
22777
|
* @param {string} [specialtyTypeId]
|
|
22830
22778
|
* @param {string} [specialtyId]
|
|
22831
22779
|
* @param {string} [exceptHospitalId]
|
|
22780
|
+
* @param {number} [mediaCount]
|
|
22832
22781
|
* @param {boolean} [showHidden]
|
|
22833
22782
|
* @param {string} [languageCode]
|
|
22834
22783
|
* @param {Array<string>} [ids]
|
|
@@ -22840,8 +22789,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
22840
22789
|
* @param {*} [options] Override http request option.
|
|
22841
22790
|
* @throws {RequiredError}
|
|
22842
22791
|
*/
|
|
22843
|
-
async apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsModel>> {
|
|
22844
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options);
|
|
22792
|
+
async apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, mediaCount?: number, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsModel>> {
|
|
22793
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options);
|
|
22845
22794
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
22846
22795
|
},
|
|
22847
22796
|
/**
|
|
@@ -23306,6 +23255,7 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
23306
23255
|
* @param {string} [specialtyTypeId]
|
|
23307
23256
|
* @param {string} [specialtyId]
|
|
23308
23257
|
* @param {string} [exceptHospitalId]
|
|
23258
|
+
* @param {number} [mediaCount]
|
|
23309
23259
|
* @param {boolean} [showHidden]
|
|
23310
23260
|
* @param {string} [languageCode]
|
|
23311
23261
|
* @param {Array<string>} [ids]
|
|
@@ -23317,8 +23267,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
23317
23267
|
* @param {*} [options] Override http request option.
|
|
23318
23268
|
* @throws {RequiredError}
|
|
23319
23269
|
*/
|
|
23320
|
-
async apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsSimpleModel>> {
|
|
23321
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options);
|
|
23270
|
+
async apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, mediaCount?: number, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsSimpleModel>> {
|
|
23271
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options);
|
|
23322
23272
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
23323
23273
|
},
|
|
23324
23274
|
/**
|
|
@@ -23354,6 +23304,7 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
23354
23304
|
* @param {string} [specialtyTypeId]
|
|
23355
23305
|
* @param {string} [specialtyId]
|
|
23356
23306
|
* @param {string} [exceptHospitalId]
|
|
23307
|
+
* @param {number} [mediaCount]
|
|
23357
23308
|
* @param {boolean} [showHidden]
|
|
23358
23309
|
* @param {string} [languageCode]
|
|
23359
23310
|
* @param {Array<string>} [ids]
|
|
@@ -23365,8 +23316,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
23365
23316
|
* @param {*} [options] Override http request option.
|
|
23366
23317
|
* @throws {RequiredError}
|
|
23367
23318
|
*/
|
|
23368
|
-
apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsModel> {
|
|
23369
|
-
return localVarFp.apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
23319
|
+
apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, mediaCount?: number, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsModel> {
|
|
23320
|
+
return localVarFp.apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
23370
23321
|
},
|
|
23371
23322
|
/**
|
|
23372
23323
|
*
|
|
@@ -23801,6 +23752,7 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
23801
23752
|
* @param {string} [specialtyTypeId]
|
|
23802
23753
|
* @param {string} [specialtyId]
|
|
23803
23754
|
* @param {string} [exceptHospitalId]
|
|
23755
|
+
* @param {number} [mediaCount]
|
|
23804
23756
|
* @param {boolean} [showHidden]
|
|
23805
23757
|
* @param {string} [languageCode]
|
|
23806
23758
|
* @param {Array<string>} [ids]
|
|
@@ -23812,8 +23764,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
23812
23764
|
* @param {*} [options] Override http request option.
|
|
23813
23765
|
* @throws {RequiredError}
|
|
23814
23766
|
*/
|
|
23815
|
-
apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsSimpleModel> {
|
|
23816
|
-
return localVarFp.apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
23767
|
+
apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, mediaCount?: number, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsSimpleModel> {
|
|
23768
|
+
return localVarFp.apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
23817
23769
|
},
|
|
23818
23770
|
/**
|
|
23819
23771
|
*
|
|
@@ -23847,6 +23799,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
23847
23799
|
* @param {string} [specialtyTypeId]
|
|
23848
23800
|
* @param {string} [specialtyId]
|
|
23849
23801
|
* @param {string} [exceptHospitalId]
|
|
23802
|
+
* @param {number} [mediaCount]
|
|
23850
23803
|
* @param {boolean} [showHidden]
|
|
23851
23804
|
* @param {string} [languageCode]
|
|
23852
23805
|
* @param {Array<string>} [ids]
|
|
@@ -23859,8 +23812,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
23859
23812
|
* @throws {RequiredError}
|
|
23860
23813
|
* @memberof HospitalsApi
|
|
23861
23814
|
*/
|
|
23862
|
-
public apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
23863
|
-
return HospitalsApiFp(this.configuration).apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
23815
|
+
public apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, mediaCount?: number, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
23816
|
+
return HospitalsApiFp(this.configuration).apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
23864
23817
|
}
|
|
23865
23818
|
|
|
23866
23819
|
/**
|
|
@@ -24354,6 +24307,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
24354
24307
|
* @param {string} [specialtyTypeId]
|
|
24355
24308
|
* @param {string} [specialtyId]
|
|
24356
24309
|
* @param {string} [exceptHospitalId]
|
|
24310
|
+
* @param {number} [mediaCount]
|
|
24357
24311
|
* @param {boolean} [showHidden]
|
|
24358
24312
|
* @param {string} [languageCode]
|
|
24359
24313
|
* @param {Array<string>} [ids]
|
|
@@ -24366,8 +24320,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
24366
24320
|
* @throws {RequiredError}
|
|
24367
24321
|
* @memberof HospitalsApi
|
|
24368
24322
|
*/
|
|
24369
|
-
public apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
24370
|
-
return HospitalsApiFp(this.configuration).apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
24323
|
+
public apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, mediaCount?: number, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
24324
|
+
return HospitalsApiFp(this.configuration).apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
24371
24325
|
}
|
|
24372
24326
|
|
|
24373
24327
|
/**
|