@seekora-ai/admin-api 1.1.15 → 1.1.17

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
@@ -703,6 +703,49 @@ export interface AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response {
703
703
  */
704
704
  'total'?: number;
705
705
  }
706
+ /**
707
+ *
708
+ * @export
709
+ * @interface AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response
710
+ */
711
+ export interface AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response {
712
+ /**
713
+ * Comparison metadata when in compare mode
714
+ * @type {AnalyticsComparisonMeta}
715
+ * @memberof AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response
716
+ */
717
+ 'comparison'?: AnalyticsComparisonMeta;
718
+ /**
719
+ *
720
+ * @type {AnalyticsQueryInsights}
721
+ * @memberof AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response
722
+ */
723
+ 'data'?: AnalyticsQueryInsights;
724
+ /**
725
+ *
726
+ * @type {string}
727
+ * @memberof AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response
728
+ */
729
+ 'error'?: string;
730
+ /**
731
+ *
732
+ * @type {string}
733
+ * @memberof AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response
734
+ */
735
+ 'status'?: string;
736
+ /**
737
+ *
738
+ * @type {string}
739
+ * @memberof AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response
740
+ */
741
+ 'timestamp'?: string;
742
+ /**
743
+ *
744
+ * @type {number}
745
+ * @memberof AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response
746
+ */
747
+ 'total'?: number;
748
+ }
706
749
  /**
707
750
  *
708
751
  * @export
@@ -1416,6 +1459,153 @@ export interface AnalyticsAnalyticsAPIResponse {
1416
1459
  */
1417
1460
  'total'?: number;
1418
1461
  }
1462
+ /**
1463
+ *
1464
+ * @export
1465
+ * @interface AnalyticsArrayElementAnalytic
1466
+ */
1467
+ export interface AnalyticsArrayElementAnalytic {
1468
+ /**
1469
+ * Position in array (0-based)
1470
+ * @type {number}
1471
+ * @memberof AnalyticsArrayElementAnalytic
1472
+ */
1473
+ 'array_index'?: number;
1474
+ /**
1475
+ * Total array size
1476
+ * @type {number}
1477
+ * @memberof AnalyticsArrayElementAnalytic
1478
+ */
1479
+ 'array_length'?: number;
1480
+ /**
1481
+ * Average results when this element is used
1482
+ * @type {number}
1483
+ * @memberof AnalyticsArrayElementAnalytic
1484
+ */
1485
+ 'avg_results_count'?: number;
1486
+ /**
1487
+ * e.g., \"tags\"
1488
+ * @type {string}
1489
+ * @memberof AnalyticsArrayElementAnalytic
1490
+ */
1491
+ 'filter_key'?: string;
1492
+ /**
1493
+ * e.g., \"fashion\"
1494
+ * @type {string}
1495
+ * @memberof AnalyticsArrayElementAnalytic
1496
+ */
1497
+ 'filter_value'?: string;
1498
+ /**
1499
+ * \"array\", \"object\", \"string\"
1500
+ * @type {string}
1501
+ * @memberof AnalyticsArrayElementAnalytic
1502
+ */
1503
+ 'original_type'?: string;
1504
+ /**
1505
+ * How often this element appears at this position
1506
+ * @type {number}
1507
+ * @memberof AnalyticsArrayElementAnalytic
1508
+ */
1509
+ 'position_popularity'?: number;
1510
+ /**
1511
+ * Percentage with results > 0
1512
+ * @type {number}
1513
+ * @memberof AnalyticsArrayElementAnalytic
1514
+ */
1515
+ 'success_rate'?: number;
1516
+ /**
1517
+ * Unique searches using this element
1518
+ * @type {number}
1519
+ * @memberof AnalyticsArrayElementAnalytic
1520
+ */
1521
+ 'unique_searches'?: number;
1522
+ /**
1523
+ * How many times this element was used
1524
+ * @type {number}
1525
+ * @memberof AnalyticsArrayElementAnalytic
1526
+ */
1527
+ 'usage_count'?: number;
1528
+ /**
1529
+ * \"array_element\", \"object_key\", etc.
1530
+ * @type {string}
1531
+ * @memberof AnalyticsArrayElementAnalytic
1532
+ */
1533
+ 'value_type'?: string;
1534
+ }
1535
+ /**
1536
+ *
1537
+ * @export
1538
+ * @interface AnalyticsArrayFilterStats
1539
+ */
1540
+ export interface AnalyticsArrayFilterStats {
1541
+ /**
1542
+ * Average array size
1543
+ * @type {number}
1544
+ * @memberof AnalyticsArrayFilterStats
1545
+ */
1546
+ 'avg_array_length'?: number;
1547
+ /**
1548
+ * Largest array seen
1549
+ * @type {number}
1550
+ * @memberof AnalyticsArrayFilterStats
1551
+ */
1552
+ 'max_array_length'?: number;
1553
+ /**
1554
+ * Top values across all arrays
1555
+ * @type {Array<string>}
1556
+ * @memberof AnalyticsArrayFilterStats
1557
+ */
1558
+ 'most_popular_values'?: Array<string>;
1559
+ /**
1560
+ * Usage by array position
1561
+ * @type {Array<AnalyticsArrayPositionAnalytic>}
1562
+ * @memberof AnalyticsArrayFilterStats
1563
+ */
1564
+ 'position_analytics'?: Array<AnalyticsArrayPositionAnalytic>;
1565
+ /**
1566
+ * Total times arrays were used for this filter
1567
+ * @type {number}
1568
+ * @memberof AnalyticsArrayFilterStats
1569
+ */
1570
+ 'total_array_usage'?: number;
1571
+ }
1572
+ /**
1573
+ *
1574
+ * @export
1575
+ * @interface AnalyticsArrayPositionAnalytic
1576
+ */
1577
+ export interface AnalyticsArrayPositionAnalytic {
1578
+ /**
1579
+ * Most popular value at this position
1580
+ * @type {string}
1581
+ * @memberof AnalyticsArrayPositionAnalytic
1582
+ */
1583
+ 'popular_value'?: string;
1584
+ /**
1585
+ * 0-based array position
1586
+ * @type {number}
1587
+ * @memberof AnalyticsArrayPositionAnalytic
1588
+ */
1589
+ 'position'?: number;
1590
+ /**
1591
+ * Success rate for searches with values at this position
1592
+ * @type {number}
1593
+ * @memberof AnalyticsArrayPositionAnalytic
1594
+ */
1595
+ 'success_rate'?: number;
1596
+ /**
1597
+ * Unique values at this position
1598
+ * @type {number}
1599
+ * @memberof AnalyticsArrayPositionAnalytic
1600
+ */
1601
+ 'unique_values'?: number;
1602
+ /**
1603
+ * Times this position was used
1604
+ * @type {number}
1605
+ * @memberof AnalyticsArrayPositionAnalytic
1606
+ */
1607
+ 'usage_count'?: number;
1608
+ }
1419
1609
  /**
1420
1610
  *
1421
1611
  * @export
@@ -1660,6 +1850,43 @@ export interface AnalyticsCategoryWithCount {
1660
1850
  */
1661
1851
  'value'?: string;
1662
1852
  }
1853
+ /**
1854
+ *
1855
+ * @export
1856
+ * @interface AnalyticsClickPositionBucket
1857
+ */
1858
+ export interface AnalyticsClickPositionBucket {
1859
+ /**
1860
+ *
1861
+ * @type {number}
1862
+ * @memberof AnalyticsClickPositionBucket
1863
+ */
1864
+ 'click_rate'?: number;
1865
+ /**
1866
+ *
1867
+ * @type {number}
1868
+ * @memberof AnalyticsClickPositionBucket
1869
+ */
1870
+ 'clicks'?: number;
1871
+ /**
1872
+ *
1873
+ * @type {number}
1874
+ * @memberof AnalyticsClickPositionBucket
1875
+ */
1876
+ 'impressions'?: number;
1877
+ /**
1878
+ * \"1\", \"2\", \"3\", \"4-5\", \"6-10\", \"11-20\", \"21+\"
1879
+ * @type {string}
1880
+ * @memberof AnalyticsClickPositionBucket
1881
+ */
1882
+ 'position_range'?: string;
1883
+ /**
1884
+ * percentage of total clicks for this query
1885
+ * @type {number}
1886
+ * @memberof AnalyticsClickPositionBucket
1887
+ */
1888
+ 'share'?: number;
1889
+ }
1663
1890
  /**
1664
1891
  *
1665
1892
  * @export
@@ -2308,6 +2535,43 @@ export interface AnalyticsFilterEffectivenessCategory {
2308
2535
  */
2309
2536
  'unique_searches'?: number;
2310
2537
  }
2538
+ /**
2539
+ *
2540
+ * @export
2541
+ * @interface AnalyticsFilterEffectivenessMetrics
2542
+ */
2543
+ export interface AnalyticsFilterEffectivenessMetrics {
2544
+ /**
2545
+ *
2546
+ * @type {number}
2547
+ * @memberof AnalyticsFilterEffectivenessMetrics
2548
+ */
2549
+ 'avg_results_count'?: number;
2550
+ /**
2551
+ *
2552
+ * @type {number}
2553
+ * @memberof AnalyticsFilterEffectivenessMetrics
2554
+ */
2555
+ 'click_through_rate'?: number;
2556
+ /**
2557
+ *
2558
+ * @type {number}
2559
+ * @memberof AnalyticsFilterEffectivenessMetrics
2560
+ */
2561
+ 'conversion_rate'?: number;
2562
+ /**
2563
+ *
2564
+ * @type {number}
2565
+ * @memberof AnalyticsFilterEffectivenessMetrics
2566
+ */
2567
+ 'search_count'?: number;
2568
+ /**
2569
+ * percentage with results > 0
2570
+ * @type {number}
2571
+ * @memberof AnalyticsFilterEffectivenessMetrics
2572
+ */
2573
+ 'success_rate'?: number;
2574
+ }
2311
2575
  /**
2312
2576
  *
2313
2577
  * @export
@@ -2351,6 +2615,37 @@ export interface AnalyticsFilterEffectivenessSummary {
2351
2615
  */
2352
2616
  'total_searches'?: number;
2353
2617
  }
2618
+ /**
2619
+ *
2620
+ * @export
2621
+ * @interface AnalyticsFilterImprovementMetrics
2622
+ */
2623
+ export interface AnalyticsFilterImprovementMetrics {
2624
+ /**
2625
+ * percentage points
2626
+ * @type {number}
2627
+ * @memberof AnalyticsFilterImprovementMetrics
2628
+ */
2629
+ 'conversion_improvement'?: number;
2630
+ /**
2631
+ * percentage points
2632
+ * @type {number}
2633
+ * @memberof AnalyticsFilterImprovementMetrics
2634
+ */
2635
+ 'ctr_improvement'?: number;
2636
+ /**
2637
+ * percentage
2638
+ * @type {number}
2639
+ * @memberof AnalyticsFilterImprovementMetrics
2640
+ */
2641
+ 'results_count_improvement'?: number;
2642
+ /**
2643
+ * percentage points
2644
+ * @type {number}
2645
+ * @memberof AnalyticsFilterImprovementMetrics
2646
+ */
2647
+ 'success_rate_improvement'?: number;
2648
+ }
2354
2649
  /**
2355
2650
  *
2356
2651
  * @export
@@ -2578,6 +2873,73 @@ export interface AnalyticsFilterValueStatistic {
2578
2873
  */
2579
2874
  'value_type'?: string;
2580
2875
  }
2876
+ /**
2877
+ *
2878
+ * @export
2879
+ * @interface AnalyticsFilterValueUsage
2880
+ */
2881
+ export interface AnalyticsFilterValueUsage {
2882
+ /**
2883
+ * Position in array (if applicable)
2884
+ * @type {number}
2885
+ * @memberof AnalyticsFilterValueUsage
2886
+ */
2887
+ 'array_index'?: number;
2888
+ /**
2889
+ * Total array size (if applicable)
2890
+ * @type {number}
2891
+ * @memberof AnalyticsFilterValueUsage
2892
+ */
2893
+ 'array_length'?: number;
2894
+ /**
2895
+ *
2896
+ * @type {number}
2897
+ * @memberof AnalyticsFilterValueUsage
2898
+ */
2899
+ 'avg_results_count'?: number;
2900
+ /**
2901
+ * \"array\", \"object\", \"string\"
2902
+ * @type {string}
2903
+ * @memberof AnalyticsFilterValueUsage
2904
+ */
2905
+ 'original_type'?: string;
2906
+ /**
2907
+ * Percentage of total usage for this filter key
2908
+ * @type {number}
2909
+ * @memberof AnalyticsFilterValueUsage
2910
+ */
2911
+ 'share_of_filter_key'?: number;
2912
+ /**
2913
+ *
2914
+ * @type {number}
2915
+ * @memberof AnalyticsFilterValueUsage
2916
+ */
2917
+ 'success_rate'?: number;
2918
+ /**
2919
+ *
2920
+ * @type {number}
2921
+ * @memberof AnalyticsFilterValueUsage
2922
+ */
2923
+ 'unique_searches'?: number;
2924
+ /**
2925
+ *
2926
+ * @type {number}
2927
+ * @memberof AnalyticsFilterValueUsage
2928
+ */
2929
+ 'usage_count'?: number;
2930
+ /**
2931
+ *
2932
+ * @type {string}
2933
+ * @memberof AnalyticsFilterValueUsage
2934
+ */
2935
+ 'value'?: string;
2936
+ /**
2937
+ * \"array_element\", \"object_key\", \"string\", etc.
2938
+ * @type {string}
2939
+ * @memberof AnalyticsFilterValueUsage
2940
+ */
2941
+ 'value_type'?: string;
2942
+ }
2581
2943
  /**
2582
2944
  *
2583
2945
  * @export
@@ -4739,113 +5101,797 @@ export interface AnalyticsQueryAnalytic {
4739
5101
  'revenue_currency'?: string;
4740
5102
  /**
4741
5103
  *
4742
- * @type {number}
4743
- * @memberof AnalyticsQueryAnalytic
5104
+ * @type {number}
5105
+ * @memberof AnalyticsQueryAnalytic
5106
+ */
5107
+ 'searches'?: number;
5108
+ /**
5109
+ *
5110
+ * @type {number}
5111
+ * @memberof AnalyticsQueryAnalytic
5112
+ */
5113
+ 'unique_users'?: number;
5114
+ }
5115
+ /**
5116
+ *
5117
+ * @export
5118
+ * @interface AnalyticsQueryFilterAnalytics
5119
+ */
5120
+ export interface AnalyticsQueryFilterAnalytics {
5121
+ /**
5122
+ * NEW: Individual array element insights
5123
+ * @type {Array<AnalyticsArrayElementAnalytic>}
5124
+ * @memberof AnalyticsQueryFilterAnalytics
5125
+ */
5126
+ 'array_element_analytics'?: Array<AnalyticsArrayElementAnalytic>;
5127
+ /**
5128
+ *
5129
+ * @type {number}
5130
+ * @memberof AnalyticsQueryFilterAnalytics
5131
+ */
5132
+ 'avg_filters_per_search'?: number;
5133
+ /**
5134
+ *
5135
+ * @type {Array<AnalyticsQueryFilterCombination>}
5136
+ * @memberof AnalyticsQueryFilterAnalytics
5137
+ */
5138
+ 'filter_combinations'?: Array<AnalyticsQueryFilterCombination>;
5139
+ /**
5140
+ *
5141
+ * @type {AnalyticsQueryFilterEffectiveness}
5142
+ * @memberof AnalyticsQueryFilterAnalytics
5143
+ */
5144
+ 'filter_effectiveness'?: AnalyticsQueryFilterEffectiveness;
5145
+ /**
5146
+ *
5147
+ * @type {Array<AnalyticsQueryFilterTrend>}
5148
+ * @memberof AnalyticsQueryFilterAnalytics
5149
+ */
5150
+ 'filter_trends'?: Array<AnalyticsQueryFilterTrend>;
5151
+ /**
5152
+ *
5153
+ * @type {number}
5154
+ * @memberof AnalyticsQueryFilterAnalytics
5155
+ */
5156
+ 'filter_usage_rate'?: number;
5157
+ /**
5158
+ * NEW: Enhanced filter usage with array data (removed omitempty to always show field)
5159
+ * @type {Array<AnalyticsQueryFilterUsage>}
5160
+ * @memberof AnalyticsQueryFilterAnalytics
5161
+ */
5162
+ 'popular_filters'?: Array<AnalyticsQueryFilterUsage>;
5163
+ /**
5164
+ *
5165
+ * @type {number}
5166
+ * @memberof AnalyticsQueryFilterAnalytics
5167
+ */
5168
+ 'total_searches_with_filters'?: number;
5169
+ }
5170
+ /**
5171
+ *
5172
+ * @export
5173
+ * @interface AnalyticsQueryFilterCombination
5174
+ */
5175
+ export interface AnalyticsQueryFilterCombination {
5176
+ /**
5177
+ *
5178
+ * @type {number}
5179
+ * @memberof AnalyticsQueryFilterCombination
5180
+ */
5181
+ 'avg_results_count'?: number;
5182
+ /**
5183
+ *
5184
+ * @type {Array<string>}
5185
+ * @memberof AnalyticsQueryFilterCombination
5186
+ */
5187
+ 'filters'?: Array<string>;
5188
+ /**
5189
+ * percentage of filtered searches
5190
+ * @type {number}
5191
+ * @memberof AnalyticsQueryFilterCombination
5192
+ */
5193
+ 'share'?: number;
5194
+ /**
5195
+ *
5196
+ * @type {number}
5197
+ * @memberof AnalyticsQueryFilterCombination
5198
+ */
5199
+ 'success_rate'?: number;
5200
+ /**
5201
+ *
5202
+ * @type {number}
5203
+ * @memberof AnalyticsQueryFilterCombination
5204
+ */
5205
+ 'usage_count'?: number;
5206
+ }
5207
+ /**
5208
+ *
5209
+ * @export
5210
+ * @interface AnalyticsQueryFilterEffectiveness
5211
+ */
5212
+ export interface AnalyticsQueryFilterEffectiveness {
5213
+ /**
5214
+ *
5215
+ * @type {AnalyticsFilterImprovementMetrics}
5216
+ * @memberof AnalyticsQueryFilterEffectiveness
5217
+ */
5218
+ 'improvement'?: AnalyticsFilterImprovementMetrics;
5219
+ /**
5220
+ *
5221
+ * @type {AnalyticsFilterEffectivenessMetrics}
5222
+ * @memberof AnalyticsQueryFilterEffectiveness
5223
+ */
5224
+ 'with_filters'?: AnalyticsFilterEffectivenessMetrics;
5225
+ /**
5226
+ *
5227
+ * @type {AnalyticsFilterEffectivenessMetrics}
5228
+ * @memberof AnalyticsQueryFilterEffectiveness
5229
+ */
5230
+ 'without_filters'?: AnalyticsFilterEffectivenessMetrics;
5231
+ }
5232
+ /**
5233
+ *
5234
+ * @export
5235
+ * @interface AnalyticsQueryFilterTrend
5236
+ */
5237
+ export interface AnalyticsQueryFilterTrend {
5238
+ /**
5239
+ *
5240
+ * @type {string}
5241
+ * @memberof AnalyticsQueryFilterTrend
5242
+ */
5243
+ 'filter_key'?: string;
5244
+ /**
5245
+ *
5246
+ * @type {number}
5247
+ * @memberof AnalyticsQueryFilterTrend
5248
+ */
5249
+ 'growth_rate'?: number;
5250
+ /**
5251
+ * \"increasing\", \"decreasing\", \"stable\"
5252
+ * @type {string}
5253
+ * @memberof AnalyticsQueryFilterTrend
5254
+ */
5255
+ 'trend'?: string;
5256
+ /**
5257
+ *
5258
+ * @type {Array<AnalyticsTimeSeriesPoint>}
5259
+ * @memberof AnalyticsQueryFilterTrend
5260
+ */
5261
+ 'trend_data'?: Array<AnalyticsTimeSeriesPoint>;
5262
+ }
5263
+ /**
5264
+ *
5265
+ * @export
5266
+ * @interface AnalyticsQueryFilterUsage
5267
+ */
5268
+ export interface AnalyticsQueryFilterUsage {
5269
+ /**
5270
+ * Stats specific to array-type filters
5271
+ * @type {AnalyticsArrayFilterStats}
5272
+ * @memberof AnalyticsQueryFilterUsage
5273
+ */
5274
+ 'array_stats'?: AnalyticsArrayFilterStats;
5275
+ /**
5276
+ *
5277
+ * @type {number}
5278
+ * @memberof AnalyticsQueryFilterUsage
5279
+ */
5280
+ 'effectiveness_score'?: number;
5281
+ /**
5282
+ *
5283
+ * @type {string}
5284
+ * @memberof AnalyticsQueryFilterUsage
5285
+ */
5286
+ 'filter_key'?: string;
5287
+ /**
5288
+ * Individual values with array explosion data
5289
+ * @type {Array<AnalyticsFilterValueUsage>}
5290
+ * @memberof AnalyticsQueryFilterUsage
5291
+ */
5292
+ 'filter_values'?: Array<AnalyticsFilterValueUsage>;
5293
+ /**
5294
+ * Total times this filter key was used
5295
+ * @type {number}
5296
+ * @memberof AnalyticsQueryFilterUsage
5297
+ */
5298
+ 'total_usage'?: number;
5299
+ /**
5300
+ * Unique searches using this filter
5301
+ * @type {number}
5302
+ * @memberof AnalyticsQueryFilterUsage
5303
+ */
5304
+ 'unique_searches'?: number;
5305
+ }
5306
+ /**
5307
+ *
5308
+ * @export
5309
+ * @interface AnalyticsQueryGeoAnalytic
5310
+ */
5311
+ export interface AnalyticsQueryGeoAnalytic {
5312
+ /**
5313
+ *
5314
+ * @type {string}
5315
+ * @memberof AnalyticsQueryGeoAnalytic
5316
+ */
5317
+ 'city'?: string;
5318
+ /**
5319
+ * Clicks / Results Shown
5320
+ * @type {number}
5321
+ * @memberof AnalyticsQueryGeoAnalytic
5322
+ */
5323
+ 'click_through_rate'?: number;
5324
+ /**
5325
+ * Count of result-click events
5326
+ * @type {number}
5327
+ * @memberof AnalyticsQueryGeoAnalytic
5328
+ */
5329
+ 'clicks'?: number;
5330
+ /**
5331
+ * Conversions / Clicks (CVR)
5332
+ * @type {number}
5333
+ * @memberof AnalyticsQueryGeoAnalytic
5334
+ */
5335
+ 'conversion_rate'?: number;
5336
+ /**
5337
+ * Conversions / Searches
5338
+ * @type {number}
5339
+ * @memberof AnalyticsQueryGeoAnalytic
5340
+ */
5341
+ 'conversion_rate_per_search'?: number;
5342
+ /**
5343
+ * Post-click conversions attributed to search
5344
+ * @type {number}
5345
+ * @memberof AnalyticsQueryGeoAnalytic
5346
+ */
5347
+ 'conversions'?: number;
5348
+ /**
5349
+ *
5350
+ * @type {string}
5351
+ * @memberof AnalyticsQueryGeoAnalytic
5352
+ */
5353
+ 'country'?: string;
5354
+ /**
5355
+ *
5356
+ * @type {string}
5357
+ * @memberof AnalyticsQueryGeoAnalytic
5358
+ */
5359
+ 'country_code'?: string;
5360
+ /**
5361
+ * Searches with results but zero clicks / Results Shown
5362
+ * @type {number}
5363
+ * @memberof AnalyticsQueryGeoAnalytic
5364
+ */
5365
+ 'no_click_rate'?: number;
5366
+ /**
5367
+ * No-result searches / Searches
5368
+ * @type {number}
5369
+ * @memberof AnalyticsQueryGeoAnalytic
5370
+ */
5371
+ 'no_result_rate'?: number;
5372
+ /**
5373
+ *
5374
+ * @type {string}
5375
+ * @memberof AnalyticsQueryGeoAnalytic
5376
+ */
5377
+ 'region'?: string;
5378
+ /**
5379
+ * Count of searches that returned ≥1 result
5380
+ * @type {number}
5381
+ * @memberof AnalyticsQueryGeoAnalytic
5382
+ */
5383
+ 'results_shown'?: number;
5384
+ /**
5385
+ * Sum of attributed revenue
5386
+ * @type {number}
5387
+ * @memberof AnalyticsQueryGeoAnalytic
5388
+ */
5389
+ 'revenue'?: number;
5390
+ /**
5391
+ * Count of search events
5392
+ * @type {number}
5393
+ * @memberof AnalyticsQueryGeoAnalytic
5394
+ */
5395
+ 'searches'?: number;
5396
+ /**
5397
+ * percentage of total searches for this query
5398
+ * @type {number}
5399
+ * @memberof AnalyticsQueryGeoAnalytic
5400
+ */
5401
+ 'share'?: number;
5402
+ /**
5403
+ * Unique users
5404
+ * @type {number}
5405
+ * @memberof AnalyticsQueryGeoAnalytic
5406
+ */
5407
+ 'unique_users'?: number;
5408
+ }
5409
+ /**
5410
+ *
5411
+ * @export
5412
+ * @interface AnalyticsQueryGeoAnalyticsSection
5413
+ */
5414
+ export interface AnalyticsQueryGeoAnalyticsSection {
5415
+ /**
5416
+ *
5417
+ * @type {Array<AnalyticsQueryGeoAnalytic>}
5418
+ * @memberof AnalyticsQueryGeoAnalyticsSection
5419
+ */
5420
+ 'items'?: Array<AnalyticsQueryGeoAnalytic>;
5421
+ /**
5422
+ *
5423
+ * @type {SeekoraGoSrcAnalyticsPaginationMeta}
5424
+ * @memberof AnalyticsQueryGeoAnalyticsSection
5425
+ */
5426
+ 'meta'?: SeekoraGoSrcAnalyticsPaginationMeta;
5427
+ }
5428
+ /**
5429
+ *
5430
+ * @export
5431
+ * @interface AnalyticsQueryInsights
5432
+ */
5433
+ export interface AnalyticsQueryInsights {
5434
+ /**
5435
+ * Average rank position of clicked results (renamed for clarity)
5436
+ * @type {number}
5437
+ * @memberof AnalyticsQueryInsights
5438
+ */
5439
+ 'avg_click_position'?: number;
5440
+ /**
5441
+ * Average rank of the top result shown per search
5442
+ * @type {number}
5443
+ * @memberof AnalyticsQueryInsights
5444
+ */
5445
+ 'avg_result_rank'?: number;
5446
+ /**
5447
+ *
5448
+ * @type {Array<AnalyticsClickPositionBucket>}
5449
+ * @memberof AnalyticsQueryInsights
5450
+ */
5451
+ 'click_position_histogram'?: Array<AnalyticsClickPositionBucket>;
5452
+ /**
5453
+ * Clicks / Results Shown
5454
+ * @type {number}
5455
+ * @memberof AnalyticsQueryInsights
5456
+ */
5457
+ 'click_through_rate'?: number;
5458
+ /**
5459
+ * Conversions / Clicks (CVR)
5460
+ * @type {number}
5461
+ * @memberof AnalyticsQueryInsights
5462
+ */
5463
+ 'conversion_rate'?: number;
5464
+ /**
5465
+ * Conversions / Searches
5466
+ * @type {number}
5467
+ * @memberof AnalyticsQueryInsights
5468
+ */
5469
+ 'conversion_rate_per_search'?: number;
5470
+ /**
5471
+ * Enhanced filter analytics
5472
+ * @type {AnalyticsQueryFilterAnalytics}
5473
+ * @memberof AnalyticsQueryInsights
5474
+ */
5475
+ 'filter_analytics'?: AnalyticsQueryFilterAnalytics;
5476
+ /**
5477
+ *
5478
+ * @type {AnalyticsQueryGeoAnalyticsSection}
5479
+ * @memberof AnalyticsQueryInsights
5480
+ */
5481
+ 'geo_analytics'?: AnalyticsQueryGeoAnalyticsSection;
5482
+ /**
5483
+ *
5484
+ * @type {string}
5485
+ * @memberof AnalyticsQueryInsights
5486
+ */
5487
+ 'last_searched'?: string;
5488
+ /**
5489
+ * Searches with results but zero clicks / Results Shown
5490
+ * @type {number}
5491
+ * @memberof AnalyticsQueryInsights
5492
+ */
5493
+ 'no_click_rate'?: number;
5494
+ /**
5495
+ * No-result searches / Searches
5496
+ * @type {number}
5497
+ * @memberof AnalyticsQueryInsights
5498
+ */
5499
+ 'no_results_rate'?: number;
5500
+ /**
5501
+ *
5502
+ * @type {AnalyticsQueryPopularFiltersSection}
5503
+ * @memberof AnalyticsQueryInsights
5504
+ */
5505
+ 'popular_filters'?: AnalyticsQueryPopularFiltersSection;
5506
+ /**
5507
+ *
5508
+ * @type {AnalyticsQueryPopularResultsSection}
5509
+ * @memberof AnalyticsQueryInsights
5510
+ */
5511
+ 'popular_results'?: AnalyticsQueryPopularResultsSection;
5512
+ /**
5513
+ *
5514
+ * @type {string}
5515
+ * @memberof AnalyticsQueryInsights
5516
+ */
5517
+ 'query'?: string;
5518
+ /**
5519
+ * Searches that returned ≥1 result
5520
+ * @type {number}
5521
+ * @memberof AnalyticsQueryInsights
5522
+ */
5523
+ 'results_shown'?: number;
5524
+ /**
5525
+ * Count of result-click events
5526
+ * @type {number}
5527
+ * @memberof AnalyticsQueryInsights
5528
+ */
5529
+ 'total_clicks'?: number;
5530
+ /**
5531
+ * Count of conversions
5532
+ * @type {number}
5533
+ * @memberof AnalyticsQueryInsights
5534
+ */
5535
+ 'total_conversions'?: number;
5536
+ /**
5537
+ * Sum of attributed revenue
5538
+ * @type {number}
5539
+ * @memberof AnalyticsQueryInsights
5540
+ */
5541
+ 'total_revenue'?: number;
5542
+ /**
5543
+ *
5544
+ * @type {number}
5545
+ * @memberof AnalyticsQueryInsights
5546
+ */
5547
+ 'total_searches'?: number;
5548
+ /**
5549
+ *
5550
+ * @type {number}
5551
+ * @memberof AnalyticsQueryInsights
5552
+ */
5553
+ 'unique_users'?: number;
5554
+ }
5555
+ /**
5556
+ *
5557
+ * @export
5558
+ * @interface AnalyticsQueryPerformanceAnalytics
5559
+ */
5560
+ export interface AnalyticsQueryPerformanceAnalytics {
5561
+ /**
5562
+ *
5563
+ * @type {number}
5564
+ * @memberof AnalyticsQueryPerformanceAnalytics
5565
+ */
5566
+ 'avg_results'?: number;
5567
+ /**
5568
+ *
5569
+ * @type {number}
5570
+ * @memberof AnalyticsQueryPerformanceAnalytics
5571
+ */
5572
+ 'avg_search_duration_ms'?: number;
5573
+ /**
5574
+ * Item-level metrics
5575
+ * @type {number}
5576
+ * @memberof AnalyticsQueryPerformanceAnalytics
5577
+ */
5578
+ 'impressions'?: number;
5579
+ /**
5580
+ *
5581
+ * @type {number}
5582
+ * @memberof AnalyticsQueryPerformanceAnalytics
5583
+ */
5584
+ 'no_results_rate'?: number;
5585
+ /**
5586
+ *
5587
+ * @type {number}
5588
+ * @memberof AnalyticsQueryPerformanceAnalytics
5589
+ */
5590
+ 'no_results_searches'?: number;
5591
+ /**
5592
+ *
5593
+ * @type {string}
5594
+ * @memberof AnalyticsQueryPerformanceAnalytics
5595
+ */
5596
+ 'query'?: string;
5597
+ /**
5598
+ *
5599
+ * @type {number}
5600
+ * @memberof AnalyticsQueryPerformanceAnalytics
5601
+ */
5602
+ 'searches'?: number;
5603
+ /**
5604
+ *
5605
+ * @type {number}
5606
+ * @memberof AnalyticsQueryPerformanceAnalytics
5607
+ */
5608
+ 'top_10_impressions'?: number;
5609
+ /**
5610
+ *
5611
+ * @type {number}
5612
+ * @memberof AnalyticsQueryPerformanceAnalytics
5613
+ */
5614
+ 'top_3_impression_rate'?: number;
5615
+ /**
5616
+ *
5617
+ * @type {number}
5618
+ * @memberof AnalyticsQueryPerformanceAnalytics
5619
+ */
5620
+ 'top_3_impressions'?: number;
5621
+ /**
5622
+ *
5623
+ * @type {number}
5624
+ * @memberof AnalyticsQueryPerformanceAnalytics
5625
+ */
5626
+ 'total_results'?: number;
5627
+ /**
5628
+ * Context metrics
5629
+ * @type {number}
5630
+ * @memberof AnalyticsQueryPerformanceAnalytics
5631
+ */
5632
+ 'unique_filters'?: number;
5633
+ /**
5634
+ *
5635
+ * @type {number}
5636
+ * @memberof AnalyticsQueryPerformanceAnalytics
5637
+ */
5638
+ 'unique_items'?: number;
5639
+ /**
5640
+ *
5641
+ * @type {number}
5642
+ * @memberof AnalyticsQueryPerformanceAnalytics
5643
+ */
5644
+ 'unique_sorts'?: number;
5645
+ /**
5646
+ *
5647
+ * @type {number}
5648
+ * @memberof AnalyticsQueryPerformanceAnalytics
5649
+ */
5650
+ 'unique_users'?: number;
5651
+ }
5652
+ /**
5653
+ *
5654
+ * @export
5655
+ * @interface AnalyticsQueryPopularFilter
5656
+ */
5657
+ export interface AnalyticsQueryPopularFilter {
5658
+ /**
5659
+ * Clicks / Results Shown
5660
+ * @type {number}
5661
+ * @memberof AnalyticsQueryPopularFilter
5662
+ */
5663
+ 'click_through_rate'?: number;
5664
+ /**
5665
+ * Count of result-click events
5666
+ * @type {number}
5667
+ * @memberof AnalyticsQueryPopularFilter
5668
+ */
5669
+ 'clicks'?: number;
5670
+ /**
5671
+ * Conversions / Clicks (CVR)
5672
+ * @type {number}
5673
+ * @memberof AnalyticsQueryPopularFilter
5674
+ */
5675
+ 'conversion_rate'?: number;
5676
+ /**
5677
+ * Conversions / Searches
5678
+ * @type {number}
5679
+ * @memberof AnalyticsQueryPopularFilter
5680
+ */
5681
+ 'conversion_rate_per_search'?: number;
5682
+ /**
5683
+ * Post-click conversions attributed to search
5684
+ * @type {number}
5685
+ * @memberof AnalyticsQueryPopularFilter
5686
+ */
5687
+ 'conversions'?: number;
5688
+ /**
5689
+ *
5690
+ * @type {string}
5691
+ * @memberof AnalyticsQueryPopularFilter
5692
+ */
5693
+ 'filter_key'?: string;
5694
+ /**
5695
+ *
5696
+ * @type {string}
5697
+ * @memberof AnalyticsQueryPopularFilter
5698
+ */
5699
+ 'filter_value'?: string;
5700
+ /**
5701
+ * Searches with results but zero clicks / Results Shown
5702
+ * @type {number}
5703
+ * @memberof AnalyticsQueryPopularFilter
5704
+ */
5705
+ 'no_click_rate'?: number;
5706
+ /**
5707
+ * No-result searches / Searches
5708
+ * @type {number}
5709
+ * @memberof AnalyticsQueryPopularFilter
5710
+ */
5711
+ 'no_result_rate'?: number;
5712
+ /**
5713
+ * Count of searches that returned ≥1 result
5714
+ * @type {number}
5715
+ * @memberof AnalyticsQueryPopularFilter
5716
+ */
5717
+ 'results_shown'?: number;
5718
+ /**
5719
+ * Sum of attributed revenue
5720
+ * @type {number}
5721
+ * @memberof AnalyticsQueryPopularFilter
5722
+ */
5723
+ 'revenue'?: number;
5724
+ /**
5725
+ * Count of search events with this filter
5726
+ * @type {number}
5727
+ * @memberof AnalyticsQueryPopularFilter
5728
+ */
5729
+ 'searches'?: number;
5730
+ /**
5731
+ * percentage of searches with this filter
5732
+ * @type {number}
5733
+ * @memberof AnalyticsQueryPopularFilter
5734
+ */
5735
+ 'share'?: number;
5736
+ /**
5737
+ * Number of times this filter was used
5738
+ * @type {number}
5739
+ * @memberof AnalyticsQueryPopularFilter
5740
+ */
5741
+ 'usage_count'?: number;
5742
+ }
5743
+ /**
5744
+ *
5745
+ * @export
5746
+ * @interface AnalyticsQueryPopularFiltersSection
5747
+ */
5748
+ export interface AnalyticsQueryPopularFiltersSection {
5749
+ /**
5750
+ *
5751
+ * @type {Array<AnalyticsQueryPopularFilter>}
5752
+ * @memberof AnalyticsQueryPopularFiltersSection
4744
5753
  */
4745
- 'searches'?: number;
5754
+ 'items'?: Array<AnalyticsQueryPopularFilter>;
4746
5755
  /**
4747
5756
  *
4748
- * @type {number}
4749
- * @memberof AnalyticsQueryAnalytic
5757
+ * @type {SeekoraGoSrcAnalyticsPaginationMeta}
5758
+ * @memberof AnalyticsQueryPopularFiltersSection
4750
5759
  */
4751
- 'unique_users'?: number;
5760
+ 'meta'?: SeekoraGoSrcAnalyticsPaginationMeta;
4752
5761
  }
4753
5762
  /**
4754
5763
  *
4755
5764
  * @export
4756
- * @interface AnalyticsQueryPerformanceAnalytics
5765
+ * @interface AnalyticsQueryPopularResultWithWidget
4757
5766
  */
4758
- export interface AnalyticsQueryPerformanceAnalytics {
5767
+ export interface AnalyticsQueryPopularResultWithWidget {
4759
5768
  /**
4760
- *
5769
+ * Average rank position of clicked results
4761
5770
  * @type {number}
4762
- * @memberof AnalyticsQueryPerformanceAnalytics
5771
+ * @memberof AnalyticsQueryPopularResultWithWidget
4763
5772
  */
4764
- 'avg_results'?: number;
5773
+ 'avg_click_rank'?: number;
4765
5774
  /**
4766
- *
5775
+ * Same as AvgResultRank (backward compatibility)
4767
5776
  * @type {number}
4768
- * @memberof AnalyticsQueryPerformanceAnalytics
5777
+ * @memberof AnalyticsQueryPopularResultWithWidget
4769
5778
  */
4770
- 'avg_search_duration_ms'?: number;
5779
+ 'avg_position'?: number;
4771
5780
  /**
4772
- * Item-level metrics
5781
+ * Average rank of the top result shown per search
4773
5782
  * @type {number}
4774
- * @memberof AnalyticsQueryPerformanceAnalytics
5783
+ * @memberof AnalyticsQueryPopularResultWithWidget
4775
5784
  */
4776
- 'impressions'?: number;
5785
+ 'avg_result_rank'?: number;
4777
5786
  /**
4778
- *
5787
+ * Clicks / Results Shown
4779
5788
  * @type {number}
4780
- * @memberof AnalyticsQueryPerformanceAnalytics
5789
+ * @memberof AnalyticsQueryPopularResultWithWidget
4781
5790
  */
4782
- 'no_results_rate'?: number;
5791
+ 'click_through_rate'?: number;
4783
5792
  /**
4784
- *
5793
+ * Count of result-click events
4785
5794
  * @type {number}
4786
- * @memberof AnalyticsQueryPerformanceAnalytics
5795
+ * @memberof AnalyticsQueryPopularResultWithWidget
4787
5796
  */
4788
- 'no_results_searches'?: number;
5797
+ 'clicks'?: number;
5798
+ /**
5799
+ * Conversions / Clicks (CVR)
5800
+ * @type {number}
5801
+ * @memberof AnalyticsQueryPopularResultWithWidget
5802
+ */
5803
+ 'conversion_rate'?: number;
5804
+ /**
5805
+ * Conversions / Searches
5806
+ * @type {number}
5807
+ * @memberof AnalyticsQueryPopularResultWithWidget
5808
+ */
5809
+ 'conversion_rate_per_search'?: number;
5810
+ /**
5811
+ * Post-click conversions attributed to search
5812
+ * @type {number}
5813
+ * @memberof AnalyticsQueryPopularResultWithWidget
5814
+ */
5815
+ 'conversions'?: number;
5816
+ /**
5817
+ * Count of times item was shown
5818
+ * @type {number}
5819
+ * @memberof AnalyticsQueryPopularResultWithWidget
5820
+ */
5821
+ 'impressions'?: number;
4789
5822
  /**
4790
5823
  *
4791
5824
  * @type {string}
4792
- * @memberof AnalyticsQueryPerformanceAnalytics
5825
+ * @memberof AnalyticsQueryPopularResultWithWidget
4793
5826
  */
4794
- 'query'?: string;
5827
+ 'item_id'?: string;
4795
5828
  /**
4796
5829
  *
4797
- * @type {number}
4798
- * @memberof AnalyticsQueryPerformanceAnalytics
5830
+ * @type {string}
5831
+ * @memberof AnalyticsQueryPopularResultWithWidget
4799
5832
  */
4800
- 'searches'?: number;
5833
+ 'item_name'?: string;
4801
5834
  /**
4802
- *
5835
+ * Searches with results but zero clicks / Results Shown
4803
5836
  * @type {number}
4804
- * @memberof AnalyticsQueryPerformanceAnalytics
5837
+ * @memberof AnalyticsQueryPopularResultWithWidget
4805
5838
  */
4806
- 'top_10_impressions'?: number;
5839
+ 'no_click_rate'?: number;
4807
5840
  /**
4808
- *
5841
+ * No-result searches / Searches
4809
5842
  * @type {number}
4810
- * @memberof AnalyticsQueryPerformanceAnalytics
5843
+ * @memberof AnalyticsQueryPopularResultWithWidget
4811
5844
  */
4812
- 'top_3_impression_rate'?: number;
5845
+ 'no_result_rate'?: number;
4813
5846
  /**
4814
- *
5847
+ * Count of searches that returned ≥1 result
4815
5848
  * @type {number}
4816
- * @memberof AnalyticsQueryPerformanceAnalytics
5849
+ * @memberof AnalyticsQueryPopularResultWithWidget
4817
5850
  */
4818
- 'top_3_impressions'?: number;
5851
+ 'results_shown'?: number;
4819
5852
  /**
4820
- *
5853
+ * Sum of attributed revenue
4821
5854
  * @type {number}
4822
- * @memberof AnalyticsQueryPerformanceAnalytics
5855
+ * @memberof AnalyticsQueryPopularResultWithWidget
4823
5856
  */
4824
- 'total_results'?: number;
5857
+ 'revenue'?: number;
4825
5858
  /**
4826
- * Context metrics
5859
+ * Count of search events
4827
5860
  * @type {number}
4828
- * @memberof AnalyticsQueryPerformanceAnalytics
5861
+ * @memberof AnalyticsQueryPopularResultWithWidget
4829
5862
  */
4830
- 'unique_filters'?: number;
5863
+ 'searches'?: number;
4831
5864
  /**
4832
- *
5865
+ * percentage of total impressions for this query
4833
5866
  * @type {number}
4834
- * @memberof AnalyticsQueryPerformanceAnalytics
5867
+ * @memberof AnalyticsQueryPopularResultWithWidget
4835
5868
  */
4836
- 'unique_items'?: number;
5869
+ 'share'?: number;
5870
+ /**
5871
+ * Widget display fields
5872
+ * @type {AnalyticsWidgetData}
5873
+ * @memberof AnalyticsQueryPopularResultWithWidget
5874
+ */
5875
+ 'widget'?: AnalyticsWidgetData;
5876
+ }
5877
+ /**
5878
+ *
5879
+ * @export
5880
+ * @interface AnalyticsQueryPopularResultsSection
5881
+ */
5882
+ export interface AnalyticsQueryPopularResultsSection {
4837
5883
  /**
4838
5884
  *
4839
- * @type {number}
4840
- * @memberof AnalyticsQueryPerformanceAnalytics
5885
+ * @type {Array<AnalyticsQueryPopularResultWithWidget>}
5886
+ * @memberof AnalyticsQueryPopularResultsSection
4841
5887
  */
4842
- 'unique_sorts'?: number;
5888
+ 'items'?: Array<AnalyticsQueryPopularResultWithWidget>;
4843
5889
  /**
4844
5890
  *
4845
- * @type {number}
4846
- * @memberof AnalyticsQueryPerformanceAnalytics
5891
+ * @type {SeekoraGoSrcAnalyticsPaginationMeta}
5892
+ * @memberof AnalyticsQueryPopularResultsSection
4847
5893
  */
4848
- 'unique_users'?: number;
5894
+ 'meta'?: SeekoraGoSrcAnalyticsPaginationMeta;
4849
5895
  }
4850
5896
  /**
4851
5897
  *
@@ -5752,6 +6798,50 @@ export declare const AnalyticsRuleType: {
5752
6798
  readonly RuleTypeBanner: "banner";
5753
6799
  };
5754
6800
  export type AnalyticsRuleType = typeof AnalyticsRuleType[keyof typeof AnalyticsRuleType];
6801
+ /**
6802
+ *
6803
+ * @export
6804
+ * @interface AnalyticsSearchCount
6805
+ */
6806
+ export interface AnalyticsSearchCount {
6807
+ /**
6808
+ *
6809
+ * @type {number}
6810
+ * @memberof AnalyticsSearchCount
6811
+ */
6812
+ 'count'?: number;
6813
+ /**
6814
+ *
6815
+ * @type {string}
6816
+ * @memberof AnalyticsSearchCount
6817
+ */
6818
+ 'date'?: string;
6819
+ }
6820
+ /**
6821
+ *
6822
+ * @export
6823
+ * @interface AnalyticsSearchCountResponse
6824
+ */
6825
+ export interface AnalyticsSearchCountResponse {
6826
+ /**
6827
+ *
6828
+ * @type {Array<AnalyticsSearchCount>}
6829
+ * @memberof AnalyticsSearchCountResponse
6830
+ */
6831
+ 'data'?: Array<AnalyticsSearchCount>;
6832
+ /**
6833
+ *
6834
+ * @type {string}
6835
+ * @memberof AnalyticsSearchCountResponse
6836
+ */
6837
+ 'message'?: string;
6838
+ /**
6839
+ *
6840
+ * @type {number}
6841
+ * @memberof AnalyticsSearchCountResponse
6842
+ */
6843
+ 'status'?: number;
6844
+ }
5755
6845
  /**
5756
6846
  *
5757
6847
  * @export
@@ -21413,6 +22503,41 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
21413
22503
  * @throws {RequiredError}
21414
22504
  */
21415
22505
  adminAnalyticsStoreXStoreIDQueriesNoResultsGet: (xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22506
+ /**
22507
+ * Retrieve comprehensive analytics for a specific search query including all core metrics (Searches, Results Shown, Clicks, CTR, Avg Result Rank, Avg Click Rank, Conversions, CVR, Conversion Rate per Search, No-Result Rate, No-Click Rate, Revenue), popular results, filters, click position histogram, geo analytics, and performance metrics with deep comparison mode support and independent pagination for popular results and filters
22508
+ * @summary Get Query Insights
22509
+ * @param {string} xStoreID Store ID
22510
+ * @param {string} query Search query to analyze
22511
+ * @param {string} [startTime] Start time in RFC3339 format
22512
+ * @param {string} [endTime] End time in RFC3339 format
22513
+ * @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \&#39;campaign:summer,source:email\&#39;)
22514
+ * @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
22515
+ * @param {string} [tagsExclude] Comma-separated analytics tags to exclude
22516
+ * @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
22517
+ * @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
22518
+ * @param {string} [search] Search term to filter popular results, filters, and geo analytics (case-insensitive partial match)
22519
+ * @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
22520
+ * @param {string} [compareStartTime] Comparison period start time in RFC3339 format
22521
+ * @param {string} [compareEndTime] Comparison period end time in RFC3339 format
22522
+ * @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
22523
+ * @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
22524
+ * @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
22525
+ * @param {string} [compareTagKeyFilter] Tag key filter for comparison period
22526
+ * @param {string} [compareTagValueFilter] Tag value filter for comparison period
22527
+ * @param {number} [resultsPage] Page number for popular results pagination
22528
+ * @param {number} [resultsPageSize] Number of results per page for popular results
22529
+ * @param {string} [resultsSearch] Search term to filter popular results (case-insensitive partial match on item IDs)
22530
+ * @param {number} [filtersPage] Page number for popular filters pagination
22531
+ * @param {number} [filtersPageSize] Number of filters per page
22532
+ * @param {string} [filtersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
22533
+ * @param {number} [geoPage] Page number for geo analytics pagination
22534
+ * @param {number} [geoPageSize] Number of geo locations per page
22535
+ * @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
22536
+ * @param {boolean} [includeWidget] Whether to include widget display fields for popular results
22537
+ * @param {*} [options] Override http request option.
22538
+ * @throws {RequiredError}
22539
+ */
22540
+ adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet: (xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21416
22541
  /**
21417
22542
  * 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.
21418
22543
  * @summary Get Top Results Analytics
@@ -21513,6 +22638,14 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
21513
22638
  * @throws {RequiredError}
21514
22639
  */
21515
22640
  analyticsApiUsageStoreStoreIdGet: (storeId: string, startDate?: string, endDate?: string, method?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22641
+ /**
22642
+ * Retrieves and returns the number of search events per day for the past 7 days from ClickHouse.
22643
+ * @summary Get daily search counts for the last 7 days
22644
+ * @param {string} xStoreID Unique store identifier
22645
+ * @param {*} [options] Override http request option.
22646
+ * @throws {RequiredError}
22647
+ */
22648
+ apiAdminAnalyticsStoreXStoreIDSearchcountGet: (xStoreID: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21516
22649
  };
21517
22650
  /**
21518
22651
  * AnalyticsApi - functional programming interface
@@ -21818,6 +22951,41 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
21818
22951
  * @throws {RequiredError}
21819
22952
  */
21820
22953
  adminAnalyticsStoreXStoreIDQueriesNoResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>>;
22954
+ /**
22955
+ * Retrieve comprehensive analytics for a specific search query including all core metrics (Searches, Results Shown, Clicks, CTR, Avg Result Rank, Avg Click Rank, Conversions, CVR, Conversion Rate per Search, No-Result Rate, No-Click Rate, Revenue), popular results, filters, click position histogram, geo analytics, and performance metrics with deep comparison mode support and independent pagination for popular results and filters
22956
+ * @summary Get Query Insights
22957
+ * @param {string} xStoreID Store ID
22958
+ * @param {string} query Search query to analyze
22959
+ * @param {string} [startTime] Start time in RFC3339 format
22960
+ * @param {string} [endTime] End time in RFC3339 format
22961
+ * @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \&#39;campaign:summer,source:email\&#39;)
22962
+ * @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
22963
+ * @param {string} [tagsExclude] Comma-separated analytics tags to exclude
22964
+ * @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
22965
+ * @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
22966
+ * @param {string} [search] Search term to filter popular results, filters, and geo analytics (case-insensitive partial match)
22967
+ * @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
22968
+ * @param {string} [compareStartTime] Comparison period start time in RFC3339 format
22969
+ * @param {string} [compareEndTime] Comparison period end time in RFC3339 format
22970
+ * @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
22971
+ * @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
22972
+ * @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
22973
+ * @param {string} [compareTagKeyFilter] Tag key filter for comparison period
22974
+ * @param {string} [compareTagValueFilter] Tag value filter for comparison period
22975
+ * @param {number} [resultsPage] Page number for popular results pagination
22976
+ * @param {number} [resultsPageSize] Number of results per page for popular results
22977
+ * @param {string} [resultsSearch] Search term to filter popular results (case-insensitive partial match on item IDs)
22978
+ * @param {number} [filtersPage] Page number for popular filters pagination
22979
+ * @param {number} [filtersPageSize] Number of filters per page
22980
+ * @param {string} [filtersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
22981
+ * @param {number} [geoPage] Page number for geo analytics pagination
22982
+ * @param {number} [geoPageSize] Number of geo locations per page
22983
+ * @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
22984
+ * @param {boolean} [includeWidget] Whether to include widget display fields for popular results
22985
+ * @param {*} [options] Override http request option.
22986
+ * @throws {RequiredError}
22987
+ */
22988
+ adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>>;
21821
22989
  /**
21822
22990
  * 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.
21823
22991
  * @summary Get Top Results Analytics
@@ -21918,6 +23086,14 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
21918
23086
  * @throws {RequiredError}
21919
23087
  */
21920
23088
  analyticsApiUsageStoreStoreIdGet(storeId: string, startDate?: string, endDate?: string, method?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnalyticsAPIUsageResponse>>;
23089
+ /**
23090
+ * Retrieves and returns the number of search events per day for the past 7 days from ClickHouse.
23091
+ * @summary Get daily search counts for the last 7 days
23092
+ * @param {string} xStoreID Unique store identifier
23093
+ * @param {*} [options] Override http request option.
23094
+ * @throws {RequiredError}
23095
+ */
23096
+ apiAdminAnalyticsStoreXStoreIDSearchcountGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnalyticsSearchCountResponse>>;
21921
23097
  };
21922
23098
  /**
21923
23099
  * AnalyticsApi - factory interface
@@ -22223,6 +23399,41 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
22223
23399
  * @throws {RequiredError}
22224
23400
  */
22225
23401
  adminAnalyticsStoreXStoreIDQueriesNoResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>;
23402
+ /**
23403
+ * Retrieve comprehensive analytics for a specific search query including all core metrics (Searches, Results Shown, Clicks, CTR, Avg Result Rank, Avg Click Rank, Conversions, CVR, Conversion Rate per Search, No-Result Rate, No-Click Rate, Revenue), popular results, filters, click position histogram, geo analytics, and performance metrics with deep comparison mode support and independent pagination for popular results and filters
23404
+ * @summary Get Query Insights
23405
+ * @param {string} xStoreID Store ID
23406
+ * @param {string} query Search query to analyze
23407
+ * @param {string} [startTime] Start time in RFC3339 format
23408
+ * @param {string} [endTime] End time in RFC3339 format
23409
+ * @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \&#39;campaign:summer,source:email\&#39;)
23410
+ * @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
23411
+ * @param {string} [tagsExclude] Comma-separated analytics tags to exclude
23412
+ * @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
23413
+ * @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
23414
+ * @param {string} [search] Search term to filter popular results, filters, and geo analytics (case-insensitive partial match)
23415
+ * @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
23416
+ * @param {string} [compareStartTime] Comparison period start time in RFC3339 format
23417
+ * @param {string} [compareEndTime] Comparison period end time in RFC3339 format
23418
+ * @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
23419
+ * @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
23420
+ * @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
23421
+ * @param {string} [compareTagKeyFilter] Tag key filter for comparison period
23422
+ * @param {string} [compareTagValueFilter] Tag value filter for comparison period
23423
+ * @param {number} [resultsPage] Page number for popular results pagination
23424
+ * @param {number} [resultsPageSize] Number of results per page for popular results
23425
+ * @param {string} [resultsSearch] Search term to filter popular results (case-insensitive partial match on item IDs)
23426
+ * @param {number} [filtersPage] Page number for popular filters pagination
23427
+ * @param {number} [filtersPageSize] Number of filters per page
23428
+ * @param {string} [filtersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
23429
+ * @param {number} [geoPage] Page number for geo analytics pagination
23430
+ * @param {number} [geoPageSize] Number of geo locations per page
23431
+ * @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
23432
+ * @param {boolean} [includeWidget] Whether to include widget display fields for popular results
23433
+ * @param {*} [options] Override http request option.
23434
+ * @throws {RequiredError}
23435
+ */
23436
+ adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>;
22226
23437
  /**
22227
23438
  * 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.
22228
23439
  * @summary Get Top Results Analytics
@@ -22323,6 +23534,14 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
22323
23534
  * @throws {RequiredError}
22324
23535
  */
22325
23536
  analyticsApiUsageStoreStoreIdGet(storeId: string, startDate?: string, endDate?: string, method?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): AxiosPromise<AnalyticsAPIUsageResponse>;
23537
+ /**
23538
+ * Retrieves and returns the number of search events per day for the past 7 days from ClickHouse.
23539
+ * @summary Get daily search counts for the last 7 days
23540
+ * @param {string} xStoreID Unique store identifier
23541
+ * @param {*} [options] Override http request option.
23542
+ * @throws {RequiredError}
23543
+ */
23544
+ apiAdminAnalyticsStoreXStoreIDSearchcountGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<AnalyticsSearchCountResponse>;
22326
23545
  };
22327
23546
  /**
22328
23547
  * AnalyticsApi - object-oriented interface
@@ -22644,6 +23863,42 @@ export declare class AnalyticsApi extends BaseAPI {
22644
23863
  * @memberof AnalyticsApi
22645
23864
  */
22646
23865
  adminAnalyticsStoreXStoreIDQueriesNoResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response, any, {}>>;
23866
+ /**
23867
+ * Retrieve comprehensive analytics for a specific search query including all core metrics (Searches, Results Shown, Clicks, CTR, Avg Result Rank, Avg Click Rank, Conversions, CVR, Conversion Rate per Search, No-Result Rate, No-Click Rate, Revenue), popular results, filters, click position histogram, geo analytics, and performance metrics with deep comparison mode support and independent pagination for popular results and filters
23868
+ * @summary Get Query Insights
23869
+ * @param {string} xStoreID Store ID
23870
+ * @param {string} query Search query to analyze
23871
+ * @param {string} [startTime] Start time in RFC3339 format
23872
+ * @param {string} [endTime] End time in RFC3339 format
23873
+ * @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \&#39;campaign:summer,source:email\&#39;)
23874
+ * @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
23875
+ * @param {string} [tagsExclude] Comma-separated analytics tags to exclude
23876
+ * @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
23877
+ * @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
23878
+ * @param {string} [search] Search term to filter popular results, filters, and geo analytics (case-insensitive partial match)
23879
+ * @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
23880
+ * @param {string} [compareStartTime] Comparison period start time in RFC3339 format
23881
+ * @param {string} [compareEndTime] Comparison period end time in RFC3339 format
23882
+ * @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
23883
+ * @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
23884
+ * @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
23885
+ * @param {string} [compareTagKeyFilter] Tag key filter for comparison period
23886
+ * @param {string} [compareTagValueFilter] Tag value filter for comparison period
23887
+ * @param {number} [resultsPage] Page number for popular results pagination
23888
+ * @param {number} [resultsPageSize] Number of results per page for popular results
23889
+ * @param {string} [resultsSearch] Search term to filter popular results (case-insensitive partial match on item IDs)
23890
+ * @param {number} [filtersPage] Page number for popular filters pagination
23891
+ * @param {number} [filtersPageSize] Number of filters per page
23892
+ * @param {string} [filtersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
23893
+ * @param {number} [geoPage] Page number for geo analytics pagination
23894
+ * @param {number} [geoPageSize] Number of geo locations per page
23895
+ * @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
23896
+ * @param {boolean} [includeWidget] Whether to include widget display fields for popular results
23897
+ * @param {*} [options] Override http request option.
23898
+ * @throws {RequiredError}
23899
+ * @memberof AnalyticsApi
23900
+ */
23901
+ adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response, any, {}>>;
22647
23902
  /**
22648
23903
  * 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.
22649
23904
  * @summary Get Top Results Analytics
@@ -22749,6 +24004,15 @@ export declare class AnalyticsApi extends BaseAPI {
22749
24004
  * @memberof AnalyticsApi
22750
24005
  */
22751
24006
  analyticsApiUsageStoreStoreIdGet(storeId: string, startDate?: string, endDate?: string, method?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAPIUsageResponse, any, {}>>;
24007
+ /**
24008
+ * Retrieves and returns the number of search events per day for the past 7 days from ClickHouse.
24009
+ * @summary Get daily search counts for the last 7 days
24010
+ * @param {string} xStoreID Unique store identifier
24011
+ * @param {*} [options] Override http request option.
24012
+ * @throws {RequiredError}
24013
+ * @memberof AnalyticsApi
24014
+ */
24015
+ apiAdminAnalyticsStoreXStoreIDSearchcountGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsSearchCountResponse, any, {}>>;
22752
24016
  }
22753
24017
  /**
22754
24018
  * @export
@@ -23055,6 +24319,22 @@ export declare const AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum
23055
24319
  readonly Desc: "desc";
23056
24320
  };
23057
24321
  export type AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum = typeof AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum[keyof typeof AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum];
24322
+ /**
24323
+ * @export
24324
+ */
24325
+ export declare const AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum: {
24326
+ readonly Any: "any";
24327
+ readonly All: "all";
24328
+ };
24329
+ export type AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum = typeof AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum[keyof typeof AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum];
24330
+ /**
24331
+ * @export
24332
+ */
24333
+ export declare const AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum: {
24334
+ readonly Any: "any";
24335
+ readonly All: "all";
24336
+ };
24337
+ export type AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum = typeof AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum[keyof typeof AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum];
23058
24338
  /**
23059
24339
  * @export
23060
24340
  */