ch-admin-api-client-typescript 4.2.4 → 4.2.6
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 +172 -199
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +314 -378
- package/package.json +1 -1
- package/src/api.ts +324 -381
package/lib/api.d.ts
CHANGED
|
@@ -13046,12 +13046,6 @@ export interface UpdateHospitalWorkingDayCommand {
|
|
|
13046
13046
|
* @interface UpdateLanguageCommand
|
|
13047
13047
|
*/
|
|
13048
13048
|
export interface UpdateLanguageCommand {
|
|
13049
|
-
/**
|
|
13050
|
-
*
|
|
13051
|
-
* @type {string}
|
|
13052
|
-
* @memberof UpdateLanguageCommand
|
|
13053
|
-
*/
|
|
13054
|
-
'code'?: string | null;
|
|
13055
13049
|
/**
|
|
13056
13050
|
*
|
|
13057
13051
|
* @type {string}
|
|
@@ -19709,44 +19703,47 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
19709
19703
|
apiV1DoctorsDoctorIdGet: (doctorId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19710
19704
|
/**
|
|
19711
19705
|
*
|
|
19712
|
-
* @summary
|
|
19706
|
+
* @summary Delete DoctorLanguage
|
|
19713
19707
|
* @param {string} doctorId
|
|
19714
|
-
* @param {string}
|
|
19715
|
-
* @param {
|
|
19716
|
-
* @param {number} [limit]
|
|
19717
|
-
* @param {Date} [lastRetrieved]
|
|
19708
|
+
* @param {string} languageId
|
|
19709
|
+
* @param {string} code
|
|
19718
19710
|
* @param {*} [options] Override http request option.
|
|
19719
19711
|
* @throws {RequiredError}
|
|
19720
19712
|
*/
|
|
19721
|
-
|
|
19713
|
+
apiV1DoctorsDoctorIdLanguagesCodeDelete: (doctorId: string, languageId: string, code: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19722
19714
|
/**
|
|
19723
19715
|
*
|
|
19724
|
-
* @summary
|
|
19716
|
+
* @summary Get DoctorLanguage.
|
|
19725
19717
|
* @param {string} doctorId
|
|
19726
19718
|
* @param {string} languageId
|
|
19719
|
+
* @param {string} code
|
|
19727
19720
|
* @param {*} [options] Override http request option.
|
|
19728
19721
|
* @throws {RequiredError}
|
|
19729
19722
|
*/
|
|
19730
|
-
|
|
19723
|
+
apiV1DoctorsDoctorIdLanguagesCodeGet: (doctorId: string, languageId: string, code: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19731
19724
|
/**
|
|
19732
19725
|
*
|
|
19733
|
-
* @summary
|
|
19726
|
+
* @summary Update DoctorLanguage.
|
|
19734
19727
|
* @param {string} doctorId
|
|
19735
19728
|
* @param {string} languageId
|
|
19729
|
+
* @param {string} code
|
|
19730
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
19736
19731
|
* @param {*} [options] Override http request option.
|
|
19737
19732
|
* @throws {RequiredError}
|
|
19738
19733
|
*/
|
|
19739
|
-
|
|
19734
|
+
apiV1DoctorsDoctorIdLanguagesCodePut: (doctorId: string, languageId: string, code: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19740
19735
|
/**
|
|
19741
19736
|
*
|
|
19742
|
-
* @summary
|
|
19737
|
+
* @summary Get all DoctorLanguages.
|
|
19743
19738
|
* @param {string} doctorId
|
|
19744
|
-
* @param {string}
|
|
19745
|
-
* @param {
|
|
19739
|
+
* @param {string} [language]
|
|
19740
|
+
* @param {number} [page]
|
|
19741
|
+
* @param {number} [limit]
|
|
19742
|
+
* @param {Date} [lastRetrieved]
|
|
19746
19743
|
* @param {*} [options] Override http request option.
|
|
19747
19744
|
* @throws {RequiredError}
|
|
19748
19745
|
*/
|
|
19749
|
-
|
|
19746
|
+
apiV1DoctorsDoctorIdLanguagesGet: (doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19750
19747
|
/**
|
|
19751
19748
|
*
|
|
19752
19749
|
* @summary Create DoctorLanguage.
|
|
@@ -20099,44 +20096,47 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
20099
20096
|
apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
20100
20097
|
/**
|
|
20101
20098
|
*
|
|
20102
|
-
* @summary
|
|
20099
|
+
* @summary Delete DoctorLanguage
|
|
20103
20100
|
* @param {string} doctorId
|
|
20104
|
-
* @param {string}
|
|
20105
|
-
* @param {
|
|
20106
|
-
* @param {number} [limit]
|
|
20107
|
-
* @param {Date} [lastRetrieved]
|
|
20101
|
+
* @param {string} languageId
|
|
20102
|
+
* @param {string} code
|
|
20108
20103
|
* @param {*} [options] Override http request option.
|
|
20109
20104
|
* @throws {RequiredError}
|
|
20110
20105
|
*/
|
|
20111
|
-
|
|
20106
|
+
apiV1DoctorsDoctorIdLanguagesCodeDelete(doctorId: string, languageId: string, code: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
20112
20107
|
/**
|
|
20113
20108
|
*
|
|
20114
|
-
* @summary
|
|
20109
|
+
* @summary Get DoctorLanguage.
|
|
20115
20110
|
* @param {string} doctorId
|
|
20116
20111
|
* @param {string} languageId
|
|
20112
|
+
* @param {string} code
|
|
20117
20113
|
* @param {*} [options] Override http request option.
|
|
20118
20114
|
* @throws {RequiredError}
|
|
20119
20115
|
*/
|
|
20120
|
-
|
|
20116
|
+
apiV1DoctorsDoctorIdLanguagesCodeGet(doctorId: string, languageId: string, code: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguageModel>>;
|
|
20121
20117
|
/**
|
|
20122
20118
|
*
|
|
20123
|
-
* @summary
|
|
20119
|
+
* @summary Update DoctorLanguage.
|
|
20124
20120
|
* @param {string} doctorId
|
|
20125
20121
|
* @param {string} languageId
|
|
20122
|
+
* @param {string} code
|
|
20123
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20126
20124
|
* @param {*} [options] Override http request option.
|
|
20127
20125
|
* @throws {RequiredError}
|
|
20128
20126
|
*/
|
|
20129
|
-
|
|
20127
|
+
apiV1DoctorsDoctorIdLanguagesCodePut(doctorId: string, languageId: string, code: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguageModel>>;
|
|
20130
20128
|
/**
|
|
20131
20129
|
*
|
|
20132
|
-
* @summary
|
|
20130
|
+
* @summary Get all DoctorLanguages.
|
|
20133
20131
|
* @param {string} doctorId
|
|
20134
|
-
* @param {string}
|
|
20135
|
-
* @param {
|
|
20132
|
+
* @param {string} [language]
|
|
20133
|
+
* @param {number} [page]
|
|
20134
|
+
* @param {number} [limit]
|
|
20135
|
+
* @param {Date} [lastRetrieved]
|
|
20136
20136
|
* @param {*} [options] Override http request option.
|
|
20137
20137
|
* @throws {RequiredError}
|
|
20138
20138
|
*/
|
|
20139
|
-
|
|
20139
|
+
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguagesModel>>;
|
|
20140
20140
|
/**
|
|
20141
20141
|
*
|
|
20142
20142
|
* @summary Create DoctorLanguage.
|
|
@@ -20489,44 +20489,47 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
20489
20489
|
apiV1DoctorsDoctorIdGet(doctorId: string, options?: any): AxiosPromise<DoctorModel>;
|
|
20490
20490
|
/**
|
|
20491
20491
|
*
|
|
20492
|
-
* @summary
|
|
20492
|
+
* @summary Delete DoctorLanguage
|
|
20493
20493
|
* @param {string} doctorId
|
|
20494
|
-
* @param {string}
|
|
20495
|
-
* @param {
|
|
20496
|
-
* @param {number} [limit]
|
|
20497
|
-
* @param {Date} [lastRetrieved]
|
|
20494
|
+
* @param {string} languageId
|
|
20495
|
+
* @param {string} code
|
|
20498
20496
|
* @param {*} [options] Override http request option.
|
|
20499
20497
|
* @throws {RequiredError}
|
|
20500
20498
|
*/
|
|
20501
|
-
|
|
20499
|
+
apiV1DoctorsDoctorIdLanguagesCodeDelete(doctorId: string, languageId: string, code: string, options?: any): AxiosPromise<boolean>;
|
|
20502
20500
|
/**
|
|
20503
20501
|
*
|
|
20504
|
-
* @summary
|
|
20502
|
+
* @summary Get DoctorLanguage.
|
|
20505
20503
|
* @param {string} doctorId
|
|
20506
20504
|
* @param {string} languageId
|
|
20505
|
+
* @param {string} code
|
|
20507
20506
|
* @param {*} [options] Override http request option.
|
|
20508
20507
|
* @throws {RequiredError}
|
|
20509
20508
|
*/
|
|
20510
|
-
|
|
20509
|
+
apiV1DoctorsDoctorIdLanguagesCodeGet(doctorId: string, languageId: string, code: string, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
20511
20510
|
/**
|
|
20512
20511
|
*
|
|
20513
|
-
* @summary
|
|
20512
|
+
* @summary Update DoctorLanguage.
|
|
20514
20513
|
* @param {string} doctorId
|
|
20515
20514
|
* @param {string} languageId
|
|
20515
|
+
* @param {string} code
|
|
20516
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20516
20517
|
* @param {*} [options] Override http request option.
|
|
20517
20518
|
* @throws {RequiredError}
|
|
20518
20519
|
*/
|
|
20519
|
-
|
|
20520
|
+
apiV1DoctorsDoctorIdLanguagesCodePut(doctorId: string, languageId: string, code: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
20520
20521
|
/**
|
|
20521
20522
|
*
|
|
20522
|
-
* @summary
|
|
20523
|
+
* @summary Get all DoctorLanguages.
|
|
20523
20524
|
* @param {string} doctorId
|
|
20524
|
-
* @param {string}
|
|
20525
|
-
* @param {
|
|
20525
|
+
* @param {string} [language]
|
|
20526
|
+
* @param {number} [page]
|
|
20527
|
+
* @param {number} [limit]
|
|
20528
|
+
* @param {Date} [lastRetrieved]
|
|
20526
20529
|
* @param {*} [options] Override http request option.
|
|
20527
20530
|
* @throws {RequiredError}
|
|
20528
20531
|
*/
|
|
20529
|
-
|
|
20532
|
+
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorLanguagesModel>;
|
|
20530
20533
|
/**
|
|
20531
20534
|
*
|
|
20532
20535
|
* @summary Create DoctorLanguage.
|
|
@@ -20893,48 +20896,51 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20893
20896
|
apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
20894
20897
|
/**
|
|
20895
20898
|
*
|
|
20896
|
-
* @summary
|
|
20899
|
+
* @summary Delete DoctorLanguage
|
|
20897
20900
|
* @param {string} doctorId
|
|
20898
|
-
* @param {string}
|
|
20899
|
-
* @param {
|
|
20900
|
-
* @param {number} [limit]
|
|
20901
|
-
* @param {Date} [lastRetrieved]
|
|
20901
|
+
* @param {string} languageId
|
|
20902
|
+
* @param {string} code
|
|
20902
20903
|
* @param {*} [options] Override http request option.
|
|
20903
20904
|
* @throws {RequiredError}
|
|
20904
20905
|
* @memberof DoctorsApi
|
|
20905
20906
|
*/
|
|
20906
|
-
|
|
20907
|
+
apiV1DoctorsDoctorIdLanguagesCodeDelete(doctorId: string, languageId: string, code: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20907
20908
|
/**
|
|
20908
20909
|
*
|
|
20909
|
-
* @summary
|
|
20910
|
+
* @summary Get DoctorLanguage.
|
|
20910
20911
|
* @param {string} doctorId
|
|
20911
20912
|
* @param {string} languageId
|
|
20913
|
+
* @param {string} code
|
|
20912
20914
|
* @param {*} [options] Override http request option.
|
|
20913
20915
|
* @throws {RequiredError}
|
|
20914
20916
|
* @memberof DoctorsApi
|
|
20915
20917
|
*/
|
|
20916
|
-
|
|
20918
|
+
apiV1DoctorsDoctorIdLanguagesCodeGet(doctorId: string, languageId: string, code: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel>>;
|
|
20917
20919
|
/**
|
|
20918
20920
|
*
|
|
20919
|
-
* @summary
|
|
20921
|
+
* @summary Update DoctorLanguage.
|
|
20920
20922
|
* @param {string} doctorId
|
|
20921
20923
|
* @param {string} languageId
|
|
20924
|
+
* @param {string} code
|
|
20925
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20922
20926
|
* @param {*} [options] Override http request option.
|
|
20923
20927
|
* @throws {RequiredError}
|
|
20924
20928
|
* @memberof DoctorsApi
|
|
20925
20929
|
*/
|
|
20926
|
-
|
|
20930
|
+
apiV1DoctorsDoctorIdLanguagesCodePut(doctorId: string, languageId: string, code: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel>>;
|
|
20927
20931
|
/**
|
|
20928
20932
|
*
|
|
20929
|
-
* @summary
|
|
20933
|
+
* @summary Get all DoctorLanguages.
|
|
20930
20934
|
* @param {string} doctorId
|
|
20931
|
-
* @param {string}
|
|
20932
|
-
* @param {
|
|
20935
|
+
* @param {string} [language]
|
|
20936
|
+
* @param {number} [page]
|
|
20937
|
+
* @param {number} [limit]
|
|
20938
|
+
* @param {Date} [lastRetrieved]
|
|
20933
20939
|
* @param {*} [options] Override http request option.
|
|
20934
20940
|
* @throws {RequiredError}
|
|
20935
20941
|
* @memberof DoctorsApi
|
|
20936
20942
|
*/
|
|
20937
|
-
|
|
20943
|
+
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguagesModel>>;
|
|
20938
20944
|
/**
|
|
20939
20945
|
*
|
|
20940
20946
|
* @summary Create DoctorLanguage.
|
|
@@ -22659,25 +22665,26 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
22659
22665
|
apiV1HospitalsHospitalIdHandlesPost: (hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22660
22666
|
/**
|
|
22661
22667
|
*
|
|
22662
|
-
* @summary
|
|
22668
|
+
* @summary Delete GetAllLanguage.
|
|
22663
22669
|
* @param {string} hospitalId
|
|
22664
|
-
* @param {string}
|
|
22665
|
-
* @param {
|
|
22666
|
-
* @param {number} [limit]
|
|
22667
|
-
* @param {Date} [lastRetrieved]
|
|
22670
|
+
* @param {string} languageCode
|
|
22671
|
+
* @param {string} code
|
|
22668
22672
|
* @param {*} [options] Override http request option.
|
|
22669
22673
|
* @throws {RequiredError}
|
|
22670
22674
|
*/
|
|
22671
|
-
|
|
22675
|
+
apiV1HospitalsHospitalIdLanguagesCodeDelete: (hospitalId: string, languageCode: string, code: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22672
22676
|
/**
|
|
22673
22677
|
*
|
|
22674
|
-
* @summary
|
|
22678
|
+
* @summary Get all GetAllLanguages.
|
|
22675
22679
|
* @param {string} hospitalId
|
|
22676
|
-
* @param {string}
|
|
22680
|
+
* @param {string} [name]
|
|
22681
|
+
* @param {number} [page]
|
|
22682
|
+
* @param {number} [limit]
|
|
22683
|
+
* @param {Date} [lastRetrieved]
|
|
22677
22684
|
* @param {*} [options] Override http request option.
|
|
22678
22685
|
* @throws {RequiredError}
|
|
22679
22686
|
*/
|
|
22680
|
-
|
|
22687
|
+
apiV1HospitalsHospitalIdLanguagesGet: (hospitalId: string, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22681
22688
|
/**
|
|
22682
22689
|
*
|
|
22683
22690
|
* @summary Create HospitalLanguages.
|
|
@@ -23423,25 +23430,26 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
23423
23430
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
23424
23431
|
/**
|
|
23425
23432
|
*
|
|
23426
|
-
* @summary
|
|
23433
|
+
* @summary Delete GetAllLanguage.
|
|
23427
23434
|
* @param {string} hospitalId
|
|
23428
|
-
* @param {string}
|
|
23429
|
-
* @param {
|
|
23430
|
-
* @param {number} [limit]
|
|
23431
|
-
* @param {Date} [lastRetrieved]
|
|
23435
|
+
* @param {string} languageCode
|
|
23436
|
+
* @param {string} code
|
|
23432
23437
|
* @param {*} [options] Override http request option.
|
|
23433
23438
|
* @throws {RequiredError}
|
|
23434
23439
|
*/
|
|
23435
|
-
|
|
23440
|
+
apiV1HospitalsHospitalIdLanguagesCodeDelete(hospitalId: string, languageCode: string, code: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
23436
23441
|
/**
|
|
23437
23442
|
*
|
|
23438
|
-
* @summary
|
|
23443
|
+
* @summary Get all GetAllLanguages.
|
|
23439
23444
|
* @param {string} hospitalId
|
|
23440
|
-
* @param {string}
|
|
23445
|
+
* @param {string} [name]
|
|
23446
|
+
* @param {number} [page]
|
|
23447
|
+
* @param {number} [limit]
|
|
23448
|
+
* @param {Date} [lastRetrieved]
|
|
23441
23449
|
* @param {*} [options] Override http request option.
|
|
23442
23450
|
* @throws {RequiredError}
|
|
23443
23451
|
*/
|
|
23444
|
-
|
|
23452
|
+
apiV1HospitalsHospitalIdLanguagesGet(hospitalId: string, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalLanguagesModel>>;
|
|
23445
23453
|
/**
|
|
23446
23454
|
*
|
|
23447
23455
|
* @summary Create HospitalLanguages.
|
|
@@ -24187,25 +24195,26 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
24187
24195
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
|
|
24188
24196
|
/**
|
|
24189
24197
|
*
|
|
24190
|
-
* @summary
|
|
24198
|
+
* @summary Delete GetAllLanguage.
|
|
24191
24199
|
* @param {string} hospitalId
|
|
24192
|
-
* @param {string}
|
|
24193
|
-
* @param {
|
|
24194
|
-
* @param {number} [limit]
|
|
24195
|
-
* @param {Date} [lastRetrieved]
|
|
24200
|
+
* @param {string} languageCode
|
|
24201
|
+
* @param {string} code
|
|
24196
24202
|
* @param {*} [options] Override http request option.
|
|
24197
24203
|
* @throws {RequiredError}
|
|
24198
24204
|
*/
|
|
24199
|
-
|
|
24205
|
+
apiV1HospitalsHospitalIdLanguagesCodeDelete(hospitalId: string, languageCode: string, code: string, options?: any): AxiosPromise<boolean>;
|
|
24200
24206
|
/**
|
|
24201
24207
|
*
|
|
24202
|
-
* @summary
|
|
24208
|
+
* @summary Get all GetAllLanguages.
|
|
24203
24209
|
* @param {string} hospitalId
|
|
24204
|
-
* @param {string}
|
|
24210
|
+
* @param {string} [name]
|
|
24211
|
+
* @param {number} [page]
|
|
24212
|
+
* @param {number} [limit]
|
|
24213
|
+
* @param {Date} [lastRetrieved]
|
|
24205
24214
|
* @param {*} [options] Override http request option.
|
|
24206
24215
|
* @throws {RequiredError}
|
|
24207
24216
|
*/
|
|
24208
|
-
|
|
24217
|
+
apiV1HospitalsHospitalIdLanguagesGet(hospitalId: string, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalLanguagesModel>;
|
|
24209
24218
|
/**
|
|
24210
24219
|
*
|
|
24211
24220
|
* @summary Create HospitalLanguages.
|
|
@@ -24980,27 +24989,28 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24980
24989
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
24981
24990
|
/**
|
|
24982
24991
|
*
|
|
24983
|
-
* @summary
|
|
24992
|
+
* @summary Delete GetAllLanguage.
|
|
24984
24993
|
* @param {string} hospitalId
|
|
24985
|
-
* @param {string}
|
|
24986
|
-
* @param {
|
|
24987
|
-
* @param {number} [limit]
|
|
24988
|
-
* @param {Date} [lastRetrieved]
|
|
24994
|
+
* @param {string} languageCode
|
|
24995
|
+
* @param {string} code
|
|
24989
24996
|
* @param {*} [options] Override http request option.
|
|
24990
24997
|
* @throws {RequiredError}
|
|
24991
24998
|
* @memberof HospitalsApi
|
|
24992
24999
|
*/
|
|
24993
|
-
|
|
25000
|
+
apiV1HospitalsHospitalIdLanguagesCodeDelete(hospitalId: string, languageCode: string, code: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
24994
25001
|
/**
|
|
24995
25002
|
*
|
|
24996
|
-
* @summary
|
|
25003
|
+
* @summary Get all GetAllLanguages.
|
|
24997
25004
|
* @param {string} hospitalId
|
|
24998
|
-
* @param {string}
|
|
25005
|
+
* @param {string} [name]
|
|
25006
|
+
* @param {number} [page]
|
|
25007
|
+
* @param {number} [limit]
|
|
25008
|
+
* @param {Date} [lastRetrieved]
|
|
24999
25009
|
* @param {*} [options] Override http request option.
|
|
25000
25010
|
* @throws {RequiredError}
|
|
25001
25011
|
* @memberof HospitalsApi
|
|
25002
25012
|
*/
|
|
25003
|
-
|
|
25013
|
+
apiV1HospitalsHospitalIdLanguagesGet(hospitalId: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalLanguagesModel>>;
|
|
25004
25014
|
/**
|
|
25005
25015
|
*
|
|
25006
25016
|
* @summary Create HospitalLanguages.
|
|
@@ -25544,50 +25554,41 @@ export declare class ImagesApi extends BaseAPI {
|
|
|
25544
25554
|
export declare const LanguagesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
25545
25555
|
/**
|
|
25546
25556
|
*
|
|
25547
|
-
* @summary Get Language by code.
|
|
25548
25557
|
* @param {string} code
|
|
25549
25558
|
* @param {*} [options] Override http request option.
|
|
25550
25559
|
* @throws {RequiredError}
|
|
25551
25560
|
*/
|
|
25552
|
-
|
|
25561
|
+
apiV1LanguagesCodeDelete: (code: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25553
25562
|
/**
|
|
25554
25563
|
*
|
|
25555
|
-
* @summary Get
|
|
25556
|
-
* @param {string}
|
|
25557
|
-
* @param {string} [name]
|
|
25558
|
-
* @param {string} [code]
|
|
25559
|
-
* @param {string} [description]
|
|
25560
|
-
* @param {boolean} [showPublished]
|
|
25561
|
-
* @param {number} [page]
|
|
25562
|
-
* @param {number} [limit]
|
|
25563
|
-
* @param {Date} [lastRetrieved]
|
|
25564
|
-
* @param {*} [options] Override http request option.
|
|
25565
|
-
* @throws {RequiredError}
|
|
25566
|
-
*/
|
|
25567
|
-
apiV1LanguagesGet: (id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, showPublished?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25568
|
-
/**
|
|
25569
|
-
*
|
|
25570
|
-
* @param {string} languageId
|
|
25564
|
+
* @summary Get Language.
|
|
25565
|
+
* @param {string} code
|
|
25571
25566
|
* @param {*} [options] Override http request option.
|
|
25572
25567
|
* @throws {RequiredError}
|
|
25573
25568
|
*/
|
|
25574
|
-
|
|
25569
|
+
apiV1LanguagesCodeGet: (code: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25575
25570
|
/**
|
|
25576
25571
|
*
|
|
25577
|
-
* @
|
|
25578
|
-
* @param {
|
|
25572
|
+
* @param {string} code
|
|
25573
|
+
* @param {UpdateLanguageCommand} [updateLanguageCommand]
|
|
25579
25574
|
* @param {*} [options] Override http request option.
|
|
25580
25575
|
* @throws {RequiredError}
|
|
25581
25576
|
*/
|
|
25582
|
-
|
|
25577
|
+
apiV1LanguagesCodePut: (code: string, updateLanguageCommand?: UpdateLanguageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25583
25578
|
/**
|
|
25584
25579
|
*
|
|
25585
|
-
* @
|
|
25586
|
-
* @param {
|
|
25580
|
+
* @summary Get all Languages.
|
|
25581
|
+
* @param {string} [code]
|
|
25582
|
+
* @param {string} [name]
|
|
25583
|
+
* @param {string} [description]
|
|
25584
|
+
* @param {boolean} [showPublished]
|
|
25585
|
+
* @param {number} [page]
|
|
25586
|
+
* @param {number} [limit]
|
|
25587
|
+
* @param {Date} [lastRetrieved]
|
|
25587
25588
|
* @param {*} [options] Override http request option.
|
|
25588
25589
|
* @throws {RequiredError}
|
|
25589
25590
|
*/
|
|
25590
|
-
|
|
25591
|
+
apiV1LanguagesGet: (code?: string | undefined, name?: string | undefined, description?: string | undefined, showPublished?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25591
25592
|
/**
|
|
25592
25593
|
*
|
|
25593
25594
|
* @param {CreateLanguageCommand} [createLanguageCommand]
|
|
@@ -25603,50 +25604,41 @@ export declare const LanguagesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
25603
25604
|
export declare const LanguagesApiFp: (configuration?: Configuration | undefined) => {
|
|
25604
25605
|
/**
|
|
25605
25606
|
*
|
|
25606
|
-
* @summary Get Language by code.
|
|
25607
25607
|
* @param {string} code
|
|
25608
25608
|
* @param {*} [options] Override http request option.
|
|
25609
25609
|
* @throws {RequiredError}
|
|
25610
25610
|
*/
|
|
25611
|
-
|
|
25612
|
-
/**
|
|
25613
|
-
*
|
|
25614
|
-
* @summary Get all Languages.
|
|
25615
|
-
* @param {string} [id]
|
|
25616
|
-
* @param {string} [name]
|
|
25617
|
-
* @param {string} [code]
|
|
25618
|
-
* @param {string} [description]
|
|
25619
|
-
* @param {boolean} [showPublished]
|
|
25620
|
-
* @param {number} [page]
|
|
25621
|
-
* @param {number} [limit]
|
|
25622
|
-
* @param {Date} [lastRetrieved]
|
|
25623
|
-
* @param {*} [options] Override http request option.
|
|
25624
|
-
* @throws {RequiredError}
|
|
25625
|
-
*/
|
|
25626
|
-
apiV1LanguagesGet(id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, showPublished?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguagesModel>>;
|
|
25611
|
+
apiV1LanguagesCodeDelete(code: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
25627
25612
|
/**
|
|
25628
25613
|
*
|
|
25629
|
-
* @
|
|
25614
|
+
* @summary Get Language.
|
|
25615
|
+
* @param {string} code
|
|
25630
25616
|
* @param {*} [options] Override http request option.
|
|
25631
25617
|
* @throws {RequiredError}
|
|
25632
25618
|
*/
|
|
25633
|
-
|
|
25619
|
+
apiV1LanguagesCodeGet(code: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguageModel>>;
|
|
25634
25620
|
/**
|
|
25635
25621
|
*
|
|
25636
|
-
* @
|
|
25637
|
-
* @param {
|
|
25622
|
+
* @param {string} code
|
|
25623
|
+
* @param {UpdateLanguageCommand} [updateLanguageCommand]
|
|
25638
25624
|
* @param {*} [options] Override http request option.
|
|
25639
25625
|
* @throws {RequiredError}
|
|
25640
25626
|
*/
|
|
25641
|
-
|
|
25627
|
+
apiV1LanguagesCodePut(code: string, updateLanguageCommand?: UpdateLanguageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguageModel>>;
|
|
25642
25628
|
/**
|
|
25643
25629
|
*
|
|
25644
|
-
* @
|
|
25645
|
-
* @param {
|
|
25630
|
+
* @summary Get all Languages.
|
|
25631
|
+
* @param {string} [code]
|
|
25632
|
+
* @param {string} [name]
|
|
25633
|
+
* @param {string} [description]
|
|
25634
|
+
* @param {boolean} [showPublished]
|
|
25635
|
+
* @param {number} [page]
|
|
25636
|
+
* @param {number} [limit]
|
|
25637
|
+
* @param {Date} [lastRetrieved]
|
|
25646
25638
|
* @param {*} [options] Override http request option.
|
|
25647
25639
|
* @throws {RequiredError}
|
|
25648
25640
|
*/
|
|
25649
|
-
|
|
25641
|
+
apiV1LanguagesGet(code?: string | undefined, name?: string | undefined, description?: string | undefined, showPublished?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguagesModel>>;
|
|
25650
25642
|
/**
|
|
25651
25643
|
*
|
|
25652
25644
|
* @param {CreateLanguageCommand} [createLanguageCommand]
|
|
@@ -25662,50 +25654,41 @@ export declare const LanguagesApiFp: (configuration?: Configuration | undefined)
|
|
|
25662
25654
|
export declare const LanguagesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
25663
25655
|
/**
|
|
25664
25656
|
*
|
|
25665
|
-
* @summary Get Language by code.
|
|
25666
25657
|
* @param {string} code
|
|
25667
25658
|
* @param {*} [options] Override http request option.
|
|
25668
25659
|
* @throws {RequiredError}
|
|
25669
25660
|
*/
|
|
25670
|
-
|
|
25671
|
-
/**
|
|
25672
|
-
*
|
|
25673
|
-
* @summary Get all Languages.
|
|
25674
|
-
* @param {string} [id]
|
|
25675
|
-
* @param {string} [name]
|
|
25676
|
-
* @param {string} [code]
|
|
25677
|
-
* @param {string} [description]
|
|
25678
|
-
* @param {boolean} [showPublished]
|
|
25679
|
-
* @param {number} [page]
|
|
25680
|
-
* @param {number} [limit]
|
|
25681
|
-
* @param {Date} [lastRetrieved]
|
|
25682
|
-
* @param {*} [options] Override http request option.
|
|
25683
|
-
* @throws {RequiredError}
|
|
25684
|
-
*/
|
|
25685
|
-
apiV1LanguagesGet(id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, showPublished?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<LanguagesModel>;
|
|
25661
|
+
apiV1LanguagesCodeDelete(code: string, options?: any): AxiosPromise<boolean>;
|
|
25686
25662
|
/**
|
|
25687
25663
|
*
|
|
25688
|
-
* @
|
|
25664
|
+
* @summary Get Language.
|
|
25665
|
+
* @param {string} code
|
|
25689
25666
|
* @param {*} [options] Override http request option.
|
|
25690
25667
|
* @throws {RequiredError}
|
|
25691
25668
|
*/
|
|
25692
|
-
|
|
25669
|
+
apiV1LanguagesCodeGet(code: string, options?: any): AxiosPromise<LanguageModel>;
|
|
25693
25670
|
/**
|
|
25694
25671
|
*
|
|
25695
|
-
* @
|
|
25696
|
-
* @param {
|
|
25672
|
+
* @param {string} code
|
|
25673
|
+
* @param {UpdateLanguageCommand} [updateLanguageCommand]
|
|
25697
25674
|
* @param {*} [options] Override http request option.
|
|
25698
25675
|
* @throws {RequiredError}
|
|
25699
25676
|
*/
|
|
25700
|
-
|
|
25677
|
+
apiV1LanguagesCodePut(code: string, updateLanguageCommand?: UpdateLanguageCommand | undefined, options?: any): AxiosPromise<LanguageModel>;
|
|
25701
25678
|
/**
|
|
25702
25679
|
*
|
|
25703
|
-
* @
|
|
25704
|
-
* @param {
|
|
25680
|
+
* @summary Get all Languages.
|
|
25681
|
+
* @param {string} [code]
|
|
25682
|
+
* @param {string} [name]
|
|
25683
|
+
* @param {string} [description]
|
|
25684
|
+
* @param {boolean} [showPublished]
|
|
25685
|
+
* @param {number} [page]
|
|
25686
|
+
* @param {number} [limit]
|
|
25687
|
+
* @param {Date} [lastRetrieved]
|
|
25705
25688
|
* @param {*} [options] Override http request option.
|
|
25706
25689
|
* @throws {RequiredError}
|
|
25707
25690
|
*/
|
|
25708
|
-
|
|
25691
|
+
apiV1LanguagesGet(code?: string | undefined, name?: string | undefined, description?: string | undefined, showPublished?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<LanguagesModel>;
|
|
25709
25692
|
/**
|
|
25710
25693
|
*
|
|
25711
25694
|
* @param {CreateLanguageCommand} [createLanguageCommand]
|
|
@@ -25723,55 +25706,45 @@ export declare const LanguagesApiFactory: (configuration?: Configuration | undef
|
|
|
25723
25706
|
export declare class LanguagesApi extends BaseAPI {
|
|
25724
25707
|
/**
|
|
25725
25708
|
*
|
|
25726
|
-
* @summary Get Language by code.
|
|
25727
25709
|
* @param {string} code
|
|
25728
25710
|
* @param {*} [options] Override http request option.
|
|
25729
25711
|
* @throws {RequiredError}
|
|
25730
25712
|
* @memberof LanguagesApi
|
|
25731
25713
|
*/
|
|
25732
|
-
|
|
25733
|
-
/**
|
|
25734
|
-
*
|
|
25735
|
-
* @summary Get all Languages.
|
|
25736
|
-
* @param {string} [id]
|
|
25737
|
-
* @param {string} [name]
|
|
25738
|
-
* @param {string} [code]
|
|
25739
|
-
* @param {string} [description]
|
|
25740
|
-
* @param {boolean} [showPublished]
|
|
25741
|
-
* @param {number} [page]
|
|
25742
|
-
* @param {number} [limit]
|
|
25743
|
-
* @param {Date} [lastRetrieved]
|
|
25744
|
-
* @param {*} [options] Override http request option.
|
|
25745
|
-
* @throws {RequiredError}
|
|
25746
|
-
* @memberof LanguagesApi
|
|
25747
|
-
*/
|
|
25748
|
-
apiV1LanguagesGet(id?: string, name?: string, code?: string, description?: string, showPublished?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguagesModel>>;
|
|
25714
|
+
apiV1LanguagesCodeDelete(code: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
25749
25715
|
/**
|
|
25750
25716
|
*
|
|
25751
|
-
* @
|
|
25717
|
+
* @summary Get Language.
|
|
25718
|
+
* @param {string} code
|
|
25752
25719
|
* @param {*} [options] Override http request option.
|
|
25753
25720
|
* @throws {RequiredError}
|
|
25754
25721
|
* @memberof LanguagesApi
|
|
25755
25722
|
*/
|
|
25756
|
-
|
|
25723
|
+
apiV1LanguagesCodeGet(code: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel>>;
|
|
25757
25724
|
/**
|
|
25758
25725
|
*
|
|
25759
|
-
* @
|
|
25760
|
-
* @param {
|
|
25726
|
+
* @param {string} code
|
|
25727
|
+
* @param {UpdateLanguageCommand} [updateLanguageCommand]
|
|
25761
25728
|
* @param {*} [options] Override http request option.
|
|
25762
25729
|
* @throws {RequiredError}
|
|
25763
25730
|
* @memberof LanguagesApi
|
|
25764
25731
|
*/
|
|
25765
|
-
|
|
25732
|
+
apiV1LanguagesCodePut(code: string, updateLanguageCommand?: UpdateLanguageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel>>;
|
|
25766
25733
|
/**
|
|
25767
25734
|
*
|
|
25768
|
-
* @
|
|
25769
|
-
* @param {
|
|
25735
|
+
* @summary Get all Languages.
|
|
25736
|
+
* @param {string} [code]
|
|
25737
|
+
* @param {string} [name]
|
|
25738
|
+
* @param {string} [description]
|
|
25739
|
+
* @param {boolean} [showPublished]
|
|
25740
|
+
* @param {number} [page]
|
|
25741
|
+
* @param {number} [limit]
|
|
25742
|
+
* @param {Date} [lastRetrieved]
|
|
25770
25743
|
* @param {*} [options] Override http request option.
|
|
25771
25744
|
* @throws {RequiredError}
|
|
25772
25745
|
* @memberof LanguagesApi
|
|
25773
25746
|
*/
|
|
25774
|
-
|
|
25747
|
+
apiV1LanguagesGet(code?: string, name?: string, description?: string, showPublished?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguagesModel>>;
|
|
25775
25748
|
/**
|
|
25776
25749
|
*
|
|
25777
25750
|
* @param {CreateLanguageCommand} [createLanguageCommand]
|