ch-admin-api-client-typescript 4.2.3 → 4.2.7
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 +168 -175
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +284 -334
- package/package.json +1 -1
- package/src/api.ts +306 -335
package/lib/api.d.ts
CHANGED
|
@@ -10888,6 +10888,12 @@ export interface SpecialtyItemModel {
|
|
|
10888
10888
|
* @memberof SpecialtyItemModel
|
|
10889
10889
|
*/
|
|
10890
10890
|
'specialtyTypeName'?: string | null;
|
|
10891
|
+
/**
|
|
10892
|
+
*
|
|
10893
|
+
* @type {MarketingType}
|
|
10894
|
+
* @memberof SpecialtyItemModel
|
|
10895
|
+
*/
|
|
10896
|
+
'marketingType'?: MarketingType;
|
|
10891
10897
|
/**
|
|
10892
10898
|
*
|
|
10893
10899
|
* @type {Array<MediaModel>}
|
|
@@ -10992,6 +10998,12 @@ export interface SpecialtyModel {
|
|
|
10992
10998
|
* @memberof SpecialtyModel
|
|
10993
10999
|
*/
|
|
10994
11000
|
'specialtyTypeName'?: string | null;
|
|
11001
|
+
/**
|
|
11002
|
+
*
|
|
11003
|
+
* @type {MarketingType}
|
|
11004
|
+
* @memberof SpecialtyModel
|
|
11005
|
+
*/
|
|
11006
|
+
'marketingType'?: MarketingType;
|
|
10995
11007
|
/**
|
|
10996
11008
|
*
|
|
10997
11009
|
* @type {Array<MediaModel>}
|
|
@@ -13034,12 +13046,6 @@ export interface UpdateHospitalWorkingDayCommand {
|
|
|
13034
13046
|
* @interface UpdateLanguageCommand
|
|
13035
13047
|
*/
|
|
13036
13048
|
export interface UpdateLanguageCommand {
|
|
13037
|
-
/**
|
|
13038
|
-
*
|
|
13039
|
-
* @type {string}
|
|
13040
|
-
* @memberof UpdateLanguageCommand
|
|
13041
|
-
*/
|
|
13042
|
-
'code'?: string | null;
|
|
13043
13049
|
/**
|
|
13044
13050
|
*
|
|
13045
13051
|
* @type {string}
|
|
@@ -19697,44 +19703,47 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
19697
19703
|
apiV1DoctorsDoctorIdGet: (doctorId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19698
19704
|
/**
|
|
19699
19705
|
*
|
|
19700
|
-
* @summary
|
|
19706
|
+
* @summary Delete DoctorLanguage
|
|
19701
19707
|
* @param {string} doctorId
|
|
19702
|
-
* @param {string}
|
|
19703
|
-
* @param {
|
|
19704
|
-
* @param {number} [limit]
|
|
19705
|
-
* @param {Date} [lastRetrieved]
|
|
19708
|
+
* @param {string} languageId
|
|
19709
|
+
* @param {string} code
|
|
19706
19710
|
* @param {*} [options] Override http request option.
|
|
19707
19711
|
* @throws {RequiredError}
|
|
19708
19712
|
*/
|
|
19709
|
-
|
|
19713
|
+
apiV1DoctorsDoctorIdLanguagesCodeDelete: (doctorId: string, languageId: string, code: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19710
19714
|
/**
|
|
19711
19715
|
*
|
|
19712
|
-
* @summary
|
|
19716
|
+
* @summary Get DoctorLanguage.
|
|
19713
19717
|
* @param {string} doctorId
|
|
19714
19718
|
* @param {string} languageId
|
|
19719
|
+
* @param {string} code
|
|
19715
19720
|
* @param {*} [options] Override http request option.
|
|
19716
19721
|
* @throws {RequiredError}
|
|
19717
19722
|
*/
|
|
19718
|
-
|
|
19723
|
+
apiV1DoctorsDoctorIdLanguagesCodeGet: (doctorId: string, languageId: string, code: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19719
19724
|
/**
|
|
19720
19725
|
*
|
|
19721
|
-
* @summary
|
|
19726
|
+
* @summary Update DoctorLanguage.
|
|
19722
19727
|
* @param {string} doctorId
|
|
19723
19728
|
* @param {string} languageId
|
|
19729
|
+
* @param {string} code
|
|
19730
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
19724
19731
|
* @param {*} [options] Override http request option.
|
|
19725
19732
|
* @throws {RequiredError}
|
|
19726
19733
|
*/
|
|
19727
|
-
|
|
19734
|
+
apiV1DoctorsDoctorIdLanguagesCodePut: (doctorId: string, languageId: string, code: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19728
19735
|
/**
|
|
19729
19736
|
*
|
|
19730
|
-
* @summary
|
|
19737
|
+
* @summary Get all DoctorLanguages.
|
|
19731
19738
|
* @param {string} doctorId
|
|
19732
|
-
* @param {string}
|
|
19733
|
-
* @param {
|
|
19739
|
+
* @param {string} [language]
|
|
19740
|
+
* @param {number} [page]
|
|
19741
|
+
* @param {number} [limit]
|
|
19742
|
+
* @param {Date} [lastRetrieved]
|
|
19734
19743
|
* @param {*} [options] Override http request option.
|
|
19735
19744
|
* @throws {RequiredError}
|
|
19736
19745
|
*/
|
|
19737
|
-
|
|
19746
|
+
apiV1DoctorsDoctorIdLanguagesGet: (doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19738
19747
|
/**
|
|
19739
19748
|
*
|
|
19740
19749
|
* @summary Create DoctorLanguage.
|
|
@@ -20087,44 +20096,47 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
20087
20096
|
apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
20088
20097
|
/**
|
|
20089
20098
|
*
|
|
20090
|
-
* @summary
|
|
20099
|
+
* @summary Delete DoctorLanguage
|
|
20091
20100
|
* @param {string} doctorId
|
|
20092
|
-
* @param {string}
|
|
20093
|
-
* @param {
|
|
20094
|
-
* @param {number} [limit]
|
|
20095
|
-
* @param {Date} [lastRetrieved]
|
|
20101
|
+
* @param {string} languageId
|
|
20102
|
+
* @param {string} code
|
|
20096
20103
|
* @param {*} [options] Override http request option.
|
|
20097
20104
|
* @throws {RequiredError}
|
|
20098
20105
|
*/
|
|
20099
|
-
|
|
20106
|
+
apiV1DoctorsDoctorIdLanguagesCodeDelete(doctorId: string, languageId: string, code: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
20100
20107
|
/**
|
|
20101
20108
|
*
|
|
20102
|
-
* @summary
|
|
20109
|
+
* @summary Get DoctorLanguage.
|
|
20103
20110
|
* @param {string} doctorId
|
|
20104
20111
|
* @param {string} languageId
|
|
20112
|
+
* @param {string} code
|
|
20105
20113
|
* @param {*} [options] Override http request option.
|
|
20106
20114
|
* @throws {RequiredError}
|
|
20107
20115
|
*/
|
|
20108
|
-
|
|
20116
|
+
apiV1DoctorsDoctorIdLanguagesCodeGet(doctorId: string, languageId: string, code: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguageModel>>;
|
|
20109
20117
|
/**
|
|
20110
20118
|
*
|
|
20111
|
-
* @summary
|
|
20119
|
+
* @summary Update DoctorLanguage.
|
|
20112
20120
|
* @param {string} doctorId
|
|
20113
20121
|
* @param {string} languageId
|
|
20122
|
+
* @param {string} code
|
|
20123
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20114
20124
|
* @param {*} [options] Override http request option.
|
|
20115
20125
|
* @throws {RequiredError}
|
|
20116
20126
|
*/
|
|
20117
|
-
|
|
20127
|
+
apiV1DoctorsDoctorIdLanguagesCodePut(doctorId: string, languageId: string, code: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguageModel>>;
|
|
20118
20128
|
/**
|
|
20119
20129
|
*
|
|
20120
|
-
* @summary
|
|
20130
|
+
* @summary Get all DoctorLanguages.
|
|
20121
20131
|
* @param {string} doctorId
|
|
20122
|
-
* @param {string}
|
|
20123
|
-
* @param {
|
|
20132
|
+
* @param {string} [language]
|
|
20133
|
+
* @param {number} [page]
|
|
20134
|
+
* @param {number} [limit]
|
|
20135
|
+
* @param {Date} [lastRetrieved]
|
|
20124
20136
|
* @param {*} [options] Override http request option.
|
|
20125
20137
|
* @throws {RequiredError}
|
|
20126
20138
|
*/
|
|
20127
|
-
|
|
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>>;
|
|
20128
20140
|
/**
|
|
20129
20141
|
*
|
|
20130
20142
|
* @summary Create DoctorLanguage.
|
|
@@ -20477,44 +20489,47 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
20477
20489
|
apiV1DoctorsDoctorIdGet(doctorId: string, options?: any): AxiosPromise<DoctorModel>;
|
|
20478
20490
|
/**
|
|
20479
20491
|
*
|
|
20480
|
-
* @summary
|
|
20492
|
+
* @summary Delete DoctorLanguage
|
|
20481
20493
|
* @param {string} doctorId
|
|
20482
|
-
* @param {string}
|
|
20483
|
-
* @param {
|
|
20484
|
-
* @param {number} [limit]
|
|
20485
|
-
* @param {Date} [lastRetrieved]
|
|
20494
|
+
* @param {string} languageId
|
|
20495
|
+
* @param {string} code
|
|
20486
20496
|
* @param {*} [options] Override http request option.
|
|
20487
20497
|
* @throws {RequiredError}
|
|
20488
20498
|
*/
|
|
20489
|
-
|
|
20499
|
+
apiV1DoctorsDoctorIdLanguagesCodeDelete(doctorId: string, languageId: string, code: string, options?: any): AxiosPromise<boolean>;
|
|
20490
20500
|
/**
|
|
20491
20501
|
*
|
|
20492
|
-
* @summary
|
|
20502
|
+
* @summary Get DoctorLanguage.
|
|
20493
20503
|
* @param {string} doctorId
|
|
20494
20504
|
* @param {string} languageId
|
|
20505
|
+
* @param {string} code
|
|
20495
20506
|
* @param {*} [options] Override http request option.
|
|
20496
20507
|
* @throws {RequiredError}
|
|
20497
20508
|
*/
|
|
20498
|
-
|
|
20509
|
+
apiV1DoctorsDoctorIdLanguagesCodeGet(doctorId: string, languageId: string, code: string, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
20499
20510
|
/**
|
|
20500
20511
|
*
|
|
20501
|
-
* @summary
|
|
20512
|
+
* @summary Update DoctorLanguage.
|
|
20502
20513
|
* @param {string} doctorId
|
|
20503
20514
|
* @param {string} languageId
|
|
20515
|
+
* @param {string} code
|
|
20516
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20504
20517
|
* @param {*} [options] Override http request option.
|
|
20505
20518
|
* @throws {RequiredError}
|
|
20506
20519
|
*/
|
|
20507
|
-
|
|
20520
|
+
apiV1DoctorsDoctorIdLanguagesCodePut(doctorId: string, languageId: string, code: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
20508
20521
|
/**
|
|
20509
20522
|
*
|
|
20510
|
-
* @summary
|
|
20523
|
+
* @summary Get all DoctorLanguages.
|
|
20511
20524
|
* @param {string} doctorId
|
|
20512
|
-
* @param {string}
|
|
20513
|
-
* @param {
|
|
20525
|
+
* @param {string} [language]
|
|
20526
|
+
* @param {number} [page]
|
|
20527
|
+
* @param {number} [limit]
|
|
20528
|
+
* @param {Date} [lastRetrieved]
|
|
20514
20529
|
* @param {*} [options] Override http request option.
|
|
20515
20530
|
* @throws {RequiredError}
|
|
20516
20531
|
*/
|
|
20517
|
-
|
|
20532
|
+
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorLanguagesModel>;
|
|
20518
20533
|
/**
|
|
20519
20534
|
*
|
|
20520
20535
|
* @summary Create DoctorLanguage.
|
|
@@ -20881,48 +20896,51 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20881
20896
|
apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
20882
20897
|
/**
|
|
20883
20898
|
*
|
|
20884
|
-
* @summary
|
|
20899
|
+
* @summary Delete DoctorLanguage
|
|
20885
20900
|
* @param {string} doctorId
|
|
20886
|
-
* @param {string}
|
|
20887
|
-
* @param {
|
|
20888
|
-
* @param {number} [limit]
|
|
20889
|
-
* @param {Date} [lastRetrieved]
|
|
20901
|
+
* @param {string} languageId
|
|
20902
|
+
* @param {string} code
|
|
20890
20903
|
* @param {*} [options] Override http request option.
|
|
20891
20904
|
* @throws {RequiredError}
|
|
20892
20905
|
* @memberof DoctorsApi
|
|
20893
20906
|
*/
|
|
20894
|
-
|
|
20907
|
+
apiV1DoctorsDoctorIdLanguagesCodeDelete(doctorId: string, languageId: string, code: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20895
20908
|
/**
|
|
20896
20909
|
*
|
|
20897
|
-
* @summary
|
|
20910
|
+
* @summary Get DoctorLanguage.
|
|
20898
20911
|
* @param {string} doctorId
|
|
20899
20912
|
* @param {string} languageId
|
|
20913
|
+
* @param {string} code
|
|
20900
20914
|
* @param {*} [options] Override http request option.
|
|
20901
20915
|
* @throws {RequiredError}
|
|
20902
20916
|
* @memberof DoctorsApi
|
|
20903
20917
|
*/
|
|
20904
|
-
|
|
20918
|
+
apiV1DoctorsDoctorIdLanguagesCodeGet(doctorId: string, languageId: string, code: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel>>;
|
|
20905
20919
|
/**
|
|
20906
20920
|
*
|
|
20907
|
-
* @summary
|
|
20921
|
+
* @summary Update DoctorLanguage.
|
|
20908
20922
|
* @param {string} doctorId
|
|
20909
20923
|
* @param {string} languageId
|
|
20924
|
+
* @param {string} code
|
|
20925
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20910
20926
|
* @param {*} [options] Override http request option.
|
|
20911
20927
|
* @throws {RequiredError}
|
|
20912
20928
|
* @memberof DoctorsApi
|
|
20913
20929
|
*/
|
|
20914
|
-
|
|
20930
|
+
apiV1DoctorsDoctorIdLanguagesCodePut(doctorId: string, languageId: string, code: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel>>;
|
|
20915
20931
|
/**
|
|
20916
20932
|
*
|
|
20917
|
-
* @summary
|
|
20933
|
+
* @summary Get all DoctorLanguages.
|
|
20918
20934
|
* @param {string} doctorId
|
|
20919
|
-
* @param {string}
|
|
20920
|
-
* @param {
|
|
20935
|
+
* @param {string} [language]
|
|
20936
|
+
* @param {number} [page]
|
|
20937
|
+
* @param {number} [limit]
|
|
20938
|
+
* @param {Date} [lastRetrieved]
|
|
20921
20939
|
* @param {*} [options] Override http request option.
|
|
20922
20940
|
* @throws {RequiredError}
|
|
20923
20941
|
* @memberof DoctorsApi
|
|
20924
20942
|
*/
|
|
20925
|
-
|
|
20943
|
+
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguagesModel>>;
|
|
20926
20944
|
/**
|
|
20927
20945
|
*
|
|
20928
20946
|
* @summary Create DoctorLanguage.
|
|
@@ -22662,10 +22680,11 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
22662
22680
|
* @summary Delete GetAllLanguage.
|
|
22663
22681
|
* @param {string} hospitalId
|
|
22664
22682
|
* @param {string} languageCode
|
|
22683
|
+
* @param {string} langaugeCode
|
|
22665
22684
|
* @param {*} [options] Override http request option.
|
|
22666
22685
|
* @throws {RequiredError}
|
|
22667
22686
|
*/
|
|
22668
|
-
|
|
22687
|
+
apiV1HospitalsHospitalIdLanguagesLangaugeCodeDelete: (hospitalId: string, languageCode: string, langaugeCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22669
22688
|
/**
|
|
22670
22689
|
*
|
|
22671
22690
|
* @summary Create HospitalLanguages.
|
|
@@ -23426,10 +23445,11 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
23426
23445
|
* @summary Delete GetAllLanguage.
|
|
23427
23446
|
* @param {string} hospitalId
|
|
23428
23447
|
* @param {string} languageCode
|
|
23448
|
+
* @param {string} langaugeCode
|
|
23429
23449
|
* @param {*} [options] Override http request option.
|
|
23430
23450
|
* @throws {RequiredError}
|
|
23431
23451
|
*/
|
|
23432
|
-
|
|
23452
|
+
apiV1HospitalsHospitalIdLanguagesLangaugeCodeDelete(hospitalId: string, languageCode: string, langaugeCode: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
23433
23453
|
/**
|
|
23434
23454
|
*
|
|
23435
23455
|
* @summary Create HospitalLanguages.
|
|
@@ -24190,10 +24210,11 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
24190
24210
|
* @summary Delete GetAllLanguage.
|
|
24191
24211
|
* @param {string} hospitalId
|
|
24192
24212
|
* @param {string} languageCode
|
|
24213
|
+
* @param {string} langaugeCode
|
|
24193
24214
|
* @param {*} [options] Override http request option.
|
|
24194
24215
|
* @throws {RequiredError}
|
|
24195
24216
|
*/
|
|
24196
|
-
|
|
24217
|
+
apiV1HospitalsHospitalIdLanguagesLangaugeCodeDelete(hospitalId: string, languageCode: string, langaugeCode: string, options?: any): AxiosPromise<boolean>;
|
|
24197
24218
|
/**
|
|
24198
24219
|
*
|
|
24199
24220
|
* @summary Create HospitalLanguages.
|
|
@@ -24984,11 +25005,12 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24984
25005
|
* @summary Delete GetAllLanguage.
|
|
24985
25006
|
* @param {string} hospitalId
|
|
24986
25007
|
* @param {string} languageCode
|
|
25008
|
+
* @param {string} langaugeCode
|
|
24987
25009
|
* @param {*} [options] Override http request option.
|
|
24988
25010
|
* @throws {RequiredError}
|
|
24989
25011
|
* @memberof HospitalsApi
|
|
24990
25012
|
*/
|
|
24991
|
-
|
|
25013
|
+
apiV1HospitalsHospitalIdLanguagesLangaugeCodeDelete(hospitalId: string, languageCode: string, langaugeCode: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
24992
25014
|
/**
|
|
24993
25015
|
*
|
|
24994
25016
|
* @summary Create HospitalLanguages.
|
|
@@ -25532,50 +25554,41 @@ export declare class ImagesApi extends BaseAPI {
|
|
|
25532
25554
|
export declare const LanguagesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
25533
25555
|
/**
|
|
25534
25556
|
*
|
|
25535
|
-
* @summary Get Language by code.
|
|
25536
25557
|
* @param {string} code
|
|
25537
25558
|
* @param {*} [options] Override http request option.
|
|
25538
25559
|
* @throws {RequiredError}
|
|
25539
25560
|
*/
|
|
25540
|
-
|
|
25561
|
+
apiV1LanguagesCodeDelete: (code: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25541
25562
|
/**
|
|
25542
25563
|
*
|
|
25543
|
-
* @summary Get
|
|
25544
|
-
* @param {string}
|
|
25545
|
-
* @param {string} [name]
|
|
25546
|
-
* @param {string} [code]
|
|
25547
|
-
* @param {string} [description]
|
|
25548
|
-
* @param {boolean} [showPublished]
|
|
25549
|
-
* @param {number} [page]
|
|
25550
|
-
* @param {number} [limit]
|
|
25551
|
-
* @param {Date} [lastRetrieved]
|
|
25552
|
-
* @param {*} [options] Override http request option.
|
|
25553
|
-
* @throws {RequiredError}
|
|
25554
|
-
*/
|
|
25555
|
-
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>;
|
|
25556
|
-
/**
|
|
25557
|
-
*
|
|
25558
|
-
* @param {string} languageId
|
|
25564
|
+
* @summary Get Language.
|
|
25565
|
+
* @param {string} code
|
|
25559
25566
|
* @param {*} [options] Override http request option.
|
|
25560
25567
|
* @throws {RequiredError}
|
|
25561
25568
|
*/
|
|
25562
|
-
|
|
25569
|
+
apiV1LanguagesCodeGet: (code: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25563
25570
|
/**
|
|
25564
25571
|
*
|
|
25565
|
-
* @
|
|
25566
|
-
* @param {
|
|
25572
|
+
* @param {string} code
|
|
25573
|
+
* @param {UpdateLanguageCommand} [updateLanguageCommand]
|
|
25567
25574
|
* @param {*} [options] Override http request option.
|
|
25568
25575
|
* @throws {RequiredError}
|
|
25569
25576
|
*/
|
|
25570
|
-
|
|
25577
|
+
apiV1LanguagesCodePut: (code: string, updateLanguageCommand?: UpdateLanguageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25571
25578
|
/**
|
|
25572
25579
|
*
|
|
25573
|
-
* @
|
|
25574
|
-
* @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]
|
|
25575
25588
|
* @param {*} [options] Override http request option.
|
|
25576
25589
|
* @throws {RequiredError}
|
|
25577
25590
|
*/
|
|
25578
|
-
|
|
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>;
|
|
25579
25592
|
/**
|
|
25580
25593
|
*
|
|
25581
25594
|
* @param {CreateLanguageCommand} [createLanguageCommand]
|
|
@@ -25591,50 +25604,41 @@ export declare const LanguagesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
25591
25604
|
export declare const LanguagesApiFp: (configuration?: Configuration | undefined) => {
|
|
25592
25605
|
/**
|
|
25593
25606
|
*
|
|
25594
|
-
* @summary Get Language by code.
|
|
25595
25607
|
* @param {string} code
|
|
25596
25608
|
* @param {*} [options] Override http request option.
|
|
25597
25609
|
* @throws {RequiredError}
|
|
25598
25610
|
*/
|
|
25599
|
-
|
|
25611
|
+
apiV1LanguagesCodeDelete(code: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
25600
25612
|
/**
|
|
25601
25613
|
*
|
|
25602
|
-
* @summary Get
|
|
25603
|
-
* @param {string}
|
|
25604
|
-
* @param {string} [name]
|
|
25605
|
-
* @param {string} [code]
|
|
25606
|
-
* @param {string} [description]
|
|
25607
|
-
* @param {boolean} [showPublished]
|
|
25608
|
-
* @param {number} [page]
|
|
25609
|
-
* @param {number} [limit]
|
|
25610
|
-
* @param {Date} [lastRetrieved]
|
|
25611
|
-
* @param {*} [options] Override http request option.
|
|
25612
|
-
* @throws {RequiredError}
|
|
25613
|
-
*/
|
|
25614
|
-
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>>;
|
|
25615
|
-
/**
|
|
25616
|
-
*
|
|
25617
|
-
* @param {string} languageId
|
|
25614
|
+
* @summary Get Language.
|
|
25615
|
+
* @param {string} code
|
|
25618
25616
|
* @param {*} [options] Override http request option.
|
|
25619
25617
|
* @throws {RequiredError}
|
|
25620
25618
|
*/
|
|
25621
|
-
|
|
25619
|
+
apiV1LanguagesCodeGet(code: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguageModel>>;
|
|
25622
25620
|
/**
|
|
25623
25621
|
*
|
|
25624
|
-
* @
|
|
25625
|
-
* @param {
|
|
25622
|
+
* @param {string} code
|
|
25623
|
+
* @param {UpdateLanguageCommand} [updateLanguageCommand]
|
|
25626
25624
|
* @param {*} [options] Override http request option.
|
|
25627
25625
|
* @throws {RequiredError}
|
|
25628
25626
|
*/
|
|
25629
|
-
|
|
25627
|
+
apiV1LanguagesCodePut(code: string, updateLanguageCommand?: UpdateLanguageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguageModel>>;
|
|
25630
25628
|
/**
|
|
25631
25629
|
*
|
|
25632
|
-
* @
|
|
25633
|
-
* @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]
|
|
25634
25638
|
* @param {*} [options] Override http request option.
|
|
25635
25639
|
* @throws {RequiredError}
|
|
25636
25640
|
*/
|
|
25637
|
-
|
|
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>>;
|
|
25638
25642
|
/**
|
|
25639
25643
|
*
|
|
25640
25644
|
* @param {CreateLanguageCommand} [createLanguageCommand]
|
|
@@ -25650,50 +25654,41 @@ export declare const LanguagesApiFp: (configuration?: Configuration | undefined)
|
|
|
25650
25654
|
export declare const LanguagesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
25651
25655
|
/**
|
|
25652
25656
|
*
|
|
25653
|
-
* @summary Get Language by code.
|
|
25654
25657
|
* @param {string} code
|
|
25655
25658
|
* @param {*} [options] Override http request option.
|
|
25656
25659
|
* @throws {RequiredError}
|
|
25657
25660
|
*/
|
|
25658
|
-
|
|
25661
|
+
apiV1LanguagesCodeDelete(code: string, options?: any): AxiosPromise<boolean>;
|
|
25659
25662
|
/**
|
|
25660
25663
|
*
|
|
25661
|
-
* @summary Get
|
|
25662
|
-
* @param {string}
|
|
25663
|
-
* @param {string} [name]
|
|
25664
|
-
* @param {string} [code]
|
|
25665
|
-
* @param {string} [description]
|
|
25666
|
-
* @param {boolean} [showPublished]
|
|
25667
|
-
* @param {number} [page]
|
|
25668
|
-
* @param {number} [limit]
|
|
25669
|
-
* @param {Date} [lastRetrieved]
|
|
25670
|
-
* @param {*} [options] Override http request option.
|
|
25671
|
-
* @throws {RequiredError}
|
|
25672
|
-
*/
|
|
25673
|
-
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>;
|
|
25674
|
-
/**
|
|
25675
|
-
*
|
|
25676
|
-
* @param {string} languageId
|
|
25664
|
+
* @summary Get Language.
|
|
25665
|
+
* @param {string} code
|
|
25677
25666
|
* @param {*} [options] Override http request option.
|
|
25678
25667
|
* @throws {RequiredError}
|
|
25679
25668
|
*/
|
|
25680
|
-
|
|
25669
|
+
apiV1LanguagesCodeGet(code: string, options?: any): AxiosPromise<LanguageModel>;
|
|
25681
25670
|
/**
|
|
25682
25671
|
*
|
|
25683
|
-
* @
|
|
25684
|
-
* @param {
|
|
25672
|
+
* @param {string} code
|
|
25673
|
+
* @param {UpdateLanguageCommand} [updateLanguageCommand]
|
|
25685
25674
|
* @param {*} [options] Override http request option.
|
|
25686
25675
|
* @throws {RequiredError}
|
|
25687
25676
|
*/
|
|
25688
|
-
|
|
25677
|
+
apiV1LanguagesCodePut(code: string, updateLanguageCommand?: UpdateLanguageCommand | undefined, options?: any): AxiosPromise<LanguageModel>;
|
|
25689
25678
|
/**
|
|
25690
25679
|
*
|
|
25691
|
-
* @
|
|
25692
|
-
* @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]
|
|
25693
25688
|
* @param {*} [options] Override http request option.
|
|
25694
25689
|
* @throws {RequiredError}
|
|
25695
25690
|
*/
|
|
25696
|
-
|
|
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>;
|
|
25697
25692
|
/**
|
|
25698
25693
|
*
|
|
25699
25694
|
* @param {CreateLanguageCommand} [createLanguageCommand]
|
|
@@ -25711,55 +25706,45 @@ export declare const LanguagesApiFactory: (configuration?: Configuration | undef
|
|
|
25711
25706
|
export declare class LanguagesApi extends BaseAPI {
|
|
25712
25707
|
/**
|
|
25713
25708
|
*
|
|
25714
|
-
* @summary Get Language by code.
|
|
25715
25709
|
* @param {string} code
|
|
25716
25710
|
* @param {*} [options] Override http request option.
|
|
25717
25711
|
* @throws {RequiredError}
|
|
25718
25712
|
* @memberof LanguagesApi
|
|
25719
25713
|
*/
|
|
25720
|
-
|
|
25721
|
-
/**
|
|
25722
|
-
*
|
|
25723
|
-
* @summary Get all Languages.
|
|
25724
|
-
* @param {string} [id]
|
|
25725
|
-
* @param {string} [name]
|
|
25726
|
-
* @param {string} [code]
|
|
25727
|
-
* @param {string} [description]
|
|
25728
|
-
* @param {boolean} [showPublished]
|
|
25729
|
-
* @param {number} [page]
|
|
25730
|
-
* @param {number} [limit]
|
|
25731
|
-
* @param {Date} [lastRetrieved]
|
|
25732
|
-
* @param {*} [options] Override http request option.
|
|
25733
|
-
* @throws {RequiredError}
|
|
25734
|
-
* @memberof LanguagesApi
|
|
25735
|
-
*/
|
|
25736
|
-
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>>;
|
|
25737
25715
|
/**
|
|
25738
25716
|
*
|
|
25739
|
-
* @
|
|
25717
|
+
* @summary Get Language.
|
|
25718
|
+
* @param {string} code
|
|
25740
25719
|
* @param {*} [options] Override http request option.
|
|
25741
25720
|
* @throws {RequiredError}
|
|
25742
25721
|
* @memberof LanguagesApi
|
|
25743
25722
|
*/
|
|
25744
|
-
|
|
25723
|
+
apiV1LanguagesCodeGet(code: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel>>;
|
|
25745
25724
|
/**
|
|
25746
25725
|
*
|
|
25747
|
-
* @
|
|
25748
|
-
* @param {
|
|
25726
|
+
* @param {string} code
|
|
25727
|
+
* @param {UpdateLanguageCommand} [updateLanguageCommand]
|
|
25749
25728
|
* @param {*} [options] Override http request option.
|
|
25750
25729
|
* @throws {RequiredError}
|
|
25751
25730
|
* @memberof LanguagesApi
|
|
25752
25731
|
*/
|
|
25753
|
-
|
|
25732
|
+
apiV1LanguagesCodePut(code: string, updateLanguageCommand?: UpdateLanguageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel>>;
|
|
25754
25733
|
/**
|
|
25755
25734
|
*
|
|
25756
|
-
* @
|
|
25757
|
-
* @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]
|
|
25758
25743
|
* @param {*} [options] Override http request option.
|
|
25759
25744
|
* @throws {RequiredError}
|
|
25760
25745
|
* @memberof LanguagesApi
|
|
25761
25746
|
*/
|
|
25762
|
-
|
|
25747
|
+
apiV1LanguagesGet(code?: string, name?: string, description?: string, showPublished?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguagesModel>>;
|
|
25763
25748
|
/**
|
|
25764
25749
|
*
|
|
25765
25750
|
* @param {CreateLanguageCommand} [createLanguageCommand]
|
|
@@ -28228,6 +28213,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
28228
28213
|
* @param {string} [name]
|
|
28229
28214
|
* @param {string} [description]
|
|
28230
28215
|
* @param {string} [specialtyTypeId]
|
|
28216
|
+
* @param {MarketingType} [marketingType]
|
|
28231
28217
|
* @param {string} [hospitalId]
|
|
28232
28218
|
* @param {Date} [created]
|
|
28233
28219
|
* @param {string} [languageCode]
|
|
@@ -28240,7 +28226,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
28240
28226
|
* @param {*} [options] Override http request option.
|
|
28241
28227
|
* @throws {RequiredError}
|
|
28242
28228
|
*/
|
|
28243
|
-
apiV1SpecialtiesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28229
|
+
apiV1SpecialtiesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28244
28230
|
/**
|
|
28245
28231
|
*
|
|
28246
28232
|
* @summary Create a Specialty.
|
|
@@ -28256,6 +28242,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
28256
28242
|
* @param {string} [name]
|
|
28257
28243
|
* @param {string} [description]
|
|
28258
28244
|
* @param {string} [specialtyTypeId]
|
|
28245
|
+
* @param {MarketingType} [marketingType]
|
|
28259
28246
|
* @param {string} [hospitalId]
|
|
28260
28247
|
* @param {Date} [created]
|
|
28261
28248
|
* @param {string} [languageCode]
|
|
@@ -28268,7 +28255,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
28268
28255
|
* @param {*} [options] Override http request option.
|
|
28269
28256
|
* @throws {RequiredError}
|
|
28270
28257
|
*/
|
|
28271
|
-
apiV1SpecialtiesSimpleGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28258
|
+
apiV1SpecialtiesSimpleGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28272
28259
|
/**
|
|
28273
28260
|
*
|
|
28274
28261
|
* @param {string} slug
|
|
@@ -28368,6 +28355,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
28368
28355
|
* @param {string} [name]
|
|
28369
28356
|
* @param {string} [description]
|
|
28370
28357
|
* @param {string} [specialtyTypeId]
|
|
28358
|
+
* @param {MarketingType} [marketingType]
|
|
28371
28359
|
* @param {string} [hospitalId]
|
|
28372
28360
|
* @param {Date} [created]
|
|
28373
28361
|
* @param {string} [languageCode]
|
|
@@ -28380,7 +28368,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
28380
28368
|
* @param {*} [options] Override http request option.
|
|
28381
28369
|
* @throws {RequiredError}
|
|
28382
28370
|
*/
|
|
28383
|
-
apiV1SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesModel>>;
|
|
28371
|
+
apiV1SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesModel>>;
|
|
28384
28372
|
/**
|
|
28385
28373
|
*
|
|
28386
28374
|
* @summary Create a Specialty.
|
|
@@ -28396,6 +28384,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
28396
28384
|
* @param {string} [name]
|
|
28397
28385
|
* @param {string} [description]
|
|
28398
28386
|
* @param {string} [specialtyTypeId]
|
|
28387
|
+
* @param {MarketingType} [marketingType]
|
|
28399
28388
|
* @param {string} [hospitalId]
|
|
28400
28389
|
* @param {Date} [created]
|
|
28401
28390
|
* @param {string} [languageCode]
|
|
@@ -28408,7 +28397,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
28408
28397
|
* @param {*} [options] Override http request option.
|
|
28409
28398
|
* @throws {RequiredError}
|
|
28410
28399
|
*/
|
|
28411
|
-
apiV1SpecialtiesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesSimpleModel>>;
|
|
28400
|
+
apiV1SpecialtiesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesSimpleModel>>;
|
|
28412
28401
|
/**
|
|
28413
28402
|
*
|
|
28414
28403
|
* @param {string} slug
|
|
@@ -28508,6 +28497,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
28508
28497
|
* @param {string} [name]
|
|
28509
28498
|
* @param {string} [description]
|
|
28510
28499
|
* @param {string} [specialtyTypeId]
|
|
28500
|
+
* @param {MarketingType} [marketingType]
|
|
28511
28501
|
* @param {string} [hospitalId]
|
|
28512
28502
|
* @param {Date} [created]
|
|
28513
28503
|
* @param {string} [languageCode]
|
|
@@ -28520,7 +28510,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
28520
28510
|
* @param {*} [options] Override http request option.
|
|
28521
28511
|
* @throws {RequiredError}
|
|
28522
28512
|
*/
|
|
28523
|
-
apiV1SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesModel>;
|
|
28513
|
+
apiV1SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesModel>;
|
|
28524
28514
|
/**
|
|
28525
28515
|
*
|
|
28526
28516
|
* @summary Create a Specialty.
|
|
@@ -28536,6 +28526,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
28536
28526
|
* @param {string} [name]
|
|
28537
28527
|
* @param {string} [description]
|
|
28538
28528
|
* @param {string} [specialtyTypeId]
|
|
28529
|
+
* @param {MarketingType} [marketingType]
|
|
28539
28530
|
* @param {string} [hospitalId]
|
|
28540
28531
|
* @param {Date} [created]
|
|
28541
28532
|
* @param {string} [languageCode]
|
|
@@ -28548,7 +28539,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
28548
28539
|
* @param {*} [options] Override http request option.
|
|
28549
28540
|
* @throws {RequiredError}
|
|
28550
28541
|
*/
|
|
28551
|
-
apiV1SpecialtiesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesSimpleModel>;
|
|
28542
|
+
apiV1SpecialtiesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesSimpleModel>;
|
|
28552
28543
|
/**
|
|
28553
28544
|
*
|
|
28554
28545
|
* @param {string} slug
|
|
@@ -28650,6 +28641,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
28650
28641
|
* @param {string} [name]
|
|
28651
28642
|
* @param {string} [description]
|
|
28652
28643
|
* @param {string} [specialtyTypeId]
|
|
28644
|
+
* @param {MarketingType} [marketingType]
|
|
28653
28645
|
* @param {string} [hospitalId]
|
|
28654
28646
|
* @param {Date} [created]
|
|
28655
28647
|
* @param {string} [languageCode]
|
|
@@ -28663,7 +28655,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
28663
28655
|
* @throws {RequiredError}
|
|
28664
28656
|
* @memberof SpecialtiesApi
|
|
28665
28657
|
*/
|
|
28666
|
-
apiV1SpecialtiesGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesModel>>;
|
|
28658
|
+
apiV1SpecialtiesGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesModel>>;
|
|
28667
28659
|
/**
|
|
28668
28660
|
*
|
|
28669
28661
|
* @summary Create a Specialty.
|
|
@@ -28680,6 +28672,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
28680
28672
|
* @param {string} [name]
|
|
28681
28673
|
* @param {string} [description]
|
|
28682
28674
|
* @param {string} [specialtyTypeId]
|
|
28675
|
+
* @param {MarketingType} [marketingType]
|
|
28683
28676
|
* @param {string} [hospitalId]
|
|
28684
28677
|
* @param {Date} [created]
|
|
28685
28678
|
* @param {string} [languageCode]
|
|
@@ -28693,7 +28686,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
28693
28686
|
* @throws {RequiredError}
|
|
28694
28687
|
* @memberof SpecialtiesApi
|
|
28695
28688
|
*/
|
|
28696
|
-
apiV1SpecialtiesSimpleGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesSimpleModel>>;
|
|
28689
|
+
apiV1SpecialtiesSimpleGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesSimpleModel>>;
|
|
28697
28690
|
/**
|
|
28698
28691
|
*
|
|
28699
28692
|
* @param {string} slug
|