@seekora-ai/admin-api 1.0.78 → 1.0.79
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/README.md +16 -16
- package/api.ts +204 -162
- package/dist/api.d.ts +56 -56
- package/dist/api.js +190 -162
- package/dist/esm/api.d.ts +56 -56
- package/dist/esm/api.js +190 -162
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.79.tgz +0 -0
- package/seekora-ai-admin-api-1.0.78.tgz +0 -0
package/dist/api.d.ts
CHANGED
|
@@ -23012,7 +23012,7 @@ export declare const AnalyticsRulesApiAxiosParamCreator: (configuration?: Config
|
|
|
23012
23012
|
* @param {*} [options] Override http request option.
|
|
23013
23013
|
* @throws {RequiredError}
|
|
23014
23014
|
*/
|
|
23015
|
-
|
|
23015
|
+
adminV1AnalyticsRulesGet: (authorization: string, storeId?: number, collectionName?: string, isActive?: boolean, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: string, sortOrder?: string, searchQuery?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23016
23016
|
/**
|
|
23017
23017
|
* Create a new analytics rule for Typesense curation. Rules define how search results should be modified (promoted, hidden, filtered, sorted) based on query conditions.
|
|
23018
23018
|
* @summary Create Analytics Rule
|
|
@@ -23021,7 +23021,7 @@ export declare const AnalyticsRulesApiAxiosParamCreator: (configuration?: Config
|
|
|
23021
23021
|
* @param {*} [options] Override http request option.
|
|
23022
23022
|
* @throws {RequiredError}
|
|
23023
23023
|
*/
|
|
23024
|
-
|
|
23024
|
+
adminV1AnalyticsRulesPost: (authorization: string, dataTypesCreateAnalyticsRuleRequest: DataTypesCreateAnalyticsRuleRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23025
23025
|
/**
|
|
23026
23026
|
* Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
|
|
23027
23027
|
* @summary Delete Analytics Rule
|
|
@@ -23030,7 +23030,7 @@ export declare const AnalyticsRulesApiAxiosParamCreator: (configuration?: Config
|
|
|
23030
23030
|
* @param {*} [options] Override http request option.
|
|
23031
23031
|
* @throws {RequiredError}
|
|
23032
23032
|
*/
|
|
23033
|
-
|
|
23033
|
+
adminV1AnalyticsRulesRuleIdDelete: (authorization: string, ruleId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23034
23034
|
/**
|
|
23035
23035
|
* Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
|
|
23036
23036
|
* @summary Get Analytics Rule
|
|
@@ -23039,7 +23039,7 @@ export declare const AnalyticsRulesApiAxiosParamCreator: (configuration?: Config
|
|
|
23039
23039
|
* @param {*} [options] Override http request option.
|
|
23040
23040
|
* @throws {RequiredError}
|
|
23041
23041
|
*/
|
|
23042
|
-
|
|
23042
|
+
adminV1AnalyticsRulesRuleIdGet: (authorization: string, ruleId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23043
23043
|
/**
|
|
23044
23044
|
* Update an existing analytics rule. Supports partial updates. When is_active is set to false, the rule is removed from Typesense. When is_active is set to true, the rule is synced to Typesense.
|
|
23045
23045
|
* @summary Update Analytics Rule
|
|
@@ -23049,7 +23049,7 @@ export declare const AnalyticsRulesApiAxiosParamCreator: (configuration?: Config
|
|
|
23049
23049
|
* @param {*} [options] Override http request option.
|
|
23050
23050
|
* @throws {RequiredError}
|
|
23051
23051
|
*/
|
|
23052
|
-
|
|
23052
|
+
adminV1AnalyticsRulesRuleIdPut: (authorization: string, ruleId: string, dataTypesUpdateAnalyticsRuleRequest: DataTypesUpdateAnalyticsRuleRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23053
23053
|
/**
|
|
23054
23054
|
* Manually synchronize analytics rules to Typesense. This endpoint can be used to force a sync of all active rules or specific rules to Typesense collections.
|
|
23055
23055
|
* @summary Sync Rules to Typesense
|
|
@@ -23058,7 +23058,7 @@ export declare const AnalyticsRulesApiAxiosParamCreator: (configuration?: Config
|
|
|
23058
23058
|
* @param {*} [options] Override http request option.
|
|
23059
23059
|
* @throws {RequiredError}
|
|
23060
23060
|
*/
|
|
23061
|
-
|
|
23061
|
+
adminV1AnalyticsRulesSyncPost: (authorization: string, dataTypesAnalyticsRuleSyncRequest: DataTypesAnalyticsRuleSyncRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23062
23062
|
/**
|
|
23063
23063
|
* Retrieve a specific item by its ID from the Typesense collection. Useful for fetching details of items already in rules or for direct item selection by ID. Uses Redis caching for fast performance.
|
|
23064
23064
|
* @summary Get Item by ID for Rule Management
|
|
@@ -23068,7 +23068,7 @@ export declare const AnalyticsRulesApiAxiosParamCreator: (configuration?: Config
|
|
|
23068
23068
|
* @param {*} [options] Override http request option.
|
|
23069
23069
|
* @throws {RequiredError}
|
|
23070
23070
|
*/
|
|
23071
|
-
|
|
23071
|
+
adminV1StoresXStoreIDAnalyticsRulesItemsItemIdGet: (authorization: string, xStoreID: string, itemId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23072
23072
|
/**
|
|
23073
23073
|
* Search through all items in the store\'s Typesense collection to find items that can be pinned or hidden in rules. Searches across ALL searchable attributes by analyzing Typesense schema. Uses Redis caching for fast performance (same as admin search API).
|
|
23074
23074
|
* @summary Search Items for Rule Management
|
|
@@ -23078,7 +23078,7 @@ export declare const AnalyticsRulesApiAxiosParamCreator: (configuration?: Config
|
|
|
23078
23078
|
* @param {*} [options] Override http request option.
|
|
23079
23079
|
* @throws {RequiredError}
|
|
23080
23080
|
*/
|
|
23081
|
-
|
|
23081
|
+
adminV1StoresXStoreIDAnalyticsRulesSearchItemsPost: (authorization: string, xStoreID: string, dataTypesSearchRuleItemsRequest: DataTypesSearchRuleItemsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23082
23082
|
/**
|
|
23083
23083
|
* Retrieve a paginated list of analytics rules with optional filtering by store, collection, and active status. Supports both page-based and offset-based pagination.
|
|
23084
23084
|
* @summary List Analytics Rules
|
|
@@ -23097,7 +23097,7 @@ export declare const AnalyticsRulesApiAxiosParamCreator: (configuration?: Config
|
|
|
23097
23097
|
* @param {*} [options] Override http request option.
|
|
23098
23098
|
* @throws {RequiredError}
|
|
23099
23099
|
*/
|
|
23100
|
-
|
|
23100
|
+
adminV1StoresXstoreidAnalyticsRulesGet: (authorization: string, xstoreid: string, storeId?: number, collectionName?: string, isActive?: boolean, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: string, sortOrder?: string, searchQuery?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23101
23101
|
/**
|
|
23102
23102
|
* Create a new analytics rule for Typesense curation. Rules define how search results should be modified (promoted, hidden, filtered, sorted) based on query conditions.
|
|
23103
23103
|
* @summary Create Analytics Rule
|
|
@@ -23107,7 +23107,7 @@ export declare const AnalyticsRulesApiAxiosParamCreator: (configuration?: Config
|
|
|
23107
23107
|
* @param {*} [options] Override http request option.
|
|
23108
23108
|
* @throws {RequiredError}
|
|
23109
23109
|
*/
|
|
23110
|
-
|
|
23110
|
+
adminV1StoresXstoreidAnalyticsRulesPost: (authorization: string, xstoreid: string, dataTypesCreateAnalyticsRuleRequest: DataTypesCreateAnalyticsRuleRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23111
23111
|
/**
|
|
23112
23112
|
* Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
|
|
23113
23113
|
* @summary Delete Analytics Rule
|
|
@@ -23117,7 +23117,7 @@ export declare const AnalyticsRulesApiAxiosParamCreator: (configuration?: Config
|
|
|
23117
23117
|
* @param {*} [options] Override http request option.
|
|
23118
23118
|
* @throws {RequiredError}
|
|
23119
23119
|
*/
|
|
23120
|
-
|
|
23120
|
+
adminV1StoresXstoreidAnalyticsRulesRuleIdDelete: (authorization: string, xstoreid: string, ruleId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23121
23121
|
/**
|
|
23122
23122
|
* Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
|
|
23123
23123
|
* @summary Get Analytics Rule
|
|
@@ -23127,7 +23127,7 @@ export declare const AnalyticsRulesApiAxiosParamCreator: (configuration?: Config
|
|
|
23127
23127
|
* @param {*} [options] Override http request option.
|
|
23128
23128
|
* @throws {RequiredError}
|
|
23129
23129
|
*/
|
|
23130
|
-
|
|
23130
|
+
adminV1StoresXstoreidAnalyticsRulesRuleIdGet: (authorization: string, xstoreid: string, ruleId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23131
23131
|
/**
|
|
23132
23132
|
* Update an existing analytics rule. Supports partial updates. When is_active is set to false, the rule is removed from Typesense. When is_active is set to true, the rule is synced to Typesense.
|
|
23133
23133
|
* @summary Update Analytics Rule
|
|
@@ -23138,7 +23138,7 @@ export declare const AnalyticsRulesApiAxiosParamCreator: (configuration?: Config
|
|
|
23138
23138
|
* @param {*} [options] Override http request option.
|
|
23139
23139
|
* @throws {RequiredError}
|
|
23140
23140
|
*/
|
|
23141
|
-
|
|
23141
|
+
adminV1StoresXstoreidAnalyticsRulesRuleIdPut: (authorization: string, xstoreid: string, ruleId: string, dataTypesUpdateAnalyticsRuleRequest: DataTypesUpdateAnalyticsRuleRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23142
23142
|
/**
|
|
23143
23143
|
* Manually synchronize analytics rules to Typesense. This endpoint can be used to force a sync of all active rules or specific rules to Typesense collections.
|
|
23144
23144
|
* @summary Sync Rules to Typesense
|
|
@@ -23148,7 +23148,7 @@ export declare const AnalyticsRulesApiAxiosParamCreator: (configuration?: Config
|
|
|
23148
23148
|
* @param {*} [options] Override http request option.
|
|
23149
23149
|
* @throws {RequiredError}
|
|
23150
23150
|
*/
|
|
23151
|
-
|
|
23151
|
+
adminV1StoresXstoreidAnalyticsRulesSyncPost: (authorization: string, xstoreid: string, dataTypesAnalyticsRuleSyncRequest: DataTypesAnalyticsRuleSyncRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23152
23152
|
};
|
|
23153
23153
|
/**
|
|
23154
23154
|
* AnalyticsRulesApi - functional programming interface
|
|
@@ -23172,7 +23172,7 @@ export declare const AnalyticsRulesApiFp: (configuration?: Configuration) => {
|
|
|
23172
23172
|
* @param {*} [options] Override http request option.
|
|
23173
23173
|
* @throws {RequiredError}
|
|
23174
23174
|
*/
|
|
23175
|
-
|
|
23175
|
+
adminV1AnalyticsRulesGet(authorization: string, storeId?: number, collectionName?: string, isActive?: boolean, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: string, sortOrder?: string, searchQuery?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleListResponse>>;
|
|
23176
23176
|
/**
|
|
23177
23177
|
* Create a new analytics rule for Typesense curation. Rules define how search results should be modified (promoted, hidden, filtered, sorted) based on query conditions.
|
|
23178
23178
|
* @summary Create Analytics Rule
|
|
@@ -23181,7 +23181,7 @@ export declare const AnalyticsRulesApiFp: (configuration?: Configuration) => {
|
|
|
23181
23181
|
* @param {*} [options] Override http request option.
|
|
23182
23182
|
* @throws {RequiredError}
|
|
23183
23183
|
*/
|
|
23184
|
-
|
|
23184
|
+
adminV1AnalyticsRulesPost(authorization: string, dataTypesCreateAnalyticsRuleRequest: DataTypesCreateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleResponse>>;
|
|
23185
23185
|
/**
|
|
23186
23186
|
* Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
|
|
23187
23187
|
* @summary Delete Analytics Rule
|
|
@@ -23190,7 +23190,7 @@ export declare const AnalyticsRulesApiFp: (configuration?: Configuration) => {
|
|
|
23190
23190
|
* @param {*} [options] Override http request option.
|
|
23191
23191
|
* @throws {RequiredError}
|
|
23192
23192
|
*/
|
|
23193
|
-
|
|
23193
|
+
adminV1AnalyticsRulesRuleIdDelete(authorization: string, ruleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
23194
23194
|
[key: string]: any;
|
|
23195
23195
|
}>>;
|
|
23196
23196
|
/**
|
|
@@ -23201,7 +23201,7 @@ export declare const AnalyticsRulesApiFp: (configuration?: Configuration) => {
|
|
|
23201
23201
|
* @param {*} [options] Override http request option.
|
|
23202
23202
|
* @throws {RequiredError}
|
|
23203
23203
|
*/
|
|
23204
|
-
|
|
23204
|
+
adminV1AnalyticsRulesRuleIdGet(authorization: string, ruleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleResponse>>;
|
|
23205
23205
|
/**
|
|
23206
23206
|
* Update an existing analytics rule. Supports partial updates. When is_active is set to false, the rule is removed from Typesense. When is_active is set to true, the rule is synced to Typesense.
|
|
23207
23207
|
* @summary Update Analytics Rule
|
|
@@ -23211,7 +23211,7 @@ export declare const AnalyticsRulesApiFp: (configuration?: Configuration) => {
|
|
|
23211
23211
|
* @param {*} [options] Override http request option.
|
|
23212
23212
|
* @throws {RequiredError}
|
|
23213
23213
|
*/
|
|
23214
|
-
|
|
23214
|
+
adminV1AnalyticsRulesRuleIdPut(authorization: string, ruleId: string, dataTypesUpdateAnalyticsRuleRequest: DataTypesUpdateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleResponse>>;
|
|
23215
23215
|
/**
|
|
23216
23216
|
* Manually synchronize analytics rules to Typesense. This endpoint can be used to force a sync of all active rules or specific rules to Typesense collections.
|
|
23217
23217
|
* @summary Sync Rules to Typesense
|
|
@@ -23220,7 +23220,7 @@ export declare const AnalyticsRulesApiFp: (configuration?: Configuration) => {
|
|
|
23220
23220
|
* @param {*} [options] Override http request option.
|
|
23221
23221
|
* @throws {RequiredError}
|
|
23222
23222
|
*/
|
|
23223
|
-
|
|
23223
|
+
adminV1AnalyticsRulesSyncPost(authorization: string, dataTypesAnalyticsRuleSyncRequest: DataTypesAnalyticsRuleSyncRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleSyncResponse>>;
|
|
23224
23224
|
/**
|
|
23225
23225
|
* Retrieve a specific item by its ID from the Typesense collection. Useful for fetching details of items already in rules or for direct item selection by ID. Uses Redis caching for fast performance.
|
|
23226
23226
|
* @summary Get Item by ID for Rule Management
|
|
@@ -23230,7 +23230,7 @@ export declare const AnalyticsRulesApiFp: (configuration?: Configuration) => {
|
|
|
23230
23230
|
* @param {*} [options] Override http request option.
|
|
23231
23231
|
* @throws {RequiredError}
|
|
23232
23232
|
*/
|
|
23233
|
-
|
|
23233
|
+
adminV1StoresXStoreIDAnalyticsRulesItemsItemIdGet(authorization: string, xStoreID: string, itemId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSearchRuleItem>>;
|
|
23234
23234
|
/**
|
|
23235
23235
|
* Search through all items in the store\'s Typesense collection to find items that can be pinned or hidden in rules. Searches across ALL searchable attributes by analyzing Typesense schema. Uses Redis caching for fast performance (same as admin search API).
|
|
23236
23236
|
* @summary Search Items for Rule Management
|
|
@@ -23240,7 +23240,7 @@ export declare const AnalyticsRulesApiFp: (configuration?: Configuration) => {
|
|
|
23240
23240
|
* @param {*} [options] Override http request option.
|
|
23241
23241
|
* @throws {RequiredError}
|
|
23242
23242
|
*/
|
|
23243
|
-
|
|
23243
|
+
adminV1StoresXStoreIDAnalyticsRulesSearchItemsPost(authorization: string, xStoreID: string, dataTypesSearchRuleItemsRequest: DataTypesSearchRuleItemsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSearchRuleItemsResponse>>;
|
|
23244
23244
|
/**
|
|
23245
23245
|
* Retrieve a paginated list of analytics rules with optional filtering by store, collection, and active status. Supports both page-based and offset-based pagination.
|
|
23246
23246
|
* @summary List Analytics Rules
|
|
@@ -23259,7 +23259,7 @@ export declare const AnalyticsRulesApiFp: (configuration?: Configuration) => {
|
|
|
23259
23259
|
* @param {*} [options] Override http request option.
|
|
23260
23260
|
* @throws {RequiredError}
|
|
23261
23261
|
*/
|
|
23262
|
-
|
|
23262
|
+
adminV1StoresXstoreidAnalyticsRulesGet(authorization: string, xstoreid: string, storeId?: number, collectionName?: string, isActive?: boolean, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: string, sortOrder?: string, searchQuery?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleListResponse>>;
|
|
23263
23263
|
/**
|
|
23264
23264
|
* Create a new analytics rule for Typesense curation. Rules define how search results should be modified (promoted, hidden, filtered, sorted) based on query conditions.
|
|
23265
23265
|
* @summary Create Analytics Rule
|
|
@@ -23269,7 +23269,7 @@ export declare const AnalyticsRulesApiFp: (configuration?: Configuration) => {
|
|
|
23269
23269
|
* @param {*} [options] Override http request option.
|
|
23270
23270
|
* @throws {RequiredError}
|
|
23271
23271
|
*/
|
|
23272
|
-
|
|
23272
|
+
adminV1StoresXstoreidAnalyticsRulesPost(authorization: string, xstoreid: string, dataTypesCreateAnalyticsRuleRequest: DataTypesCreateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleResponse>>;
|
|
23273
23273
|
/**
|
|
23274
23274
|
* Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
|
|
23275
23275
|
* @summary Delete Analytics Rule
|
|
@@ -23279,7 +23279,7 @@ export declare const AnalyticsRulesApiFp: (configuration?: Configuration) => {
|
|
|
23279
23279
|
* @param {*} [options] Override http request option.
|
|
23280
23280
|
* @throws {RequiredError}
|
|
23281
23281
|
*/
|
|
23282
|
-
|
|
23282
|
+
adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization: string, xstoreid: string, ruleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
23283
23283
|
[key: string]: any;
|
|
23284
23284
|
}>>;
|
|
23285
23285
|
/**
|
|
@@ -23291,7 +23291,7 @@ export declare const AnalyticsRulesApiFp: (configuration?: Configuration) => {
|
|
|
23291
23291
|
* @param {*} [options] Override http request option.
|
|
23292
23292
|
* @throws {RequiredError}
|
|
23293
23293
|
*/
|
|
23294
|
-
|
|
23294
|
+
adminV1StoresXstoreidAnalyticsRulesRuleIdGet(authorization: string, xstoreid: string, ruleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleResponse>>;
|
|
23295
23295
|
/**
|
|
23296
23296
|
* Update an existing analytics rule. Supports partial updates. When is_active is set to false, the rule is removed from Typesense. When is_active is set to true, the rule is synced to Typesense.
|
|
23297
23297
|
* @summary Update Analytics Rule
|
|
@@ -23302,7 +23302,7 @@ export declare const AnalyticsRulesApiFp: (configuration?: Configuration) => {
|
|
|
23302
23302
|
* @param {*} [options] Override http request option.
|
|
23303
23303
|
* @throws {RequiredError}
|
|
23304
23304
|
*/
|
|
23305
|
-
|
|
23305
|
+
adminV1StoresXstoreidAnalyticsRulesRuleIdPut(authorization: string, xstoreid: string, ruleId: string, dataTypesUpdateAnalyticsRuleRequest: DataTypesUpdateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleResponse>>;
|
|
23306
23306
|
/**
|
|
23307
23307
|
* Manually synchronize analytics rules to Typesense. This endpoint can be used to force a sync of all active rules or specific rules to Typesense collections.
|
|
23308
23308
|
* @summary Sync Rules to Typesense
|
|
@@ -23312,7 +23312,7 @@ export declare const AnalyticsRulesApiFp: (configuration?: Configuration) => {
|
|
|
23312
23312
|
* @param {*} [options] Override http request option.
|
|
23313
23313
|
* @throws {RequiredError}
|
|
23314
23314
|
*/
|
|
23315
|
-
|
|
23315
|
+
adminV1StoresXstoreidAnalyticsRulesSyncPost(authorization: string, xstoreid: string, dataTypesAnalyticsRuleSyncRequest: DataTypesAnalyticsRuleSyncRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleSyncResponse>>;
|
|
23316
23316
|
};
|
|
23317
23317
|
/**
|
|
23318
23318
|
* AnalyticsRulesApi - factory interface
|
|
@@ -23336,7 +23336,7 @@ export declare const AnalyticsRulesApiFactory: (configuration?: Configuration, b
|
|
|
23336
23336
|
* @param {*} [options] Override http request option.
|
|
23337
23337
|
* @throws {RequiredError}
|
|
23338
23338
|
*/
|
|
23339
|
-
|
|
23339
|
+
adminV1AnalyticsRulesGet(authorization: string, storeId?: number, collectionName?: string, isActive?: boolean, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: string, sortOrder?: string, searchQuery?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleListResponse>;
|
|
23340
23340
|
/**
|
|
23341
23341
|
* Create a new analytics rule for Typesense curation. Rules define how search results should be modified (promoted, hidden, filtered, sorted) based on query conditions.
|
|
23342
23342
|
* @summary Create Analytics Rule
|
|
@@ -23345,7 +23345,7 @@ export declare const AnalyticsRulesApiFactory: (configuration?: Configuration, b
|
|
|
23345
23345
|
* @param {*} [options] Override http request option.
|
|
23346
23346
|
* @throws {RequiredError}
|
|
23347
23347
|
*/
|
|
23348
|
-
|
|
23348
|
+
adminV1AnalyticsRulesPost(authorization: string, dataTypesCreateAnalyticsRuleRequest: DataTypesCreateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleResponse>;
|
|
23349
23349
|
/**
|
|
23350
23350
|
* Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
|
|
23351
23351
|
* @summary Delete Analytics Rule
|
|
@@ -23354,7 +23354,7 @@ export declare const AnalyticsRulesApiFactory: (configuration?: Configuration, b
|
|
|
23354
23354
|
* @param {*} [options] Override http request option.
|
|
23355
23355
|
* @throws {RequiredError}
|
|
23356
23356
|
*/
|
|
23357
|
-
|
|
23357
|
+
adminV1AnalyticsRulesRuleIdDelete(authorization: string, ruleId: string, options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
23358
23358
|
[key: string]: any;
|
|
23359
23359
|
}>;
|
|
23360
23360
|
/**
|
|
@@ -23365,7 +23365,7 @@ export declare const AnalyticsRulesApiFactory: (configuration?: Configuration, b
|
|
|
23365
23365
|
* @param {*} [options] Override http request option.
|
|
23366
23366
|
* @throws {RequiredError}
|
|
23367
23367
|
*/
|
|
23368
|
-
|
|
23368
|
+
adminV1AnalyticsRulesRuleIdGet(authorization: string, ruleId: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleResponse>;
|
|
23369
23369
|
/**
|
|
23370
23370
|
* Update an existing analytics rule. Supports partial updates. When is_active is set to false, the rule is removed from Typesense. When is_active is set to true, the rule is synced to Typesense.
|
|
23371
23371
|
* @summary Update Analytics Rule
|
|
@@ -23375,7 +23375,7 @@ export declare const AnalyticsRulesApiFactory: (configuration?: Configuration, b
|
|
|
23375
23375
|
* @param {*} [options] Override http request option.
|
|
23376
23376
|
* @throws {RequiredError}
|
|
23377
23377
|
*/
|
|
23378
|
-
|
|
23378
|
+
adminV1AnalyticsRulesRuleIdPut(authorization: string, ruleId: string, dataTypesUpdateAnalyticsRuleRequest: DataTypesUpdateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleResponse>;
|
|
23379
23379
|
/**
|
|
23380
23380
|
* Manually synchronize analytics rules to Typesense. This endpoint can be used to force a sync of all active rules or specific rules to Typesense collections.
|
|
23381
23381
|
* @summary Sync Rules to Typesense
|
|
@@ -23384,7 +23384,7 @@ export declare const AnalyticsRulesApiFactory: (configuration?: Configuration, b
|
|
|
23384
23384
|
* @param {*} [options] Override http request option.
|
|
23385
23385
|
* @throws {RequiredError}
|
|
23386
23386
|
*/
|
|
23387
|
-
|
|
23387
|
+
adminV1AnalyticsRulesSyncPost(authorization: string, dataTypesAnalyticsRuleSyncRequest: DataTypesAnalyticsRuleSyncRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleSyncResponse>;
|
|
23388
23388
|
/**
|
|
23389
23389
|
* Retrieve a specific item by its ID from the Typesense collection. Useful for fetching details of items already in rules or for direct item selection by ID. Uses Redis caching for fast performance.
|
|
23390
23390
|
* @summary Get Item by ID for Rule Management
|
|
@@ -23394,7 +23394,7 @@ export declare const AnalyticsRulesApiFactory: (configuration?: Configuration, b
|
|
|
23394
23394
|
* @param {*} [options] Override http request option.
|
|
23395
23395
|
* @throws {RequiredError}
|
|
23396
23396
|
*/
|
|
23397
|
-
|
|
23397
|
+
adminV1StoresXStoreIDAnalyticsRulesItemsItemIdGet(authorization: string, xStoreID: string, itemId: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSearchRuleItem>;
|
|
23398
23398
|
/**
|
|
23399
23399
|
* Search through all items in the store\'s Typesense collection to find items that can be pinned or hidden in rules. Searches across ALL searchable attributes by analyzing Typesense schema. Uses Redis caching for fast performance (same as admin search API).
|
|
23400
23400
|
* @summary Search Items for Rule Management
|
|
@@ -23404,7 +23404,7 @@ export declare const AnalyticsRulesApiFactory: (configuration?: Configuration, b
|
|
|
23404
23404
|
* @param {*} [options] Override http request option.
|
|
23405
23405
|
* @throws {RequiredError}
|
|
23406
23406
|
*/
|
|
23407
|
-
|
|
23407
|
+
adminV1StoresXStoreIDAnalyticsRulesSearchItemsPost(authorization: string, xStoreID: string, dataTypesSearchRuleItemsRequest: DataTypesSearchRuleItemsRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSearchRuleItemsResponse>;
|
|
23408
23408
|
/**
|
|
23409
23409
|
* Retrieve a paginated list of analytics rules with optional filtering by store, collection, and active status. Supports both page-based and offset-based pagination.
|
|
23410
23410
|
* @summary List Analytics Rules
|
|
@@ -23423,7 +23423,7 @@ export declare const AnalyticsRulesApiFactory: (configuration?: Configuration, b
|
|
|
23423
23423
|
* @param {*} [options] Override http request option.
|
|
23424
23424
|
* @throws {RequiredError}
|
|
23425
23425
|
*/
|
|
23426
|
-
|
|
23426
|
+
adminV1StoresXstoreidAnalyticsRulesGet(authorization: string, xstoreid: string, storeId?: number, collectionName?: string, isActive?: boolean, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: string, sortOrder?: string, searchQuery?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleListResponse>;
|
|
23427
23427
|
/**
|
|
23428
23428
|
* Create a new analytics rule for Typesense curation. Rules define how search results should be modified (promoted, hidden, filtered, sorted) based on query conditions.
|
|
23429
23429
|
* @summary Create Analytics Rule
|
|
@@ -23433,7 +23433,7 @@ export declare const AnalyticsRulesApiFactory: (configuration?: Configuration, b
|
|
|
23433
23433
|
* @param {*} [options] Override http request option.
|
|
23434
23434
|
* @throws {RequiredError}
|
|
23435
23435
|
*/
|
|
23436
|
-
|
|
23436
|
+
adminV1StoresXstoreidAnalyticsRulesPost(authorization: string, xstoreid: string, dataTypesCreateAnalyticsRuleRequest: DataTypesCreateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleResponse>;
|
|
23437
23437
|
/**
|
|
23438
23438
|
* Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
|
|
23439
23439
|
* @summary Delete Analytics Rule
|
|
@@ -23443,7 +23443,7 @@ export declare const AnalyticsRulesApiFactory: (configuration?: Configuration, b
|
|
|
23443
23443
|
* @param {*} [options] Override http request option.
|
|
23444
23444
|
* @throws {RequiredError}
|
|
23445
23445
|
*/
|
|
23446
|
-
|
|
23446
|
+
adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization: string, xstoreid: string, ruleId: string, options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
23447
23447
|
[key: string]: any;
|
|
23448
23448
|
}>;
|
|
23449
23449
|
/**
|
|
@@ -23455,7 +23455,7 @@ export declare const AnalyticsRulesApiFactory: (configuration?: Configuration, b
|
|
|
23455
23455
|
* @param {*} [options] Override http request option.
|
|
23456
23456
|
* @throws {RequiredError}
|
|
23457
23457
|
*/
|
|
23458
|
-
|
|
23458
|
+
adminV1StoresXstoreidAnalyticsRulesRuleIdGet(authorization: string, xstoreid: string, ruleId: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleResponse>;
|
|
23459
23459
|
/**
|
|
23460
23460
|
* Update an existing analytics rule. Supports partial updates. When is_active is set to false, the rule is removed from Typesense. When is_active is set to true, the rule is synced to Typesense.
|
|
23461
23461
|
* @summary Update Analytics Rule
|
|
@@ -23466,7 +23466,7 @@ export declare const AnalyticsRulesApiFactory: (configuration?: Configuration, b
|
|
|
23466
23466
|
* @param {*} [options] Override http request option.
|
|
23467
23467
|
* @throws {RequiredError}
|
|
23468
23468
|
*/
|
|
23469
|
-
|
|
23469
|
+
adminV1StoresXstoreidAnalyticsRulesRuleIdPut(authorization: string, xstoreid: string, ruleId: string, dataTypesUpdateAnalyticsRuleRequest: DataTypesUpdateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleResponse>;
|
|
23470
23470
|
/**
|
|
23471
23471
|
* Manually synchronize analytics rules to Typesense. This endpoint can be used to force a sync of all active rules or specific rules to Typesense collections.
|
|
23472
23472
|
* @summary Sync Rules to Typesense
|
|
@@ -23476,7 +23476,7 @@ export declare const AnalyticsRulesApiFactory: (configuration?: Configuration, b
|
|
|
23476
23476
|
* @param {*} [options] Override http request option.
|
|
23477
23477
|
* @throws {RequiredError}
|
|
23478
23478
|
*/
|
|
23479
|
-
|
|
23479
|
+
adminV1StoresXstoreidAnalyticsRulesSyncPost(authorization: string, xstoreid: string, dataTypesAnalyticsRuleSyncRequest: DataTypesAnalyticsRuleSyncRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleSyncResponse>;
|
|
23480
23480
|
};
|
|
23481
23481
|
/**
|
|
23482
23482
|
* AnalyticsRulesApi - object-oriented interface
|
|
@@ -23503,7 +23503,7 @@ export declare class AnalyticsRulesApi extends BaseAPI {
|
|
|
23503
23503
|
* @throws {RequiredError}
|
|
23504
23504
|
* @memberof AnalyticsRulesApi
|
|
23505
23505
|
*/
|
|
23506
|
-
|
|
23506
|
+
adminV1AnalyticsRulesGet(authorization: string, storeId?: number, collectionName?: string, isActive?: boolean, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: string, sortOrder?: string, searchQuery?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAnalyticsRuleListResponse, any, {}>>;
|
|
23507
23507
|
/**
|
|
23508
23508
|
* Create a new analytics rule for Typesense curation. Rules define how search results should be modified (promoted, hidden, filtered, sorted) based on query conditions.
|
|
23509
23509
|
* @summary Create Analytics Rule
|
|
@@ -23513,7 +23513,7 @@ export declare class AnalyticsRulesApi extends BaseAPI {
|
|
|
23513
23513
|
* @throws {RequiredError}
|
|
23514
23514
|
* @memberof AnalyticsRulesApi
|
|
23515
23515
|
*/
|
|
23516
|
-
|
|
23516
|
+
adminV1AnalyticsRulesPost(authorization: string, dataTypesCreateAnalyticsRuleRequest: DataTypesCreateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAnalyticsRuleResponse, any, {}>>;
|
|
23517
23517
|
/**
|
|
23518
23518
|
* Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
|
|
23519
23519
|
* @summary Delete Analytics Rule
|
|
@@ -23523,7 +23523,7 @@ export declare class AnalyticsRulesApi extends BaseAPI {
|
|
|
23523
23523
|
* @throws {RequiredError}
|
|
23524
23524
|
* @memberof AnalyticsRulesApi
|
|
23525
23525
|
*/
|
|
23526
|
-
|
|
23526
|
+
adminV1AnalyticsRulesRuleIdDelete(authorization: string, ruleId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
23527
23527
|
[key: string]: any;
|
|
23528
23528
|
}, any, {}>>;
|
|
23529
23529
|
/**
|
|
@@ -23535,7 +23535,7 @@ export declare class AnalyticsRulesApi extends BaseAPI {
|
|
|
23535
23535
|
* @throws {RequiredError}
|
|
23536
23536
|
* @memberof AnalyticsRulesApi
|
|
23537
23537
|
*/
|
|
23538
|
-
|
|
23538
|
+
adminV1AnalyticsRulesRuleIdGet(authorization: string, ruleId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAnalyticsRuleResponse, any, {}>>;
|
|
23539
23539
|
/**
|
|
23540
23540
|
* Update an existing analytics rule. Supports partial updates. When is_active is set to false, the rule is removed from Typesense. When is_active is set to true, the rule is synced to Typesense.
|
|
23541
23541
|
* @summary Update Analytics Rule
|
|
@@ -23546,7 +23546,7 @@ export declare class AnalyticsRulesApi extends BaseAPI {
|
|
|
23546
23546
|
* @throws {RequiredError}
|
|
23547
23547
|
* @memberof AnalyticsRulesApi
|
|
23548
23548
|
*/
|
|
23549
|
-
|
|
23549
|
+
adminV1AnalyticsRulesRuleIdPut(authorization: string, ruleId: string, dataTypesUpdateAnalyticsRuleRequest: DataTypesUpdateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAnalyticsRuleResponse, any, {}>>;
|
|
23550
23550
|
/**
|
|
23551
23551
|
* Manually synchronize analytics rules to Typesense. This endpoint can be used to force a sync of all active rules or specific rules to Typesense collections.
|
|
23552
23552
|
* @summary Sync Rules to Typesense
|
|
@@ -23556,7 +23556,7 @@ export declare class AnalyticsRulesApi extends BaseAPI {
|
|
|
23556
23556
|
* @throws {RequiredError}
|
|
23557
23557
|
* @memberof AnalyticsRulesApi
|
|
23558
23558
|
*/
|
|
23559
|
-
|
|
23559
|
+
adminV1AnalyticsRulesSyncPost(authorization: string, dataTypesAnalyticsRuleSyncRequest: DataTypesAnalyticsRuleSyncRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAnalyticsRuleSyncResponse, any, {}>>;
|
|
23560
23560
|
/**
|
|
23561
23561
|
* Retrieve a specific item by its ID from the Typesense collection. Useful for fetching details of items already in rules or for direct item selection by ID. Uses Redis caching for fast performance.
|
|
23562
23562
|
* @summary Get Item by ID for Rule Management
|
|
@@ -23567,7 +23567,7 @@ export declare class AnalyticsRulesApi extends BaseAPI {
|
|
|
23567
23567
|
* @throws {RequiredError}
|
|
23568
23568
|
* @memberof AnalyticsRulesApi
|
|
23569
23569
|
*/
|
|
23570
|
-
|
|
23570
|
+
adminV1StoresXStoreIDAnalyticsRulesItemsItemIdGet(authorization: string, xStoreID: string, itemId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSearchRuleItem, any, {}>>;
|
|
23571
23571
|
/**
|
|
23572
23572
|
* Search through all items in the store\'s Typesense collection to find items that can be pinned or hidden in rules. Searches across ALL searchable attributes by analyzing Typesense schema. Uses Redis caching for fast performance (same as admin search API).
|
|
23573
23573
|
* @summary Search Items for Rule Management
|
|
@@ -23578,7 +23578,7 @@ export declare class AnalyticsRulesApi extends BaseAPI {
|
|
|
23578
23578
|
* @throws {RequiredError}
|
|
23579
23579
|
* @memberof AnalyticsRulesApi
|
|
23580
23580
|
*/
|
|
23581
|
-
|
|
23581
|
+
adminV1StoresXStoreIDAnalyticsRulesSearchItemsPost(authorization: string, xStoreID: string, dataTypesSearchRuleItemsRequest: DataTypesSearchRuleItemsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSearchRuleItemsResponse, any, {}>>;
|
|
23582
23582
|
/**
|
|
23583
23583
|
* Retrieve a paginated list of analytics rules with optional filtering by store, collection, and active status. Supports both page-based and offset-based pagination.
|
|
23584
23584
|
* @summary List Analytics Rules
|
|
@@ -23598,7 +23598,7 @@ export declare class AnalyticsRulesApi extends BaseAPI {
|
|
|
23598
23598
|
* @throws {RequiredError}
|
|
23599
23599
|
* @memberof AnalyticsRulesApi
|
|
23600
23600
|
*/
|
|
23601
|
-
|
|
23601
|
+
adminV1StoresXstoreidAnalyticsRulesGet(authorization: string, xstoreid: string, storeId?: number, collectionName?: string, isActive?: boolean, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: string, sortOrder?: string, searchQuery?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAnalyticsRuleListResponse, any, {}>>;
|
|
23602
23602
|
/**
|
|
23603
23603
|
* Create a new analytics rule for Typesense curation. Rules define how search results should be modified (promoted, hidden, filtered, sorted) based on query conditions.
|
|
23604
23604
|
* @summary Create Analytics Rule
|
|
@@ -23609,7 +23609,7 @@ export declare class AnalyticsRulesApi extends BaseAPI {
|
|
|
23609
23609
|
* @throws {RequiredError}
|
|
23610
23610
|
* @memberof AnalyticsRulesApi
|
|
23611
23611
|
*/
|
|
23612
|
-
|
|
23612
|
+
adminV1StoresXstoreidAnalyticsRulesPost(authorization: string, xstoreid: string, dataTypesCreateAnalyticsRuleRequest: DataTypesCreateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAnalyticsRuleResponse, any, {}>>;
|
|
23613
23613
|
/**
|
|
23614
23614
|
* Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
|
|
23615
23615
|
* @summary Delete Analytics Rule
|
|
@@ -23620,7 +23620,7 @@ export declare class AnalyticsRulesApi extends BaseAPI {
|
|
|
23620
23620
|
* @throws {RequiredError}
|
|
23621
23621
|
* @memberof AnalyticsRulesApi
|
|
23622
23622
|
*/
|
|
23623
|
-
|
|
23623
|
+
adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization: string, xstoreid: string, ruleId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
23624
23624
|
[key: string]: any;
|
|
23625
23625
|
}, any, {}>>;
|
|
23626
23626
|
/**
|
|
@@ -23633,7 +23633,7 @@ export declare class AnalyticsRulesApi extends BaseAPI {
|
|
|
23633
23633
|
* @throws {RequiredError}
|
|
23634
23634
|
* @memberof AnalyticsRulesApi
|
|
23635
23635
|
*/
|
|
23636
|
-
|
|
23636
|
+
adminV1StoresXstoreidAnalyticsRulesRuleIdGet(authorization: string, xstoreid: string, ruleId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAnalyticsRuleResponse, any, {}>>;
|
|
23637
23637
|
/**
|
|
23638
23638
|
* Update an existing analytics rule. Supports partial updates. When is_active is set to false, the rule is removed from Typesense. When is_active is set to true, the rule is synced to Typesense.
|
|
23639
23639
|
* @summary Update Analytics Rule
|
|
@@ -23645,7 +23645,7 @@ export declare class AnalyticsRulesApi extends BaseAPI {
|
|
|
23645
23645
|
* @throws {RequiredError}
|
|
23646
23646
|
* @memberof AnalyticsRulesApi
|
|
23647
23647
|
*/
|
|
23648
|
-
|
|
23648
|
+
adminV1StoresXstoreidAnalyticsRulesRuleIdPut(authorization: string, xstoreid: string, ruleId: string, dataTypesUpdateAnalyticsRuleRequest: DataTypesUpdateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAnalyticsRuleResponse, any, {}>>;
|
|
23649
23649
|
/**
|
|
23650
23650
|
* Manually synchronize analytics rules to Typesense. This endpoint can be used to force a sync of all active rules or specific rules to Typesense collections.
|
|
23651
23651
|
* @summary Sync Rules to Typesense
|
|
@@ -23656,7 +23656,7 @@ export declare class AnalyticsRulesApi extends BaseAPI {
|
|
|
23656
23656
|
* @throws {RequiredError}
|
|
23657
23657
|
* @memberof AnalyticsRulesApi
|
|
23658
23658
|
*/
|
|
23659
|
-
|
|
23659
|
+
adminV1StoresXstoreidAnalyticsRulesSyncPost(authorization: string, xstoreid: string, dataTypesAnalyticsRuleSyncRequest: DataTypesAnalyticsRuleSyncRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAnalyticsRuleSyncResponse, any, {}>>;
|
|
23660
23660
|
}
|
|
23661
23661
|
/**
|
|
23662
23662
|
* ArticlesApi - axios parameter creator
|