ch-admin-api-client-typescript 2.5.1 → 2.5.2
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 +88 -24
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +34 -27
- package/package.json +1 -1
- package/src/api.ts +95 -27
package/lib/api.d.ts
CHANGED
|
@@ -5312,6 +5312,12 @@ export interface DoctorModel {
|
|
|
5312
5312
|
* @memberof DoctorModel
|
|
5313
5313
|
*/
|
|
5314
5314
|
'confirmed'?: boolean;
|
|
5315
|
+
/**
|
|
5316
|
+
*
|
|
5317
|
+
* @type {string}
|
|
5318
|
+
* @memberof DoctorModel
|
|
5319
|
+
*/
|
|
5320
|
+
'languageCode'?: string | null;
|
|
5315
5321
|
}
|
|
5316
5322
|
/**
|
|
5317
5323
|
*
|
|
@@ -9727,6 +9733,18 @@ export interface UpdateCountryCommand {
|
|
|
9727
9733
|
* @memberof UpdateCountryCommand
|
|
9728
9734
|
*/
|
|
9729
9735
|
'content'?: string | null;
|
|
9736
|
+
/**
|
|
9737
|
+
*
|
|
9738
|
+
* @type {string}
|
|
9739
|
+
* @memberof UpdateCountryCommand
|
|
9740
|
+
*/
|
|
9741
|
+
'languageCode'?: string | null;
|
|
9742
|
+
/**
|
|
9743
|
+
*
|
|
9744
|
+
* @type {boolean}
|
|
9745
|
+
* @memberof UpdateCountryCommand
|
|
9746
|
+
*/
|
|
9747
|
+
'confirmed'?: boolean;
|
|
9730
9748
|
/**
|
|
9731
9749
|
*
|
|
9732
9750
|
* @type {Array<MediaModel>}
|
|
@@ -9966,6 +9984,18 @@ export interface UpdateDoctorCommand {
|
|
|
9966
9984
|
* @memberof UpdateDoctorCommand
|
|
9967
9985
|
*/
|
|
9968
9986
|
'hospitalId'?: string | null;
|
|
9987
|
+
/**
|
|
9988
|
+
*
|
|
9989
|
+
* @type {string}
|
|
9990
|
+
* @memberof UpdateDoctorCommand
|
|
9991
|
+
*/
|
|
9992
|
+
'languageCode'?: string | null;
|
|
9993
|
+
/**
|
|
9994
|
+
*
|
|
9995
|
+
* @type {boolean}
|
|
9996
|
+
* @memberof UpdateDoctorCommand
|
|
9997
|
+
*/
|
|
9998
|
+
'confirmed'?: boolean;
|
|
9969
9999
|
}
|
|
9970
10000
|
/**
|
|
9971
10001
|
*
|
|
@@ -10364,6 +10394,18 @@ export interface UpdateHospitalServiceCommand {
|
|
|
10364
10394
|
* @memberof UpdateHospitalServiceCommand
|
|
10365
10395
|
*/
|
|
10366
10396
|
'order'?: number;
|
|
10397
|
+
/**
|
|
10398
|
+
*
|
|
10399
|
+
* @type {string}
|
|
10400
|
+
* @memberof UpdateHospitalServiceCommand
|
|
10401
|
+
*/
|
|
10402
|
+
'languageCode'?: string | null;
|
|
10403
|
+
/**
|
|
10404
|
+
*
|
|
10405
|
+
* @type {boolean}
|
|
10406
|
+
* @memberof UpdateHospitalServiceCommand
|
|
10407
|
+
*/
|
|
10408
|
+
'confirmed'?: boolean;
|
|
10367
10409
|
}
|
|
10368
10410
|
/**
|
|
10369
10411
|
*
|
|
@@ -10733,12 +10775,24 @@ export interface UpdateSpecialtyCommand {
|
|
|
10733
10775
|
* @memberof UpdateSpecialtyCommand
|
|
10734
10776
|
*/
|
|
10735
10777
|
'content'?: string | null;
|
|
10778
|
+
/**
|
|
10779
|
+
*
|
|
10780
|
+
* @type {string}
|
|
10781
|
+
* @memberof UpdateSpecialtyCommand
|
|
10782
|
+
*/
|
|
10783
|
+
'languageCode'?: string | null;
|
|
10736
10784
|
/**
|
|
10737
10785
|
*
|
|
10738
10786
|
* @type {string}
|
|
10739
10787
|
* @memberof UpdateSpecialtyCommand
|
|
10740
10788
|
*/
|
|
10741
10789
|
'specialtyTypeId'?: string;
|
|
10790
|
+
/**
|
|
10791
|
+
*
|
|
10792
|
+
* @type {boolean}
|
|
10793
|
+
* @memberof UpdateSpecialtyCommand
|
|
10794
|
+
*/
|
|
10795
|
+
'confirmed'?: boolean;
|
|
10742
10796
|
}
|
|
10743
10797
|
/**
|
|
10744
10798
|
*
|
|
@@ -10806,6 +10860,12 @@ export interface UpdateSpecialtyTypeCommand {
|
|
|
10806
10860
|
* @memberof UpdateSpecialtyTypeCommand
|
|
10807
10861
|
*/
|
|
10808
10862
|
'confirmed'?: boolean;
|
|
10863
|
+
/**
|
|
10864
|
+
*
|
|
10865
|
+
* @type {string}
|
|
10866
|
+
* @memberof UpdateSpecialtyTypeCommand
|
|
10867
|
+
*/
|
|
10868
|
+
'languageCode'?: string | null;
|
|
10809
10869
|
}
|
|
10810
10870
|
/**
|
|
10811
10871
|
*
|
|
@@ -15506,10 +15566,11 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15506
15566
|
*
|
|
15507
15567
|
* @summary Get Doctor.
|
|
15508
15568
|
* @param {string} doctorId
|
|
15569
|
+
* @param {string} [languageCode]
|
|
15509
15570
|
* @param {*} [options] Override http request option.
|
|
15510
15571
|
* @throws {RequiredError}
|
|
15511
15572
|
*/
|
|
15512
|
-
apiV1DoctorsDoctorIdGet: (doctorId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15573
|
+
apiV1DoctorsDoctorIdGet: (doctorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15513
15574
|
/**
|
|
15514
15575
|
*
|
|
15515
15576
|
* @summary Get all DoctorMedias.
|
|
@@ -15869,10 +15930,11 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15869
15930
|
*
|
|
15870
15931
|
* @summary Get Doctor.
|
|
15871
15932
|
* @param {string} doctorId
|
|
15933
|
+
* @param {string} [languageCode]
|
|
15872
15934
|
* @param {*} [options] Override http request option.
|
|
15873
15935
|
* @throws {RequiredError}
|
|
15874
15936
|
*/
|
|
15875
|
-
apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
15937
|
+
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
15876
15938
|
/**
|
|
15877
15939
|
*
|
|
15878
15940
|
* @summary Get all DoctorMedias.
|
|
@@ -16232,10 +16294,11 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16232
16294
|
*
|
|
16233
16295
|
* @summary Get Doctor.
|
|
16234
16296
|
* @param {string} doctorId
|
|
16297
|
+
* @param {string} [languageCode]
|
|
16235
16298
|
* @param {*} [options] Override http request option.
|
|
16236
16299
|
* @throws {RequiredError}
|
|
16237
16300
|
*/
|
|
16238
|
-
apiV1DoctorsDoctorIdGet(doctorId: string, options?: any): AxiosPromise<DoctorModel>;
|
|
16301
|
+
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
16239
16302
|
/**
|
|
16240
16303
|
*
|
|
16241
16304
|
* @summary Get all DoctorMedias.
|
|
@@ -16612,11 +16675,12 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16612
16675
|
*
|
|
16613
16676
|
* @summary Get Doctor.
|
|
16614
16677
|
* @param {string} doctorId
|
|
16678
|
+
* @param {string} [languageCode]
|
|
16615
16679
|
* @param {*} [options] Override http request option.
|
|
16616
16680
|
* @throws {RequiredError}
|
|
16617
16681
|
* @memberof DoctorsApi
|
|
16618
16682
|
*/
|
|
16619
|
-
apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
16683
|
+
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
16620
16684
|
/**
|
|
16621
16685
|
*
|
|
16622
16686
|
* @summary Get all DoctorMedias.
|
|
@@ -16850,7 +16914,7 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
16850
16914
|
apiV1FaqcategoriesBreadcrumbsFaqIdGet: (faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16851
16915
|
/**
|
|
16852
16916
|
*
|
|
16853
|
-
* @summary Delete
|
|
16917
|
+
* @summary Delete FaqCategory.
|
|
16854
16918
|
* @param {string} faqCategoryId
|
|
16855
16919
|
* @param {boolean} [forceDelete]
|
|
16856
16920
|
* @param {*} [options] Override http request option.
|
|
@@ -16859,7 +16923,7 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
16859
16923
|
apiV1FaqcategoriesFaqCategoryIdDelete: (faqCategoryId: string, forceDelete?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16860
16924
|
/**
|
|
16861
16925
|
*
|
|
16862
|
-
* @summary Get
|
|
16926
|
+
* @summary Get FaqCategory.
|
|
16863
16927
|
* @param {string} faqCategoryId
|
|
16864
16928
|
* @param {string} [languageCode]
|
|
16865
16929
|
* @param {*} [options] Override http request option.
|
|
@@ -16868,7 +16932,7 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
16868
16932
|
apiV1FaqcategoriesFaqCategoryIdGet: (faqCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16869
16933
|
/**
|
|
16870
16934
|
*
|
|
16871
|
-
* @summary Update
|
|
16935
|
+
* @summary Update FaqCategory.
|
|
16872
16936
|
* @param {string} faqCategoryId
|
|
16873
16937
|
* @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
|
|
16874
16938
|
* @param {*} [options] Override http request option.
|
|
@@ -16892,7 +16956,7 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
16892
16956
|
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>;
|
|
16893
16957
|
/**
|
|
16894
16958
|
*
|
|
16895
|
-
* @summary Create a
|
|
16959
|
+
* @summary Create a FaqCategory.
|
|
16896
16960
|
* @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
|
|
16897
16961
|
* @param {*} [options] Override http request option.
|
|
16898
16962
|
* @throws {RequiredError}
|
|
@@ -16900,7 +16964,7 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
16900
16964
|
apiV1FaqcategoriesPost: (createFaqCategoryCommand?: CreateFaqCategoryCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16901
16965
|
/**
|
|
16902
16966
|
*
|
|
16903
|
-
* @summary Get
|
|
16967
|
+
* @summary Get FaqCategory by slug.
|
|
16904
16968
|
* @param {string} slug
|
|
16905
16969
|
* @param {string} [languageCode]
|
|
16906
16970
|
* @param {*} [options] Override http request option.
|
|
@@ -16924,7 +16988,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
16924
16988
|
apiV1FaqcategoriesBreadcrumbsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<FaqCategoryBreadCrumbModel>>>;
|
|
16925
16989
|
/**
|
|
16926
16990
|
*
|
|
16927
|
-
* @summary Delete
|
|
16991
|
+
* @summary Delete FaqCategory.
|
|
16928
16992
|
* @param {string} faqCategoryId
|
|
16929
16993
|
* @param {boolean} [forceDelete]
|
|
16930
16994
|
* @param {*} [options] Override http request option.
|
|
@@ -16933,7 +16997,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
16933
16997
|
apiV1FaqcategoriesFaqCategoryIdDelete(faqCategoryId: string, forceDelete?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
16934
16998
|
/**
|
|
16935
16999
|
*
|
|
16936
|
-
* @summary Get
|
|
17000
|
+
* @summary Get FaqCategory.
|
|
16937
17001
|
* @param {string} faqCategoryId
|
|
16938
17002
|
* @param {string} [languageCode]
|
|
16939
17003
|
* @param {*} [options] Override http request option.
|
|
@@ -16942,7 +17006,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
16942
17006
|
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
|
|
16943
17007
|
/**
|
|
16944
17008
|
*
|
|
16945
|
-
* @summary Update
|
|
17009
|
+
* @summary Update FaqCategory.
|
|
16946
17010
|
* @param {string} faqCategoryId
|
|
16947
17011
|
* @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
|
|
16948
17012
|
* @param {*} [options] Override http request option.
|
|
@@ -16966,7 +17030,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
16966
17030
|
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>>;
|
|
16967
17031
|
/**
|
|
16968
17032
|
*
|
|
16969
|
-
* @summary Create a
|
|
17033
|
+
* @summary Create a FaqCategory.
|
|
16970
17034
|
* @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
|
|
16971
17035
|
* @param {*} [options] Override http request option.
|
|
16972
17036
|
* @throws {RequiredError}
|
|
@@ -16974,7 +17038,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
16974
17038
|
apiV1FaqcategoriesPost(createFaqCategoryCommand?: CreateFaqCategoryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
|
|
16975
17039
|
/**
|
|
16976
17040
|
*
|
|
16977
|
-
* @summary Get
|
|
17041
|
+
* @summary Get FaqCategory by slug.
|
|
16978
17042
|
* @param {string} slug
|
|
16979
17043
|
* @param {string} [languageCode]
|
|
16980
17044
|
* @param {*} [options] Override http request option.
|
|
@@ -16998,7 +17062,7 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | u
|
|
|
16998
17062
|
apiV1FaqcategoriesBreadcrumbsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: any): AxiosPromise<Array<FaqCategoryBreadCrumbModel>>;
|
|
16999
17063
|
/**
|
|
17000
17064
|
*
|
|
17001
|
-
* @summary Delete
|
|
17065
|
+
* @summary Delete FaqCategory.
|
|
17002
17066
|
* @param {string} faqCategoryId
|
|
17003
17067
|
* @param {boolean} [forceDelete]
|
|
17004
17068
|
* @param {*} [options] Override http request option.
|
|
@@ -17007,7 +17071,7 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | u
|
|
|
17007
17071
|
apiV1FaqcategoriesFaqCategoryIdDelete(faqCategoryId: string, forceDelete?: boolean | undefined, options?: any): AxiosPromise<boolean>;
|
|
17008
17072
|
/**
|
|
17009
17073
|
*
|
|
17010
|
-
* @summary Get
|
|
17074
|
+
* @summary Get FaqCategory.
|
|
17011
17075
|
* @param {string} faqCategoryId
|
|
17012
17076
|
* @param {string} [languageCode]
|
|
17013
17077
|
* @param {*} [options] Override http request option.
|
|
@@ -17016,7 +17080,7 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | u
|
|
|
17016
17080
|
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, options?: any): AxiosPromise<FaqCategoryModel>;
|
|
17017
17081
|
/**
|
|
17018
17082
|
*
|
|
17019
|
-
* @summary Update
|
|
17083
|
+
* @summary Update FaqCategory.
|
|
17020
17084
|
* @param {string} faqCategoryId
|
|
17021
17085
|
* @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
|
|
17022
17086
|
* @param {*} [options] Override http request option.
|
|
@@ -17040,7 +17104,7 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | u
|
|
|
17040
17104
|
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>;
|
|
17041
17105
|
/**
|
|
17042
17106
|
*
|
|
17043
|
-
* @summary Create a
|
|
17107
|
+
* @summary Create a FaqCategory.
|
|
17044
17108
|
* @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
|
|
17045
17109
|
* @param {*} [options] Override http request option.
|
|
17046
17110
|
* @throws {RequiredError}
|
|
@@ -17048,7 +17112,7 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | u
|
|
|
17048
17112
|
apiV1FaqcategoriesPost(createFaqCategoryCommand?: CreateFaqCategoryCommand | undefined, options?: any): AxiosPromise<FaqCategoryModel>;
|
|
17049
17113
|
/**
|
|
17050
17114
|
*
|
|
17051
|
-
* @summary Get
|
|
17115
|
+
* @summary Get FaqCategory by slug.
|
|
17052
17116
|
* @param {string} slug
|
|
17053
17117
|
* @param {string} [languageCode]
|
|
17054
17118
|
* @param {*} [options] Override http request option.
|
|
@@ -17075,7 +17139,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
17075
17139
|
apiV1FaqcategoriesBreadcrumbsFaqIdGet(faqId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryBreadCrumbModel[]>>;
|
|
17076
17140
|
/**
|
|
17077
17141
|
*
|
|
17078
|
-
* @summary Delete
|
|
17142
|
+
* @summary Delete FaqCategory.
|
|
17079
17143
|
* @param {string} faqCategoryId
|
|
17080
17144
|
* @param {boolean} [forceDelete]
|
|
17081
17145
|
* @param {*} [options] Override http request option.
|
|
@@ -17085,7 +17149,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
17085
17149
|
apiV1FaqcategoriesFaqCategoryIdDelete(faqCategoryId: string, forceDelete?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
17086
17150
|
/**
|
|
17087
17151
|
*
|
|
17088
|
-
* @summary Get
|
|
17152
|
+
* @summary Get FaqCategory.
|
|
17089
17153
|
* @param {string} faqCategoryId
|
|
17090
17154
|
* @param {string} [languageCode]
|
|
17091
17155
|
* @param {*} [options] Override http request option.
|
|
@@ -17095,7 +17159,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
17095
17159
|
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
|
|
17096
17160
|
/**
|
|
17097
17161
|
*
|
|
17098
|
-
* @summary Update
|
|
17162
|
+
* @summary Update FaqCategory.
|
|
17099
17163
|
* @param {string} faqCategoryId
|
|
17100
17164
|
* @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
|
|
17101
17165
|
* @param {*} [options] Override http request option.
|
|
@@ -17121,7 +17185,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
17121
17185
|
apiV1FaqcategoriesGet(id?: string, parentId?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoriesModel>>;
|
|
17122
17186
|
/**
|
|
17123
17187
|
*
|
|
17124
|
-
* @summary Create a
|
|
17188
|
+
* @summary Create a FaqCategory.
|
|
17125
17189
|
* @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
|
|
17126
17190
|
* @param {*} [options] Override http request option.
|
|
17127
17191
|
* @throws {RequiredError}
|
|
@@ -17130,7 +17194,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
17130
17194
|
apiV1FaqcategoriesPost(createFaqCategoryCommand?: CreateFaqCategoryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
|
|
17131
17195
|
/**
|
|
17132
17196
|
*
|
|
17133
|
-
* @summary Get
|
|
17197
|
+
* @summary Get FaqCategory by slug.
|
|
17134
17198
|
* @param {string} slug
|
|
17135
17199
|
* @param {string} [languageCode]
|
|
17136
17200
|
* @param {*} [options] Override http request option.
|