ch-admin-api-client-typescript 5.13.5 → 5.14.0
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/about-us-api.d.ts +56 -0
- package/lib/api/about-us-api.d.ts.map +1 -1
- package/lib/api/about-us-api.js +90 -0
- package/lib/api/countries-api.d.ts +9 -9
- package/lib/api/countries-api.d.ts.map +1 -1
- package/lib/api/countries-api.js +10 -10
- package/lib/api/curations-api.d.ts +448 -0
- package/lib/api/curations-api.d.ts.map +1 -0
- package/lib/api/curations-api.js +785 -0
- package/lib/api/deals-api.d.ts +56 -0
- package/lib/api/deals-api.d.ts.map +1 -1
- package/lib/api/deals-api.js +90 -0
- package/lib/api/doctor-affiliations-api.d.ts +9 -9
- package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
- package/lib/api/doctor-affiliations-api.js +10 -10
- package/lib/api/doctors-api.d.ts +9 -9
- package/lib/api/doctors-api.d.ts.map +1 -1
- package/lib/api/doctors-api.js +10 -10
- package/lib/api/hospitals-api.d.ts +114 -49
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +150 -54
- package/lib/api/patients-api.d.ts +10 -10
- package/lib/api/patients-api.d.ts.map +1 -1
- package/lib/api/patients-api.js +11 -11
- package/lib/api/specialties-api.d.ts +9 -9
- package/lib/api/specialties-api.d.ts.map +1 -1
- package/lib/api/specialties-api.js +10 -10
- package/lib/api/specialty-types-api.d.ts +9 -9
- package/lib/api/specialty-types-api.d.ts.map +1 -1
- package/lib/api/specialty-types-api.js +10 -10
- package/lib/api.d.ts +1 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -0
- package/lib/models/create-curation-command.d.ts +103 -0
- package/lib/models/create-curation-command.d.ts.map +1 -0
- package/lib/models/create-curation-command.js +15 -0
- package/lib/models/curation-model.d.ts +104 -0
- package/lib/models/curation-model.d.ts.map +1 -0
- package/lib/models/curation-model.js +15 -0
- package/lib/models/curations-model.d.ts +33 -0
- package/lib/models/curations-model.d.ts.map +1 -0
- package/lib/models/curations-model.js +15 -0
- package/lib/models/index.d.ts +7 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +7 -0
- package/lib/models/specialty-type-item-model.d.ts +0 -6
- package/lib/models/specialty-type-item-model.d.ts.map +1 -1
- package/lib/models/specialty-type-model.d.ts +0 -6
- package/lib/models/specialty-type-model.d.ts.map +1 -1
- package/lib/models/translate-about-us-page-command.d.ts +44 -0
- package/lib/models/translate-about-us-page-command.d.ts.map +1 -0
- package/lib/models/translate-about-us-page-command.js +15 -0
- package/lib/models/translate-deal-command.d.ts +44 -0
- package/lib/models/translate-deal-command.d.ts.map +1 -0
- package/lib/models/translate-deal-command.js +15 -0
- package/lib/models/translate-landing-command.d.ts +44 -0
- package/lib/models/translate-landing-command.d.ts.map +1 -0
- package/lib/models/translate-landing-command.js +15 -0
- package/lib/models/update-curation-command.d.ts +91 -0
- package/lib/models/update-curation-command.d.ts.map +1 -0
- package/lib/models/update-curation-command.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +8 -0
- package/src/api/about-us-api.ts +100 -0
- package/src/api/countries-api.ts +14 -14
- package/src/api/curations-api.ts +795 -0
- package/src/api/deals-api.ts +100 -0
- package/src/api/doctor-affiliations-api.ts +14 -14
- package/src/api/doctors-api.ts +14 -14
- package/src/api/hospitals-api.ts +191 -78
- package/src/api/patients-api.ts +16 -16
- package/src/api/specialties-api.ts +14 -14
- package/src/api/specialty-types-api.ts +14 -14
- package/src/api.ts +1 -0
- package/src/models/create-curation-command.ts +108 -0
- package/src/models/curation-model.ts +111 -0
- package/src/models/curations-model.ts +42 -0
- package/src/models/index.ts +7 -0
- package/src/models/specialty-type-item-model.ts +0 -6
- package/src/models/specialty-type-model.ts +0 -6
- package/src/models/translate-about-us-page-command.ts +51 -0
- package/src/models/translate-deal-command.ts +51 -0
- package/src/models/translate-landing-command.ts +51 -0
- package/src/models/update-curation-command.ts +96 -0
package/src/api/hospitals-api.ts
CHANGED
|
@@ -169,6 +169,8 @@ import { TranslateHospitalServiceCommand } from '../models';
|
|
|
169
169
|
// @ts-ignore
|
|
170
170
|
import { TranslateHospitalSpecialtyCommand } from '../models';
|
|
171
171
|
// @ts-ignore
|
|
172
|
+
import { TranslateLandingCommand } from '../models';
|
|
173
|
+
// @ts-ignore
|
|
172
174
|
import { UpdateHospitalBankAccountInfoCommand } from '../models';
|
|
173
175
|
// @ts-ignore
|
|
174
176
|
import { UpdateHospitalCommand } from '../models';
|
|
@@ -1700,12 +1702,12 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
1700
1702
|
* @param {*} [options] Override http request option.
|
|
1701
1703
|
* @throws {RequiredError}
|
|
1702
1704
|
*/
|
|
1703
|
-
|
|
1705
|
+
apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut: async (hospitalId: string, equipmentId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1704
1706
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
1705
|
-
assertParamExists('
|
|
1707
|
+
assertParamExists('apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut', 'hospitalId', hospitalId)
|
|
1706
1708
|
// verify required parameter 'equipmentId' is not null or undefined
|
|
1707
|
-
assertParamExists('
|
|
1708
|
-
const localVarPath = `/api/v1/hospitals/{hospitalId}/equipments/{equipmentId}/
|
|
1709
|
+
assertParamExists('apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut', 'equipmentId', equipmentId)
|
|
1710
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/equipments/{equipmentId}/reactivate`
|
|
1709
1711
|
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
1710
1712
|
.replace(`{${"equipmentId"}}`, encodeURIComponent(String(equipmentId)));
|
|
1711
1713
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -2884,6 +2886,52 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2884
2886
|
options: localVarRequestOptions,
|
|
2885
2887
|
};
|
|
2886
2888
|
},
|
|
2889
|
+
/**
|
|
2890
|
+
*
|
|
2891
|
+
* @summary Translate landing
|
|
2892
|
+
* @param {string} hospitalId
|
|
2893
|
+
* @param {string} landingId
|
|
2894
|
+
* @param {TranslateLandingCommand} [translateLandingCommand]
|
|
2895
|
+
* @param {*} [options] Override http request option.
|
|
2896
|
+
* @throws {RequiredError}
|
|
2897
|
+
*/
|
|
2898
|
+
apiV1HospitalsHospitalIdLandingsLandingIdTranslatePost: async (hospitalId: string, landingId: string, translateLandingCommand?: TranslateLandingCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2899
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
2900
|
+
assertParamExists('apiV1HospitalsHospitalIdLandingsLandingIdTranslatePost', 'hospitalId', hospitalId)
|
|
2901
|
+
// verify required parameter 'landingId' is not null or undefined
|
|
2902
|
+
assertParamExists('apiV1HospitalsHospitalIdLandingsLandingIdTranslatePost', 'landingId', landingId)
|
|
2903
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/landings/{landingId}/translate`
|
|
2904
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
2905
|
+
.replace(`{${"landingId"}}`, encodeURIComponent(String(landingId)));
|
|
2906
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2907
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2908
|
+
let baseOptions;
|
|
2909
|
+
if (configuration) {
|
|
2910
|
+
baseOptions = configuration.baseOptions;
|
|
2911
|
+
}
|
|
2912
|
+
|
|
2913
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
2914
|
+
const localVarHeaderParameter = {} as any;
|
|
2915
|
+
const localVarQueryParameter = {} as any;
|
|
2916
|
+
|
|
2917
|
+
// authentication oauth2 required
|
|
2918
|
+
// oauth required
|
|
2919
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
2920
|
+
|
|
2921
|
+
|
|
2922
|
+
|
|
2923
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2924
|
+
|
|
2925
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2926
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2927
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2928
|
+
localVarRequestOptions.data = serializeDataIfNeeded(translateLandingCommand, localVarRequestOptions, configuration)
|
|
2929
|
+
|
|
2930
|
+
return {
|
|
2931
|
+
url: toPathString(localVarUrlObj),
|
|
2932
|
+
options: localVarRequestOptions,
|
|
2933
|
+
};
|
|
2934
|
+
},
|
|
2887
2935
|
/**
|
|
2888
2936
|
*
|
|
2889
2937
|
* @summary Create HospitalLandings.
|
|
@@ -3852,12 +3900,12 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
3852
3900
|
* @param {*} [options] Override http request option.
|
|
3853
3901
|
* @throws {RequiredError}
|
|
3854
3902
|
*/
|
|
3855
|
-
|
|
3903
|
+
apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut: async (hospitalId: string, policyId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3856
3904
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
3857
|
-
assertParamExists('
|
|
3905
|
+
assertParamExists('apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut', 'hospitalId', hospitalId)
|
|
3858
3906
|
// verify required parameter 'policyId' is not null or undefined
|
|
3859
|
-
assertParamExists('
|
|
3860
|
-
const localVarPath = `/api/v1/hospitals/{hospitalId}/policies/{policyId}/
|
|
3907
|
+
assertParamExists('apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut', 'policyId', policyId)
|
|
3908
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/policies/{policyId}/reactivate`
|
|
3861
3909
|
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
3862
3910
|
.replace(`{${"policyId"}}`, encodeURIComponent(String(policyId)));
|
|
3863
3911
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -3977,10 +4025,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
3977
4025
|
* @param {*} [options] Override http request option.
|
|
3978
4026
|
* @throws {RequiredError}
|
|
3979
4027
|
*/
|
|
3980
|
-
|
|
4028
|
+
apiV1HospitalsHospitalIdReactivatePut: async (hospitalId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3981
4029
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
3982
|
-
assertParamExists('
|
|
3983
|
-
const localVarPath = `/api/v1/hospitals/{hospitalId}/
|
|
4030
|
+
assertParamExists('apiV1HospitalsHospitalIdReactivatePut', 'hospitalId', hospitalId)
|
|
4031
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/reactivate`
|
|
3984
4032
|
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
|
|
3985
4033
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3986
4034
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -6524,14 +6572,14 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
6524
6572
|
* @param {*} [options] Override http request option.
|
|
6525
6573
|
* @throws {RequiredError}
|
|
6526
6574
|
*/
|
|
6527
|
-
|
|
6575
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut: async (hospitalId: string, specialtyId: string, serviceId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
6528
6576
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
6529
|
-
assertParamExists('
|
|
6577
|
+
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut', 'hospitalId', hospitalId)
|
|
6530
6578
|
// verify required parameter 'specialtyId' is not null or undefined
|
|
6531
|
-
assertParamExists('
|
|
6579
|
+
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut', 'specialtyId', specialtyId)
|
|
6532
6580
|
// verify required parameter 'serviceId' is not null or undefined
|
|
6533
|
-
assertParamExists('
|
|
6534
|
-
const localVarPath = `/api/v1/hospitals/{hospitalId}/specialties/{specialtyId}/services/{serviceId}/
|
|
6581
|
+
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut', 'serviceId', serviceId)
|
|
6582
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/specialties/{specialtyId}/services/{serviceId}/reactivate`
|
|
6535
6583
|
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
6536
6584
|
.replace(`{${"specialtyId"}}`, encodeURIComponent(String(specialtyId)))
|
|
6537
6585
|
.replace(`{${"serviceId"}}`, encodeURIComponent(String(serviceId)));
|
|
@@ -7153,10 +7201,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
7153
7201
|
* @param {*} [options] Override http request option.
|
|
7154
7202
|
* @throws {RequiredError}
|
|
7155
7203
|
*/
|
|
7156
|
-
|
|
7204
|
+
apiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePut: async (hospitalSpecialtyId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
7157
7205
|
// verify required parameter 'hospitalSpecialtyId' is not null or undefined
|
|
7158
|
-
assertParamExists('
|
|
7159
|
-
const localVarPath = `/api/v1/hospitals/{hospitalSpecialtyId}/specialties/
|
|
7206
|
+
assertParamExists('apiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePut', 'hospitalSpecialtyId', hospitalSpecialtyId)
|
|
7207
|
+
const localVarPath = `/api/v1/hospitals/{hospitalSpecialtyId}/specialties/reactivate`
|
|
7160
7208
|
.replace(`{${"hospitalSpecialtyId"}}`, encodeURIComponent(String(hospitalSpecialtyId)));
|
|
7161
7209
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7162
7210
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -7799,8 +7847,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
7799
7847
|
* @param {*} [options] Override http request option.
|
|
7800
7848
|
* @throws {RequiredError}
|
|
7801
7849
|
*/
|
|
7802
|
-
async
|
|
7803
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
7850
|
+
async apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut(hospitalId: string, equipmentId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
7851
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut(hospitalId, equipmentId, options);
|
|
7804
7852
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
7805
7853
|
},
|
|
7806
7854
|
/**
|
|
@@ -8114,6 +8162,19 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
8114
8162
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdLandingsLandingIdRevalidatePost(hospitalId, landingId, includeCurrent, options);
|
|
8115
8163
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8116
8164
|
},
|
|
8165
|
+
/**
|
|
8166
|
+
*
|
|
8167
|
+
* @summary Translate landing
|
|
8168
|
+
* @param {string} hospitalId
|
|
8169
|
+
* @param {string} landingId
|
|
8170
|
+
* @param {TranslateLandingCommand} [translateLandingCommand]
|
|
8171
|
+
* @param {*} [options] Override http request option.
|
|
8172
|
+
* @throws {RequiredError}
|
|
8173
|
+
*/
|
|
8174
|
+
async apiV1HospitalsHospitalIdLandingsLandingIdTranslatePost(hospitalId: string, landingId: string, translateLandingCommand?: TranslateLandingCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
8175
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdLandingsLandingIdTranslatePost(hospitalId, landingId, translateLandingCommand, options);
|
|
8176
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8177
|
+
},
|
|
8117
8178
|
/**
|
|
8118
8179
|
*
|
|
8119
8180
|
* @summary Create HospitalLandings.
|
|
@@ -8380,8 +8441,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
8380
8441
|
* @param {*} [options] Override http request option.
|
|
8381
8442
|
* @throws {RequiredError}
|
|
8382
8443
|
*/
|
|
8383
|
-
async
|
|
8384
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
8444
|
+
async apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut(hospitalId: string, policyId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
8445
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut(hospitalId, policyId, options);
|
|
8385
8446
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8386
8447
|
},
|
|
8387
8448
|
/**
|
|
@@ -8415,8 +8476,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
8415
8476
|
* @param {*} [options] Override http request option.
|
|
8416
8477
|
* @throws {RequiredError}
|
|
8417
8478
|
*/
|
|
8418
|
-
async
|
|
8419
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
8479
|
+
async apiV1HospitalsHospitalIdReactivatePut(hospitalId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
8480
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdReactivatePut(hospitalId, options);
|
|
8420
8481
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8421
8482
|
},
|
|
8422
8483
|
/**
|
|
@@ -9091,8 +9152,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
9091
9152
|
* @param {*} [options] Override http request option.
|
|
9092
9153
|
* @throws {RequiredError}
|
|
9093
9154
|
*/
|
|
9094
|
-
async
|
|
9095
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
9155
|
+
async apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
9156
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut(hospitalId, specialtyId, serviceId, options);
|
|
9096
9157
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
9097
9158
|
},
|
|
9098
9159
|
/**
|
|
@@ -9261,8 +9322,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
9261
9322
|
* @param {*} [options] Override http request option.
|
|
9262
9323
|
* @throws {RequiredError}
|
|
9263
9324
|
*/
|
|
9264
|
-
async
|
|
9265
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
9325
|
+
async apiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePut(hospitalSpecialtyId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
9326
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePut(hospitalSpecialtyId, options);
|
|
9266
9327
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
9267
9328
|
},
|
|
9268
9329
|
/**
|
|
@@ -9701,8 +9762,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
9701
9762
|
* @param {*} [options] Override http request option.
|
|
9702
9763
|
* @throws {RequiredError}
|
|
9703
9764
|
*/
|
|
9704
|
-
|
|
9705
|
-
return localVarFp.
|
|
9765
|
+
apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut(hospitalId: string, equipmentId: string, options?: any): AxiosPromise<boolean> {
|
|
9766
|
+
return localVarFp.apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut(hospitalId, equipmentId, options).then((request) => request(axios, basePath));
|
|
9706
9767
|
},
|
|
9707
9768
|
/**
|
|
9708
9769
|
*
|
|
@@ -9992,6 +10053,18 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
9992
10053
|
apiV1HospitalsHospitalIdLandingsLandingIdRevalidatePost(hospitalId: string, landingId: string, includeCurrent?: boolean, options?: any): AxiosPromise<boolean> {
|
|
9993
10054
|
return localVarFp.apiV1HospitalsHospitalIdLandingsLandingIdRevalidatePost(hospitalId, landingId, includeCurrent, options).then((request) => request(axios, basePath));
|
|
9994
10055
|
},
|
|
10056
|
+
/**
|
|
10057
|
+
*
|
|
10058
|
+
* @summary Translate landing
|
|
10059
|
+
* @param {string} hospitalId
|
|
10060
|
+
* @param {string} landingId
|
|
10061
|
+
* @param {TranslateLandingCommand} [translateLandingCommand]
|
|
10062
|
+
* @param {*} [options] Override http request option.
|
|
10063
|
+
* @throws {RequiredError}
|
|
10064
|
+
*/
|
|
10065
|
+
apiV1HospitalsHospitalIdLandingsLandingIdTranslatePost(hospitalId: string, landingId: string, translateLandingCommand?: TranslateLandingCommand, options?: any): AxiosPromise<boolean> {
|
|
10066
|
+
return localVarFp.apiV1HospitalsHospitalIdLandingsLandingIdTranslatePost(hospitalId, landingId, translateLandingCommand, options).then((request) => request(axios, basePath));
|
|
10067
|
+
},
|
|
9995
10068
|
/**
|
|
9996
10069
|
*
|
|
9997
10070
|
* @summary Create HospitalLandings.
|
|
@@ -10239,8 +10312,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
10239
10312
|
* @param {*} [options] Override http request option.
|
|
10240
10313
|
* @throws {RequiredError}
|
|
10241
10314
|
*/
|
|
10242
|
-
|
|
10243
|
-
return localVarFp.
|
|
10315
|
+
apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut(hospitalId: string, policyId: string, options?: any): AxiosPromise<boolean> {
|
|
10316
|
+
return localVarFp.apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut(hospitalId, policyId, options).then((request) => request(axios, basePath));
|
|
10244
10317
|
},
|
|
10245
10318
|
/**
|
|
10246
10319
|
*
|
|
@@ -10271,8 +10344,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
10271
10344
|
* @param {*} [options] Override http request option.
|
|
10272
10345
|
* @throws {RequiredError}
|
|
10273
10346
|
*/
|
|
10274
|
-
|
|
10275
|
-
return localVarFp.
|
|
10347
|
+
apiV1HospitalsHospitalIdReactivatePut(hospitalId: string, options?: any): AxiosPromise<boolean> {
|
|
10348
|
+
return localVarFp.apiV1HospitalsHospitalIdReactivatePut(hospitalId, options).then((request) => request(axios, basePath));
|
|
10276
10349
|
},
|
|
10277
10350
|
/**
|
|
10278
10351
|
*
|
|
@@ -10901,8 +10974,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
10901
10974
|
* @param {*} [options] Override http request option.
|
|
10902
10975
|
* @throws {RequiredError}
|
|
10903
10976
|
*/
|
|
10904
|
-
|
|
10905
|
-
return localVarFp.
|
|
10977
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut(hospitalId: string, specialtyId: string, serviceId: string, options?: any): AxiosPromise<boolean> {
|
|
10978
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut(hospitalId, specialtyId, serviceId, options).then((request) => request(axios, basePath));
|
|
10906
10979
|
},
|
|
10907
10980
|
/**
|
|
10908
10981
|
*
|
|
@@ -11058,8 +11131,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
11058
11131
|
* @param {*} [options] Override http request option.
|
|
11059
11132
|
* @throws {RequiredError}
|
|
11060
11133
|
*/
|
|
11061
|
-
|
|
11062
|
-
return localVarFp.
|
|
11134
|
+
apiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePut(hospitalSpecialtyId: string, options?: any): AxiosPromise<boolean> {
|
|
11135
|
+
return localVarFp.apiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePut(hospitalSpecialtyId, options).then((request) => request(axios, basePath));
|
|
11063
11136
|
},
|
|
11064
11137
|
/**
|
|
11065
11138
|
*
|
|
@@ -12070,22 +12143,22 @@ export interface HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdPutReq
|
|
|
12070
12143
|
}
|
|
12071
12144
|
|
|
12072
12145
|
/**
|
|
12073
|
-
* Request parameters for
|
|
12146
|
+
* Request parameters for apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut operation in HospitalsApi.
|
|
12074
12147
|
* @export
|
|
12075
|
-
* @interface
|
|
12148
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePutRequest
|
|
12076
12149
|
*/
|
|
12077
|
-
export interface
|
|
12150
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePutRequest {
|
|
12078
12151
|
/**
|
|
12079
12152
|
*
|
|
12080
12153
|
* @type {string}
|
|
12081
|
-
* @memberof
|
|
12154
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut
|
|
12082
12155
|
*/
|
|
12083
12156
|
readonly hospitalId: string
|
|
12084
12157
|
|
|
12085
12158
|
/**
|
|
12086
12159
|
*
|
|
12087
12160
|
* @type {string}
|
|
12088
|
-
* @memberof
|
|
12161
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut
|
|
12089
12162
|
*/
|
|
12090
12163
|
readonly equipmentId: string
|
|
12091
12164
|
}
|
|
@@ -12818,6 +12891,34 @@ export interface HospitalsApiApiV1HospitalsHospitalIdLandingsLandingIdRevalidate
|
|
|
12818
12891
|
readonly includeCurrent?: boolean
|
|
12819
12892
|
}
|
|
12820
12893
|
|
|
12894
|
+
/**
|
|
12895
|
+
* Request parameters for apiV1HospitalsHospitalIdLandingsLandingIdTranslatePost operation in HospitalsApi.
|
|
12896
|
+
* @export
|
|
12897
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdLandingsLandingIdTranslatePostRequest
|
|
12898
|
+
*/
|
|
12899
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdLandingsLandingIdTranslatePostRequest {
|
|
12900
|
+
/**
|
|
12901
|
+
*
|
|
12902
|
+
* @type {string}
|
|
12903
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdLandingsLandingIdTranslatePost
|
|
12904
|
+
*/
|
|
12905
|
+
readonly hospitalId: string
|
|
12906
|
+
|
|
12907
|
+
/**
|
|
12908
|
+
*
|
|
12909
|
+
* @type {string}
|
|
12910
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdLandingsLandingIdTranslatePost
|
|
12911
|
+
*/
|
|
12912
|
+
readonly landingId: string
|
|
12913
|
+
|
|
12914
|
+
/**
|
|
12915
|
+
*
|
|
12916
|
+
* @type {TranslateLandingCommand}
|
|
12917
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdLandingsLandingIdTranslatePost
|
|
12918
|
+
*/
|
|
12919
|
+
readonly translateLandingCommand?: TranslateLandingCommand
|
|
12920
|
+
}
|
|
12921
|
+
|
|
12821
12922
|
/**
|
|
12822
12923
|
* Request parameters for apiV1HospitalsHospitalIdLandingsPost operation in HospitalsApi.
|
|
12823
12924
|
* @export
|
|
@@ -13428,22 +13529,22 @@ export interface HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdPutRequest
|
|
|
13428
13529
|
}
|
|
13429
13530
|
|
|
13430
13531
|
/**
|
|
13431
|
-
* Request parameters for
|
|
13532
|
+
* Request parameters for apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut operation in HospitalsApi.
|
|
13432
13533
|
* @export
|
|
13433
|
-
* @interface
|
|
13534
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePutRequest
|
|
13434
13535
|
*/
|
|
13435
|
-
export interface
|
|
13536
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePutRequest {
|
|
13436
13537
|
/**
|
|
13437
13538
|
*
|
|
13438
13539
|
* @type {string}
|
|
13439
|
-
* @memberof
|
|
13540
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut
|
|
13440
13541
|
*/
|
|
13441
13542
|
readonly hospitalId: string
|
|
13442
13543
|
|
|
13443
13544
|
/**
|
|
13444
13545
|
*
|
|
13445
13546
|
* @type {string}
|
|
13446
|
-
* @memberof
|
|
13547
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut
|
|
13447
13548
|
*/
|
|
13448
13549
|
readonly policyId: string
|
|
13449
13550
|
}
|
|
@@ -13491,15 +13592,15 @@ export interface HospitalsApiApiV1HospitalsHospitalIdPutRequest {
|
|
|
13491
13592
|
}
|
|
13492
13593
|
|
|
13493
13594
|
/**
|
|
13494
|
-
* Request parameters for
|
|
13595
|
+
* Request parameters for apiV1HospitalsHospitalIdReactivatePut operation in HospitalsApi.
|
|
13495
13596
|
* @export
|
|
13496
|
-
* @interface
|
|
13597
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdReactivatePutRequest
|
|
13497
13598
|
*/
|
|
13498
|
-
export interface
|
|
13599
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdReactivatePutRequest {
|
|
13499
13600
|
/**
|
|
13500
13601
|
*
|
|
13501
13602
|
* @type {string}
|
|
13502
|
-
* @memberof
|
|
13603
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdReactivatePut
|
|
13503
13604
|
*/
|
|
13504
13605
|
readonly hospitalId: string
|
|
13505
13606
|
}
|
|
@@ -15311,29 +15412,29 @@ export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServi
|
|
|
15311
15412
|
}
|
|
15312
15413
|
|
|
15313
15414
|
/**
|
|
15314
|
-
* Request parameters for
|
|
15415
|
+
* Request parameters for apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut operation in HospitalsApi.
|
|
15315
15416
|
* @export
|
|
15316
|
-
* @interface
|
|
15417
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePutRequest
|
|
15317
15418
|
*/
|
|
15318
|
-
export interface
|
|
15419
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePutRequest {
|
|
15319
15420
|
/**
|
|
15320
15421
|
*
|
|
15321
15422
|
* @type {string}
|
|
15322
|
-
* @memberof
|
|
15423
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut
|
|
15323
15424
|
*/
|
|
15324
15425
|
readonly hospitalId: string
|
|
15325
15426
|
|
|
15326
15427
|
/**
|
|
15327
15428
|
*
|
|
15328
15429
|
* @type {string}
|
|
15329
|
-
* @memberof
|
|
15430
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut
|
|
15330
15431
|
*/
|
|
15331
15432
|
readonly specialtyId: string
|
|
15332
15433
|
|
|
15333
15434
|
/**
|
|
15334
15435
|
*
|
|
15335
15436
|
* @type {string}
|
|
15336
|
-
* @memberof
|
|
15437
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut
|
|
15337
15438
|
*/
|
|
15338
15439
|
readonly serviceId: string
|
|
15339
15440
|
}
|
|
@@ -15696,15 +15797,15 @@ export interface HospitalsApiApiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPutR
|
|
|
15696
15797
|
}
|
|
15697
15798
|
|
|
15698
15799
|
/**
|
|
15699
|
-
* Request parameters for
|
|
15800
|
+
* Request parameters for apiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePut operation in HospitalsApi.
|
|
15700
15801
|
* @export
|
|
15701
|
-
* @interface
|
|
15802
|
+
* @interface HospitalsApiApiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePutRequest
|
|
15702
15803
|
*/
|
|
15703
|
-
export interface
|
|
15804
|
+
export interface HospitalsApiApiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePutRequest {
|
|
15704
15805
|
/**
|
|
15705
15806
|
*
|
|
15706
15807
|
* @type {string}
|
|
15707
|
-
* @memberof
|
|
15808
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePut
|
|
15708
15809
|
*/
|
|
15709
15810
|
readonly hospitalSpecialtyId: string
|
|
15710
15811
|
}
|
|
@@ -16221,13 +16322,13 @@ export class HospitalsApi extends BaseAPI {
|
|
|
16221
16322
|
/**
|
|
16222
16323
|
*
|
|
16223
16324
|
* @summary Reactivate HospitalEquipment.
|
|
16224
|
-
* @param {
|
|
16325
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePutRequest} requestParameters Request parameters.
|
|
16225
16326
|
* @param {*} [options] Override http request option.
|
|
16226
16327
|
* @throws {RequiredError}
|
|
16227
16328
|
* @memberof HospitalsApi
|
|
16228
16329
|
*/
|
|
16229
|
-
public
|
|
16230
|
-
return HospitalsApiFp(this.configuration).
|
|
16330
|
+
public apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePutRequest, options?: AxiosRequestConfig) {
|
|
16331
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut(requestParameters.hospitalId, requestParameters.equipmentId, options).then((request) => request(this.axios, this.basePath));
|
|
16231
16332
|
}
|
|
16232
16333
|
|
|
16233
16334
|
/**
|
|
@@ -16506,6 +16607,18 @@ export class HospitalsApi extends BaseAPI {
|
|
|
16506
16607
|
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdLandingsLandingIdRevalidatePost(requestParameters.hospitalId, requestParameters.landingId, requestParameters.includeCurrent, options).then((request) => request(this.axios, this.basePath));
|
|
16507
16608
|
}
|
|
16508
16609
|
|
|
16610
|
+
/**
|
|
16611
|
+
*
|
|
16612
|
+
* @summary Translate landing
|
|
16613
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdLandingsLandingIdTranslatePostRequest} requestParameters Request parameters.
|
|
16614
|
+
* @param {*} [options] Override http request option.
|
|
16615
|
+
* @throws {RequiredError}
|
|
16616
|
+
* @memberof HospitalsApi
|
|
16617
|
+
*/
|
|
16618
|
+
public apiV1HospitalsHospitalIdLandingsLandingIdTranslatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdLandingsLandingIdTranslatePostRequest, options?: AxiosRequestConfig) {
|
|
16619
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdLandingsLandingIdTranslatePost(requestParameters.hospitalId, requestParameters.landingId, requestParameters.translateLandingCommand, options).then((request) => request(this.axios, this.basePath));
|
|
16620
|
+
}
|
|
16621
|
+
|
|
16509
16622
|
/**
|
|
16510
16623
|
*
|
|
16511
16624
|
* @summary Create HospitalLandings.
|
|
@@ -16737,13 +16850,13 @@ export class HospitalsApi extends BaseAPI {
|
|
|
16737
16850
|
/**
|
|
16738
16851
|
*
|
|
16739
16852
|
* @summary Reactive policy
|
|
16740
|
-
* @param {
|
|
16853
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePutRequest} requestParameters Request parameters.
|
|
16741
16854
|
* @param {*} [options] Override http request option.
|
|
16742
16855
|
* @throws {RequiredError}
|
|
16743
16856
|
* @memberof HospitalsApi
|
|
16744
16857
|
*/
|
|
16745
|
-
public
|
|
16746
|
-
return HospitalsApiFp(this.configuration).
|
|
16858
|
+
public apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePutRequest, options?: AxiosRequestConfig) {
|
|
16859
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut(requestParameters.hospitalId, requestParameters.policyId, options).then((request) => request(this.axios, this.basePath));
|
|
16747
16860
|
}
|
|
16748
16861
|
|
|
16749
16862
|
/**
|
|
@@ -16773,13 +16886,13 @@ export class HospitalsApi extends BaseAPI {
|
|
|
16773
16886
|
/**
|
|
16774
16887
|
*
|
|
16775
16888
|
* @summary Delete HospitalSpecialty.
|
|
16776
|
-
* @param {
|
|
16889
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdReactivatePutRequest} requestParameters Request parameters.
|
|
16777
16890
|
* @param {*} [options] Override http request option.
|
|
16778
16891
|
* @throws {RequiredError}
|
|
16779
16892
|
* @memberof HospitalsApi
|
|
16780
16893
|
*/
|
|
16781
|
-
public
|
|
16782
|
-
return HospitalsApiFp(this.configuration).
|
|
16894
|
+
public apiV1HospitalsHospitalIdReactivatePut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdReactivatePutRequest, options?: AxiosRequestConfig) {
|
|
16895
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdReactivatePut(requestParameters.hospitalId, options).then((request) => request(this.axios, this.basePath));
|
|
16783
16896
|
}
|
|
16784
16897
|
|
|
16785
16898
|
/**
|
|
@@ -17325,13 +17438,13 @@ export class HospitalsApi extends BaseAPI {
|
|
|
17325
17438
|
/**
|
|
17326
17439
|
*
|
|
17327
17440
|
* @summary Reactivate Hospital Service
|
|
17328
|
-
* @param {
|
|
17441
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePutRequest} requestParameters Request parameters.
|
|
17329
17442
|
* @param {*} [options] Override http request option.
|
|
17330
17443
|
* @throws {RequiredError}
|
|
17331
17444
|
* @memberof HospitalsApi
|
|
17332
17445
|
*/
|
|
17333
|
-
public
|
|
17334
|
-
return HospitalsApiFp(this.configuration).
|
|
17446
|
+
public apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePutRequest, options?: AxiosRequestConfig) {
|
|
17447
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, options).then((request) => request(this.axios, this.basePath));
|
|
17335
17448
|
}
|
|
17336
17449
|
|
|
17337
17450
|
/**
|
|
@@ -17481,13 +17594,13 @@ export class HospitalsApi extends BaseAPI {
|
|
|
17481
17594
|
/**
|
|
17482
17595
|
*
|
|
17483
17596
|
* @summary Delete HospitalSpecialty.
|
|
17484
|
-
* @param {
|
|
17597
|
+
* @param {HospitalsApiApiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePutRequest} requestParameters Request parameters.
|
|
17485
17598
|
* @param {*} [options] Override http request option.
|
|
17486
17599
|
* @throws {RequiredError}
|
|
17487
17600
|
* @memberof HospitalsApi
|
|
17488
17601
|
*/
|
|
17489
|
-
public
|
|
17490
|
-
return HospitalsApiFp(this.configuration).
|
|
17602
|
+
public apiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePut(requestParameters: HospitalsApiApiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePutRequest, options?: AxiosRequestConfig) {
|
|
17603
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePut(requestParameters.hospitalSpecialtyId, options).then((request) => request(this.axios, this.basePath));
|
|
17491
17604
|
}
|
|
17492
17605
|
|
|
17493
17606
|
/**
|