ch-admin-api-client-typescript 3.1.1 → 3.1.4
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 +324 -67
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +775 -210
- package/package.json +1 -1
- package/src/api.ts +611 -92
package/lib/api.d.ts
CHANGED
|
@@ -4100,6 +4100,12 @@ export interface CreateFaqCategoryCommand {
|
|
|
4100
4100
|
* @memberof CreateFaqCategoryCommand
|
|
4101
4101
|
*/
|
|
4102
4102
|
'order'?: number;
|
|
4103
|
+
/**
|
|
4104
|
+
*
|
|
4105
|
+
* @type {string}
|
|
4106
|
+
* @memberof CreateFaqCategoryCommand
|
|
4107
|
+
*/
|
|
4108
|
+
'hospitalId'?: string;
|
|
4103
4109
|
}
|
|
4104
4110
|
/**
|
|
4105
4111
|
*
|
|
@@ -4131,12 +4137,6 @@ export interface CreateFaqCommand {
|
|
|
4131
4137
|
* @memberof CreateFaqCommand
|
|
4132
4138
|
*/
|
|
4133
4139
|
'faqCategoryId'?: string | null;
|
|
4134
|
-
/**
|
|
4135
|
-
*
|
|
4136
|
-
* @type {string}
|
|
4137
|
-
* @memberof CreateFaqCommand
|
|
4138
|
-
*/
|
|
4139
|
-
'hospitalId'?: string;
|
|
4140
4140
|
}
|
|
4141
4141
|
/**
|
|
4142
4142
|
*
|
|
@@ -6832,10 +6832,16 @@ export interface FaqCategoryItemModel {
|
|
|
6832
6832
|
'order'?: number;
|
|
6833
6833
|
/**
|
|
6834
6834
|
*
|
|
6835
|
-
* @type {
|
|
6835
|
+
* @type {string}
|
|
6836
|
+
* @memberof FaqCategoryItemModel
|
|
6837
|
+
*/
|
|
6838
|
+
'hospitalId'?: string;
|
|
6839
|
+
/**
|
|
6840
|
+
*
|
|
6841
|
+
* @type {string}
|
|
6836
6842
|
* @memberof FaqCategoryItemModel
|
|
6837
6843
|
*/
|
|
6838
|
-
'
|
|
6844
|
+
'hospitalName'?: string | null;
|
|
6839
6845
|
/**
|
|
6840
6846
|
*
|
|
6841
6847
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -6893,10 +6899,16 @@ export interface FaqCategoryModel {
|
|
|
6893
6899
|
'order'?: number;
|
|
6894
6900
|
/**
|
|
6895
6901
|
*
|
|
6896
|
-
* @type {
|
|
6902
|
+
* @type {string}
|
|
6897
6903
|
* @memberof FaqCategoryModel
|
|
6898
6904
|
*/
|
|
6899
|
-
'
|
|
6905
|
+
'hospitalId'?: string;
|
|
6906
|
+
/**
|
|
6907
|
+
*
|
|
6908
|
+
* @type {string}
|
|
6909
|
+
* @memberof FaqCategoryModel
|
|
6910
|
+
*/
|
|
6911
|
+
'hospitalName'?: string | null;
|
|
6900
6912
|
/**
|
|
6901
6913
|
*
|
|
6902
6914
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -7900,13 +7912,13 @@ export interface HospitalModel {
|
|
|
7900
7912
|
* @type {Array<WorkingDay>}
|
|
7901
7913
|
* @memberof HospitalModel
|
|
7902
7914
|
*/
|
|
7903
|
-
'
|
|
7915
|
+
'hospitalWorkingDays'?: Array<WorkingDay> | null;
|
|
7904
7916
|
/**
|
|
7905
7917
|
*
|
|
7906
7918
|
* @type {Array<SnsHandle>}
|
|
7907
7919
|
* @memberof HospitalModel
|
|
7908
7920
|
*/
|
|
7909
|
-
'
|
|
7921
|
+
'hospitalSnsHandles'?: Array<SnsHandle> | null;
|
|
7910
7922
|
}
|
|
7911
7923
|
/**
|
|
7912
7924
|
*
|
|
@@ -18974,7 +18986,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
18974
18986
|
apiV1DoctorsDoctorIdGet: (doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18975
18987
|
/**
|
|
18976
18988
|
*
|
|
18977
|
-
* @summary Get all
|
|
18989
|
+
* @summary Get all DoctorLanguages.
|
|
18978
18990
|
* @param {string} doctorId
|
|
18979
18991
|
* @param {string} [language]
|
|
18980
18992
|
* @param {number} [page]
|
|
@@ -18986,7 +18998,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
18986
18998
|
apiV1DoctorsDoctorIdLanguagesGet: (doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18987
18999
|
/**
|
|
18988
19000
|
*
|
|
18989
|
-
* @summary Delete
|
|
19001
|
+
* @summary Delete DoctorLanguage
|
|
18990
19002
|
* @param {string} doctorId
|
|
18991
19003
|
* @param {string} languageId
|
|
18992
19004
|
* @param {*} [options] Override http request option.
|
|
@@ -18995,7 +19007,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
18995
19007
|
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete: (doctorId: string, languageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18996
19008
|
/**
|
|
18997
19009
|
*
|
|
18998
|
-
* @summary Get
|
|
19010
|
+
* @summary Get DoctorLanguage.
|
|
18999
19011
|
* @param {string} doctorId
|
|
19000
19012
|
* @param {string} languageId
|
|
19001
19013
|
* @param {*} [options] Override http request option.
|
|
@@ -19004,7 +19016,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
19004
19016
|
apiV1DoctorsDoctorIdLanguagesLanguageIdGet: (doctorId: string, languageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19005
19017
|
/**
|
|
19006
19018
|
*
|
|
19007
|
-
* @summary Update
|
|
19019
|
+
* @summary Update DoctorLanguage.
|
|
19008
19020
|
* @param {string} doctorId
|
|
19009
19021
|
* @param {string} languageId
|
|
19010
19022
|
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
@@ -19014,7 +19026,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
19014
19026
|
apiV1DoctorsDoctorIdLanguagesLanguageIdPut: (doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19015
19027
|
/**
|
|
19016
19028
|
*
|
|
19017
|
-
* @summary Create
|
|
19029
|
+
* @summary Create DoctorLanguage.
|
|
19018
19030
|
* @param {string} doctorId
|
|
19019
19031
|
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
19020
19032
|
* @param {*} [options] Override http request option.
|
|
@@ -19414,7 +19426,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19414
19426
|
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
19415
19427
|
/**
|
|
19416
19428
|
*
|
|
19417
|
-
* @summary Get all
|
|
19429
|
+
* @summary Get all DoctorLanguages.
|
|
19418
19430
|
* @param {string} doctorId
|
|
19419
19431
|
* @param {string} [language]
|
|
19420
19432
|
* @param {number} [page]
|
|
@@ -19426,7 +19438,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19426
19438
|
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>>;
|
|
19427
19439
|
/**
|
|
19428
19440
|
*
|
|
19429
|
-
* @summary Delete
|
|
19441
|
+
* @summary Delete DoctorLanguage
|
|
19430
19442
|
* @param {string} doctorId
|
|
19431
19443
|
* @param {string} languageId
|
|
19432
19444
|
* @param {*} [options] Override http request option.
|
|
@@ -19435,7 +19447,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19435
19447
|
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete(doctorId: string, languageId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
19436
19448
|
/**
|
|
19437
19449
|
*
|
|
19438
|
-
* @summary Get
|
|
19450
|
+
* @summary Get DoctorLanguage.
|
|
19439
19451
|
* @param {string} doctorId
|
|
19440
19452
|
* @param {string} languageId
|
|
19441
19453
|
* @param {*} [options] Override http request option.
|
|
@@ -19444,7 +19456,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19444
19456
|
apiV1DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguageModel>>;
|
|
19445
19457
|
/**
|
|
19446
19458
|
*
|
|
19447
|
-
* @summary Update
|
|
19459
|
+
* @summary Update DoctorLanguage.
|
|
19448
19460
|
* @param {string} doctorId
|
|
19449
19461
|
* @param {string} languageId
|
|
19450
19462
|
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
@@ -19454,7 +19466,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19454
19466
|
apiV1DoctorsDoctorIdLanguagesLanguageIdPut(doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguageModel>>;
|
|
19455
19467
|
/**
|
|
19456
19468
|
*
|
|
19457
|
-
* @summary Create
|
|
19469
|
+
* @summary Create DoctorLanguage.
|
|
19458
19470
|
* @param {string} doctorId
|
|
19459
19471
|
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
19460
19472
|
* @param {*} [options] Override http request option.
|
|
@@ -19854,7 +19866,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
19854
19866
|
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
19855
19867
|
/**
|
|
19856
19868
|
*
|
|
19857
|
-
* @summary Get all
|
|
19869
|
+
* @summary Get all DoctorLanguages.
|
|
19858
19870
|
* @param {string} doctorId
|
|
19859
19871
|
* @param {string} [language]
|
|
19860
19872
|
* @param {number} [page]
|
|
@@ -19866,7 +19878,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
19866
19878
|
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorLanguagesModel>;
|
|
19867
19879
|
/**
|
|
19868
19880
|
*
|
|
19869
|
-
* @summary Delete
|
|
19881
|
+
* @summary Delete DoctorLanguage
|
|
19870
19882
|
* @param {string} doctorId
|
|
19871
19883
|
* @param {string} languageId
|
|
19872
19884
|
* @param {*} [options] Override http request option.
|
|
@@ -19875,7 +19887,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
19875
19887
|
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete(doctorId: string, languageId: string, options?: any): AxiosPromise<boolean>;
|
|
19876
19888
|
/**
|
|
19877
19889
|
*
|
|
19878
|
-
* @summary Get
|
|
19890
|
+
* @summary Get DoctorLanguage.
|
|
19879
19891
|
* @param {string} doctorId
|
|
19880
19892
|
* @param {string} languageId
|
|
19881
19893
|
* @param {*} [options] Override http request option.
|
|
@@ -19884,7 +19896,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
19884
19896
|
apiV1DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
19885
19897
|
/**
|
|
19886
19898
|
*
|
|
19887
|
-
* @summary Update
|
|
19899
|
+
* @summary Update DoctorLanguage.
|
|
19888
19900
|
* @param {string} doctorId
|
|
19889
19901
|
* @param {string} languageId
|
|
19890
19902
|
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
@@ -19894,7 +19906,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
19894
19906
|
apiV1DoctorsDoctorIdLanguagesLanguageIdPut(doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
19895
19907
|
/**
|
|
19896
19908
|
*
|
|
19897
|
-
* @summary Create
|
|
19909
|
+
* @summary Create DoctorLanguage.
|
|
19898
19910
|
* @param {string} doctorId
|
|
19899
19911
|
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
19900
19912
|
* @param {*} [options] Override http request option.
|
|
@@ -20312,7 +20324,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20312
20324
|
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
20313
20325
|
/**
|
|
20314
20326
|
*
|
|
20315
|
-
* @summary Get all
|
|
20327
|
+
* @summary Get all DoctorLanguages.
|
|
20316
20328
|
* @param {string} doctorId
|
|
20317
20329
|
* @param {string} [language]
|
|
20318
20330
|
* @param {number} [page]
|
|
@@ -20325,7 +20337,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20325
20337
|
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguagesModel>>;
|
|
20326
20338
|
/**
|
|
20327
20339
|
*
|
|
20328
|
-
* @summary Delete
|
|
20340
|
+
* @summary Delete DoctorLanguage
|
|
20329
20341
|
* @param {string} doctorId
|
|
20330
20342
|
* @param {string} languageId
|
|
20331
20343
|
* @param {*} [options] Override http request option.
|
|
@@ -20335,7 +20347,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20335
20347
|
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete(doctorId: string, languageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20336
20348
|
/**
|
|
20337
20349
|
*
|
|
20338
|
-
* @summary Get
|
|
20350
|
+
* @summary Get DoctorLanguage.
|
|
20339
20351
|
* @param {string} doctorId
|
|
20340
20352
|
* @param {string} languageId
|
|
20341
20353
|
* @param {*} [options] Override http request option.
|
|
@@ -20345,7 +20357,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20345
20357
|
apiV1DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel>>;
|
|
20346
20358
|
/**
|
|
20347
20359
|
*
|
|
20348
|
-
* @summary Update
|
|
20360
|
+
* @summary Update DoctorLanguage.
|
|
20349
20361
|
* @param {string} doctorId
|
|
20350
20362
|
* @param {string} languageId
|
|
20351
20363
|
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
@@ -20356,7 +20368,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20356
20368
|
apiV1DoctorsDoctorIdLanguagesLanguageIdPut(doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel>>;
|
|
20357
20369
|
/**
|
|
20358
20370
|
*
|
|
20359
|
-
* @summary Create
|
|
20371
|
+
* @summary Create DoctorLanguage.
|
|
20360
20372
|
* @param {string} doctorId
|
|
20361
20373
|
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
20362
20374
|
* @param {*} [options] Override http request option.
|
|
@@ -20877,10 +20889,11 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
20877
20889
|
* @summary Get FaqCategory.
|
|
20878
20890
|
* @param {string} faqCategoryId
|
|
20879
20891
|
* @param {string} [languageCode]
|
|
20892
|
+
* @param {boolean} [returnDefaultValue]
|
|
20880
20893
|
* @param {*} [options] Override http request option.
|
|
20881
20894
|
* @throws {RequiredError}
|
|
20882
20895
|
*/
|
|
20883
|
-
apiV1FaqcategoriesFaqCategoryIdGet: (faqCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20896
|
+
apiV1FaqcategoriesFaqCategoryIdGet: (faqCategoryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20884
20897
|
/**
|
|
20885
20898
|
*
|
|
20886
20899
|
* @summary Update FaqCategory.
|
|
@@ -20897,14 +20910,18 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
20897
20910
|
* @param {string} [parentId]
|
|
20898
20911
|
* @param {string} [name]
|
|
20899
20912
|
* @param {string} [description]
|
|
20913
|
+
* @param {string} [hospitalId]
|
|
20914
|
+
* @param {string} [hospitalName]
|
|
20900
20915
|
* @param {string} [languageCode]
|
|
20916
|
+
* @param {boolean} [showHidden]
|
|
20917
|
+
* @param {boolean} [returnDefaultValue]
|
|
20901
20918
|
* @param {number} [page]
|
|
20902
20919
|
* @param {number} [limit]
|
|
20903
20920
|
* @param {Date} [lastRetrieved]
|
|
20904
20921
|
* @param {*} [options] Override http request option.
|
|
20905
20922
|
* @throws {RequiredError}
|
|
20906
20923
|
*/
|
|
20907
|
-
apiV1FaqcategoriesGet: (id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20924
|
+
apiV1FaqcategoriesGet: (id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20908
20925
|
/**
|
|
20909
20926
|
*
|
|
20910
20927
|
* @summary Create a FaqCategory.
|
|
@@ -20951,10 +20968,11 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
20951
20968
|
* @summary Get FaqCategory.
|
|
20952
20969
|
* @param {string} faqCategoryId
|
|
20953
20970
|
* @param {string} [languageCode]
|
|
20971
|
+
* @param {boolean} [returnDefaultValue]
|
|
20954
20972
|
* @param {*} [options] Override http request option.
|
|
20955
20973
|
* @throws {RequiredError}
|
|
20956
20974
|
*/
|
|
20957
|
-
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
|
|
20975
|
+
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
|
|
20958
20976
|
/**
|
|
20959
20977
|
*
|
|
20960
20978
|
* @summary Update FaqCategory.
|
|
@@ -20971,14 +20989,18 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
20971
20989
|
* @param {string} [parentId]
|
|
20972
20990
|
* @param {string} [name]
|
|
20973
20991
|
* @param {string} [description]
|
|
20992
|
+
* @param {string} [hospitalId]
|
|
20993
|
+
* @param {string} [hospitalName]
|
|
20974
20994
|
* @param {string} [languageCode]
|
|
20995
|
+
* @param {boolean} [showHidden]
|
|
20996
|
+
* @param {boolean} [returnDefaultValue]
|
|
20975
20997
|
* @param {number} [page]
|
|
20976
20998
|
* @param {number} [limit]
|
|
20977
20999
|
* @param {Date} [lastRetrieved]
|
|
20978
21000
|
* @param {*} [options] Override http request option.
|
|
20979
21001
|
* @throws {RequiredError}
|
|
20980
21002
|
*/
|
|
20981
|
-
apiV1FaqcategoriesGet(id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoriesModel>>;
|
|
21003
|
+
apiV1FaqcategoriesGet(id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: 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<FaqCategoriesModel>>;
|
|
20982
21004
|
/**
|
|
20983
21005
|
*
|
|
20984
21006
|
* @summary Create a FaqCategory.
|
|
@@ -21025,10 +21047,11 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | u
|
|
|
21025
21047
|
* @summary Get FaqCategory.
|
|
21026
21048
|
* @param {string} faqCategoryId
|
|
21027
21049
|
* @param {string} [languageCode]
|
|
21050
|
+
* @param {boolean} [returnDefaultValue]
|
|
21028
21051
|
* @param {*} [options] Override http request option.
|
|
21029
21052
|
* @throws {RequiredError}
|
|
21030
21053
|
*/
|
|
21031
|
-
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, options?: any): AxiosPromise<FaqCategoryModel>;
|
|
21054
|
+
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<FaqCategoryModel>;
|
|
21032
21055
|
/**
|
|
21033
21056
|
*
|
|
21034
21057
|
* @summary Update FaqCategory.
|
|
@@ -21045,14 +21068,18 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | u
|
|
|
21045
21068
|
* @param {string} [parentId]
|
|
21046
21069
|
* @param {string} [name]
|
|
21047
21070
|
* @param {string} [description]
|
|
21071
|
+
* @param {string} [hospitalId]
|
|
21072
|
+
* @param {string} [hospitalName]
|
|
21048
21073
|
* @param {string} [languageCode]
|
|
21074
|
+
* @param {boolean} [showHidden]
|
|
21075
|
+
* @param {boolean} [returnDefaultValue]
|
|
21049
21076
|
* @param {number} [page]
|
|
21050
21077
|
* @param {number} [limit]
|
|
21051
21078
|
* @param {Date} [lastRetrieved]
|
|
21052
21079
|
* @param {*} [options] Override http request option.
|
|
21053
21080
|
* @throws {RequiredError}
|
|
21054
21081
|
*/
|
|
21055
|
-
apiV1FaqcategoriesGet(id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqCategoriesModel>;
|
|
21082
|
+
apiV1FaqcategoriesGet(id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqCategoriesModel>;
|
|
21056
21083
|
/**
|
|
21057
21084
|
*
|
|
21058
21085
|
* @summary Create a FaqCategory.
|
|
@@ -21103,11 +21130,12 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
21103
21130
|
* @summary Get FaqCategory.
|
|
21104
21131
|
* @param {string} faqCategoryId
|
|
21105
21132
|
* @param {string} [languageCode]
|
|
21133
|
+
* @param {boolean} [returnDefaultValue]
|
|
21106
21134
|
* @param {*} [options] Override http request option.
|
|
21107
21135
|
* @throws {RequiredError}
|
|
21108
21136
|
* @memberof FaqCategoriesApi
|
|
21109
21137
|
*/
|
|
21110
|
-
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
|
|
21138
|
+
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
|
|
21111
21139
|
/**
|
|
21112
21140
|
*
|
|
21113
21141
|
* @summary Update FaqCategory.
|
|
@@ -21125,7 +21153,11 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
21125
21153
|
* @param {string} [parentId]
|
|
21126
21154
|
* @param {string} [name]
|
|
21127
21155
|
* @param {string} [description]
|
|
21156
|
+
* @param {string} [hospitalId]
|
|
21157
|
+
* @param {string} [hospitalName]
|
|
21128
21158
|
* @param {string} [languageCode]
|
|
21159
|
+
* @param {boolean} [showHidden]
|
|
21160
|
+
* @param {boolean} [returnDefaultValue]
|
|
21129
21161
|
* @param {number} [page]
|
|
21130
21162
|
* @param {number} [limit]
|
|
21131
21163
|
* @param {Date} [lastRetrieved]
|
|
@@ -21133,7 +21165,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
21133
21165
|
* @throws {RequiredError}
|
|
21134
21166
|
* @memberof FaqCategoriesApi
|
|
21135
21167
|
*/
|
|
21136
|
-
apiV1FaqcategoriesGet(id?: string, parentId?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoriesModel>>;
|
|
21168
|
+
apiV1FaqcategoriesGet(id?: string, parentId?: string, name?: string, description?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoriesModel>>;
|
|
21137
21169
|
/**
|
|
21138
21170
|
*
|
|
21139
21171
|
* @summary Create a FaqCategory.
|
|
@@ -21172,10 +21204,11 @@ export declare const FaqsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
21172
21204
|
* @summary Get faq.
|
|
21173
21205
|
* @param {string} faqId
|
|
21174
21206
|
* @param {string} [languageCode]
|
|
21207
|
+
* @param {boolean} [returnDefaultValue]
|
|
21175
21208
|
* @param {*} [options] Override http request option.
|
|
21176
21209
|
* @throws {RequiredError}
|
|
21177
21210
|
*/
|
|
21178
|
-
apiV1FaqsFaqIdGet: (faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21211
|
+
apiV1FaqsFaqIdGet: (faqId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21179
21212
|
/**
|
|
21180
21213
|
*
|
|
21181
21214
|
* @summary Get all FaqMedias.
|
|
@@ -21246,13 +21279,14 @@ export declare const FaqsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
21246
21279
|
* @param {string} [hospitalName]
|
|
21247
21280
|
* @param {string} [languageCode]
|
|
21248
21281
|
* @param {boolean} [showHidden]
|
|
21282
|
+
* @param {boolean} [returnDefaultValue]
|
|
21249
21283
|
* @param {number} [page]
|
|
21250
21284
|
* @param {number} [limit]
|
|
21251
21285
|
* @param {Date} [lastRetrieved]
|
|
21252
21286
|
* @param {*} [options] Override http request option.
|
|
21253
21287
|
* @throws {RequiredError}
|
|
21254
21288
|
*/
|
|
21255
|
-
apiV1FaqsGet: (id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21289
|
+
apiV1FaqsGet: (id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21256
21290
|
/**
|
|
21257
21291
|
*
|
|
21258
21292
|
* @summary Create a faq.
|
|
@@ -21289,10 +21323,11 @@ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
|
|
|
21289
21323
|
* @summary Get faq.
|
|
21290
21324
|
* @param {string} faqId
|
|
21291
21325
|
* @param {string} [languageCode]
|
|
21326
|
+
* @param {boolean} [returnDefaultValue]
|
|
21292
21327
|
* @param {*} [options] Override http request option.
|
|
21293
21328
|
* @throws {RequiredError}
|
|
21294
21329
|
*/
|
|
21295
|
-
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqModel>>;
|
|
21330
|
+
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqModel>>;
|
|
21296
21331
|
/**
|
|
21297
21332
|
*
|
|
21298
21333
|
* @summary Get all FaqMedias.
|
|
@@ -21363,13 +21398,14 @@ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
|
|
|
21363
21398
|
* @param {string} [hospitalName]
|
|
21364
21399
|
* @param {string} [languageCode]
|
|
21365
21400
|
* @param {boolean} [showHidden]
|
|
21401
|
+
* @param {boolean} [returnDefaultValue]
|
|
21366
21402
|
* @param {number} [page]
|
|
21367
21403
|
* @param {number} [limit]
|
|
21368
21404
|
* @param {Date} [lastRetrieved]
|
|
21369
21405
|
* @param {*} [options] Override http request option.
|
|
21370
21406
|
* @throws {RequiredError}
|
|
21371
21407
|
*/
|
|
21372
|
-
apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: 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<FaqsModel>>;
|
|
21408
|
+
apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: 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<FaqsModel>>;
|
|
21373
21409
|
/**
|
|
21374
21410
|
*
|
|
21375
21411
|
* @summary Create a faq.
|
|
@@ -21406,10 +21442,11 @@ export declare const FaqsApiFactory: (configuration?: Configuration | undefined,
|
|
|
21406
21442
|
* @summary Get faq.
|
|
21407
21443
|
* @param {string} faqId
|
|
21408
21444
|
* @param {string} [languageCode]
|
|
21445
|
+
* @param {boolean} [returnDefaultValue]
|
|
21409
21446
|
* @param {*} [options] Override http request option.
|
|
21410
21447
|
* @throws {RequiredError}
|
|
21411
21448
|
*/
|
|
21412
|
-
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: any): AxiosPromise<FaqModel>;
|
|
21449
|
+
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<FaqModel>;
|
|
21413
21450
|
/**
|
|
21414
21451
|
*
|
|
21415
21452
|
* @summary Get all FaqMedias.
|
|
@@ -21480,13 +21517,14 @@ export declare const FaqsApiFactory: (configuration?: Configuration | undefined,
|
|
|
21480
21517
|
* @param {string} [hospitalName]
|
|
21481
21518
|
* @param {string} [languageCode]
|
|
21482
21519
|
* @param {boolean} [showHidden]
|
|
21520
|
+
* @param {boolean} [returnDefaultValue]
|
|
21483
21521
|
* @param {number} [page]
|
|
21484
21522
|
* @param {number} [limit]
|
|
21485
21523
|
* @param {Date} [lastRetrieved]
|
|
21486
21524
|
* @param {*} [options] Override http request option.
|
|
21487
21525
|
* @throws {RequiredError}
|
|
21488
21526
|
*/
|
|
21489
|
-
apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqsModel>;
|
|
21527
|
+
apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqsModel>;
|
|
21490
21528
|
/**
|
|
21491
21529
|
*
|
|
21492
21530
|
* @summary Create a faq.
|
|
@@ -21526,11 +21564,12 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
21526
21564
|
* @summary Get faq.
|
|
21527
21565
|
* @param {string} faqId
|
|
21528
21566
|
* @param {string} [languageCode]
|
|
21567
|
+
* @param {boolean} [returnDefaultValue]
|
|
21529
21568
|
* @param {*} [options] Override http request option.
|
|
21530
21569
|
* @throws {RequiredError}
|
|
21531
21570
|
* @memberof FaqsApi
|
|
21532
21571
|
*/
|
|
21533
|
-
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel>>;
|
|
21572
|
+
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel>>;
|
|
21534
21573
|
/**
|
|
21535
21574
|
*
|
|
21536
21575
|
* @summary Get all FaqMedias.
|
|
@@ -21607,6 +21646,7 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
21607
21646
|
* @param {string} [hospitalName]
|
|
21608
21647
|
* @param {string} [languageCode]
|
|
21609
21648
|
* @param {boolean} [showHidden]
|
|
21649
|
+
* @param {boolean} [returnDefaultValue]
|
|
21610
21650
|
* @param {number} [page]
|
|
21611
21651
|
* @param {number} [limit]
|
|
21612
21652
|
* @param {Date} [lastRetrieved]
|
|
@@ -21614,7 +21654,7 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
21614
21654
|
* @throws {RequiredError}
|
|
21615
21655
|
* @memberof FaqsApi
|
|
21616
21656
|
*/
|
|
21617
|
-
apiV1FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqsModel>>;
|
|
21657
|
+
apiV1FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqsModel>>;
|
|
21618
21658
|
/**
|
|
21619
21659
|
*
|
|
21620
21660
|
* @summary Create a faq.
|
|
@@ -21887,7 +21927,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
21887
21927
|
*
|
|
21888
21928
|
* @summary Get all HospitalHandles.
|
|
21889
21929
|
* @param {string} hospitalId
|
|
21890
|
-
* @param {string} [hospitalId2]
|
|
21891
21930
|
* @param {string} [id]
|
|
21892
21931
|
* @param {SnsType} [snsType]
|
|
21893
21932
|
* @param {string} [handle]
|
|
@@ -21897,7 +21936,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
21897
21936
|
* @param {*} [options] Override http request option.
|
|
21898
21937
|
* @throws {RequiredError}
|
|
21899
21938
|
*/
|
|
21900
|
-
apiV1HospitalsHospitalIdHandlesGet: (hospitalId: string,
|
|
21939
|
+
apiV1HospitalsHospitalIdHandlesGet: (hospitalId: string, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21901
21940
|
/**
|
|
21902
21941
|
*
|
|
21903
21942
|
* @summary Delete HospitalHandle.
|
|
@@ -22017,6 +22056,61 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
22017
22056
|
* @throws {RequiredError}
|
|
22018
22057
|
*/
|
|
22019
22058
|
apiV1HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22059
|
+
/**
|
|
22060
|
+
*
|
|
22061
|
+
* @summary Get all HospitalServiceMedias.
|
|
22062
|
+
* @param {string} hospitalId
|
|
22063
|
+
* @param {string} hospitalSpecialtyId
|
|
22064
|
+
* @param {string} [id]
|
|
22065
|
+
* @param {MediaType} [mediaType]
|
|
22066
|
+
* @param {number} [page]
|
|
22067
|
+
* @param {number} [limit]
|
|
22068
|
+
* @param {Date} [lastRetrieved]
|
|
22069
|
+
* @param {*} [options] Override http request option.
|
|
22070
|
+
* @throws {RequiredError}
|
|
22071
|
+
*/
|
|
22072
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet: (hospitalId: string, hospitalSpecialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22073
|
+
/**
|
|
22074
|
+
*
|
|
22075
|
+
* @summary Delete HospitalServiceMedia
|
|
22076
|
+
* @param {string} hospitalId
|
|
22077
|
+
* @param {string} hospitalSpecialtyId
|
|
22078
|
+
* @param {string} mediaId
|
|
22079
|
+
* @param {*} [options] Override http request option.
|
|
22080
|
+
* @throws {RequiredError}
|
|
22081
|
+
*/
|
|
22082
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdDelete: (hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22083
|
+
/**
|
|
22084
|
+
*
|
|
22085
|
+
* @summary Get HospitalServiceMedia.
|
|
22086
|
+
* @param {string} hospitalId
|
|
22087
|
+
* @param {string} hospitalSpecialtyId
|
|
22088
|
+
* @param {string} mediaId
|
|
22089
|
+
* @param {*} [options] Override http request option.
|
|
22090
|
+
* @throws {RequiredError}
|
|
22091
|
+
*/
|
|
22092
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet: (hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22093
|
+
/**
|
|
22094
|
+
*
|
|
22095
|
+
* @summary Update HospitalServiceMedia.
|
|
22096
|
+
* @param {string} hospitalId
|
|
22097
|
+
* @param {string} hospitalSpecialtyId
|
|
22098
|
+
* @param {string} mediaId
|
|
22099
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
22100
|
+
* @param {*} [options] Override http request option.
|
|
22101
|
+
* @throws {RequiredError}
|
|
22102
|
+
*/
|
|
22103
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdPut: (hospitalId: string, hospitalSpecialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22104
|
+
/**
|
|
22105
|
+
*
|
|
22106
|
+
* @summary Create HospitalServiceMedia.
|
|
22107
|
+
* @param {string} hospitalId
|
|
22108
|
+
* @param {string} hospitalSpecialtyId
|
|
22109
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
22110
|
+
* @param {*} [options] Override http request option.
|
|
22111
|
+
* @throws {RequiredError}
|
|
22112
|
+
*/
|
|
22113
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost: (hospitalId: string, hospitalSpecialtyId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22020
22114
|
/**
|
|
22021
22115
|
*
|
|
22022
22116
|
* @summary Create HospitalSpecialty.
|
|
@@ -22211,7 +22305,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
22211
22305
|
*
|
|
22212
22306
|
* @summary Get all HospitalWorkingDays.
|
|
22213
22307
|
* @param {string} hospitalId
|
|
22214
|
-
* @param {string} [hospitalId2]
|
|
22215
22308
|
* @param {string} [id]
|
|
22216
22309
|
* @param {string} [dayOfWeek]
|
|
22217
22310
|
* @param {Date} [timeFrom]
|
|
@@ -22223,7 +22316,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
22223
22316
|
* @param {*} [options] Override http request option.
|
|
22224
22317
|
* @throws {RequiredError}
|
|
22225
22318
|
*/
|
|
22226
|
-
apiV1HospitalsHospitalIdWorkingdaysGet: (hospitalId: string,
|
|
22319
|
+
apiV1HospitalsHospitalIdWorkingdaysGet: (hospitalId: string, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22227
22320
|
/**
|
|
22228
22321
|
*
|
|
22229
22322
|
* @summary Create HospitalWorkingDay.
|
|
@@ -22555,7 +22648,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22555
22648
|
*
|
|
22556
22649
|
* @summary Get all HospitalHandles.
|
|
22557
22650
|
* @param {string} hospitalId
|
|
22558
|
-
* @param {string} [hospitalId2]
|
|
22559
22651
|
* @param {string} [id]
|
|
22560
22652
|
* @param {SnsType} [snsType]
|
|
22561
22653
|
* @param {string} [handle]
|
|
@@ -22565,7 +22657,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22565
22657
|
* @param {*} [options] Override http request option.
|
|
22566
22658
|
* @throws {RequiredError}
|
|
22567
22659
|
*/
|
|
22568
|
-
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
22660
|
+
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSnsHandlesModel>>;
|
|
22569
22661
|
/**
|
|
22570
22662
|
*
|
|
22571
22663
|
* @summary Delete HospitalHandle.
|
|
@@ -22685,6 +22777,61 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22685
22777
|
* @throws {RequiredError}
|
|
22686
22778
|
*/
|
|
22687
22779
|
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
22780
|
+
/**
|
|
22781
|
+
*
|
|
22782
|
+
* @summary Get all HospitalServiceMedias.
|
|
22783
|
+
* @param {string} hospitalId
|
|
22784
|
+
* @param {string} hospitalSpecialtyId
|
|
22785
|
+
* @param {string} [id]
|
|
22786
|
+
* @param {MediaType} [mediaType]
|
|
22787
|
+
* @param {number} [page]
|
|
22788
|
+
* @param {number} [limit]
|
|
22789
|
+
* @param {Date} [lastRetrieved]
|
|
22790
|
+
* @param {*} [options] Override http request option.
|
|
22791
|
+
* @throws {RequiredError}
|
|
22792
|
+
*/
|
|
22793
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(hospitalId: string, hospitalSpecialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
22794
|
+
/**
|
|
22795
|
+
*
|
|
22796
|
+
* @summary Delete HospitalServiceMedia
|
|
22797
|
+
* @param {string} hospitalId
|
|
22798
|
+
* @param {string} hospitalSpecialtyId
|
|
22799
|
+
* @param {string} mediaId
|
|
22800
|
+
* @param {*} [options] Override http request option.
|
|
22801
|
+
* @throws {RequiredError}
|
|
22802
|
+
*/
|
|
22803
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdDelete(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
22804
|
+
/**
|
|
22805
|
+
*
|
|
22806
|
+
* @summary Get HospitalServiceMedia.
|
|
22807
|
+
* @param {string} hospitalId
|
|
22808
|
+
* @param {string} hospitalSpecialtyId
|
|
22809
|
+
* @param {string} mediaId
|
|
22810
|
+
* @param {*} [options] Override http request option.
|
|
22811
|
+
* @throws {RequiredError}
|
|
22812
|
+
*/
|
|
22813
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
22814
|
+
/**
|
|
22815
|
+
*
|
|
22816
|
+
* @summary Update HospitalServiceMedia.
|
|
22817
|
+
* @param {string} hospitalId
|
|
22818
|
+
* @param {string} hospitalSpecialtyId
|
|
22819
|
+
* @param {string} mediaId
|
|
22820
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
22821
|
+
* @param {*} [options] Override http request option.
|
|
22822
|
+
* @throws {RequiredError}
|
|
22823
|
+
*/
|
|
22824
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdPut(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
22825
|
+
/**
|
|
22826
|
+
*
|
|
22827
|
+
* @summary Create HospitalServiceMedia.
|
|
22828
|
+
* @param {string} hospitalId
|
|
22829
|
+
* @param {string} hospitalSpecialtyId
|
|
22830
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
22831
|
+
* @param {*} [options] Override http request option.
|
|
22832
|
+
* @throws {RequiredError}
|
|
22833
|
+
*/
|
|
22834
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost(hospitalId: string, hospitalSpecialtyId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
22688
22835
|
/**
|
|
22689
22836
|
*
|
|
22690
22837
|
* @summary Create HospitalSpecialty.
|
|
@@ -22879,7 +23026,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22879
23026
|
*
|
|
22880
23027
|
* @summary Get all HospitalWorkingDays.
|
|
22881
23028
|
* @param {string} hospitalId
|
|
22882
|
-
* @param {string} [hospitalId2]
|
|
22883
23029
|
* @param {string} [id]
|
|
22884
23030
|
* @param {string} [dayOfWeek]
|
|
22885
23031
|
* @param {Date} [timeFrom]
|
|
@@ -22891,7 +23037,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22891
23037
|
* @param {*} [options] Override http request option.
|
|
22892
23038
|
* @throws {RequiredError}
|
|
22893
23039
|
*/
|
|
22894
|
-
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
23040
|
+
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDaysModel>>;
|
|
22895
23041
|
/**
|
|
22896
23042
|
*
|
|
22897
23043
|
* @summary Create HospitalWorkingDay.
|
|
@@ -22900,7 +23046,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22900
23046
|
* @param {*} [options] Override http request option.
|
|
22901
23047
|
* @throws {RequiredError}
|
|
22902
23048
|
*/
|
|
22903
|
-
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
23049
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDayModel>>;
|
|
22904
23050
|
/**
|
|
22905
23051
|
*
|
|
22906
23052
|
* @summary Delete HospitalWorkingDay.
|
|
@@ -23223,7 +23369,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23223
23369
|
*
|
|
23224
23370
|
* @summary Get all HospitalHandles.
|
|
23225
23371
|
* @param {string} hospitalId
|
|
23226
|
-
* @param {string} [hospitalId2]
|
|
23227
23372
|
* @param {string} [id]
|
|
23228
23373
|
* @param {SnsType} [snsType]
|
|
23229
23374
|
* @param {string} [handle]
|
|
@@ -23233,7 +23378,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23233
23378
|
* @param {*} [options] Override http request option.
|
|
23234
23379
|
* @throws {RequiredError}
|
|
23235
23380
|
*/
|
|
23236
|
-
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
23381
|
+
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSnsHandlesModel>;
|
|
23237
23382
|
/**
|
|
23238
23383
|
*
|
|
23239
23384
|
* @summary Delete HospitalHandle.
|
|
@@ -23353,6 +23498,61 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23353
23498
|
* @throws {RequiredError}
|
|
23354
23499
|
*/
|
|
23355
23500
|
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
23501
|
+
/**
|
|
23502
|
+
*
|
|
23503
|
+
* @summary Get all HospitalServiceMedias.
|
|
23504
|
+
* @param {string} hospitalId
|
|
23505
|
+
* @param {string} hospitalSpecialtyId
|
|
23506
|
+
* @param {string} [id]
|
|
23507
|
+
* @param {MediaType} [mediaType]
|
|
23508
|
+
* @param {number} [page]
|
|
23509
|
+
* @param {number} [limit]
|
|
23510
|
+
* @param {Date} [lastRetrieved]
|
|
23511
|
+
* @param {*} [options] Override http request option.
|
|
23512
|
+
* @throws {RequiredError}
|
|
23513
|
+
*/
|
|
23514
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(hospitalId: string, hospitalSpecialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
|
|
23515
|
+
/**
|
|
23516
|
+
*
|
|
23517
|
+
* @summary Delete HospitalServiceMedia
|
|
23518
|
+
* @param {string} hospitalId
|
|
23519
|
+
* @param {string} hospitalSpecialtyId
|
|
23520
|
+
* @param {string} mediaId
|
|
23521
|
+
* @param {*} [options] Override http request option.
|
|
23522
|
+
* @throws {RequiredError}
|
|
23523
|
+
*/
|
|
23524
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdDelete(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
|
|
23525
|
+
/**
|
|
23526
|
+
*
|
|
23527
|
+
* @summary Get HospitalServiceMedia.
|
|
23528
|
+
* @param {string} hospitalId
|
|
23529
|
+
* @param {string} hospitalSpecialtyId
|
|
23530
|
+
* @param {string} mediaId
|
|
23531
|
+
* @param {*} [options] Override http request option.
|
|
23532
|
+
* @throws {RequiredError}
|
|
23533
|
+
*/
|
|
23534
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
23535
|
+
/**
|
|
23536
|
+
*
|
|
23537
|
+
* @summary Update HospitalServiceMedia.
|
|
23538
|
+
* @param {string} hospitalId
|
|
23539
|
+
* @param {string} hospitalSpecialtyId
|
|
23540
|
+
* @param {string} mediaId
|
|
23541
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
23542
|
+
* @param {*} [options] Override http request option.
|
|
23543
|
+
* @throws {RequiredError}
|
|
23544
|
+
*/
|
|
23545
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdPut(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
23546
|
+
/**
|
|
23547
|
+
*
|
|
23548
|
+
* @summary Create HospitalServiceMedia.
|
|
23549
|
+
* @param {string} hospitalId
|
|
23550
|
+
* @param {string} hospitalSpecialtyId
|
|
23551
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
23552
|
+
* @param {*} [options] Override http request option.
|
|
23553
|
+
* @throws {RequiredError}
|
|
23554
|
+
*/
|
|
23555
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost(hospitalId: string, hospitalSpecialtyId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
23356
23556
|
/**
|
|
23357
23557
|
*
|
|
23358
23558
|
* @summary Create HospitalSpecialty.
|
|
@@ -23547,7 +23747,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23547
23747
|
*
|
|
23548
23748
|
* @summary Get all HospitalWorkingDays.
|
|
23549
23749
|
* @param {string} hospitalId
|
|
23550
|
-
* @param {string} [hospitalId2]
|
|
23551
23750
|
* @param {string} [id]
|
|
23552
23751
|
* @param {string} [dayOfWeek]
|
|
23553
23752
|
* @param {Date} [timeFrom]
|
|
@@ -23559,7 +23758,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23559
23758
|
* @param {*} [options] Override http request option.
|
|
23560
23759
|
* @throws {RequiredError}
|
|
23561
23760
|
*/
|
|
23562
|
-
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
23761
|
+
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<WorkingDaysModel>;
|
|
23563
23762
|
/**
|
|
23564
23763
|
*
|
|
23565
23764
|
* @summary Create HospitalWorkingDay.
|
|
@@ -23568,7 +23767,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23568
23767
|
* @param {*} [options] Override http request option.
|
|
23569
23768
|
* @throws {RequiredError}
|
|
23570
23769
|
*/
|
|
23571
|
-
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: any): AxiosPromise<
|
|
23770
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: any): AxiosPromise<WorkingDayModel>;
|
|
23572
23771
|
/**
|
|
23573
23772
|
*
|
|
23574
23773
|
* @summary Delete HospitalWorkingDay.
|
|
@@ -23915,7 +24114,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
23915
24114
|
*
|
|
23916
24115
|
* @summary Get all HospitalHandles.
|
|
23917
24116
|
* @param {string} hospitalId
|
|
23918
|
-
* @param {string} [hospitalId2]
|
|
23919
24117
|
* @param {string} [id]
|
|
23920
24118
|
* @param {SnsType} [snsType]
|
|
23921
24119
|
* @param {string} [handle]
|
|
@@ -23926,7 +24124,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
23926
24124
|
* @throws {RequiredError}
|
|
23927
24125
|
* @memberof HospitalsApi
|
|
23928
24126
|
*/
|
|
23929
|
-
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
24127
|
+
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSnsHandlesModel>>;
|
|
23930
24128
|
/**
|
|
23931
24129
|
*
|
|
23932
24130
|
* @summary Delete HospitalHandle.
|
|
@@ -24057,6 +24255,66 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24057
24255
|
* @memberof HospitalsApi
|
|
24058
24256
|
*/
|
|
24059
24257
|
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel>>;
|
|
24258
|
+
/**
|
|
24259
|
+
*
|
|
24260
|
+
* @summary Get all HospitalServiceMedias.
|
|
24261
|
+
* @param {string} hospitalId
|
|
24262
|
+
* @param {string} hospitalSpecialtyId
|
|
24263
|
+
* @param {string} [id]
|
|
24264
|
+
* @param {MediaType} [mediaType]
|
|
24265
|
+
* @param {number} [page]
|
|
24266
|
+
* @param {number} [limit]
|
|
24267
|
+
* @param {Date} [lastRetrieved]
|
|
24268
|
+
* @param {*} [options] Override http request option.
|
|
24269
|
+
* @throws {RequiredError}
|
|
24270
|
+
* @memberof HospitalsApi
|
|
24271
|
+
*/
|
|
24272
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(hospitalId: string, hospitalSpecialtyId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
24273
|
+
/**
|
|
24274
|
+
*
|
|
24275
|
+
* @summary Delete HospitalServiceMedia
|
|
24276
|
+
* @param {string} hospitalId
|
|
24277
|
+
* @param {string} hospitalSpecialtyId
|
|
24278
|
+
* @param {string} mediaId
|
|
24279
|
+
* @param {*} [options] Override http request option.
|
|
24280
|
+
* @throws {RequiredError}
|
|
24281
|
+
* @memberof HospitalsApi
|
|
24282
|
+
*/
|
|
24283
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdDelete(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
24284
|
+
/**
|
|
24285
|
+
*
|
|
24286
|
+
* @summary Get HospitalServiceMedia.
|
|
24287
|
+
* @param {string} hospitalId
|
|
24288
|
+
* @param {string} hospitalSpecialtyId
|
|
24289
|
+
* @param {string} mediaId
|
|
24290
|
+
* @param {*} [options] Override http request option.
|
|
24291
|
+
* @throws {RequiredError}
|
|
24292
|
+
* @memberof HospitalsApi
|
|
24293
|
+
*/
|
|
24294
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
24295
|
+
/**
|
|
24296
|
+
*
|
|
24297
|
+
* @summary Update HospitalServiceMedia.
|
|
24298
|
+
* @param {string} hospitalId
|
|
24299
|
+
* @param {string} hospitalSpecialtyId
|
|
24300
|
+
* @param {string} mediaId
|
|
24301
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
24302
|
+
* @param {*} [options] Override http request option.
|
|
24303
|
+
* @throws {RequiredError}
|
|
24304
|
+
* @memberof HospitalsApi
|
|
24305
|
+
*/
|
|
24306
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdPut(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
24307
|
+
/**
|
|
24308
|
+
*
|
|
24309
|
+
* @summary Create HospitalServiceMedia.
|
|
24310
|
+
* @param {string} hospitalId
|
|
24311
|
+
* @param {string} hospitalSpecialtyId
|
|
24312
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
24313
|
+
* @param {*} [options] Override http request option.
|
|
24314
|
+
* @throws {RequiredError}
|
|
24315
|
+
* @memberof HospitalsApi
|
|
24316
|
+
*/
|
|
24317
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost(hospitalId: string, hospitalSpecialtyId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
24060
24318
|
/**
|
|
24061
24319
|
*
|
|
24062
24320
|
* @summary Create HospitalSpecialty.
|
|
@@ -24266,7 +24524,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24266
24524
|
*
|
|
24267
24525
|
* @summary Get all HospitalWorkingDays.
|
|
24268
24526
|
* @param {string} hospitalId
|
|
24269
|
-
* @param {string} [hospitalId2]
|
|
24270
24527
|
* @param {string} [id]
|
|
24271
24528
|
* @param {string} [dayOfWeek]
|
|
24272
24529
|
* @param {Date} [timeFrom]
|
|
@@ -24279,7 +24536,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24279
24536
|
* @throws {RequiredError}
|
|
24280
24537
|
* @memberof HospitalsApi
|
|
24281
24538
|
*/
|
|
24282
|
-
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
24539
|
+
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string, id?: string, dayOfWeek?: string, timeFrom?: Date, timeTo?: Date, checkHoliday?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDaysModel>>;
|
|
24283
24540
|
/**
|
|
24284
24541
|
*
|
|
24285
24542
|
* @summary Create HospitalWorkingDay.
|
|
@@ -24289,7 +24546,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24289
24546
|
* @throws {RequiredError}
|
|
24290
24547
|
* @memberof HospitalsApi
|
|
24291
24548
|
*/
|
|
24292
|
-
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
24549
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel>>;
|
|
24293
24550
|
/**
|
|
24294
24551
|
*
|
|
24295
24552
|
* @summary Delete HospitalWorkingDay.
|