ch-admin-api-client-typescript 4.2.7 → 4.2.10
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 +96 -80
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +137 -151
- package/package.json +1 -1
- package/src/api.ts +168 -156
package/lib/api.d.ts
CHANGED
|
@@ -5803,6 +5803,18 @@ export interface DoctorAffiliationItemModel {
|
|
|
5803
5803
|
* @memberof DoctorAffiliationItemModel
|
|
5804
5804
|
*/
|
|
5805
5805
|
'hospitalSlug'?: string | null;
|
|
5806
|
+
/**
|
|
5807
|
+
*
|
|
5808
|
+
* @type {string}
|
|
5809
|
+
* @memberof DoctorAffiliationItemModel
|
|
5810
|
+
*/
|
|
5811
|
+
'countryId'?: string;
|
|
5812
|
+
/**
|
|
5813
|
+
*
|
|
5814
|
+
* @type {MarketingType}
|
|
5815
|
+
* @memberof DoctorAffiliationItemModel
|
|
5816
|
+
*/
|
|
5817
|
+
'marketingType'?: MarketingType;
|
|
5806
5818
|
/**
|
|
5807
5819
|
*
|
|
5808
5820
|
* @type {string}
|
|
@@ -5900,6 +5912,18 @@ export interface DoctorAffiliationModel {
|
|
|
5900
5912
|
* @memberof DoctorAffiliationModel
|
|
5901
5913
|
*/
|
|
5902
5914
|
'hospitalSlug'?: string | null;
|
|
5915
|
+
/**
|
|
5916
|
+
*
|
|
5917
|
+
* @type {string}
|
|
5918
|
+
* @memberof DoctorAffiliationModel
|
|
5919
|
+
*/
|
|
5920
|
+
'countryId'?: string;
|
|
5921
|
+
/**
|
|
5922
|
+
*
|
|
5923
|
+
* @type {MarketingType}
|
|
5924
|
+
* @memberof DoctorAffiliationModel
|
|
5925
|
+
*/
|
|
5926
|
+
'marketingType'?: MarketingType;
|
|
5903
5927
|
/**
|
|
5904
5928
|
*
|
|
5905
5929
|
* @type {string}
|
|
@@ -19199,6 +19223,8 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
19199
19223
|
* @param {string} [doctorName]
|
|
19200
19224
|
* @param {string} [doctorSlug]
|
|
19201
19225
|
* @param {string} [specialtyId]
|
|
19226
|
+
* @param {MarketingType} [marketingType]
|
|
19227
|
+
* @param {string} [countryId]
|
|
19202
19228
|
* @param {string} [languageCode]
|
|
19203
19229
|
* @param {boolean} [showHidden]
|
|
19204
19230
|
* @param {number} [page]
|
|
@@ -19207,7 +19233,7 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
19207
19233
|
* @param {*} [options] Override http request option.
|
|
19208
19234
|
* @throws {RequiredError}
|
|
19209
19235
|
*/
|
|
19210
|
-
apiV1DoctoraffiliationsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, specialtyId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19236
|
+
apiV1DoctoraffiliationsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, specialtyId?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19211
19237
|
/**
|
|
19212
19238
|
*
|
|
19213
19239
|
* @summary Delete doctor affiliation.
|
|
@@ -19306,6 +19332,8 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
19306
19332
|
* @param {string} [doctorName]
|
|
19307
19333
|
* @param {string} [doctorSlug]
|
|
19308
19334
|
* @param {string} [specialtyId]
|
|
19335
|
+
* @param {MarketingType} [marketingType]
|
|
19336
|
+
* @param {string} [countryId]
|
|
19309
19337
|
* @param {string} [languageCode]
|
|
19310
19338
|
* @param {boolean} [showHidden]
|
|
19311
19339
|
* @param {number} [page]
|
|
@@ -19314,7 +19342,7 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
19314
19342
|
* @param {*} [options] Override http request option.
|
|
19315
19343
|
* @throws {RequiredError}
|
|
19316
19344
|
*/
|
|
19317
|
-
apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, specialtyId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
19345
|
+
apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, specialtyId?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
19318
19346
|
/**
|
|
19319
19347
|
*
|
|
19320
19348
|
* @summary Delete doctor affiliation.
|
|
@@ -19413,6 +19441,8 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
19413
19441
|
* @param {string} [doctorName]
|
|
19414
19442
|
* @param {string} [doctorSlug]
|
|
19415
19443
|
* @param {string} [specialtyId]
|
|
19444
|
+
* @param {MarketingType} [marketingType]
|
|
19445
|
+
* @param {string} [countryId]
|
|
19416
19446
|
* @param {string} [languageCode]
|
|
19417
19447
|
* @param {boolean} [showHidden]
|
|
19418
19448
|
* @param {number} [page]
|
|
@@ -19421,7 +19451,7 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
19421
19451
|
* @param {*} [options] Override http request option.
|
|
19422
19452
|
* @throws {RequiredError}
|
|
19423
19453
|
*/
|
|
19424
|
-
apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, specialtyId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
19454
|
+
apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, specialtyId?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
19425
19455
|
/**
|
|
19426
19456
|
*
|
|
19427
19457
|
* @summary Delete doctor affiliation.
|
|
@@ -19527,6 +19557,8 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
|
19527
19557
|
* @param {string} [doctorName]
|
|
19528
19558
|
* @param {string} [doctorSlug]
|
|
19529
19559
|
* @param {string} [specialtyId]
|
|
19560
|
+
* @param {MarketingType} [marketingType]
|
|
19561
|
+
* @param {string} [countryId]
|
|
19530
19562
|
* @param {string} [languageCode]
|
|
19531
19563
|
* @param {boolean} [showHidden]
|
|
19532
19564
|
* @param {number} [page]
|
|
@@ -19536,7 +19568,7 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
|
19536
19568
|
* @throws {RequiredError}
|
|
19537
19569
|
* @memberof DoctorAffiliationsApi
|
|
19538
19570
|
*/
|
|
19539
|
-
apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel>>;
|
|
19571
|
+
apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, marketingType?: MarketingType, countryId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel>>;
|
|
19540
19572
|
/**
|
|
19541
19573
|
*
|
|
19542
19574
|
* @summary Delete doctor affiliation.
|
|
@@ -19703,47 +19735,44 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
19703
19735
|
apiV1DoctorsDoctorIdGet: (doctorId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19704
19736
|
/**
|
|
19705
19737
|
*
|
|
19706
|
-
* @summary
|
|
19738
|
+
* @summary Get all DoctorLanguages.
|
|
19707
19739
|
* @param {string} doctorId
|
|
19708
|
-
* @param {string}
|
|
19709
|
-
* @param {
|
|
19740
|
+
* @param {string} [language]
|
|
19741
|
+
* @param {number} [page]
|
|
19742
|
+
* @param {number} [limit]
|
|
19743
|
+
* @param {Date} [lastRetrieved]
|
|
19710
19744
|
* @param {*} [options] Override http request option.
|
|
19711
19745
|
* @throws {RequiredError}
|
|
19712
19746
|
*/
|
|
19713
|
-
|
|
19747
|
+
apiV1DoctorsDoctorIdLanguagesGet: (doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19714
19748
|
/**
|
|
19715
19749
|
*
|
|
19716
|
-
* @summary
|
|
19750
|
+
* @summary Delete DoctorLanguage
|
|
19717
19751
|
* @param {string} doctorId
|
|
19718
19752
|
* @param {string} languageId
|
|
19719
|
-
* @param {string} code
|
|
19720
19753
|
* @param {*} [options] Override http request option.
|
|
19721
19754
|
* @throws {RequiredError}
|
|
19722
19755
|
*/
|
|
19723
|
-
|
|
19756
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete: (doctorId: string, languageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19724
19757
|
/**
|
|
19725
19758
|
*
|
|
19726
|
-
* @summary
|
|
19759
|
+
* @summary Get DoctorLanguage.
|
|
19727
19760
|
* @param {string} doctorId
|
|
19728
19761
|
* @param {string} languageId
|
|
19729
|
-
* @param {string} code
|
|
19730
|
-
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
19731
19762
|
* @param {*} [options] Override http request option.
|
|
19732
19763
|
* @throws {RequiredError}
|
|
19733
19764
|
*/
|
|
19734
|
-
|
|
19765
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdGet: (doctorId: string, languageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19735
19766
|
/**
|
|
19736
19767
|
*
|
|
19737
|
-
* @summary
|
|
19768
|
+
* @summary Update DoctorLanguage.
|
|
19738
19769
|
* @param {string} doctorId
|
|
19739
|
-
* @param {string}
|
|
19740
|
-
* @param {
|
|
19741
|
-
* @param {number} [limit]
|
|
19742
|
-
* @param {Date} [lastRetrieved]
|
|
19770
|
+
* @param {string} languageId
|
|
19771
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
19743
19772
|
* @param {*} [options] Override http request option.
|
|
19744
19773
|
* @throws {RequiredError}
|
|
19745
19774
|
*/
|
|
19746
|
-
|
|
19775
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdPut: (doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19747
19776
|
/**
|
|
19748
19777
|
*
|
|
19749
19778
|
* @summary Create DoctorLanguage.
|
|
@@ -20096,47 +20125,44 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
20096
20125
|
apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
20097
20126
|
/**
|
|
20098
20127
|
*
|
|
20099
|
-
* @summary
|
|
20128
|
+
* @summary Get all DoctorLanguages.
|
|
20100
20129
|
* @param {string} doctorId
|
|
20101
|
-
* @param {string}
|
|
20102
|
-
* @param {
|
|
20130
|
+
* @param {string} [language]
|
|
20131
|
+
* @param {number} [page]
|
|
20132
|
+
* @param {number} [limit]
|
|
20133
|
+
* @param {Date} [lastRetrieved]
|
|
20103
20134
|
* @param {*} [options] Override http request option.
|
|
20104
20135
|
* @throws {RequiredError}
|
|
20105
20136
|
*/
|
|
20106
|
-
|
|
20137
|
+
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
20138
|
/**
|
|
20108
20139
|
*
|
|
20109
|
-
* @summary
|
|
20140
|
+
* @summary Delete DoctorLanguage
|
|
20110
20141
|
* @param {string} doctorId
|
|
20111
20142
|
* @param {string} languageId
|
|
20112
|
-
* @param {string} code
|
|
20113
20143
|
* @param {*} [options] Override http request option.
|
|
20114
20144
|
* @throws {RequiredError}
|
|
20115
20145
|
*/
|
|
20116
|
-
|
|
20146
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete(doctorId: string, languageId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
20117
20147
|
/**
|
|
20118
20148
|
*
|
|
20119
|
-
* @summary
|
|
20149
|
+
* @summary Get DoctorLanguage.
|
|
20120
20150
|
* @param {string} doctorId
|
|
20121
20151
|
* @param {string} languageId
|
|
20122
|
-
* @param {string} code
|
|
20123
|
-
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20124
20152
|
* @param {*} [options] Override http request option.
|
|
20125
20153
|
* @throws {RequiredError}
|
|
20126
20154
|
*/
|
|
20127
|
-
|
|
20155
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguageModel>>;
|
|
20128
20156
|
/**
|
|
20129
20157
|
*
|
|
20130
|
-
* @summary
|
|
20158
|
+
* @summary Update DoctorLanguage.
|
|
20131
20159
|
* @param {string} doctorId
|
|
20132
|
-
* @param {string}
|
|
20133
|
-
* @param {
|
|
20134
|
-
* @param {number} [limit]
|
|
20135
|
-
* @param {Date} [lastRetrieved]
|
|
20160
|
+
* @param {string} languageId
|
|
20161
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20136
20162
|
* @param {*} [options] Override http request option.
|
|
20137
20163
|
* @throws {RequiredError}
|
|
20138
20164
|
*/
|
|
20139
|
-
|
|
20165
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdPut(doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguageModel>>;
|
|
20140
20166
|
/**
|
|
20141
20167
|
*
|
|
20142
20168
|
* @summary Create DoctorLanguage.
|
|
@@ -20489,47 +20515,44 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
20489
20515
|
apiV1DoctorsDoctorIdGet(doctorId: string, options?: any): AxiosPromise<DoctorModel>;
|
|
20490
20516
|
/**
|
|
20491
20517
|
*
|
|
20492
|
-
* @summary
|
|
20518
|
+
* @summary Get all DoctorLanguages.
|
|
20493
20519
|
* @param {string} doctorId
|
|
20494
|
-
* @param {string}
|
|
20495
|
-
* @param {
|
|
20520
|
+
* @param {string} [language]
|
|
20521
|
+
* @param {number} [page]
|
|
20522
|
+
* @param {number} [limit]
|
|
20523
|
+
* @param {Date} [lastRetrieved]
|
|
20496
20524
|
* @param {*} [options] Override http request option.
|
|
20497
20525
|
* @throws {RequiredError}
|
|
20498
20526
|
*/
|
|
20499
|
-
|
|
20527
|
+
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorLanguagesModel>;
|
|
20500
20528
|
/**
|
|
20501
20529
|
*
|
|
20502
|
-
* @summary
|
|
20530
|
+
* @summary Delete DoctorLanguage
|
|
20503
20531
|
* @param {string} doctorId
|
|
20504
20532
|
* @param {string} languageId
|
|
20505
|
-
* @param {string} code
|
|
20506
20533
|
* @param {*} [options] Override http request option.
|
|
20507
20534
|
* @throws {RequiredError}
|
|
20508
20535
|
*/
|
|
20509
|
-
|
|
20536
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete(doctorId: string, languageId: string, options?: any): AxiosPromise<boolean>;
|
|
20510
20537
|
/**
|
|
20511
20538
|
*
|
|
20512
|
-
* @summary
|
|
20539
|
+
* @summary Get DoctorLanguage.
|
|
20513
20540
|
* @param {string} doctorId
|
|
20514
20541
|
* @param {string} languageId
|
|
20515
|
-
* @param {string} code
|
|
20516
|
-
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20517
20542
|
* @param {*} [options] Override http request option.
|
|
20518
20543
|
* @throws {RequiredError}
|
|
20519
20544
|
*/
|
|
20520
|
-
|
|
20545
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
20521
20546
|
/**
|
|
20522
20547
|
*
|
|
20523
|
-
* @summary
|
|
20548
|
+
* @summary Update DoctorLanguage.
|
|
20524
20549
|
* @param {string} doctorId
|
|
20525
|
-
* @param {string}
|
|
20526
|
-
* @param {
|
|
20527
|
-
* @param {number} [limit]
|
|
20528
|
-
* @param {Date} [lastRetrieved]
|
|
20550
|
+
* @param {string} languageId
|
|
20551
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20529
20552
|
* @param {*} [options] Override http request option.
|
|
20530
20553
|
* @throws {RequiredError}
|
|
20531
20554
|
*/
|
|
20532
|
-
|
|
20555
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdPut(doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
20533
20556
|
/**
|
|
20534
20557
|
*
|
|
20535
20558
|
* @summary Create DoctorLanguage.
|
|
@@ -20896,51 +20919,48 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20896
20919
|
apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
20897
20920
|
/**
|
|
20898
20921
|
*
|
|
20899
|
-
* @summary
|
|
20922
|
+
* @summary Get all DoctorLanguages.
|
|
20900
20923
|
* @param {string} doctorId
|
|
20901
|
-
* @param {string}
|
|
20902
|
-
* @param {
|
|
20924
|
+
* @param {string} [language]
|
|
20925
|
+
* @param {number} [page]
|
|
20926
|
+
* @param {number} [limit]
|
|
20927
|
+
* @param {Date} [lastRetrieved]
|
|
20903
20928
|
* @param {*} [options] Override http request option.
|
|
20904
20929
|
* @throws {RequiredError}
|
|
20905
20930
|
* @memberof DoctorsApi
|
|
20906
20931
|
*/
|
|
20907
|
-
|
|
20932
|
+
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguagesModel>>;
|
|
20908
20933
|
/**
|
|
20909
20934
|
*
|
|
20910
|
-
* @summary
|
|
20935
|
+
* @summary Delete DoctorLanguage
|
|
20911
20936
|
* @param {string} doctorId
|
|
20912
20937
|
* @param {string} languageId
|
|
20913
|
-
* @param {string} code
|
|
20914
20938
|
* @param {*} [options] Override http request option.
|
|
20915
20939
|
* @throws {RequiredError}
|
|
20916
20940
|
* @memberof DoctorsApi
|
|
20917
20941
|
*/
|
|
20918
|
-
|
|
20942
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete(doctorId: string, languageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20919
20943
|
/**
|
|
20920
20944
|
*
|
|
20921
|
-
* @summary
|
|
20945
|
+
* @summary Get DoctorLanguage.
|
|
20922
20946
|
* @param {string} doctorId
|
|
20923
20947
|
* @param {string} languageId
|
|
20924
|
-
* @param {string} code
|
|
20925
|
-
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20926
20948
|
* @param {*} [options] Override http request option.
|
|
20927
20949
|
* @throws {RequiredError}
|
|
20928
20950
|
* @memberof DoctorsApi
|
|
20929
20951
|
*/
|
|
20930
|
-
|
|
20952
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel>>;
|
|
20931
20953
|
/**
|
|
20932
20954
|
*
|
|
20933
|
-
* @summary
|
|
20955
|
+
* @summary Update DoctorLanguage.
|
|
20934
20956
|
* @param {string} doctorId
|
|
20935
|
-
* @param {string}
|
|
20936
|
-
* @param {
|
|
20937
|
-
* @param {number} [limit]
|
|
20938
|
-
* @param {Date} [lastRetrieved]
|
|
20957
|
+
* @param {string} languageId
|
|
20958
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20939
20959
|
* @param {*} [options] Override http request option.
|
|
20940
20960
|
* @throws {RequiredError}
|
|
20941
20961
|
* @memberof DoctorsApi
|
|
20942
20962
|
*/
|
|
20943
|
-
|
|
20963
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdPut(doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel>>;
|
|
20944
20964
|
/**
|
|
20945
20965
|
*
|
|
20946
20966
|
* @summary Create DoctorLanguage.
|
|
@@ -22680,11 +22700,10 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
22680
22700
|
* @summary Delete GetAllLanguage.
|
|
22681
22701
|
* @param {string} hospitalId
|
|
22682
22702
|
* @param {string} languageCode
|
|
22683
|
-
* @param {string} langaugeCode
|
|
22684
22703
|
* @param {*} [options] Override http request option.
|
|
22685
22704
|
* @throws {RequiredError}
|
|
22686
22705
|
*/
|
|
22687
|
-
|
|
22706
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete: (hospitalId: string, languageCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22688
22707
|
/**
|
|
22689
22708
|
*
|
|
22690
22709
|
* @summary Create HospitalLanguages.
|
|
@@ -23445,11 +23464,10 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
23445
23464
|
* @summary Delete GetAllLanguage.
|
|
23446
23465
|
* @param {string} hospitalId
|
|
23447
23466
|
* @param {string} languageCode
|
|
23448
|
-
* @param {string} langaugeCode
|
|
23449
23467
|
* @param {*} [options] Override http request option.
|
|
23450
23468
|
* @throws {RequiredError}
|
|
23451
23469
|
*/
|
|
23452
|
-
|
|
23470
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
23453
23471
|
/**
|
|
23454
23472
|
*
|
|
23455
23473
|
* @summary Create HospitalLanguages.
|
|
@@ -24210,11 +24228,10 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
24210
24228
|
* @summary Delete GetAllLanguage.
|
|
24211
24229
|
* @param {string} hospitalId
|
|
24212
24230
|
* @param {string} languageCode
|
|
24213
|
-
* @param {string} langaugeCode
|
|
24214
24231
|
* @param {*} [options] Override http request option.
|
|
24215
24232
|
* @throws {RequiredError}
|
|
24216
24233
|
*/
|
|
24217
|
-
|
|
24234
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: any): AxiosPromise<boolean>;
|
|
24218
24235
|
/**
|
|
24219
24236
|
*
|
|
24220
24237
|
* @summary Create HospitalLanguages.
|
|
@@ -25005,12 +25022,11 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
25005
25022
|
* @summary Delete GetAllLanguage.
|
|
25006
25023
|
* @param {string} hospitalId
|
|
25007
25024
|
* @param {string} languageCode
|
|
25008
|
-
* @param {string} langaugeCode
|
|
25009
25025
|
* @param {*} [options] Override http request option.
|
|
25010
25026
|
* @throws {RequiredError}
|
|
25011
25027
|
* @memberof HospitalsApi
|
|
25012
25028
|
*/
|
|
25013
|
-
|
|
25029
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
25014
25030
|
/**
|
|
25015
25031
|
*
|
|
25016
25032
|
* @summary Create HospitalLanguages.
|