ch-admin-api-client-typescript 4.2.8 → 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 +56 -68
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +105 -126
- package/package.json +1 -1
- package/src/api.ts +110 -131
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.
|