ch-api-client-typescript2 4.7.0 → 4.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +220 -28
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +28 -14
- package/package.json +1 -1
- package/src/api.ts +234 -34
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
|
@@ -522,6 +522,12 @@ export interface ArticleContributorModel {
|
|
|
522
522
|
* @memberof ArticleContributorModel
|
|
523
523
|
*/
|
|
524
524
|
'auditableEntity'?: AuditableEntity;
|
|
525
|
+
/**
|
|
526
|
+
*
|
|
527
|
+
* @type {ContributorMappingModel}
|
|
528
|
+
* @memberof ArticleContributorModel
|
|
529
|
+
*/
|
|
530
|
+
'contributor'?: ContributorMappingModel;
|
|
525
531
|
/**
|
|
526
532
|
*
|
|
527
533
|
* @type {string}
|
|
@@ -2556,6 +2562,19 @@ export interface ContributorItemModel {
|
|
|
2556
2562
|
*/
|
|
2557
2563
|
'auditableEntity'?: AuditableEntity;
|
|
2558
2564
|
}
|
|
2565
|
+
/**
|
|
2566
|
+
*
|
|
2567
|
+
* @export
|
|
2568
|
+
* @interface ContributorMappingModel
|
|
2569
|
+
*/
|
|
2570
|
+
export interface ContributorMappingModel {
|
|
2571
|
+
/**
|
|
2572
|
+
*
|
|
2573
|
+
* @type {Array<TranslationModel>}
|
|
2574
|
+
* @memberof ContributorMappingModel
|
|
2575
|
+
*/
|
|
2576
|
+
'translations'?: Array<TranslationModel> | null;
|
|
2577
|
+
}
|
|
2559
2578
|
/**
|
|
2560
2579
|
*
|
|
2561
2580
|
* @export
|
|
@@ -3772,6 +3791,12 @@ export interface DealPackageModel {
|
|
|
3772
3791
|
* @memberof DealPackageModel
|
|
3773
3792
|
*/
|
|
3774
3793
|
'hospitalSlug'?: string | null;
|
|
3794
|
+
/**
|
|
3795
|
+
*
|
|
3796
|
+
* @type {string}
|
|
3797
|
+
* @memberof DealPackageModel
|
|
3798
|
+
*/
|
|
3799
|
+
'additionalServices'?: string | null;
|
|
3775
3800
|
/**
|
|
3776
3801
|
*
|
|
3777
3802
|
* @type {RefundPolicy}
|
|
@@ -3796,12 +3821,6 @@ export interface DealPackageModel {
|
|
|
3796
3821
|
* @memberof DealPackageModel
|
|
3797
3822
|
*/
|
|
3798
3823
|
'auditableEntity'?: AuditableEntity;
|
|
3799
|
-
/**
|
|
3800
|
-
*
|
|
3801
|
-
* @type {string}
|
|
3802
|
-
* @memberof DealPackageModel
|
|
3803
|
-
*/
|
|
3804
|
-
'additionalServices'?: string | null;
|
|
3805
3824
|
/**
|
|
3806
3825
|
*
|
|
3807
3826
|
* @type {string}
|
|
@@ -5307,12 +5326,6 @@ export interface FaqCategoryItemModel {
|
|
|
5307
5326
|
* @memberof FaqCategoryItemModel
|
|
5308
5327
|
*/
|
|
5309
5328
|
'hospitalWebsiteUrl'?: string | null;
|
|
5310
|
-
/**
|
|
5311
|
-
*
|
|
5312
|
-
* @type {Array<MediaModel>}
|
|
5313
|
-
* @memberof FaqCategoryItemModel
|
|
5314
|
-
*/
|
|
5315
|
-
'medias'?: Array<MediaModel> | null;
|
|
5316
5329
|
/**
|
|
5317
5330
|
*
|
|
5318
5331
|
* @type {AuditableEntity}
|
|
@@ -5392,12 +5405,6 @@ export interface FaqCategoryModel {
|
|
|
5392
5405
|
* @memberof FaqCategoryModel
|
|
5393
5406
|
*/
|
|
5394
5407
|
'hospitalWebsiteUrl'?: string | null;
|
|
5395
|
-
/**
|
|
5396
|
-
*
|
|
5397
|
-
* @type {Array<MediaModel>}
|
|
5398
|
-
* @memberof FaqCategoryModel
|
|
5399
|
-
*/
|
|
5400
|
-
'medias'?: Array<MediaModel> | null;
|
|
5401
5408
|
/**
|
|
5402
5409
|
*
|
|
5403
5410
|
* @type {AuditableEntity}
|
|
@@ -5482,7 +5489,13 @@ export interface FaqItemModel {
|
|
|
5482
5489
|
* @type {string}
|
|
5483
5490
|
* @memberof FaqItemModel
|
|
5484
5491
|
*/
|
|
5485
|
-
'hospitalId'?: string;
|
|
5492
|
+
'hospitalId'?: string | null;
|
|
5493
|
+
/**
|
|
5494
|
+
*
|
|
5495
|
+
* @type {TranslationSimpleModel}
|
|
5496
|
+
* @memberof FaqItemModel
|
|
5497
|
+
*/
|
|
5498
|
+
'hospitalTranslation'?: TranslationSimpleModel;
|
|
5486
5499
|
/**
|
|
5487
5500
|
*
|
|
5488
5501
|
* @type {string}
|
|
@@ -5585,7 +5598,13 @@ export interface FaqModel {
|
|
|
5585
5598
|
* @type {string}
|
|
5586
5599
|
* @memberof FaqModel
|
|
5587
5600
|
*/
|
|
5588
|
-
'hospitalId'?: string;
|
|
5601
|
+
'hospitalId'?: string | null;
|
|
5602
|
+
/**
|
|
5603
|
+
*
|
|
5604
|
+
* @type {TranslationSimpleModel}
|
|
5605
|
+
* @memberof FaqModel
|
|
5606
|
+
*/
|
|
5607
|
+
'hospitalTranslation'?: TranslationSimpleModel;
|
|
5589
5608
|
/**
|
|
5590
5609
|
*
|
|
5591
5610
|
* @type {string}
|
|
@@ -9556,6 +9575,12 @@ export interface SpecialtyTypeItemModel {
|
|
|
9556
9575
|
* @memberof SpecialtyTypeItemModel
|
|
9557
9576
|
*/
|
|
9558
9577
|
'languageCode'?: string | null;
|
|
9578
|
+
/**
|
|
9579
|
+
*
|
|
9580
|
+
* @type {Array<SpecialtyTypeTranslationSimpleModel>}
|
|
9581
|
+
* @memberof SpecialtyTypeItemModel
|
|
9582
|
+
*/
|
|
9583
|
+
'simpleTranslations'?: Array<SpecialtyTypeTranslationSimpleModel> | null;
|
|
9559
9584
|
/**
|
|
9560
9585
|
*
|
|
9561
9586
|
* @type {string}
|
|
@@ -9647,6 +9672,12 @@ export interface SpecialtyTypeModel {
|
|
|
9647
9672
|
* @memberof SpecialtyTypeModel
|
|
9648
9673
|
*/
|
|
9649
9674
|
'languageCode'?: string | null;
|
|
9675
|
+
/**
|
|
9676
|
+
*
|
|
9677
|
+
* @type {Array<SpecialtyTypeTranslationSimpleModel>}
|
|
9678
|
+
* @memberof SpecialtyTypeModel
|
|
9679
|
+
*/
|
|
9680
|
+
'simpleTranslations'?: Array<SpecialtyTypeTranslationSimpleModel> | null;
|
|
9650
9681
|
/**
|
|
9651
9682
|
*
|
|
9652
9683
|
* @type {string}
|
|
@@ -9775,6 +9806,55 @@ export interface SpecialtyTypeSimpleItemModel {
|
|
|
9775
9806
|
*/
|
|
9776
9807
|
'confirmed'?: boolean;
|
|
9777
9808
|
}
|
|
9809
|
+
/**
|
|
9810
|
+
*
|
|
9811
|
+
* @export
|
|
9812
|
+
* @interface SpecialtyTypeTranslationSimpleModel
|
|
9813
|
+
*/
|
|
9814
|
+
export interface SpecialtyTypeTranslationSimpleModel {
|
|
9815
|
+
/**
|
|
9816
|
+
*
|
|
9817
|
+
* @type {string}
|
|
9818
|
+
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
9819
|
+
*/
|
|
9820
|
+
'languageCode'?: string | null;
|
|
9821
|
+
/**
|
|
9822
|
+
*
|
|
9823
|
+
* @type {string}
|
|
9824
|
+
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
9825
|
+
*/
|
|
9826
|
+
'name'?: string | null;
|
|
9827
|
+
/**
|
|
9828
|
+
*
|
|
9829
|
+
* @type {string}
|
|
9830
|
+
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
9831
|
+
*/
|
|
9832
|
+
'normalizedName'?: string | null;
|
|
9833
|
+
/**
|
|
9834
|
+
*
|
|
9835
|
+
* @type {string}
|
|
9836
|
+
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
9837
|
+
*/
|
|
9838
|
+
'slug'?: string | null;
|
|
9839
|
+
/**
|
|
9840
|
+
*
|
|
9841
|
+
* @type {Date}
|
|
9842
|
+
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
9843
|
+
*/
|
|
9844
|
+
'updatedDate'?: Date | null;
|
|
9845
|
+
/**
|
|
9846
|
+
*
|
|
9847
|
+
* @type {boolean}
|
|
9848
|
+
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
9849
|
+
*/
|
|
9850
|
+
'isConfirmed'?: boolean;
|
|
9851
|
+
/**
|
|
9852
|
+
*
|
|
9853
|
+
* @type {string}
|
|
9854
|
+
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
9855
|
+
*/
|
|
9856
|
+
'description'?: string | null;
|
|
9857
|
+
}
|
|
9778
9858
|
/**
|
|
9779
9859
|
*
|
|
9780
9860
|
* @export
|
|
@@ -9919,6 +9999,110 @@ export interface TagsModel {
|
|
|
9919
9999
|
*/
|
|
9920
10000
|
'metaData'?: PagedListMetaData;
|
|
9921
10001
|
}
|
|
10002
|
+
/**
|
|
10003
|
+
*
|
|
10004
|
+
* @export
|
|
10005
|
+
* @interface TranslationModel
|
|
10006
|
+
*/
|
|
10007
|
+
export interface TranslationModel {
|
|
10008
|
+
/**
|
|
10009
|
+
*
|
|
10010
|
+
* @type {string}
|
|
10011
|
+
* @memberof TranslationModel
|
|
10012
|
+
*/
|
|
10013
|
+
'languageCode'?: string | null;
|
|
10014
|
+
/**
|
|
10015
|
+
*
|
|
10016
|
+
* @type {string}
|
|
10017
|
+
* @memberof TranslationModel
|
|
10018
|
+
*/
|
|
10019
|
+
'name'?: string | null;
|
|
10020
|
+
/**
|
|
10021
|
+
*
|
|
10022
|
+
* @type {string}
|
|
10023
|
+
* @memberof TranslationModel
|
|
10024
|
+
*/
|
|
10025
|
+
'normalizedName'?: string | null;
|
|
10026
|
+
/**
|
|
10027
|
+
*
|
|
10028
|
+
* @type {string}
|
|
10029
|
+
* @memberof TranslationModel
|
|
10030
|
+
*/
|
|
10031
|
+
'slug'?: string | null;
|
|
10032
|
+
/**
|
|
10033
|
+
*
|
|
10034
|
+
* @type {Date}
|
|
10035
|
+
* @memberof TranslationModel
|
|
10036
|
+
*/
|
|
10037
|
+
'updatedDate'?: Date | null;
|
|
10038
|
+
/**
|
|
10039
|
+
*
|
|
10040
|
+
* @type {boolean}
|
|
10041
|
+
* @memberof TranslationModel
|
|
10042
|
+
*/
|
|
10043
|
+
'isConfirmed'?: boolean;
|
|
10044
|
+
/**
|
|
10045
|
+
*
|
|
10046
|
+
* @type {string}
|
|
10047
|
+
* @memberof TranslationModel
|
|
10048
|
+
*/
|
|
10049
|
+
'description'?: string | null;
|
|
10050
|
+
/**
|
|
10051
|
+
*
|
|
10052
|
+
* @type {string}
|
|
10053
|
+
* @memberof TranslationModel
|
|
10054
|
+
*/
|
|
10055
|
+
'overview'?: string | null;
|
|
10056
|
+
/**
|
|
10057
|
+
*
|
|
10058
|
+
* @type {string}
|
|
10059
|
+
* @memberof TranslationModel
|
|
10060
|
+
*/
|
|
10061
|
+
'content'?: string | null;
|
|
10062
|
+
}
|
|
10063
|
+
/**
|
|
10064
|
+
*
|
|
10065
|
+
* @export
|
|
10066
|
+
* @interface TranslationSimpleModel
|
|
10067
|
+
*/
|
|
10068
|
+
export interface TranslationSimpleModel {
|
|
10069
|
+
/**
|
|
10070
|
+
*
|
|
10071
|
+
* @type {string}
|
|
10072
|
+
* @memberof TranslationSimpleModel
|
|
10073
|
+
*/
|
|
10074
|
+
'languageCode'?: string | null;
|
|
10075
|
+
/**
|
|
10076
|
+
*
|
|
10077
|
+
* @type {string}
|
|
10078
|
+
* @memberof TranslationSimpleModel
|
|
10079
|
+
*/
|
|
10080
|
+
'name'?: string | null;
|
|
10081
|
+
/**
|
|
10082
|
+
*
|
|
10083
|
+
* @type {string}
|
|
10084
|
+
* @memberof TranslationSimpleModel
|
|
10085
|
+
*/
|
|
10086
|
+
'normalizedName'?: string | null;
|
|
10087
|
+
/**
|
|
10088
|
+
*
|
|
10089
|
+
* @type {string}
|
|
10090
|
+
* @memberof TranslationSimpleModel
|
|
10091
|
+
*/
|
|
10092
|
+
'slug'?: string | null;
|
|
10093
|
+
/**
|
|
10094
|
+
*
|
|
10095
|
+
* @type {Date}
|
|
10096
|
+
* @memberof TranslationSimpleModel
|
|
10097
|
+
*/
|
|
10098
|
+
'updatedDate'?: Date | null;
|
|
10099
|
+
/**
|
|
10100
|
+
*
|
|
10101
|
+
* @type {boolean}
|
|
10102
|
+
* @memberof TranslationSimpleModel
|
|
10103
|
+
*/
|
|
10104
|
+
'isConfirmed'?: boolean;
|
|
10105
|
+
}
|
|
9922
10106
|
/**
|
|
9923
10107
|
*
|
|
9924
10108
|
* @export
|
|
@@ -20812,6 +20996,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20812
20996
|
* @param {string} [specialtyTypeId]
|
|
20813
20997
|
* @param {string} [specialtyId]
|
|
20814
20998
|
* @param {string} [exceptHospitalId]
|
|
20999
|
+
* @param {number} [mediaCount]
|
|
20815
21000
|
* @param {boolean} [showHidden]
|
|
20816
21001
|
* @param {string} [languageCode]
|
|
20817
21002
|
* @param {Array<string>} [ids]
|
|
@@ -20823,7 +21008,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20823
21008
|
* @param {*} [options] Override http request option.
|
|
20824
21009
|
* @throws {RequiredError}
|
|
20825
21010
|
*/
|
|
20826
|
-
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> => {
|
|
21011
|
+
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> => {
|
|
20827
21012
|
const localVarPath = `/api/v2/hospitals`;
|
|
20828
21013
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
20829
21014
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -20870,6 +21055,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20870
21055
|
localVarQueryParameter['ExceptHospitalId'] = exceptHospitalId;
|
|
20871
21056
|
}
|
|
20872
21057
|
|
|
21058
|
+
if (mediaCount !== undefined) {
|
|
21059
|
+
localVarQueryParameter['MediaCount'] = mediaCount;
|
|
21060
|
+
}
|
|
21061
|
+
|
|
20873
21062
|
if (showHidden !== undefined) {
|
|
20874
21063
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
20875
21064
|
}
|
|
@@ -22600,6 +22789,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
22600
22789
|
* @param {string} [specialtyTypeId]
|
|
22601
22790
|
* @param {string} [specialtyId]
|
|
22602
22791
|
* @param {string} [exceptHospitalId]
|
|
22792
|
+
* @param {number} [mediaCount]
|
|
22603
22793
|
* @param {boolean} [showHidden]
|
|
22604
22794
|
* @param {string} [languageCode]
|
|
22605
22795
|
* @param {Array<string>} [ids]
|
|
@@ -22611,7 +22801,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
22611
22801
|
* @param {*} [options] Override http request option.
|
|
22612
22802
|
* @throws {RequiredError}
|
|
22613
22803
|
*/
|
|
22614
|
-
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> => {
|
|
22804
|
+
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> => {
|
|
22615
22805
|
const localVarPath = `/api/v2/hospitals/simple`;
|
|
22616
22806
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
22617
22807
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -22658,6 +22848,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
22658
22848
|
localVarQueryParameter['ExceptHospitalId'] = exceptHospitalId;
|
|
22659
22849
|
}
|
|
22660
22850
|
|
|
22851
|
+
if (mediaCount !== undefined) {
|
|
22852
|
+
localVarQueryParameter['MediaCount'] = mediaCount;
|
|
22853
|
+
}
|
|
22854
|
+
|
|
22661
22855
|
if (showHidden !== undefined) {
|
|
22662
22856
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
22663
22857
|
}
|
|
@@ -22767,6 +22961,7 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
22767
22961
|
* @param {string} [specialtyTypeId]
|
|
22768
22962
|
* @param {string} [specialtyId]
|
|
22769
22963
|
* @param {string} [exceptHospitalId]
|
|
22964
|
+
* @param {number} [mediaCount]
|
|
22770
22965
|
* @param {boolean} [showHidden]
|
|
22771
22966
|
* @param {string} [languageCode]
|
|
22772
22967
|
* @param {Array<string>} [ids]
|
|
@@ -22778,8 +22973,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
22778
22973
|
* @param {*} [options] Override http request option.
|
|
22779
22974
|
* @throws {RequiredError}
|
|
22780
22975
|
*/
|
|
22781
|
-
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>> {
|
|
22782
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options);
|
|
22976
|
+
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>> {
|
|
22977
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options);
|
|
22783
22978
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
22784
22979
|
},
|
|
22785
22980
|
/**
|
|
@@ -23244,6 +23439,7 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
23244
23439
|
* @param {string} [specialtyTypeId]
|
|
23245
23440
|
* @param {string} [specialtyId]
|
|
23246
23441
|
* @param {string} [exceptHospitalId]
|
|
23442
|
+
* @param {number} [mediaCount]
|
|
23247
23443
|
* @param {boolean} [showHidden]
|
|
23248
23444
|
* @param {string} [languageCode]
|
|
23249
23445
|
* @param {Array<string>} [ids]
|
|
@@ -23255,8 +23451,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
23255
23451
|
* @param {*} [options] Override http request option.
|
|
23256
23452
|
* @throws {RequiredError}
|
|
23257
23453
|
*/
|
|
23258
|
-
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>> {
|
|
23259
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options);
|
|
23454
|
+
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>> {
|
|
23455
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, mediaCount, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options);
|
|
23260
23456
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
23261
23457
|
},
|
|
23262
23458
|
/**
|
|
@@ -23292,6 +23488,7 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
23292
23488
|
* @param {string} [specialtyTypeId]
|
|
23293
23489
|
* @param {string} [specialtyId]
|
|
23294
23490
|
* @param {string} [exceptHospitalId]
|
|
23491
|
+
* @param {number} [mediaCount]
|
|
23295
23492
|
* @param {boolean} [showHidden]
|
|
23296
23493
|
* @param {string} [languageCode]
|
|
23297
23494
|
* @param {Array<string>} [ids]
|
|
@@ -23303,8 +23500,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
23303
23500
|
* @param {*} [options] Override http request option.
|
|
23304
23501
|
* @throws {RequiredError}
|
|
23305
23502
|
*/
|
|
23306
|
-
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> {
|
|
23307
|
-
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));
|
|
23503
|
+
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> {
|
|
23504
|
+
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));
|
|
23308
23505
|
},
|
|
23309
23506
|
/**
|
|
23310
23507
|
*
|
|
@@ -23739,6 +23936,7 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
23739
23936
|
* @param {string} [specialtyTypeId]
|
|
23740
23937
|
* @param {string} [specialtyId]
|
|
23741
23938
|
* @param {string} [exceptHospitalId]
|
|
23939
|
+
* @param {number} [mediaCount]
|
|
23742
23940
|
* @param {boolean} [showHidden]
|
|
23743
23941
|
* @param {string} [languageCode]
|
|
23744
23942
|
* @param {Array<string>} [ids]
|
|
@@ -23750,8 +23948,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
23750
23948
|
* @param {*} [options] Override http request option.
|
|
23751
23949
|
* @throws {RequiredError}
|
|
23752
23950
|
*/
|
|
23753
|
-
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> {
|
|
23754
|
-
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));
|
|
23951
|
+
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> {
|
|
23952
|
+
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));
|
|
23755
23953
|
},
|
|
23756
23954
|
/**
|
|
23757
23955
|
*
|
|
@@ -23785,6 +23983,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
23785
23983
|
* @param {string} [specialtyTypeId]
|
|
23786
23984
|
* @param {string} [specialtyId]
|
|
23787
23985
|
* @param {string} [exceptHospitalId]
|
|
23986
|
+
* @param {number} [mediaCount]
|
|
23788
23987
|
* @param {boolean} [showHidden]
|
|
23789
23988
|
* @param {string} [languageCode]
|
|
23790
23989
|
* @param {Array<string>} [ids]
|
|
@@ -23797,8 +23996,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
23797
23996
|
* @throws {RequiredError}
|
|
23798
23997
|
* @memberof HospitalsApi
|
|
23799
23998
|
*/
|
|
23800
|
-
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) {
|
|
23801
|
-
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));
|
|
23999
|
+
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) {
|
|
24000
|
+
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));
|
|
23802
24001
|
}
|
|
23803
24002
|
|
|
23804
24003
|
/**
|
|
@@ -24292,6 +24491,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
24292
24491
|
* @param {string} [specialtyTypeId]
|
|
24293
24492
|
* @param {string} [specialtyId]
|
|
24294
24493
|
* @param {string} [exceptHospitalId]
|
|
24494
|
+
* @param {number} [mediaCount]
|
|
24295
24495
|
* @param {boolean} [showHidden]
|
|
24296
24496
|
* @param {string} [languageCode]
|
|
24297
24497
|
* @param {Array<string>} [ids]
|
|
@@ -24304,8 +24504,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
24304
24504
|
* @throws {RequiredError}
|
|
24305
24505
|
* @memberof HospitalsApi
|
|
24306
24506
|
*/
|
|
24307
|
-
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) {
|
|
24308
|
-
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));
|
|
24507
|
+
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) {
|
|
24508
|
+
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));
|
|
24309
24509
|
}
|
|
24310
24510
|
|
|
24311
24511
|
/**
|