ch-admin-api-client-typescript 2.8.9 → 2.8.12
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 +58 -8
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +28 -14
- package/package.json +1 -1
- package/src/api.ts +72 -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>}
|
|
@@ -6983,6 +6989,12 @@ export interface HospitalItemModel {
|
|
|
6983
6989
|
* @memberof HospitalItemModel
|
|
6984
6990
|
*/
|
|
6985
6991
|
'timeZone'?: string | null;
|
|
6992
|
+
/**
|
|
6993
|
+
*
|
|
6994
|
+
* @type {string}
|
|
6995
|
+
* @memberof HospitalItemModel
|
|
6996
|
+
*/
|
|
6997
|
+
'websiteUrl'?: string | null;
|
|
6986
6998
|
/**
|
|
6987
6999
|
*
|
|
6988
7000
|
* @type {number}
|
|
@@ -7200,6 +7212,12 @@ export interface HospitalModel {
|
|
|
7200
7212
|
* @memberof HospitalModel
|
|
7201
7213
|
*/
|
|
7202
7214
|
'timeZone'?: string | null;
|
|
7215
|
+
/**
|
|
7216
|
+
*
|
|
7217
|
+
* @type {string}
|
|
7218
|
+
* @memberof HospitalModel
|
|
7219
|
+
*/
|
|
7220
|
+
'websiteUrl'?: string | null;
|
|
7203
7221
|
/**
|
|
7204
7222
|
*
|
|
7205
7223
|
* @type {number}
|
|
@@ -7363,6 +7381,12 @@ export interface HospitalServiceItemModel {
|
|
|
7363
7381
|
* @memberof HospitalServiceItemModel
|
|
7364
7382
|
*/
|
|
7365
7383
|
'hospitalName'?: string | null;
|
|
7384
|
+
/**
|
|
7385
|
+
*
|
|
7386
|
+
* @type {string}
|
|
7387
|
+
* @memberof HospitalServiceItemModel
|
|
7388
|
+
*/
|
|
7389
|
+
'hospitalSlug'?: string | null;
|
|
7366
7390
|
/**
|
|
7367
7391
|
*
|
|
7368
7392
|
* @type {string}
|
|
@@ -7520,6 +7544,12 @@ export interface HospitalServiceModel {
|
|
|
7520
7544
|
* @memberof HospitalServiceModel
|
|
7521
7545
|
*/
|
|
7522
7546
|
'hospitalName'?: string | null;
|
|
7547
|
+
/**
|
|
7548
|
+
*
|
|
7549
|
+
* @type {string}
|
|
7550
|
+
* @memberof HospitalServiceModel
|
|
7551
|
+
*/
|
|
7552
|
+
'hospitalSlug'?: string | null;
|
|
7523
7553
|
/**
|
|
7524
7554
|
*
|
|
7525
7555
|
* @type {string}
|
|
@@ -8037,6 +8067,12 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
8037
8067
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
8038
8068
|
*/
|
|
8039
8069
|
'id'?: string;
|
|
8070
|
+
/**
|
|
8071
|
+
*
|
|
8072
|
+
* @type {string}
|
|
8073
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
8074
|
+
*/
|
|
8075
|
+
'title'?: string | null;
|
|
8040
8076
|
/**
|
|
8041
8077
|
*
|
|
8042
8078
|
* @type {string}
|
|
@@ -11719,6 +11755,12 @@ export interface UpdateHospitalCommand {
|
|
|
11719
11755
|
* @memberof UpdateHospitalCommand
|
|
11720
11756
|
*/
|
|
11721
11757
|
'timeZone'?: string | null;
|
|
11758
|
+
/**
|
|
11759
|
+
*
|
|
11760
|
+
* @type {string}
|
|
11761
|
+
* @memberof UpdateHospitalCommand
|
|
11762
|
+
*/
|
|
11763
|
+
'websiteUrl'?: string | null;
|
|
11722
11764
|
/**
|
|
11723
11765
|
*
|
|
11724
11766
|
* @type {boolean}
|
|
@@ -29198,6 +29240,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
29198
29240
|
* @param {string} [specialtyId]
|
|
29199
29241
|
* @param {string} [specialtyName]
|
|
29200
29242
|
* @param {string} [specialtyTypeId]
|
|
29243
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
29201
29244
|
* @param {string} [title]
|
|
29202
29245
|
* @param {MarketingType} [marketingType]
|
|
29203
29246
|
* @param {string} [languageCode]
|
|
@@ -29210,7 +29253,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
29210
29253
|
* @param {*} [options] Override http request option.
|
|
29211
29254
|
* @throws {RequiredError}
|
|
29212
29255
|
*/
|
|
29213
|
-
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> => {
|
|
29256
|
+
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> => {
|
|
29214
29257
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
29215
29258
|
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesGet', 'hospitalId', hospitalId)
|
|
29216
29259
|
const localVarPath = `/api/v1/hospitals/{hospitalId}/specialties`
|
|
@@ -29250,6 +29293,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
29250
29293
|
localVarQueryParameter['SpecialtyTypeId'] = specialtyTypeId;
|
|
29251
29294
|
}
|
|
29252
29295
|
|
|
29296
|
+
if (hospitalSpecialtySlug !== undefined) {
|
|
29297
|
+
localVarQueryParameter['HospitalSpecialtySlug'] = hospitalSpecialtySlug;
|
|
29298
|
+
}
|
|
29299
|
+
|
|
29253
29300
|
if (title !== undefined) {
|
|
29254
29301
|
localVarQueryParameter['Title'] = title;
|
|
29255
29302
|
}
|
|
@@ -29350,6 +29397,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
29350
29397
|
* @param {string} [specialtyId]
|
|
29351
29398
|
* @param {string} [specialtyName]
|
|
29352
29399
|
* @param {string} [specialtyTypeId]
|
|
29400
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
29353
29401
|
* @param {string} [title]
|
|
29354
29402
|
* @param {MarketingType} [marketingType]
|
|
29355
29403
|
* @param {string} [languageCode]
|
|
@@ -29362,7 +29410,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
29362
29410
|
* @param {*} [options] Override http request option.
|
|
29363
29411
|
* @throws {RequiredError}
|
|
29364
29412
|
*/
|
|
29365
|
-
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> => {
|
|
29413
|
+
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> => {
|
|
29366
29414
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
29367
29415
|
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSimpleGet', 'hospitalId', hospitalId)
|
|
29368
29416
|
const localVarPath = `/api/v1/hospitals/{hospitalId}/specialties/simple`
|
|
@@ -29402,6 +29450,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
29402
29450
|
localVarQueryParameter['SpecialtyTypeId'] = specialtyTypeId;
|
|
29403
29451
|
}
|
|
29404
29452
|
|
|
29453
|
+
if (hospitalSpecialtySlug !== undefined) {
|
|
29454
|
+
localVarQueryParameter['HospitalSpecialtySlug'] = hospitalSpecialtySlug;
|
|
29455
|
+
}
|
|
29456
|
+
|
|
29405
29457
|
if (title !== undefined) {
|
|
29406
29458
|
localVarQueryParameter['Title'] = title;
|
|
29407
29459
|
}
|
|
@@ -30807,6 +30859,7 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
30807
30859
|
* @param {string} [specialtyId]
|
|
30808
30860
|
* @param {string} [specialtyName]
|
|
30809
30861
|
* @param {string} [specialtyTypeId]
|
|
30862
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
30810
30863
|
* @param {string} [title]
|
|
30811
30864
|
* @param {MarketingType} [marketingType]
|
|
30812
30865
|
* @param {string} [languageCode]
|
|
@@ -30819,8 +30872,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
30819
30872
|
* @param {*} [options] Override http request option.
|
|
30820
30873
|
* @throws {RequiredError}
|
|
30821
30874
|
*/
|
|
30822
|
-
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>> {
|
|
30823
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options);
|
|
30875
|
+
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>> {
|
|
30876
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options);
|
|
30824
30877
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
30825
30878
|
},
|
|
30826
30879
|
/**
|
|
@@ -30844,6 +30897,7 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
30844
30897
|
* @param {string} [specialtyId]
|
|
30845
30898
|
* @param {string} [specialtyName]
|
|
30846
30899
|
* @param {string} [specialtyTypeId]
|
|
30900
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
30847
30901
|
* @param {string} [title]
|
|
30848
30902
|
* @param {MarketingType} [marketingType]
|
|
30849
30903
|
* @param {string} [languageCode]
|
|
@@ -30856,8 +30910,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
30856
30910
|
* @param {*} [options] Override http request option.
|
|
30857
30911
|
* @throws {RequiredError}
|
|
30858
30912
|
*/
|
|
30859
|
-
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>> {
|
|
30860
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options);
|
|
30913
|
+
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>> {
|
|
30914
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, hospitalSpecialtySlug, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options);
|
|
30861
30915
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
30862
30916
|
},
|
|
30863
30917
|
/**
|
|
@@ -31482,6 +31536,7 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
31482
31536
|
* @param {string} [specialtyId]
|
|
31483
31537
|
* @param {string} [specialtyName]
|
|
31484
31538
|
* @param {string} [specialtyTypeId]
|
|
31539
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
31485
31540
|
* @param {string} [title]
|
|
31486
31541
|
* @param {MarketingType} [marketingType]
|
|
31487
31542
|
* @param {string} [languageCode]
|
|
@@ -31494,8 +31549,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
31494
31549
|
* @param {*} [options] Override http request option.
|
|
31495
31550
|
* @throws {RequiredError}
|
|
31496
31551
|
*/
|
|
31497
|
-
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> {
|
|
31498
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
31552
|
+
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> {
|
|
31553
|
+
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));
|
|
31499
31554
|
},
|
|
31500
31555
|
/**
|
|
31501
31556
|
*
|
|
@@ -31517,6 +31572,7 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
31517
31572
|
* @param {string} [specialtyId]
|
|
31518
31573
|
* @param {string} [specialtyName]
|
|
31519
31574
|
* @param {string} [specialtyTypeId]
|
|
31575
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
31520
31576
|
* @param {string} [title]
|
|
31521
31577
|
* @param {MarketingType} [marketingType]
|
|
31522
31578
|
* @param {string} [languageCode]
|
|
@@ -31529,8 +31585,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
31529
31585
|
* @param {*} [options] Override http request option.
|
|
31530
31586
|
* @throws {RequiredError}
|
|
31531
31587
|
*/
|
|
31532
|
-
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> {
|
|
31533
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, includeServices, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
31588
|
+
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> {
|
|
31589
|
+
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));
|
|
31534
31590
|
},
|
|
31535
31591
|
/**
|
|
31536
31592
|
*
|
|
@@ -32194,6 +32250,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
32194
32250
|
* @param {string} [specialtyId]
|
|
32195
32251
|
* @param {string} [specialtyName]
|
|
32196
32252
|
* @param {string} [specialtyTypeId]
|
|
32253
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
32197
32254
|
* @param {string} [title]
|
|
32198
32255
|
* @param {MarketingType} [marketingType]
|
|
32199
32256
|
* @param {string} [languageCode]
|
|
@@ -32207,8 +32264,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
32207
32264
|
* @throws {RequiredError}
|
|
32208
32265
|
* @memberof HospitalsApi
|
|
32209
32266
|
*/
|
|
32210
|
-
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) {
|
|
32211
|
-
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));
|
|
32267
|
+
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) {
|
|
32268
|
+
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));
|
|
32212
32269
|
}
|
|
32213
32270
|
|
|
32214
32271
|
/**
|
|
@@ -32233,6 +32290,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
32233
32290
|
* @param {string} [specialtyId]
|
|
32234
32291
|
* @param {string} [specialtyName]
|
|
32235
32292
|
* @param {string} [specialtyTypeId]
|
|
32293
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
32236
32294
|
* @param {string} [title]
|
|
32237
32295
|
* @param {MarketingType} [marketingType]
|
|
32238
32296
|
* @param {string} [languageCode]
|
|
@@ -32246,8 +32304,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
32246
32304
|
* @throws {RequiredError}
|
|
32247
32305
|
* @memberof HospitalsApi
|
|
32248
32306
|
*/
|
|
32249
|
-
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) {
|
|
32250
|
-
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));
|
|
32307
|
+
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) {
|
|
32308
|
+
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));
|
|
32251
32309
|
}
|
|
32252
32310
|
|
|
32253
32311
|
/**
|