@seekora-ai/admin-api 1.1.67 → 1.1.68

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/dist/api.d.ts CHANGED
@@ -875,6 +875,92 @@ export interface AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response {
875
875
  */
876
876
  'total'?: number;
877
877
  }
878
+ /**
879
+ *
880
+ * @export
881
+ * @interface AdminAnalyticsStoreXStoreIDSuggestionsPopularGet200Response
882
+ */
883
+ export interface AdminAnalyticsStoreXStoreIDSuggestionsPopularGet200Response {
884
+ /**
885
+ * Comparison metadata when in compare mode
886
+ * @type {AnalyticsComparisonMeta}
887
+ * @memberof AdminAnalyticsStoreXStoreIDSuggestionsPopularGet200Response
888
+ */
889
+ 'comparison'?: AnalyticsComparisonMeta;
890
+ /**
891
+ *
892
+ * @type {AnalyticsQuerySuggestionsResponse}
893
+ * @memberof AdminAnalyticsStoreXStoreIDSuggestionsPopularGet200Response
894
+ */
895
+ 'data'?: AnalyticsQuerySuggestionsResponse;
896
+ /**
897
+ *
898
+ * @type {string}
899
+ * @memberof AdminAnalyticsStoreXStoreIDSuggestionsPopularGet200Response
900
+ */
901
+ 'error'?: string;
902
+ /**
903
+ *
904
+ * @type {string}
905
+ * @memberof AdminAnalyticsStoreXStoreIDSuggestionsPopularGet200Response
906
+ */
907
+ 'status'?: string;
908
+ /**
909
+ *
910
+ * @type {string}
911
+ * @memberof AdminAnalyticsStoreXStoreIDSuggestionsPopularGet200Response
912
+ */
913
+ 'timestamp'?: string;
914
+ /**
915
+ *
916
+ * @type {number}
917
+ * @memberof AdminAnalyticsStoreXStoreIDSuggestionsPopularGet200Response
918
+ */
919
+ 'total'?: number;
920
+ }
921
+ /**
922
+ *
923
+ * @export
924
+ * @interface AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGet200Response
925
+ */
926
+ export interface AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGet200Response {
927
+ /**
928
+ * Comparison metadata when in compare mode
929
+ * @type {AnalyticsComparisonMeta}
930
+ * @memberof AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGet200Response
931
+ */
932
+ 'comparison'?: AnalyticsComparisonMeta;
933
+ /**
934
+ *
935
+ * @type {AnalyticsQuerySuggestionsInsight}
936
+ * @memberof AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGet200Response
937
+ */
938
+ 'data'?: AnalyticsQuerySuggestionsInsight;
939
+ /**
940
+ *
941
+ * @type {string}
942
+ * @memberof AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGet200Response
943
+ */
944
+ 'error'?: string;
945
+ /**
946
+ *
947
+ * @type {string}
948
+ * @memberof AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGet200Response
949
+ */
950
+ 'status'?: string;
951
+ /**
952
+ *
953
+ * @type {string}
954
+ * @memberof AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGet200Response
955
+ */
956
+ 'timestamp'?: string;
957
+ /**
958
+ *
959
+ * @type {number}
960
+ * @memberof AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGet200Response
961
+ */
962
+ 'total'?: number;
963
+ }
878
964
  /**
879
965
  *
880
966
  * @export
@@ -5869,6 +5955,237 @@ export interface AnalyticsQueryResponse {
5869
5955
  */
5870
5956
  'xstoreid'?: string;
5871
5957
  }
5958
+ /**
5959
+ *
5960
+ * @export
5961
+ * @interface AnalyticsQuerySuggestionsAnalytic
5962
+ */
5963
+ export interface AnalyticsQuerySuggestionsAnalytic {
5964
+ /**
5965
+ * Average processing time
5966
+ * @type {number}
5967
+ * @memberof AnalyticsQuerySuggestionsAnalytic
5968
+ */
5969
+ 'avg_processing_time_ms'?: number;
5970
+ /**
5971
+ * Average suggestions per request
5972
+ * @type {number}
5973
+ * @memberof AnalyticsQuerySuggestionsAnalytic
5974
+ */
5975
+ 'avg_suggestions_per_request'?: number;
5976
+ /**
5977
+ * Last time this query was used
5978
+ * @type {string}
5979
+ * @memberof AnalyticsQuerySuggestionsAnalytic
5980
+ */
5981
+ 'last_seen_date'?: string;
5982
+ /**
5983
+ *
5984
+ * @type {string}
5985
+ * @memberof AnalyticsQuerySuggestionsAnalytic
5986
+ */
5987
+ 'query'?: string;
5988
+ /**
5989
+ * Number of suggestion requests
5990
+ * @type {number}
5991
+ * @memberof AnalyticsQuerySuggestionsAnalytic
5992
+ */
5993
+ 'requests'?: number;
5994
+ /**
5995
+ * Requests with dropdown recommendations
5996
+ * @type {number}
5997
+ * @memberof AnalyticsQuerySuggestionsAnalytic
5998
+ */
5999
+ 'requests_with_dropdown'?: number;
6000
+ /**
6001
+ * Requests with filtered tabs
6002
+ * @type {number}
6003
+ * @memberof AnalyticsQuerySuggestionsAnalytic
6004
+ */
6005
+ 'requests_with_filtered_tabs'?: number;
6006
+ /**
6007
+ * Total processing time
6008
+ * @type {number}
6009
+ * @memberof AnalyticsQuerySuggestionsAnalytic
6010
+ */
6011
+ 'total_processing_time_ms'?: number;
6012
+ /**
6013
+ * Total suggestions shown
6014
+ * @type {number}
6015
+ * @memberof AnalyticsQuerySuggestionsAnalytic
6016
+ */
6017
+ 'total_suggestions_returned'?: number;
6018
+ /**
6019
+ * Unique sessions
6020
+ * @type {number}
6021
+ * @memberof AnalyticsQuerySuggestionsAnalytic
6022
+ */
6023
+ 'unique_sessions'?: number;
6024
+ /**
6025
+ * Unique users
6026
+ * @type {number}
6027
+ * @memberof AnalyticsQuerySuggestionsAnalytic
6028
+ */
6029
+ 'unique_users'?: number;
6030
+ }
6031
+ /**
6032
+ *
6033
+ * @export
6034
+ * @interface AnalyticsQuerySuggestionsInsight
6035
+ */
6036
+ export interface AnalyticsQuerySuggestionsInsight {
6037
+ /**
6038
+ *
6039
+ * @type {number}
6040
+ * @memberof AnalyticsQuerySuggestionsInsight
6041
+ */
6042
+ 'avg_processing_time_ms'?: number;
6043
+ /**
6044
+ *
6045
+ * @type {number}
6046
+ * @memberof AnalyticsQuerySuggestionsInsight
6047
+ */
6048
+ 'avg_suggestions_per_request'?: number;
6049
+ /**
6050
+ *
6051
+ * @type {string}
6052
+ * @memberof AnalyticsQuerySuggestionsInsight
6053
+ */
6054
+ 'end_time'?: string;
6055
+ /**
6056
+ *
6057
+ * @type {number}
6058
+ * @memberof AnalyticsQuerySuggestionsInsight
6059
+ */
6060
+ 'p50_processing_time_ms'?: number;
6061
+ /**
6062
+ *
6063
+ * @type {number}
6064
+ * @memberof AnalyticsQuerySuggestionsInsight
6065
+ */
6066
+ 'p95_processing_time_ms'?: number;
6067
+ /**
6068
+ *
6069
+ * @type {number}
6070
+ * @memberof AnalyticsQuerySuggestionsInsight
6071
+ */
6072
+ 'p99_processing_time_ms'?: number;
6073
+ /**
6074
+ *
6075
+ * @type {string}
6076
+ * @memberof AnalyticsQuerySuggestionsInsight
6077
+ */
6078
+ 'query'?: string;
6079
+ /**
6080
+ *
6081
+ * @type {number}
6082
+ * @memberof AnalyticsQuerySuggestionsInsight
6083
+ */
6084
+ 'requests'?: number;
6085
+ /**
6086
+ *
6087
+ * @type {number}
6088
+ * @memberof AnalyticsQuerySuggestionsInsight
6089
+ */
6090
+ 'requests_with_dropdown'?: number;
6091
+ /**
6092
+ *
6093
+ * @type {number}
6094
+ * @memberof AnalyticsQuerySuggestionsInsight
6095
+ */
6096
+ 'requests_with_filtered_tabs'?: number;
6097
+ /**
6098
+ *
6099
+ * @type {string}
6100
+ * @memberof AnalyticsQuerySuggestionsInsight
6101
+ */
6102
+ 'start_time'?: string;
6103
+ /**
6104
+ * Optional time series data
6105
+ * @type {Array<AnalyticsTimePoint>}
6106
+ * @memberof AnalyticsQuerySuggestionsInsight
6107
+ */
6108
+ 'time_series'?: Array<AnalyticsTimePoint>;
6109
+ /**
6110
+ *
6111
+ * @type {number}
6112
+ * @memberof AnalyticsQuerySuggestionsInsight
6113
+ */
6114
+ 'total_suggestions_returned'?: number;
6115
+ /**
6116
+ *
6117
+ * @type {number}
6118
+ * @memberof AnalyticsQuerySuggestionsInsight
6119
+ */
6120
+ 'unique_sessions'?: number;
6121
+ /**
6122
+ *
6123
+ * @type {number}
6124
+ * @memberof AnalyticsQuerySuggestionsInsight
6125
+ */
6126
+ 'unique_users'?: number;
6127
+ }
6128
+ /**
6129
+ *
6130
+ * @export
6131
+ * @interface AnalyticsQuerySuggestionsResponse
6132
+ */
6133
+ export interface AnalyticsQuerySuggestionsResponse {
6134
+ /**
6135
+ *
6136
+ * @type {Array<AnalyticsQuerySuggestionsAnalytic>}
6137
+ * @memberof AnalyticsQuerySuggestionsResponse
6138
+ */
6139
+ 'data'?: Array<AnalyticsQuerySuggestionsAnalytic>;
6140
+ /**
6141
+ *
6142
+ * @type {string}
6143
+ * @memberof AnalyticsQuerySuggestionsResponse
6144
+ */
6145
+ 'end_time'?: string;
6146
+ /**
6147
+ *
6148
+ * @type {number}
6149
+ * @memberof AnalyticsQuerySuggestionsResponse
6150
+ */
6151
+ 'limit'?: number;
6152
+ /**
6153
+ *
6154
+ * @type {string}
6155
+ * @memberof AnalyticsQuerySuggestionsResponse
6156
+ */
6157
+ 'orgcode'?: string;
6158
+ /**
6159
+ *
6160
+ * @type {number}
6161
+ * @memberof AnalyticsQuerySuggestionsResponse
6162
+ */
6163
+ 'page'?: number;
6164
+ /**
6165
+ *
6166
+ * @type {string}
6167
+ * @memberof AnalyticsQuerySuggestionsResponse
6168
+ */
6169
+ 'search_query'?: string;
6170
+ /**
6171
+ *
6172
+ * @type {string}
6173
+ * @memberof AnalyticsQuerySuggestionsResponse
6174
+ */
6175
+ 'start_time'?: string;
6176
+ /**
6177
+ *
6178
+ * @type {number}
6179
+ * @memberof AnalyticsQuerySuggestionsResponse
6180
+ */
6181
+ 'total'?: number;
6182
+ /**
6183
+ *
6184
+ * @type {string}
6185
+ * @memberof AnalyticsQuerySuggestionsResponse
6186
+ */
6187
+ 'xstoreid'?: string;
6188
+ }
5872
6189
  /**
5873
6190
  *
5874
6191
  * @export
@@ -6073,6 +6390,43 @@ export interface AnalyticsStoreQueryBreakdown {
6073
6390
  */
6074
6391
  'xstoreid'?: string;
6075
6392
  }
6393
+ /**
6394
+ *
6395
+ * @export
6396
+ * @interface AnalyticsTimePoint
6397
+ */
6398
+ export interface AnalyticsTimePoint {
6399
+ /**
6400
+ *
6401
+ * @type {number}
6402
+ * @memberof AnalyticsTimePoint
6403
+ */
6404
+ 'avg_processing_time_ms'?: number;
6405
+ /**
6406
+ *
6407
+ * @type {number}
6408
+ * @memberof AnalyticsTimePoint
6409
+ */
6410
+ 'avg_suggestions_per_request'?: number;
6411
+ /**
6412
+ *
6413
+ * @type {number}
6414
+ * @memberof AnalyticsTimePoint
6415
+ */
6416
+ 'requests'?: number;
6417
+ /**
6418
+ *
6419
+ * @type {string}
6420
+ * @memberof AnalyticsTimePoint
6421
+ */
6422
+ 'time'?: string;
6423
+ /**
6424
+ *
6425
+ * @type {number}
6426
+ * @memberof AnalyticsTimePoint
6427
+ */
6428
+ 'total_suggestions_returned'?: number;
6429
+ }
6076
6430
  /**
6077
6431
  *
6078
6432
  * @export
@@ -10015,6 +10369,42 @@ export interface DataTypesDropdownRecommendationsConfig {
10015
10369
  'category_field_mappings'?: {
10016
10370
  [key: string]: string;
10017
10371
  };
10372
+ /**
10373
+ * Fields to consider for dynamic tabs (default: uses facet_by or empty)
10374
+ * @type {Array<string>}
10375
+ * @memberof DataTypesDropdownRecommendationsConfig
10376
+ */
10377
+ 'dynamic_tabs_fields'?: Array<string>;
10378
+ /**
10379
+ * Maximum number of dynamic tabs (default: 5)
10380
+ * @type {number}
10381
+ * @memberof DataTypesDropdownRecommendationsConfig
10382
+ */
10383
+ 'dynamic_tabs_max_count'?: number;
10384
+ /**
10385
+ * Method: \"groupBy\" (uses Typesense groupBy), \"facets\" (uses facet discovery), \"manual\" (uses FilteredTabs config only) (default: \"groupBy\")
10386
+ * @type {string}
10387
+ * @memberof DataTypesDropdownRecommendationsConfig
10388
+ */
10389
+ 'dynamic_tabs_method'?: string;
10390
+ /**
10391
+ * Minimum results required for a tab (default: 10)
10392
+ * @type {number}
10393
+ * @memberof DataTypesDropdownRecommendationsConfig
10394
+ */
10395
+ 'dynamic_tabs_min_results'?: number;
10396
+ /**
10397
+ * Priority offset for dynamic tabs (default: 100, manual tabs use 0-99)
10398
+ * @type {number}
10399
+ * @memberof DataTypesDropdownRecommendationsConfig
10400
+ */
10401
+ 'dynamic_tabs_priority'?: number;
10402
+ /**
10403
+ * Dynamic tabs configuration (auto-generated tabs based on query and facets)
10404
+ * @type {boolean}
10405
+ * @memberof DataTypesDropdownRecommendationsConfig
10406
+ */
10407
+ 'enable_dynamic_tabs'?: boolean;
10018
10408
  /**
10019
10409
  * Filtered tabs configuration (for tabbed product recommendations)
10020
10410
  * @type {boolean}
@@ -29338,6 +29728,49 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
29338
29728
  * @throws {RequiredError}
29339
29729
  */
29340
29730
  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>;
29731
+ /**
29732
+ * Retrieve most popular queries used for getting suggestions, ordered by request count
29733
+ * @summary Get Popular Suggestion Queries
29734
+ * @param {string} xStoreID Store ID
29735
+ * @param {string} [startTime] Start time in RFC3339 format
29736
+ * @param {string} [endTime] End time in RFC3339 format
29737
+ * @param {number} [limit] Number of results to return
29738
+ * @param {*} [options] Override http request option.
29739
+ * @throws {RequiredError}
29740
+ */
29741
+ adminAnalyticsStoreXStoreIDSuggestionsPopularGet: (xStoreID: string, startTime?: string, endTime?: string, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
29742
+ /**
29743
+ * Retrieve analytics for query suggestions including request counts, suggestions returned, processing time, and usage metrics. Supports filtering by query, analytics tags, and time range.
29744
+ * @summary Get Query Suggestions Analytics
29745
+ * @param {string} xStoreID Store ID
29746
+ * @param {string} [startTime] Start time in RFC3339 format
29747
+ * @param {string} [endTime] End time in RFC3339 format
29748
+ * @param {string} [search] Search term to filter queries (case-insensitive partial match)
29749
+ * @param {string} [analyticsTags] Comma-separated analytics tags to filter
29750
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
29751
+ * @param {string} [tagsExclude] Comma-separated analytics tags to exclude
29752
+ * @param {number} [page] Page number for pagination
29753
+ * @param {number} [pageSize] Number of results per page
29754
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortByEnum} [sortBy] Field to sort by
29755
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortOrderEnum} [sortOrder] Sort direction
29756
+ * @param {*} [options] Override http request option.
29757
+ * @throws {RequiredError}
29758
+ */
29759
+ adminAnalyticsStoreXStoreIDSuggestionsQueriesGet: (xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetTagsMatchModeEnum, tagsExclude?: string, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortOrderEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
29760
+ /**
29761
+ * Retrieve comprehensive insights for a specific query suggestion including metrics, performance data, and optional time series
29762
+ * @summary Get Query Suggestions Insights
29763
+ * @param {string} xStoreID Store ID
29764
+ * @param {string} query Query suggestion to analyze
29765
+ * @param {string} [startTime] Start time in RFC3339 format
29766
+ * @param {string} [endTime] End time in RFC3339 format
29767
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetGranularityEnum} [granularity] Time granularity for time series
29768
+ * @param {string} [analyticsTags] Comma-separated analytics tags to filter
29769
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
29770
+ * @param {*} [options] Override http request option.
29771
+ * @throws {RequiredError}
29772
+ */
29773
+ adminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGet: (xStoreID: string, query: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetGranularityEnum, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetTagsMatchModeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
29341
29774
  /**
29342
29775
  * Retrieve analytics tags usage data and filtering capabilities. If no start_time/end_time is specified, returns all tags from the last 2 years.
29343
29776
  * @summary Get Analytics Tags
@@ -29829,6 +30262,49 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
29829
30262
  * @throws {RequiredError}
29830
30263
  */
29831
30264
  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>>;
30265
+ /**
30266
+ * Retrieve most popular queries used for getting suggestions, ordered by request count
30267
+ * @summary Get Popular Suggestion Queries
30268
+ * @param {string} xStoreID Store ID
30269
+ * @param {string} [startTime] Start time in RFC3339 format
30270
+ * @param {string} [endTime] End time in RFC3339 format
30271
+ * @param {number} [limit] Number of results to return
30272
+ * @param {*} [options] Override http request option.
30273
+ * @throws {RequiredError}
30274
+ */
30275
+ adminAnalyticsStoreXStoreIDSuggestionsPopularGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDSuggestionsPopularGet200Response>>;
30276
+ /**
30277
+ * Retrieve analytics for query suggestions including request counts, suggestions returned, processing time, and usage metrics. Supports filtering by query, analytics tags, and time range.
30278
+ * @summary Get Query Suggestions Analytics
30279
+ * @param {string} xStoreID Store ID
30280
+ * @param {string} [startTime] Start time in RFC3339 format
30281
+ * @param {string} [endTime] End time in RFC3339 format
30282
+ * @param {string} [search] Search term to filter queries (case-insensitive partial match)
30283
+ * @param {string} [analyticsTags] Comma-separated analytics tags to filter
30284
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
30285
+ * @param {string} [tagsExclude] Comma-separated analytics tags to exclude
30286
+ * @param {number} [page] Page number for pagination
30287
+ * @param {number} [pageSize] Number of results per page
30288
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortByEnum} [sortBy] Field to sort by
30289
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortOrderEnum} [sortOrder] Sort direction
30290
+ * @param {*} [options] Override http request option.
30291
+ * @throws {RequiredError}
30292
+ */
30293
+ adminAnalyticsStoreXStoreIDSuggestionsQueriesGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetTagsMatchModeEnum, tagsExclude?: string, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortOrderEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDSuggestionsPopularGet200Response>>;
30294
+ /**
30295
+ * Retrieve comprehensive insights for a specific query suggestion including metrics, performance data, and optional time series
30296
+ * @summary Get Query Suggestions Insights
30297
+ * @param {string} xStoreID Store ID
30298
+ * @param {string} query Query suggestion to analyze
30299
+ * @param {string} [startTime] Start time in RFC3339 format
30300
+ * @param {string} [endTime] End time in RFC3339 format
30301
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetGranularityEnum} [granularity] Time granularity for time series
30302
+ * @param {string} [analyticsTags] Comma-separated analytics tags to filter
30303
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
30304
+ * @param {*} [options] Override http request option.
30305
+ * @throws {RequiredError}
30306
+ */
30307
+ adminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetGranularityEnum, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetTagsMatchModeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGet200Response>>;
29832
30308
  /**
29833
30309
  * Retrieve analytics tags usage data and filtering capabilities. If no start_time/end_time is specified, returns all tags from the last 2 years.
29834
30310
  * @summary Get Analytics Tags
@@ -30320,6 +30796,49 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
30320
30796
  * @throws {RequiredError}
30321
30797
  */
30322
30798
  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>;
30799
+ /**
30800
+ * Retrieve most popular queries used for getting suggestions, ordered by request count
30801
+ * @summary Get Popular Suggestion Queries
30802
+ * @param {string} xStoreID Store ID
30803
+ * @param {string} [startTime] Start time in RFC3339 format
30804
+ * @param {string} [endTime] End time in RFC3339 format
30805
+ * @param {number} [limit] Number of results to return
30806
+ * @param {*} [options] Override http request option.
30807
+ * @throws {RequiredError}
30808
+ */
30809
+ adminAnalyticsStoreXStoreIDSuggestionsPopularGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDSuggestionsPopularGet200Response>;
30810
+ /**
30811
+ * Retrieve analytics for query suggestions including request counts, suggestions returned, processing time, and usage metrics. Supports filtering by query, analytics tags, and time range.
30812
+ * @summary Get Query Suggestions Analytics
30813
+ * @param {string} xStoreID Store ID
30814
+ * @param {string} [startTime] Start time in RFC3339 format
30815
+ * @param {string} [endTime] End time in RFC3339 format
30816
+ * @param {string} [search] Search term to filter queries (case-insensitive partial match)
30817
+ * @param {string} [analyticsTags] Comma-separated analytics tags to filter
30818
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
30819
+ * @param {string} [tagsExclude] Comma-separated analytics tags to exclude
30820
+ * @param {number} [page] Page number for pagination
30821
+ * @param {number} [pageSize] Number of results per page
30822
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortByEnum} [sortBy] Field to sort by
30823
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortOrderEnum} [sortOrder] Sort direction
30824
+ * @param {*} [options] Override http request option.
30825
+ * @throws {RequiredError}
30826
+ */
30827
+ adminAnalyticsStoreXStoreIDSuggestionsQueriesGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetTagsMatchModeEnum, tagsExclude?: string, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortOrderEnum, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDSuggestionsPopularGet200Response>;
30828
+ /**
30829
+ * Retrieve comprehensive insights for a specific query suggestion including metrics, performance data, and optional time series
30830
+ * @summary Get Query Suggestions Insights
30831
+ * @param {string} xStoreID Store ID
30832
+ * @param {string} query Query suggestion to analyze
30833
+ * @param {string} [startTime] Start time in RFC3339 format
30834
+ * @param {string} [endTime] End time in RFC3339 format
30835
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetGranularityEnum} [granularity] Time granularity for time series
30836
+ * @param {string} [analyticsTags] Comma-separated analytics tags to filter
30837
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
30838
+ * @param {*} [options] Override http request option.
30839
+ * @throws {RequiredError}
30840
+ */
30841
+ adminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetGranularityEnum, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetTagsMatchModeEnum, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGet200Response>;
30323
30842
  /**
30324
30843
  * Retrieve analytics tags usage data and filtering capabilities. If no start_time/end_time is specified, returns all tags from the last 2 years.
30325
30844
  * @summary Get Analytics Tags
@@ -30833,6 +31352,52 @@ export declare class AnalyticsApi extends BaseAPI {
30833
31352
  * @memberof AnalyticsApi
30834
31353
  */
30835
31354
  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, {}>>;
31355
+ /**
31356
+ * Retrieve most popular queries used for getting suggestions, ordered by request count
31357
+ * @summary Get Popular Suggestion Queries
31358
+ * @param {string} xStoreID Store ID
31359
+ * @param {string} [startTime] Start time in RFC3339 format
31360
+ * @param {string} [endTime] End time in RFC3339 format
31361
+ * @param {number} [limit] Number of results to return
31362
+ * @param {*} [options] Override http request option.
31363
+ * @throws {RequiredError}
31364
+ * @memberof AnalyticsApi
31365
+ */
31366
+ adminAnalyticsStoreXStoreIDSuggestionsPopularGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDSuggestionsPopularGet200Response, any, {}>>;
31367
+ /**
31368
+ * Retrieve analytics for query suggestions including request counts, suggestions returned, processing time, and usage metrics. Supports filtering by query, analytics tags, and time range.
31369
+ * @summary Get Query Suggestions Analytics
31370
+ * @param {string} xStoreID Store ID
31371
+ * @param {string} [startTime] Start time in RFC3339 format
31372
+ * @param {string} [endTime] End time in RFC3339 format
31373
+ * @param {string} [search] Search term to filter queries (case-insensitive partial match)
31374
+ * @param {string} [analyticsTags] Comma-separated analytics tags to filter
31375
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
31376
+ * @param {string} [tagsExclude] Comma-separated analytics tags to exclude
31377
+ * @param {number} [page] Page number for pagination
31378
+ * @param {number} [pageSize] Number of results per page
31379
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortByEnum} [sortBy] Field to sort by
31380
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortOrderEnum} [sortOrder] Sort direction
31381
+ * @param {*} [options] Override http request option.
31382
+ * @throws {RequiredError}
31383
+ * @memberof AnalyticsApi
31384
+ */
31385
+ adminAnalyticsStoreXStoreIDSuggestionsQueriesGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetTagsMatchModeEnum, tagsExclude?: string, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortOrderEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDSuggestionsPopularGet200Response, any, {}>>;
31386
+ /**
31387
+ * Retrieve comprehensive insights for a specific query suggestion including metrics, performance data, and optional time series
31388
+ * @summary Get Query Suggestions Insights
31389
+ * @param {string} xStoreID Store ID
31390
+ * @param {string} query Query suggestion to analyze
31391
+ * @param {string} [startTime] Start time in RFC3339 format
31392
+ * @param {string} [endTime] End time in RFC3339 format
31393
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetGranularityEnum} [granularity] Time granularity for time series
31394
+ * @param {string} [analyticsTags] Comma-separated analytics tags to filter
31395
+ * @param {AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
31396
+ * @param {*} [options] Override http request option.
31397
+ * @throws {RequiredError}
31398
+ * @memberof AnalyticsApi
31399
+ */
31400
+ adminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetGranularityEnum, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetTagsMatchModeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGet200Response, any, {}>>;
30836
31401
  /**
30837
31402
  * Retrieve analytics tags usage data and filtering capabilities. If no start_time/end_time is specified, returns all tags from the last 2 years.
30838
31403
  * @summary Get Analytics Tags
@@ -31290,6 +31855,52 @@ export declare const AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum: {
31290
31855
  readonly Desc: "desc";
31291
31856
  };
31292
31857
  export type AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum = typeof AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum[keyof typeof AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum];
31858
+ /**
31859
+ * @export
31860
+ */
31861
+ export declare const AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetTagsMatchModeEnum: {
31862
+ readonly Any: "any";
31863
+ readonly All: "all";
31864
+ };
31865
+ export type AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetTagsMatchModeEnum = typeof AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetTagsMatchModeEnum[keyof typeof AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetTagsMatchModeEnum];
31866
+ /**
31867
+ * @export
31868
+ */
31869
+ export declare const AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortByEnum: {
31870
+ readonly Requests: "requests";
31871
+ readonly TotalSuggestionsReturned: "total_suggestions_returned";
31872
+ readonly AvgSuggestionsPerRequest: "avg_suggestions_per_request";
31873
+ readonly AvgProcessingTimeMs: "avg_processing_time_ms";
31874
+ readonly UniqueUsers: "unique_users";
31875
+ };
31876
+ export type AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortByEnum = typeof AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortByEnum[keyof typeof AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortByEnum];
31877
+ /**
31878
+ * @export
31879
+ */
31880
+ export declare const AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortOrderEnum: {
31881
+ readonly Asc: "asc";
31882
+ readonly Desc: "desc";
31883
+ };
31884
+ export type AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortOrderEnum = typeof AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortOrderEnum[keyof typeof AdminAnalyticsStoreXStoreIDSuggestionsQueriesGetSortOrderEnum];
31885
+ /**
31886
+ * @export
31887
+ */
31888
+ export declare const AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetGranularityEnum: {
31889
+ readonly Minute: "minute";
31890
+ readonly _5minute: "5minute";
31891
+ readonly _15minute: "15minute";
31892
+ readonly Hour: "hour";
31893
+ readonly Day: "day";
31894
+ };
31895
+ export type AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetGranularityEnum = typeof AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetGranularityEnum[keyof typeof AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetGranularityEnum];
31896
+ /**
31897
+ * @export
31898
+ */
31899
+ export declare const AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetTagsMatchModeEnum: {
31900
+ readonly Any: "any";
31901
+ readonly All: "all";
31902
+ };
31903
+ export type AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetTagsMatchModeEnum = typeof AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetTagsMatchModeEnum[keyof typeof AdminAnalyticsStoreXStoreIDSuggestionsQueryInsightsGetTagsMatchModeEnum];
31293
31904
  /**
31294
31905
  * @export
31295
31906
  */