ch-admin-api-client-typescript 2.6.3 → 2.6.5
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 +41 -4
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +101 -9
- package/package.json +1 -1
- package/src/api.ts +87 -9
package/lib/api.js
CHANGED
|
@@ -8120,7 +8120,7 @@ exports.CountriesApiAxiosParamCreator = function (configuration) {
|
|
|
8120
8120
|
* @param {*} [options] Override http request option.
|
|
8121
8121
|
* @throws {RequiredError}
|
|
8122
8122
|
*/
|
|
8123
|
-
|
|
8123
|
+
apiV1CountriesCountryIdReactivePut: function (countryId, options) {
|
|
8124
8124
|
if (options === void 0) { options = {}; }
|
|
8125
8125
|
return __awaiter(_this, void 0, void 0, function () {
|
|
8126
8126
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -8128,8 +8128,8 @@ exports.CountriesApiAxiosParamCreator = function (configuration) {
|
|
|
8128
8128
|
switch (_a.label) {
|
|
8129
8129
|
case 0:
|
|
8130
8130
|
// verify required parameter 'countryId' is not null or undefined
|
|
8131
|
-
common_1.assertParamExists('
|
|
8132
|
-
localVarPath = "/api/v1/countries/{countryId}/
|
|
8131
|
+
common_1.assertParamExists('apiV1CountriesCountryIdReactivePut', 'countryId', countryId);
|
|
8132
|
+
localVarPath = "/api/v1/countries/{countryId}/reactive"
|
|
8133
8133
|
.replace("{" + "countryId" + "}", encodeURIComponent(String(countryId)));
|
|
8134
8134
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
8135
8135
|
if (configuration) {
|
|
@@ -8520,12 +8520,12 @@ exports.CountriesApiFp = function (configuration) {
|
|
|
8520
8520
|
* @param {*} [options] Override http request option.
|
|
8521
8521
|
* @throws {RequiredError}
|
|
8522
8522
|
*/
|
|
8523
|
-
|
|
8523
|
+
apiV1CountriesCountryIdReactivePut: function (countryId, options) {
|
|
8524
8524
|
return __awaiter(this, void 0, void 0, function () {
|
|
8525
8525
|
var localVarAxiosArgs;
|
|
8526
8526
|
return __generator(this, function (_a) {
|
|
8527
8527
|
switch (_a.label) {
|
|
8528
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
8528
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1CountriesCountryIdReactivePut(countryId, options)];
|
|
8529
8529
|
case 1:
|
|
8530
8530
|
localVarAxiosArgs = _a.sent();
|
|
8531
8531
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -8712,8 +8712,8 @@ exports.CountriesApiFactory = function (configuration, basePath, axios) {
|
|
|
8712
8712
|
* @param {*} [options] Override http request option.
|
|
8713
8713
|
* @throws {RequiredError}
|
|
8714
8714
|
*/
|
|
8715
|
-
|
|
8716
|
-
return localVarFp.
|
|
8715
|
+
apiV1CountriesCountryIdReactivePut: function (countryId, options) {
|
|
8716
|
+
return localVarFp.apiV1CountriesCountryIdReactivePut(countryId, options).then(function (request) { return request(axios, basePath); });
|
|
8717
8717
|
},
|
|
8718
8718
|
/**
|
|
8719
8719
|
*
|
|
@@ -8885,9 +8885,9 @@ var CountriesApi = /** @class */ (function (_super) {
|
|
|
8885
8885
|
* @throws {RequiredError}
|
|
8886
8886
|
* @memberof CountriesApi
|
|
8887
8887
|
*/
|
|
8888
|
-
CountriesApi.prototype.
|
|
8888
|
+
CountriesApi.prototype.apiV1CountriesCountryIdReactivePut = function (countryId, options) {
|
|
8889
8889
|
var _this = this;
|
|
8890
|
-
return exports.CountriesApiFp(this.configuration).
|
|
8890
|
+
return exports.CountriesApiFp(this.configuration).apiV1CountriesCountryIdReactivePut(countryId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
8891
8891
|
};
|
|
8892
8892
|
/**
|
|
8893
8893
|
*
|
|
@@ -17453,6 +17453,53 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
17453
17453
|
});
|
|
17454
17454
|
});
|
|
17455
17455
|
},
|
|
17456
|
+
/**
|
|
17457
|
+
*
|
|
17458
|
+
* @summary Reactivate HospitalEquipment.
|
|
17459
|
+
* @param {string} hospitalId
|
|
17460
|
+
* @param {string} equipmentId
|
|
17461
|
+
* @param {*} [options] Override http request option.
|
|
17462
|
+
* @throws {RequiredError}
|
|
17463
|
+
*/
|
|
17464
|
+
apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut: function (hospitalId, equipmentId, options) {
|
|
17465
|
+
if (options === void 0) { options = {}; }
|
|
17466
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
17467
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
17468
|
+
return __generator(this, function (_a) {
|
|
17469
|
+
switch (_a.label) {
|
|
17470
|
+
case 0:
|
|
17471
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
17472
|
+
common_1.assertParamExists('apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut', 'hospitalId', hospitalId);
|
|
17473
|
+
// verify required parameter 'equipmentId' is not null or undefined
|
|
17474
|
+
common_1.assertParamExists('apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut', 'equipmentId', equipmentId);
|
|
17475
|
+
localVarPath = "/api/v1/hospitals/{hospitalId}/equipments/{equipmentId}/reactive"
|
|
17476
|
+
.replace("{" + "hospitalId" + "}", encodeURIComponent(String(hospitalId)))
|
|
17477
|
+
.replace("{" + "equipmentId" + "}", encodeURIComponent(String(equipmentId)));
|
|
17478
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
17479
|
+
if (configuration) {
|
|
17480
|
+
baseOptions = configuration.baseOptions;
|
|
17481
|
+
}
|
|
17482
|
+
localVarRequestOptions = __assign(__assign({ method: 'PUT' }, baseOptions), options);
|
|
17483
|
+
localVarHeaderParameter = {};
|
|
17484
|
+
localVarQueryParameter = {};
|
|
17485
|
+
// authentication oauth2 required
|
|
17486
|
+
// oauth required
|
|
17487
|
+
return [4 /*yield*/, common_1.setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
|
|
17488
|
+
case 1:
|
|
17489
|
+
// authentication oauth2 required
|
|
17490
|
+
// oauth required
|
|
17491
|
+
_a.sent();
|
|
17492
|
+
common_1.setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
17493
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
17494
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
17495
|
+
return [2 /*return*/, {
|
|
17496
|
+
url: common_1.toPathString(localVarUrlObj),
|
|
17497
|
+
options: localVarRequestOptions,
|
|
17498
|
+
}];
|
|
17499
|
+
}
|
|
17500
|
+
});
|
|
17501
|
+
});
|
|
17502
|
+
},
|
|
17456
17503
|
/**
|
|
17457
17504
|
*
|
|
17458
17505
|
* @summary Get all HospitalEquipments.
|
|
@@ -19582,6 +19629,27 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
19582
19629
|
});
|
|
19583
19630
|
});
|
|
19584
19631
|
},
|
|
19632
|
+
/**
|
|
19633
|
+
*
|
|
19634
|
+
* @summary Reactivate HospitalEquipment.
|
|
19635
|
+
* @param {string} hospitalId
|
|
19636
|
+
* @param {string} equipmentId
|
|
19637
|
+
* @param {*} [options] Override http request option.
|
|
19638
|
+
* @throws {RequiredError}
|
|
19639
|
+
*/
|
|
19640
|
+
apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut: function (hospitalId, equipmentId, options) {
|
|
19641
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
19642
|
+
var localVarAxiosArgs;
|
|
19643
|
+
return __generator(this, function (_a) {
|
|
19644
|
+
switch (_a.label) {
|
|
19645
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut(hospitalId, equipmentId, options)];
|
|
19646
|
+
case 1:
|
|
19647
|
+
localVarAxiosArgs = _a.sent();
|
|
19648
|
+
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
19649
|
+
}
|
|
19650
|
+
});
|
|
19651
|
+
});
|
|
19652
|
+
},
|
|
19585
19653
|
/**
|
|
19586
19654
|
*
|
|
19587
19655
|
* @summary Get all HospitalEquipments.
|
|
@@ -20506,6 +20574,17 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
20506
20574
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut: function (hospitalId, equipmentId, updateHospitalEquipmentCommand, options) {
|
|
20507
20575
|
return localVarFp.apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId, equipmentId, updateHospitalEquipmentCommand, options).then(function (request) { return request(axios, basePath); });
|
|
20508
20576
|
},
|
|
20577
|
+
/**
|
|
20578
|
+
*
|
|
20579
|
+
* @summary Reactivate HospitalEquipment.
|
|
20580
|
+
* @param {string} hospitalId
|
|
20581
|
+
* @param {string} equipmentId
|
|
20582
|
+
* @param {*} [options] Override http request option.
|
|
20583
|
+
* @throws {RequiredError}
|
|
20584
|
+
*/
|
|
20585
|
+
apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut: function (hospitalId, equipmentId, options) {
|
|
20586
|
+
return localVarFp.apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut(hospitalId, equipmentId, options).then(function (request) { return request(axios, basePath); });
|
|
20587
|
+
},
|
|
20509
20588
|
/**
|
|
20510
20589
|
*
|
|
20511
20590
|
* @summary Get all HospitalEquipments.
|
|
@@ -21152,6 +21231,19 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
21152
21231
|
var _this = this;
|
|
21153
21232
|
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId, equipmentId, updateHospitalEquipmentCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
21154
21233
|
};
|
|
21234
|
+
/**
|
|
21235
|
+
*
|
|
21236
|
+
* @summary Reactivate HospitalEquipment.
|
|
21237
|
+
* @param {string} hospitalId
|
|
21238
|
+
* @param {string} equipmentId
|
|
21239
|
+
* @param {*} [options] Override http request option.
|
|
21240
|
+
* @throws {RequiredError}
|
|
21241
|
+
* @memberof HospitalsApi
|
|
21242
|
+
*/
|
|
21243
|
+
HospitalsApi.prototype.apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut = function (hospitalId, equipmentId, options) {
|
|
21244
|
+
var _this = this;
|
|
21245
|
+
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut(hospitalId, equipmentId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
21246
|
+
};
|
|
21155
21247
|
/**
|
|
21156
21248
|
*
|
|
21157
21249
|
* @summary Get all HospitalEquipments.
|
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -18497,10 +18497,10 @@ export const CountriesApiAxiosParamCreator = function (configuration?: Configura
|
|
|
18497
18497
|
* @param {*} [options] Override http request option.
|
|
18498
18498
|
* @throws {RequiredError}
|
|
18499
18499
|
*/
|
|
18500
|
-
|
|
18500
|
+
apiV1CountriesCountryIdReactivePut: async (countryId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
18501
18501
|
// verify required parameter 'countryId' is not null or undefined
|
|
18502
|
-
assertParamExists('
|
|
18503
|
-
const localVarPath = `/api/v1/countries/{countryId}/
|
|
18502
|
+
assertParamExists('apiV1CountriesCountryIdReactivePut', 'countryId', countryId)
|
|
18503
|
+
const localVarPath = `/api/v1/countries/{countryId}/reactive`
|
|
18504
18504
|
.replace(`{${"countryId"}}`, encodeURIComponent(String(countryId)));
|
|
18505
18505
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
18506
18506
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -18819,8 +18819,8 @@ export const CountriesApiFp = function(configuration?: Configuration) {
|
|
|
18819
18819
|
* @param {*} [options] Override http request option.
|
|
18820
18820
|
* @throws {RequiredError}
|
|
18821
18821
|
*/
|
|
18822
|
-
async
|
|
18823
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
18822
|
+
async apiV1CountriesCountryIdReactivePut(countryId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
18823
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1CountriesCountryIdReactivePut(countryId, options);
|
|
18824
18824
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
18825
18825
|
},
|
|
18826
18826
|
/**
|
|
@@ -18976,8 +18976,8 @@ export const CountriesApiFactory = function (configuration?: Configuration, base
|
|
|
18976
18976
|
* @param {*} [options] Override http request option.
|
|
18977
18977
|
* @throws {RequiredError}
|
|
18978
18978
|
*/
|
|
18979
|
-
|
|
18980
|
-
return localVarFp.
|
|
18979
|
+
apiV1CountriesCountryIdReactivePut(countryId: string, options?: any): AxiosPromise<boolean> {
|
|
18980
|
+
return localVarFp.apiV1CountriesCountryIdReactivePut(countryId, options).then((request) => request(axios, basePath));
|
|
18981
18981
|
},
|
|
18982
18982
|
/**
|
|
18983
18983
|
*
|
|
@@ -19146,8 +19146,8 @@ export class CountriesApi extends BaseAPI {
|
|
|
19146
19146
|
* @throws {RequiredError}
|
|
19147
19147
|
* @memberof CountriesApi
|
|
19148
19148
|
*/
|
|
19149
|
-
public
|
|
19150
|
-
return CountriesApiFp(this.configuration).
|
|
19149
|
+
public apiV1CountriesCountryIdReactivePut(countryId: string, options?: AxiosRequestConfig) {
|
|
19150
|
+
return CountriesApiFp(this.configuration).apiV1CountriesCountryIdReactivePut(countryId, options).then((request) => request(this.axios, this.basePath));
|
|
19151
19151
|
}
|
|
19152
19152
|
|
|
19153
19153
|
/**
|
|
@@ -26757,6 +26757,48 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
26757
26757
|
options: localVarRequestOptions,
|
|
26758
26758
|
};
|
|
26759
26759
|
},
|
|
26760
|
+
/**
|
|
26761
|
+
*
|
|
26762
|
+
* @summary Reactivate HospitalEquipment.
|
|
26763
|
+
* @param {string} hospitalId
|
|
26764
|
+
* @param {string} equipmentId
|
|
26765
|
+
* @param {*} [options] Override http request option.
|
|
26766
|
+
* @throws {RequiredError}
|
|
26767
|
+
*/
|
|
26768
|
+
apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut: async (hospitalId: string, equipmentId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
26769
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
26770
|
+
assertParamExists('apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut', 'hospitalId', hospitalId)
|
|
26771
|
+
// verify required parameter 'equipmentId' is not null or undefined
|
|
26772
|
+
assertParamExists('apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut', 'equipmentId', equipmentId)
|
|
26773
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/equipments/{equipmentId}/reactive`
|
|
26774
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
26775
|
+
.replace(`{${"equipmentId"}}`, encodeURIComponent(String(equipmentId)));
|
|
26776
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
26777
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
26778
|
+
let baseOptions;
|
|
26779
|
+
if (configuration) {
|
|
26780
|
+
baseOptions = configuration.baseOptions;
|
|
26781
|
+
}
|
|
26782
|
+
|
|
26783
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
26784
|
+
const localVarHeaderParameter = {} as any;
|
|
26785
|
+
const localVarQueryParameter = {} as any;
|
|
26786
|
+
|
|
26787
|
+
// authentication oauth2 required
|
|
26788
|
+
// oauth required
|
|
26789
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
26790
|
+
|
|
26791
|
+
|
|
26792
|
+
|
|
26793
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
26794
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
26795
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
26796
|
+
|
|
26797
|
+
return {
|
|
26798
|
+
url: toPathString(localVarUrlObj),
|
|
26799
|
+
options: localVarRequestOptions,
|
|
26800
|
+
};
|
|
26801
|
+
},
|
|
26760
26802
|
/**
|
|
26761
26803
|
*
|
|
26762
26804
|
* @summary Get all HospitalEquipments.
|
|
@@ -28693,6 +28735,18 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
28693
28735
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId, equipmentId, updateHospitalEquipmentCommand, options);
|
|
28694
28736
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
28695
28737
|
},
|
|
28738
|
+
/**
|
|
28739
|
+
*
|
|
28740
|
+
* @summary Reactivate HospitalEquipment.
|
|
28741
|
+
* @param {string} hospitalId
|
|
28742
|
+
* @param {string} equipmentId
|
|
28743
|
+
* @param {*} [options] Override http request option.
|
|
28744
|
+
* @throws {RequiredError}
|
|
28745
|
+
*/
|
|
28746
|
+
async apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut(hospitalId: string, equipmentId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
28747
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut(hospitalId, equipmentId, options);
|
|
28748
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
28749
|
+
},
|
|
28696
28750
|
/**
|
|
28697
28751
|
*
|
|
28698
28752
|
* @summary Get all HospitalEquipments.
|
|
@@ -29339,6 +29393,17 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
29339
29393
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand, options?: any): AxiosPromise<HospitalEquipmentModel> {
|
|
29340
29394
|
return localVarFp.apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId, equipmentId, updateHospitalEquipmentCommand, options).then((request) => request(axios, basePath));
|
|
29341
29395
|
},
|
|
29396
|
+
/**
|
|
29397
|
+
*
|
|
29398
|
+
* @summary Reactivate HospitalEquipment.
|
|
29399
|
+
* @param {string} hospitalId
|
|
29400
|
+
* @param {string} equipmentId
|
|
29401
|
+
* @param {*} [options] Override http request option.
|
|
29402
|
+
* @throws {RequiredError}
|
|
29403
|
+
*/
|
|
29404
|
+
apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut(hospitalId: string, equipmentId: string, options?: any): AxiosPromise<boolean> {
|
|
29405
|
+
return localVarFp.apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut(hospitalId, equipmentId, options).then((request) => request(axios, basePath));
|
|
29406
|
+
},
|
|
29342
29407
|
/**
|
|
29343
29408
|
*
|
|
29344
29409
|
* @summary Get all HospitalEquipments.
|
|
@@ -29982,6 +30047,19 @@ export class HospitalsApi extends BaseAPI {
|
|
|
29982
30047
|
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId, equipmentId, updateHospitalEquipmentCommand, options).then((request) => request(this.axios, this.basePath));
|
|
29983
30048
|
}
|
|
29984
30049
|
|
|
30050
|
+
/**
|
|
30051
|
+
*
|
|
30052
|
+
* @summary Reactivate HospitalEquipment.
|
|
30053
|
+
* @param {string} hospitalId
|
|
30054
|
+
* @param {string} equipmentId
|
|
30055
|
+
* @param {*} [options] Override http request option.
|
|
30056
|
+
* @throws {RequiredError}
|
|
30057
|
+
* @memberof HospitalsApi
|
|
30058
|
+
*/
|
|
30059
|
+
public apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut(hospitalId: string, equipmentId: string, options?: AxiosRequestConfig) {
|
|
30060
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut(hospitalId, equipmentId, options).then((request) => request(this.axios, this.basePath));
|
|
30061
|
+
}
|
|
30062
|
+
|
|
29985
30063
|
/**
|
|
29986
30064
|
*
|
|
29987
30065
|
* @summary Get all HospitalEquipments.
|