@seekora-ai/admin-api 1.0.48 → 1.0.49
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 +2 -2
- package/api.ts +163 -25
- package/dist/api.d.ts +128 -22
- package/dist/api.js +77 -14
- package/dist/esm/api.d.ts +128 -22
- package/dist/esm/api.js +74 -11
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.49.tgz +0 -0
- package/seekora-ai-admin-api-1.0.48.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.49
|
|
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.49 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -1068,11 +1068,11 @@ export interface AnalyticsExtendedKPIResponse {
|
|
|
1068
1068
|
*/
|
|
1069
1069
|
'compare_summary'?: AnalyticsKPIMetrics;
|
|
1070
1070
|
/**
|
|
1071
|
-
*
|
|
1072
|
-
* @type {
|
|
1071
|
+
* Can be []KPIPointExtended or []ComparisonMetrics
|
|
1072
|
+
* @type {object}
|
|
1073
1073
|
* @memberof AnalyticsExtendedKPIResponse
|
|
1074
1074
|
*/
|
|
1075
|
-
'data'?:
|
|
1075
|
+
'data'?: object;
|
|
1076
1076
|
/**
|
|
1077
1077
|
*
|
|
1078
1078
|
* @type {string}
|
|
@@ -1140,12 +1140,24 @@ export interface AnalyticsFilterAnalyticsResponse {
|
|
|
1140
1140
|
* @memberof AnalyticsFilterAnalyticsResponse
|
|
1141
1141
|
*/
|
|
1142
1142
|
'filter_key'?: string;
|
|
1143
|
+
/**
|
|
1144
|
+
*
|
|
1145
|
+
* @type {number}
|
|
1146
|
+
* @memberof AnalyticsFilterAnalyticsResponse
|
|
1147
|
+
*/
|
|
1148
|
+
'limit'?: number;
|
|
1143
1149
|
/**
|
|
1144
1150
|
*
|
|
1145
1151
|
* @type {string}
|
|
1146
1152
|
* @memberof AnalyticsFilterAnalyticsResponse
|
|
1147
1153
|
*/
|
|
1148
1154
|
'org_id'?: string;
|
|
1155
|
+
/**
|
|
1156
|
+
*
|
|
1157
|
+
* @type {number}
|
|
1158
|
+
* @memberof AnalyticsFilterAnalyticsResponse
|
|
1159
|
+
*/
|
|
1160
|
+
'page'?: number;
|
|
1149
1161
|
/**
|
|
1150
1162
|
*
|
|
1151
1163
|
* @type {string}
|
|
@@ -1176,6 +1188,12 @@ export interface AnalyticsFilterAnalyticsResponse {
|
|
|
1176
1188
|
* @memberof AnalyticsFilterAnalyticsResponse
|
|
1177
1189
|
*/
|
|
1178
1190
|
'store_id'?: string;
|
|
1191
|
+
/**
|
|
1192
|
+
*
|
|
1193
|
+
* @type {number}
|
|
1194
|
+
* @memberof AnalyticsFilterAnalyticsResponse
|
|
1195
|
+
*/
|
|
1196
|
+
'total'?: number;
|
|
1179
1197
|
}
|
|
1180
1198
|
/**
|
|
1181
1199
|
*
|
|
@@ -1411,12 +1429,24 @@ export interface AnalyticsFilterTrendsResponse {
|
|
|
1411
1429
|
* @memberof AnalyticsFilterTrendsResponse
|
|
1412
1430
|
*/
|
|
1413
1431
|
'granularity'?: string;
|
|
1432
|
+
/**
|
|
1433
|
+
*
|
|
1434
|
+
* @type {number}
|
|
1435
|
+
* @memberof AnalyticsFilterTrendsResponse
|
|
1436
|
+
*/
|
|
1437
|
+
'limit'?: number;
|
|
1414
1438
|
/**
|
|
1415
1439
|
*
|
|
1416
1440
|
* @type {string}
|
|
1417
1441
|
* @memberof AnalyticsFilterTrendsResponse
|
|
1418
1442
|
*/
|
|
1419
1443
|
'org_id'?: string;
|
|
1444
|
+
/**
|
|
1445
|
+
*
|
|
1446
|
+
* @type {number}
|
|
1447
|
+
* @memberof AnalyticsFilterTrendsResponse
|
|
1448
|
+
*/
|
|
1449
|
+
'page'?: number;
|
|
1420
1450
|
/**
|
|
1421
1451
|
*
|
|
1422
1452
|
* @type {string}
|
|
@@ -1447,6 +1477,12 @@ export interface AnalyticsFilterTrendsResponse {
|
|
|
1447
1477
|
* @memberof AnalyticsFilterTrendsResponse
|
|
1448
1478
|
*/
|
|
1449
1479
|
'top_filters'?: number;
|
|
1480
|
+
/**
|
|
1481
|
+
*
|
|
1482
|
+
* @type {number}
|
|
1483
|
+
* @memberof AnalyticsFilterTrendsResponse
|
|
1484
|
+
*/
|
|
1485
|
+
'total'?: number;
|
|
1450
1486
|
/**
|
|
1451
1487
|
*
|
|
1452
1488
|
* @type {{ [key: string]: Array<AnalyticsTimeSeriesPoint>; }}
|
|
@@ -6002,11 +6038,17 @@ export interface DataTypesErrorMetaResponse {
|
|
|
6002
6038
|
*/
|
|
6003
6039
|
export interface DataTypesEventPayload {
|
|
6004
6040
|
/**
|
|
6005
|
-
*
|
|
6041
|
+
* Journey Tracking & Analytics
|
|
6006
6042
|
* @type {Array<string>}
|
|
6007
6043
|
* @memberof DataTypesEventPayload
|
|
6008
6044
|
*/
|
|
6009
6045
|
'analytics_tags'?: Array<string>;
|
|
6046
|
+
/**
|
|
6047
|
+
* Anonymous user identifier
|
|
6048
|
+
* @type {string}
|
|
6049
|
+
* @memberof DataTypesEventPayload
|
|
6050
|
+
*/
|
|
6051
|
+
'anon_id'?: string;
|
|
6010
6052
|
/**
|
|
6011
6053
|
*
|
|
6012
6054
|
* @type {string}
|
|
@@ -6014,13 +6056,13 @@ export interface DataTypesEventPayload {
|
|
|
6014
6056
|
*/
|
|
6015
6057
|
'city'?: string;
|
|
6016
6058
|
/**
|
|
6017
|
-
*
|
|
6059
|
+
* Click/Interaction Event Fields
|
|
6018
6060
|
* @type {string}
|
|
6019
6061
|
* @memberof DataTypesEventPayload
|
|
6020
6062
|
*/
|
|
6021
6063
|
'clicked_product_id'?: string;
|
|
6022
6064
|
/**
|
|
6023
|
-
* Geo data fields for direct submission
|
|
6065
|
+
* Enhanced Geo data fields for direct submission
|
|
6024
6066
|
* @type {string}
|
|
6025
6067
|
* @memberof DataTypesEventPayload
|
|
6026
6068
|
*/
|
|
@@ -6031,6 +6073,12 @@ export interface DataTypesEventPayload {
|
|
|
6031
6073
|
* @memberof DataTypesEventPayload
|
|
6032
6074
|
*/
|
|
6033
6075
|
'country_code'?: string;
|
|
6076
|
+
/**
|
|
6077
|
+
* Currency for value
|
|
6078
|
+
* @type {string}
|
|
6079
|
+
* @memberof DataTypesEventPayload
|
|
6080
|
+
*/
|
|
6081
|
+
'currency'?: string;
|
|
6034
6082
|
/**
|
|
6035
6083
|
*
|
|
6036
6084
|
* @type {string}
|
|
@@ -6038,7 +6086,7 @@ export interface DataTypesEventPayload {
|
|
|
6038
6086
|
*/
|
|
6039
6087
|
'device_type'?: string;
|
|
6040
6088
|
/**
|
|
6041
|
-
*
|
|
6089
|
+
* Core Event Information
|
|
6042
6090
|
* @type {string}
|
|
6043
6091
|
* @memberof DataTypesEventPayload
|
|
6044
6092
|
*/
|
|
@@ -6050,25 +6098,25 @@ export interface DataTypesEventPayload {
|
|
|
6050
6098
|
*/
|
|
6051
6099
|
'event_name'?: string;
|
|
6052
6100
|
/**
|
|
6053
|
-
*
|
|
6101
|
+
* Device & Location Context
|
|
6054
6102
|
* @type {string}
|
|
6055
6103
|
* @memberof DataTypesEventPayload
|
|
6056
6104
|
*/
|
|
6057
6105
|
'ip'?: string;
|
|
6058
6106
|
/**
|
|
6059
|
-
*
|
|
6107
|
+
* Performance
|
|
6060
6108
|
* @type {number}
|
|
6061
6109
|
* @memberof DataTypesEventPayload
|
|
6062
6110
|
*/
|
|
6063
6111
|
'latency_ms'?: number;
|
|
6064
6112
|
/**
|
|
6065
|
-
*
|
|
6113
|
+
* Legacy field
|
|
6066
6114
|
* @type {string}
|
|
6067
6115
|
* @memberof DataTypesEventPayload
|
|
6068
6116
|
*/
|
|
6069
6117
|
'location'?: string;
|
|
6070
6118
|
/**
|
|
6071
|
-
*
|
|
6119
|
+
* Flexible metadata including search_id, position, etc.
|
|
6072
6120
|
* @type {{ [key: string]: any; }}
|
|
6073
6121
|
* @memberof DataTypesEventPayload
|
|
6074
6122
|
*/
|
|
@@ -6080,7 +6128,13 @@ export interface DataTypesEventPayload {
|
|
|
6080
6128
|
*/
|
|
6081
6129
|
'org_id'?: string;
|
|
6082
6130
|
/**
|
|
6083
|
-
*
|
|
6131
|
+
* web, ios, android
|
|
6132
|
+
* @type {string}
|
|
6133
|
+
* @memberof DataTypesEventPayload
|
|
6134
|
+
*/
|
|
6135
|
+
'platform'?: string;
|
|
6136
|
+
/**
|
|
6137
|
+
* Search Event Fields
|
|
6084
6138
|
* @type {string}
|
|
6085
6139
|
* @memberof DataTypesEventPayload
|
|
6086
6140
|
*/
|
|
@@ -6098,7 +6152,13 @@ export interface DataTypesEventPayload {
|
|
|
6098
6152
|
*/
|
|
6099
6153
|
'results_count'?: number;
|
|
6100
6154
|
/**
|
|
6101
|
-
*
|
|
6155
|
+
* Session identifier for journey tracking
|
|
6156
|
+
* @type {string}
|
|
6157
|
+
* @memberof DataTypesEventPayload
|
|
6158
|
+
*/
|
|
6159
|
+
'session_id'?: string;
|
|
6160
|
+
/**
|
|
6161
|
+
* Organization Context
|
|
6102
6162
|
* @type {string}
|
|
6103
6163
|
* @memberof DataTypesEventPayload
|
|
6104
6164
|
*/
|
|
@@ -6110,11 +6170,17 @@ export interface DataTypesEventPayload {
|
|
|
6110
6170
|
*/
|
|
6111
6171
|
'timestamp'?: string;
|
|
6112
6172
|
/**
|
|
6113
|
-
*
|
|
6173
|
+
* User Context
|
|
6114
6174
|
* @type {string}
|
|
6115
6175
|
* @memberof DataTypesEventPayload
|
|
6116
6176
|
*/
|
|
6117
6177
|
'user_id'?: string;
|
|
6178
|
+
/**
|
|
6179
|
+
* Business Context
|
|
6180
|
+
* @type {number}
|
|
6181
|
+
* @memberof DataTypesEventPayload
|
|
6182
|
+
*/
|
|
6183
|
+
'value'?: number;
|
|
6118
6184
|
}
|
|
6119
6185
|
/**
|
|
6120
6186
|
*
|
|
@@ -14680,12 +14746,20 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
14680
14746
|
};
|
|
14681
14747
|
},
|
|
14682
14748
|
/**
|
|
14683
|
-
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with independent pagination for popular results and filters
|
|
14749
|
+
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with deep comparison mode support and independent pagination for popular results and filters
|
|
14684
14750
|
* @summary Get Query Insights
|
|
14685
14751
|
* @param {string} xStoreID Store ID
|
|
14686
14752
|
* @param {string} query Search query to analyze
|
|
14687
14753
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
14688
14754
|
* @param {string} [endTime] End time in RFC3339 format
|
|
14755
|
+
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
14756
|
+
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
14757
|
+
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
14758
|
+
* @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
|
|
14759
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
|
|
14760
|
+
* @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
|
|
14761
|
+
* @param {string} [compareTagKeyFilter] Tag key filter for comparison period
|
|
14762
|
+
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
14689
14763
|
* @param {number} [resultsPage] Page number for popular results pagination
|
|
14690
14764
|
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
14691
14765
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
@@ -14694,7 +14768,7 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
14694
14768
|
* @param {*} [options] Override http request option.
|
|
14695
14769
|
* @throws {RequiredError}
|
|
14696
14770
|
*/
|
|
14697
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet: async (xStoreID: string, query: string, startTime?: string, endTime?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
14771
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet: async (xStoreID: string, query: string, startTime?: string, endTime?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
14698
14772
|
// verify required parameter 'xStoreID' is not null or undefined
|
|
14699
14773
|
assertParamExists('adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet', 'xStoreID', xStoreID)
|
|
14700
14774
|
// verify required parameter 'query' is not null or undefined
|
|
@@ -14724,6 +14798,38 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
14724
14798
|
localVarQueryParameter['end_time'] = endTime;
|
|
14725
14799
|
}
|
|
14726
14800
|
|
|
14801
|
+
if (compareMode !== undefined) {
|
|
14802
|
+
localVarQueryParameter['compare_mode'] = compareMode;
|
|
14803
|
+
}
|
|
14804
|
+
|
|
14805
|
+
if (compareStartTime !== undefined) {
|
|
14806
|
+
localVarQueryParameter['compare_start_time'] = compareStartTime;
|
|
14807
|
+
}
|
|
14808
|
+
|
|
14809
|
+
if (compareEndTime !== undefined) {
|
|
14810
|
+
localVarQueryParameter['compare_end_time'] = compareEndTime;
|
|
14811
|
+
}
|
|
14812
|
+
|
|
14813
|
+
if (compareAnalyticsTags !== undefined) {
|
|
14814
|
+
localVarQueryParameter['compare_analytics_tags'] = compareAnalyticsTags;
|
|
14815
|
+
}
|
|
14816
|
+
|
|
14817
|
+
if (compareTagsMatchMode !== undefined) {
|
|
14818
|
+
localVarQueryParameter['compare_tags_match_mode'] = compareTagsMatchMode;
|
|
14819
|
+
}
|
|
14820
|
+
|
|
14821
|
+
if (compareTagsExclude !== undefined) {
|
|
14822
|
+
localVarQueryParameter['compare_tags_exclude'] = compareTagsExclude;
|
|
14823
|
+
}
|
|
14824
|
+
|
|
14825
|
+
if (compareTagKeyFilter !== undefined) {
|
|
14826
|
+
localVarQueryParameter['compare_tag_key_filter'] = compareTagKeyFilter;
|
|
14827
|
+
}
|
|
14828
|
+
|
|
14829
|
+
if (compareTagValueFilter !== undefined) {
|
|
14830
|
+
localVarQueryParameter['compare_tag_value_filter'] = compareTagValueFilter;
|
|
14831
|
+
}
|
|
14832
|
+
|
|
14727
14833
|
if (resultsPage !== undefined) {
|
|
14728
14834
|
localVarQueryParameter['results_page'] = resultsPage;
|
|
14729
14835
|
}
|
|
@@ -15439,12 +15545,20 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
15439
15545
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
15440
15546
|
},
|
|
15441
15547
|
/**
|
|
15442
|
-
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with independent pagination for popular results and filters
|
|
15548
|
+
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with deep comparison mode support and independent pagination for popular results and filters
|
|
15443
15549
|
* @summary Get Query Insights
|
|
15444
15550
|
* @param {string} xStoreID Store ID
|
|
15445
15551
|
* @param {string} query Search query to analyze
|
|
15446
15552
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
15447
15553
|
* @param {string} [endTime] End time in RFC3339 format
|
|
15554
|
+
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
15555
|
+
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
15556
|
+
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
15557
|
+
* @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
|
|
15558
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
|
|
15559
|
+
* @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
|
|
15560
|
+
* @param {string} [compareTagKeyFilter] Tag key filter for comparison period
|
|
15561
|
+
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
15448
15562
|
* @param {number} [resultsPage] Page number for popular results pagination
|
|
15449
15563
|
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
15450
15564
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
@@ -15453,8 +15567,8 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
15453
15567
|
* @param {*} [options] Override http request option.
|
|
15454
15568
|
* @throws {RequiredError}
|
|
15455
15569
|
*/
|
|
15456
|
-
async adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>> {
|
|
15457
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, resultsPage, resultsPageSize, filtersPage, filtersPageSize, includeWidget, options);
|
|
15570
|
+
async adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>> {
|
|
15571
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, filtersPage, filtersPageSize, includeWidget, options);
|
|
15458
15572
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
15459
15573
|
const localVarOperationServerBasePath = operationServerMap['AnalyticsApi.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet']?.[localVarOperationServerIndex]?.url;
|
|
15460
15574
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -15846,12 +15960,20 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
15846
15960
|
return localVarFp.adminAnalyticsStoreXStoreIDQueriesNoResultsGet(xStoreID, startTime, endTime, search, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, limit, offset, page, pageSize, sortBy, sortOrder, sort, options).then((request) => request(axios, basePath));
|
|
15847
15961
|
},
|
|
15848
15962
|
/**
|
|
15849
|
-
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with independent pagination for popular results and filters
|
|
15963
|
+
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with deep comparison mode support and independent pagination for popular results and filters
|
|
15850
15964
|
* @summary Get Query Insights
|
|
15851
15965
|
* @param {string} xStoreID Store ID
|
|
15852
15966
|
* @param {string} query Search query to analyze
|
|
15853
15967
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
15854
15968
|
* @param {string} [endTime] End time in RFC3339 format
|
|
15969
|
+
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
15970
|
+
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
15971
|
+
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
15972
|
+
* @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
|
|
15973
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
|
|
15974
|
+
* @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
|
|
15975
|
+
* @param {string} [compareTagKeyFilter] Tag key filter for comparison period
|
|
15976
|
+
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
15855
15977
|
* @param {number} [resultsPage] Page number for popular results pagination
|
|
15856
15978
|
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
15857
15979
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
@@ -15860,8 +15982,8 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
15860
15982
|
* @param {*} [options] Override http request option.
|
|
15861
15983
|
* @throws {RequiredError}
|
|
15862
15984
|
*/
|
|
15863
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response> {
|
|
15864
|
-
return localVarFp.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, resultsPage, resultsPageSize, filtersPage, filtersPageSize, includeWidget, options).then((request) => request(axios, basePath));
|
|
15985
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response> {
|
|
15986
|
+
return localVarFp.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, filtersPage, filtersPageSize, includeWidget, options).then((request) => request(axios, basePath));
|
|
15865
15987
|
},
|
|
15866
15988
|
/**
|
|
15867
15989
|
* Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards with analytics tags filtering and comparison mode support.
|
|
@@ -16267,12 +16389,20 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
16267
16389
|
}
|
|
16268
16390
|
|
|
16269
16391
|
/**
|
|
16270
|
-
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with independent pagination for popular results and filters
|
|
16392
|
+
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with deep comparison mode support and independent pagination for popular results and filters
|
|
16271
16393
|
* @summary Get Query Insights
|
|
16272
16394
|
* @param {string} xStoreID Store ID
|
|
16273
16395
|
* @param {string} query Search query to analyze
|
|
16274
16396
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
16275
16397
|
* @param {string} [endTime] End time in RFC3339 format
|
|
16398
|
+
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
16399
|
+
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
16400
|
+
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
16401
|
+
* @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
|
|
16402
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
|
|
16403
|
+
* @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
|
|
16404
|
+
* @param {string} [compareTagKeyFilter] Tag key filter for comparison period
|
|
16405
|
+
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
16276
16406
|
* @param {number} [resultsPage] Page number for popular results pagination
|
|
16277
16407
|
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
16278
16408
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
@@ -16282,8 +16412,8 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
16282
16412
|
* @throws {RequiredError}
|
|
16283
16413
|
* @memberof AnalyticsApi
|
|
16284
16414
|
*/
|
|
16285
|
-
public adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig) {
|
|
16286
|
-
return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, resultsPage, resultsPageSize, filtersPage, filtersPageSize, includeWidget, options).then((request) => request(this.axios, this.basePath));
|
|
16415
|
+
public adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig) {
|
|
16416
|
+
return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, filtersPage, filtersPageSize, includeWidget, options).then((request) => request(this.axios, this.basePath));
|
|
16287
16417
|
}
|
|
16288
16418
|
|
|
16289
16419
|
/**
|
|
@@ -16660,6 +16790,14 @@ export const AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum = {
|
|
|
16660
16790
|
Desc: 'desc'
|
|
16661
16791
|
} as const;
|
|
16662
16792
|
export type AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum = typeof AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum[keyof typeof AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum];
|
|
16793
|
+
/**
|
|
16794
|
+
* @export
|
|
16795
|
+
*/
|
|
16796
|
+
export const AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum = {
|
|
16797
|
+
Any: 'any',
|
|
16798
|
+
All: 'all'
|
|
16799
|
+
} as const;
|
|
16800
|
+
export type AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum = typeof AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum[keyof typeof AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum];
|
|
16663
16801
|
/**
|
|
16664
16802
|
* @export
|
|
16665
16803
|
*/
|