ch-admin-api-client-typescript 5.13.6 → 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/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/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 +49 -49
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +54 -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 +4 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +4 -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/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 +5 -0
- package/src/api/countries-api.ts +14 -14
- package/src/api/curations-api.ts +795 -0
- package/src/api/doctor-affiliations-api.ts +14 -14
- package/src/api/doctors-api.ts +14 -14
- package/src/api/hospitals-api.ts +78 -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 +4 -0
- package/src/models/specialty-type-item-model.ts +0 -6
- package/src/models/specialty-type-model.ts +0 -6
- package/src/models/update-curation-command.ts +96 -0
|
@@ -804,10 +804,10 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
804
804
|
* @param {*} [options] Override http request option.
|
|
805
805
|
* @throws {RequiredError}
|
|
806
806
|
*/
|
|
807
|
-
|
|
807
|
+
apiV1DoctoraffiliationsIdReactivatePut: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
808
808
|
// verify required parameter 'id' is not null or undefined
|
|
809
|
-
assertParamExists('
|
|
810
|
-
const localVarPath = `/api/v1/doctoraffiliations/{id}/
|
|
809
|
+
assertParamExists('apiV1DoctoraffiliationsIdReactivatePut', 'id', id)
|
|
810
|
+
const localVarPath = `/api/v1/doctoraffiliations/{id}/reactivate`
|
|
811
811
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
812
812
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
813
813
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1167,8 +1167,8 @@ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
|
|
|
1167
1167
|
* @param {*} [options] Override http request option.
|
|
1168
1168
|
* @throws {RequiredError}
|
|
1169
1169
|
*/
|
|
1170
|
-
async
|
|
1171
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1170
|
+
async apiV1DoctoraffiliationsIdReactivatePut(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
1171
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsIdReactivatePut(id, options);
|
|
1172
1172
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1173
1173
|
},
|
|
1174
1174
|
/**
|
|
@@ -1401,8 +1401,8 @@ export const DoctorAffiliationsApiFactory = function (configuration?: Configurat
|
|
|
1401
1401
|
* @param {*} [options] Override http request option.
|
|
1402
1402
|
* @throws {RequiredError}
|
|
1403
1403
|
*/
|
|
1404
|
-
|
|
1405
|
-
return localVarFp.
|
|
1404
|
+
apiV1DoctoraffiliationsIdReactivatePut(id: string, options?: any): AxiosPromise<boolean> {
|
|
1405
|
+
return localVarFp.apiV1DoctoraffiliationsIdReactivatePut(id, options).then((request) => request(axios, basePath));
|
|
1406
1406
|
},
|
|
1407
1407
|
/**
|
|
1408
1408
|
*
|
|
@@ -1908,15 +1908,15 @@ export interface DoctorAffiliationsApiApiV1DoctoraffiliationsIdPutRequest {
|
|
|
1908
1908
|
}
|
|
1909
1909
|
|
|
1910
1910
|
/**
|
|
1911
|
-
* Request parameters for
|
|
1911
|
+
* Request parameters for apiV1DoctoraffiliationsIdReactivatePut operation in DoctorAffiliationsApi.
|
|
1912
1912
|
* @export
|
|
1913
|
-
* @interface
|
|
1913
|
+
* @interface DoctorAffiliationsApiApiV1DoctoraffiliationsIdReactivatePutRequest
|
|
1914
1914
|
*/
|
|
1915
|
-
export interface
|
|
1915
|
+
export interface DoctorAffiliationsApiApiV1DoctoraffiliationsIdReactivatePutRequest {
|
|
1916
1916
|
/**
|
|
1917
1917
|
*
|
|
1918
1918
|
* @type {string}
|
|
1919
|
-
* @memberof
|
|
1919
|
+
* @memberof DoctorAffiliationsApiApiV1DoctoraffiliationsIdReactivatePut
|
|
1920
1920
|
*/
|
|
1921
1921
|
readonly id: string
|
|
1922
1922
|
}
|
|
@@ -2155,13 +2155,13 @@ export class DoctorAffiliationsApi extends BaseAPI {
|
|
|
2155
2155
|
/**
|
|
2156
2156
|
*
|
|
2157
2157
|
* @summary Reactivate doctor affiliation.
|
|
2158
|
-
* @param {
|
|
2158
|
+
* @param {DoctorAffiliationsApiApiV1DoctoraffiliationsIdReactivatePutRequest} requestParameters Request parameters.
|
|
2159
2159
|
* @param {*} [options] Override http request option.
|
|
2160
2160
|
* @throws {RequiredError}
|
|
2161
2161
|
* @memberof DoctorAffiliationsApi
|
|
2162
2162
|
*/
|
|
2163
|
-
public
|
|
2164
|
-
return DoctorAffiliationsApiFp(this.configuration).
|
|
2163
|
+
public apiV1DoctoraffiliationsIdReactivatePut(requestParameters: DoctorAffiliationsApiApiV1DoctoraffiliationsIdReactivatePutRequest, options?: AxiosRequestConfig) {
|
|
2164
|
+
return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsIdReactivatePut(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
2165
2165
|
}
|
|
2166
2166
|
|
|
2167
2167
|
/**
|
package/src/api/doctors-api.ts
CHANGED
|
@@ -1441,10 +1441,10 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1441
1441
|
* @param {*} [options] Override http request option.
|
|
1442
1442
|
* @throws {RequiredError}
|
|
1443
1443
|
*/
|
|
1444
|
-
|
|
1444
|
+
apiV1DoctorsDoctorIdReactivatePut: async (doctorId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1445
1445
|
// verify required parameter 'doctorId' is not null or undefined
|
|
1446
|
-
assertParamExists('
|
|
1447
|
-
const localVarPath = `/api/v1/doctors/{doctorId}/
|
|
1446
|
+
assertParamExists('apiV1DoctorsDoctorIdReactivatePut', 'doctorId', doctorId)
|
|
1447
|
+
const localVarPath = `/api/v1/doctors/{doctorId}/reactivate`
|
|
1448
1448
|
.replace(`{${"doctorId"}}`, encodeURIComponent(String(doctorId)));
|
|
1449
1449
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1450
1450
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -2413,8 +2413,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
2413
2413
|
* @param {*} [options] Override http request option.
|
|
2414
2414
|
* @throws {RequiredError}
|
|
2415
2415
|
*/
|
|
2416
|
-
async
|
|
2417
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
2416
|
+
async apiV1DoctorsDoctorIdReactivatePut(doctorId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
2417
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdReactivatePut(doctorId, options);
|
|
2418
2418
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2419
2419
|
},
|
|
2420
2420
|
/**
|
|
@@ -2912,8 +2912,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
2912
2912
|
* @param {*} [options] Override http request option.
|
|
2913
2913
|
* @throws {RequiredError}
|
|
2914
2914
|
*/
|
|
2915
|
-
|
|
2916
|
-
return localVarFp.
|
|
2915
|
+
apiV1DoctorsDoctorIdReactivatePut(doctorId: string, options?: any): AxiosPromise<boolean> {
|
|
2916
|
+
return localVarFp.apiV1DoctorsDoctorIdReactivatePut(doctorId, options).then((request) => request(axios, basePath));
|
|
2917
2917
|
},
|
|
2918
2918
|
/**
|
|
2919
2919
|
*
|
|
@@ -3848,15 +3848,15 @@ export interface DoctorsApiApiV1DoctorsDoctorIdPutRequest {
|
|
|
3848
3848
|
}
|
|
3849
3849
|
|
|
3850
3850
|
/**
|
|
3851
|
-
* Request parameters for
|
|
3851
|
+
* Request parameters for apiV1DoctorsDoctorIdReactivatePut operation in DoctorsApi.
|
|
3852
3852
|
* @export
|
|
3853
|
-
* @interface
|
|
3853
|
+
* @interface DoctorsApiApiV1DoctorsDoctorIdReactivatePutRequest
|
|
3854
3854
|
*/
|
|
3855
|
-
export interface
|
|
3855
|
+
export interface DoctorsApiApiV1DoctorsDoctorIdReactivatePutRequest {
|
|
3856
3856
|
/**
|
|
3857
3857
|
*
|
|
3858
3858
|
* @type {string}
|
|
3859
|
-
* @memberof
|
|
3859
|
+
* @memberof DoctorsApiApiV1DoctorsDoctorIdReactivatePut
|
|
3860
3860
|
*/
|
|
3861
3861
|
readonly doctorId: string
|
|
3862
3862
|
}
|
|
@@ -4620,13 +4620,13 @@ export class DoctorsApi extends BaseAPI {
|
|
|
4620
4620
|
/**
|
|
4621
4621
|
*
|
|
4622
4622
|
* @summary Delete Doctor.
|
|
4623
|
-
* @param {
|
|
4623
|
+
* @param {DoctorsApiApiV1DoctorsDoctorIdReactivatePutRequest} requestParameters Request parameters.
|
|
4624
4624
|
* @param {*} [options] Override http request option.
|
|
4625
4625
|
* @throws {RequiredError}
|
|
4626
4626
|
* @memberof DoctorsApi
|
|
4627
4627
|
*/
|
|
4628
|
-
public
|
|
4629
|
-
return DoctorsApiFp(this.configuration).
|
|
4628
|
+
public apiV1DoctorsDoctorIdReactivatePut(requestParameters: DoctorsApiApiV1DoctorsDoctorIdReactivatePutRequest, options?: AxiosRequestConfig) {
|
|
4629
|
+
return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdReactivatePut(requestParameters.doctorId, options).then((request) => request(this.axios, this.basePath));
|
|
4630
4630
|
}
|
|
4631
4631
|
|
|
4632
4632
|
/**
|
package/src/api/hospitals-api.ts
CHANGED
|
@@ -1702,12 +1702,12 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
1702
1702
|
* @param {*} [options] Override http request option.
|
|
1703
1703
|
* @throws {RequiredError}
|
|
1704
1704
|
*/
|
|
1705
|
-
|
|
1705
|
+
apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut: async (hospitalId: string, equipmentId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1706
1706
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
1707
|
-
assertParamExists('
|
|
1707
|
+
assertParamExists('apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut', 'hospitalId', hospitalId)
|
|
1708
1708
|
// verify required parameter 'equipmentId' is not null or undefined
|
|
1709
|
-
assertParamExists('
|
|
1710
|
-
const localVarPath = `/api/v1/hospitals/{hospitalId}/equipments/{equipmentId}/
|
|
1709
|
+
assertParamExists('apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut', 'equipmentId', equipmentId)
|
|
1710
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/equipments/{equipmentId}/reactivate`
|
|
1711
1711
|
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
1712
1712
|
.replace(`{${"equipmentId"}}`, encodeURIComponent(String(equipmentId)));
|
|
1713
1713
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -3900,12 +3900,12 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
3900
3900
|
* @param {*} [options] Override http request option.
|
|
3901
3901
|
* @throws {RequiredError}
|
|
3902
3902
|
*/
|
|
3903
|
-
|
|
3903
|
+
apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut: async (hospitalId: string, policyId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3904
3904
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
3905
|
-
assertParamExists('
|
|
3905
|
+
assertParamExists('apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut', 'hospitalId', hospitalId)
|
|
3906
3906
|
// verify required parameter 'policyId' is not null or undefined
|
|
3907
|
-
assertParamExists('
|
|
3908
|
-
const localVarPath = `/api/v1/hospitals/{hospitalId}/policies/{policyId}/
|
|
3907
|
+
assertParamExists('apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut', 'policyId', policyId)
|
|
3908
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/policies/{policyId}/reactivate`
|
|
3909
3909
|
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
3910
3910
|
.replace(`{${"policyId"}}`, encodeURIComponent(String(policyId)));
|
|
3911
3911
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -4025,10 +4025,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
4025
4025
|
* @param {*} [options] Override http request option.
|
|
4026
4026
|
* @throws {RequiredError}
|
|
4027
4027
|
*/
|
|
4028
|
-
|
|
4028
|
+
apiV1HospitalsHospitalIdReactivatePut: async (hospitalId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
4029
4029
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
4030
|
-
assertParamExists('
|
|
4031
|
-
const localVarPath = `/api/v1/hospitals/{hospitalId}/
|
|
4030
|
+
assertParamExists('apiV1HospitalsHospitalIdReactivatePut', 'hospitalId', hospitalId)
|
|
4031
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/reactivate`
|
|
4032
4032
|
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
|
|
4033
4033
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4034
4034
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -6572,14 +6572,14 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
6572
6572
|
* @param {*} [options] Override http request option.
|
|
6573
6573
|
* @throws {RequiredError}
|
|
6574
6574
|
*/
|
|
6575
|
-
|
|
6575
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut: async (hospitalId: string, specialtyId: string, serviceId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
6576
6576
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
6577
|
-
assertParamExists('
|
|
6577
|
+
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut', 'hospitalId', hospitalId)
|
|
6578
6578
|
// verify required parameter 'specialtyId' is not null or undefined
|
|
6579
|
-
assertParamExists('
|
|
6579
|
+
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut', 'specialtyId', specialtyId)
|
|
6580
6580
|
// verify required parameter 'serviceId' is not null or undefined
|
|
6581
|
-
assertParamExists('
|
|
6582
|
-
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`
|
|
6583
6583
|
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
6584
6584
|
.replace(`{${"specialtyId"}}`, encodeURIComponent(String(specialtyId)))
|
|
6585
6585
|
.replace(`{${"serviceId"}}`, encodeURIComponent(String(serviceId)));
|
|
@@ -7201,10 +7201,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
7201
7201
|
* @param {*} [options] Override http request option.
|
|
7202
7202
|
* @throws {RequiredError}
|
|
7203
7203
|
*/
|
|
7204
|
-
|
|
7204
|
+
apiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePut: async (hospitalSpecialtyId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
7205
7205
|
// verify required parameter 'hospitalSpecialtyId' is not null or undefined
|
|
7206
|
-
assertParamExists('
|
|
7207
|
-
const localVarPath = `/api/v1/hospitals/{hospitalSpecialtyId}/specialties/
|
|
7206
|
+
assertParamExists('apiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePut', 'hospitalSpecialtyId', hospitalSpecialtyId)
|
|
7207
|
+
const localVarPath = `/api/v1/hospitals/{hospitalSpecialtyId}/specialties/reactivate`
|
|
7208
7208
|
.replace(`{${"hospitalSpecialtyId"}}`, encodeURIComponent(String(hospitalSpecialtyId)));
|
|
7209
7209
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7210
7210
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -7847,8 +7847,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
7847
7847
|
* @param {*} [options] Override http request option.
|
|
7848
7848
|
* @throws {RequiredError}
|
|
7849
7849
|
*/
|
|
7850
|
-
async
|
|
7851
|
-
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);
|
|
7852
7852
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
7853
7853
|
},
|
|
7854
7854
|
/**
|
|
@@ -8441,8 +8441,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
8441
8441
|
* @param {*} [options] Override http request option.
|
|
8442
8442
|
* @throws {RequiredError}
|
|
8443
8443
|
*/
|
|
8444
|
-
async
|
|
8445
|
-
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);
|
|
8446
8446
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8447
8447
|
},
|
|
8448
8448
|
/**
|
|
@@ -8476,8 +8476,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
8476
8476
|
* @param {*} [options] Override http request option.
|
|
8477
8477
|
* @throws {RequiredError}
|
|
8478
8478
|
*/
|
|
8479
|
-
async
|
|
8480
|
-
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);
|
|
8481
8481
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8482
8482
|
},
|
|
8483
8483
|
/**
|
|
@@ -9152,8 +9152,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
9152
9152
|
* @param {*} [options] Override http request option.
|
|
9153
9153
|
* @throws {RequiredError}
|
|
9154
9154
|
*/
|
|
9155
|
-
async
|
|
9156
|
-
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);
|
|
9157
9157
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
9158
9158
|
},
|
|
9159
9159
|
/**
|
|
@@ -9322,8 +9322,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
9322
9322
|
* @param {*} [options] Override http request option.
|
|
9323
9323
|
* @throws {RequiredError}
|
|
9324
9324
|
*/
|
|
9325
|
-
async
|
|
9326
|
-
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);
|
|
9327
9327
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
9328
9328
|
},
|
|
9329
9329
|
/**
|
|
@@ -9762,8 +9762,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
9762
9762
|
* @param {*} [options] Override http request option.
|
|
9763
9763
|
* @throws {RequiredError}
|
|
9764
9764
|
*/
|
|
9765
|
-
|
|
9766
|
-
return localVarFp.
|
|
9765
|
+
apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut(hospitalId: string, equipmentId: string, options?: any): AxiosPromise<boolean> {
|
|
9766
|
+
return localVarFp.apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut(hospitalId, equipmentId, options).then((request) => request(axios, basePath));
|
|
9767
9767
|
},
|
|
9768
9768
|
/**
|
|
9769
9769
|
*
|
|
@@ -10312,8 +10312,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
10312
10312
|
* @param {*} [options] Override http request option.
|
|
10313
10313
|
* @throws {RequiredError}
|
|
10314
10314
|
*/
|
|
10315
|
-
|
|
10316
|
-
return localVarFp.
|
|
10315
|
+
apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut(hospitalId: string, policyId: string, options?: any): AxiosPromise<boolean> {
|
|
10316
|
+
return localVarFp.apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut(hospitalId, policyId, options).then((request) => request(axios, basePath));
|
|
10317
10317
|
},
|
|
10318
10318
|
/**
|
|
10319
10319
|
*
|
|
@@ -10344,8 +10344,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
10344
10344
|
* @param {*} [options] Override http request option.
|
|
10345
10345
|
* @throws {RequiredError}
|
|
10346
10346
|
*/
|
|
10347
|
-
|
|
10348
|
-
return localVarFp.
|
|
10347
|
+
apiV1HospitalsHospitalIdReactivatePut(hospitalId: string, options?: any): AxiosPromise<boolean> {
|
|
10348
|
+
return localVarFp.apiV1HospitalsHospitalIdReactivatePut(hospitalId, options).then((request) => request(axios, basePath));
|
|
10349
10349
|
},
|
|
10350
10350
|
/**
|
|
10351
10351
|
*
|
|
@@ -10974,8 +10974,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
10974
10974
|
* @param {*} [options] Override http request option.
|
|
10975
10975
|
* @throws {RequiredError}
|
|
10976
10976
|
*/
|
|
10977
|
-
|
|
10978
|
-
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));
|
|
10979
10979
|
},
|
|
10980
10980
|
/**
|
|
10981
10981
|
*
|
|
@@ -11131,8 +11131,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
11131
11131
|
* @param {*} [options] Override http request option.
|
|
11132
11132
|
* @throws {RequiredError}
|
|
11133
11133
|
*/
|
|
11134
|
-
|
|
11135
|
-
return localVarFp.
|
|
11134
|
+
apiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePut(hospitalSpecialtyId: string, options?: any): AxiosPromise<boolean> {
|
|
11135
|
+
return localVarFp.apiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePut(hospitalSpecialtyId, options).then((request) => request(axios, basePath));
|
|
11136
11136
|
},
|
|
11137
11137
|
/**
|
|
11138
11138
|
*
|
|
@@ -12143,22 +12143,22 @@ export interface HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdPutReq
|
|
|
12143
12143
|
}
|
|
12144
12144
|
|
|
12145
12145
|
/**
|
|
12146
|
-
* Request parameters for
|
|
12146
|
+
* Request parameters for apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut operation in HospitalsApi.
|
|
12147
12147
|
* @export
|
|
12148
|
-
* @interface
|
|
12148
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePutRequest
|
|
12149
12149
|
*/
|
|
12150
|
-
export interface
|
|
12150
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePutRequest {
|
|
12151
12151
|
/**
|
|
12152
12152
|
*
|
|
12153
12153
|
* @type {string}
|
|
12154
|
-
* @memberof
|
|
12154
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut
|
|
12155
12155
|
*/
|
|
12156
12156
|
readonly hospitalId: string
|
|
12157
12157
|
|
|
12158
12158
|
/**
|
|
12159
12159
|
*
|
|
12160
12160
|
* @type {string}
|
|
12161
|
-
* @memberof
|
|
12161
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePut
|
|
12162
12162
|
*/
|
|
12163
12163
|
readonly equipmentId: string
|
|
12164
12164
|
}
|
|
@@ -13529,22 +13529,22 @@ export interface HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdPutRequest
|
|
|
13529
13529
|
}
|
|
13530
13530
|
|
|
13531
13531
|
/**
|
|
13532
|
-
* Request parameters for
|
|
13532
|
+
* Request parameters for apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut operation in HospitalsApi.
|
|
13533
13533
|
* @export
|
|
13534
|
-
* @interface
|
|
13534
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePutRequest
|
|
13535
13535
|
*/
|
|
13536
|
-
export interface
|
|
13536
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePutRequest {
|
|
13537
13537
|
/**
|
|
13538
13538
|
*
|
|
13539
13539
|
* @type {string}
|
|
13540
|
-
* @memberof
|
|
13540
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut
|
|
13541
13541
|
*/
|
|
13542
13542
|
readonly hospitalId: string
|
|
13543
13543
|
|
|
13544
13544
|
/**
|
|
13545
13545
|
*
|
|
13546
13546
|
* @type {string}
|
|
13547
|
-
* @memberof
|
|
13547
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut
|
|
13548
13548
|
*/
|
|
13549
13549
|
readonly policyId: string
|
|
13550
13550
|
}
|
|
@@ -13592,15 +13592,15 @@ export interface HospitalsApiApiV1HospitalsHospitalIdPutRequest {
|
|
|
13592
13592
|
}
|
|
13593
13593
|
|
|
13594
13594
|
/**
|
|
13595
|
-
* Request parameters for
|
|
13595
|
+
* Request parameters for apiV1HospitalsHospitalIdReactivatePut operation in HospitalsApi.
|
|
13596
13596
|
* @export
|
|
13597
|
-
* @interface
|
|
13597
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdReactivatePutRequest
|
|
13598
13598
|
*/
|
|
13599
|
-
export interface
|
|
13599
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdReactivatePutRequest {
|
|
13600
13600
|
/**
|
|
13601
13601
|
*
|
|
13602
13602
|
* @type {string}
|
|
13603
|
-
* @memberof
|
|
13603
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdReactivatePut
|
|
13604
13604
|
*/
|
|
13605
13605
|
readonly hospitalId: string
|
|
13606
13606
|
}
|
|
@@ -15412,29 +15412,29 @@ export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServi
|
|
|
15412
15412
|
}
|
|
15413
15413
|
|
|
15414
15414
|
/**
|
|
15415
|
-
* Request parameters for
|
|
15415
|
+
* Request parameters for apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut operation in HospitalsApi.
|
|
15416
15416
|
* @export
|
|
15417
|
-
* @interface
|
|
15417
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePutRequest
|
|
15418
15418
|
*/
|
|
15419
|
-
export interface
|
|
15419
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePutRequest {
|
|
15420
15420
|
/**
|
|
15421
15421
|
*
|
|
15422
15422
|
* @type {string}
|
|
15423
|
-
* @memberof
|
|
15423
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut
|
|
15424
15424
|
*/
|
|
15425
15425
|
readonly hospitalId: string
|
|
15426
15426
|
|
|
15427
15427
|
/**
|
|
15428
15428
|
*
|
|
15429
15429
|
* @type {string}
|
|
15430
|
-
* @memberof
|
|
15430
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut
|
|
15431
15431
|
*/
|
|
15432
15432
|
readonly specialtyId: string
|
|
15433
15433
|
|
|
15434
15434
|
/**
|
|
15435
15435
|
*
|
|
15436
15436
|
* @type {string}
|
|
15437
|
-
* @memberof
|
|
15437
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut
|
|
15438
15438
|
*/
|
|
15439
15439
|
readonly serviceId: string
|
|
15440
15440
|
}
|
|
@@ -15797,15 +15797,15 @@ export interface HospitalsApiApiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPutR
|
|
|
15797
15797
|
}
|
|
15798
15798
|
|
|
15799
15799
|
/**
|
|
15800
|
-
* Request parameters for
|
|
15800
|
+
* Request parameters for apiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePut operation in HospitalsApi.
|
|
15801
15801
|
* @export
|
|
15802
|
-
* @interface
|
|
15802
|
+
* @interface HospitalsApiApiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePutRequest
|
|
15803
15803
|
*/
|
|
15804
|
-
export interface
|
|
15804
|
+
export interface HospitalsApiApiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePutRequest {
|
|
15805
15805
|
/**
|
|
15806
15806
|
*
|
|
15807
15807
|
* @type {string}
|
|
15808
|
-
* @memberof
|
|
15808
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePut
|
|
15809
15809
|
*/
|
|
15810
15810
|
readonly hospitalSpecialtyId: string
|
|
15811
15811
|
}
|
|
@@ -16322,13 +16322,13 @@ export class HospitalsApi extends BaseAPI {
|
|
|
16322
16322
|
/**
|
|
16323
16323
|
*
|
|
16324
16324
|
* @summary Reactivate HospitalEquipment.
|
|
16325
|
-
* @param {
|
|
16325
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePutRequest} requestParameters Request parameters.
|
|
16326
16326
|
* @param {*} [options] Override http request option.
|
|
16327
16327
|
* @throws {RequiredError}
|
|
16328
16328
|
* @memberof HospitalsApi
|
|
16329
16329
|
*/
|
|
16330
|
-
public
|
|
16331
|
-
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));
|
|
16332
16332
|
}
|
|
16333
16333
|
|
|
16334
16334
|
/**
|
|
@@ -16850,13 +16850,13 @@ export class HospitalsApi extends BaseAPI {
|
|
|
16850
16850
|
/**
|
|
16851
16851
|
*
|
|
16852
16852
|
* @summary Reactive policy
|
|
16853
|
-
* @param {
|
|
16853
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePutRequest} requestParameters Request parameters.
|
|
16854
16854
|
* @param {*} [options] Override http request option.
|
|
16855
16855
|
* @throws {RequiredError}
|
|
16856
16856
|
* @memberof HospitalsApi
|
|
16857
16857
|
*/
|
|
16858
|
-
public
|
|
16859
|
-
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));
|
|
16860
16860
|
}
|
|
16861
16861
|
|
|
16862
16862
|
/**
|
|
@@ -16886,13 +16886,13 @@ export class HospitalsApi extends BaseAPI {
|
|
|
16886
16886
|
/**
|
|
16887
16887
|
*
|
|
16888
16888
|
* @summary Delete HospitalSpecialty.
|
|
16889
|
-
* @param {
|
|
16889
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdReactivatePutRequest} requestParameters Request parameters.
|
|
16890
16890
|
* @param {*} [options] Override http request option.
|
|
16891
16891
|
* @throws {RequiredError}
|
|
16892
16892
|
* @memberof HospitalsApi
|
|
16893
16893
|
*/
|
|
16894
|
-
public
|
|
16895
|
-
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));
|
|
16896
16896
|
}
|
|
16897
16897
|
|
|
16898
16898
|
/**
|
|
@@ -17438,13 +17438,13 @@ export class HospitalsApi extends BaseAPI {
|
|
|
17438
17438
|
/**
|
|
17439
17439
|
*
|
|
17440
17440
|
* @summary Reactivate Hospital Service
|
|
17441
|
-
* @param {
|
|
17441
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePutRequest} requestParameters Request parameters.
|
|
17442
17442
|
* @param {*} [options] Override http request option.
|
|
17443
17443
|
* @throws {RequiredError}
|
|
17444
17444
|
* @memberof HospitalsApi
|
|
17445
17445
|
*/
|
|
17446
|
-
public
|
|
17447
|
-
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));
|
|
17448
17448
|
}
|
|
17449
17449
|
|
|
17450
17450
|
/**
|
|
@@ -17594,13 +17594,13 @@ export class HospitalsApi extends BaseAPI {
|
|
|
17594
17594
|
/**
|
|
17595
17595
|
*
|
|
17596
17596
|
* @summary Delete HospitalSpecialty.
|
|
17597
|
-
* @param {
|
|
17597
|
+
* @param {HospitalsApiApiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivatePutRequest} requestParameters Request parameters.
|
|
17598
17598
|
* @param {*} [options] Override http request option.
|
|
17599
17599
|
* @throws {RequiredError}
|
|
17600
17600
|
* @memberof HospitalsApi
|
|
17601
17601
|
*/
|
|
17602
|
-
public
|
|
17603
|
-
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));
|
|
17604
17604
|
}
|
|
17605
17605
|
|
|
17606
17606
|
/**
|