ch-admin-api-client-typescript 5.59.2 → 5.61.0
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/articles-api.d.ts +108 -108
- package/lib/api/articles-api.js +108 -108
- package/lib/api/call-histories-api.d.ts +8 -8
- package/lib/api/call-histories-api.js +8 -8
- package/lib/api/contributors-api.d.ts +12 -12
- package/lib/api/contributors-api.js +12 -12
- package/lib/api/curation-categories-api.d.ts +8 -8
- package/lib/api/curation-categories-api.js +8 -8
- package/lib/api/currencies-api.d.ts +8 -8
- package/lib/api/currencies-api.js +8 -8
- package/lib/api/dash-board-api.d.ts +20 -20
- package/lib/api/dash-board-api.js +20 -20
- package/lib/api/deals-api.d.ts +100 -100
- package/lib/api/deals-api.js +100 -100
- package/lib/api/faq-categories-api.d.ts +28 -28
- package/lib/api/faq-categories-api.js +28 -28
- package/lib/api/faqs-api.d.ts +64 -64
- package/lib/api/faqs-api.js +64 -64
- package/lib/api/form-templates-api.d.ts +4 -4
- package/lib/api/form-templates-api.js +4 -4
- package/lib/api/hospitals-api.d.ts +476 -476
- package/lib/api/hospitals-api.js +476 -476
- package/lib/api/services-api.d.ts +12 -12
- package/lib/api/services-api.js +12 -12
- package/lib/api/services-categories-api.d.ts +8 -8
- package/lib/api/services-categories-api.js +8 -8
- package/lib/api/survey-forms-api.d.ts +8 -8
- package/lib/api/survey-forms-api.js +8 -8
- package/lib/api/translation-api.d.ts +47 -0
- package/lib/api/translation-api.d.ts.map +1 -1
- package/lib/api/translation-api.js +90 -0
- package/lib/api/users-api.d.ts +92 -0
- package/lib/api/users-api.d.ts.map +1 -1
- package/lib/api/users-api.js +178 -0
- package/lib/models/contact-type.d.ts +1 -0
- package/lib/models/contact-type.d.ts.map +1 -1
- package/lib/models/contact-type.js +2 -1
- package/lib/models/general-user-item-model.d.ts +6 -0
- package/lib/models/general-user-item-model.d.ts.map +1 -1
- package/lib/models/general-user-model.d.ts +6 -0
- package/lib/models/general-user-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +1 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +1 -0
- package/lib/models/translation-persona-type.d.ts +23 -0
- package/lib/models/translation-persona-type.d.ts.map +1 -0
- package/lib/models/translation-persona-type.js +26 -0
- package/package.json +1 -1
|
@@ -23,7 +23,7 @@ import { UpdateFaqCategoryCommand } from '../models';
|
|
|
23
23
|
export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @summary Delete FaqCategory. (Auth policies:
|
|
26
|
+
* @summary Delete FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
27
27
|
* @param {string} faqCategoryId
|
|
28
28
|
* @param {boolean} [forceDelete]
|
|
29
29
|
* @param {boolean} [isPermanent]
|
|
@@ -33,7 +33,7 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
33
33
|
apiV1FaqcategoriesFaqCategoryIdDelete: (faqCategoryId: string, forceDelete?: boolean, isPermanent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @summary Get FaqCategory. (Auth policies:
|
|
36
|
+
* @summary Get FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
37
37
|
* @param {string} faqCategoryId
|
|
38
38
|
* @param {string} [languageCode]
|
|
39
39
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -43,7 +43,7 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
43
43
|
apiV1FaqcategoriesFaqCategoryIdGet: (faqCategoryId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
|
-
* @summary Update FaqCategory. (Auth policies:
|
|
46
|
+
* @summary Update FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
47
47
|
* @param {string} faqCategoryId
|
|
48
48
|
* @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
|
|
49
49
|
* @param {*} [options] Override http request option.
|
|
@@ -52,7 +52,7 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
52
52
|
apiV1FaqcategoriesFaqCategoryIdPut: (faqCategoryId: string, updateFaqCategoryCommand?: UpdateFaqCategoryCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
53
53
|
/**
|
|
54
54
|
*
|
|
55
|
-
* @summary Revalidate faqCategory (Auth policies:
|
|
55
|
+
* @summary Revalidate faqCategory (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
56
56
|
* @param {string} faqCategoryId
|
|
57
57
|
* @param {boolean} [includeCurrent]
|
|
58
58
|
* @param {*} [options] Override http request option.
|
|
@@ -61,7 +61,7 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
61
61
|
apiV1FaqcategoriesFaqCategoryIdRevalidatePost: (faqCategoryId: string, includeCurrent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
62
62
|
/**
|
|
63
63
|
*
|
|
64
|
-
* @summary Get all FaqCategories. (Auth policies:
|
|
64
|
+
* @summary Get all FaqCategories. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
65
65
|
* @param {string} [id]
|
|
66
66
|
* @param {string} [parentId]
|
|
67
67
|
* @param {string} [name]
|
|
@@ -79,7 +79,7 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
79
79
|
apiV1FaqcategoriesGet: (id?: string, parentId?: string, name?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
80
80
|
/**
|
|
81
81
|
*
|
|
82
|
-
* @summary Create a FaqCategory. (Auth policies:
|
|
82
|
+
* @summary Create a FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
83
83
|
* @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
|
|
84
84
|
* @param {*} [options] Override http request option.
|
|
85
85
|
* @throws {RequiredError}
|
|
@@ -87,7 +87,7 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
87
87
|
apiV1FaqcategoriesPost: (createFaqCategoryCommand?: CreateFaqCategoryCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
88
88
|
/**
|
|
89
89
|
*
|
|
90
|
-
* @summary Get FaqCategory by slug. (Auth policies:
|
|
90
|
+
* @summary Get FaqCategory by slug. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
91
91
|
* @param {string} slug
|
|
92
92
|
* @param {string} [languageCode]
|
|
93
93
|
* @param {*} [options] Override http request option.
|
|
@@ -102,7 +102,7 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
102
102
|
export declare const FaqCategoriesApiFp: (configuration?: Configuration) => {
|
|
103
103
|
/**
|
|
104
104
|
*
|
|
105
|
-
* @summary Delete FaqCategory. (Auth policies:
|
|
105
|
+
* @summary Delete FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
106
106
|
* @param {string} faqCategoryId
|
|
107
107
|
* @param {boolean} [forceDelete]
|
|
108
108
|
* @param {boolean} [isPermanent]
|
|
@@ -112,7 +112,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration) => {
|
|
|
112
112
|
apiV1FaqcategoriesFaqCategoryIdDelete(faqCategoryId: string, forceDelete?: boolean, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
113
113
|
/**
|
|
114
114
|
*
|
|
115
|
-
* @summary Get FaqCategory. (Auth policies:
|
|
115
|
+
* @summary Get FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
116
116
|
* @param {string} faqCategoryId
|
|
117
117
|
* @param {string} [languageCode]
|
|
118
118
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -122,7 +122,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration) => {
|
|
|
122
122
|
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FaqCategoryModel>>;
|
|
123
123
|
/**
|
|
124
124
|
*
|
|
125
|
-
* @summary Update FaqCategory. (Auth policies:
|
|
125
|
+
* @summary Update FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
126
126
|
* @param {string} faqCategoryId
|
|
127
127
|
* @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
|
|
128
128
|
* @param {*} [options] Override http request option.
|
|
@@ -131,7 +131,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration) => {
|
|
|
131
131
|
apiV1FaqcategoriesFaqCategoryIdPut(faqCategoryId: string, updateFaqCategoryCommand?: UpdateFaqCategoryCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FaqCategoryModel>>;
|
|
132
132
|
/**
|
|
133
133
|
*
|
|
134
|
-
* @summary Revalidate faqCategory (Auth policies:
|
|
134
|
+
* @summary Revalidate faqCategory (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
135
135
|
* @param {string} faqCategoryId
|
|
136
136
|
* @param {boolean} [includeCurrent]
|
|
137
137
|
* @param {*} [options] Override http request option.
|
|
@@ -140,7 +140,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration) => {
|
|
|
140
140
|
apiV1FaqcategoriesFaqCategoryIdRevalidatePost(faqCategoryId: string, includeCurrent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
141
141
|
/**
|
|
142
142
|
*
|
|
143
|
-
* @summary Get all FaqCategories. (Auth policies:
|
|
143
|
+
* @summary Get all FaqCategories. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
144
144
|
* @param {string} [id]
|
|
145
145
|
* @param {string} [parentId]
|
|
146
146
|
* @param {string} [name]
|
|
@@ -158,7 +158,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration) => {
|
|
|
158
158
|
apiV1FaqcategoriesGet(id?: string, parentId?: string, name?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FaqCategoriesModel>>;
|
|
159
159
|
/**
|
|
160
160
|
*
|
|
161
|
-
* @summary Create a FaqCategory. (Auth policies:
|
|
161
|
+
* @summary Create a FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
162
162
|
* @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
|
|
163
163
|
* @param {*} [options] Override http request option.
|
|
164
164
|
* @throws {RequiredError}
|
|
@@ -166,7 +166,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration) => {
|
|
|
166
166
|
apiV1FaqcategoriesPost(createFaqCategoryCommand?: CreateFaqCategoryCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FaqCategoryModel>>;
|
|
167
167
|
/**
|
|
168
168
|
*
|
|
169
|
-
* @summary Get FaqCategory by slug. (Auth policies:
|
|
169
|
+
* @summary Get FaqCategory by slug. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
170
170
|
* @param {string} slug
|
|
171
171
|
* @param {string} [languageCode]
|
|
172
172
|
* @param {*} [options] Override http request option.
|
|
@@ -181,7 +181,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration) => {
|
|
|
181
181
|
export declare const FaqCategoriesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
182
182
|
/**
|
|
183
183
|
*
|
|
184
|
-
* @summary Delete FaqCategory. (Auth policies:
|
|
184
|
+
* @summary Delete FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
185
185
|
* @param {string} faqCategoryId
|
|
186
186
|
* @param {boolean} [forceDelete]
|
|
187
187
|
* @param {boolean} [isPermanent]
|
|
@@ -191,7 +191,7 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration, ba
|
|
|
191
191
|
apiV1FaqcategoriesFaqCategoryIdDelete(faqCategoryId: string, forceDelete?: boolean, isPermanent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
192
192
|
/**
|
|
193
193
|
*
|
|
194
|
-
* @summary Get FaqCategory. (Auth policies:
|
|
194
|
+
* @summary Get FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
195
195
|
* @param {string} faqCategoryId
|
|
196
196
|
* @param {string} [languageCode]
|
|
197
197
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -201,7 +201,7 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration, ba
|
|
|
201
201
|
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, returnDefaultValue?: boolean, options?: any): AxiosPromise<FaqCategoryModel>;
|
|
202
202
|
/**
|
|
203
203
|
*
|
|
204
|
-
* @summary Update FaqCategory. (Auth policies:
|
|
204
|
+
* @summary Update FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
205
205
|
* @param {string} faqCategoryId
|
|
206
206
|
* @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
|
|
207
207
|
* @param {*} [options] Override http request option.
|
|
@@ -210,7 +210,7 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration, ba
|
|
|
210
210
|
apiV1FaqcategoriesFaqCategoryIdPut(faqCategoryId: string, updateFaqCategoryCommand?: UpdateFaqCategoryCommand, options?: any): AxiosPromise<FaqCategoryModel>;
|
|
211
211
|
/**
|
|
212
212
|
*
|
|
213
|
-
* @summary Revalidate faqCategory (Auth policies:
|
|
213
|
+
* @summary Revalidate faqCategory (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
214
214
|
* @param {string} faqCategoryId
|
|
215
215
|
* @param {boolean} [includeCurrent]
|
|
216
216
|
* @param {*} [options] Override http request option.
|
|
@@ -219,7 +219,7 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration, ba
|
|
|
219
219
|
apiV1FaqcategoriesFaqCategoryIdRevalidatePost(faqCategoryId: string, includeCurrent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
220
220
|
/**
|
|
221
221
|
*
|
|
222
|
-
* @summary Get all FaqCategories. (Auth policies:
|
|
222
|
+
* @summary Get all FaqCategories. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
223
223
|
* @param {string} [id]
|
|
224
224
|
* @param {string} [parentId]
|
|
225
225
|
* @param {string} [name]
|
|
@@ -237,7 +237,7 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration, ba
|
|
|
237
237
|
apiV1FaqcategoriesGet(id?: string, parentId?: string, name?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<FaqCategoriesModel>;
|
|
238
238
|
/**
|
|
239
239
|
*
|
|
240
|
-
* @summary Create a FaqCategory. (Auth policies:
|
|
240
|
+
* @summary Create a FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
241
241
|
* @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
|
|
242
242
|
* @param {*} [options] Override http request option.
|
|
243
243
|
* @throws {RequiredError}
|
|
@@ -245,7 +245,7 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration, ba
|
|
|
245
245
|
apiV1FaqcategoriesPost(createFaqCategoryCommand?: CreateFaqCategoryCommand, options?: any): AxiosPromise<FaqCategoryModel>;
|
|
246
246
|
/**
|
|
247
247
|
*
|
|
248
|
-
* @summary Get FaqCategory by slug. (Auth policies:
|
|
248
|
+
* @summary Get FaqCategory by slug. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
249
249
|
* @param {string} slug
|
|
250
250
|
* @param {string} [languageCode]
|
|
251
251
|
* @param {*} [options] Override http request option.
|
|
@@ -455,7 +455,7 @@ export interface FaqCategoriesApiApiV1FaqcategoriesSlugGetRequest {
|
|
|
455
455
|
export declare class FaqCategoriesApi extends BaseAPI {
|
|
456
456
|
/**
|
|
457
457
|
*
|
|
458
|
-
* @summary Delete FaqCategory. (Auth policies:
|
|
458
|
+
* @summary Delete FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
459
459
|
* @param {FaqCategoriesApiApiV1FaqcategoriesFaqCategoryIdDeleteRequest} requestParameters Request parameters.
|
|
460
460
|
* @param {*} [options] Override http request option.
|
|
461
461
|
* @throws {RequiredError}
|
|
@@ -464,7 +464,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
464
464
|
apiV1FaqcategoriesFaqCategoryIdDelete(requestParameters: FaqCategoriesApiApiV1FaqcategoriesFaqCategoryIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
465
465
|
/**
|
|
466
466
|
*
|
|
467
|
-
* @summary Get FaqCategory. (Auth policies:
|
|
467
|
+
* @summary Get FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
468
468
|
* @param {FaqCategoriesApiApiV1FaqcategoriesFaqCategoryIdGetRequest} requestParameters Request parameters.
|
|
469
469
|
* @param {*} [options] Override http request option.
|
|
470
470
|
* @throws {RequiredError}
|
|
@@ -473,7 +473,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
473
473
|
apiV1FaqcategoriesFaqCategoryIdGet(requestParameters: FaqCategoriesApiApiV1FaqcategoriesFaqCategoryIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel, any>>;
|
|
474
474
|
/**
|
|
475
475
|
*
|
|
476
|
-
* @summary Update FaqCategory. (Auth policies:
|
|
476
|
+
* @summary Update FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
477
477
|
* @param {FaqCategoriesApiApiV1FaqcategoriesFaqCategoryIdPutRequest} requestParameters Request parameters.
|
|
478
478
|
* @param {*} [options] Override http request option.
|
|
479
479
|
* @throws {RequiredError}
|
|
@@ -482,7 +482,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
482
482
|
apiV1FaqcategoriesFaqCategoryIdPut(requestParameters: FaqCategoriesApiApiV1FaqcategoriesFaqCategoryIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel, any>>;
|
|
483
483
|
/**
|
|
484
484
|
*
|
|
485
|
-
* @summary Revalidate faqCategory (Auth policies:
|
|
485
|
+
* @summary Revalidate faqCategory (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
486
486
|
* @param {FaqCategoriesApiApiV1FaqcategoriesFaqCategoryIdRevalidatePostRequest} requestParameters Request parameters.
|
|
487
487
|
* @param {*} [options] Override http request option.
|
|
488
488
|
* @throws {RequiredError}
|
|
@@ -491,7 +491,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
491
491
|
apiV1FaqcategoriesFaqCategoryIdRevalidatePost(requestParameters: FaqCategoriesApiApiV1FaqcategoriesFaqCategoryIdRevalidatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
492
492
|
/**
|
|
493
493
|
*
|
|
494
|
-
* @summary Get all FaqCategories. (Auth policies:
|
|
494
|
+
* @summary Get all FaqCategories. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
495
495
|
* @param {FaqCategoriesApiApiV1FaqcategoriesGetRequest} requestParameters Request parameters.
|
|
496
496
|
* @param {*} [options] Override http request option.
|
|
497
497
|
* @throws {RequiredError}
|
|
@@ -500,7 +500,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
500
500
|
apiV1FaqcategoriesGet(requestParameters?: FaqCategoriesApiApiV1FaqcategoriesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoriesModel, any>>;
|
|
501
501
|
/**
|
|
502
502
|
*
|
|
503
|
-
* @summary Create a FaqCategory. (Auth policies:
|
|
503
|
+
* @summary Create a FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
504
504
|
* @param {FaqCategoriesApiApiV1FaqcategoriesPostRequest} requestParameters Request parameters.
|
|
505
505
|
* @param {*} [options] Override http request option.
|
|
506
506
|
* @throws {RequiredError}
|
|
@@ -509,7 +509,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
509
509
|
apiV1FaqcategoriesPost(requestParameters?: FaqCategoriesApiApiV1FaqcategoriesPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel, any>>;
|
|
510
510
|
/**
|
|
511
511
|
*
|
|
512
|
-
* @summary Get FaqCategory by slug. (Auth policies:
|
|
512
|
+
* @summary Get FaqCategory by slug. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
513
513
|
* @param {FaqCategoriesApiApiV1FaqcategoriesSlugGetRequest} requestParameters Request parameters.
|
|
514
514
|
* @param {*} [options] Override http request option.
|
|
515
515
|
* @throws {RequiredError}
|
|
@@ -103,7 +103,7 @@ var FaqCategoriesApiAxiosParamCreator = function (configuration) {
|
|
|
103
103
|
return {
|
|
104
104
|
/**
|
|
105
105
|
*
|
|
106
|
-
* @summary Delete FaqCategory. (Auth policies:
|
|
106
|
+
* @summary Delete FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
107
107
|
* @param {string} faqCategoryId
|
|
108
108
|
* @param {boolean} [forceDelete]
|
|
109
109
|
* @param {boolean} [isPermanent]
|
|
@@ -158,7 +158,7 @@ var FaqCategoriesApiAxiosParamCreator = function (configuration) {
|
|
|
158
158
|
},
|
|
159
159
|
/**
|
|
160
160
|
*
|
|
161
|
-
* @summary Get FaqCategory. (Auth policies:
|
|
161
|
+
* @summary Get FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
162
162
|
* @param {string} faqCategoryId
|
|
163
163
|
* @param {string} [languageCode]
|
|
164
164
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -213,7 +213,7 @@ var FaqCategoriesApiAxiosParamCreator = function (configuration) {
|
|
|
213
213
|
},
|
|
214
214
|
/**
|
|
215
215
|
*
|
|
216
|
-
* @summary Update FaqCategory. (Auth policies:
|
|
216
|
+
* @summary Update FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
217
217
|
* @param {string} faqCategoryId
|
|
218
218
|
* @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
|
|
219
219
|
* @param {*} [options] Override http request option.
|
|
@@ -263,7 +263,7 @@ var FaqCategoriesApiAxiosParamCreator = function (configuration) {
|
|
|
263
263
|
},
|
|
264
264
|
/**
|
|
265
265
|
*
|
|
266
|
-
* @summary Revalidate faqCategory (Auth policies:
|
|
266
|
+
* @summary Revalidate faqCategory (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
267
267
|
* @param {string} faqCategoryId
|
|
268
268
|
* @param {boolean} [includeCurrent]
|
|
269
269
|
* @param {*} [options] Override http request option.
|
|
@@ -314,7 +314,7 @@ var FaqCategoriesApiAxiosParamCreator = function (configuration) {
|
|
|
314
314
|
},
|
|
315
315
|
/**
|
|
316
316
|
*
|
|
317
|
-
* @summary Get all FaqCategories. (Auth policies:
|
|
317
|
+
* @summary Get all FaqCategories. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
318
318
|
* @param {string} [id]
|
|
319
319
|
* @param {string} [parentId]
|
|
320
320
|
* @param {string} [name]
|
|
@@ -403,7 +403,7 @@ var FaqCategoriesApiAxiosParamCreator = function (configuration) {
|
|
|
403
403
|
},
|
|
404
404
|
/**
|
|
405
405
|
*
|
|
406
|
-
* @summary Create a FaqCategory. (Auth policies:
|
|
406
|
+
* @summary Create a FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
407
407
|
* @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
|
|
408
408
|
* @param {*} [options] Override http request option.
|
|
409
409
|
* @throws {RequiredError}
|
|
@@ -449,7 +449,7 @@ var FaqCategoriesApiAxiosParamCreator = function (configuration) {
|
|
|
449
449
|
},
|
|
450
450
|
/**
|
|
451
451
|
*
|
|
452
|
-
* @summary Get FaqCategory by slug. (Auth policies:
|
|
452
|
+
* @summary Get FaqCategory by slug. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
453
453
|
* @param {string} slug
|
|
454
454
|
* @param {string} [languageCode]
|
|
455
455
|
* @param {*} [options] Override http request option.
|
|
@@ -510,7 +510,7 @@ var FaqCategoriesApiFp = function (configuration) {
|
|
|
510
510
|
return {
|
|
511
511
|
/**
|
|
512
512
|
*
|
|
513
|
-
* @summary Delete FaqCategory. (Auth policies:
|
|
513
|
+
* @summary Delete FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
514
514
|
* @param {string} faqCategoryId
|
|
515
515
|
* @param {boolean} [forceDelete]
|
|
516
516
|
* @param {boolean} [isPermanent]
|
|
@@ -532,7 +532,7 @@ var FaqCategoriesApiFp = function (configuration) {
|
|
|
532
532
|
},
|
|
533
533
|
/**
|
|
534
534
|
*
|
|
535
|
-
* @summary Get FaqCategory. (Auth policies:
|
|
535
|
+
* @summary Get FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
536
536
|
* @param {string} faqCategoryId
|
|
537
537
|
* @param {string} [languageCode]
|
|
538
538
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -554,7 +554,7 @@ var FaqCategoriesApiFp = function (configuration) {
|
|
|
554
554
|
},
|
|
555
555
|
/**
|
|
556
556
|
*
|
|
557
|
-
* @summary Update FaqCategory. (Auth policies:
|
|
557
|
+
* @summary Update FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
558
558
|
* @param {string} faqCategoryId
|
|
559
559
|
* @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
|
|
560
560
|
* @param {*} [options] Override http request option.
|
|
@@ -575,7 +575,7 @@ var FaqCategoriesApiFp = function (configuration) {
|
|
|
575
575
|
},
|
|
576
576
|
/**
|
|
577
577
|
*
|
|
578
|
-
* @summary Revalidate faqCategory (Auth policies:
|
|
578
|
+
* @summary Revalidate faqCategory (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
579
579
|
* @param {string} faqCategoryId
|
|
580
580
|
* @param {boolean} [includeCurrent]
|
|
581
581
|
* @param {*} [options] Override http request option.
|
|
@@ -596,7 +596,7 @@ var FaqCategoriesApiFp = function (configuration) {
|
|
|
596
596
|
},
|
|
597
597
|
/**
|
|
598
598
|
*
|
|
599
|
-
* @summary Get all FaqCategories. (Auth policies:
|
|
599
|
+
* @summary Get all FaqCategories. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
600
600
|
* @param {string} [id]
|
|
601
601
|
* @param {string} [parentId]
|
|
602
602
|
* @param {string} [name]
|
|
@@ -626,7 +626,7 @@ var FaqCategoriesApiFp = function (configuration) {
|
|
|
626
626
|
},
|
|
627
627
|
/**
|
|
628
628
|
*
|
|
629
|
-
* @summary Create a FaqCategory. (Auth policies:
|
|
629
|
+
* @summary Create a FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
630
630
|
* @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
|
|
631
631
|
* @param {*} [options] Override http request option.
|
|
632
632
|
* @throws {RequiredError}
|
|
@@ -646,7 +646,7 @@ var FaqCategoriesApiFp = function (configuration) {
|
|
|
646
646
|
},
|
|
647
647
|
/**
|
|
648
648
|
*
|
|
649
|
-
* @summary Get FaqCategory by slug. (Auth policies:
|
|
649
|
+
* @summary Get FaqCategory by slug. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
650
650
|
* @param {string} slug
|
|
651
651
|
* @param {string} [languageCode]
|
|
652
652
|
* @param {*} [options] Override http request option.
|
|
@@ -677,7 +677,7 @@ var FaqCategoriesApiFactory = function (configuration, basePath, axios) {
|
|
|
677
677
|
return {
|
|
678
678
|
/**
|
|
679
679
|
*
|
|
680
|
-
* @summary Delete FaqCategory. (Auth policies:
|
|
680
|
+
* @summary Delete FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
681
681
|
* @param {string} faqCategoryId
|
|
682
682
|
* @param {boolean} [forceDelete]
|
|
683
683
|
* @param {boolean} [isPermanent]
|
|
@@ -689,7 +689,7 @@ var FaqCategoriesApiFactory = function (configuration, basePath, axios) {
|
|
|
689
689
|
},
|
|
690
690
|
/**
|
|
691
691
|
*
|
|
692
|
-
* @summary Get FaqCategory. (Auth policies:
|
|
692
|
+
* @summary Get FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
693
693
|
* @param {string} faqCategoryId
|
|
694
694
|
* @param {string} [languageCode]
|
|
695
695
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -701,7 +701,7 @@ var FaqCategoriesApiFactory = function (configuration, basePath, axios) {
|
|
|
701
701
|
},
|
|
702
702
|
/**
|
|
703
703
|
*
|
|
704
|
-
* @summary Update FaqCategory. (Auth policies:
|
|
704
|
+
* @summary Update FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
705
705
|
* @param {string} faqCategoryId
|
|
706
706
|
* @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
|
|
707
707
|
* @param {*} [options] Override http request option.
|
|
@@ -712,7 +712,7 @@ var FaqCategoriesApiFactory = function (configuration, basePath, axios) {
|
|
|
712
712
|
},
|
|
713
713
|
/**
|
|
714
714
|
*
|
|
715
|
-
* @summary Revalidate faqCategory (Auth policies:
|
|
715
|
+
* @summary Revalidate faqCategory (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
716
716
|
* @param {string} faqCategoryId
|
|
717
717
|
* @param {boolean} [includeCurrent]
|
|
718
718
|
* @param {*} [options] Override http request option.
|
|
@@ -723,7 +723,7 @@ var FaqCategoriesApiFactory = function (configuration, basePath, axios) {
|
|
|
723
723
|
},
|
|
724
724
|
/**
|
|
725
725
|
*
|
|
726
|
-
* @summary Get all FaqCategories. (Auth policies:
|
|
726
|
+
* @summary Get all FaqCategories. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
727
727
|
* @param {string} [id]
|
|
728
728
|
* @param {string} [parentId]
|
|
729
729
|
* @param {string} [name]
|
|
@@ -743,7 +743,7 @@ var FaqCategoriesApiFactory = function (configuration, basePath, axios) {
|
|
|
743
743
|
},
|
|
744
744
|
/**
|
|
745
745
|
*
|
|
746
|
-
* @summary Create a FaqCategory. (Auth policies:
|
|
746
|
+
* @summary Create a FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
747
747
|
* @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
|
|
748
748
|
* @param {*} [options] Override http request option.
|
|
749
749
|
* @throws {RequiredError}
|
|
@@ -753,7 +753,7 @@ var FaqCategoriesApiFactory = function (configuration, basePath, axios) {
|
|
|
753
753
|
},
|
|
754
754
|
/**
|
|
755
755
|
*
|
|
756
|
-
* @summary Get FaqCategory by slug. (Auth policies:
|
|
756
|
+
* @summary Get FaqCategory by slug. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
757
757
|
* @param {string} slug
|
|
758
758
|
* @param {string} [languageCode]
|
|
759
759
|
* @param {*} [options] Override http request option.
|
|
@@ -778,7 +778,7 @@ var FaqCategoriesApi = /** @class */ (function (_super) {
|
|
|
778
778
|
}
|
|
779
779
|
/**
|
|
780
780
|
*
|
|
781
|
-
* @summary Delete FaqCategory. (Auth policies:
|
|
781
|
+
* @summary Delete FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
782
782
|
* @param {FaqCategoriesApiApiV1FaqcategoriesFaqCategoryIdDeleteRequest} requestParameters Request parameters.
|
|
783
783
|
* @param {*} [options] Override http request option.
|
|
784
784
|
* @throws {RequiredError}
|
|
@@ -790,7 +790,7 @@ var FaqCategoriesApi = /** @class */ (function (_super) {
|
|
|
790
790
|
};
|
|
791
791
|
/**
|
|
792
792
|
*
|
|
793
|
-
* @summary Get FaqCategory. (Auth policies:
|
|
793
|
+
* @summary Get FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
794
794
|
* @param {FaqCategoriesApiApiV1FaqcategoriesFaqCategoryIdGetRequest} requestParameters Request parameters.
|
|
795
795
|
* @param {*} [options] Override http request option.
|
|
796
796
|
* @throws {RequiredError}
|
|
@@ -802,7 +802,7 @@ var FaqCategoriesApi = /** @class */ (function (_super) {
|
|
|
802
802
|
};
|
|
803
803
|
/**
|
|
804
804
|
*
|
|
805
|
-
* @summary Update FaqCategory. (Auth policies:
|
|
805
|
+
* @summary Update FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
806
806
|
* @param {FaqCategoriesApiApiV1FaqcategoriesFaqCategoryIdPutRequest} requestParameters Request parameters.
|
|
807
807
|
* @param {*} [options] Override http request option.
|
|
808
808
|
* @throws {RequiredError}
|
|
@@ -814,7 +814,7 @@ var FaqCategoriesApi = /** @class */ (function (_super) {
|
|
|
814
814
|
};
|
|
815
815
|
/**
|
|
816
816
|
*
|
|
817
|
-
* @summary Revalidate faqCategory (Auth policies:
|
|
817
|
+
* @summary Revalidate faqCategory (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
818
818
|
* @param {FaqCategoriesApiApiV1FaqcategoriesFaqCategoryIdRevalidatePostRequest} requestParameters Request parameters.
|
|
819
819
|
* @param {*} [options] Override http request option.
|
|
820
820
|
* @throws {RequiredError}
|
|
@@ -826,7 +826,7 @@ var FaqCategoriesApi = /** @class */ (function (_super) {
|
|
|
826
826
|
};
|
|
827
827
|
/**
|
|
828
828
|
*
|
|
829
|
-
* @summary Get all FaqCategories. (Auth policies:
|
|
829
|
+
* @summary Get all FaqCategories. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
830
830
|
* @param {FaqCategoriesApiApiV1FaqcategoriesGetRequest} requestParameters Request parameters.
|
|
831
831
|
* @param {*} [options] Override http request option.
|
|
832
832
|
* @throws {RequiredError}
|
|
@@ -839,7 +839,7 @@ var FaqCategoriesApi = /** @class */ (function (_super) {
|
|
|
839
839
|
};
|
|
840
840
|
/**
|
|
841
841
|
*
|
|
842
|
-
* @summary Create a FaqCategory. (Auth policies:
|
|
842
|
+
* @summary Create a FaqCategory. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
843
843
|
* @param {FaqCategoriesApiApiV1FaqcategoriesPostRequest} requestParameters Request parameters.
|
|
844
844
|
* @param {*} [options] Override http request option.
|
|
845
845
|
* @throws {RequiredError}
|
|
@@ -852,7 +852,7 @@ var FaqCategoriesApi = /** @class */ (function (_super) {
|
|
|
852
852
|
};
|
|
853
853
|
/**
|
|
854
854
|
*
|
|
855
|
-
* @summary Get FaqCategory by slug. (Auth policies:
|
|
855
|
+
* @summary Get FaqCategory by slug. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
856
856
|
* @param {FaqCategoriesApiApiV1FaqcategoriesSlugGetRequest} requestParameters Request parameters.
|
|
857
857
|
* @param {*} [options] Override http request option.
|
|
858
858
|
* @throws {RequiredError}
|