ch-admin-api-client-typescript 4.3.2 → 4.3.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 +173 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +439 -0
- package/package.json +1 -1
- package/src/api.ts +369 -0
package/lib/api.d.ts
CHANGED
|
@@ -19548,6 +19548,14 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
19548
19548
|
* @throws {RequiredError}
|
|
19549
19549
|
*/
|
|
19550
19550
|
apiV1DoctoraffiliationsIdPut: (id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19551
|
+
/**
|
|
19552
|
+
*
|
|
19553
|
+
* @summary Reactivate doctor affiliation.
|
|
19554
|
+
* @param {string} id
|
|
19555
|
+
* @param {*} [options] Override http request option.
|
|
19556
|
+
* @throws {RequiredError}
|
|
19557
|
+
*/
|
|
19558
|
+
apiV1DoctoraffiliationsIdReactivePut: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19551
19559
|
/**
|
|
19552
19560
|
*
|
|
19553
19561
|
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
@@ -19657,6 +19665,14 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
19657
19665
|
* @throws {RequiredError}
|
|
19658
19666
|
*/
|
|
19659
19667
|
apiV1DoctoraffiliationsIdPut(id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
|
|
19668
|
+
/**
|
|
19669
|
+
*
|
|
19670
|
+
* @summary Reactivate doctor affiliation.
|
|
19671
|
+
* @param {string} id
|
|
19672
|
+
* @param {*} [options] Override http request option.
|
|
19673
|
+
* @throws {RequiredError}
|
|
19674
|
+
*/
|
|
19675
|
+
apiV1DoctoraffiliationsIdReactivePut(id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
19660
19676
|
/**
|
|
19661
19677
|
*
|
|
19662
19678
|
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
@@ -19766,6 +19782,14 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
19766
19782
|
* @throws {RequiredError}
|
|
19767
19783
|
*/
|
|
19768
19784
|
apiV1DoctoraffiliationsIdPut(id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<DoctorAffiliationModel>;
|
|
19785
|
+
/**
|
|
19786
|
+
*
|
|
19787
|
+
* @summary Reactivate doctor affiliation.
|
|
19788
|
+
* @param {string} id
|
|
19789
|
+
* @param {*} [options] Override http request option.
|
|
19790
|
+
* @throws {RequiredError}
|
|
19791
|
+
*/
|
|
19792
|
+
apiV1DoctoraffiliationsIdReactivePut(id: string, options?: any): AxiosPromise<boolean>;
|
|
19769
19793
|
/**
|
|
19770
19794
|
*
|
|
19771
19795
|
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
@@ -19886,6 +19910,15 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
|
19886
19910
|
* @memberof DoctorAffiliationsApi
|
|
19887
19911
|
*/
|
|
19888
19912
|
apiV1DoctoraffiliationsIdPut(id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
|
|
19913
|
+
/**
|
|
19914
|
+
*
|
|
19915
|
+
* @summary Reactivate doctor affiliation.
|
|
19916
|
+
* @param {string} id
|
|
19917
|
+
* @param {*} [options] Override http request option.
|
|
19918
|
+
* @throws {RequiredError}
|
|
19919
|
+
* @memberof DoctorAffiliationsApi
|
|
19920
|
+
*/
|
|
19921
|
+
apiV1DoctoraffiliationsIdReactivePut(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
19889
19922
|
/**
|
|
19890
19923
|
*
|
|
19891
19924
|
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
@@ -20180,6 +20213,14 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
20180
20213
|
* @throws {RequiredError}
|
|
20181
20214
|
*/
|
|
20182
20215
|
apiV1DoctorsDoctorIdPut: (doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20216
|
+
/**
|
|
20217
|
+
*
|
|
20218
|
+
* @summary Delete Doctor.
|
|
20219
|
+
* @param {string} doctorId
|
|
20220
|
+
* @param {*} [options] Override http request option.
|
|
20221
|
+
* @throws {RequiredError}
|
|
20222
|
+
*/
|
|
20223
|
+
apiV1DoctorsDoctorIdReactivePut: (doctorId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20183
20224
|
/**
|
|
20184
20225
|
*
|
|
20185
20226
|
* @summary Get All DoctorSpecialties.
|
|
@@ -20570,6 +20611,14 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
20570
20611
|
* @throws {RequiredError}
|
|
20571
20612
|
*/
|
|
20572
20613
|
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
20614
|
+
/**
|
|
20615
|
+
*
|
|
20616
|
+
* @summary Delete Doctor.
|
|
20617
|
+
* @param {string} doctorId
|
|
20618
|
+
* @param {*} [options] Override http request option.
|
|
20619
|
+
* @throws {RequiredError}
|
|
20620
|
+
*/
|
|
20621
|
+
apiV1DoctorsDoctorIdReactivePut(doctorId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
20573
20622
|
/**
|
|
20574
20623
|
*
|
|
20575
20624
|
* @summary Get All DoctorSpecialties.
|
|
@@ -20960,6 +21009,14 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
20960
21009
|
* @throws {RequiredError}
|
|
20961
21010
|
*/
|
|
20962
21011
|
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
21012
|
+
/**
|
|
21013
|
+
*
|
|
21014
|
+
* @summary Delete Doctor.
|
|
21015
|
+
* @param {string} doctorId
|
|
21016
|
+
* @param {*} [options] Override http request option.
|
|
21017
|
+
* @throws {RequiredError}
|
|
21018
|
+
*/
|
|
21019
|
+
apiV1DoctorsDoctorIdReactivePut(doctorId: string, options?: any): AxiosPromise<boolean>;
|
|
20963
21020
|
/**
|
|
20964
21021
|
*
|
|
20965
21022
|
* @summary Get All DoctorSpecialties.
|
|
@@ -21380,6 +21437,15 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
21380
21437
|
* @memberof DoctorsApi
|
|
21381
21438
|
*/
|
|
21382
21439
|
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
21440
|
+
/**
|
|
21441
|
+
*
|
|
21442
|
+
* @summary Delete Doctor.
|
|
21443
|
+
* @param {string} doctorId
|
|
21444
|
+
* @param {*} [options] Override http request option.
|
|
21445
|
+
* @throws {RequiredError}
|
|
21446
|
+
* @memberof DoctorsApi
|
|
21447
|
+
*/
|
|
21448
|
+
apiV1DoctorsDoctorIdReactivePut(doctorId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21383
21449
|
/**
|
|
21384
21450
|
*
|
|
21385
21451
|
* @summary Get All DoctorSpecialties.
|
|
@@ -23337,6 +23403,16 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
23337
23403
|
* @throws {RequiredError}
|
|
23338
23404
|
*/
|
|
23339
23405
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut: (hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23406
|
+
/**
|
|
23407
|
+
*
|
|
23408
|
+
* @summary Reactivate Hospital Service
|
|
23409
|
+
* @param {string} hospitalId
|
|
23410
|
+
* @param {string} specialtyId
|
|
23411
|
+
* @param {string} serviceId
|
|
23412
|
+
* @param {*} [options] Override http request option.
|
|
23413
|
+
* @throws {RequiredError}
|
|
23414
|
+
*/
|
|
23415
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivePut: (hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23340
23416
|
/**
|
|
23341
23417
|
*
|
|
23342
23418
|
* @summary Get all HospitalWorkingDays.
|
|
@@ -24101,6 +24177,16 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
24101
24177
|
* @throws {RequiredError}
|
|
24102
24178
|
*/
|
|
24103
24179
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
24180
|
+
/**
|
|
24181
|
+
*
|
|
24182
|
+
* @summary Reactivate Hospital Service
|
|
24183
|
+
* @param {string} hospitalId
|
|
24184
|
+
* @param {string} specialtyId
|
|
24185
|
+
* @param {string} serviceId
|
|
24186
|
+
* @param {*} [options] Override http request option.
|
|
24187
|
+
* @throws {RequiredError}
|
|
24188
|
+
*/
|
|
24189
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivePut(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
24104
24190
|
/**
|
|
24105
24191
|
*
|
|
24106
24192
|
* @summary Get all HospitalWorkingDays.
|
|
@@ -24865,6 +24951,16 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
24865
24951
|
* @throws {RequiredError}
|
|
24866
24952
|
*/
|
|
24867
24953
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
24954
|
+
/**
|
|
24955
|
+
*
|
|
24956
|
+
* @summary Reactivate Hospital Service
|
|
24957
|
+
* @param {string} hospitalId
|
|
24958
|
+
* @param {string} specialtyId
|
|
24959
|
+
* @param {string} serviceId
|
|
24960
|
+
* @param {*} [options] Override http request option.
|
|
24961
|
+
* @throws {RequiredError}
|
|
24962
|
+
*/
|
|
24963
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivePut(hospitalId: string, specialtyId: string, serviceId: string, options?: any): AxiosPromise<boolean>;
|
|
24868
24964
|
/**
|
|
24869
24965
|
*
|
|
24870
24966
|
* @summary Get all HospitalWorkingDays.
|
|
@@ -25690,6 +25786,17 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
25690
25786
|
* @memberof HospitalsApi
|
|
25691
25787
|
*/
|
|
25692
25788
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
25789
|
+
/**
|
|
25790
|
+
*
|
|
25791
|
+
* @summary Reactivate Hospital Service
|
|
25792
|
+
* @param {string} hospitalId
|
|
25793
|
+
* @param {string} specialtyId
|
|
25794
|
+
* @param {string} serviceId
|
|
25795
|
+
* @param {*} [options] Override http request option.
|
|
25796
|
+
* @throws {RequiredError}
|
|
25797
|
+
* @memberof HospitalsApi
|
|
25798
|
+
*/
|
|
25799
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivePut(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
25693
25800
|
/**
|
|
25694
25801
|
*
|
|
25695
25802
|
* @summary Get all HospitalWorkingDays.
|
|
@@ -28646,6 +28753,14 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
28646
28753
|
* @throws {RequiredError}
|
|
28647
28754
|
*/
|
|
28648
28755
|
apiV1SpecialtiesSpecialtyIdPut: (specialtyId: string, updateSpecialtyCommand?: UpdateSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28756
|
+
/**
|
|
28757
|
+
*
|
|
28758
|
+
* @summary Reactivate Specialty.
|
|
28759
|
+
* @param {string} specialtyId
|
|
28760
|
+
* @param {*} [options] Override http request option.
|
|
28761
|
+
* @throws {RequiredError}
|
|
28762
|
+
*/
|
|
28763
|
+
apiV1SpecialtiesSpecialtyIdReactivePut: (specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28649
28764
|
};
|
|
28650
28765
|
/**
|
|
28651
28766
|
* SpecialtiesApi - functional programming interface
|
|
@@ -28788,6 +28903,14 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
28788
28903
|
* @throws {RequiredError}
|
|
28789
28904
|
*/
|
|
28790
28905
|
apiV1SpecialtiesSpecialtyIdPut(specialtyId: string, updateSpecialtyCommand?: UpdateSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
|
|
28906
|
+
/**
|
|
28907
|
+
*
|
|
28908
|
+
* @summary Reactivate Specialty.
|
|
28909
|
+
* @param {string} specialtyId
|
|
28910
|
+
* @param {*} [options] Override http request option.
|
|
28911
|
+
* @throws {RequiredError}
|
|
28912
|
+
*/
|
|
28913
|
+
apiV1SpecialtiesSpecialtyIdReactivePut(specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
28791
28914
|
};
|
|
28792
28915
|
/**
|
|
28793
28916
|
* SpecialtiesApi - factory interface
|
|
@@ -28930,6 +29053,14 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
28930
29053
|
* @throws {RequiredError}
|
|
28931
29054
|
*/
|
|
28932
29055
|
apiV1SpecialtiesSpecialtyIdPut(specialtyId: string, updateSpecialtyCommand?: UpdateSpecialtyCommand | undefined, options?: any): AxiosPromise<SpecialtyModel>;
|
|
29056
|
+
/**
|
|
29057
|
+
*
|
|
29058
|
+
* @summary Reactivate Specialty.
|
|
29059
|
+
* @param {string} specialtyId
|
|
29060
|
+
* @param {*} [options] Override http request option.
|
|
29061
|
+
* @throws {RequiredError}
|
|
29062
|
+
*/
|
|
29063
|
+
apiV1SpecialtiesSpecialtyIdReactivePut(specialtyId: string, options?: any): AxiosPromise<boolean>;
|
|
28933
29064
|
};
|
|
28934
29065
|
/**
|
|
28935
29066
|
* SpecialtiesApi - object-oriented interface
|
|
@@ -29086,6 +29217,15 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
29086
29217
|
* @memberof SpecialtiesApi
|
|
29087
29218
|
*/
|
|
29088
29219
|
apiV1SpecialtiesSpecialtyIdPut(specialtyId: string, updateSpecialtyCommand?: UpdateSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
|
|
29220
|
+
/**
|
|
29221
|
+
*
|
|
29222
|
+
* @summary Reactivate Specialty.
|
|
29223
|
+
* @param {string} specialtyId
|
|
29224
|
+
* @param {*} [options] Override http request option.
|
|
29225
|
+
* @throws {RequiredError}
|
|
29226
|
+
* @memberof SpecialtiesApi
|
|
29227
|
+
*/
|
|
29228
|
+
apiV1SpecialtiesSpecialtyIdReactivePut(specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
29089
29229
|
}
|
|
29090
29230
|
/**
|
|
29091
29231
|
* SpecialtyTypesApi - axios parameter creator
|
|
@@ -29227,6 +29367,14 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
29227
29367
|
* @throws {RequiredError}
|
|
29228
29368
|
*/
|
|
29229
29369
|
apiV1SpecialtytypesSpecialtyTypeIdPut: (specialtyTypeId: string, updateSpecialtyTypeCommand?: UpdateSpecialtyTypeCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
29370
|
+
/**
|
|
29371
|
+
*
|
|
29372
|
+
* @summary Reactivate Department (SpecialtyType).
|
|
29373
|
+
* @param {string} specialtyTypeId
|
|
29374
|
+
* @param {*} [options] Override http request option.
|
|
29375
|
+
* @throws {RequiredError}
|
|
29376
|
+
*/
|
|
29377
|
+
apiV1SpecialtytypesSpecialtyTypeIdReactivePut: (specialtyTypeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
29230
29378
|
};
|
|
29231
29379
|
/**
|
|
29232
29380
|
* SpecialtyTypesApi - functional programming interface
|
|
@@ -29368,6 +29516,14 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
29368
29516
|
* @throws {RequiredError}
|
|
29369
29517
|
*/
|
|
29370
29518
|
apiV1SpecialtytypesSpecialtyTypeIdPut(specialtyTypeId: string, updateSpecialtyTypeCommand?: UpdateSpecialtyTypeCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
|
|
29519
|
+
/**
|
|
29520
|
+
*
|
|
29521
|
+
* @summary Reactivate Department (SpecialtyType).
|
|
29522
|
+
* @param {string} specialtyTypeId
|
|
29523
|
+
* @param {*} [options] Override http request option.
|
|
29524
|
+
* @throws {RequiredError}
|
|
29525
|
+
*/
|
|
29526
|
+
apiV1SpecialtytypesSpecialtyTypeIdReactivePut(specialtyTypeId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
29371
29527
|
};
|
|
29372
29528
|
/**
|
|
29373
29529
|
* SpecialtyTypesApi - factory interface
|
|
@@ -29509,6 +29665,14 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
|
|
|
29509
29665
|
* @throws {RequiredError}
|
|
29510
29666
|
*/
|
|
29511
29667
|
apiV1SpecialtytypesSpecialtyTypeIdPut(specialtyTypeId: string, updateSpecialtyTypeCommand?: UpdateSpecialtyTypeCommand | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
29668
|
+
/**
|
|
29669
|
+
*
|
|
29670
|
+
* @summary Reactivate Department (SpecialtyType).
|
|
29671
|
+
* @param {string} specialtyTypeId
|
|
29672
|
+
* @param {*} [options] Override http request option.
|
|
29673
|
+
* @throws {RequiredError}
|
|
29674
|
+
*/
|
|
29675
|
+
apiV1SpecialtytypesSpecialtyTypeIdReactivePut(specialtyTypeId: string, options?: any): AxiosPromise<boolean>;
|
|
29512
29676
|
};
|
|
29513
29677
|
/**
|
|
29514
29678
|
* SpecialtyTypesApi - object-oriented interface
|
|
@@ -29664,6 +29828,15 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
29664
29828
|
* @memberof SpecialtyTypesApi
|
|
29665
29829
|
*/
|
|
29666
29830
|
apiV1SpecialtytypesSpecialtyTypeIdPut(specialtyTypeId: string, updateSpecialtyTypeCommand?: UpdateSpecialtyTypeCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
|
|
29831
|
+
/**
|
|
29832
|
+
*
|
|
29833
|
+
* @summary Reactivate Department (SpecialtyType).
|
|
29834
|
+
* @param {string} specialtyTypeId
|
|
29835
|
+
* @param {*} [options] Override http request option.
|
|
29836
|
+
* @throws {RequiredError}
|
|
29837
|
+
* @memberof SpecialtyTypesApi
|
|
29838
|
+
*/
|
|
29839
|
+
apiV1SpecialtytypesSpecialtyTypeIdReactivePut(specialtyTypeId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
29667
29840
|
}
|
|
29668
29841
|
/**
|
|
29669
29842
|
* TagsApi - axios parameter creator
|