ch-admin-api-client-typescript 2.8.8 → 2.8.11
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 +94 -8
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +28 -14
- package/package.json +1 -1
- package/src/api.ts +108 -14
package/lib/api.js
CHANGED
|
@@ -18782,6 +18782,7 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
18782
18782
|
* @param {string} [specialtyId]
|
|
18783
18783
|
* @param {string} [specialtyName]
|
|
18784
18784
|
* @param {string} [specialtyTypeId]
|
|
18785
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
18785
18786
|
* @param {string} [title]
|
|
18786
18787
|
* @param {MarketingType} [marketingType]
|
|
18787
18788
|
* @param {string} [languageCode]
|
|
@@ -18794,7 +18795,7 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
18794
18795
|
* @param {*} [options] Override http request option.
|
|
18795
18796
|
* @throws {RequiredError}
|
|
18796
18797
|
*/
|
|
18797
|
-
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
18798
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
18798
18799
|
if (options === void 0) { options = {}; }
|
|
18799
18800
|
return __awaiter(_this, void 0, void 0, function () {
|
|
18800
18801
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -18834,6 +18835,9 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
18834
18835
|
if (specialtyTypeId !== undefined) {
|
|
18835
18836
|
localVarQueryParameter['SpecialtyTypeId'] = specialtyTypeId;
|
|
18836
18837
|
}
|
|
18838
|
+
if (hospitalSpecialtySlug !== undefined) {
|
|
18839
|
+
localVarQueryParameter['HospitalSpecialtySlug'] = hospitalSpecialtySlug;
|
|
18840
|
+
}
|
|
18837
18841
|
if (title !== undefined) {
|
|
18838
18842
|
localVarQueryParameter['Title'] = title;
|
|
18839
18843
|
}
|
|
@@ -18929,6 +18933,7 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
18929
18933
|
* @param {string} [specialtyId]
|
|
18930
18934
|
* @param {string} [specialtyName]
|
|
18931
18935
|
* @param {string} [specialtyTypeId]
|
|
18936
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
18932
18937
|
* @param {string} [title]
|
|
18933
18938
|
* @param {MarketingType} [marketingType]
|
|
18934
18939
|
* @param {string} [languageCode]
|
|
@@ -18941,7 +18946,7 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
18941
18946
|
* @param {*} [options] Override http request option.
|
|
18942
18947
|
* @throws {RequiredError}
|
|
18943
18948
|
*/
|
|
18944
|
-
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
18949
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
18945
18950
|
if (options === void 0) { options = {}; }
|
|
18946
18951
|
return __awaiter(_this, void 0, void 0, function () {
|
|
18947
18952
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -18981,6 +18986,9 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
18981
18986
|
if (specialtyTypeId !== undefined) {
|
|
18982
18987
|
localVarQueryParameter['SpecialtyTypeId'] = specialtyTypeId;
|
|
18983
18988
|
}
|
|
18989
|
+
if (hospitalSpecialtySlug !== undefined) {
|
|
18990
|
+
localVarQueryParameter['HospitalSpecialtySlug'] = hospitalSpecialtySlug;
|
|
18991
|
+
}
|
|
18984
18992
|
if (title !== undefined) {
|
|
18985
18993
|
localVarQueryParameter['Title'] = title;
|
|
18986
18994
|
}
|
|
@@ -20657,6 +20665,7 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
20657
20665
|
* @param {string} [specialtyId]
|
|
20658
20666
|
* @param {string} [specialtyName]
|
|
20659
20667
|
* @param {string} [specialtyTypeId]
|
|
20668
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
20660
20669
|
* @param {string} [title]
|
|
20661
20670
|
* @param {MarketingType} [marketingType]
|
|
20662
20671
|
* @param {string} [languageCode]
|
|
@@ -20669,12 +20678,12 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
20669
20678
|
* @param {*} [options] Override http request option.
|
|
20670
20679
|
* @throws {RequiredError}
|
|
20671
20680
|
*/
|
|
20672
|
-
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
20681
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
20673
20682
|
return __awaiter(this, void 0, void 0, function () {
|
|
20674
20683
|
var localVarAxiosArgs;
|
|
20675
20684
|
return __generator(this, function (_a) {
|
|
20676
20685
|
switch (_a.label) {
|
|
20677
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options)];
|
|
20686
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options)];
|
|
20678
20687
|
case 1:
|
|
20679
20688
|
localVarAxiosArgs = _a.sent();
|
|
20680
20689
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -20712,6 +20721,7 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
20712
20721
|
* @param {string} [specialtyId]
|
|
20713
20722
|
* @param {string} [specialtyName]
|
|
20714
20723
|
* @param {string} [specialtyTypeId]
|
|
20724
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
20715
20725
|
* @param {string} [title]
|
|
20716
20726
|
* @param {MarketingType} [marketingType]
|
|
20717
20727
|
* @param {string} [languageCode]
|
|
@@ -20724,12 +20734,12 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
20724
20734
|
* @param {*} [options] Override http request option.
|
|
20725
20735
|
* @throws {RequiredError}
|
|
20726
20736
|
*/
|
|
20727
|
-
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
20737
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
20728
20738
|
return __awaiter(this, void 0, void 0, function () {
|
|
20729
20739
|
var localVarAxiosArgs;
|
|
20730
20740
|
return __generator(this, function (_a) {
|
|
20731
20741
|
switch (_a.label) {
|
|
20732
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options)];
|
|
20742
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options)];
|
|
20733
20743
|
case 1:
|
|
20734
20744
|
localVarAxiosArgs = _a.sent();
|
|
20735
20745
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -21502,6 +21512,7 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
21502
21512
|
* @param {string} [specialtyId]
|
|
21503
21513
|
* @param {string} [specialtyName]
|
|
21504
21514
|
* @param {string} [specialtyTypeId]
|
|
21515
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
21505
21516
|
* @param {string} [title]
|
|
21506
21517
|
* @param {MarketingType} [marketingType]
|
|
21507
21518
|
* @param {string} [languageCode]
|
|
@@ -21514,8 +21525,8 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
21514
21525
|
* @param {*} [options] Override http request option.
|
|
21515
21526
|
* @throws {RequiredError}
|
|
21516
21527
|
*/
|
|
21517
|
-
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
21518
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
21528
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
21529
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
21519
21530
|
},
|
|
21520
21531
|
/**
|
|
21521
21532
|
*
|
|
@@ -21537,6 +21548,7 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
21537
21548
|
* @param {string} [specialtyId]
|
|
21538
21549
|
* @param {string} [specialtyName]
|
|
21539
21550
|
* @param {string} [specialtyTypeId]
|
|
21551
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
21540
21552
|
* @param {string} [title]
|
|
21541
21553
|
* @param {MarketingType} [marketingType]
|
|
21542
21554
|
* @param {string} [languageCode]
|
|
@@ -21549,8 +21561,8 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
21549
21561
|
* @param {*} [options] Override http request option.
|
|
21550
21562
|
* @throws {RequiredError}
|
|
21551
21563
|
*/
|
|
21552
|
-
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
21553
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
21564
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
21565
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
21554
21566
|
},
|
|
21555
21567
|
/**
|
|
21556
21568
|
*
|
|
@@ -22217,6 +22229,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
22217
22229
|
* @param {string} [specialtyId]
|
|
22218
22230
|
* @param {string} [specialtyName]
|
|
22219
22231
|
* @param {string} [specialtyTypeId]
|
|
22232
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
22220
22233
|
* @param {string} [title]
|
|
22221
22234
|
* @param {MarketingType} [marketingType]
|
|
22222
22235
|
* @param {string} [languageCode]
|
|
@@ -22230,9 +22243,9 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
22230
22243
|
* @throws {RequiredError}
|
|
22231
22244
|
* @memberof HospitalsApi
|
|
22232
22245
|
*/
|
|
22233
|
-
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesGet = function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
22246
|
+
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesGet = function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
22234
22247
|
var _this = this;
|
|
22235
|
-
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
22248
|
+
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
22236
22249
|
};
|
|
22237
22250
|
/**
|
|
22238
22251
|
*
|
|
@@ -22256,6 +22269,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
22256
22269
|
* @param {string} [specialtyId]
|
|
22257
22270
|
* @param {string} [specialtyName]
|
|
22258
22271
|
* @param {string} [specialtyTypeId]
|
|
22272
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
22259
22273
|
* @param {string} [title]
|
|
22260
22274
|
* @param {MarketingType} [marketingType]
|
|
22261
22275
|
* @param {string} [languageCode]
|
|
@@ -22269,9 +22283,9 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
22269
22283
|
* @throws {RequiredError}
|
|
22270
22284
|
* @memberof HospitalsApi
|
|
22271
22285
|
*/
|
|
22272
|
-
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesSimpleGet = function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
22286
|
+
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesSimpleGet = function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options) {
|
|
22273
22287
|
var _this = this;
|
|
22274
|
-
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
22288
|
+
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
22275
22289
|
};
|
|
22276
22290
|
/**
|
|
22277
22291
|
*
|
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -3865,6 +3865,12 @@ export interface CreateHospitalCommand {
|
|
|
3865
3865
|
* @memberof CreateHospitalCommand
|
|
3866
3866
|
*/
|
|
3867
3867
|
'timeZone'?: string | null;
|
|
3868
|
+
/**
|
|
3869
|
+
*
|
|
3870
|
+
* @type {string}
|
|
3871
|
+
* @memberof CreateHospitalCommand
|
|
3872
|
+
*/
|
|
3873
|
+
'websiteUrl'?: string | null;
|
|
3868
3874
|
/**
|
|
3869
3875
|
*
|
|
3870
3876
|
* @type {Array<AwardModel>}
|
|
@@ -4006,6 +4012,12 @@ export interface CreateHospitalServiceCommand {
|
|
|
4006
4012
|
* @memberof CreateHospitalServiceCommand
|
|
4007
4013
|
*/
|
|
4008
4014
|
'photoThumbnail'?: string | null;
|
|
4015
|
+
/**
|
|
4016
|
+
*
|
|
4017
|
+
* @type {Array<MediaModel>}
|
|
4018
|
+
* @memberof CreateHospitalServiceCommand
|
|
4019
|
+
*/
|
|
4020
|
+
'medias'?: Array<MediaModel> | null;
|
|
4009
4021
|
}
|
|
4010
4022
|
/**
|
|
4011
4023
|
*
|
|
@@ -4467,6 +4479,12 @@ export interface CreateSpecialtyCommand {
|
|
|
4467
4479
|
* @memberof CreateSpecialtyCommand
|
|
4468
4480
|
*/
|
|
4469
4481
|
'specialtyTypeId'?: string;
|
|
4482
|
+
/**
|
|
4483
|
+
*
|
|
4484
|
+
* @type {Array<MediaModel>}
|
|
4485
|
+
* @memberof CreateSpecialtyCommand
|
|
4486
|
+
*/
|
|
4487
|
+
'medias'?: Array<MediaModel> | null;
|
|
4470
4488
|
}
|
|
4471
4489
|
/**
|
|
4472
4490
|
*
|
|
@@ -6971,6 +6989,12 @@ export interface HospitalItemModel {
|
|
|
6971
6989
|
* @memberof HospitalItemModel
|
|
6972
6990
|
*/
|
|
6973
6991
|
'timeZone'?: string | null;
|
|
6992
|
+
/**
|
|
6993
|
+
*
|
|
6994
|
+
* @type {string}
|
|
6995
|
+
* @memberof HospitalItemModel
|
|
6996
|
+
*/
|
|
6997
|
+
'websiteUrl'?: string | null;
|
|
6974
6998
|
/**
|
|
6975
6999
|
*
|
|
6976
7000
|
* @type {number}
|
|
@@ -7188,6 +7212,12 @@ export interface HospitalModel {
|
|
|
7188
7212
|
* @memberof HospitalModel
|
|
7189
7213
|
*/
|
|
7190
7214
|
'timeZone'?: string | null;
|
|
7215
|
+
/**
|
|
7216
|
+
*
|
|
7217
|
+
* @type {string}
|
|
7218
|
+
* @memberof HospitalModel
|
|
7219
|
+
*/
|
|
7220
|
+
'websiteUrl'?: string | null;
|
|
7191
7221
|
/**
|
|
7192
7222
|
*
|
|
7193
7223
|
* @type {number}
|
|
@@ -7447,6 +7477,12 @@ export interface HospitalServiceItemModel {
|
|
|
7447
7477
|
* @memberof HospitalServiceItemModel
|
|
7448
7478
|
*/
|
|
7449
7479
|
'photoThumbnail'?: string | null;
|
|
7480
|
+
/**
|
|
7481
|
+
*
|
|
7482
|
+
* @type {Array<MediaModel>}
|
|
7483
|
+
* @memberof HospitalServiceItemModel
|
|
7484
|
+
*/
|
|
7485
|
+
'medias'?: Array<MediaModel> | null;
|
|
7450
7486
|
/**
|
|
7451
7487
|
*
|
|
7452
7488
|
* @type {AuditableEntity}
|
|
@@ -7598,6 +7634,12 @@ export interface HospitalServiceModel {
|
|
|
7598
7634
|
* @memberof HospitalServiceModel
|
|
7599
7635
|
*/
|
|
7600
7636
|
'photoThumbnail'?: string | null;
|
|
7637
|
+
/**
|
|
7638
|
+
*
|
|
7639
|
+
* @type {Array<MediaModel>}
|
|
7640
|
+
* @memberof HospitalServiceModel
|
|
7641
|
+
*/
|
|
7642
|
+
'medias'?: Array<MediaModel> | null;
|
|
7601
7643
|
/**
|
|
7602
7644
|
*
|
|
7603
7645
|
* @type {AuditableEntity}
|
|
@@ -8013,6 +8055,12 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
8013
8055
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
8014
8056
|
*/
|
|
8015
8057
|
'id'?: string;
|
|
8058
|
+
/**
|
|
8059
|
+
*
|
|
8060
|
+
* @type {string}
|
|
8061
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
8062
|
+
*/
|
|
8063
|
+
'title'?: string | null;
|
|
8016
8064
|
/**
|
|
8017
8065
|
*
|
|
8018
8066
|
* @type {string}
|
|
@@ -10104,6 +10152,12 @@ export interface SpecialtyItemModel {
|
|
|
10104
10152
|
* @memberof SpecialtyItemModel
|
|
10105
10153
|
*/
|
|
10106
10154
|
'auditableEntity'?: AuditableEntity;
|
|
10155
|
+
/**
|
|
10156
|
+
*
|
|
10157
|
+
* @type {Array<MediaModel>}
|
|
10158
|
+
* @memberof SpecialtyItemModel
|
|
10159
|
+
*/
|
|
10160
|
+
'medias'?: Array<MediaModel> | null;
|
|
10107
10161
|
}
|
|
10108
10162
|
/**
|
|
10109
10163
|
*
|
|
@@ -10177,6 +10231,12 @@ export interface SpecialtyModel {
|
|
|
10177
10231
|
* @memberof SpecialtyModel
|
|
10178
10232
|
*/
|
|
10179
10233
|
'auditableEntity'?: AuditableEntity;
|
|
10234
|
+
/**
|
|
10235
|
+
*
|
|
10236
|
+
* @type {Array<MediaModel>}
|
|
10237
|
+
* @memberof SpecialtyModel
|
|
10238
|
+
*/
|
|
10239
|
+
'medias'?: Array<MediaModel> | null;
|
|
10180
10240
|
/**
|
|
10181
10241
|
*
|
|
10182
10242
|
* @type {string}
|
|
@@ -11683,6 +11743,12 @@ export interface UpdateHospitalCommand {
|
|
|
11683
11743
|
* @memberof UpdateHospitalCommand
|
|
11684
11744
|
*/
|
|
11685
11745
|
'timeZone'?: string | null;
|
|
11746
|
+
/**
|
|
11747
|
+
*
|
|
11748
|
+
* @type {string}
|
|
11749
|
+
* @memberof UpdateHospitalCommand
|
|
11750
|
+
*/
|
|
11751
|
+
'websiteUrl'?: string | null;
|
|
11686
11752
|
/**
|
|
11687
11753
|
*
|
|
11688
11754
|
* @type {boolean}
|
|
@@ -11823,6 +11889,12 @@ export interface UpdateHospitalServiceCommand {
|
|
|
11823
11889
|
* @memberof UpdateHospitalServiceCommand
|
|
11824
11890
|
*/
|
|
11825
11891
|
'photoThumbnail'?: string | null;
|
|
11892
|
+
/**
|
|
11893
|
+
*
|
|
11894
|
+
* @type {Array<MediaModel>}
|
|
11895
|
+
* @memberof UpdateHospitalServiceCommand
|
|
11896
|
+
*/
|
|
11897
|
+
'medias'?: Array<MediaModel> | null;
|
|
11826
11898
|
}
|
|
11827
11899
|
/**
|
|
11828
11900
|
*
|
|
@@ -12370,6 +12442,12 @@ export interface UpdateSpecialtyCommand {
|
|
|
12370
12442
|
* @memberof UpdateSpecialtyCommand
|
|
12371
12443
|
*/
|
|
12372
12444
|
'confirmed'?: boolean;
|
|
12445
|
+
/**
|
|
12446
|
+
*
|
|
12447
|
+
* @type {Array<MediaModel>}
|
|
12448
|
+
* @memberof UpdateSpecialtyCommand
|
|
12449
|
+
*/
|
|
12450
|
+
'medias'?: Array<MediaModel> | null;
|
|
12373
12451
|
}
|
|
12374
12452
|
/**
|
|
12375
12453
|
*
|
|
@@ -29150,6 +29228,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
29150
29228
|
* @param {string} [specialtyId]
|
|
29151
29229
|
* @param {string} [specialtyName]
|
|
29152
29230
|
* @param {string} [specialtyTypeId]
|
|
29231
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
29153
29232
|
* @param {string} [title]
|
|
29154
29233
|
* @param {MarketingType} [marketingType]
|
|
29155
29234
|
* @param {string} [languageCode]
|
|
@@ -29162,7 +29241,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
29162
29241
|
* @param {*} [options] Override http request option.
|
|
29163
29242
|
* @throws {RequiredError}
|
|
29164
29243
|
*/
|
|
29165
|
-
apiV1HospitalsHospitalIdSpecialtiesGet: async (hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29244
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: async (hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29166
29245
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
29167
29246
|
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesGet', 'hospitalId', hospitalId)
|
|
29168
29247
|
const localVarPath = `/api/v1/hospitals/{hospitalId}/specialties`
|
|
@@ -29202,6 +29281,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
29202
29281
|
localVarQueryParameter['SpecialtyTypeId'] = specialtyTypeId;
|
|
29203
29282
|
}
|
|
29204
29283
|
|
|
29284
|
+
if (hospitalSpecialtySlug !== undefined) {
|
|
29285
|
+
localVarQueryParameter['HospitalSpecialtySlug'] = hospitalSpecialtySlug;
|
|
29286
|
+
}
|
|
29287
|
+
|
|
29205
29288
|
if (title !== undefined) {
|
|
29206
29289
|
localVarQueryParameter['Title'] = title;
|
|
29207
29290
|
}
|
|
@@ -29302,6 +29385,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
29302
29385
|
* @param {string} [specialtyId]
|
|
29303
29386
|
* @param {string} [specialtyName]
|
|
29304
29387
|
* @param {string} [specialtyTypeId]
|
|
29388
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
29305
29389
|
* @param {string} [title]
|
|
29306
29390
|
* @param {MarketingType} [marketingType]
|
|
29307
29391
|
* @param {string} [languageCode]
|
|
@@ -29314,7 +29398,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
29314
29398
|
* @param {*} [options] Override http request option.
|
|
29315
29399
|
* @throws {RequiredError}
|
|
29316
29400
|
*/
|
|
29317
|
-
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: async (hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29401
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: async (hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29318
29402
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
29319
29403
|
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSimpleGet', 'hospitalId', hospitalId)
|
|
29320
29404
|
const localVarPath = `/api/v1/hospitals/{hospitalId}/specialties/simple`
|
|
@@ -29354,6 +29438,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
29354
29438
|
localVarQueryParameter['SpecialtyTypeId'] = specialtyTypeId;
|
|
29355
29439
|
}
|
|
29356
29440
|
|
|
29441
|
+
if (hospitalSpecialtySlug !== undefined) {
|
|
29442
|
+
localVarQueryParameter['HospitalSpecialtySlug'] = hospitalSpecialtySlug;
|
|
29443
|
+
}
|
|
29444
|
+
|
|
29357
29445
|
if (title !== undefined) {
|
|
29358
29446
|
localVarQueryParameter['Title'] = title;
|
|
29359
29447
|
}
|
|
@@ -30759,6 +30847,7 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
30759
30847
|
* @param {string} [specialtyId]
|
|
30760
30848
|
* @param {string} [specialtyName]
|
|
30761
30849
|
* @param {string} [specialtyTypeId]
|
|
30850
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
30762
30851
|
* @param {string} [title]
|
|
30763
30852
|
* @param {MarketingType} [marketingType]
|
|
30764
30853
|
* @param {string} [languageCode]
|
|
@@ -30771,8 +30860,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
30771
30860
|
* @param {*} [options] Override http request option.
|
|
30772
30861
|
* @throws {RequiredError}
|
|
30773
30862
|
*/
|
|
30774
|
-
async apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtiesModel>> {
|
|
30775
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options);
|
|
30863
|
+
async apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtiesModel>> {
|
|
30864
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options);
|
|
30776
30865
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
30777
30866
|
},
|
|
30778
30867
|
/**
|
|
@@ -30796,6 +30885,7 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
30796
30885
|
* @param {string} [specialtyId]
|
|
30797
30886
|
* @param {string} [specialtyName]
|
|
30798
30887
|
* @param {string} [specialtyTypeId]
|
|
30888
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
30799
30889
|
* @param {string} [title]
|
|
30800
30890
|
* @param {MarketingType} [marketingType]
|
|
30801
30891
|
* @param {string} [languageCode]
|
|
@@ -30808,8 +30898,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
30808
30898
|
* @param {*} [options] Override http request option.
|
|
30809
30899
|
* @throws {RequiredError}
|
|
30810
30900
|
*/
|
|
30811
|
-
async apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtiesSimpleModel>> {
|
|
30812
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options);
|
|
30901
|
+
async apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtiesSimpleModel>> {
|
|
30902
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options);
|
|
30813
30903
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
30814
30904
|
},
|
|
30815
30905
|
/**
|
|
@@ -31434,6 +31524,7 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
31434
31524
|
* @param {string} [specialtyId]
|
|
31435
31525
|
* @param {string} [specialtyName]
|
|
31436
31526
|
* @param {string} [specialtyTypeId]
|
|
31527
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
31437
31528
|
* @param {string} [title]
|
|
31438
31529
|
* @param {MarketingType} [marketingType]
|
|
31439
31530
|
* @param {string} [languageCode]
|
|
@@ -31446,8 +31537,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
31446
31537
|
* @param {*} [options] Override http request option.
|
|
31447
31538
|
* @throws {RequiredError}
|
|
31448
31539
|
*/
|
|
31449
|
-
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalSpecialtiesModel> {
|
|
31450
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
31540
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalSpecialtiesModel> {
|
|
31541
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
31451
31542
|
},
|
|
31452
31543
|
/**
|
|
31453
31544
|
*
|
|
@@ -31469,6 +31560,7 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
31469
31560
|
* @param {string} [specialtyId]
|
|
31470
31561
|
* @param {string} [specialtyName]
|
|
31471
31562
|
* @param {string} [specialtyTypeId]
|
|
31563
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
31472
31564
|
* @param {string} [title]
|
|
31473
31565
|
* @param {MarketingType} [marketingType]
|
|
31474
31566
|
* @param {string} [languageCode]
|
|
@@ -31481,8 +31573,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
31481
31573
|
* @param {*} [options] Override http request option.
|
|
31482
31574
|
* @throws {RequiredError}
|
|
31483
31575
|
*/
|
|
31484
|
-
apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel> {
|
|
31485
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
31576
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel> {
|
|
31577
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
31486
31578
|
},
|
|
31487
31579
|
/**
|
|
31488
31580
|
*
|
|
@@ -32146,6 +32238,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
32146
32238
|
* @param {string} [specialtyId]
|
|
32147
32239
|
* @param {string} [specialtyName]
|
|
32148
32240
|
* @param {string} [specialtyTypeId]
|
|
32241
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
32149
32242
|
* @param {string} [title]
|
|
32150
32243
|
* @param {MarketingType} [marketingType]
|
|
32151
32244
|
* @param {string} [languageCode]
|
|
@@ -32159,8 +32252,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
32159
32252
|
* @throws {RequiredError}
|
|
32160
32253
|
* @memberof HospitalsApi
|
|
32161
32254
|
*/
|
|
32162
|
-
public apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
32163
|
-
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
32255
|
+
public apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
32256
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
32164
32257
|
}
|
|
32165
32258
|
|
|
32166
32259
|
/**
|
|
@@ -32185,6 +32278,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
32185
32278
|
* @param {string} [specialtyId]
|
|
32186
32279
|
* @param {string} [specialtyName]
|
|
32187
32280
|
* @param {string} [specialtyTypeId]
|
|
32281
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
32188
32282
|
* @param {string} [title]
|
|
32189
32283
|
* @param {MarketingType} [marketingType]
|
|
32190
32284
|
* @param {string} [languageCode]
|
|
@@ -32198,8 +32292,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
32198
32292
|
* @throws {RequiredError}
|
|
32199
32293
|
* @memberof HospitalsApi
|
|
32200
32294
|
*/
|
|
32201
|
-
public apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
32202
|
-
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
32295
|
+
public apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
32296
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
32203
32297
|
}
|
|
32204
32298
|
|
|
32205
32299
|
/**
|