ch-admin-api-client-typescript 3.1.2 → 3.1.5
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 +432 -30
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +819 -67
- package/package.json +1 -1
- package/src/api.ts +919 -156
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
6836
|
* @memberof FaqCategoryItemModel
|
|
6837
6837
|
*/
|
|
6838
|
-
'
|
|
6838
|
+
'hospitalId'?: string;
|
|
6839
|
+
/**
|
|
6840
|
+
*
|
|
6841
|
+
* @type {string}
|
|
6842
|
+
* @memberof FaqCategoryItemModel
|
|
6843
|
+
*/
|
|
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>}
|
|
@@ -10812,6 +10824,25 @@ export interface SpecialtiesModel {
|
|
|
10812
10824
|
*/
|
|
10813
10825
|
'metaData'?: PagedListMetaData;
|
|
10814
10826
|
}
|
|
10827
|
+
/**
|
|
10828
|
+
*
|
|
10829
|
+
* @export
|
|
10830
|
+
* @interface SpecialtiesSimpleModel
|
|
10831
|
+
*/
|
|
10832
|
+
export interface SpecialtiesSimpleModel {
|
|
10833
|
+
/**
|
|
10834
|
+
*
|
|
10835
|
+
* @type {Array<SpecialtyItemSimpleModel>}
|
|
10836
|
+
* @memberof SpecialtiesSimpleModel
|
|
10837
|
+
*/
|
|
10838
|
+
'items'?: Array<SpecialtyItemSimpleModel> | null;
|
|
10839
|
+
/**
|
|
10840
|
+
*
|
|
10841
|
+
* @type {PagedListMetaData}
|
|
10842
|
+
* @memberof SpecialtiesSimpleModel
|
|
10843
|
+
*/
|
|
10844
|
+
'metaData'?: PagedListMetaData;
|
|
10845
|
+
}
|
|
10815
10846
|
/**
|
|
10816
10847
|
*
|
|
10817
10848
|
* @export
|
|
@@ -10897,6 +10928,43 @@ export interface SpecialtyItemModel {
|
|
|
10897
10928
|
*/
|
|
10898
10929
|
'medias'?: Array<MediaModel> | null;
|
|
10899
10930
|
}
|
|
10931
|
+
/**
|
|
10932
|
+
*
|
|
10933
|
+
* @export
|
|
10934
|
+
* @interface SpecialtyItemSimpleModel
|
|
10935
|
+
*/
|
|
10936
|
+
export interface SpecialtyItemSimpleModel {
|
|
10937
|
+
/**
|
|
10938
|
+
*
|
|
10939
|
+
* @type {string}
|
|
10940
|
+
* @memberof SpecialtyItemSimpleModel
|
|
10941
|
+
*/
|
|
10942
|
+
'id'?: string;
|
|
10943
|
+
/**
|
|
10944
|
+
*
|
|
10945
|
+
* @type {string}
|
|
10946
|
+
* @memberof SpecialtyItemSimpleModel
|
|
10947
|
+
*/
|
|
10948
|
+
'name'?: string | null;
|
|
10949
|
+
/**
|
|
10950
|
+
*
|
|
10951
|
+
* @type {string}
|
|
10952
|
+
* @memberof SpecialtyItemSimpleModel
|
|
10953
|
+
*/
|
|
10954
|
+
'slug'?: string | null;
|
|
10955
|
+
/**
|
|
10956
|
+
*
|
|
10957
|
+
* @type {string}
|
|
10958
|
+
* @memberof SpecialtyItemSimpleModel
|
|
10959
|
+
*/
|
|
10960
|
+
'specialtyTypeId'?: string;
|
|
10961
|
+
/**
|
|
10962
|
+
*
|
|
10963
|
+
* @type {boolean}
|
|
10964
|
+
* @memberof SpecialtyItemSimpleModel
|
|
10965
|
+
*/
|
|
10966
|
+
'confirmed'?: boolean;
|
|
10967
|
+
}
|
|
10900
10968
|
/**
|
|
10901
10969
|
*
|
|
10902
10970
|
* @export
|
|
@@ -20877,10 +20945,11 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
20877
20945
|
* @summary Get FaqCategory.
|
|
20878
20946
|
* @param {string} faqCategoryId
|
|
20879
20947
|
* @param {string} [languageCode]
|
|
20948
|
+
* @param {boolean} [returnDefaultValue]
|
|
20880
20949
|
* @param {*} [options] Override http request option.
|
|
20881
20950
|
* @throws {RequiredError}
|
|
20882
20951
|
*/
|
|
20883
|
-
apiV1FaqcategoriesFaqCategoryIdGet: (faqCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20952
|
+
apiV1FaqcategoriesFaqCategoryIdGet: (faqCategoryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20884
20953
|
/**
|
|
20885
20954
|
*
|
|
20886
20955
|
* @summary Update FaqCategory.
|
|
@@ -20897,14 +20966,18 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
20897
20966
|
* @param {string} [parentId]
|
|
20898
20967
|
* @param {string} [name]
|
|
20899
20968
|
* @param {string} [description]
|
|
20969
|
+
* @param {string} [hospitalId]
|
|
20970
|
+
* @param {string} [hospitalName]
|
|
20900
20971
|
* @param {string} [languageCode]
|
|
20972
|
+
* @param {boolean} [showHidden]
|
|
20973
|
+
* @param {boolean} [returnDefaultValue]
|
|
20901
20974
|
* @param {number} [page]
|
|
20902
20975
|
* @param {number} [limit]
|
|
20903
20976
|
* @param {Date} [lastRetrieved]
|
|
20904
20977
|
* @param {*} [options] Override http request option.
|
|
20905
20978
|
* @throws {RequiredError}
|
|
20906
20979
|
*/
|
|
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>;
|
|
20980
|
+
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
20981
|
/**
|
|
20909
20982
|
*
|
|
20910
20983
|
* @summary Create a FaqCategory.
|
|
@@ -20951,10 +21024,11 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
20951
21024
|
* @summary Get FaqCategory.
|
|
20952
21025
|
* @param {string} faqCategoryId
|
|
20953
21026
|
* @param {string} [languageCode]
|
|
21027
|
+
* @param {boolean} [returnDefaultValue]
|
|
20954
21028
|
* @param {*} [options] Override http request option.
|
|
20955
21029
|
* @throws {RequiredError}
|
|
20956
21030
|
*/
|
|
20957
|
-
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
|
|
21031
|
+
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
|
|
20958
21032
|
/**
|
|
20959
21033
|
*
|
|
20960
21034
|
* @summary Update FaqCategory.
|
|
@@ -20971,14 +21045,18 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
20971
21045
|
* @param {string} [parentId]
|
|
20972
21046
|
* @param {string} [name]
|
|
20973
21047
|
* @param {string} [description]
|
|
21048
|
+
* @param {string} [hospitalId]
|
|
21049
|
+
* @param {string} [hospitalName]
|
|
20974
21050
|
* @param {string} [languageCode]
|
|
21051
|
+
* @param {boolean} [showHidden]
|
|
21052
|
+
* @param {boolean} [returnDefaultValue]
|
|
20975
21053
|
* @param {number} [page]
|
|
20976
21054
|
* @param {number} [limit]
|
|
20977
21055
|
* @param {Date} [lastRetrieved]
|
|
20978
21056
|
* @param {*} [options] Override http request option.
|
|
20979
21057
|
* @throws {RequiredError}
|
|
20980
21058
|
*/
|
|
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>>;
|
|
21059
|
+
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
21060
|
/**
|
|
20983
21061
|
*
|
|
20984
21062
|
* @summary Create a FaqCategory.
|
|
@@ -21025,10 +21103,11 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | u
|
|
|
21025
21103
|
* @summary Get FaqCategory.
|
|
21026
21104
|
* @param {string} faqCategoryId
|
|
21027
21105
|
* @param {string} [languageCode]
|
|
21106
|
+
* @param {boolean} [returnDefaultValue]
|
|
21028
21107
|
* @param {*} [options] Override http request option.
|
|
21029
21108
|
* @throws {RequiredError}
|
|
21030
21109
|
*/
|
|
21031
|
-
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, options?: any): AxiosPromise<FaqCategoryModel>;
|
|
21110
|
+
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<FaqCategoryModel>;
|
|
21032
21111
|
/**
|
|
21033
21112
|
*
|
|
21034
21113
|
* @summary Update FaqCategory.
|
|
@@ -21045,14 +21124,18 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | u
|
|
|
21045
21124
|
* @param {string} [parentId]
|
|
21046
21125
|
* @param {string} [name]
|
|
21047
21126
|
* @param {string} [description]
|
|
21127
|
+
* @param {string} [hospitalId]
|
|
21128
|
+
* @param {string} [hospitalName]
|
|
21048
21129
|
* @param {string} [languageCode]
|
|
21130
|
+
* @param {boolean} [showHidden]
|
|
21131
|
+
* @param {boolean} [returnDefaultValue]
|
|
21049
21132
|
* @param {number} [page]
|
|
21050
21133
|
* @param {number} [limit]
|
|
21051
21134
|
* @param {Date} [lastRetrieved]
|
|
21052
21135
|
* @param {*} [options] Override http request option.
|
|
21053
21136
|
* @throws {RequiredError}
|
|
21054
21137
|
*/
|
|
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>;
|
|
21138
|
+
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
21139
|
/**
|
|
21057
21140
|
*
|
|
21058
21141
|
* @summary Create a FaqCategory.
|
|
@@ -21103,11 +21186,12 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
21103
21186
|
* @summary Get FaqCategory.
|
|
21104
21187
|
* @param {string} faqCategoryId
|
|
21105
21188
|
* @param {string} [languageCode]
|
|
21189
|
+
* @param {boolean} [returnDefaultValue]
|
|
21106
21190
|
* @param {*} [options] Override http request option.
|
|
21107
21191
|
* @throws {RequiredError}
|
|
21108
21192
|
* @memberof FaqCategoriesApi
|
|
21109
21193
|
*/
|
|
21110
|
-
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
|
|
21194
|
+
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
|
|
21111
21195
|
/**
|
|
21112
21196
|
*
|
|
21113
21197
|
* @summary Update FaqCategory.
|
|
@@ -21125,7 +21209,11 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
21125
21209
|
* @param {string} [parentId]
|
|
21126
21210
|
* @param {string} [name]
|
|
21127
21211
|
* @param {string} [description]
|
|
21212
|
+
* @param {string} [hospitalId]
|
|
21213
|
+
* @param {string} [hospitalName]
|
|
21128
21214
|
* @param {string} [languageCode]
|
|
21215
|
+
* @param {boolean} [showHidden]
|
|
21216
|
+
* @param {boolean} [returnDefaultValue]
|
|
21129
21217
|
* @param {number} [page]
|
|
21130
21218
|
* @param {number} [limit]
|
|
21131
21219
|
* @param {Date} [lastRetrieved]
|
|
@@ -21133,7 +21221,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
21133
21221
|
* @throws {RequiredError}
|
|
21134
21222
|
* @memberof FaqCategoriesApi
|
|
21135
21223
|
*/
|
|
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>>;
|
|
21224
|
+
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
21225
|
/**
|
|
21138
21226
|
*
|
|
21139
21227
|
* @summary Create a FaqCategory.
|
|
@@ -21163,19 +21251,21 @@ export declare const FaqsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
21163
21251
|
*
|
|
21164
21252
|
* @summary Delete faq.
|
|
21165
21253
|
* @param {string} faqId
|
|
21254
|
+
* @param {boolean} [forceDelete]
|
|
21166
21255
|
* @param {*} [options] Override http request option.
|
|
21167
21256
|
* @throws {RequiredError}
|
|
21168
21257
|
*/
|
|
21169
|
-
apiV1FaqsFaqIdDelete: (faqId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21258
|
+
apiV1FaqsFaqIdDelete: (faqId: string, forceDelete?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21170
21259
|
/**
|
|
21171
21260
|
*
|
|
21172
21261
|
* @summary Get faq.
|
|
21173
21262
|
* @param {string} faqId
|
|
21174
21263
|
* @param {string} [languageCode]
|
|
21264
|
+
* @param {boolean} [returnDefaultValue]
|
|
21175
21265
|
* @param {*} [options] Override http request option.
|
|
21176
21266
|
* @throws {RequiredError}
|
|
21177
21267
|
*/
|
|
21178
|
-
apiV1FaqsFaqIdGet: (faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21268
|
+
apiV1FaqsFaqIdGet: (faqId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21179
21269
|
/**
|
|
21180
21270
|
*
|
|
21181
21271
|
* @summary Get all FaqMedias.
|
|
@@ -21246,13 +21336,14 @@ export declare const FaqsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
21246
21336
|
* @param {string} [hospitalName]
|
|
21247
21337
|
* @param {string} [languageCode]
|
|
21248
21338
|
* @param {boolean} [showHidden]
|
|
21339
|
+
* @param {boolean} [returnDefaultValue]
|
|
21249
21340
|
* @param {number} [page]
|
|
21250
21341
|
* @param {number} [limit]
|
|
21251
21342
|
* @param {Date} [lastRetrieved]
|
|
21252
21343
|
* @param {*} [options] Override http request option.
|
|
21253
21344
|
* @throws {RequiredError}
|
|
21254
21345
|
*/
|
|
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>;
|
|
21346
|
+
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
21347
|
/**
|
|
21257
21348
|
*
|
|
21258
21349
|
* @summary Create a faq.
|
|
@@ -21280,19 +21371,21 @@ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
|
|
|
21280
21371
|
*
|
|
21281
21372
|
* @summary Delete faq.
|
|
21282
21373
|
* @param {string} faqId
|
|
21374
|
+
* @param {boolean} [forceDelete]
|
|
21283
21375
|
* @param {*} [options] Override http request option.
|
|
21284
21376
|
* @throws {RequiredError}
|
|
21285
21377
|
*/
|
|
21286
|
-
apiV1FaqsFaqIdDelete(faqId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
21378
|
+
apiV1FaqsFaqIdDelete(faqId: string, forceDelete?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
21287
21379
|
/**
|
|
21288
21380
|
*
|
|
21289
21381
|
* @summary Get faq.
|
|
21290
21382
|
* @param {string} faqId
|
|
21291
21383
|
* @param {string} [languageCode]
|
|
21384
|
+
* @param {boolean} [returnDefaultValue]
|
|
21292
21385
|
* @param {*} [options] Override http request option.
|
|
21293
21386
|
* @throws {RequiredError}
|
|
21294
21387
|
*/
|
|
21295
|
-
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqModel>>;
|
|
21388
|
+
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqModel>>;
|
|
21296
21389
|
/**
|
|
21297
21390
|
*
|
|
21298
21391
|
* @summary Get all FaqMedias.
|
|
@@ -21363,13 +21456,14 @@ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
|
|
|
21363
21456
|
* @param {string} [hospitalName]
|
|
21364
21457
|
* @param {string} [languageCode]
|
|
21365
21458
|
* @param {boolean} [showHidden]
|
|
21459
|
+
* @param {boolean} [returnDefaultValue]
|
|
21366
21460
|
* @param {number} [page]
|
|
21367
21461
|
* @param {number} [limit]
|
|
21368
21462
|
* @param {Date} [lastRetrieved]
|
|
21369
21463
|
* @param {*} [options] Override http request option.
|
|
21370
21464
|
* @throws {RequiredError}
|
|
21371
21465
|
*/
|
|
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>>;
|
|
21466
|
+
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
21467
|
/**
|
|
21374
21468
|
*
|
|
21375
21469
|
* @summary Create a faq.
|
|
@@ -21397,19 +21491,21 @@ export declare const FaqsApiFactory: (configuration?: Configuration | undefined,
|
|
|
21397
21491
|
*
|
|
21398
21492
|
* @summary Delete faq.
|
|
21399
21493
|
* @param {string} faqId
|
|
21494
|
+
* @param {boolean} [forceDelete]
|
|
21400
21495
|
* @param {*} [options] Override http request option.
|
|
21401
21496
|
* @throws {RequiredError}
|
|
21402
21497
|
*/
|
|
21403
|
-
apiV1FaqsFaqIdDelete(faqId: string, options?: any): AxiosPromise<boolean>;
|
|
21498
|
+
apiV1FaqsFaqIdDelete(faqId: string, forceDelete?: boolean | undefined, options?: any): AxiosPromise<boolean>;
|
|
21404
21499
|
/**
|
|
21405
21500
|
*
|
|
21406
21501
|
* @summary Get faq.
|
|
21407
21502
|
* @param {string} faqId
|
|
21408
21503
|
* @param {string} [languageCode]
|
|
21504
|
+
* @param {boolean} [returnDefaultValue]
|
|
21409
21505
|
* @param {*} [options] Override http request option.
|
|
21410
21506
|
* @throws {RequiredError}
|
|
21411
21507
|
*/
|
|
21412
|
-
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: any): AxiosPromise<FaqModel>;
|
|
21508
|
+
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<FaqModel>;
|
|
21413
21509
|
/**
|
|
21414
21510
|
*
|
|
21415
21511
|
* @summary Get all FaqMedias.
|
|
@@ -21480,13 +21576,14 @@ export declare const FaqsApiFactory: (configuration?: Configuration | undefined,
|
|
|
21480
21576
|
* @param {string} [hospitalName]
|
|
21481
21577
|
* @param {string} [languageCode]
|
|
21482
21578
|
* @param {boolean} [showHidden]
|
|
21579
|
+
* @param {boolean} [returnDefaultValue]
|
|
21483
21580
|
* @param {number} [page]
|
|
21484
21581
|
* @param {number} [limit]
|
|
21485
21582
|
* @param {Date} [lastRetrieved]
|
|
21486
21583
|
* @param {*} [options] Override http request option.
|
|
21487
21584
|
* @throws {RequiredError}
|
|
21488
21585
|
*/
|
|
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>;
|
|
21586
|
+
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
21587
|
/**
|
|
21491
21588
|
*
|
|
21492
21589
|
* @summary Create a faq.
|
|
@@ -21516,21 +21613,23 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
21516
21613
|
*
|
|
21517
21614
|
* @summary Delete faq.
|
|
21518
21615
|
* @param {string} faqId
|
|
21616
|
+
* @param {boolean} [forceDelete]
|
|
21519
21617
|
* @param {*} [options] Override http request option.
|
|
21520
21618
|
* @throws {RequiredError}
|
|
21521
21619
|
* @memberof FaqsApi
|
|
21522
21620
|
*/
|
|
21523
|
-
apiV1FaqsFaqIdDelete(faqId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21621
|
+
apiV1FaqsFaqIdDelete(faqId: string, forceDelete?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21524
21622
|
/**
|
|
21525
21623
|
*
|
|
21526
21624
|
* @summary Get faq.
|
|
21527
21625
|
* @param {string} faqId
|
|
21528
21626
|
* @param {string} [languageCode]
|
|
21627
|
+
* @param {boolean} [returnDefaultValue]
|
|
21529
21628
|
* @param {*} [options] Override http request option.
|
|
21530
21629
|
* @throws {RequiredError}
|
|
21531
21630
|
* @memberof FaqsApi
|
|
21532
21631
|
*/
|
|
21533
|
-
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel>>;
|
|
21632
|
+
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel>>;
|
|
21534
21633
|
/**
|
|
21535
21634
|
*
|
|
21536
21635
|
* @summary Get all FaqMedias.
|
|
@@ -21607,6 +21706,7 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
21607
21706
|
* @param {string} [hospitalName]
|
|
21608
21707
|
* @param {string} [languageCode]
|
|
21609
21708
|
* @param {boolean} [showHidden]
|
|
21709
|
+
* @param {boolean} [returnDefaultValue]
|
|
21610
21710
|
* @param {number} [page]
|
|
21611
21711
|
* @param {number} [limit]
|
|
21612
21712
|
* @param {Date} [lastRetrieved]
|
|
@@ -21614,7 +21714,7 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
21614
21714
|
* @throws {RequiredError}
|
|
21615
21715
|
* @memberof FaqsApi
|
|
21616
21716
|
*/
|
|
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>>;
|
|
21717
|
+
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
21718
|
/**
|
|
21619
21719
|
*
|
|
21620
21720
|
* @summary Create a faq.
|
|
@@ -22016,6 +22116,61 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
22016
22116
|
* @throws {RequiredError}
|
|
22017
22117
|
*/
|
|
22018
22118
|
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>;
|
|
22119
|
+
/**
|
|
22120
|
+
*
|
|
22121
|
+
* @summary Get all HospitalServiceMedias.
|
|
22122
|
+
* @param {string} hospitalId
|
|
22123
|
+
* @param {string} hospitalSpecialtyId
|
|
22124
|
+
* @param {string} [id]
|
|
22125
|
+
* @param {MediaType} [mediaType]
|
|
22126
|
+
* @param {number} [page]
|
|
22127
|
+
* @param {number} [limit]
|
|
22128
|
+
* @param {Date} [lastRetrieved]
|
|
22129
|
+
* @param {*} [options] Override http request option.
|
|
22130
|
+
* @throws {RequiredError}
|
|
22131
|
+
*/
|
|
22132
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet: (hospitalId: string, hospitalSpecialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22133
|
+
/**
|
|
22134
|
+
*
|
|
22135
|
+
* @summary Delete HospitalServiceMedia
|
|
22136
|
+
* @param {string} hospitalId
|
|
22137
|
+
* @param {string} hospitalSpecialtyId
|
|
22138
|
+
* @param {string} mediaId
|
|
22139
|
+
* @param {*} [options] Override http request option.
|
|
22140
|
+
* @throws {RequiredError}
|
|
22141
|
+
*/
|
|
22142
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdDelete: (hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22143
|
+
/**
|
|
22144
|
+
*
|
|
22145
|
+
* @summary Get HospitalServiceMedia.
|
|
22146
|
+
* @param {string} hospitalId
|
|
22147
|
+
* @param {string} hospitalSpecialtyId
|
|
22148
|
+
* @param {string} mediaId
|
|
22149
|
+
* @param {*} [options] Override http request option.
|
|
22150
|
+
* @throws {RequiredError}
|
|
22151
|
+
*/
|
|
22152
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet: (hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22153
|
+
/**
|
|
22154
|
+
*
|
|
22155
|
+
* @summary Update HospitalServiceMedia.
|
|
22156
|
+
* @param {string} hospitalId
|
|
22157
|
+
* @param {string} hospitalSpecialtyId
|
|
22158
|
+
* @param {string} mediaId
|
|
22159
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
22160
|
+
* @param {*} [options] Override http request option.
|
|
22161
|
+
* @throws {RequiredError}
|
|
22162
|
+
*/
|
|
22163
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdPut: (hospitalId: string, hospitalSpecialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22164
|
+
/**
|
|
22165
|
+
*
|
|
22166
|
+
* @summary Create HospitalServiceMedia.
|
|
22167
|
+
* @param {string} hospitalId
|
|
22168
|
+
* @param {string} hospitalSpecialtyId
|
|
22169
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
22170
|
+
* @param {*} [options] Override http request option.
|
|
22171
|
+
* @throws {RequiredError}
|
|
22172
|
+
*/
|
|
22173
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost: (hospitalId: string, hospitalSpecialtyId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22019
22174
|
/**
|
|
22020
22175
|
*
|
|
22021
22176
|
* @summary Create HospitalSpecialty.
|
|
@@ -22682,6 +22837,61 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22682
22837
|
* @throws {RequiredError}
|
|
22683
22838
|
*/
|
|
22684
22839
|
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>>;
|
|
22840
|
+
/**
|
|
22841
|
+
*
|
|
22842
|
+
* @summary Get all HospitalServiceMedias.
|
|
22843
|
+
* @param {string} hospitalId
|
|
22844
|
+
* @param {string} hospitalSpecialtyId
|
|
22845
|
+
* @param {string} [id]
|
|
22846
|
+
* @param {MediaType} [mediaType]
|
|
22847
|
+
* @param {number} [page]
|
|
22848
|
+
* @param {number} [limit]
|
|
22849
|
+
* @param {Date} [lastRetrieved]
|
|
22850
|
+
* @param {*} [options] Override http request option.
|
|
22851
|
+
* @throws {RequiredError}
|
|
22852
|
+
*/
|
|
22853
|
+
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>>;
|
|
22854
|
+
/**
|
|
22855
|
+
*
|
|
22856
|
+
* @summary Delete HospitalServiceMedia
|
|
22857
|
+
* @param {string} hospitalId
|
|
22858
|
+
* @param {string} hospitalSpecialtyId
|
|
22859
|
+
* @param {string} mediaId
|
|
22860
|
+
* @param {*} [options] Override http request option.
|
|
22861
|
+
* @throws {RequiredError}
|
|
22862
|
+
*/
|
|
22863
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdDelete(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
22864
|
+
/**
|
|
22865
|
+
*
|
|
22866
|
+
* @summary Get HospitalServiceMedia.
|
|
22867
|
+
* @param {string} hospitalId
|
|
22868
|
+
* @param {string} hospitalSpecialtyId
|
|
22869
|
+
* @param {string} mediaId
|
|
22870
|
+
* @param {*} [options] Override http request option.
|
|
22871
|
+
* @throws {RequiredError}
|
|
22872
|
+
*/
|
|
22873
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
22874
|
+
/**
|
|
22875
|
+
*
|
|
22876
|
+
* @summary Update HospitalServiceMedia.
|
|
22877
|
+
* @param {string} hospitalId
|
|
22878
|
+
* @param {string} hospitalSpecialtyId
|
|
22879
|
+
* @param {string} mediaId
|
|
22880
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
22881
|
+
* @param {*} [options] Override http request option.
|
|
22882
|
+
* @throws {RequiredError}
|
|
22883
|
+
*/
|
|
22884
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdPut(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
22885
|
+
/**
|
|
22886
|
+
*
|
|
22887
|
+
* @summary Create HospitalServiceMedia.
|
|
22888
|
+
* @param {string} hospitalId
|
|
22889
|
+
* @param {string} hospitalSpecialtyId
|
|
22890
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
22891
|
+
* @param {*} [options] Override http request option.
|
|
22892
|
+
* @throws {RequiredError}
|
|
22893
|
+
*/
|
|
22894
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost(hospitalId: string, hospitalSpecialtyId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
22685
22895
|
/**
|
|
22686
22896
|
*
|
|
22687
22897
|
* @summary Create HospitalSpecialty.
|
|
@@ -23348,6 +23558,61 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23348
23558
|
* @throws {RequiredError}
|
|
23349
23559
|
*/
|
|
23350
23560
|
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>;
|
|
23561
|
+
/**
|
|
23562
|
+
*
|
|
23563
|
+
* @summary Get all HospitalServiceMedias.
|
|
23564
|
+
* @param {string} hospitalId
|
|
23565
|
+
* @param {string} hospitalSpecialtyId
|
|
23566
|
+
* @param {string} [id]
|
|
23567
|
+
* @param {MediaType} [mediaType]
|
|
23568
|
+
* @param {number} [page]
|
|
23569
|
+
* @param {number} [limit]
|
|
23570
|
+
* @param {Date} [lastRetrieved]
|
|
23571
|
+
* @param {*} [options] Override http request option.
|
|
23572
|
+
* @throws {RequiredError}
|
|
23573
|
+
*/
|
|
23574
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(hospitalId: string, hospitalSpecialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
|
|
23575
|
+
/**
|
|
23576
|
+
*
|
|
23577
|
+
* @summary Delete HospitalServiceMedia
|
|
23578
|
+
* @param {string} hospitalId
|
|
23579
|
+
* @param {string} hospitalSpecialtyId
|
|
23580
|
+
* @param {string} mediaId
|
|
23581
|
+
* @param {*} [options] Override http request option.
|
|
23582
|
+
* @throws {RequiredError}
|
|
23583
|
+
*/
|
|
23584
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdDelete(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
|
|
23585
|
+
/**
|
|
23586
|
+
*
|
|
23587
|
+
* @summary Get HospitalServiceMedia.
|
|
23588
|
+
* @param {string} hospitalId
|
|
23589
|
+
* @param {string} hospitalSpecialtyId
|
|
23590
|
+
* @param {string} mediaId
|
|
23591
|
+
* @param {*} [options] Override http request option.
|
|
23592
|
+
* @throws {RequiredError}
|
|
23593
|
+
*/
|
|
23594
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
23595
|
+
/**
|
|
23596
|
+
*
|
|
23597
|
+
* @summary Update HospitalServiceMedia.
|
|
23598
|
+
* @param {string} hospitalId
|
|
23599
|
+
* @param {string} hospitalSpecialtyId
|
|
23600
|
+
* @param {string} mediaId
|
|
23601
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
23602
|
+
* @param {*} [options] Override http request option.
|
|
23603
|
+
* @throws {RequiredError}
|
|
23604
|
+
*/
|
|
23605
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdPut(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
23606
|
+
/**
|
|
23607
|
+
*
|
|
23608
|
+
* @summary Create HospitalServiceMedia.
|
|
23609
|
+
* @param {string} hospitalId
|
|
23610
|
+
* @param {string} hospitalSpecialtyId
|
|
23611
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
23612
|
+
* @param {*} [options] Override http request option.
|
|
23613
|
+
* @throws {RequiredError}
|
|
23614
|
+
*/
|
|
23615
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost(hospitalId: string, hospitalSpecialtyId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
23351
23616
|
/**
|
|
23352
23617
|
*
|
|
23353
23618
|
* @summary Create HospitalSpecialty.
|
|
@@ -24050,6 +24315,66 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24050
24315
|
* @memberof HospitalsApi
|
|
24051
24316
|
*/
|
|
24052
24317
|
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>>;
|
|
24318
|
+
/**
|
|
24319
|
+
*
|
|
24320
|
+
* @summary Get all HospitalServiceMedias.
|
|
24321
|
+
* @param {string} hospitalId
|
|
24322
|
+
* @param {string} hospitalSpecialtyId
|
|
24323
|
+
* @param {string} [id]
|
|
24324
|
+
* @param {MediaType} [mediaType]
|
|
24325
|
+
* @param {number} [page]
|
|
24326
|
+
* @param {number} [limit]
|
|
24327
|
+
* @param {Date} [lastRetrieved]
|
|
24328
|
+
* @param {*} [options] Override http request option.
|
|
24329
|
+
* @throws {RequiredError}
|
|
24330
|
+
* @memberof HospitalsApi
|
|
24331
|
+
*/
|
|
24332
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(hospitalId: string, hospitalSpecialtyId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
24333
|
+
/**
|
|
24334
|
+
*
|
|
24335
|
+
* @summary Delete HospitalServiceMedia
|
|
24336
|
+
* @param {string} hospitalId
|
|
24337
|
+
* @param {string} hospitalSpecialtyId
|
|
24338
|
+
* @param {string} mediaId
|
|
24339
|
+
* @param {*} [options] Override http request option.
|
|
24340
|
+
* @throws {RequiredError}
|
|
24341
|
+
* @memberof HospitalsApi
|
|
24342
|
+
*/
|
|
24343
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdDelete(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
24344
|
+
/**
|
|
24345
|
+
*
|
|
24346
|
+
* @summary Get HospitalServiceMedia.
|
|
24347
|
+
* @param {string} hospitalId
|
|
24348
|
+
* @param {string} hospitalSpecialtyId
|
|
24349
|
+
* @param {string} mediaId
|
|
24350
|
+
* @param {*} [options] Override http request option.
|
|
24351
|
+
* @throws {RequiredError}
|
|
24352
|
+
* @memberof HospitalsApi
|
|
24353
|
+
*/
|
|
24354
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
24355
|
+
/**
|
|
24356
|
+
*
|
|
24357
|
+
* @summary Update HospitalServiceMedia.
|
|
24358
|
+
* @param {string} hospitalId
|
|
24359
|
+
* @param {string} hospitalSpecialtyId
|
|
24360
|
+
* @param {string} mediaId
|
|
24361
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
24362
|
+
* @param {*} [options] Override http request option.
|
|
24363
|
+
* @throws {RequiredError}
|
|
24364
|
+
* @memberof HospitalsApi
|
|
24365
|
+
*/
|
|
24366
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdPut(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
24367
|
+
/**
|
|
24368
|
+
*
|
|
24369
|
+
* @summary Create HospitalServiceMedia.
|
|
24370
|
+
* @param {string} hospitalId
|
|
24371
|
+
* @param {string} hospitalSpecialtyId
|
|
24372
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
24373
|
+
* @param {*} [options] Override http request option.
|
|
24374
|
+
* @throws {RequiredError}
|
|
24375
|
+
* @memberof HospitalsApi
|
|
24376
|
+
*/
|
|
24377
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost(hospitalId: string, hospitalSpecialtyId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
24053
24378
|
/**
|
|
24054
24379
|
*
|
|
24055
24380
|
* @summary Create HospitalSpecialty.
|
|
@@ -27626,6 +27951,25 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
27626
27951
|
* @throws {RequiredError}
|
|
27627
27952
|
*/
|
|
27628
27953
|
apiV1SpecialtiesPost: (createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27954
|
+
/**
|
|
27955
|
+
*
|
|
27956
|
+
* @summary Get all Specialties Simple.
|
|
27957
|
+
* @param {string} [id]
|
|
27958
|
+
* @param {string} [name]
|
|
27959
|
+
* @param {string} [description]
|
|
27960
|
+
* @param {string} [specialtyTypeId]
|
|
27961
|
+
* @param {string} [hospitalId]
|
|
27962
|
+
* @param {Date} [created]
|
|
27963
|
+
* @param {string} [languageCode]
|
|
27964
|
+
* @param {Array<string>} [ids]
|
|
27965
|
+
* @param {boolean} [returnDefaultValue]
|
|
27966
|
+
* @param {number} [page]
|
|
27967
|
+
* @param {number} [limit]
|
|
27968
|
+
* @param {Date} [lastRetrieved]
|
|
27969
|
+
* @param {*} [options] Override http request option.
|
|
27970
|
+
* @throws {RequiredError}
|
|
27971
|
+
*/
|
|
27972
|
+
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, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27629
27973
|
/**
|
|
27630
27974
|
*
|
|
27631
27975
|
* @param {string} slug
|
|
@@ -27745,6 +28089,25 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
27745
28089
|
* @throws {RequiredError}
|
|
27746
28090
|
*/
|
|
27747
28091
|
apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
|
|
28092
|
+
/**
|
|
28093
|
+
*
|
|
28094
|
+
* @summary Get all Specialties Simple.
|
|
28095
|
+
* @param {string} [id]
|
|
28096
|
+
* @param {string} [name]
|
|
28097
|
+
* @param {string} [description]
|
|
28098
|
+
* @param {string} [specialtyTypeId]
|
|
28099
|
+
* @param {string} [hospitalId]
|
|
28100
|
+
* @param {Date} [created]
|
|
28101
|
+
* @param {string} [languageCode]
|
|
28102
|
+
* @param {Array<string>} [ids]
|
|
28103
|
+
* @param {boolean} [returnDefaultValue]
|
|
28104
|
+
* @param {number} [page]
|
|
28105
|
+
* @param {number} [limit]
|
|
28106
|
+
* @param {Date} [lastRetrieved]
|
|
28107
|
+
* @param {*} [options] Override http request option.
|
|
28108
|
+
* @throws {RequiredError}
|
|
28109
|
+
*/
|
|
28110
|
+
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, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesSimpleModel>>;
|
|
27748
28111
|
/**
|
|
27749
28112
|
*
|
|
27750
28113
|
* @param {string} slug
|
|
@@ -27864,6 +28227,25 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
27864
28227
|
* @throws {RequiredError}
|
|
27865
28228
|
*/
|
|
27866
28229
|
apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: any): AxiosPromise<SpecialtyModel>;
|
|
28230
|
+
/**
|
|
28231
|
+
*
|
|
28232
|
+
* @summary Get all Specialties Simple.
|
|
28233
|
+
* @param {string} [id]
|
|
28234
|
+
* @param {string} [name]
|
|
28235
|
+
* @param {string} [description]
|
|
28236
|
+
* @param {string} [specialtyTypeId]
|
|
28237
|
+
* @param {string} [hospitalId]
|
|
28238
|
+
* @param {Date} [created]
|
|
28239
|
+
* @param {string} [languageCode]
|
|
28240
|
+
* @param {Array<string>} [ids]
|
|
28241
|
+
* @param {boolean} [returnDefaultValue]
|
|
28242
|
+
* @param {number} [page]
|
|
28243
|
+
* @param {number} [limit]
|
|
28244
|
+
* @param {Date} [lastRetrieved]
|
|
28245
|
+
* @param {*} [options] Override http request option.
|
|
28246
|
+
* @throws {RequiredError}
|
|
28247
|
+
*/
|
|
28248
|
+
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, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesSimpleModel>;
|
|
27867
28249
|
/**
|
|
27868
28250
|
*
|
|
27869
28251
|
* @param {string} slug
|
|
@@ -27987,6 +28369,26 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
27987
28369
|
* @memberof SpecialtiesApi
|
|
27988
28370
|
*/
|
|
27989
28371
|
apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
|
|
28372
|
+
/**
|
|
28373
|
+
*
|
|
28374
|
+
* @summary Get all Specialties Simple.
|
|
28375
|
+
* @param {string} [id]
|
|
28376
|
+
* @param {string} [name]
|
|
28377
|
+
* @param {string} [description]
|
|
28378
|
+
* @param {string} [specialtyTypeId]
|
|
28379
|
+
* @param {string} [hospitalId]
|
|
28380
|
+
* @param {Date} [created]
|
|
28381
|
+
* @param {string} [languageCode]
|
|
28382
|
+
* @param {Array<string>} [ids]
|
|
28383
|
+
* @param {boolean} [returnDefaultValue]
|
|
28384
|
+
* @param {number} [page]
|
|
28385
|
+
* @param {number} [limit]
|
|
28386
|
+
* @param {Date} [lastRetrieved]
|
|
28387
|
+
* @param {*} [options] Override http request option.
|
|
28388
|
+
* @throws {RequiredError}
|
|
28389
|
+
* @memberof SpecialtiesApi
|
|
28390
|
+
*/
|
|
28391
|
+
apiV1SpecialtiesSimpleGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesSimpleModel>>;
|
|
27990
28392
|
/**
|
|
27991
28393
|
*
|
|
27992
28394
|
* @param {string} slug
|