ch-admin-api-client-typescript 4.2.6 → 4.2.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 +92 -108
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +172 -200
- package/package.json +1 -1
- package/src/api.ts +181 -209
package/lib/api.d.ts
CHANGED
|
@@ -19703,47 +19703,44 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
19703
19703
|
apiV1DoctorsDoctorIdGet: (doctorId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19704
19704
|
/**
|
|
19705
19705
|
*
|
|
19706
|
-
* @summary
|
|
19706
|
+
* @summary Get all DoctorLanguages.
|
|
19707
19707
|
* @param {string} doctorId
|
|
19708
|
-
* @param {string}
|
|
19709
|
-
* @param {
|
|
19708
|
+
* @param {string} [language]
|
|
19709
|
+
* @param {number} [page]
|
|
19710
|
+
* @param {number} [limit]
|
|
19711
|
+
* @param {Date} [lastRetrieved]
|
|
19710
19712
|
* @param {*} [options] Override http request option.
|
|
19711
19713
|
* @throws {RequiredError}
|
|
19712
19714
|
*/
|
|
19713
|
-
|
|
19715
|
+
apiV1DoctorsDoctorIdLanguagesGet: (doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19714
19716
|
/**
|
|
19715
19717
|
*
|
|
19716
|
-
* @summary
|
|
19718
|
+
* @summary Delete DoctorLanguage
|
|
19717
19719
|
* @param {string} doctorId
|
|
19718
19720
|
* @param {string} languageId
|
|
19719
|
-
* @param {string} code
|
|
19720
19721
|
* @param {*} [options] Override http request option.
|
|
19721
19722
|
* @throws {RequiredError}
|
|
19722
19723
|
*/
|
|
19723
|
-
|
|
19724
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete: (doctorId: string, languageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19724
19725
|
/**
|
|
19725
19726
|
*
|
|
19726
|
-
* @summary
|
|
19727
|
+
* @summary Get DoctorLanguage.
|
|
19727
19728
|
* @param {string} doctorId
|
|
19728
19729
|
* @param {string} languageId
|
|
19729
|
-
* @param {string} code
|
|
19730
|
-
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
19731
19730
|
* @param {*} [options] Override http request option.
|
|
19732
19731
|
* @throws {RequiredError}
|
|
19733
19732
|
*/
|
|
19734
|
-
|
|
19733
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdGet: (doctorId: string, languageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19735
19734
|
/**
|
|
19736
19735
|
*
|
|
19737
|
-
* @summary
|
|
19736
|
+
* @summary Update DoctorLanguage.
|
|
19738
19737
|
* @param {string} doctorId
|
|
19739
|
-
* @param {string}
|
|
19740
|
-
* @param {
|
|
19741
|
-
* @param {number} [limit]
|
|
19742
|
-
* @param {Date} [lastRetrieved]
|
|
19738
|
+
* @param {string} languageId
|
|
19739
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
19743
19740
|
* @param {*} [options] Override http request option.
|
|
19744
19741
|
* @throws {RequiredError}
|
|
19745
19742
|
*/
|
|
19746
|
-
|
|
19743
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdPut: (doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19747
19744
|
/**
|
|
19748
19745
|
*
|
|
19749
19746
|
* @summary Create DoctorLanguage.
|
|
@@ -20096,47 +20093,44 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
20096
20093
|
apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
20097
20094
|
/**
|
|
20098
20095
|
*
|
|
20099
|
-
* @summary
|
|
20096
|
+
* @summary Get all DoctorLanguages.
|
|
20100
20097
|
* @param {string} doctorId
|
|
20101
|
-
* @param {string}
|
|
20102
|
-
* @param {
|
|
20098
|
+
* @param {string} [language]
|
|
20099
|
+
* @param {number} [page]
|
|
20100
|
+
* @param {number} [limit]
|
|
20101
|
+
* @param {Date} [lastRetrieved]
|
|
20103
20102
|
* @param {*} [options] Override http request option.
|
|
20104
20103
|
* @throws {RequiredError}
|
|
20105
20104
|
*/
|
|
20106
|
-
|
|
20105
|
+
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>>;
|
|
20107
20106
|
/**
|
|
20108
20107
|
*
|
|
20109
|
-
* @summary
|
|
20108
|
+
* @summary Delete DoctorLanguage
|
|
20110
20109
|
* @param {string} doctorId
|
|
20111
20110
|
* @param {string} languageId
|
|
20112
|
-
* @param {string} code
|
|
20113
20111
|
* @param {*} [options] Override http request option.
|
|
20114
20112
|
* @throws {RequiredError}
|
|
20115
20113
|
*/
|
|
20116
|
-
|
|
20114
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete(doctorId: string, languageId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
20117
20115
|
/**
|
|
20118
20116
|
*
|
|
20119
|
-
* @summary
|
|
20117
|
+
* @summary Get DoctorLanguage.
|
|
20120
20118
|
* @param {string} doctorId
|
|
20121
20119
|
* @param {string} languageId
|
|
20122
|
-
* @param {string} code
|
|
20123
|
-
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20124
20120
|
* @param {*} [options] Override http request option.
|
|
20125
20121
|
* @throws {RequiredError}
|
|
20126
20122
|
*/
|
|
20127
|
-
|
|
20123
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguageModel>>;
|
|
20128
20124
|
/**
|
|
20129
20125
|
*
|
|
20130
|
-
* @summary
|
|
20126
|
+
* @summary Update DoctorLanguage.
|
|
20131
20127
|
* @param {string} doctorId
|
|
20132
|
-
* @param {string}
|
|
20133
|
-
* @param {
|
|
20134
|
-
* @param {number} [limit]
|
|
20135
|
-
* @param {Date} [lastRetrieved]
|
|
20128
|
+
* @param {string} languageId
|
|
20129
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20136
20130
|
* @param {*} [options] Override http request option.
|
|
20137
20131
|
* @throws {RequiredError}
|
|
20138
20132
|
*/
|
|
20139
|
-
|
|
20133
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdPut(doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguageModel>>;
|
|
20140
20134
|
/**
|
|
20141
20135
|
*
|
|
20142
20136
|
* @summary Create DoctorLanguage.
|
|
@@ -20489,47 +20483,44 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
20489
20483
|
apiV1DoctorsDoctorIdGet(doctorId: string, options?: any): AxiosPromise<DoctorModel>;
|
|
20490
20484
|
/**
|
|
20491
20485
|
*
|
|
20492
|
-
* @summary
|
|
20486
|
+
* @summary Get all DoctorLanguages.
|
|
20493
20487
|
* @param {string} doctorId
|
|
20494
|
-
* @param {string}
|
|
20495
|
-
* @param {
|
|
20488
|
+
* @param {string} [language]
|
|
20489
|
+
* @param {number} [page]
|
|
20490
|
+
* @param {number} [limit]
|
|
20491
|
+
* @param {Date} [lastRetrieved]
|
|
20496
20492
|
* @param {*} [options] Override http request option.
|
|
20497
20493
|
* @throws {RequiredError}
|
|
20498
20494
|
*/
|
|
20499
|
-
|
|
20495
|
+
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorLanguagesModel>;
|
|
20500
20496
|
/**
|
|
20501
20497
|
*
|
|
20502
|
-
* @summary
|
|
20498
|
+
* @summary Delete DoctorLanguage
|
|
20503
20499
|
* @param {string} doctorId
|
|
20504
20500
|
* @param {string} languageId
|
|
20505
|
-
* @param {string} code
|
|
20506
20501
|
* @param {*} [options] Override http request option.
|
|
20507
20502
|
* @throws {RequiredError}
|
|
20508
20503
|
*/
|
|
20509
|
-
|
|
20504
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete(doctorId: string, languageId: string, options?: any): AxiosPromise<boolean>;
|
|
20510
20505
|
/**
|
|
20511
20506
|
*
|
|
20512
|
-
* @summary
|
|
20507
|
+
* @summary Get DoctorLanguage.
|
|
20513
20508
|
* @param {string} doctorId
|
|
20514
20509
|
* @param {string} languageId
|
|
20515
|
-
* @param {string} code
|
|
20516
|
-
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20517
20510
|
* @param {*} [options] Override http request option.
|
|
20518
20511
|
* @throws {RequiredError}
|
|
20519
20512
|
*/
|
|
20520
|
-
|
|
20513
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
20521
20514
|
/**
|
|
20522
20515
|
*
|
|
20523
|
-
* @summary
|
|
20516
|
+
* @summary Update DoctorLanguage.
|
|
20524
20517
|
* @param {string} doctorId
|
|
20525
|
-
* @param {string}
|
|
20526
|
-
* @param {
|
|
20527
|
-
* @param {number} [limit]
|
|
20528
|
-
* @param {Date} [lastRetrieved]
|
|
20518
|
+
* @param {string} languageId
|
|
20519
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20529
20520
|
* @param {*} [options] Override http request option.
|
|
20530
20521
|
* @throws {RequiredError}
|
|
20531
20522
|
*/
|
|
20532
|
-
|
|
20523
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdPut(doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
20533
20524
|
/**
|
|
20534
20525
|
*
|
|
20535
20526
|
* @summary Create DoctorLanguage.
|
|
@@ -20896,51 +20887,48 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20896
20887
|
apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
20897
20888
|
/**
|
|
20898
20889
|
*
|
|
20899
|
-
* @summary
|
|
20890
|
+
* @summary Get all DoctorLanguages.
|
|
20900
20891
|
* @param {string} doctorId
|
|
20901
|
-
* @param {string}
|
|
20902
|
-
* @param {
|
|
20892
|
+
* @param {string} [language]
|
|
20893
|
+
* @param {number} [page]
|
|
20894
|
+
* @param {number} [limit]
|
|
20895
|
+
* @param {Date} [lastRetrieved]
|
|
20903
20896
|
* @param {*} [options] Override http request option.
|
|
20904
20897
|
* @throws {RequiredError}
|
|
20905
20898
|
* @memberof DoctorsApi
|
|
20906
20899
|
*/
|
|
20907
|
-
|
|
20900
|
+
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguagesModel>>;
|
|
20908
20901
|
/**
|
|
20909
20902
|
*
|
|
20910
|
-
* @summary
|
|
20903
|
+
* @summary Delete DoctorLanguage
|
|
20911
20904
|
* @param {string} doctorId
|
|
20912
20905
|
* @param {string} languageId
|
|
20913
|
-
* @param {string} code
|
|
20914
20906
|
* @param {*} [options] Override http request option.
|
|
20915
20907
|
* @throws {RequiredError}
|
|
20916
20908
|
* @memberof DoctorsApi
|
|
20917
20909
|
*/
|
|
20918
|
-
|
|
20910
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete(doctorId: string, languageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20919
20911
|
/**
|
|
20920
20912
|
*
|
|
20921
|
-
* @summary
|
|
20913
|
+
* @summary Get DoctorLanguage.
|
|
20922
20914
|
* @param {string} doctorId
|
|
20923
20915
|
* @param {string} languageId
|
|
20924
|
-
* @param {string} code
|
|
20925
|
-
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20926
20916
|
* @param {*} [options] Override http request option.
|
|
20927
20917
|
* @throws {RequiredError}
|
|
20928
20918
|
* @memberof DoctorsApi
|
|
20929
20919
|
*/
|
|
20930
|
-
|
|
20920
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel>>;
|
|
20931
20921
|
/**
|
|
20932
20922
|
*
|
|
20933
|
-
* @summary
|
|
20923
|
+
* @summary Update DoctorLanguage.
|
|
20934
20924
|
* @param {string} doctorId
|
|
20935
|
-
* @param {string}
|
|
20936
|
-
* @param {
|
|
20937
|
-
* @param {number} [limit]
|
|
20938
|
-
* @param {Date} [lastRetrieved]
|
|
20925
|
+
* @param {string} languageId
|
|
20926
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20939
20927
|
* @param {*} [options] Override http request option.
|
|
20940
20928
|
* @throws {RequiredError}
|
|
20941
20929
|
* @memberof DoctorsApi
|
|
20942
20930
|
*/
|
|
20943
|
-
|
|
20931
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdPut(doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel>>;
|
|
20944
20932
|
/**
|
|
20945
20933
|
*
|
|
20946
20934
|
* @summary Create DoctorLanguage.
|
|
@@ -22663,16 +22651,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
22663
22651
|
* @throws {RequiredError}
|
|
22664
22652
|
*/
|
|
22665
22653
|
apiV1HospitalsHospitalIdHandlesPost: (hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22666
|
-
/**
|
|
22667
|
-
*
|
|
22668
|
-
* @summary Delete GetAllLanguage.
|
|
22669
|
-
* @param {string} hospitalId
|
|
22670
|
-
* @param {string} languageCode
|
|
22671
|
-
* @param {string} code
|
|
22672
|
-
* @param {*} [options] Override http request option.
|
|
22673
|
-
* @throws {RequiredError}
|
|
22674
|
-
*/
|
|
22675
|
-
apiV1HospitalsHospitalIdLanguagesCodeDelete: (hospitalId: string, languageCode: string, code: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22676
22654
|
/**
|
|
22677
22655
|
*
|
|
22678
22656
|
* @summary Get all GetAllLanguages.
|
|
@@ -22685,6 +22663,15 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
22685
22663
|
* @throws {RequiredError}
|
|
22686
22664
|
*/
|
|
22687
22665
|
apiV1HospitalsHospitalIdLanguagesGet: (hospitalId: string, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22666
|
+
/**
|
|
22667
|
+
*
|
|
22668
|
+
* @summary Delete GetAllLanguage.
|
|
22669
|
+
* @param {string} hospitalId
|
|
22670
|
+
* @param {string} languageCode
|
|
22671
|
+
* @param {*} [options] Override http request option.
|
|
22672
|
+
* @throws {RequiredError}
|
|
22673
|
+
*/
|
|
22674
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete: (hospitalId: string, languageCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22688
22675
|
/**
|
|
22689
22676
|
*
|
|
22690
22677
|
* @summary Create HospitalLanguages.
|
|
@@ -23428,16 +23415,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
23428
23415
|
* @throws {RequiredError}
|
|
23429
23416
|
*/
|
|
23430
23417
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
23431
|
-
/**
|
|
23432
|
-
*
|
|
23433
|
-
* @summary Delete GetAllLanguage.
|
|
23434
|
-
* @param {string} hospitalId
|
|
23435
|
-
* @param {string} languageCode
|
|
23436
|
-
* @param {string} code
|
|
23437
|
-
* @param {*} [options] Override http request option.
|
|
23438
|
-
* @throws {RequiredError}
|
|
23439
|
-
*/
|
|
23440
|
-
apiV1HospitalsHospitalIdLanguagesCodeDelete(hospitalId: string, languageCode: string, code: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
23441
23418
|
/**
|
|
23442
23419
|
*
|
|
23443
23420
|
* @summary Get all GetAllLanguages.
|
|
@@ -23450,6 +23427,15 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
23450
23427
|
* @throws {RequiredError}
|
|
23451
23428
|
*/
|
|
23452
23429
|
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>>;
|
|
23430
|
+
/**
|
|
23431
|
+
*
|
|
23432
|
+
* @summary Delete GetAllLanguage.
|
|
23433
|
+
* @param {string} hospitalId
|
|
23434
|
+
* @param {string} languageCode
|
|
23435
|
+
* @param {*} [options] Override http request option.
|
|
23436
|
+
* @throws {RequiredError}
|
|
23437
|
+
*/
|
|
23438
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
23453
23439
|
/**
|
|
23454
23440
|
*
|
|
23455
23441
|
* @summary Create HospitalLanguages.
|
|
@@ -24193,16 +24179,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
24193
24179
|
* @throws {RequiredError}
|
|
24194
24180
|
*/
|
|
24195
24181
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
|
|
24196
|
-
/**
|
|
24197
|
-
*
|
|
24198
|
-
* @summary Delete GetAllLanguage.
|
|
24199
|
-
* @param {string} hospitalId
|
|
24200
|
-
* @param {string} languageCode
|
|
24201
|
-
* @param {string} code
|
|
24202
|
-
* @param {*} [options] Override http request option.
|
|
24203
|
-
* @throws {RequiredError}
|
|
24204
|
-
*/
|
|
24205
|
-
apiV1HospitalsHospitalIdLanguagesCodeDelete(hospitalId: string, languageCode: string, code: string, options?: any): AxiosPromise<boolean>;
|
|
24206
24182
|
/**
|
|
24207
24183
|
*
|
|
24208
24184
|
* @summary Get all GetAllLanguages.
|
|
@@ -24215,6 +24191,15 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
24215
24191
|
* @throws {RequiredError}
|
|
24216
24192
|
*/
|
|
24217
24193
|
apiV1HospitalsHospitalIdLanguagesGet(hospitalId: string, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalLanguagesModel>;
|
|
24194
|
+
/**
|
|
24195
|
+
*
|
|
24196
|
+
* @summary Delete GetAllLanguage.
|
|
24197
|
+
* @param {string} hospitalId
|
|
24198
|
+
* @param {string} languageCode
|
|
24199
|
+
* @param {*} [options] Override http request option.
|
|
24200
|
+
* @throws {RequiredError}
|
|
24201
|
+
*/
|
|
24202
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: any): AxiosPromise<boolean>;
|
|
24218
24203
|
/**
|
|
24219
24204
|
*
|
|
24220
24205
|
* @summary Create HospitalLanguages.
|
|
@@ -24989,28 +24974,27 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24989
24974
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
24990
24975
|
/**
|
|
24991
24976
|
*
|
|
24992
|
-
* @summary
|
|
24977
|
+
* @summary Get all GetAllLanguages.
|
|
24993
24978
|
* @param {string} hospitalId
|
|
24994
|
-
* @param {string}
|
|
24995
|
-
* @param {
|
|
24979
|
+
* @param {string} [name]
|
|
24980
|
+
* @param {number} [page]
|
|
24981
|
+
* @param {number} [limit]
|
|
24982
|
+
* @param {Date} [lastRetrieved]
|
|
24996
24983
|
* @param {*} [options] Override http request option.
|
|
24997
24984
|
* @throws {RequiredError}
|
|
24998
24985
|
* @memberof HospitalsApi
|
|
24999
24986
|
*/
|
|
25000
|
-
|
|
24987
|
+
apiV1HospitalsHospitalIdLanguagesGet(hospitalId: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalLanguagesModel>>;
|
|
25001
24988
|
/**
|
|
25002
24989
|
*
|
|
25003
|
-
* @summary
|
|
24990
|
+
* @summary Delete GetAllLanguage.
|
|
25004
24991
|
* @param {string} hospitalId
|
|
25005
|
-
* @param {string}
|
|
25006
|
-
* @param {number} [page]
|
|
25007
|
-
* @param {number} [limit]
|
|
25008
|
-
* @param {Date} [lastRetrieved]
|
|
24992
|
+
* @param {string} languageCode
|
|
25009
24993
|
* @param {*} [options] Override http request option.
|
|
25010
24994
|
* @throws {RequiredError}
|
|
25011
24995
|
* @memberof HospitalsApi
|
|
25012
24996
|
*/
|
|
25013
|
-
|
|
24997
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
25014
24998
|
/**
|
|
25015
24999
|
*
|
|
25016
25000
|
* @summary Create HospitalLanguages.
|