ch-admin-api-client-typescript 4.4.8 → 4.4.9
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 +158 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +194 -1
- package/package.json +1 -1
- package/src/api.ts +242 -0
package/lib/api.d.ts
CHANGED
|
@@ -12925,6 +12925,16 @@ export interface TemplateVersionsModel {
|
|
|
12925
12925
|
*/
|
|
12926
12926
|
'metaData'?: PagedListMetaData;
|
|
12927
12927
|
}
|
|
12928
|
+
/**
|
|
12929
|
+
*
|
|
12930
|
+
* @export
|
|
12931
|
+
* @enum {string}
|
|
12932
|
+
*/
|
|
12933
|
+
export declare enum TranslateAllOptions {
|
|
12934
|
+
All = "All",
|
|
12935
|
+
HospitalLanguages = "HospitalLanguages",
|
|
12936
|
+
RequestedLanguages = "RequestedLanguages"
|
|
12937
|
+
}
|
|
12928
12938
|
/**
|
|
12929
12939
|
*
|
|
12930
12940
|
* @export
|
|
@@ -12956,6 +12966,80 @@ export interface TranslateCommand {
|
|
|
12956
12966
|
*/
|
|
12957
12967
|
'isHtml'?: boolean;
|
|
12958
12968
|
}
|
|
12969
|
+
/**
|
|
12970
|
+
*
|
|
12971
|
+
* @export
|
|
12972
|
+
* @interface TranslateDoctorAffiliationCommand
|
|
12973
|
+
*/
|
|
12974
|
+
export interface TranslateDoctorAffiliationCommand {
|
|
12975
|
+
/**
|
|
12976
|
+
*
|
|
12977
|
+
* @type {string}
|
|
12978
|
+
* @memberof TranslateDoctorAffiliationCommand
|
|
12979
|
+
*/
|
|
12980
|
+
'basisLanguageCode'?: string | null;
|
|
12981
|
+
/**
|
|
12982
|
+
*
|
|
12983
|
+
* @type {TranslateAllOptions}
|
|
12984
|
+
* @memberof TranslateDoctorAffiliationCommand
|
|
12985
|
+
*/
|
|
12986
|
+
'translationOption'?: TranslateAllOptions;
|
|
12987
|
+
/**
|
|
12988
|
+
*
|
|
12989
|
+
* @type {Array<string>}
|
|
12990
|
+
* @memberof TranslateDoctorAffiliationCommand
|
|
12991
|
+
*/
|
|
12992
|
+
'translateToLanguageCodes'?: Array<string> | null;
|
|
12993
|
+
/**
|
|
12994
|
+
*
|
|
12995
|
+
* @type {boolean}
|
|
12996
|
+
* @memberof TranslateDoctorAffiliationCommand
|
|
12997
|
+
*/
|
|
12998
|
+
'isAllowedOverwrite'?: boolean | null;
|
|
12999
|
+
/**
|
|
13000
|
+
*
|
|
13001
|
+
* @type {boolean}
|
|
13002
|
+
* @memberof TranslateDoctorAffiliationCommand
|
|
13003
|
+
*/
|
|
13004
|
+
'isAllowOverwriteConfirmed'?: boolean | null;
|
|
13005
|
+
}
|
|
13006
|
+
/**
|
|
13007
|
+
*
|
|
13008
|
+
* @export
|
|
13009
|
+
* @interface TranslateHospitalCommand
|
|
13010
|
+
*/
|
|
13011
|
+
export interface TranslateHospitalCommand {
|
|
13012
|
+
/**
|
|
13013
|
+
*
|
|
13014
|
+
* @type {string}
|
|
13015
|
+
* @memberof TranslateHospitalCommand
|
|
13016
|
+
*/
|
|
13017
|
+
'basisLanguageCode'?: string | null;
|
|
13018
|
+
/**
|
|
13019
|
+
*
|
|
13020
|
+
* @type {TranslateAllOptions}
|
|
13021
|
+
* @memberof TranslateHospitalCommand
|
|
13022
|
+
*/
|
|
13023
|
+
'translationOption'?: TranslateAllOptions;
|
|
13024
|
+
/**
|
|
13025
|
+
*
|
|
13026
|
+
* @type {Array<string>}
|
|
13027
|
+
* @memberof TranslateHospitalCommand
|
|
13028
|
+
*/
|
|
13029
|
+
'translateToLanguageCodes'?: Array<string> | null;
|
|
13030
|
+
/**
|
|
13031
|
+
*
|
|
13032
|
+
* @type {boolean}
|
|
13033
|
+
* @memberof TranslateHospitalCommand
|
|
13034
|
+
*/
|
|
13035
|
+
'isAllowedOverwrite'?: boolean | null;
|
|
13036
|
+
/**
|
|
13037
|
+
*
|
|
13038
|
+
* @type {boolean}
|
|
13039
|
+
* @memberof TranslateHospitalCommand
|
|
13040
|
+
*/
|
|
13041
|
+
'isAllowOverwriteConfirmed'?: boolean | null;
|
|
13042
|
+
}
|
|
12959
13043
|
/**
|
|
12960
13044
|
*
|
|
12961
13045
|
* @export
|
|
@@ -20890,6 +20974,15 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
20890
20974
|
* @throws {RequiredError}
|
|
20891
20975
|
*/
|
|
20892
20976
|
apiV1DoctoraffiliationsIdReactivePut: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20977
|
+
/**
|
|
20978
|
+
*
|
|
20979
|
+
* @summary Translate doctorAffiliation at once
|
|
20980
|
+
* @param {string} id
|
|
20981
|
+
* @param {TranslateDoctorAffiliationCommand} [translateDoctorAffiliationCommand]
|
|
20982
|
+
* @param {*} [options] Override http request option.
|
|
20983
|
+
* @throws {RequiredError}
|
|
20984
|
+
*/
|
|
20985
|
+
apiV1DoctoraffiliationsIdTranslatePost: (id: string, translateDoctorAffiliationCommand?: TranslateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20893
20986
|
/**
|
|
20894
20987
|
*
|
|
20895
20988
|
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
@@ -21007,6 +21100,15 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
21007
21100
|
* @throws {RequiredError}
|
|
21008
21101
|
*/
|
|
21009
21102
|
apiV1DoctoraffiliationsIdReactivePut(id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
21103
|
+
/**
|
|
21104
|
+
*
|
|
21105
|
+
* @summary Translate doctorAffiliation at once
|
|
21106
|
+
* @param {string} id
|
|
21107
|
+
* @param {TranslateDoctorAffiliationCommand} [translateDoctorAffiliationCommand]
|
|
21108
|
+
* @param {*} [options] Override http request option.
|
|
21109
|
+
* @throws {RequiredError}
|
|
21110
|
+
*/
|
|
21111
|
+
apiV1DoctoraffiliationsIdTranslatePost(id: string, translateDoctorAffiliationCommand?: TranslateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
21010
21112
|
/**
|
|
21011
21113
|
*
|
|
21012
21114
|
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
@@ -21124,6 +21226,15 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
21124
21226
|
* @throws {RequiredError}
|
|
21125
21227
|
*/
|
|
21126
21228
|
apiV1DoctoraffiliationsIdReactivePut(id: string, options?: any): AxiosPromise<boolean>;
|
|
21229
|
+
/**
|
|
21230
|
+
*
|
|
21231
|
+
* @summary Translate doctorAffiliation at once
|
|
21232
|
+
* @param {string} id
|
|
21233
|
+
* @param {TranslateDoctorAffiliationCommand} [translateDoctorAffiliationCommand]
|
|
21234
|
+
* @param {*} [options] Override http request option.
|
|
21235
|
+
* @throws {RequiredError}
|
|
21236
|
+
*/
|
|
21237
|
+
apiV1DoctoraffiliationsIdTranslatePost(id: string, translateDoctorAffiliationCommand?: TranslateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
21127
21238
|
/**
|
|
21128
21239
|
*
|
|
21129
21240
|
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
@@ -21253,6 +21364,16 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
|
21253
21364
|
* @memberof DoctorAffiliationsApi
|
|
21254
21365
|
*/
|
|
21255
21366
|
apiV1DoctoraffiliationsIdReactivePut(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21367
|
+
/**
|
|
21368
|
+
*
|
|
21369
|
+
* @summary Translate doctorAffiliation at once
|
|
21370
|
+
* @param {string} id
|
|
21371
|
+
* @param {TranslateDoctorAffiliationCommand} [translateDoctorAffiliationCommand]
|
|
21372
|
+
* @param {*} [options] Override http request option.
|
|
21373
|
+
* @throws {RequiredError}
|
|
21374
|
+
* @memberof DoctorAffiliationsApi
|
|
21375
|
+
*/
|
|
21376
|
+
apiV1DoctoraffiliationsIdTranslatePost(id: string, translateDoctorAffiliationCommand?: TranslateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21256
21377
|
/**
|
|
21257
21378
|
*
|
|
21258
21379
|
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
@@ -25079,6 +25200,15 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
25079
25200
|
* @throws {RequiredError}
|
|
25080
25201
|
*/
|
|
25081
25202
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivePut: (hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25203
|
+
/**
|
|
25204
|
+
*
|
|
25205
|
+
* @summary Translate hospital at once
|
|
25206
|
+
* @param {string} hospitalId
|
|
25207
|
+
* @param {TranslateHospitalCommand} [translateHospitalCommand]
|
|
25208
|
+
* @param {*} [options] Override http request option.
|
|
25209
|
+
* @throws {RequiredError}
|
|
25210
|
+
*/
|
|
25211
|
+
apiV1HospitalsHospitalIdTranslatePost: (hospitalId: string, translateHospitalCommand?: TranslateHospitalCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25082
25212
|
/**
|
|
25083
25213
|
*
|
|
25084
25214
|
* @summary Get all HospitalWorkingDays.
|
|
@@ -25915,6 +26045,15 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
25915
26045
|
* @throws {RequiredError}
|
|
25916
26046
|
*/
|
|
25917
26047
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivePut(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
26048
|
+
/**
|
|
26049
|
+
*
|
|
26050
|
+
* @summary Translate hospital at once
|
|
26051
|
+
* @param {string} hospitalId
|
|
26052
|
+
* @param {TranslateHospitalCommand} [translateHospitalCommand]
|
|
26053
|
+
* @param {*} [options] Override http request option.
|
|
26054
|
+
* @throws {RequiredError}
|
|
26055
|
+
*/
|
|
26056
|
+
apiV1HospitalsHospitalIdTranslatePost(hospitalId: string, translateHospitalCommand?: TranslateHospitalCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
25918
26057
|
/**
|
|
25919
26058
|
*
|
|
25920
26059
|
* @summary Get all HospitalWorkingDays.
|
|
@@ -26751,6 +26890,15 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
26751
26890
|
* @throws {RequiredError}
|
|
26752
26891
|
*/
|
|
26753
26892
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivePut(hospitalId: string, specialtyId: string, serviceId: string, options?: any): AxiosPromise<boolean>;
|
|
26893
|
+
/**
|
|
26894
|
+
*
|
|
26895
|
+
* @summary Translate hospital at once
|
|
26896
|
+
* @param {string} hospitalId
|
|
26897
|
+
* @param {TranslateHospitalCommand} [translateHospitalCommand]
|
|
26898
|
+
* @param {*} [options] Override http request option.
|
|
26899
|
+
* @throws {RequiredError}
|
|
26900
|
+
*/
|
|
26901
|
+
apiV1HospitalsHospitalIdTranslatePost(hospitalId: string, translateHospitalCommand?: TranslateHospitalCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
26754
26902
|
/**
|
|
26755
26903
|
*
|
|
26756
26904
|
* @summary Get all HospitalWorkingDays.
|
|
@@ -27655,6 +27803,16 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
27655
27803
|
* @memberof HospitalsApi
|
|
27656
27804
|
*/
|
|
27657
27805
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivePut(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
27806
|
+
/**
|
|
27807
|
+
*
|
|
27808
|
+
* @summary Translate hospital at once
|
|
27809
|
+
* @param {string} hospitalId
|
|
27810
|
+
* @param {TranslateHospitalCommand} [translateHospitalCommand]
|
|
27811
|
+
* @param {*} [options] Override http request option.
|
|
27812
|
+
* @throws {RequiredError}
|
|
27813
|
+
* @memberof HospitalsApi
|
|
27814
|
+
*/
|
|
27815
|
+
apiV1HospitalsHospitalIdTranslatePost(hospitalId: string, translateHospitalCommand?: TranslateHospitalCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
27658
27816
|
/**
|
|
27659
27817
|
*
|
|
27660
27818
|
* @summary Get all HospitalWorkingDays.
|