@seekora-ai/admin-api 1.0.65 → 1.0.67
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 +3 -3
- package/api.ts +31 -23
- package/dist/api.d.ts +25 -21
- package/dist/api.js +22 -15
- package/dist/esm/api.d.ts +25 -21
- package/dist/esm/api.js +22 -15
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.67.tgz +0 -0
- package/seekora-ai-admin-api-1.0.65.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @seekora-ai/admin-api@1.0.
|
|
1
|
+
## @seekora-ai/admin-api@1.0.67
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @seekora-ai/admin-api@1.0.
|
|
39
|
+
npm install @seekora-ai/admin-api@1.0.67 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -240,7 +240,7 @@ Class | Method | HTTP request | Description
|
|
|
240
240
|
*QuerySuggestionsManagementApi* | [**adminV1QuerySuggestionsXStoreIDPromotePost**](docs/QuerySuggestionsManagementApi.md#adminv1querysuggestionsxstoreidpromotepost) | **POST** /admin/v1/query-suggestions/{xStoreID}/promote | Promote Cached Suggestions to Management Table
|
|
241
241
|
*QuerySuggestionsManagementApi* | [**adminV1QuerySuggestionsXStoreIDRefreshPost**](docs/QuerySuggestionsManagementApi.md#adminv1querysuggestionsxstoreidrefreshpost) | **POST** /admin/v1/query-suggestions/{xStoreID}/refresh | Refresh Auto-Generated Suggestions
|
|
242
242
|
*QuerySuggestionsManagementApi* | [**adminV1QuerySuggestionsXStoreIDStatsGet**](docs/QuerySuggestionsManagementApi.md#adminv1querysuggestionsxstoreidstatsget) | **GET** /admin/v1/query-suggestions/{xStoreID}/stats | Get Suggestion Statistics
|
|
243
|
-
*QuerySuggestionsManagementApi* | [**adminV1QuerySuggestionsXStoreIDStatusGet**](docs/QuerySuggestionsManagementApi.md#adminv1querysuggestionsxstoreidstatusget) | **GET** /admin/v1/query-suggestions/{xStoreID}/status | Get Query Suggestions Status
|
|
243
|
+
*QuerySuggestionsManagementApi* | [**adminV1QuerySuggestionsXStoreIDStatusGet**](docs/QuerySuggestionsManagementApi.md#adminv1querysuggestionsxstoreidstatusget) | **GET** /admin/v1/query-suggestions/{xStoreID}/status | Get Query Suggestions Status
|
|
244
244
|
*QuerySuggestionsManagementApi* | [**adminV1QuerySuggestionsXStoreIDSuggestionIDDelete**](docs/QuerySuggestionsManagementApi.md#adminv1querysuggestionsxstoreidsuggestioniddelete) | **DELETE** /admin/v1/query-suggestions/{xStoreID}/{suggestionID} | Delete Query Suggestion by ID
|
|
245
245
|
*QuerySuggestionsManagementApi* | [**adminV1QuerySuggestionsXStoreIDSuggestionIDGet**](docs/QuerySuggestionsManagementApi.md#adminv1querysuggestionsxstoreidsuggestionidget) | **GET** /admin/v1/query-suggestions/{xStoreID}/{suggestionID} | Get Query Suggestion by ID
|
|
246
246
|
*QuerySuggestionsManagementApi* | [**adminV1QuerySuggestionsXStoreIDSuggestionIDPut**](docs/QuerySuggestionsManagementApi.md#adminv1querysuggestionsxstoreidsuggestionidput) | **PUT** /admin/v1/query-suggestions/{xStoreID}/{suggestionID} | Update Query Suggestion by ID
|
package/api.ts
CHANGED
|
@@ -5982,11 +5982,11 @@ export interface AnalyticsQuerySuggestionConfig {
|
|
|
5982
5982
|
*/
|
|
5983
5983
|
'facet_combination_limit'?: number;
|
|
5984
5984
|
/**
|
|
5985
|
-
*
|
|
5986
|
-
* @type {string}
|
|
5985
|
+
* Languages for duplicate removal (singular/plural)
|
|
5986
|
+
* @type {Array<string>}
|
|
5987
5987
|
* @memberof AnalyticsQuerySuggestionConfig
|
|
5988
5988
|
*/
|
|
5989
|
-
'
|
|
5989
|
+
'languages'?: Array<string>;
|
|
5990
5990
|
/**
|
|
5991
5991
|
* Maximum number of suggestions to return
|
|
5992
5992
|
* @type {number}
|
|
@@ -6823,11 +6823,11 @@ export interface AnalyticsUpdateSuggestionConfigRequest {
|
|
|
6823
6823
|
*/
|
|
6824
6824
|
'facet_combination_limit'?: number;
|
|
6825
6825
|
/**
|
|
6826
|
-
*
|
|
6827
|
-
* @type {string}
|
|
6826
|
+
* Languages for duplicate removal
|
|
6827
|
+
* @type {Array<string>}
|
|
6828
6828
|
* @memberof AnalyticsUpdateSuggestionConfigRequest
|
|
6829
6829
|
*/
|
|
6830
|
-
'
|
|
6830
|
+
'languages'?: Array<string>;
|
|
6831
6831
|
/**
|
|
6832
6832
|
* Minimum hits for suggestions
|
|
6833
6833
|
* @type {number}
|
|
@@ -20261,6 +20261,7 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20261
20261
|
* @param {string} xStoreID Store ID
|
|
20262
20262
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
20263
20263
|
* @param {string} [endTime] End time in RFC3339 format
|
|
20264
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
20264
20265
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
20265
20266
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
20266
20267
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -20288,7 +20289,7 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20288
20289
|
* @param {*} [options] Override http request option.
|
|
20289
20290
|
* @throws {RequiredError}
|
|
20290
20291
|
*/
|
|
20291
|
-
adminAnalyticsStoreXStoreIDResultsGet: async (xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
20292
|
+
adminAnalyticsStoreXStoreIDResultsGet: async (xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
20292
20293
|
// verify required parameter 'xStoreID' is not null or undefined
|
|
20293
20294
|
assertParamExists('adminAnalyticsStoreXStoreIDResultsGet', 'xStoreID', xStoreID)
|
|
20294
20295
|
const localVarPath = `/admin/analytics/store/{xStoreID}/results`
|
|
@@ -20315,6 +20316,10 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20315
20316
|
localVarQueryParameter['end_time'] = endTime;
|
|
20316
20317
|
}
|
|
20317
20318
|
|
|
20319
|
+
if (search !== undefined) {
|
|
20320
|
+
localVarQueryParameter['search'] = search;
|
|
20321
|
+
}
|
|
20322
|
+
|
|
20318
20323
|
if (itemIds !== undefined) {
|
|
20319
20324
|
localVarQueryParameter['item_ids'] = itemIds;
|
|
20320
20325
|
}
|
|
@@ -21025,6 +21030,7 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
21025
21030
|
* @param {string} xStoreID Store ID
|
|
21026
21031
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
21027
21032
|
* @param {string} [endTime] End time in RFC3339 format
|
|
21033
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
21028
21034
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
21029
21035
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
21030
21036
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -21052,8 +21058,8 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
21052
21058
|
* @param {*} [options] Override http request option.
|
|
21053
21059
|
* @throws {RequiredError}
|
|
21054
21060
|
*/
|
|
21055
|
-
async adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response>> {
|
|
21056
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options);
|
|
21061
|
+
async adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response>> {
|
|
21062
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options);
|
|
21057
21063
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
21058
21064
|
const localVarOperationServerBasePath = operationServerMap['AnalyticsApi.adminAnalyticsStoreXStoreIDResultsGet']?.[localVarOperationServerIndex]?.url;
|
|
21059
21065
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -21486,6 +21492,7 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
21486
21492
|
* @param {string} xStoreID Store ID
|
|
21487
21493
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
21488
21494
|
* @param {string} [endTime] End time in RFC3339 format
|
|
21495
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
21489
21496
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
21490
21497
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
21491
21498
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -21513,8 +21520,8 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
21513
21520
|
* @param {*} [options] Override http request option.
|
|
21514
21521
|
* @throws {RequiredError}
|
|
21515
21522
|
*/
|
|
21516
|
-
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response> {
|
|
21517
|
-
return localVarFp.adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options).then((request) => request(axios, basePath));
|
|
21523
|
+
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response> {
|
|
21524
|
+
return localVarFp.adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options).then((request) => request(axios, basePath));
|
|
21518
21525
|
},
|
|
21519
21526
|
/**
|
|
21520
21527
|
* Retrieve analytics tags usage data and filtering capabilities. If no start_time/end_time is specified, returns all tags from the last 2 years.
|
|
@@ -21968,6 +21975,7 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
21968
21975
|
* @param {string} xStoreID Store ID
|
|
21969
21976
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
21970
21977
|
* @param {string} [endTime] End time in RFC3339 format
|
|
21978
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
21971
21979
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
21972
21980
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
21973
21981
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -21996,8 +22004,8 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
21996
22004
|
* @throws {RequiredError}
|
|
21997
22005
|
* @memberof AnalyticsApi
|
|
21998
22006
|
*/
|
|
21999
|
-
public adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) {
|
|
22000
|
-
return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
22007
|
+
public adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) {
|
|
22008
|
+
return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
22001
22009
|
}
|
|
22002
22010
|
|
|
22003
22011
|
/**
|
|
@@ -35924,8 +35932,8 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
|
|
|
35924
35932
|
};
|
|
35925
35933
|
},
|
|
35926
35934
|
/**
|
|
35927
|
-
*
|
|
35928
|
-
* @summary Get Query Suggestions Status
|
|
35935
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
35936
|
+
* @summary Get Query Suggestions Status
|
|
35929
35937
|
* @param {string} xStoreID Store ID
|
|
35930
35938
|
* @param {*} [options] Override http request option.
|
|
35931
35939
|
* @throws {RequiredError}
|
|
@@ -36580,13 +36588,13 @@ export const QuerySuggestionsManagementApiFp = function(configuration?: Configur
|
|
|
36580
36588
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
36581
36589
|
},
|
|
36582
36590
|
/**
|
|
36583
|
-
*
|
|
36584
|
-
* @summary Get Query Suggestions Status
|
|
36591
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
36592
|
+
* @summary Get Query Suggestions Status
|
|
36585
36593
|
* @param {string} xStoreID Store ID
|
|
36586
36594
|
* @param {*} [options] Override http request option.
|
|
36587
36595
|
* @throws {RequiredError}
|
|
36588
36596
|
*/
|
|
36589
|
-
async adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
36597
|
+
async adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>> {
|
|
36590
36598
|
const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID, options);
|
|
36591
36599
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
36592
36600
|
const localVarOperationServerBasePath = operationServerMap['QuerySuggestionsManagementApi.adminV1QuerySuggestionsXStoreIDStatusGet']?.[localVarOperationServerIndex]?.url;
|
|
@@ -36941,13 +36949,13 @@ export const QuerySuggestionsManagementApiFactory = function (configuration?: Co
|
|
|
36941
36949
|
return localVarFp.adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID, options).then((request) => request(axios, basePath));
|
|
36942
36950
|
},
|
|
36943
36951
|
/**
|
|
36944
|
-
*
|
|
36945
|
-
* @summary Get Query Suggestions Status
|
|
36952
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
36953
|
+
* @summary Get Query Suggestions Status
|
|
36946
36954
|
* @param {string} xStoreID Store ID
|
|
36947
36955
|
* @param {*} [options] Override http request option.
|
|
36948
36956
|
* @throws {RequiredError}
|
|
36949
36957
|
*/
|
|
36950
|
-
adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
36958
|
+
adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response> {
|
|
36951
36959
|
return localVarFp.adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID, options).then((request) => request(axios, basePath));
|
|
36952
36960
|
},
|
|
36953
36961
|
/**
|
|
@@ -37320,8 +37328,8 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
|
|
|
37320
37328
|
}
|
|
37321
37329
|
|
|
37322
37330
|
/**
|
|
37323
|
-
*
|
|
37324
|
-
* @summary Get Query Suggestions Status
|
|
37331
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
37332
|
+
* @summary Get Query Suggestions Status
|
|
37325
37333
|
* @param {string} xStoreID Store ID
|
|
37326
37334
|
* @param {*} [options] Override http request option.
|
|
37327
37335
|
* @throws {RequiredError}
|
package/dist/api.d.ts
CHANGED
|
@@ -5990,11 +5990,11 @@ export interface AnalyticsQuerySuggestionConfig {
|
|
|
5990
5990
|
*/
|
|
5991
5991
|
'facet_combination_limit'?: number;
|
|
5992
5992
|
/**
|
|
5993
|
-
*
|
|
5994
|
-
* @type {string}
|
|
5993
|
+
* Languages for duplicate removal (singular/plural)
|
|
5994
|
+
* @type {Array<string>}
|
|
5995
5995
|
* @memberof AnalyticsQuerySuggestionConfig
|
|
5996
5996
|
*/
|
|
5997
|
-
'
|
|
5997
|
+
'languages'?: Array<string>;
|
|
5998
5998
|
/**
|
|
5999
5999
|
* Maximum number of suggestions to return
|
|
6000
6000
|
* @type {number}
|
|
@@ -6823,11 +6823,11 @@ export interface AnalyticsUpdateSuggestionConfigRequest {
|
|
|
6823
6823
|
*/
|
|
6824
6824
|
'facet_combination_limit'?: number;
|
|
6825
6825
|
/**
|
|
6826
|
-
*
|
|
6827
|
-
* @type {string}
|
|
6826
|
+
* Languages for duplicate removal
|
|
6827
|
+
* @type {Array<string>}
|
|
6828
6828
|
* @memberof AnalyticsUpdateSuggestionConfigRequest
|
|
6829
6829
|
*/
|
|
6830
|
-
'
|
|
6830
|
+
'languages'?: Array<string>;
|
|
6831
6831
|
/**
|
|
6832
6832
|
* Minimum hits for suggestions
|
|
6833
6833
|
* @type {number}
|
|
@@ -18493,6 +18493,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18493
18493
|
* @param {string} xStoreID Store ID
|
|
18494
18494
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
18495
18495
|
* @param {string} [endTime] End time in RFC3339 format
|
|
18496
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
18496
18497
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
18497
18498
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
18498
18499
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -18520,7 +18521,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18520
18521
|
* @param {*} [options] Override http request option.
|
|
18521
18522
|
* @throws {RequiredError}
|
|
18522
18523
|
*/
|
|
18523
|
-
adminAnalyticsStoreXStoreIDResultsGet: (xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18524
|
+
adminAnalyticsStoreXStoreIDResultsGet: (xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18524
18525
|
/**
|
|
18525
18526
|
* Retrieve analytics tags usage data and filtering capabilities. If no start_time/end_time is specified, returns all tags from the last 2 years.
|
|
18526
18527
|
* @summary Get Analytics Tags
|
|
@@ -18905,6 +18906,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
18905
18906
|
* @param {string} xStoreID Store ID
|
|
18906
18907
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
18907
18908
|
* @param {string} [endTime] End time in RFC3339 format
|
|
18909
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
18908
18910
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
18909
18911
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
18910
18912
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -18932,7 +18934,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
18932
18934
|
* @param {*} [options] Override http request option.
|
|
18933
18935
|
* @throws {RequiredError}
|
|
18934
18936
|
*/
|
|
18935
|
-
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response>>;
|
|
18937
|
+
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response>>;
|
|
18936
18938
|
/**
|
|
18937
18939
|
* Retrieve analytics tags usage data and filtering capabilities. If no start_time/end_time is specified, returns all tags from the last 2 years.
|
|
18938
18940
|
* @summary Get Analytics Tags
|
|
@@ -19317,6 +19319,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
19317
19319
|
* @param {string} xStoreID Store ID
|
|
19318
19320
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
19319
19321
|
* @param {string} [endTime] End time in RFC3339 format
|
|
19322
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
19320
19323
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
19321
19324
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
19322
19325
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -19344,7 +19347,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
19344
19347
|
* @param {*} [options] Override http request option.
|
|
19345
19348
|
* @throws {RequiredError}
|
|
19346
19349
|
*/
|
|
19347
|
-
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response>;
|
|
19350
|
+
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response>;
|
|
19348
19351
|
/**
|
|
19349
19352
|
* Retrieve analytics tags usage data and filtering capabilities. If no start_time/end_time is specified, returns all tags from the last 2 years.
|
|
19350
19353
|
* @summary Get Analytics Tags
|
|
@@ -19746,6 +19749,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
19746
19749
|
* @param {string} xStoreID Store ID
|
|
19747
19750
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
19748
19751
|
* @param {string} [endTime] End time in RFC3339 format
|
|
19752
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
19749
19753
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
19750
19754
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
19751
19755
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -19774,7 +19778,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
19774
19778
|
* @throws {RequiredError}
|
|
19775
19779
|
* @memberof AnalyticsApi
|
|
19776
19780
|
*/
|
|
19777
|
-
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response, any, {}>>;
|
|
19781
|
+
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response, any, {}>>;
|
|
19778
19782
|
/**
|
|
19779
19783
|
* Retrieve analytics tags usage data and filtering capabilities. If no start_time/end_time is specified, returns all tags from the last 2 years.
|
|
19780
19784
|
* @summary Get Analytics Tags
|
|
@@ -26473,8 +26477,8 @@ export declare const QuerySuggestionsManagementApiAxiosParamCreator: (configurat
|
|
|
26473
26477
|
*/
|
|
26474
26478
|
adminV1QuerySuggestionsXStoreIDStatsGet: (xStoreID: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26475
26479
|
/**
|
|
26476
|
-
*
|
|
26477
|
-
* @summary Get Query Suggestions Status
|
|
26480
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
26481
|
+
* @summary Get Query Suggestions Status
|
|
26478
26482
|
* @param {string} xStoreID Store ID
|
|
26479
26483
|
* @param {*} [options] Override http request option.
|
|
26480
26484
|
* @throws {RequiredError}
|
|
@@ -26748,13 +26752,13 @@ export declare const QuerySuggestionsManagementApiFp: (configuration?: Configura
|
|
|
26748
26752
|
*/
|
|
26749
26753
|
adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminV1QuerySuggestionsXStoreIDStatsGet200Response>>;
|
|
26750
26754
|
/**
|
|
26751
|
-
*
|
|
26752
|
-
* @summary Get Query Suggestions Status
|
|
26755
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
26756
|
+
* @summary Get Query Suggestions Status
|
|
26753
26757
|
* @param {string} xStoreID Store ID
|
|
26754
26758
|
* @param {*} [options] Override http request option.
|
|
26755
26759
|
* @throws {RequiredError}
|
|
26756
26760
|
*/
|
|
26757
|
-
adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26761
|
+
adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>>;
|
|
26758
26762
|
/**
|
|
26759
26763
|
* Delete a single query suggestion by its ID
|
|
26760
26764
|
* @summary Delete Query Suggestion by ID
|
|
@@ -27023,13 +27027,13 @@ export declare const QuerySuggestionsManagementApiFactory: (configuration?: Conf
|
|
|
27023
27027
|
*/
|
|
27024
27028
|
adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminV1QuerySuggestionsXStoreIDStatsGet200Response>;
|
|
27025
27029
|
/**
|
|
27026
|
-
*
|
|
27027
|
-
* @summary Get Query Suggestions Status
|
|
27030
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
27031
|
+
* @summary Get Query Suggestions Status
|
|
27028
27032
|
* @param {string} xStoreID Store ID
|
|
27029
27033
|
* @param {*} [options] Override http request option.
|
|
27030
27034
|
* @throws {RequiredError}
|
|
27031
27035
|
*/
|
|
27032
|
-
adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
27036
|
+
adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>;
|
|
27033
27037
|
/**
|
|
27034
27038
|
* Delete a single query suggestion by its ID
|
|
27035
27039
|
* @summary Delete Query Suggestion by ID
|
|
@@ -27321,14 +27325,14 @@ export declare class QuerySuggestionsManagementApi extends BaseAPI {
|
|
|
27321
27325
|
*/
|
|
27322
27326
|
adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminV1QuerySuggestionsXStoreIDStatsGet200Response, any, {}>>;
|
|
27323
27327
|
/**
|
|
27324
|
-
*
|
|
27325
|
-
* @summary Get Query Suggestions Status
|
|
27328
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
27329
|
+
* @summary Get Query Suggestions Status
|
|
27326
27330
|
* @param {string} xStoreID Store ID
|
|
27327
27331
|
* @param {*} [options] Override http request option.
|
|
27328
27332
|
* @throws {RequiredError}
|
|
27329
27333
|
* @memberof QuerySuggestionsManagementApi
|
|
27330
27334
|
*/
|
|
27331
|
-
adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
27335
|
+
adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response, any, {}>>;
|
|
27332
27336
|
/**
|
|
27333
27337
|
* Delete a single query suggestion by its ID
|
|
27334
27338
|
* @summary Delete Query Suggestion by ID
|
package/dist/api.js
CHANGED
|
@@ -2357,6 +2357,7 @@ const AnalyticsApiAxiosParamCreator = function (configuration) {
|
|
|
2357
2357
|
* @param {string} xStoreID Store ID
|
|
2358
2358
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
2359
2359
|
* @param {string} [endTime] End time in RFC3339 format
|
|
2360
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
2360
2361
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
2361
2362
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
2362
2363
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -2384,7 +2385,7 @@ const AnalyticsApiAxiosParamCreator = function (configuration) {
|
|
|
2384
2385
|
* @param {*} [options] Override http request option.
|
|
2385
2386
|
* @throws {RequiredError}
|
|
2386
2387
|
*/
|
|
2387
|
-
adminAnalyticsStoreXStoreIDResultsGet: (xStoreID_1, startTime_1, endTime_1, itemIds_1, analyticsTags_1, tagsMatchMode_1, tagsExclude_1, tagKeyFilter_1, tagValueFilter_1, compareMode_1, compareStartTime_1, compareEndTime_1, compareAnalyticsTags_1, compareTagsMatchMode_1, compareTagsExclude_1, compareTagKeyFilter_1, compareTagValueFilter_1, minImpressions_1, sortBy_1, sortOrder_1, sort_1, includeDocuments_1, includeWidget_1, limit_1, offset_1, page_1, pageSize_1, ...args_1) => __awaiter(this, [xStoreID_1, startTime_1, endTime_1, itemIds_1, analyticsTags_1, tagsMatchMode_1, tagsExclude_1, tagKeyFilter_1, tagValueFilter_1, compareMode_1, compareStartTime_1, compareEndTime_1, compareAnalyticsTags_1, compareTagsMatchMode_1, compareTagsExclude_1, compareTagKeyFilter_1, compareTagValueFilter_1, minImpressions_1, sortBy_1, sortOrder_1, sort_1, includeDocuments_1, includeWidget_1, limit_1, offset_1, page_1, pageSize_1, ...args_1], void 0, function* (xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options = {}) {
|
|
2388
|
+
adminAnalyticsStoreXStoreIDResultsGet: (xStoreID_1, startTime_1, endTime_1, search_1, itemIds_1, analyticsTags_1, tagsMatchMode_1, tagsExclude_1, tagKeyFilter_1, tagValueFilter_1, compareMode_1, compareStartTime_1, compareEndTime_1, compareAnalyticsTags_1, compareTagsMatchMode_1, compareTagsExclude_1, compareTagKeyFilter_1, compareTagValueFilter_1, minImpressions_1, sortBy_1, sortOrder_1, sort_1, includeDocuments_1, includeWidget_1, limit_1, offset_1, page_1, pageSize_1, ...args_1) => __awaiter(this, [xStoreID_1, startTime_1, endTime_1, search_1, itemIds_1, analyticsTags_1, tagsMatchMode_1, tagsExclude_1, tagKeyFilter_1, tagValueFilter_1, compareMode_1, compareStartTime_1, compareEndTime_1, compareAnalyticsTags_1, compareTagsMatchMode_1, compareTagsExclude_1, compareTagKeyFilter_1, compareTagValueFilter_1, minImpressions_1, sortBy_1, sortOrder_1, sort_1, includeDocuments_1, includeWidget_1, limit_1, offset_1, page_1, pageSize_1, ...args_1], void 0, function* (xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options = {}) {
|
|
2388
2389
|
// verify required parameter 'xStoreID' is not null or undefined
|
|
2389
2390
|
(0, common_1.assertParamExists)('adminAnalyticsStoreXStoreIDResultsGet', 'xStoreID', xStoreID);
|
|
2390
2391
|
const localVarPath = `/admin/analytics/store/{xStoreID}/results`
|
|
@@ -2406,6 +2407,9 @@ const AnalyticsApiAxiosParamCreator = function (configuration) {
|
|
|
2406
2407
|
if (endTime !== undefined) {
|
|
2407
2408
|
localVarQueryParameter['end_time'] = endTime;
|
|
2408
2409
|
}
|
|
2410
|
+
if (search !== undefined) {
|
|
2411
|
+
localVarQueryParameter['search'] = search;
|
|
2412
|
+
}
|
|
2409
2413
|
if (itemIds !== undefined) {
|
|
2410
2414
|
localVarQueryParameter['item_ids'] = itemIds;
|
|
2411
2415
|
}
|
|
@@ -3102,6 +3106,7 @@ const AnalyticsApiFp = function (configuration) {
|
|
|
3102
3106
|
* @param {string} xStoreID Store ID
|
|
3103
3107
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
3104
3108
|
* @param {string} [endTime] End time in RFC3339 format
|
|
3109
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
3105
3110
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
3106
3111
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
3107
3112
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -3129,10 +3134,10 @@ const AnalyticsApiFp = function (configuration) {
|
|
|
3129
3134
|
* @param {*} [options] Override http request option.
|
|
3130
3135
|
* @throws {RequiredError}
|
|
3131
3136
|
*/
|
|
3132
|
-
adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options) {
|
|
3137
|
+
adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options) {
|
|
3133
3138
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3134
3139
|
var _a, _b, _c;
|
|
3135
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options);
|
|
3140
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options);
|
|
3136
3141
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
3137
3142
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['AnalyticsApi.adminAnalyticsStoreXStoreIDResultsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
3138
3143
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -3572,6 +3577,7 @@ const AnalyticsApiFactory = function (configuration, basePath, axios) {
|
|
|
3572
3577
|
* @param {string} xStoreID Store ID
|
|
3573
3578
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
3574
3579
|
* @param {string} [endTime] End time in RFC3339 format
|
|
3580
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
3575
3581
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
3576
3582
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
3577
3583
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -3599,8 +3605,8 @@ const AnalyticsApiFactory = function (configuration, basePath, axios) {
|
|
|
3599
3605
|
* @param {*} [options] Override http request option.
|
|
3600
3606
|
* @throws {RequiredError}
|
|
3601
3607
|
*/
|
|
3602
|
-
adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options) {
|
|
3603
|
-
return localVarFp.adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options).then((request) => request(axios, basePath));
|
|
3608
|
+
adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options) {
|
|
3609
|
+
return localVarFp.adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options).then((request) => request(axios, basePath));
|
|
3604
3610
|
},
|
|
3605
3611
|
/**
|
|
3606
3612
|
* Retrieve analytics tags usage data and filtering capabilities. If no start_time/end_time is specified, returns all tags from the last 2 years.
|
|
@@ -4039,6 +4045,7 @@ class AnalyticsApi extends base_1.BaseAPI {
|
|
|
4039
4045
|
* @param {string} xStoreID Store ID
|
|
4040
4046
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
4041
4047
|
* @param {string} [endTime] End time in RFC3339 format
|
|
4048
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
4042
4049
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
4043
4050
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
4044
4051
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -4067,8 +4074,8 @@ class AnalyticsApi extends base_1.BaseAPI {
|
|
|
4067
4074
|
* @throws {RequiredError}
|
|
4068
4075
|
* @memberof AnalyticsApi
|
|
4069
4076
|
*/
|
|
4070
|
-
adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options) {
|
|
4071
|
-
return (0, exports.AnalyticsApiFp)(this.configuration).adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
4077
|
+
adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options) {
|
|
4078
|
+
return (0, exports.AnalyticsApiFp)(this.configuration).adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
4072
4079
|
}
|
|
4073
4080
|
/**
|
|
4074
4081
|
* Retrieve analytics tags usage data and filtering capabilities. If no start_time/end_time is specified, returns all tags from the last 2 years.
|
|
@@ -17001,8 +17008,8 @@ const QuerySuggestionsManagementApiAxiosParamCreator = function (configuration)
|
|
|
17001
17008
|
};
|
|
17002
17009
|
}),
|
|
17003
17010
|
/**
|
|
17004
|
-
*
|
|
17005
|
-
* @summary Get Query Suggestions Status
|
|
17011
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
17012
|
+
* @summary Get Query Suggestions Status
|
|
17006
17013
|
* @param {string} xStoreID Store ID
|
|
17007
17014
|
* @param {*} [options] Override http request option.
|
|
17008
17015
|
* @throws {RequiredError}
|
|
@@ -17666,8 +17673,8 @@ const QuerySuggestionsManagementApiFp = function (configuration) {
|
|
|
17666
17673
|
});
|
|
17667
17674
|
},
|
|
17668
17675
|
/**
|
|
17669
|
-
*
|
|
17670
|
-
* @summary Get Query Suggestions Status
|
|
17676
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
17677
|
+
* @summary Get Query Suggestions Status
|
|
17671
17678
|
* @param {string} xStoreID Store ID
|
|
17672
17679
|
* @param {*} [options] Override http request option.
|
|
17673
17680
|
* @throws {RequiredError}
|
|
@@ -18051,8 +18058,8 @@ const QuerySuggestionsManagementApiFactory = function (configuration, basePath,
|
|
|
18051
18058
|
return localVarFp.adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID, options).then((request) => request(axios, basePath));
|
|
18052
18059
|
},
|
|
18053
18060
|
/**
|
|
18054
|
-
*
|
|
18055
|
-
* @summary Get Query Suggestions Status
|
|
18061
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
18062
|
+
* @summary Get Query Suggestions Status
|
|
18056
18063
|
* @param {string} xStoreID Store ID
|
|
18057
18064
|
* @param {*} [options] Override http request option.
|
|
18058
18065
|
* @throws {RequiredError}
|
|
@@ -18409,8 +18416,8 @@ class QuerySuggestionsManagementApi extends base_1.BaseAPI {
|
|
|
18409
18416
|
return (0, exports.QuerySuggestionsManagementApiFp)(this.configuration).adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID, options).then((request) => request(this.axios, this.basePath));
|
|
18410
18417
|
}
|
|
18411
18418
|
/**
|
|
18412
|
-
*
|
|
18413
|
-
* @summary Get Query Suggestions Status
|
|
18419
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
18420
|
+
* @summary Get Query Suggestions Status
|
|
18414
18421
|
* @param {string} xStoreID Store ID
|
|
18415
18422
|
* @param {*} [options] Override http request option.
|
|
18416
18423
|
* @throws {RequiredError}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -5990,11 +5990,11 @@ export interface AnalyticsQuerySuggestionConfig {
|
|
|
5990
5990
|
*/
|
|
5991
5991
|
'facet_combination_limit'?: number;
|
|
5992
5992
|
/**
|
|
5993
|
-
*
|
|
5994
|
-
* @type {string}
|
|
5993
|
+
* Languages for duplicate removal (singular/plural)
|
|
5994
|
+
* @type {Array<string>}
|
|
5995
5995
|
* @memberof AnalyticsQuerySuggestionConfig
|
|
5996
5996
|
*/
|
|
5997
|
-
'
|
|
5997
|
+
'languages'?: Array<string>;
|
|
5998
5998
|
/**
|
|
5999
5999
|
* Maximum number of suggestions to return
|
|
6000
6000
|
* @type {number}
|
|
@@ -6823,11 +6823,11 @@ export interface AnalyticsUpdateSuggestionConfigRequest {
|
|
|
6823
6823
|
*/
|
|
6824
6824
|
'facet_combination_limit'?: number;
|
|
6825
6825
|
/**
|
|
6826
|
-
*
|
|
6827
|
-
* @type {string}
|
|
6826
|
+
* Languages for duplicate removal
|
|
6827
|
+
* @type {Array<string>}
|
|
6828
6828
|
* @memberof AnalyticsUpdateSuggestionConfigRequest
|
|
6829
6829
|
*/
|
|
6830
|
-
'
|
|
6830
|
+
'languages'?: Array<string>;
|
|
6831
6831
|
/**
|
|
6832
6832
|
* Minimum hits for suggestions
|
|
6833
6833
|
* @type {number}
|
|
@@ -18493,6 +18493,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18493
18493
|
* @param {string} xStoreID Store ID
|
|
18494
18494
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
18495
18495
|
* @param {string} [endTime] End time in RFC3339 format
|
|
18496
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
18496
18497
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
18497
18498
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
18498
18499
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -18520,7 +18521,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18520
18521
|
* @param {*} [options] Override http request option.
|
|
18521
18522
|
* @throws {RequiredError}
|
|
18522
18523
|
*/
|
|
18523
|
-
adminAnalyticsStoreXStoreIDResultsGet: (xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18524
|
+
adminAnalyticsStoreXStoreIDResultsGet: (xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18524
18525
|
/**
|
|
18525
18526
|
* Retrieve analytics tags usage data and filtering capabilities. If no start_time/end_time is specified, returns all tags from the last 2 years.
|
|
18526
18527
|
* @summary Get Analytics Tags
|
|
@@ -18905,6 +18906,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
18905
18906
|
* @param {string} xStoreID Store ID
|
|
18906
18907
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
18907
18908
|
* @param {string} [endTime] End time in RFC3339 format
|
|
18909
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
18908
18910
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
18909
18911
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
18910
18912
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -18932,7 +18934,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
18932
18934
|
* @param {*} [options] Override http request option.
|
|
18933
18935
|
* @throws {RequiredError}
|
|
18934
18936
|
*/
|
|
18935
|
-
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response>>;
|
|
18937
|
+
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response>>;
|
|
18936
18938
|
/**
|
|
18937
18939
|
* Retrieve analytics tags usage data and filtering capabilities. If no start_time/end_time is specified, returns all tags from the last 2 years.
|
|
18938
18940
|
* @summary Get Analytics Tags
|
|
@@ -19317,6 +19319,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
19317
19319
|
* @param {string} xStoreID Store ID
|
|
19318
19320
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
19319
19321
|
* @param {string} [endTime] End time in RFC3339 format
|
|
19322
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
19320
19323
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
19321
19324
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
19322
19325
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -19344,7 +19347,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
19344
19347
|
* @param {*} [options] Override http request option.
|
|
19345
19348
|
* @throws {RequiredError}
|
|
19346
19349
|
*/
|
|
19347
|
-
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response>;
|
|
19350
|
+
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response>;
|
|
19348
19351
|
/**
|
|
19349
19352
|
* Retrieve analytics tags usage data and filtering capabilities. If no start_time/end_time is specified, returns all tags from the last 2 years.
|
|
19350
19353
|
* @summary Get Analytics Tags
|
|
@@ -19746,6 +19749,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
19746
19749
|
* @param {string} xStoreID Store ID
|
|
19747
19750
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
19748
19751
|
* @param {string} [endTime] End time in RFC3339 format
|
|
19752
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
19749
19753
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
19750
19754
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
19751
19755
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -19774,7 +19778,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
19774
19778
|
* @throws {RequiredError}
|
|
19775
19779
|
* @memberof AnalyticsApi
|
|
19776
19780
|
*/
|
|
19777
|
-
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response, any, {}>>;
|
|
19781
|
+
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response, any, {}>>;
|
|
19778
19782
|
/**
|
|
19779
19783
|
* Retrieve analytics tags usage data and filtering capabilities. If no start_time/end_time is specified, returns all tags from the last 2 years.
|
|
19780
19784
|
* @summary Get Analytics Tags
|
|
@@ -26473,8 +26477,8 @@ export declare const QuerySuggestionsManagementApiAxiosParamCreator: (configurat
|
|
|
26473
26477
|
*/
|
|
26474
26478
|
adminV1QuerySuggestionsXStoreIDStatsGet: (xStoreID: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26475
26479
|
/**
|
|
26476
|
-
*
|
|
26477
|
-
* @summary Get Query Suggestions Status
|
|
26480
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
26481
|
+
* @summary Get Query Suggestions Status
|
|
26478
26482
|
* @param {string} xStoreID Store ID
|
|
26479
26483
|
* @param {*} [options] Override http request option.
|
|
26480
26484
|
* @throws {RequiredError}
|
|
@@ -26748,13 +26752,13 @@ export declare const QuerySuggestionsManagementApiFp: (configuration?: Configura
|
|
|
26748
26752
|
*/
|
|
26749
26753
|
adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminV1QuerySuggestionsXStoreIDStatsGet200Response>>;
|
|
26750
26754
|
/**
|
|
26751
|
-
*
|
|
26752
|
-
* @summary Get Query Suggestions Status
|
|
26755
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
26756
|
+
* @summary Get Query Suggestions Status
|
|
26753
26757
|
* @param {string} xStoreID Store ID
|
|
26754
26758
|
* @param {*} [options] Override http request option.
|
|
26755
26759
|
* @throws {RequiredError}
|
|
26756
26760
|
*/
|
|
26757
|
-
adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26761
|
+
adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>>;
|
|
26758
26762
|
/**
|
|
26759
26763
|
* Delete a single query suggestion by its ID
|
|
26760
26764
|
* @summary Delete Query Suggestion by ID
|
|
@@ -27023,13 +27027,13 @@ export declare const QuerySuggestionsManagementApiFactory: (configuration?: Conf
|
|
|
27023
27027
|
*/
|
|
27024
27028
|
adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminV1QuerySuggestionsXStoreIDStatsGet200Response>;
|
|
27025
27029
|
/**
|
|
27026
|
-
*
|
|
27027
|
-
* @summary Get Query Suggestions Status
|
|
27030
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
27031
|
+
* @summary Get Query Suggestions Status
|
|
27028
27032
|
* @param {string} xStoreID Store ID
|
|
27029
27033
|
* @param {*} [options] Override http request option.
|
|
27030
27034
|
* @throws {RequiredError}
|
|
27031
27035
|
*/
|
|
27032
|
-
adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
27036
|
+
adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>;
|
|
27033
27037
|
/**
|
|
27034
27038
|
* Delete a single query suggestion by its ID
|
|
27035
27039
|
* @summary Delete Query Suggestion by ID
|
|
@@ -27321,14 +27325,14 @@ export declare class QuerySuggestionsManagementApi extends BaseAPI {
|
|
|
27321
27325
|
*/
|
|
27322
27326
|
adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminV1QuerySuggestionsXStoreIDStatsGet200Response, any, {}>>;
|
|
27323
27327
|
/**
|
|
27324
|
-
*
|
|
27325
|
-
* @summary Get Query Suggestions Status
|
|
27328
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
27329
|
+
* @summary Get Query Suggestions Status
|
|
27326
27330
|
* @param {string} xStoreID Store ID
|
|
27327
27331
|
* @param {*} [options] Override http request option.
|
|
27328
27332
|
* @throws {RequiredError}
|
|
27329
27333
|
* @memberof QuerySuggestionsManagementApi
|
|
27330
27334
|
*/
|
|
27331
|
-
adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
27335
|
+
adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response, any, {}>>;
|
|
27332
27336
|
/**
|
|
27333
27337
|
* Delete a single query suggestion by its ID
|
|
27334
27338
|
* @summary Delete Query Suggestion by ID
|
package/dist/esm/api.js
CHANGED
|
@@ -2342,6 +2342,7 @@ export const AnalyticsApiAxiosParamCreator = function (configuration) {
|
|
|
2342
2342
|
* @param {string} xStoreID Store ID
|
|
2343
2343
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
2344
2344
|
* @param {string} [endTime] End time in RFC3339 format
|
|
2345
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
2345
2346
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
2346
2347
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
2347
2348
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -2369,7 +2370,7 @@ export const AnalyticsApiAxiosParamCreator = function (configuration) {
|
|
|
2369
2370
|
* @param {*} [options] Override http request option.
|
|
2370
2371
|
* @throws {RequiredError}
|
|
2371
2372
|
*/
|
|
2372
|
-
adminAnalyticsStoreXStoreIDResultsGet: (xStoreID_1, startTime_1, endTime_1, itemIds_1, analyticsTags_1, tagsMatchMode_1, tagsExclude_1, tagKeyFilter_1, tagValueFilter_1, compareMode_1, compareStartTime_1, compareEndTime_1, compareAnalyticsTags_1, compareTagsMatchMode_1, compareTagsExclude_1, compareTagKeyFilter_1, compareTagValueFilter_1, minImpressions_1, sortBy_1, sortOrder_1, sort_1, includeDocuments_1, includeWidget_1, limit_1, offset_1, page_1, pageSize_1, ...args_1) => __awaiter(this, [xStoreID_1, startTime_1, endTime_1, itemIds_1, analyticsTags_1, tagsMatchMode_1, tagsExclude_1, tagKeyFilter_1, tagValueFilter_1, compareMode_1, compareStartTime_1, compareEndTime_1, compareAnalyticsTags_1, compareTagsMatchMode_1, compareTagsExclude_1, compareTagKeyFilter_1, compareTagValueFilter_1, minImpressions_1, sortBy_1, sortOrder_1, sort_1, includeDocuments_1, includeWidget_1, limit_1, offset_1, page_1, pageSize_1, ...args_1], void 0, function* (xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options = {}) {
|
|
2373
|
+
adminAnalyticsStoreXStoreIDResultsGet: (xStoreID_1, startTime_1, endTime_1, search_1, itemIds_1, analyticsTags_1, tagsMatchMode_1, tagsExclude_1, tagKeyFilter_1, tagValueFilter_1, compareMode_1, compareStartTime_1, compareEndTime_1, compareAnalyticsTags_1, compareTagsMatchMode_1, compareTagsExclude_1, compareTagKeyFilter_1, compareTagValueFilter_1, minImpressions_1, sortBy_1, sortOrder_1, sort_1, includeDocuments_1, includeWidget_1, limit_1, offset_1, page_1, pageSize_1, ...args_1) => __awaiter(this, [xStoreID_1, startTime_1, endTime_1, search_1, itemIds_1, analyticsTags_1, tagsMatchMode_1, tagsExclude_1, tagKeyFilter_1, tagValueFilter_1, compareMode_1, compareStartTime_1, compareEndTime_1, compareAnalyticsTags_1, compareTagsMatchMode_1, compareTagsExclude_1, compareTagKeyFilter_1, compareTagValueFilter_1, minImpressions_1, sortBy_1, sortOrder_1, sort_1, includeDocuments_1, includeWidget_1, limit_1, offset_1, page_1, pageSize_1, ...args_1], void 0, function* (xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options = {}) {
|
|
2373
2374
|
// verify required parameter 'xStoreID' is not null or undefined
|
|
2374
2375
|
assertParamExists('adminAnalyticsStoreXStoreIDResultsGet', 'xStoreID', xStoreID);
|
|
2375
2376
|
const localVarPath = `/admin/analytics/store/{xStoreID}/results`
|
|
@@ -2391,6 +2392,9 @@ export const AnalyticsApiAxiosParamCreator = function (configuration) {
|
|
|
2391
2392
|
if (endTime !== undefined) {
|
|
2392
2393
|
localVarQueryParameter['end_time'] = endTime;
|
|
2393
2394
|
}
|
|
2395
|
+
if (search !== undefined) {
|
|
2396
|
+
localVarQueryParameter['search'] = search;
|
|
2397
|
+
}
|
|
2394
2398
|
if (itemIds !== undefined) {
|
|
2395
2399
|
localVarQueryParameter['item_ids'] = itemIds;
|
|
2396
2400
|
}
|
|
@@ -3086,6 +3090,7 @@ export const AnalyticsApiFp = function (configuration) {
|
|
|
3086
3090
|
* @param {string} xStoreID Store ID
|
|
3087
3091
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
3088
3092
|
* @param {string} [endTime] End time in RFC3339 format
|
|
3093
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
3089
3094
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
3090
3095
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
3091
3096
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -3113,10 +3118,10 @@ export const AnalyticsApiFp = function (configuration) {
|
|
|
3113
3118
|
* @param {*} [options] Override http request option.
|
|
3114
3119
|
* @throws {RequiredError}
|
|
3115
3120
|
*/
|
|
3116
|
-
adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options) {
|
|
3121
|
+
adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options) {
|
|
3117
3122
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3118
3123
|
var _a, _b, _c;
|
|
3119
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options);
|
|
3124
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options);
|
|
3120
3125
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
3121
3126
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AnalyticsApi.adminAnalyticsStoreXStoreIDResultsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
3122
3127
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -3555,6 +3560,7 @@ export const AnalyticsApiFactory = function (configuration, basePath, axios) {
|
|
|
3555
3560
|
* @param {string} xStoreID Store ID
|
|
3556
3561
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
3557
3562
|
* @param {string} [endTime] End time in RFC3339 format
|
|
3563
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
3558
3564
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
3559
3565
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
3560
3566
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -3582,8 +3588,8 @@ export const AnalyticsApiFactory = function (configuration, basePath, axios) {
|
|
|
3582
3588
|
* @param {*} [options] Override http request option.
|
|
3583
3589
|
* @throws {RequiredError}
|
|
3584
3590
|
*/
|
|
3585
|
-
adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options) {
|
|
3586
|
-
return localVarFp.adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options).then((request) => request(axios, basePath));
|
|
3591
|
+
adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options) {
|
|
3592
|
+
return localVarFp.adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options).then((request) => request(axios, basePath));
|
|
3587
3593
|
},
|
|
3588
3594
|
/**
|
|
3589
3595
|
* Retrieve analytics tags usage data and filtering capabilities. If no start_time/end_time is specified, returns all tags from the last 2 years.
|
|
@@ -4021,6 +4027,7 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
4021
4027
|
* @param {string} xStoreID Store ID
|
|
4022
4028
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
4023
4029
|
* @param {string} [endTime] End time in RFC3339 format
|
|
4030
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
4024
4031
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
4025
4032
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
4026
4033
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -4049,8 +4056,8 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
4049
4056
|
* @throws {RequiredError}
|
|
4050
4057
|
* @memberof AnalyticsApi
|
|
4051
4058
|
*/
|
|
4052
|
-
adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options) {
|
|
4053
|
-
return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
4059
|
+
adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options) {
|
|
4060
|
+
return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
4054
4061
|
}
|
|
4055
4062
|
/**
|
|
4056
4063
|
* Retrieve analytics tags usage data and filtering capabilities. If no start_time/end_time is specified, returns all tags from the last 2 years.
|
|
@@ -16894,8 +16901,8 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
|
|
|
16894
16901
|
};
|
|
16895
16902
|
}),
|
|
16896
16903
|
/**
|
|
16897
|
-
*
|
|
16898
|
-
* @summary Get Query Suggestions Status
|
|
16904
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
16905
|
+
* @summary Get Query Suggestions Status
|
|
16899
16906
|
* @param {string} xStoreID Store ID
|
|
16900
16907
|
* @param {*} [options] Override http request option.
|
|
16901
16908
|
* @throws {RequiredError}
|
|
@@ -17558,8 +17565,8 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
|
|
|
17558
17565
|
});
|
|
17559
17566
|
},
|
|
17560
17567
|
/**
|
|
17561
|
-
*
|
|
17562
|
-
* @summary Get Query Suggestions Status
|
|
17568
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
17569
|
+
* @summary Get Query Suggestions Status
|
|
17563
17570
|
* @param {string} xStoreID Store ID
|
|
17564
17571
|
* @param {*} [options] Override http request option.
|
|
17565
17572
|
* @throws {RequiredError}
|
|
@@ -17942,8 +17949,8 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
|
|
|
17942
17949
|
return localVarFp.adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID, options).then((request) => request(axios, basePath));
|
|
17943
17950
|
},
|
|
17944
17951
|
/**
|
|
17945
|
-
*
|
|
17946
|
-
* @summary Get Query Suggestions Status
|
|
17952
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
17953
|
+
* @summary Get Query Suggestions Status
|
|
17947
17954
|
* @param {string} xStoreID Store ID
|
|
17948
17955
|
* @param {*} [options] Override http request option.
|
|
17949
17956
|
* @throws {RequiredError}
|
|
@@ -18299,8 +18306,8 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
|
|
|
18299
18306
|
return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID, options).then((request) => request(this.axios, this.basePath));
|
|
18300
18307
|
}
|
|
18301
18308
|
/**
|
|
18302
|
-
*
|
|
18303
|
-
* @summary Get Query Suggestions Status
|
|
18309
|
+
* Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
|
|
18310
|
+
* @summary Get Query Suggestions Status
|
|
18304
18311
|
* @param {string} xStoreID Store ID
|
|
18305
18312
|
* @param {*} [options] Override http request option.
|
|
18306
18313
|
* @throws {RequiredError}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|