@searchstax-inc/searchstudio-ux-vue 0.2.1 → 0.2.2

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.
@@ -252,6 +252,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
252
252
  getValue: () => any;
253
253
  notify: () => void;
254
254
  };
255
+ $answer: {
256
+ value: any;
257
+ observers: Function[];
258
+ subscribe: (observer: (data: any) => void) => void;
259
+ unsubscribe: (observer: (data: any) => void) => void;
260
+ setValue: (value: any) => void;
261
+ getValue: () => any;
262
+ notify: () => void;
263
+ };
255
264
  $language: {
256
265
  value: any;
257
266
  observers: Function[];
@@ -270,6 +279,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
270
279
  readonly endResultIndex: number;
271
280
  readonly isFirstPage: boolean;
272
281
  readonly isLastPage: boolean;
282
+ readonly percentageOfResultsLoaded: number;
273
283
  readonly results: {
274
284
  custom?: any;
275
285
  ribbon: string;
@@ -295,7 +305,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
295
305
  }[];
296
306
  readonly autoCorrectedQuery: string;
297
307
  readonly originalQuery: string;
308
+ readonly getAnswerData: string;
309
+ readonly shouldShowAnswer: boolean;
298
310
  readonly searchTerm: string;
311
+ readonly searchingEverything: boolean;
312
+ readonly isInfiniteScroll: boolean;
299
313
  readonly searchExecuted: boolean;
300
314
  readonly selectedFacets: ({
301
315
  value: string;
@@ -354,6 +368,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
354
368
  hasResults: boolean;
355
369
  hasResultsOrExternalPromotions: boolean;
356
370
  searchExecuted: boolean;
371
+ searchingEverything: boolean;
357
372
  hasRelatedSearches: boolean;
358
373
  hasExternalPromotions: boolean;
359
374
  startResultIndex: number;
@@ -386,6 +401,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
386
401
  url: string;
387
402
  description: string;
388
403
  }[];
404
+ answer: string;
405
+ shouldShowAnswer: boolean;
406
+ isInfiniteScroll: boolean;
407
+ percentageOfResultsLoaded: number;
389
408
  };
390
409
  readonly trackingData: {
391
410
  searchTerm: string;
@@ -401,10 +420,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
401
420
  sessionId: string;
402
421
  autoCorrect: boolean;
403
422
  forceNotCorrect: boolean;
423
+ lastSearchValue: string;
424
+ turnAIAnswerGenerationOn: boolean;
425
+ isInfiniteScroll: boolean;
404
426
  cookieHandlingCallback: () => void;
427
+ setIsInfiniteScroll: (value: boolean) => void;
405
428
  setSearchTerm: (value: string) => void;
406
429
  setRenderingEngine: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine) => void;
407
430
  setCurrentPage: (value: number) => void;
431
+ setIsAnswerWidgetCreated: (value: boolean) => void;
408
432
  setLoading: (value: boolean) => void;
409
433
  setSearchResults: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => void;
410
434
  setSearchResultsMetadata: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchMetadata) => void;
@@ -426,6 +450,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
426
450
  setRelatedSearchesData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRelatedSearchesData) => void;
427
451
  setExternalPromotionsData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxExternalPromotionsData) => void;
428
452
  setCookiesDisabled: (data: boolean) => void;
453
+ setAnswerData: (data: string) => void;
454
+ readonly getAnswerData: any;
429
455
  readonly searchstaxConfig: {
430
456
  language: string;
431
457
  searchURL: string;
@@ -444,6 +470,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
444
470
  beforeSearch?: (props: import("@searchstax-inc/searchstudio-ux-js").ISearchObject) => import("@searchstax-inc/searchstudio-ux-js").ISearchObject;
445
471
  afterSearch?: (results: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[];
446
472
  };
473
+ turnAIAnswerGenerationOn?: boolean;
447
474
  };
448
475
  readonly searchFacets: {
449
476
  name: string;
@@ -525,10 +552,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
525
552
  }[];
526
553
  };
527
554
  readonly currentPage: number;
555
+ readonly isAnswerWidgetCreated: boolean;
528
556
  readonly renderingEngine: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine;
529
557
  readonly searchObject: {
530
558
  query: string;
531
559
  page: number;
560
+ itemsPerPage: number;
532
561
  order: string;
533
562
  facets: {
534
563
  name: string;
@@ -570,6 +599,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
570
599
  afterAutosuggest?: (result: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse;
571
600
  };
572
601
  };
602
+ readonly answerConfig: string;
573
603
  readonly autosuggestResults: {
574
604
  numFound: number;
575
605
  suggestions: {
@@ -629,6 +659,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
629
659
  hasResults: boolean;
630
660
  hasResultsOrExternalPromotions: boolean;
631
661
  searchExecuted: boolean;
662
+ searchingEverything: boolean;
632
663
  hasRelatedSearches: boolean;
633
664
  hasExternalPromotions: boolean;
634
665
  startResultIndex: number;
@@ -661,6 +692,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
661
692
  url: string;
662
693
  description: string;
663
694
  }[];
695
+ answer: string;
696
+ shouldShowAnswer: boolean;
697
+ isInfiniteScroll: boolean;
698
+ percentageOfResultsLoaded: number;
664
699
  };
665
700
  readonly selectedFacetsTemplateData: ({
666
701
  value: string;
@@ -708,6 +743,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
708
743
  hasResults: boolean;
709
744
  hasResultsOrExternalPromotions: boolean;
710
745
  searchExecuted: boolean;
746
+ searchingEverything: boolean;
711
747
  hasRelatedSearches: boolean;
712
748
  hasExternalPromotions: boolean;
713
749
  startResultIndex: number;
@@ -740,6 +776,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
740
776
  url: string;
741
777
  description: string;
742
778
  }[];
779
+ answer: string;
780
+ shouldShowAnswer: boolean;
781
+ isInfiniteScroll: boolean;
782
+ percentageOfResultsLoaded: number;
743
783
  };
744
784
  readonly searchFeedbackData: {
745
785
  currentPage: number;
@@ -773,6 +813,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
773
813
  hasResults: boolean;
774
814
  hasResultsOrExternalPromotions: boolean;
775
815
  searchExecuted: boolean;
816
+ searchingEverything: boolean;
776
817
  hasRelatedSearches: boolean;
777
818
  hasExternalPromotions: boolean;
778
819
  startResultIndex: number;
@@ -805,6 +846,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
805
846
  url: string;
806
847
  description: string;
807
848
  }[];
849
+ answer: string;
850
+ shouldShowAnswer: boolean;
851
+ isInfiniteScroll: boolean;
852
+ percentageOfResultsLoaded: number;
808
853
  };
809
854
  readonly searchSortingData: {
810
855
  currentPage: number;
@@ -838,6 +883,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
838
883
  hasResults: boolean;
839
884
  hasResultsOrExternalPromotions: boolean;
840
885
  searchExecuted: boolean;
886
+ searchingEverything: boolean;
841
887
  hasRelatedSearches: boolean;
842
888
  hasExternalPromotions: boolean;
843
889
  startResultIndex: number;
@@ -870,6 +916,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
870
916
  url: string;
871
917
  description: string;
872
918
  }[];
919
+ answer: string;
920
+ shouldShowAnswer: boolean;
921
+ isInfiniteScroll: boolean;
922
+ percentageOfResultsLoaded: number;
873
923
  };
874
924
  readonly searchRelatedSearchesData: {
875
925
  relatedSearches: {
@@ -910,6 +960,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
910
960
  hasResults: boolean;
911
961
  hasResultsOrExternalPromotions: boolean;
912
962
  searchExecuted: boolean;
963
+ searchingEverything: boolean;
913
964
  hasRelatedSearches: boolean;
914
965
  hasExternalPromotions: boolean;
915
966
  startResultIndex: number;
@@ -935,6 +986,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
935
986
  url: string;
936
987
  description: string;
937
988
  }[];
989
+ answer: string;
990
+ shouldShowAnswer: boolean;
991
+ isInfiniteScroll: boolean;
992
+ percentageOfResultsLoaded: number;
938
993
  };
939
994
  readonly searchExternalPromotionsData: {
940
995
  externalPromotions: {
@@ -974,6 +1029,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
974
1029
  hasResults: boolean;
975
1030
  hasResultsOrExternalPromotions: boolean;
976
1031
  searchExecuted: boolean;
1032
+ searchingEverything: boolean;
977
1033
  hasRelatedSearches: boolean;
978
1034
  hasExternalPromotions: boolean;
979
1035
  startResultIndex: number;
@@ -1000,10 +1056,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
1000
1056
  last?: boolean;
1001
1057
  position?: number;
1002
1058
  }[];
1059
+ answer: string;
1060
+ shouldShowAnswer: boolean;
1061
+ isInfiniteScroll: boolean;
1062
+ percentageOfResultsLoaded: number;
1003
1063
  };
1004
1064
  readonly cookiesDisabled: boolean;
1005
1065
  };
1006
1066
  config: {
1067
+ renderMethod?: "pagination" | "infiniteScroll";
1068
+ resultsPerPage?: number;
1007
1069
  templates?: {
1008
1070
  mainTemplate?: {
1009
1071
  template: string;
@@ -1220,6 +1282,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
1220
1282
  getValue: () => any;
1221
1283
  notify: () => void;
1222
1284
  };
1285
+ $answer: {
1286
+ value: any;
1287
+ observers: Function[];
1288
+ subscribe: (observer: (data: any) => void) => void;
1289
+ unsubscribe: (observer: (data: any) => void) => void;
1290
+ setValue: (value: any) => void;
1291
+ getValue: () => any;
1292
+ notify: () => void;
1293
+ };
1223
1294
  $language: {
1224
1295
  value: any;
1225
1296
  observers: Function[];
@@ -1238,6 +1309,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1238
1309
  readonly endResultIndex: number;
1239
1310
  readonly isFirstPage: boolean;
1240
1311
  readonly isLastPage: boolean;
1312
+ readonly percentageOfResultsLoaded: number;
1241
1313
  readonly results: {
1242
1314
  custom?: any;
1243
1315
  ribbon: string;
@@ -1263,7 +1335,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
1263
1335
  }[];
1264
1336
  readonly autoCorrectedQuery: string;
1265
1337
  readonly originalQuery: string;
1338
+ readonly getAnswerData: string;
1339
+ readonly shouldShowAnswer: boolean;
1266
1340
  readonly searchTerm: string;
1341
+ readonly searchingEverything: boolean;
1342
+ readonly isInfiniteScroll: boolean;
1267
1343
  readonly searchExecuted: boolean;
1268
1344
  readonly selectedFacets: ({
1269
1345
  value: string;
@@ -1322,6 +1398,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1322
1398
  hasResults: boolean;
1323
1399
  hasResultsOrExternalPromotions: boolean;
1324
1400
  searchExecuted: boolean;
1401
+ searchingEverything: boolean;
1325
1402
  hasRelatedSearches: boolean;
1326
1403
  hasExternalPromotions: boolean;
1327
1404
  startResultIndex: number;
@@ -1354,6 +1431,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1354
1431
  url: string;
1355
1432
  description: string;
1356
1433
  }[];
1434
+ answer: string;
1435
+ shouldShowAnswer: boolean;
1436
+ isInfiniteScroll: boolean;
1437
+ percentageOfResultsLoaded: number;
1357
1438
  };
1358
1439
  readonly trackingData: {
1359
1440
  searchTerm: string;
@@ -1369,10 +1450,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
1369
1450
  sessionId: string;
1370
1451
  autoCorrect: boolean;
1371
1452
  forceNotCorrect: boolean;
1453
+ lastSearchValue: string;
1454
+ turnAIAnswerGenerationOn: boolean;
1455
+ isInfiniteScroll: boolean;
1372
1456
  cookieHandlingCallback: () => void;
1457
+ setIsInfiniteScroll: (value: boolean) => void;
1373
1458
  setSearchTerm: (value: string) => void;
1374
1459
  setRenderingEngine: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine) => void;
1375
1460
  setCurrentPage: (value: number) => void;
1461
+ setIsAnswerWidgetCreated: (value: boolean) => void;
1376
1462
  setLoading: (value: boolean) => void;
1377
1463
  setSearchResults: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => void;
1378
1464
  setSearchResultsMetadata: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchMetadata) => void;
@@ -1394,6 +1480,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
1394
1480
  setRelatedSearchesData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRelatedSearchesData) => void;
1395
1481
  setExternalPromotionsData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxExternalPromotionsData) => void;
1396
1482
  setCookiesDisabled: (data: boolean) => void;
1483
+ setAnswerData: (data: string) => void;
1484
+ readonly getAnswerData: any;
1397
1485
  readonly searchstaxConfig: {
1398
1486
  language: string;
1399
1487
  searchURL: string;
@@ -1412,6 +1500,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1412
1500
  beforeSearch?: (props: import("@searchstax-inc/searchstudio-ux-js").ISearchObject) => import("@searchstax-inc/searchstudio-ux-js").ISearchObject;
1413
1501
  afterSearch?: (results: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[];
1414
1502
  };
1503
+ turnAIAnswerGenerationOn?: boolean;
1415
1504
  };
1416
1505
  readonly searchFacets: {
1417
1506
  name: string;
@@ -1493,10 +1582,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
1493
1582
  }[];
1494
1583
  };
1495
1584
  readonly currentPage: number;
1585
+ readonly isAnswerWidgetCreated: boolean;
1496
1586
  readonly renderingEngine: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine;
1497
1587
  readonly searchObject: {
1498
1588
  query: string;
1499
1589
  page: number;
1590
+ itemsPerPage: number;
1500
1591
  order: string;
1501
1592
  facets: {
1502
1593
  name: string;
@@ -1538,6 +1629,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1538
1629
  afterAutosuggest?: (result: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse;
1539
1630
  };
1540
1631
  };
1632
+ readonly answerConfig: string;
1541
1633
  readonly autosuggestResults: {
1542
1634
  numFound: number;
1543
1635
  suggestions: {
@@ -1597,6 +1689,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1597
1689
  hasResults: boolean;
1598
1690
  hasResultsOrExternalPromotions: boolean;
1599
1691
  searchExecuted: boolean;
1692
+ searchingEverything: boolean;
1600
1693
  hasRelatedSearches: boolean;
1601
1694
  hasExternalPromotions: boolean;
1602
1695
  startResultIndex: number;
@@ -1629,6 +1722,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1629
1722
  url: string;
1630
1723
  description: string;
1631
1724
  }[];
1725
+ answer: string;
1726
+ shouldShowAnswer: boolean;
1727
+ isInfiniteScroll: boolean;
1728
+ percentageOfResultsLoaded: number;
1632
1729
  };
1633
1730
  readonly selectedFacetsTemplateData: ({
1634
1731
  value: string;
@@ -1676,6 +1773,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1676
1773
  hasResults: boolean;
1677
1774
  hasResultsOrExternalPromotions: boolean;
1678
1775
  searchExecuted: boolean;
1776
+ searchingEverything: boolean;
1679
1777
  hasRelatedSearches: boolean;
1680
1778
  hasExternalPromotions: boolean;
1681
1779
  startResultIndex: number;
@@ -1708,6 +1806,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1708
1806
  url: string;
1709
1807
  description: string;
1710
1808
  }[];
1809
+ answer: string;
1810
+ shouldShowAnswer: boolean;
1811
+ isInfiniteScroll: boolean;
1812
+ percentageOfResultsLoaded: number;
1711
1813
  };
1712
1814
  readonly searchFeedbackData: {
1713
1815
  currentPage: number;
@@ -1741,6 +1843,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1741
1843
  hasResults: boolean;
1742
1844
  hasResultsOrExternalPromotions: boolean;
1743
1845
  searchExecuted: boolean;
1846
+ searchingEverything: boolean;
1744
1847
  hasRelatedSearches: boolean;
1745
1848
  hasExternalPromotions: boolean;
1746
1849
  startResultIndex: number;
@@ -1773,6 +1876,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1773
1876
  url: string;
1774
1877
  description: string;
1775
1878
  }[];
1879
+ answer: string;
1880
+ shouldShowAnswer: boolean;
1881
+ isInfiniteScroll: boolean;
1882
+ percentageOfResultsLoaded: number;
1776
1883
  };
1777
1884
  readonly searchSortingData: {
1778
1885
  currentPage: number;
@@ -1806,6 +1913,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1806
1913
  hasResults: boolean;
1807
1914
  hasResultsOrExternalPromotions: boolean;
1808
1915
  searchExecuted: boolean;
1916
+ searchingEverything: boolean;
1809
1917
  hasRelatedSearches: boolean;
1810
1918
  hasExternalPromotions: boolean;
1811
1919
  startResultIndex: number;
@@ -1838,6 +1946,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1838
1946
  url: string;
1839
1947
  description: string;
1840
1948
  }[];
1949
+ answer: string;
1950
+ shouldShowAnswer: boolean;
1951
+ isInfiniteScroll: boolean;
1952
+ percentageOfResultsLoaded: number;
1841
1953
  };
1842
1954
  readonly searchRelatedSearchesData: {
1843
1955
  relatedSearches: {
@@ -1878,6 +1990,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1878
1990
  hasResults: boolean;
1879
1991
  hasResultsOrExternalPromotions: boolean;
1880
1992
  searchExecuted: boolean;
1993
+ searchingEverything: boolean;
1881
1994
  hasRelatedSearches: boolean;
1882
1995
  hasExternalPromotions: boolean;
1883
1996
  startResultIndex: number;
@@ -1903,6 +2016,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1903
2016
  url: string;
1904
2017
  description: string;
1905
2018
  }[];
2019
+ answer: string;
2020
+ shouldShowAnswer: boolean;
2021
+ isInfiniteScroll: boolean;
2022
+ percentageOfResultsLoaded: number;
1906
2023
  };
1907
2024
  readonly searchExternalPromotionsData: {
1908
2025
  externalPromotions: {
@@ -1942,6 +2059,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1942
2059
  hasResults: boolean;
1943
2060
  hasResultsOrExternalPromotions: boolean;
1944
2061
  searchExecuted: boolean;
2062
+ searchingEverything: boolean;
1945
2063
  hasRelatedSearches: boolean;
1946
2064
  hasExternalPromotions: boolean;
1947
2065
  startResultIndex: number;
@@ -1968,6 +2086,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1968
2086
  last?: boolean;
1969
2087
  position?: number;
1970
2088
  }[];
2089
+ answer: string;
2090
+ shouldShowAnswer: boolean;
2091
+ isInfiniteScroll: boolean;
2092
+ percentageOfResultsLoaded: number;
1971
2093
  };
1972
2094
  readonly cookiesDisabled: boolean;
1973
2095
  };
@@ -2107,6 +2229,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2107
2229
  hasResults: boolean;
2108
2230
  hasResultsOrExternalPromotions: boolean;
2109
2231
  searchExecuted: boolean;
2232
+ searchingEverything: boolean;
2110
2233
  hasRelatedSearches: boolean;
2111
2234
  hasExternalPromotions: boolean;
2112
2235
  startResultIndex: number;
@@ -2139,6 +2262,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2139
2262
  url: string;
2140
2263
  description: string;
2141
2264
  }[];
2265
+ answer: string;
2266
+ shouldShowAnswer: boolean;
2267
+ isInfiniteScroll: boolean;
2268
+ percentageOfResultsLoaded: number;
2142
2269
  };
2143
2270
  cacheFacets: () => void;
2144
2271
  readonly needCache: boolean;
@@ -2357,6 +2484,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
2357
2484
  getValue: () => any;
2358
2485
  notify: () => void;
2359
2486
  };
2487
+ $answer: {
2488
+ value: any;
2489
+ observers: Function[];
2490
+ subscribe: (observer: (data: any) => void) => void;
2491
+ unsubscribe: (observer: (data: any) => void) => void;
2492
+ setValue: (value: any) => void;
2493
+ getValue: () => any;
2494
+ notify: () => void;
2495
+ };
2360
2496
  $language: {
2361
2497
  value: any;
2362
2498
  observers: Function[];
@@ -2375,6 +2511,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2375
2511
  readonly endResultIndex: number;
2376
2512
  readonly isFirstPage: boolean;
2377
2513
  readonly isLastPage: boolean;
2514
+ readonly percentageOfResultsLoaded: number;
2378
2515
  readonly results: {
2379
2516
  custom?: any;
2380
2517
  ribbon: string;
@@ -2400,7 +2537,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
2400
2537
  }[];
2401
2538
  readonly autoCorrectedQuery: string;
2402
2539
  readonly originalQuery: string;
2540
+ readonly getAnswerData: string;
2541
+ readonly shouldShowAnswer: boolean;
2403
2542
  readonly searchTerm: string;
2543
+ readonly searchingEverything: boolean;
2544
+ readonly isInfiniteScroll: boolean;
2404
2545
  readonly searchExecuted: boolean;
2405
2546
  readonly selectedFacets: ({
2406
2547
  value: string;
@@ -2459,6 +2600,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2459
2600
  hasResults: boolean;
2460
2601
  hasResultsOrExternalPromotions: boolean;
2461
2602
  searchExecuted: boolean;
2603
+ searchingEverything: boolean;
2462
2604
  hasRelatedSearches: boolean;
2463
2605
  hasExternalPromotions: boolean;
2464
2606
  startResultIndex: number;
@@ -2491,6 +2633,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2491
2633
  url: string;
2492
2634
  description: string;
2493
2635
  }[];
2636
+ answer: string;
2637
+ shouldShowAnswer: boolean;
2638
+ isInfiniteScroll: boolean;
2639
+ percentageOfResultsLoaded: number;
2494
2640
  };
2495
2641
  readonly trackingData: {
2496
2642
  searchTerm: string;
@@ -2506,10 +2652,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
2506
2652
  sessionId: string;
2507
2653
  autoCorrect: boolean;
2508
2654
  forceNotCorrect: boolean;
2655
+ lastSearchValue: string;
2656
+ turnAIAnswerGenerationOn: boolean;
2657
+ isInfiniteScroll: boolean;
2509
2658
  cookieHandlingCallback: () => void;
2659
+ setIsInfiniteScroll: (value: boolean) => void;
2510
2660
  setSearchTerm: (value: string) => void;
2511
2661
  setRenderingEngine: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine) => void;
2512
2662
  setCurrentPage: (value: number) => void;
2663
+ setIsAnswerWidgetCreated: (value: boolean) => void;
2513
2664
  setLoading: (value: boolean) => void;
2514
2665
  setSearchResults: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => void;
2515
2666
  setSearchResultsMetadata: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchMetadata) => void;
@@ -2531,6 +2682,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
2531
2682
  setRelatedSearchesData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRelatedSearchesData) => void;
2532
2683
  setExternalPromotionsData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxExternalPromotionsData) => void;
2533
2684
  setCookiesDisabled: (data: boolean) => void;
2685
+ setAnswerData: (data: string) => void;
2686
+ readonly getAnswerData: any;
2534
2687
  readonly searchstaxConfig: {
2535
2688
  language: string;
2536
2689
  searchURL: string;
@@ -2549,6 +2702,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2549
2702
  beforeSearch?: (props: import("@searchstax-inc/searchstudio-ux-js").ISearchObject) => import("@searchstax-inc/searchstudio-ux-js").ISearchObject;
2550
2703
  afterSearch?: (results: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[];
2551
2704
  };
2705
+ turnAIAnswerGenerationOn?: boolean;
2552
2706
  };
2553
2707
  readonly searchFacets: {
2554
2708
  name: string;
@@ -2630,10 +2784,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
2630
2784
  }[];
2631
2785
  };
2632
2786
  readonly currentPage: number;
2787
+ readonly isAnswerWidgetCreated: boolean;
2633
2788
  readonly renderingEngine: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine;
2634
2789
  readonly searchObject: {
2635
2790
  query: string;
2636
2791
  page: number;
2792
+ itemsPerPage: number;
2637
2793
  order: string;
2638
2794
  facets: {
2639
2795
  name: string;
@@ -2675,6 +2831,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2675
2831
  afterAutosuggest?: (result: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse;
2676
2832
  };
2677
2833
  };
2834
+ readonly answerConfig: string;
2678
2835
  readonly autosuggestResults: {
2679
2836
  numFound: number;
2680
2837
  suggestions: {
@@ -2734,6 +2891,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2734
2891
  hasResults: boolean;
2735
2892
  hasResultsOrExternalPromotions: boolean;
2736
2893
  searchExecuted: boolean;
2894
+ searchingEverything: boolean;
2737
2895
  hasRelatedSearches: boolean;
2738
2896
  hasExternalPromotions: boolean;
2739
2897
  startResultIndex: number;
@@ -2766,6 +2924,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2766
2924
  url: string;
2767
2925
  description: string;
2768
2926
  }[];
2927
+ answer: string;
2928
+ shouldShowAnswer: boolean;
2929
+ isInfiniteScroll: boolean;
2930
+ percentageOfResultsLoaded: number;
2769
2931
  };
2770
2932
  readonly selectedFacetsTemplateData: ({
2771
2933
  value: string;
@@ -2813,6 +2975,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2813
2975
  hasResults: boolean;
2814
2976
  hasResultsOrExternalPromotions: boolean;
2815
2977
  searchExecuted: boolean;
2978
+ searchingEverything: boolean;
2816
2979
  hasRelatedSearches: boolean;
2817
2980
  hasExternalPromotions: boolean;
2818
2981
  startResultIndex: number;
@@ -2845,6 +3008,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2845
3008
  url: string;
2846
3009
  description: string;
2847
3010
  }[];
3011
+ answer: string;
3012
+ shouldShowAnswer: boolean;
3013
+ isInfiniteScroll: boolean;
3014
+ percentageOfResultsLoaded: number;
2848
3015
  };
2849
3016
  readonly searchFeedbackData: {
2850
3017
  currentPage: number;
@@ -2878,6 +3045,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2878
3045
  hasResults: boolean;
2879
3046
  hasResultsOrExternalPromotions: boolean;
2880
3047
  searchExecuted: boolean;
3048
+ searchingEverything: boolean;
2881
3049
  hasRelatedSearches: boolean;
2882
3050
  hasExternalPromotions: boolean;
2883
3051
  startResultIndex: number;
@@ -2910,6 +3078,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2910
3078
  url: string;
2911
3079
  description: string;
2912
3080
  }[];
3081
+ answer: string;
3082
+ shouldShowAnswer: boolean;
3083
+ isInfiniteScroll: boolean;
3084
+ percentageOfResultsLoaded: number;
2913
3085
  };
2914
3086
  readonly searchSortingData: {
2915
3087
  currentPage: number;
@@ -2943,6 +3115,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2943
3115
  hasResults: boolean;
2944
3116
  hasResultsOrExternalPromotions: boolean;
2945
3117
  searchExecuted: boolean;
3118
+ searchingEverything: boolean;
2946
3119
  hasRelatedSearches: boolean;
2947
3120
  hasExternalPromotions: boolean;
2948
3121
  startResultIndex: number;
@@ -2975,6 +3148,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2975
3148
  url: string;
2976
3149
  description: string;
2977
3150
  }[];
3151
+ answer: string;
3152
+ shouldShowAnswer: boolean;
3153
+ isInfiniteScroll: boolean;
3154
+ percentageOfResultsLoaded: number;
2978
3155
  };
2979
3156
  readonly searchRelatedSearchesData: {
2980
3157
  relatedSearches: {
@@ -3015,6 +3192,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3015
3192
  hasResults: boolean;
3016
3193
  hasResultsOrExternalPromotions: boolean;
3017
3194
  searchExecuted: boolean;
3195
+ searchingEverything: boolean;
3018
3196
  hasRelatedSearches: boolean;
3019
3197
  hasExternalPromotions: boolean;
3020
3198
  startResultIndex: number;
@@ -3040,6 +3218,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3040
3218
  url: string;
3041
3219
  description: string;
3042
3220
  }[];
3221
+ answer: string;
3222
+ shouldShowAnswer: boolean;
3223
+ isInfiniteScroll: boolean;
3224
+ percentageOfResultsLoaded: number;
3043
3225
  };
3044
3226
  readonly searchExternalPromotionsData: {
3045
3227
  externalPromotions: {
@@ -3079,6 +3261,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3079
3261
  hasResults: boolean;
3080
3262
  hasResultsOrExternalPromotions: boolean;
3081
3263
  searchExecuted: boolean;
3264
+ searchingEverything: boolean;
3082
3265
  hasRelatedSearches: boolean;
3083
3266
  hasExternalPromotions: boolean;
3084
3267
  startResultIndex: number;
@@ -3105,6 +3288,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3105
3288
  last?: boolean;
3106
3289
  position?: number;
3107
3290
  }[];
3291
+ answer: string;
3292
+ shouldShowAnswer: boolean;
3293
+ isInfiniteScroll: boolean;
3294
+ percentageOfResultsLoaded: number;
3108
3295
  };
3109
3296
  readonly cookiesDisabled: boolean;
3110
3297
  };
@@ -3115,11 +3302,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
3115
3302
  previousButtonClass: string;
3116
3303
  nextButtonClass: string;
3117
3304
  };
3305
+ infiniteScrollTemplate?: {
3306
+ template: string;
3307
+ loadMoreButtonClass: string;
3308
+ };
3118
3309
  };
3119
3310
  };
3120
3311
  containerId: string;
3121
3312
  previousButtonClass: string;
3122
3313
  nextButtonClass: string;
3314
+ loadMoreButtonClass: string;
3123
3315
  routerHelper: {
3124
3316
  routeName: string;
3125
3317
  ignoredKeys: string[];
@@ -3144,7 +3336,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3144
3336
  searchPaginationMainContainer: HTMLElement;
3145
3337
  readonly isFirstPage: boolean;
3146
3338
  readonly isLastPage: boolean;
3147
- goToPage: (page: number) => void;
3339
+ goToPage: (page: number, ignoreScroll?: boolean) => void;
3148
3340
  nextPage: (event: Event) => void;
3149
3341
  previousPage: (event: Event) => void;
3150
3342
  };
@@ -3339,6 +3531,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
3339
3531
  getValue: () => any;
3340
3532
  notify: () => void;
3341
3533
  };
3534
+ $answer: {
3535
+ value: any;
3536
+ observers: Function[];
3537
+ subscribe: (observer: (data: any) => void) => void;
3538
+ unsubscribe: (observer: (data: any) => void) => void;
3539
+ setValue: (value: any) => void;
3540
+ getValue: () => any;
3541
+ notify: () => void;
3542
+ };
3342
3543
  $language: {
3343
3544
  value: any;
3344
3545
  observers: Function[];
@@ -3357,6 +3558,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3357
3558
  readonly endResultIndex: number;
3358
3559
  readonly isFirstPage: boolean;
3359
3560
  readonly isLastPage: boolean;
3561
+ readonly percentageOfResultsLoaded: number;
3360
3562
  readonly results: {
3361
3563
  custom?: any;
3362
3564
  ribbon: string;
@@ -3382,7 +3584,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
3382
3584
  }[];
3383
3585
  readonly autoCorrectedQuery: string;
3384
3586
  readonly originalQuery: string;
3587
+ readonly getAnswerData: string;
3588
+ readonly shouldShowAnswer: boolean;
3385
3589
  readonly searchTerm: string;
3590
+ readonly searchingEverything: boolean;
3591
+ readonly isInfiniteScroll: boolean;
3386
3592
  readonly searchExecuted: boolean;
3387
3593
  readonly selectedFacets: ({
3388
3594
  value: string;
@@ -3441,6 +3647,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3441
3647
  hasResults: boolean;
3442
3648
  hasResultsOrExternalPromotions: boolean;
3443
3649
  searchExecuted: boolean;
3650
+ searchingEverything: boolean;
3444
3651
  hasRelatedSearches: boolean;
3445
3652
  hasExternalPromotions: boolean;
3446
3653
  startResultIndex: number;
@@ -3473,6 +3680,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3473
3680
  url: string;
3474
3681
  description: string;
3475
3682
  }[];
3683
+ answer: string;
3684
+ shouldShowAnswer: boolean;
3685
+ isInfiniteScroll: boolean;
3686
+ percentageOfResultsLoaded: number;
3476
3687
  };
3477
3688
  readonly trackingData: {
3478
3689
  searchTerm: string;
@@ -3488,10 +3699,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
3488
3699
  sessionId: string;
3489
3700
  autoCorrect: boolean;
3490
3701
  forceNotCorrect: boolean;
3702
+ lastSearchValue: string;
3703
+ turnAIAnswerGenerationOn: boolean;
3704
+ isInfiniteScroll: boolean;
3491
3705
  cookieHandlingCallback: () => void;
3706
+ setIsInfiniteScroll: (value: boolean) => void;
3492
3707
  setSearchTerm: (value: string) => void;
3493
3708
  setRenderingEngine: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine) => void;
3494
3709
  setCurrentPage: (value: number) => void;
3710
+ setIsAnswerWidgetCreated: (value: boolean) => void;
3495
3711
  setLoading: (value: boolean) => void;
3496
3712
  setSearchResults: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => void;
3497
3713
  setSearchResultsMetadata: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchMetadata) => void;
@@ -3513,6 +3729,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
3513
3729
  setRelatedSearchesData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRelatedSearchesData) => void;
3514
3730
  setExternalPromotionsData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxExternalPromotionsData) => void;
3515
3731
  setCookiesDisabled: (data: boolean) => void;
3732
+ setAnswerData: (data: string) => void;
3733
+ readonly getAnswerData: any;
3516
3734
  readonly searchstaxConfig: {
3517
3735
  language: string;
3518
3736
  searchURL: string;
@@ -3531,6 +3749,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3531
3749
  beforeSearch?: (props: import("@searchstax-inc/searchstudio-ux-js").ISearchObject) => import("@searchstax-inc/searchstudio-ux-js").ISearchObject;
3532
3750
  afterSearch?: (results: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[];
3533
3751
  };
3752
+ turnAIAnswerGenerationOn?: boolean;
3534
3753
  };
3535
3754
  readonly searchFacets: {
3536
3755
  name: string;
@@ -3612,10 +3831,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
3612
3831
  }[];
3613
3832
  };
3614
3833
  readonly currentPage: number;
3834
+ readonly isAnswerWidgetCreated: boolean;
3615
3835
  readonly renderingEngine: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine;
3616
3836
  readonly searchObject: {
3617
3837
  query: string;
3618
3838
  page: number;
3839
+ itemsPerPage: number;
3619
3840
  order: string;
3620
3841
  facets: {
3621
3842
  name: string;
@@ -3657,6 +3878,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3657
3878
  afterAutosuggest?: (result: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse;
3658
3879
  };
3659
3880
  };
3881
+ readonly answerConfig: string;
3660
3882
  readonly autosuggestResults: {
3661
3883
  numFound: number;
3662
3884
  suggestions: {
@@ -3716,6 +3938,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3716
3938
  hasResults: boolean;
3717
3939
  hasResultsOrExternalPromotions: boolean;
3718
3940
  searchExecuted: boolean;
3941
+ searchingEverything: boolean;
3719
3942
  hasRelatedSearches: boolean;
3720
3943
  hasExternalPromotions: boolean;
3721
3944
  startResultIndex: number;
@@ -3748,6 +3971,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3748
3971
  url: string;
3749
3972
  description: string;
3750
3973
  }[];
3974
+ answer: string;
3975
+ shouldShowAnswer: boolean;
3976
+ isInfiniteScroll: boolean;
3977
+ percentageOfResultsLoaded: number;
3751
3978
  };
3752
3979
  readonly selectedFacetsTemplateData: ({
3753
3980
  value: string;
@@ -3795,6 +4022,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3795
4022
  hasResults: boolean;
3796
4023
  hasResultsOrExternalPromotions: boolean;
3797
4024
  searchExecuted: boolean;
4025
+ searchingEverything: boolean;
3798
4026
  hasRelatedSearches: boolean;
3799
4027
  hasExternalPromotions: boolean;
3800
4028
  startResultIndex: number;
@@ -3827,6 +4055,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3827
4055
  url: string;
3828
4056
  description: string;
3829
4057
  }[];
4058
+ answer: string;
4059
+ shouldShowAnswer: boolean;
4060
+ isInfiniteScroll: boolean;
4061
+ percentageOfResultsLoaded: number;
3830
4062
  };
3831
4063
  readonly searchFeedbackData: {
3832
4064
  currentPage: number;
@@ -3860,6 +4092,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3860
4092
  hasResults: boolean;
3861
4093
  hasResultsOrExternalPromotions: boolean;
3862
4094
  searchExecuted: boolean;
4095
+ searchingEverything: boolean;
3863
4096
  hasRelatedSearches: boolean;
3864
4097
  hasExternalPromotions: boolean;
3865
4098
  startResultIndex: number;
@@ -3892,6 +4125,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3892
4125
  url: string;
3893
4126
  description: string;
3894
4127
  }[];
4128
+ answer: string;
4129
+ shouldShowAnswer: boolean;
4130
+ isInfiniteScroll: boolean;
4131
+ percentageOfResultsLoaded: number;
3895
4132
  };
3896
4133
  readonly searchSortingData: {
3897
4134
  currentPage: number;
@@ -3925,6 +4162,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3925
4162
  hasResults: boolean;
3926
4163
  hasResultsOrExternalPromotions: boolean;
3927
4164
  searchExecuted: boolean;
4165
+ searchingEverything: boolean;
3928
4166
  hasRelatedSearches: boolean;
3929
4167
  hasExternalPromotions: boolean;
3930
4168
  startResultIndex: number;
@@ -3957,6 +4195,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3957
4195
  url: string;
3958
4196
  description: string;
3959
4197
  }[];
4198
+ answer: string;
4199
+ shouldShowAnswer: boolean;
4200
+ isInfiniteScroll: boolean;
4201
+ percentageOfResultsLoaded: number;
3960
4202
  };
3961
4203
  readonly searchRelatedSearchesData: {
3962
4204
  relatedSearches: {
@@ -3997,6 +4239,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3997
4239
  hasResults: boolean;
3998
4240
  hasResultsOrExternalPromotions: boolean;
3999
4241
  searchExecuted: boolean;
4242
+ searchingEverything: boolean;
4000
4243
  hasRelatedSearches: boolean;
4001
4244
  hasExternalPromotions: boolean;
4002
4245
  startResultIndex: number;
@@ -4022,6 +4265,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
4022
4265
  url: string;
4023
4266
  description: string;
4024
4267
  }[];
4268
+ answer: string;
4269
+ shouldShowAnswer: boolean;
4270
+ isInfiniteScroll: boolean;
4271
+ percentageOfResultsLoaded: number;
4025
4272
  };
4026
4273
  readonly searchExternalPromotionsData: {
4027
4274
  externalPromotions: {
@@ -4061,6 +4308,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4061
4308
  hasResults: boolean;
4062
4309
  hasResultsOrExternalPromotions: boolean;
4063
4310
  searchExecuted: boolean;
4311
+ searchingEverything: boolean;
4064
4312
  hasRelatedSearches: boolean;
4065
4313
  hasExternalPromotions: boolean;
4066
4314
  startResultIndex: number;
@@ -4087,6 +4335,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
4087
4335
  last?: boolean;
4088
4336
  position?: number;
4089
4337
  }[];
4338
+ answer: string;
4339
+ shouldShowAnswer: boolean;
4340
+ isInfiniteScroll: boolean;
4341
+ percentageOfResultsLoaded: number;
4090
4342
  };
4091
4343
  readonly cookiesDisabled: boolean;
4092
4344
  };
@@ -4294,6 +4546,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
4294
4546
  getValue: () => any;
4295
4547
  notify: () => void;
4296
4548
  };
4549
+ $answer: {
4550
+ value: any;
4551
+ observers: Function[];
4552
+ subscribe: (observer: (data: any) => void) => void;
4553
+ unsubscribe: (observer: (data: any) => void) => void;
4554
+ setValue: (value: any) => void;
4555
+ getValue: () => any;
4556
+ notify: () => void;
4557
+ };
4297
4558
  $language: {
4298
4559
  value: any;
4299
4560
  observers: Function[];
@@ -4312,6 +4573,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4312
4573
  readonly endResultIndex: number;
4313
4574
  readonly isFirstPage: boolean;
4314
4575
  readonly isLastPage: boolean;
4576
+ readonly percentageOfResultsLoaded: number;
4315
4577
  readonly results: {
4316
4578
  custom?: any;
4317
4579
  ribbon: string;
@@ -4337,7 +4599,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
4337
4599
  }[];
4338
4600
  readonly autoCorrectedQuery: string;
4339
4601
  readonly originalQuery: string;
4602
+ readonly getAnswerData: string;
4603
+ readonly shouldShowAnswer: boolean;
4340
4604
  readonly searchTerm: string;
4605
+ readonly searchingEverything: boolean;
4606
+ readonly isInfiniteScroll: boolean;
4341
4607
  readonly searchExecuted: boolean;
4342
4608
  readonly selectedFacets: ({
4343
4609
  value: string;
@@ -4396,6 +4662,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4396
4662
  hasResults: boolean;
4397
4663
  hasResultsOrExternalPromotions: boolean;
4398
4664
  searchExecuted: boolean;
4665
+ searchingEverything: boolean;
4399
4666
  hasRelatedSearches: boolean;
4400
4667
  hasExternalPromotions: boolean;
4401
4668
  startResultIndex: number;
@@ -4428,6 +4695,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
4428
4695
  url: string;
4429
4696
  description: string;
4430
4697
  }[];
4698
+ answer: string;
4699
+ shouldShowAnswer: boolean;
4700
+ isInfiniteScroll: boolean;
4701
+ percentageOfResultsLoaded: number;
4431
4702
  };
4432
4703
  readonly trackingData: {
4433
4704
  searchTerm: string;
@@ -4443,10 +4714,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
4443
4714
  sessionId: string;
4444
4715
  autoCorrect: boolean;
4445
4716
  forceNotCorrect: boolean;
4717
+ lastSearchValue: string;
4718
+ turnAIAnswerGenerationOn: boolean;
4719
+ isInfiniteScroll: boolean;
4446
4720
  cookieHandlingCallback: () => void;
4721
+ setIsInfiniteScroll: (value: boolean) => void;
4447
4722
  setSearchTerm: (value: string) => void;
4448
4723
  setRenderingEngine: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine) => void;
4449
4724
  setCurrentPage: (value: number) => void;
4725
+ setIsAnswerWidgetCreated: (value: boolean) => void;
4450
4726
  setLoading: (value: boolean) => void;
4451
4727
  setSearchResults: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => void;
4452
4728
  setSearchResultsMetadata: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchMetadata) => void;
@@ -4468,6 +4744,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
4468
4744
  setRelatedSearchesData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRelatedSearchesData) => void;
4469
4745
  setExternalPromotionsData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxExternalPromotionsData) => void;
4470
4746
  setCookiesDisabled: (data: boolean) => void;
4747
+ setAnswerData: (data: string) => void;
4748
+ readonly getAnswerData: any;
4471
4749
  readonly searchstaxConfig: {
4472
4750
  language: string;
4473
4751
  searchURL: string;
@@ -4486,6 +4764,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4486
4764
  beforeSearch?: (props: import("@searchstax-inc/searchstudio-ux-js").ISearchObject) => import("@searchstax-inc/searchstudio-ux-js").ISearchObject;
4487
4765
  afterSearch?: (results: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[];
4488
4766
  };
4767
+ turnAIAnswerGenerationOn?: boolean;
4489
4768
  };
4490
4769
  readonly searchFacets: {
4491
4770
  name: string;
@@ -4567,10 +4846,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
4567
4846
  }[];
4568
4847
  };
4569
4848
  readonly currentPage: number;
4849
+ readonly isAnswerWidgetCreated: boolean;
4570
4850
  readonly renderingEngine: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine;
4571
4851
  readonly searchObject: {
4572
4852
  query: string;
4573
4853
  page: number;
4854
+ itemsPerPage: number;
4574
4855
  order: string;
4575
4856
  facets: {
4576
4857
  name: string;
@@ -4612,6 +4893,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4612
4893
  afterAutosuggest?: (result: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse;
4613
4894
  };
4614
4895
  };
4896
+ readonly answerConfig: string;
4615
4897
  readonly autosuggestResults: {
4616
4898
  numFound: number;
4617
4899
  suggestions: {
@@ -4671,6 +4953,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4671
4953
  hasResults: boolean;
4672
4954
  hasResultsOrExternalPromotions: boolean;
4673
4955
  searchExecuted: boolean;
4956
+ searchingEverything: boolean;
4674
4957
  hasRelatedSearches: boolean;
4675
4958
  hasExternalPromotions: boolean;
4676
4959
  startResultIndex: number;
@@ -4703,6 +4986,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
4703
4986
  url: string;
4704
4987
  description: string;
4705
4988
  }[];
4989
+ answer: string;
4990
+ shouldShowAnswer: boolean;
4991
+ isInfiniteScroll: boolean;
4992
+ percentageOfResultsLoaded: number;
4706
4993
  };
4707
4994
  readonly selectedFacetsTemplateData: ({
4708
4995
  value: string;
@@ -4750,6 +5037,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4750
5037
  hasResults: boolean;
4751
5038
  hasResultsOrExternalPromotions: boolean;
4752
5039
  searchExecuted: boolean;
5040
+ searchingEverything: boolean;
4753
5041
  hasRelatedSearches: boolean;
4754
5042
  hasExternalPromotions: boolean;
4755
5043
  startResultIndex: number;
@@ -4782,6 +5070,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
4782
5070
  url: string;
4783
5071
  description: string;
4784
5072
  }[];
5073
+ answer: string;
5074
+ shouldShowAnswer: boolean;
5075
+ isInfiniteScroll: boolean;
5076
+ percentageOfResultsLoaded: number;
4785
5077
  };
4786
5078
  readonly searchFeedbackData: {
4787
5079
  currentPage: number;
@@ -4815,6 +5107,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4815
5107
  hasResults: boolean;
4816
5108
  hasResultsOrExternalPromotions: boolean;
4817
5109
  searchExecuted: boolean;
5110
+ searchingEverything: boolean;
4818
5111
  hasRelatedSearches: boolean;
4819
5112
  hasExternalPromotions: boolean;
4820
5113
  startResultIndex: number;
@@ -4847,6 +5140,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
4847
5140
  url: string;
4848
5141
  description: string;
4849
5142
  }[];
5143
+ answer: string;
5144
+ shouldShowAnswer: boolean;
5145
+ isInfiniteScroll: boolean;
5146
+ percentageOfResultsLoaded: number;
4850
5147
  };
4851
5148
  readonly searchSortingData: {
4852
5149
  currentPage: number;
@@ -4880,6 +5177,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4880
5177
  hasResults: boolean;
4881
5178
  hasResultsOrExternalPromotions: boolean;
4882
5179
  searchExecuted: boolean;
5180
+ searchingEverything: boolean;
4883
5181
  hasRelatedSearches: boolean;
4884
5182
  hasExternalPromotions: boolean;
4885
5183
  startResultIndex: number;
@@ -4912,6 +5210,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
4912
5210
  url: string;
4913
5211
  description: string;
4914
5212
  }[];
5213
+ answer: string;
5214
+ shouldShowAnswer: boolean;
5215
+ isInfiniteScroll: boolean;
5216
+ percentageOfResultsLoaded: number;
4915
5217
  };
4916
5218
  readonly searchRelatedSearchesData: {
4917
5219
  relatedSearches: {
@@ -4952,6 +5254,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4952
5254
  hasResults: boolean;
4953
5255
  hasResultsOrExternalPromotions: boolean;
4954
5256
  searchExecuted: boolean;
5257
+ searchingEverything: boolean;
4955
5258
  hasRelatedSearches: boolean;
4956
5259
  hasExternalPromotions: boolean;
4957
5260
  startResultIndex: number;
@@ -4977,6 +5280,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
4977
5280
  url: string;
4978
5281
  description: string;
4979
5282
  }[];
5283
+ answer: string;
5284
+ shouldShowAnswer: boolean;
5285
+ isInfiniteScroll: boolean;
5286
+ percentageOfResultsLoaded: number;
4980
5287
  };
4981
5288
  readonly searchExternalPromotionsData: {
4982
5289
  externalPromotions: {
@@ -5016,6 +5323,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5016
5323
  hasResults: boolean;
5017
5324
  hasResultsOrExternalPromotions: boolean;
5018
5325
  searchExecuted: boolean;
5326
+ searchingEverything: boolean;
5019
5327
  hasRelatedSearches: boolean;
5020
5328
  hasExternalPromotions: boolean;
5021
5329
  startResultIndex: number;
@@ -5042,6 +5350,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
5042
5350
  last?: boolean;
5043
5351
  position?: number;
5044
5352
  }[];
5353
+ answer: string;
5354
+ shouldShowAnswer: boolean;
5355
+ isInfiniteScroll: boolean;
5356
+ percentageOfResultsLoaded: number;
5045
5357
  };
5046
5358
  readonly cookiesDisabled: boolean;
5047
5359
  };
@@ -5250,6 +5562,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
5250
5562
  getValue: () => any;
5251
5563
  notify: () => void;
5252
5564
  };
5565
+ $answer: {
5566
+ value: any;
5567
+ observers: Function[];
5568
+ subscribe: (observer: (data: any) => void) => void;
5569
+ unsubscribe: (observer: (data: any) => void) => void;
5570
+ setValue: (value: any) => void;
5571
+ getValue: () => any;
5572
+ notify: () => void;
5573
+ };
5253
5574
  $language: {
5254
5575
  value: any;
5255
5576
  observers: Function[];
@@ -5268,6 +5589,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5268
5589
  readonly endResultIndex: number;
5269
5590
  readonly isFirstPage: boolean;
5270
5591
  readonly isLastPage: boolean;
5592
+ readonly percentageOfResultsLoaded: number;
5271
5593
  readonly results: {
5272
5594
  custom?: any;
5273
5595
  ribbon: string;
@@ -5293,7 +5615,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
5293
5615
  }[];
5294
5616
  readonly autoCorrectedQuery: string;
5295
5617
  readonly originalQuery: string;
5618
+ readonly getAnswerData: string;
5619
+ readonly shouldShowAnswer: boolean;
5296
5620
  readonly searchTerm: string;
5621
+ readonly searchingEverything: boolean;
5622
+ readonly isInfiniteScroll: boolean;
5297
5623
  readonly searchExecuted: boolean;
5298
5624
  readonly selectedFacets: ({
5299
5625
  value: string;
@@ -5352,6 +5678,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5352
5678
  hasResults: boolean;
5353
5679
  hasResultsOrExternalPromotions: boolean;
5354
5680
  searchExecuted: boolean;
5681
+ searchingEverything: boolean;
5355
5682
  hasRelatedSearches: boolean;
5356
5683
  hasExternalPromotions: boolean;
5357
5684
  startResultIndex: number;
@@ -5384,6 +5711,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
5384
5711
  url: string;
5385
5712
  description: string;
5386
5713
  }[];
5714
+ answer: string;
5715
+ shouldShowAnswer: boolean;
5716
+ isInfiniteScroll: boolean;
5717
+ percentageOfResultsLoaded: number;
5387
5718
  };
5388
5719
  readonly trackingData: {
5389
5720
  searchTerm: string;
@@ -5399,10 +5730,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
5399
5730
  sessionId: string;
5400
5731
  autoCorrect: boolean;
5401
5732
  forceNotCorrect: boolean;
5733
+ lastSearchValue: string;
5734
+ turnAIAnswerGenerationOn: boolean;
5735
+ isInfiniteScroll: boolean;
5402
5736
  cookieHandlingCallback: () => void;
5737
+ setIsInfiniteScroll: (value: boolean) => void;
5403
5738
  setSearchTerm: (value: string) => void;
5404
5739
  setRenderingEngine: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine) => void;
5405
5740
  setCurrentPage: (value: number) => void;
5741
+ setIsAnswerWidgetCreated: (value: boolean) => void;
5406
5742
  setLoading: (value: boolean) => void;
5407
5743
  setSearchResults: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => void;
5408
5744
  setSearchResultsMetadata: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchMetadata) => void;
@@ -5424,6 +5760,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
5424
5760
  setRelatedSearchesData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRelatedSearchesData) => void;
5425
5761
  setExternalPromotionsData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxExternalPromotionsData) => void;
5426
5762
  setCookiesDisabled: (data: boolean) => void;
5763
+ setAnswerData: (data: string) => void;
5764
+ readonly getAnswerData: any;
5427
5765
  readonly searchstaxConfig: {
5428
5766
  language: string;
5429
5767
  searchURL: string;
@@ -5442,6 +5780,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5442
5780
  beforeSearch?: (props: import("@searchstax-inc/searchstudio-ux-js").ISearchObject) => import("@searchstax-inc/searchstudio-ux-js").ISearchObject;
5443
5781
  afterSearch?: (results: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[];
5444
5782
  };
5783
+ turnAIAnswerGenerationOn?: boolean;
5445
5784
  };
5446
5785
  readonly searchFacets: {
5447
5786
  name: string;
@@ -5523,10 +5862,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
5523
5862
  }[];
5524
5863
  };
5525
5864
  readonly currentPage: number;
5865
+ readonly isAnswerWidgetCreated: boolean;
5526
5866
  readonly renderingEngine: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine;
5527
5867
  readonly searchObject: {
5528
5868
  query: string;
5529
5869
  page: number;
5870
+ itemsPerPage: number;
5530
5871
  order: string;
5531
5872
  facets: {
5532
5873
  name: string;
@@ -5568,6 +5909,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5568
5909
  afterAutosuggest?: (result: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse;
5569
5910
  };
5570
5911
  };
5912
+ readonly answerConfig: string;
5571
5913
  readonly autosuggestResults: {
5572
5914
  numFound: number;
5573
5915
  suggestions: {
@@ -5627,6 +5969,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5627
5969
  hasResults: boolean;
5628
5970
  hasResultsOrExternalPromotions: boolean;
5629
5971
  searchExecuted: boolean;
5972
+ searchingEverything: boolean;
5630
5973
  hasRelatedSearches: boolean;
5631
5974
  hasExternalPromotions: boolean;
5632
5975
  startResultIndex: number;
@@ -5659,6 +6002,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
5659
6002
  url: string;
5660
6003
  description: string;
5661
6004
  }[];
6005
+ answer: string;
6006
+ shouldShowAnswer: boolean;
6007
+ isInfiniteScroll: boolean;
6008
+ percentageOfResultsLoaded: number;
5662
6009
  };
5663
6010
  readonly selectedFacetsTemplateData: ({
5664
6011
  value: string;
@@ -5706,6 +6053,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5706
6053
  hasResults: boolean;
5707
6054
  hasResultsOrExternalPromotions: boolean;
5708
6055
  searchExecuted: boolean;
6056
+ searchingEverything: boolean;
5709
6057
  hasRelatedSearches: boolean;
5710
6058
  hasExternalPromotions: boolean;
5711
6059
  startResultIndex: number;
@@ -5738,6 +6086,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
5738
6086
  url: string;
5739
6087
  description: string;
5740
6088
  }[];
6089
+ answer: string;
6090
+ shouldShowAnswer: boolean;
6091
+ isInfiniteScroll: boolean;
6092
+ percentageOfResultsLoaded: number;
5741
6093
  };
5742
6094
  readonly searchFeedbackData: {
5743
6095
  currentPage: number;
@@ -5771,6 +6123,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5771
6123
  hasResults: boolean;
5772
6124
  hasResultsOrExternalPromotions: boolean;
5773
6125
  searchExecuted: boolean;
6126
+ searchingEverything: boolean;
5774
6127
  hasRelatedSearches: boolean;
5775
6128
  hasExternalPromotions: boolean;
5776
6129
  startResultIndex: number;
@@ -5803,6 +6156,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
5803
6156
  url: string;
5804
6157
  description: string;
5805
6158
  }[];
6159
+ answer: string;
6160
+ shouldShowAnswer: boolean;
6161
+ isInfiniteScroll: boolean;
6162
+ percentageOfResultsLoaded: number;
5806
6163
  };
5807
6164
  readonly searchSortingData: {
5808
6165
  currentPage: number;
@@ -5836,6 +6193,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5836
6193
  hasResults: boolean;
5837
6194
  hasResultsOrExternalPromotions: boolean;
5838
6195
  searchExecuted: boolean;
6196
+ searchingEverything: boolean;
5839
6197
  hasRelatedSearches: boolean;
5840
6198
  hasExternalPromotions: boolean;
5841
6199
  startResultIndex: number;
@@ -5868,6 +6226,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
5868
6226
  url: string;
5869
6227
  description: string;
5870
6228
  }[];
6229
+ answer: string;
6230
+ shouldShowAnswer: boolean;
6231
+ isInfiniteScroll: boolean;
6232
+ percentageOfResultsLoaded: number;
5871
6233
  };
5872
6234
  readonly searchRelatedSearchesData: {
5873
6235
  relatedSearches: {
@@ -5908,6 +6270,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5908
6270
  hasResults: boolean;
5909
6271
  hasResultsOrExternalPromotions: boolean;
5910
6272
  searchExecuted: boolean;
6273
+ searchingEverything: boolean;
5911
6274
  hasRelatedSearches: boolean;
5912
6275
  hasExternalPromotions: boolean;
5913
6276
  startResultIndex: number;
@@ -5933,6 +6296,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
5933
6296
  url: string;
5934
6297
  description: string;
5935
6298
  }[];
6299
+ answer: string;
6300
+ shouldShowAnswer: boolean;
6301
+ isInfiniteScroll: boolean;
6302
+ percentageOfResultsLoaded: number;
5936
6303
  };
5937
6304
  readonly searchExternalPromotionsData: {
5938
6305
  externalPromotions: {
@@ -5972,6 +6339,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5972
6339
  hasResults: boolean;
5973
6340
  hasResultsOrExternalPromotions: boolean;
5974
6341
  searchExecuted: boolean;
6342
+ searchingEverything: boolean;
5975
6343
  hasRelatedSearches: boolean;
5976
6344
  hasExternalPromotions: boolean;
5977
6345
  startResultIndex: number;
@@ -5998,6 +6366,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
5998
6366
  last?: boolean;
5999
6367
  position?: number;
6000
6368
  }[];
6369
+ answer: string;
6370
+ shouldShowAnswer: boolean;
6371
+ isInfiniteScroll: boolean;
6372
+ percentageOfResultsLoaded: number;
6001
6373
  };
6002
6374
  readonly cookiesDisabled: boolean;
6003
6375
  };
@@ -6213,6 +6585,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
6213
6585
  getValue: () => any;
6214
6586
  notify: () => void;
6215
6587
  };
6588
+ $answer: {
6589
+ value: any;
6590
+ observers: Function[];
6591
+ subscribe: (observer: (data: any) => void) => void;
6592
+ unsubscribe: (observer: (data: any) => void) => void;
6593
+ setValue: (value: any) => void;
6594
+ getValue: () => any;
6595
+ notify: () => void;
6596
+ };
6216
6597
  $language: {
6217
6598
  value: any;
6218
6599
  observers: Function[];
@@ -6231,6 +6612,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6231
6612
  readonly endResultIndex: number;
6232
6613
  readonly isFirstPage: boolean;
6233
6614
  readonly isLastPage: boolean;
6615
+ readonly percentageOfResultsLoaded: number;
6234
6616
  readonly results: {
6235
6617
  custom?: any;
6236
6618
  ribbon: string;
@@ -6256,7 +6638,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
6256
6638
  }[];
6257
6639
  readonly autoCorrectedQuery: string;
6258
6640
  readonly originalQuery: string;
6641
+ readonly getAnswerData: string;
6642
+ readonly shouldShowAnswer: boolean;
6259
6643
  readonly searchTerm: string;
6644
+ readonly searchingEverything: boolean;
6645
+ readonly isInfiniteScroll: boolean;
6260
6646
  readonly searchExecuted: boolean;
6261
6647
  readonly selectedFacets: ({
6262
6648
  value: string;
@@ -6315,6 +6701,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6315
6701
  hasResults: boolean;
6316
6702
  hasResultsOrExternalPromotions: boolean;
6317
6703
  searchExecuted: boolean;
6704
+ searchingEverything: boolean;
6318
6705
  hasRelatedSearches: boolean;
6319
6706
  hasExternalPromotions: boolean;
6320
6707
  startResultIndex: number;
@@ -6347,6 +6734,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
6347
6734
  url: string;
6348
6735
  description: string;
6349
6736
  }[];
6737
+ answer: string;
6738
+ shouldShowAnswer: boolean;
6739
+ isInfiniteScroll: boolean;
6740
+ percentageOfResultsLoaded: number;
6350
6741
  };
6351
6742
  readonly trackingData: {
6352
6743
  searchTerm: string;
@@ -6362,10 +6753,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
6362
6753
  sessionId: string;
6363
6754
  autoCorrect: boolean;
6364
6755
  forceNotCorrect: boolean;
6756
+ lastSearchValue: string;
6757
+ turnAIAnswerGenerationOn: boolean;
6758
+ isInfiniteScroll: boolean;
6365
6759
  cookieHandlingCallback: () => void;
6760
+ setIsInfiniteScroll: (value: boolean) => void;
6366
6761
  setSearchTerm: (value: string) => void;
6367
6762
  setRenderingEngine: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine) => void;
6368
6763
  setCurrentPage: (value: number) => void;
6764
+ setIsAnswerWidgetCreated: (value: boolean) => void;
6369
6765
  setLoading: (value: boolean) => void;
6370
6766
  setSearchResults: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => void;
6371
6767
  setSearchResultsMetadata: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchMetadata) => void;
@@ -6387,6 +6783,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
6387
6783
  setRelatedSearchesData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRelatedSearchesData) => void;
6388
6784
  setExternalPromotionsData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxExternalPromotionsData) => void;
6389
6785
  setCookiesDisabled: (data: boolean) => void;
6786
+ setAnswerData: (data: string) => void;
6787
+ readonly getAnswerData: any;
6390
6788
  readonly searchstaxConfig: {
6391
6789
  language: string;
6392
6790
  searchURL: string;
@@ -6405,6 +6803,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6405
6803
  beforeSearch?: (props: import("@searchstax-inc/searchstudio-ux-js").ISearchObject) => import("@searchstax-inc/searchstudio-ux-js").ISearchObject;
6406
6804
  afterSearch?: (results: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[];
6407
6805
  };
6806
+ turnAIAnswerGenerationOn?: boolean;
6408
6807
  };
6409
6808
  readonly searchFacets: {
6410
6809
  name: string;
@@ -6486,10 +6885,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
6486
6885
  }[];
6487
6886
  };
6488
6887
  readonly currentPage: number;
6888
+ readonly isAnswerWidgetCreated: boolean;
6489
6889
  readonly renderingEngine: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine;
6490
6890
  readonly searchObject: {
6491
6891
  query: string;
6492
6892
  page: number;
6893
+ itemsPerPage: number;
6493
6894
  order: string;
6494
6895
  facets: {
6495
6896
  name: string;
@@ -6531,6 +6932,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6531
6932
  afterAutosuggest?: (result: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse;
6532
6933
  };
6533
6934
  };
6935
+ readonly answerConfig: string;
6534
6936
  readonly autosuggestResults: {
6535
6937
  numFound: number;
6536
6938
  suggestions: {
@@ -6590,6 +6992,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6590
6992
  hasResults: boolean;
6591
6993
  hasResultsOrExternalPromotions: boolean;
6592
6994
  searchExecuted: boolean;
6995
+ searchingEverything: boolean;
6593
6996
  hasRelatedSearches: boolean;
6594
6997
  hasExternalPromotions: boolean;
6595
6998
  startResultIndex: number;
@@ -6622,6 +7025,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
6622
7025
  url: string;
6623
7026
  description: string;
6624
7027
  }[];
7028
+ answer: string;
7029
+ shouldShowAnswer: boolean;
7030
+ isInfiniteScroll: boolean;
7031
+ percentageOfResultsLoaded: number;
6625
7032
  };
6626
7033
  readonly selectedFacetsTemplateData: ({
6627
7034
  value: string;
@@ -6669,6 +7076,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6669
7076
  hasResults: boolean;
6670
7077
  hasResultsOrExternalPromotions: boolean;
6671
7078
  searchExecuted: boolean;
7079
+ searchingEverything: boolean;
6672
7080
  hasRelatedSearches: boolean;
6673
7081
  hasExternalPromotions: boolean;
6674
7082
  startResultIndex: number;
@@ -6701,6 +7109,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
6701
7109
  url: string;
6702
7110
  description: string;
6703
7111
  }[];
7112
+ answer: string;
7113
+ shouldShowAnswer: boolean;
7114
+ isInfiniteScroll: boolean;
7115
+ percentageOfResultsLoaded: number;
6704
7116
  };
6705
7117
  readonly searchFeedbackData: {
6706
7118
  currentPage: number;
@@ -6734,6 +7146,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6734
7146
  hasResults: boolean;
6735
7147
  hasResultsOrExternalPromotions: boolean;
6736
7148
  searchExecuted: boolean;
7149
+ searchingEverything: boolean;
6737
7150
  hasRelatedSearches: boolean;
6738
7151
  hasExternalPromotions: boolean;
6739
7152
  startResultIndex: number;
@@ -6766,6 +7179,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
6766
7179
  url: string;
6767
7180
  description: string;
6768
7181
  }[];
7182
+ answer: string;
7183
+ shouldShowAnswer: boolean;
7184
+ isInfiniteScroll: boolean;
7185
+ percentageOfResultsLoaded: number;
6769
7186
  };
6770
7187
  readonly searchSortingData: {
6771
7188
  currentPage: number;
@@ -6799,6 +7216,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6799
7216
  hasResults: boolean;
6800
7217
  hasResultsOrExternalPromotions: boolean;
6801
7218
  searchExecuted: boolean;
7219
+ searchingEverything: boolean;
6802
7220
  hasRelatedSearches: boolean;
6803
7221
  hasExternalPromotions: boolean;
6804
7222
  startResultIndex: number;
@@ -6831,6 +7249,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
6831
7249
  url: string;
6832
7250
  description: string;
6833
7251
  }[];
7252
+ answer: string;
7253
+ shouldShowAnswer: boolean;
7254
+ isInfiniteScroll: boolean;
7255
+ percentageOfResultsLoaded: number;
6834
7256
  };
6835
7257
  readonly searchRelatedSearchesData: {
6836
7258
  relatedSearches: {
@@ -6871,6 +7293,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6871
7293
  hasResults: boolean;
6872
7294
  hasResultsOrExternalPromotions: boolean;
6873
7295
  searchExecuted: boolean;
7296
+ searchingEverything: boolean;
6874
7297
  hasRelatedSearches: boolean;
6875
7298
  hasExternalPromotions: boolean;
6876
7299
  startResultIndex: number;
@@ -6896,6 +7319,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
6896
7319
  url: string;
6897
7320
  description: string;
6898
7321
  }[];
7322
+ answer: string;
7323
+ shouldShowAnswer: boolean;
7324
+ isInfiniteScroll: boolean;
7325
+ percentageOfResultsLoaded: number;
6899
7326
  };
6900
7327
  readonly searchExternalPromotionsData: {
6901
7328
  externalPromotions: {
@@ -6935,6 +7362,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6935
7362
  hasResults: boolean;
6936
7363
  hasResultsOrExternalPromotions: boolean;
6937
7364
  searchExecuted: boolean;
7365
+ searchingEverything: boolean;
6938
7366
  hasRelatedSearches: boolean;
6939
7367
  hasExternalPromotions: boolean;
6940
7368
  startResultIndex: number;
@@ -6961,6 +7389,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
6961
7389
  last?: boolean;
6962
7390
  position?: number;
6963
7391
  }[];
7392
+ answer: string;
7393
+ shouldShowAnswer: boolean;
7394
+ isInfiniteScroll: boolean;
7395
+ percentageOfResultsLoaded: number;
6964
7396
  };
6965
7397
  readonly cookiesDisabled: boolean;
6966
7398
  };
@@ -6981,188 +7413,1209 @@ declare const _sfc_main: import("vue").DefineComponent<{
6981
7413
  addExternalSearch: (promotion: import("@searchstax-inc/searchstudio-ux-js").IExternalPromotion) => void;
6982
7414
  trackClick: (result: import("@searchstax-inc/searchstudio-ux-js").IExternalPromotion, event: any) => void;
6983
7415
  };
6984
- dataLayer: {
6985
- $searchTermChange: {
6986
- value: any;
6987
- observers: Function[];
6988
- subscribe: (observer: (data: any) => void) => void;
6989
- unsubscribe: (observer: (data: any) => void) => void;
6990
- setValue: (value: any) => void;
6991
- getValue: () => any;
6992
- notify: () => void;
6993
- };
6994
- $loadingChange: {
6995
- value: any;
6996
- observers: Function[];
6997
- subscribe: (observer: (data: any) => void) => void;
6998
- unsubscribe: (observer: (data: any) => void) => void;
6999
- setValue: (value: any) => void;
7000
- getValue: () => any;
7001
- notify: () => void;
7002
- };
7003
- $searchResults: {
7004
- value: any;
7005
- observers: Function[];
7006
- subscribe: (observer: (data: any) => void) => void;
7007
- unsubscribe: (observer: (data: any) => void) => void;
7008
- setValue: (value: any) => void;
7009
- getValue: () => any;
7010
- notify: () => void;
7011
- };
7012
- $searchResultsMetadata: {
7013
- value: any;
7014
- observers: Function[];
7015
- subscribe: (observer: (data: any) => void) => void;
7016
- unsubscribe: (observer: (data: any) => void) => void;
7017
- setValue: (value: any) => void;
7018
- getValue: () => any;
7019
- notify: () => void;
7020
- };
7021
- $searchAutosuggest: {
7022
- value: any;
7023
- observers: Function[];
7024
- subscribe: (observer: (data: any) => void) => void;
7025
- unsubscribe: (observer: (data: any) => void) => void;
7026
- setValue: (value: any) => void;
7027
- getValue: () => any;
7028
- notify: () => void;
7029
- };
7030
- $searchFacets: {
7031
- value: any;
7032
- observers: Function[];
7033
- subscribe: (observer: (data: any) => void) => void;
7034
- unsubscribe: (observer: (data: any) => void) => void;
7035
- setValue: (value: any) => void;
7036
- getValue: () => any;
7037
- notify: () => void;
7038
- };
7039
- $searchFacetsCached: {
7040
- value: any;
7041
- observers: Function[];
7042
- subscribe: (observer: (data: any) => void) => void;
7043
- unsubscribe: (observer: (data: any) => void) => void;
7044
- setValue: (value: any) => void;
7045
- getValue: () => any;
7046
- notify: () => void;
7047
- };
7048
- $searchstaxConfig: {
7049
- value: any;
7050
- observers: Function[];
7051
- subscribe: (observer: (data: any) => void) => void;
7052
- unsubscribe: (observer: (data: any) => void) => void;
7053
- setValue: (value: any) => void;
7054
- getValue: () => any;
7055
- notify: () => void;
7056
- };
7057
- $autosuggestResults: {
7058
- value: any;
7059
- observers: Function[];
7060
- subscribe: (observer: (data: any) => void) => void;
7061
- unsubscribe: (observer: (data: any) => void) => void;
7062
- setValue: (value: any) => void;
7063
- getValue: () => any;
7064
- notify: () => void;
7065
- };
7066
- $searchObject: {
7067
- value: any;
7068
- observers: Function[];
7069
- subscribe: (observer: (data: any) => void) => void;
7070
- unsubscribe: (observer: (data: any) => void) => void;
7071
- setValue: (value: any) => void;
7072
- getValue: () => any;
7073
- notify: () => void;
7074
- };
7075
- $searchRelatedSearches: {
7076
- value: any;
7077
- observers: Function[];
7078
- subscribe: (observer: (data: any) => void) => void;
7079
- unsubscribe: (observer: (data: any) => void) => void;
7080
- setValue: (value: any) => void;
7081
- getValue: () => any;
7082
- notify: () => void;
7083
- };
7084
- $searchInputConfig: {
7085
- value: any;
7086
- observers: Function[];
7087
- subscribe: (observer: (data: any) => void) => void;
7088
- unsubscribe: (observer: (data: any) => void) => void;
7089
- setValue: (value: any) => void;
7090
- getValue: () => any;
7091
- notify: () => void;
7092
- };
7093
- $searchExternalPromotions: {
7094
- value: any;
7095
- observers: Function[];
7096
- subscribe: (observer: (data: any) => void) => void;
7097
- unsubscribe: (observer: (data: any) => void) => void;
7098
- setValue: (value: any) => void;
7099
- getValue: () => any;
7100
- notify: () => void;
7101
- };
7102
- $facetsTemplateData: {
7103
- value: any;
7104
- observers: Function[];
7105
- subscribe: (observer: (data: any) => void) => void;
7106
- unsubscribe: (observer: (data: any) => void) => void;
7107
- setValue: (value: any) => void;
7108
- getValue: () => any;
7109
- notify: () => void;
7110
- };
7111
- $selectedFacetsTemplateData: {
7112
- value: any;
7113
- observers: Function[];
7114
- subscribe: (observer: (data: any) => void) => void;
7115
- unsubscribe: (observer: (data: any) => void) => void;
7116
- setValue: (value: any) => void;
7117
- getValue: () => any;
7118
- notify: () => void;
7119
- };
7120
- $paginationData: {
7121
- value: any;
7122
- observers: Function[];
7123
- subscribe: (observer: (data: any) => void) => void;
7124
- unsubscribe: (observer: (data: any) => void) => void;
7125
- setValue: (value: any) => void;
7126
- getValue: () => any;
7127
- notify: () => void;
7128
- };
7129
- $searchFeedbackData: {
7130
- value: any;
7131
- observers: Function[];
7132
- subscribe: (observer: (data: any) => void) => void;
7133
- unsubscribe: (observer: (data: any) => void) => void;
7134
- setValue: (value: any) => void;
7135
- getValue: () => any;
7136
- notify: () => void;
7137
- };
7138
- $searchSortingData: {
7139
- value: any;
7140
- observers: Function[];
7141
- subscribe: (observer: (data: any) => void) => void;
7142
- unsubscribe: (observer: (data: any) => void) => void;
7143
- setValue: (value: any) => void;
7144
- getValue: () => any;
7145
- notify: () => void;
7146
- };
7147
- $searchRelatedSearchesData: {
7148
- value: any;
7149
- observers: Function[];
7150
- subscribe: (observer: (data: any) => void) => void;
7151
- unsubscribe: (observer: (data: any) => void) => void;
7152
- setValue: (value: any) => void;
7153
- getValue: () => any;
7154
- notify: () => void;
7155
- };
7156
- $searchExternalPromotionsData: {
7157
- value: any;
7158
- observers: Function[];
7159
- subscribe: (observer: (data: any) => void) => void;
7160
- unsubscribe: (observer: (data: any) => void) => void;
7161
- setValue: (value: any) => void;
7162
- getValue: () => any;
7163
- notify: () => void;
7164
- };
7165
- $cookiesDisabled: {
7416
+ answerWidget?: {
7417
+ dataLayer: {
7418
+ $searchTermChange: {
7419
+ value: any;
7420
+ observers: Function[];
7421
+ subscribe: (observer: (data: any) => void) => void;
7422
+ unsubscribe: (observer: (data: any) => void) => void;
7423
+ setValue: (value: any) => void;
7424
+ getValue: () => any;
7425
+ notify: () => void;
7426
+ };
7427
+ $loadingChange: {
7428
+ value: any;
7429
+ observers: Function[];
7430
+ subscribe: (observer: (data: any) => void) => void;
7431
+ unsubscribe: (observer: (data: any) => void) => void;
7432
+ setValue: (value: any) => void;
7433
+ getValue: () => any;
7434
+ notify: () => void;
7435
+ };
7436
+ $searchResults: {
7437
+ value: any;
7438
+ observers: Function[];
7439
+ subscribe: (observer: (data: any) => void) => void;
7440
+ unsubscribe: (observer: (data: any) => void) => void;
7441
+ setValue: (value: any) => void;
7442
+ getValue: () => any;
7443
+ notify: () => void;
7444
+ };
7445
+ $searchResultsMetadata: {
7446
+ value: any;
7447
+ observers: Function[];
7448
+ subscribe: (observer: (data: any) => void) => void;
7449
+ unsubscribe: (observer: (data: any) => void) => void;
7450
+ setValue: (value: any) => void;
7451
+ getValue: () => any;
7452
+ notify: () => void;
7453
+ };
7454
+ $searchAutosuggest: {
7455
+ value: any;
7456
+ observers: Function[];
7457
+ subscribe: (observer: (data: any) => void) => void;
7458
+ unsubscribe: (observer: (data: any) => void) => void;
7459
+ setValue: (value: any) => void;
7460
+ getValue: () => any;
7461
+ notify: () => void;
7462
+ };
7463
+ $searchFacets: {
7464
+ value: any;
7465
+ observers: Function[];
7466
+ subscribe: (observer: (data: any) => void) => void;
7467
+ unsubscribe: (observer: (data: any) => void) => void;
7468
+ setValue: (value: any) => void;
7469
+ getValue: () => any;
7470
+ notify: () => void;
7471
+ };
7472
+ $searchFacetsCached: {
7473
+ value: any;
7474
+ observers: Function[];
7475
+ subscribe: (observer: (data: any) => void) => void;
7476
+ unsubscribe: (observer: (data: any) => void) => void;
7477
+ setValue: (value: any) => void;
7478
+ getValue: () => any;
7479
+ notify: () => void;
7480
+ };
7481
+ $searchstaxConfig: {
7482
+ value: any;
7483
+ observers: Function[];
7484
+ subscribe: (observer: (data: any) => void) => void;
7485
+ unsubscribe: (observer: (data: any) => void) => void;
7486
+ setValue: (value: any) => void;
7487
+ getValue: () => any;
7488
+ notify: () => void;
7489
+ };
7490
+ $autosuggestResults: {
7491
+ value: any;
7492
+ observers: Function[];
7493
+ subscribe: (observer: (data: any) => void) => void;
7494
+ unsubscribe: (observer: (data: any) => void) => void;
7495
+ setValue: (value: any) => void;
7496
+ getValue: () => any;
7497
+ notify: () => void;
7498
+ };
7499
+ $searchObject: {
7500
+ value: any;
7501
+ observers: Function[];
7502
+ subscribe: (observer: (data: any) => void) => void;
7503
+ unsubscribe: (observer: (data: any) => void) => void;
7504
+ setValue: (value: any) => void;
7505
+ getValue: () => any;
7506
+ notify: () => void;
7507
+ };
7508
+ $searchRelatedSearches: {
7509
+ value: any;
7510
+ observers: Function[];
7511
+ subscribe: (observer: (data: any) => void) => void;
7512
+ unsubscribe: (observer: (data: any) => void) => void;
7513
+ setValue: (value: any) => void;
7514
+ getValue: () => any;
7515
+ notify: () => void;
7516
+ };
7517
+ $searchInputConfig: {
7518
+ value: any;
7519
+ observers: Function[];
7520
+ subscribe: (observer: (data: any) => void) => void;
7521
+ unsubscribe: (observer: (data: any) => void) => void;
7522
+ setValue: (value: any) => void;
7523
+ getValue: () => any;
7524
+ notify: () => void;
7525
+ };
7526
+ $searchExternalPromotions: {
7527
+ value: any;
7528
+ observers: Function[];
7529
+ subscribe: (observer: (data: any) => void) => void;
7530
+ unsubscribe: (observer: (data: any) => void) => void;
7531
+ setValue: (value: any) => void;
7532
+ getValue: () => any;
7533
+ notify: () => void;
7534
+ };
7535
+ $facetsTemplateData: {
7536
+ value: any;
7537
+ observers: Function[];
7538
+ subscribe: (observer: (data: any) => void) => void;
7539
+ unsubscribe: (observer: (data: any) => void) => void;
7540
+ setValue: (value: any) => void;
7541
+ getValue: () => any;
7542
+ notify: () => void;
7543
+ };
7544
+ $selectedFacetsTemplateData: {
7545
+ value: any;
7546
+ observers: Function[];
7547
+ subscribe: (observer: (data: any) => void) => void;
7548
+ unsubscribe: (observer: (data: any) => void) => void;
7549
+ setValue: (value: any) => void;
7550
+ getValue: () => any;
7551
+ notify: () => void;
7552
+ };
7553
+ $paginationData: {
7554
+ value: any;
7555
+ observers: Function[];
7556
+ subscribe: (observer: (data: any) => void) => void;
7557
+ unsubscribe: (observer: (data: any) => void) => void;
7558
+ setValue: (value: any) => void;
7559
+ getValue: () => any;
7560
+ notify: () => void;
7561
+ };
7562
+ $searchFeedbackData: {
7563
+ value: any;
7564
+ observers: Function[];
7565
+ subscribe: (observer: (data: any) => void) => void;
7566
+ unsubscribe: (observer: (data: any) => void) => void;
7567
+ setValue: (value: any) => void;
7568
+ getValue: () => any;
7569
+ notify: () => void;
7570
+ };
7571
+ $searchSortingData: {
7572
+ value: any;
7573
+ observers: Function[];
7574
+ subscribe: (observer: (data: any) => void) => void;
7575
+ unsubscribe: (observer: (data: any) => void) => void;
7576
+ setValue: (value: any) => void;
7577
+ getValue: () => any;
7578
+ notify: () => void;
7579
+ };
7580
+ $searchRelatedSearchesData: {
7581
+ value: any;
7582
+ observers: Function[];
7583
+ subscribe: (observer: (data: any) => void) => void;
7584
+ unsubscribe: (observer: (data: any) => void) => void;
7585
+ setValue: (value: any) => void;
7586
+ getValue: () => any;
7587
+ notify: () => void;
7588
+ };
7589
+ $searchExternalPromotionsData: {
7590
+ value: any;
7591
+ observers: Function[];
7592
+ subscribe: (observer: (data: any) => void) => void;
7593
+ unsubscribe: (observer: (data: any) => void) => void;
7594
+ setValue: (value: any) => void;
7595
+ getValue: () => any;
7596
+ notify: () => void;
7597
+ };
7598
+ $cookiesDisabled: {
7599
+ value: any;
7600
+ observers: Function[];
7601
+ subscribe: (observer: (data: any) => void) => void;
7602
+ unsubscribe: (observer: (data: any) => void) => void;
7603
+ setValue: (value: any) => void;
7604
+ getValue: () => any;
7605
+ notify: () => void;
7606
+ };
7607
+ $answer: {
7608
+ value: any;
7609
+ observers: Function[];
7610
+ subscribe: (observer: (data: any) => void) => void;
7611
+ unsubscribe: (observer: (data: any) => void) => void;
7612
+ setValue: (value: any) => void;
7613
+ getValue: () => any;
7614
+ notify: () => void;
7615
+ };
7616
+ $language: {
7617
+ value: any;
7618
+ observers: Function[];
7619
+ subscribe: (observer: (data: any) => void) => void;
7620
+ unsubscribe: (observer: (data: any) => void) => void;
7621
+ setValue: (value: any) => void;
7622
+ getValue: () => any;
7623
+ notify: () => void;
7624
+ };
7625
+ parsedData: {
7626
+ dataLayer: any;
7627
+ readonly currentPage: number;
7628
+ readonly totalResults: number;
7629
+ readonly resultsPerPage: number;
7630
+ readonly startResultIndex: number;
7631
+ readonly endResultIndex: number;
7632
+ readonly isFirstPage: boolean;
7633
+ readonly isLastPage: boolean;
7634
+ readonly percentageOfResultsLoaded: number;
7635
+ readonly results: {
7636
+ custom?: any;
7637
+ ribbon: string;
7638
+ paths: string;
7639
+ url: string;
7640
+ title: string;
7641
+ promoted: boolean;
7642
+ thumbnail: string;
7643
+ date: string;
7644
+ snippet: string;
7645
+ description: string;
7646
+ uniqueId: string;
7647
+ position: number;
7648
+ unmappedFields: {
7649
+ key: string;
7650
+ value: string | boolean | string[];
7651
+ isImage?: boolean;
7652
+ }[];
7653
+ allFields: {
7654
+ key: string;
7655
+ value: string | boolean | string[];
7656
+ }[];
7657
+ }[];
7658
+ readonly autoCorrectedQuery: string;
7659
+ readonly originalQuery: string;
7660
+ readonly getAnswerData: string;
7661
+ readonly shouldShowAnswer: boolean;
7662
+ readonly searchTerm: string;
7663
+ readonly searchingEverything: boolean;
7664
+ readonly isInfiniteScroll: boolean;
7665
+ readonly searchExecuted: boolean;
7666
+ readonly selectedFacets: ({
7667
+ value: string;
7668
+ type: "checkbox";
7669
+ parentName: string;
7670
+ count: number;
7671
+ } | {
7672
+ valueFrom: string;
7673
+ type: "range";
7674
+ valueTo: string;
7675
+ parentName: string;
7676
+ count: number;
7677
+ })[];
7678
+ readonly relatedSearches: {
7679
+ search_term: string;
7680
+ related_search: string;
7681
+ score: number;
7682
+ last?: boolean;
7683
+ position?: number;
7684
+ }[];
7685
+ readonly externalPromotions: {
7686
+ name: string;
7687
+ id: number;
7688
+ url: string;
7689
+ description: string;
7690
+ }[];
7691
+ readonly data: {
7692
+ currentPage: number;
7693
+ totalResults: number;
7694
+ resultsPerPage: number;
7695
+ isFirstPage: boolean;
7696
+ results: {
7697
+ custom?: any;
7698
+ ribbon: string;
7699
+ paths: string;
7700
+ url: string;
7701
+ title: string;
7702
+ promoted: boolean;
7703
+ thumbnail: string;
7704
+ date: string;
7705
+ snippet: string;
7706
+ description: string;
7707
+ uniqueId: string;
7708
+ position: number;
7709
+ unmappedFields: {
7710
+ key: string;
7711
+ value: string | boolean | string[];
7712
+ isImage?: boolean;
7713
+ }[];
7714
+ allFields: {
7715
+ key: string;
7716
+ value: string | boolean | string[];
7717
+ }[];
7718
+ }[];
7719
+ isLastPage: boolean;
7720
+ hasResults: boolean;
7721
+ hasResultsOrExternalPromotions: boolean;
7722
+ searchExecuted: boolean;
7723
+ searchingEverything: boolean;
7724
+ hasRelatedSearches: boolean;
7725
+ hasExternalPromotions: boolean;
7726
+ startResultIndex: number;
7727
+ endResultIndex: number;
7728
+ searchTerm: string;
7729
+ autoCorrectedQuery: string;
7730
+ originalQuery: string;
7731
+ selectedFacets: ({
7732
+ value: string;
7733
+ type: "checkbox";
7734
+ parentName: string;
7735
+ count: number;
7736
+ } | {
7737
+ valueFrom: string;
7738
+ type: "range";
7739
+ valueTo: string;
7740
+ parentName: string;
7741
+ count: number;
7742
+ })[];
7743
+ relatedSearches: {
7744
+ search_term: string;
7745
+ related_search: string;
7746
+ score: number;
7747
+ last?: boolean;
7748
+ position?: number;
7749
+ }[];
7750
+ externalPromotions: {
7751
+ name: string;
7752
+ id: number;
7753
+ url: string;
7754
+ description: string;
7755
+ }[];
7756
+ answer: string;
7757
+ shouldShowAnswer: boolean;
7758
+ isInfiniteScroll: boolean;
7759
+ percentageOfResultsLoaded: number;
7760
+ };
7761
+ readonly trackingData: {
7762
+ searchTerm: string;
7763
+ trackApiKey: string;
7764
+ session: string;
7765
+ language: string;
7766
+ recordsPerPage: number;
7767
+ totalResults: number;
7768
+ currentPage: number;
7769
+ latencyVal: number;
7770
+ };
7771
+ };
7772
+ sessionId: string;
7773
+ autoCorrect: boolean;
7774
+ forceNotCorrect: boolean;
7775
+ lastSearchValue: string;
7776
+ turnAIAnswerGenerationOn: boolean;
7777
+ isInfiniteScroll: boolean;
7778
+ cookieHandlingCallback: () => void;
7779
+ setIsInfiniteScroll: (value: boolean) => void;
7780
+ setSearchTerm: (value: string) => void;
7781
+ setRenderingEngine: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine) => void;
7782
+ setCurrentPage: (value: number) => void;
7783
+ setIsAnswerWidgetCreated: (value: boolean) => void;
7784
+ setLoading: (value: boolean) => void;
7785
+ setSearchResults: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => void;
7786
+ setSearchResultsMetadata: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchMetadata) => void;
7787
+ setSearchAutosuggest: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse) => void;
7788
+ setSearchObject: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchObject) => void;
7789
+ setSearchFacets: (value: import("@searchstax-inc/searchstudio-ux-js").IFacet[]) => void;
7790
+ setSearchFacetsCached: (value: import("@searchstax-inc/searchstudio-ux-js").IFacet[]) => void;
7791
+ setSearchRelatedSearches: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRelatedSearchResult[]) => void;
7792
+ setSearchExternalPromotions: (value: import("@searchstax-inc/searchstudio-ux-js").IExternalPromotion[]) => void;
7793
+ setLanguage: (value: string) => void;
7794
+ setSearchstaxConfig: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxConfig) => void;
7795
+ setSearchInputConfig: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchInputConfig) => void;
7796
+ setAutosuggestResults: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSEARCHTERM) => void;
7797
+ setFacetsTemplateData: (value: IFacetsTemplateData) => void;
7798
+ setSelectedFacetsTemplateData: (value: (IFacetValue | IFacetValueRange)[]) => void;
7799
+ setPaginationData: (data: import("@searchstax-inc/searchstudio-ux-js").IPaginationData) => void;
7800
+ setSearchFeedbackData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchFeedbackData) => void;
7801
+ setSearchSortingData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchSortingData) => void;
7802
+ setRelatedSearchesData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRelatedSearchesData) => void;
7803
+ setExternalPromotionsData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxExternalPromotionsData) => void;
7804
+ setCookiesDisabled: (data: boolean) => void;
7805
+ setAnswerData: (data: string) => void;
7806
+ readonly getAnswerData: any;
7807
+ readonly searchstaxConfig: {
7808
+ language: string;
7809
+ searchURL: string;
7810
+ suggesterURL: string;
7811
+ trackApiKey: string;
7812
+ searchAuth: string;
7813
+ authType: "basic" | "token";
7814
+ autoCorrect?: boolean;
7815
+ router?: {
7816
+ enabled: boolean;
7817
+ routeName?: string;
7818
+ ignoredKeys?: string[];
7819
+ title?: (searchObject: import("@searchstax-inc/searchstudio-ux-js").ISearchObject) => string;
7820
+ };
7821
+ hooks?: {
7822
+ beforeSearch?: (props: import("@searchstax-inc/searchstudio-ux-js").ISearchObject) => import("@searchstax-inc/searchstudio-ux-js").ISearchObject;
7823
+ afterSearch?: (results: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[];
7824
+ };
7825
+ turnAIAnswerGenerationOn?: boolean;
7826
+ };
7827
+ readonly searchFacets: {
7828
+ name: string;
7829
+ label: string;
7830
+ values: ({
7831
+ value: string;
7832
+ type: "checkbox";
7833
+ parentName: string;
7834
+ count: number;
7835
+ } | {
7836
+ valueFrom: string;
7837
+ type: "range";
7838
+ valueTo: string;
7839
+ parentName: string;
7840
+ count: number;
7841
+ })[];
7842
+ }[];
7843
+ readonly searchFacetsCached: {
7844
+ name: string;
7845
+ label: string;
7846
+ values: ({
7847
+ value: string;
7848
+ type: "checkbox";
7849
+ parentName: string;
7850
+ count: number;
7851
+ } | {
7852
+ valueFrom: string;
7853
+ type: "range";
7854
+ valueTo: string;
7855
+ parentName: string;
7856
+ count: number;
7857
+ })[];
7858
+ }[];
7859
+ readonly searchResults: {
7860
+ custom?: any;
7861
+ ribbon: string;
7862
+ paths: string;
7863
+ url: string;
7864
+ title: string;
7865
+ promoted: boolean;
7866
+ thumbnail: string;
7867
+ date: string;
7868
+ snippet: string;
7869
+ description: string;
7870
+ uniqueId: string;
7871
+ position: number;
7872
+ unmappedFields: {
7873
+ key: string;
7874
+ value: string | boolean | string[];
7875
+ isImage?: boolean;
7876
+ }[];
7877
+ allFields: {
7878
+ key: string;
7879
+ value: string | boolean | string[];
7880
+ }[];
7881
+ }[];
7882
+ readonly searchTerm: string;
7883
+ readonly loading: boolean;
7884
+ readonly searchAutosuggest: {
7885
+ responseHeader: {
7886
+ zkConnected: boolean;
7887
+ status: number;
7888
+ qTime: number;
7889
+ };
7890
+ suggest: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggest;
7891
+ };
7892
+ readonly searchResultsMetadata: {
7893
+ recordsPerPageValue: number;
7894
+ startDocVal: number;
7895
+ totalResultsValue: number;
7896
+ latency: number;
7897
+ endDocValue: number;
7898
+ spellingSuggestion: string;
7899
+ autoCorrectedQuery: string;
7900
+ impressions: {
7901
+ cDocId: string;
7902
+ cDocTitle: string;
7903
+ position: number;
7904
+ }[];
7905
+ };
7906
+ readonly currentPage: number;
7907
+ readonly isAnswerWidgetCreated: boolean;
7908
+ readonly renderingEngine: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine;
7909
+ readonly searchObject: {
7910
+ query: string;
7911
+ page: number;
7912
+ itemsPerPage: number;
7913
+ order: string;
7914
+ facets: {
7915
+ name: string;
7916
+ value: string;
7917
+ type: "and" | "or" | "showUnavailable" | "tabs";
7918
+ }[];
7919
+ additionalProps?: {
7920
+ key: string;
7921
+ value: string;
7922
+ }[];
7923
+ };
7924
+ readonly searchRelatedSearches: {
7925
+ search_term: string;
7926
+ related_search: string;
7927
+ score: number;
7928
+ last?: boolean;
7929
+ position?: number;
7930
+ }[];
7931
+ readonly searchExternalPromotions: {
7932
+ name: string;
7933
+ id: number;
7934
+ url: string;
7935
+ description: string;
7936
+ }[];
7937
+ readonly language: string;
7938
+ readonly searchInputConfig: {
7939
+ suggestAfterMinChars: number;
7940
+ templates?: {
7941
+ mainTemplate?: {
7942
+ template: string;
7943
+ searchInputId: string;
7944
+ };
7945
+ autosuggestItemTemplate?: {
7946
+ template: string;
7947
+ };
7948
+ };
7949
+ hooks?: {
7950
+ beforeAutosuggest?: (props: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestProps) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestProps;
7951
+ afterAutosuggest?: (result: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse;
7952
+ };
7953
+ };
7954
+ readonly answerConfig: string;
7955
+ readonly autosuggestResults: {
7956
+ numFound: number;
7957
+ suggestions: {
7958
+ term: string;
7959
+ weight: number;
7960
+ payload: string;
7961
+ }[];
7962
+ };
7963
+ readonly facetsTemplateData: {
7964
+ facets: {
7965
+ values: ({
7966
+ value: string;
7967
+ type: "checkbox";
7968
+ parentName: string;
7969
+ count: number;
7970
+ } | {
7971
+ valueFrom: string;
7972
+ type: "range";
7973
+ valueTo: string;
7974
+ parentName: string;
7975
+ count: number;
7976
+ })[];
7977
+ showingAllFacets?: boolean;
7978
+ hasMoreFacets?: boolean;
7979
+ name: string;
7980
+ label: string;
7981
+ }[];
7982
+ isMobile?: boolean;
7983
+ currentPage: number;
7984
+ totalResults: number;
7985
+ resultsPerPage: number;
7986
+ isFirstPage: boolean;
7987
+ results: {
7988
+ custom?: any;
7989
+ ribbon: string;
7990
+ paths: string;
7991
+ url: string;
7992
+ title: string;
7993
+ promoted: boolean;
7994
+ thumbnail: string;
7995
+ date: string;
7996
+ snippet: string;
7997
+ description: string;
7998
+ uniqueId: string;
7999
+ position: number;
8000
+ unmappedFields: {
8001
+ key: string;
8002
+ value: string | boolean | string[];
8003
+ isImage?: boolean;
8004
+ }[];
8005
+ allFields: {
8006
+ key: string;
8007
+ value: string | boolean | string[];
8008
+ }[];
8009
+ }[];
8010
+ isLastPage: boolean;
8011
+ hasResults: boolean;
8012
+ hasResultsOrExternalPromotions: boolean;
8013
+ searchExecuted: boolean;
8014
+ searchingEverything: boolean;
8015
+ hasRelatedSearches: boolean;
8016
+ hasExternalPromotions: boolean;
8017
+ startResultIndex: number;
8018
+ endResultIndex: number;
8019
+ searchTerm: string;
8020
+ autoCorrectedQuery: string;
8021
+ originalQuery: string;
8022
+ selectedFacets: ({
8023
+ value: string;
8024
+ type: "checkbox";
8025
+ parentName: string;
8026
+ count: number;
8027
+ } | {
8028
+ valueFrom: string;
8029
+ type: "range";
8030
+ valueTo: string;
8031
+ parentName: string;
8032
+ count: number;
8033
+ })[];
8034
+ relatedSearches: {
8035
+ search_term: string;
8036
+ related_search: string;
8037
+ score: number;
8038
+ last?: boolean;
8039
+ position?: number;
8040
+ }[];
8041
+ externalPromotions: {
8042
+ name: string;
8043
+ id: number;
8044
+ url: string;
8045
+ description: string;
8046
+ }[];
8047
+ answer: string;
8048
+ shouldShowAnswer: boolean;
8049
+ isInfiniteScroll: boolean;
8050
+ percentageOfResultsLoaded: number;
8051
+ };
8052
+ readonly selectedFacetsTemplateData: ({
8053
+ value: string;
8054
+ type: "checkbox";
8055
+ parentName: string;
8056
+ count: number;
8057
+ } | {
8058
+ valueFrom: string;
8059
+ type: "range";
8060
+ valueTo: string;
8061
+ parentName: string;
8062
+ count: number;
8063
+ })[];
8064
+ readonly paginationData: {
8065
+ nextPageLink: string;
8066
+ previousPageLink: string;
8067
+ currentPage: number;
8068
+ totalResults: number;
8069
+ resultsPerPage: number;
8070
+ isFirstPage: boolean;
8071
+ results: {
8072
+ custom?: any;
8073
+ ribbon: string;
8074
+ paths: string;
8075
+ url: string;
8076
+ title: string;
8077
+ promoted: boolean;
8078
+ thumbnail: string;
8079
+ date: string;
8080
+ snippet: string;
8081
+ description: string;
8082
+ uniqueId: string;
8083
+ position: number;
8084
+ unmappedFields: {
8085
+ key: string;
8086
+ value: string | boolean | string[];
8087
+ isImage?: boolean;
8088
+ }[];
8089
+ allFields: {
8090
+ key: string;
8091
+ value: string | boolean | string[];
8092
+ }[];
8093
+ }[];
8094
+ isLastPage: boolean;
8095
+ hasResults: boolean;
8096
+ hasResultsOrExternalPromotions: boolean;
8097
+ searchExecuted: boolean;
8098
+ searchingEverything: boolean;
8099
+ hasRelatedSearches: boolean;
8100
+ hasExternalPromotions: boolean;
8101
+ startResultIndex: number;
8102
+ endResultIndex: number;
8103
+ searchTerm: string;
8104
+ autoCorrectedQuery: string;
8105
+ originalQuery: string;
8106
+ selectedFacets: ({
8107
+ value: string;
8108
+ type: "checkbox";
8109
+ parentName: string;
8110
+ count: number;
8111
+ } | {
8112
+ valueFrom: string;
8113
+ type: "range";
8114
+ valueTo: string;
8115
+ parentName: string;
8116
+ count: number;
8117
+ })[];
8118
+ relatedSearches: {
8119
+ search_term: string;
8120
+ related_search: string;
8121
+ score: number;
8122
+ last?: boolean;
8123
+ position?: number;
8124
+ }[];
8125
+ externalPromotions: {
8126
+ name: string;
8127
+ id: number;
8128
+ url: string;
8129
+ description: string;
8130
+ }[];
8131
+ answer: string;
8132
+ shouldShowAnswer: boolean;
8133
+ isInfiniteScroll: boolean;
8134
+ percentageOfResultsLoaded: number;
8135
+ };
8136
+ readonly searchFeedbackData: {
8137
+ currentPage: number;
8138
+ totalResults: number;
8139
+ resultsPerPage: number;
8140
+ isFirstPage: boolean;
8141
+ results: {
8142
+ custom?: any;
8143
+ ribbon: string;
8144
+ paths: string;
8145
+ url: string;
8146
+ title: string;
8147
+ promoted: boolean;
8148
+ thumbnail: string;
8149
+ date: string;
8150
+ snippet: string;
8151
+ description: string;
8152
+ uniqueId: string;
8153
+ position: number;
8154
+ unmappedFields: {
8155
+ key: string;
8156
+ value: string | boolean | string[];
8157
+ isImage?: boolean;
8158
+ }[];
8159
+ allFields: {
8160
+ key: string;
8161
+ value: string | boolean | string[];
8162
+ }[];
8163
+ }[];
8164
+ isLastPage: boolean;
8165
+ hasResults: boolean;
8166
+ hasResultsOrExternalPromotions: boolean;
8167
+ searchExecuted: boolean;
8168
+ searchingEverything: boolean;
8169
+ hasRelatedSearches: boolean;
8170
+ hasExternalPromotions: boolean;
8171
+ startResultIndex: number;
8172
+ endResultIndex: number;
8173
+ searchTerm: string;
8174
+ autoCorrectedQuery: string;
8175
+ originalQuery: string;
8176
+ selectedFacets: ({
8177
+ value: string;
8178
+ type: "checkbox";
8179
+ parentName: string;
8180
+ count: number;
8181
+ } | {
8182
+ valueFrom: string;
8183
+ type: "range";
8184
+ valueTo: string;
8185
+ parentName: string;
8186
+ count: number;
8187
+ })[];
8188
+ relatedSearches: {
8189
+ search_term: string;
8190
+ related_search: string;
8191
+ score: number;
8192
+ last?: boolean;
8193
+ position?: number;
8194
+ }[];
8195
+ externalPromotions: {
8196
+ name: string;
8197
+ id: number;
8198
+ url: string;
8199
+ description: string;
8200
+ }[];
8201
+ answer: string;
8202
+ shouldShowAnswer: boolean;
8203
+ isInfiniteScroll: boolean;
8204
+ percentageOfResultsLoaded: number;
8205
+ };
8206
+ readonly searchSortingData: {
8207
+ currentPage: number;
8208
+ totalResults: number;
8209
+ resultsPerPage: number;
8210
+ isFirstPage: boolean;
8211
+ results: {
8212
+ custom?: any;
8213
+ ribbon: string;
8214
+ paths: string;
8215
+ url: string;
8216
+ title: string;
8217
+ promoted: boolean;
8218
+ thumbnail: string;
8219
+ date: string;
8220
+ snippet: string;
8221
+ description: string;
8222
+ uniqueId: string;
8223
+ position: number;
8224
+ unmappedFields: {
8225
+ key: string;
8226
+ value: string | boolean | string[];
8227
+ isImage?: boolean;
8228
+ }[];
8229
+ allFields: {
8230
+ key: string;
8231
+ value: string | boolean | string[];
8232
+ }[];
8233
+ }[];
8234
+ isLastPage: boolean;
8235
+ hasResults: boolean;
8236
+ hasResultsOrExternalPromotions: boolean;
8237
+ searchExecuted: boolean;
8238
+ searchingEverything: boolean;
8239
+ hasRelatedSearches: boolean;
8240
+ hasExternalPromotions: boolean;
8241
+ startResultIndex: number;
8242
+ endResultIndex: number;
8243
+ searchTerm: string;
8244
+ autoCorrectedQuery: string;
8245
+ originalQuery: string;
8246
+ selectedFacets: ({
8247
+ value: string;
8248
+ type: "checkbox";
8249
+ parentName: string;
8250
+ count: number;
8251
+ } | {
8252
+ valueFrom: string;
8253
+ type: "range";
8254
+ valueTo: string;
8255
+ parentName: string;
8256
+ count: number;
8257
+ })[];
8258
+ relatedSearches: {
8259
+ search_term: string;
8260
+ related_search: string;
8261
+ score: number;
8262
+ last?: boolean;
8263
+ position?: number;
8264
+ }[];
8265
+ externalPromotions: {
8266
+ name: string;
8267
+ id: number;
8268
+ url: string;
8269
+ description: string;
8270
+ }[];
8271
+ answer: string;
8272
+ shouldShowAnswer: boolean;
8273
+ isInfiniteScroll: boolean;
8274
+ percentageOfResultsLoaded: number;
8275
+ };
8276
+ readonly searchRelatedSearchesData: {
8277
+ relatedSearches: {
8278
+ search_term: string;
8279
+ related_search: string;
8280
+ score: number;
8281
+ last?: boolean;
8282
+ position?: number;
8283
+ }[];
8284
+ currentPage: number;
8285
+ totalResults: number;
8286
+ resultsPerPage: number;
8287
+ isFirstPage: boolean;
8288
+ results: {
8289
+ custom?: any;
8290
+ ribbon: string;
8291
+ paths: string;
8292
+ url: string;
8293
+ title: string;
8294
+ promoted: boolean;
8295
+ thumbnail: string;
8296
+ date: string;
8297
+ snippet: string;
8298
+ description: string;
8299
+ uniqueId: string;
8300
+ position: number;
8301
+ unmappedFields: {
8302
+ key: string;
8303
+ value: string | boolean | string[];
8304
+ isImage?: boolean;
8305
+ }[];
8306
+ allFields: {
8307
+ key: string;
8308
+ value: string | boolean | string[];
8309
+ }[];
8310
+ }[];
8311
+ isLastPage: boolean;
8312
+ hasResults: boolean;
8313
+ hasResultsOrExternalPromotions: boolean;
8314
+ searchExecuted: boolean;
8315
+ searchingEverything: boolean;
8316
+ hasRelatedSearches: boolean;
8317
+ hasExternalPromotions: boolean;
8318
+ startResultIndex: number;
8319
+ endResultIndex: number;
8320
+ searchTerm: string;
8321
+ autoCorrectedQuery: string;
8322
+ originalQuery: string;
8323
+ selectedFacets: ({
8324
+ value: string;
8325
+ type: "checkbox";
8326
+ parentName: string;
8327
+ count: number;
8328
+ } | {
8329
+ valueFrom: string;
8330
+ type: "range";
8331
+ valueTo: string;
8332
+ parentName: string;
8333
+ count: number;
8334
+ })[];
8335
+ externalPromotions: {
8336
+ name: string;
8337
+ id: number;
8338
+ url: string;
8339
+ description: string;
8340
+ }[];
8341
+ answer: string;
8342
+ shouldShowAnswer: boolean;
8343
+ isInfiniteScroll: boolean;
8344
+ percentageOfResultsLoaded: number;
8345
+ };
8346
+ readonly searchExternalPromotionsData: {
8347
+ externalPromotions: {
8348
+ name: string;
8349
+ id: number;
8350
+ url: string;
8351
+ description: string;
8352
+ }[];
8353
+ currentPage: number;
8354
+ totalResults: number;
8355
+ resultsPerPage: number;
8356
+ isFirstPage: boolean;
8357
+ results: {
8358
+ custom?: any;
8359
+ ribbon: string;
8360
+ paths: string;
8361
+ url: string;
8362
+ title: string;
8363
+ promoted: boolean;
8364
+ thumbnail: string;
8365
+ date: string;
8366
+ snippet: string;
8367
+ description: string;
8368
+ uniqueId: string;
8369
+ position: number;
8370
+ unmappedFields: {
8371
+ key: string;
8372
+ value: string | boolean | string[];
8373
+ isImage?: boolean;
8374
+ }[];
8375
+ allFields: {
8376
+ key: string;
8377
+ value: string | boolean | string[];
8378
+ }[];
8379
+ }[];
8380
+ isLastPage: boolean;
8381
+ hasResults: boolean;
8382
+ hasResultsOrExternalPromotions: boolean;
8383
+ searchExecuted: boolean;
8384
+ searchingEverything: boolean;
8385
+ hasRelatedSearches: boolean;
8386
+ hasExternalPromotions: boolean;
8387
+ startResultIndex: number;
8388
+ endResultIndex: number;
8389
+ searchTerm: string;
8390
+ autoCorrectedQuery: string;
8391
+ originalQuery: string;
8392
+ selectedFacets: ({
8393
+ value: string;
8394
+ type: "checkbox";
8395
+ parentName: string;
8396
+ count: number;
8397
+ } | {
8398
+ valueFrom: string;
8399
+ type: "range";
8400
+ valueTo: string;
8401
+ parentName: string;
8402
+ count: number;
8403
+ })[];
8404
+ relatedSearches: {
8405
+ search_term: string;
8406
+ related_search: string;
8407
+ score: number;
8408
+ last?: boolean;
8409
+ position?: number;
8410
+ }[];
8411
+ answer: string;
8412
+ shouldShowAnswer: boolean;
8413
+ isInfiniteScroll: boolean;
8414
+ percentageOfResultsLoaded: number;
8415
+ };
8416
+ readonly cookiesDisabled: boolean;
8417
+ };
8418
+ config: {
8419
+ templates?: {
8420
+ main?: {
8421
+ template: string;
8422
+ };
8423
+ };
8424
+ };
8425
+ containerId: string;
8426
+ answerContainer: HTMLElement;
8427
+ };
8428
+ dataLayer: {
8429
+ $searchTermChange: {
8430
+ value: any;
8431
+ observers: Function[];
8432
+ subscribe: (observer: (data: any) => void) => void;
8433
+ unsubscribe: (observer: (data: any) => void) => void;
8434
+ setValue: (value: any) => void;
8435
+ getValue: () => any;
8436
+ notify: () => void;
8437
+ };
8438
+ $loadingChange: {
8439
+ value: any;
8440
+ observers: Function[];
8441
+ subscribe: (observer: (data: any) => void) => void;
8442
+ unsubscribe: (observer: (data: any) => void) => void;
8443
+ setValue: (value: any) => void;
8444
+ getValue: () => any;
8445
+ notify: () => void;
8446
+ };
8447
+ $searchResults: {
8448
+ value: any;
8449
+ observers: Function[];
8450
+ subscribe: (observer: (data: any) => void) => void;
8451
+ unsubscribe: (observer: (data: any) => void) => void;
8452
+ setValue: (value: any) => void;
8453
+ getValue: () => any;
8454
+ notify: () => void;
8455
+ };
8456
+ $searchResultsMetadata: {
8457
+ value: any;
8458
+ observers: Function[];
8459
+ subscribe: (observer: (data: any) => void) => void;
8460
+ unsubscribe: (observer: (data: any) => void) => void;
8461
+ setValue: (value: any) => void;
8462
+ getValue: () => any;
8463
+ notify: () => void;
8464
+ };
8465
+ $searchAutosuggest: {
8466
+ value: any;
8467
+ observers: Function[];
8468
+ subscribe: (observer: (data: any) => void) => void;
8469
+ unsubscribe: (observer: (data: any) => void) => void;
8470
+ setValue: (value: any) => void;
8471
+ getValue: () => any;
8472
+ notify: () => void;
8473
+ };
8474
+ $searchFacets: {
8475
+ value: any;
8476
+ observers: Function[];
8477
+ subscribe: (observer: (data: any) => void) => void;
8478
+ unsubscribe: (observer: (data: any) => void) => void;
8479
+ setValue: (value: any) => void;
8480
+ getValue: () => any;
8481
+ notify: () => void;
8482
+ };
8483
+ $searchFacetsCached: {
8484
+ value: any;
8485
+ observers: Function[];
8486
+ subscribe: (observer: (data: any) => void) => void;
8487
+ unsubscribe: (observer: (data: any) => void) => void;
8488
+ setValue: (value: any) => void;
8489
+ getValue: () => any;
8490
+ notify: () => void;
8491
+ };
8492
+ $searchstaxConfig: {
8493
+ value: any;
8494
+ observers: Function[];
8495
+ subscribe: (observer: (data: any) => void) => void;
8496
+ unsubscribe: (observer: (data: any) => void) => void;
8497
+ setValue: (value: any) => void;
8498
+ getValue: () => any;
8499
+ notify: () => void;
8500
+ };
8501
+ $autosuggestResults: {
8502
+ value: any;
8503
+ observers: Function[];
8504
+ subscribe: (observer: (data: any) => void) => void;
8505
+ unsubscribe: (observer: (data: any) => void) => void;
8506
+ setValue: (value: any) => void;
8507
+ getValue: () => any;
8508
+ notify: () => void;
8509
+ };
8510
+ $searchObject: {
8511
+ value: any;
8512
+ observers: Function[];
8513
+ subscribe: (observer: (data: any) => void) => void;
8514
+ unsubscribe: (observer: (data: any) => void) => void;
8515
+ setValue: (value: any) => void;
8516
+ getValue: () => any;
8517
+ notify: () => void;
8518
+ };
8519
+ $searchRelatedSearches: {
8520
+ value: any;
8521
+ observers: Function[];
8522
+ subscribe: (observer: (data: any) => void) => void;
8523
+ unsubscribe: (observer: (data: any) => void) => void;
8524
+ setValue: (value: any) => void;
8525
+ getValue: () => any;
8526
+ notify: () => void;
8527
+ };
8528
+ $searchInputConfig: {
8529
+ value: any;
8530
+ observers: Function[];
8531
+ subscribe: (observer: (data: any) => void) => void;
8532
+ unsubscribe: (observer: (data: any) => void) => void;
8533
+ setValue: (value: any) => void;
8534
+ getValue: () => any;
8535
+ notify: () => void;
8536
+ };
8537
+ $searchExternalPromotions: {
8538
+ value: any;
8539
+ observers: Function[];
8540
+ subscribe: (observer: (data: any) => void) => void;
8541
+ unsubscribe: (observer: (data: any) => void) => void;
8542
+ setValue: (value: any) => void;
8543
+ getValue: () => any;
8544
+ notify: () => void;
8545
+ };
8546
+ $facetsTemplateData: {
8547
+ value: any;
8548
+ observers: Function[];
8549
+ subscribe: (observer: (data: any) => void) => void;
8550
+ unsubscribe: (observer: (data: any) => void) => void;
8551
+ setValue: (value: any) => void;
8552
+ getValue: () => any;
8553
+ notify: () => void;
8554
+ };
8555
+ $selectedFacetsTemplateData: {
8556
+ value: any;
8557
+ observers: Function[];
8558
+ subscribe: (observer: (data: any) => void) => void;
8559
+ unsubscribe: (observer: (data: any) => void) => void;
8560
+ setValue: (value: any) => void;
8561
+ getValue: () => any;
8562
+ notify: () => void;
8563
+ };
8564
+ $paginationData: {
8565
+ value: any;
8566
+ observers: Function[];
8567
+ subscribe: (observer: (data: any) => void) => void;
8568
+ unsubscribe: (observer: (data: any) => void) => void;
8569
+ setValue: (value: any) => void;
8570
+ getValue: () => any;
8571
+ notify: () => void;
8572
+ };
8573
+ $searchFeedbackData: {
8574
+ value: any;
8575
+ observers: Function[];
8576
+ subscribe: (observer: (data: any) => void) => void;
8577
+ unsubscribe: (observer: (data: any) => void) => void;
8578
+ setValue: (value: any) => void;
8579
+ getValue: () => any;
8580
+ notify: () => void;
8581
+ };
8582
+ $searchSortingData: {
8583
+ value: any;
8584
+ observers: Function[];
8585
+ subscribe: (observer: (data: any) => void) => void;
8586
+ unsubscribe: (observer: (data: any) => void) => void;
8587
+ setValue: (value: any) => void;
8588
+ getValue: () => any;
8589
+ notify: () => void;
8590
+ };
8591
+ $searchRelatedSearchesData: {
8592
+ value: any;
8593
+ observers: Function[];
8594
+ subscribe: (observer: (data: any) => void) => void;
8595
+ unsubscribe: (observer: (data: any) => void) => void;
8596
+ setValue: (value: any) => void;
8597
+ getValue: () => any;
8598
+ notify: () => void;
8599
+ };
8600
+ $searchExternalPromotionsData: {
8601
+ value: any;
8602
+ observers: Function[];
8603
+ subscribe: (observer: (data: any) => void) => void;
8604
+ unsubscribe: (observer: (data: any) => void) => void;
8605
+ setValue: (value: any) => void;
8606
+ getValue: () => any;
8607
+ notify: () => void;
8608
+ };
8609
+ $cookiesDisabled: {
8610
+ value: any;
8611
+ observers: Function[];
8612
+ subscribe: (observer: (data: any) => void) => void;
8613
+ unsubscribe: (observer: (data: any) => void) => void;
8614
+ setValue: (value: any) => void;
8615
+ getValue: () => any;
8616
+ notify: () => void;
8617
+ };
8618
+ $answer: {
7166
8619
  value: any;
7167
8620
  observers: Function[];
7168
8621
  subscribe: (observer: (data: any) => void) => void;
@@ -7189,6 +8642,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7189
8642
  readonly endResultIndex: number;
7190
8643
  readonly isFirstPage: boolean;
7191
8644
  readonly isLastPage: boolean;
8645
+ readonly percentageOfResultsLoaded: number;
7192
8646
  readonly results: {
7193
8647
  custom?: any;
7194
8648
  ribbon: string;
@@ -7214,7 +8668,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
7214
8668
  }[];
7215
8669
  readonly autoCorrectedQuery: string;
7216
8670
  readonly originalQuery: string;
8671
+ readonly getAnswerData: string;
8672
+ readonly shouldShowAnswer: boolean;
7217
8673
  readonly searchTerm: string;
8674
+ readonly searchingEverything: boolean;
8675
+ readonly isInfiniteScroll: boolean;
7218
8676
  readonly searchExecuted: boolean;
7219
8677
  readonly selectedFacets: ({
7220
8678
  value: string;
@@ -7273,6 +8731,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7273
8731
  hasResults: boolean;
7274
8732
  hasResultsOrExternalPromotions: boolean;
7275
8733
  searchExecuted: boolean;
8734
+ searchingEverything: boolean;
7276
8735
  hasRelatedSearches: boolean;
7277
8736
  hasExternalPromotions: boolean;
7278
8737
  startResultIndex: number;
@@ -7305,6 +8764,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
7305
8764
  url: string;
7306
8765
  description: string;
7307
8766
  }[];
8767
+ answer: string;
8768
+ shouldShowAnswer: boolean;
8769
+ isInfiniteScroll: boolean;
8770
+ percentageOfResultsLoaded: number;
7308
8771
  };
7309
8772
  readonly trackingData: {
7310
8773
  searchTerm: string;
@@ -7320,10 +8783,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
7320
8783
  sessionId: string;
7321
8784
  autoCorrect: boolean;
7322
8785
  forceNotCorrect: boolean;
8786
+ lastSearchValue: string;
8787
+ turnAIAnswerGenerationOn: boolean;
8788
+ isInfiniteScroll: boolean;
7323
8789
  cookieHandlingCallback: () => void;
8790
+ setIsInfiniteScroll: (value: boolean) => void;
7324
8791
  setSearchTerm: (value: string) => void;
7325
8792
  setRenderingEngine: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine) => void;
7326
8793
  setCurrentPage: (value: number) => void;
8794
+ setIsAnswerWidgetCreated: (value: boolean) => void;
7327
8795
  setLoading: (value: boolean) => void;
7328
8796
  setSearchResults: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => void;
7329
8797
  setSearchResultsMetadata: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchMetadata) => void;
@@ -7345,6 +8813,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
7345
8813
  setRelatedSearchesData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRelatedSearchesData) => void;
7346
8814
  setExternalPromotionsData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxExternalPromotionsData) => void;
7347
8815
  setCookiesDisabled: (data: boolean) => void;
8816
+ setAnswerData: (data: string) => void;
8817
+ readonly getAnswerData: any;
7348
8818
  readonly searchstaxConfig: {
7349
8819
  language: string;
7350
8820
  searchURL: string;
@@ -7363,6 +8833,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7363
8833
  beforeSearch?: (props: import("@searchstax-inc/searchstudio-ux-js").ISearchObject) => import("@searchstax-inc/searchstudio-ux-js").ISearchObject;
7364
8834
  afterSearch?: (results: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[];
7365
8835
  };
8836
+ turnAIAnswerGenerationOn?: boolean;
7366
8837
  };
7367
8838
  readonly searchFacets: {
7368
8839
  name: string;
@@ -7444,10 +8915,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
7444
8915
  }[];
7445
8916
  };
7446
8917
  readonly currentPage: number;
8918
+ readonly isAnswerWidgetCreated: boolean;
7447
8919
  readonly renderingEngine: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine;
7448
8920
  readonly searchObject: {
7449
8921
  query: string;
7450
8922
  page: number;
8923
+ itemsPerPage: number;
7451
8924
  order: string;
7452
8925
  facets: {
7453
8926
  name: string;
@@ -7489,6 +8962,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7489
8962
  afterAutosuggest?: (result: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse;
7490
8963
  };
7491
8964
  };
8965
+ readonly answerConfig: string;
7492
8966
  readonly autosuggestResults: {
7493
8967
  numFound: number;
7494
8968
  suggestions: {
@@ -7548,6 +9022,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7548
9022
  hasResults: boolean;
7549
9023
  hasResultsOrExternalPromotions: boolean;
7550
9024
  searchExecuted: boolean;
9025
+ searchingEverything: boolean;
7551
9026
  hasRelatedSearches: boolean;
7552
9027
  hasExternalPromotions: boolean;
7553
9028
  startResultIndex: number;
@@ -7580,6 +9055,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
7580
9055
  url: string;
7581
9056
  description: string;
7582
9057
  }[];
9058
+ answer: string;
9059
+ shouldShowAnswer: boolean;
9060
+ isInfiniteScroll: boolean;
9061
+ percentageOfResultsLoaded: number;
7583
9062
  };
7584
9063
  readonly selectedFacetsTemplateData: ({
7585
9064
  value: string;
@@ -7627,6 +9106,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7627
9106
  hasResults: boolean;
7628
9107
  hasResultsOrExternalPromotions: boolean;
7629
9108
  searchExecuted: boolean;
9109
+ searchingEverything: boolean;
7630
9110
  hasRelatedSearches: boolean;
7631
9111
  hasExternalPromotions: boolean;
7632
9112
  startResultIndex: number;
@@ -7659,6 +9139,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
7659
9139
  url: string;
7660
9140
  description: string;
7661
9141
  }[];
9142
+ answer: string;
9143
+ shouldShowAnswer: boolean;
9144
+ isInfiniteScroll: boolean;
9145
+ percentageOfResultsLoaded: number;
7662
9146
  };
7663
9147
  readonly searchFeedbackData: {
7664
9148
  currentPage: number;
@@ -7692,6 +9176,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7692
9176
  hasResults: boolean;
7693
9177
  hasResultsOrExternalPromotions: boolean;
7694
9178
  searchExecuted: boolean;
9179
+ searchingEverything: boolean;
7695
9180
  hasRelatedSearches: boolean;
7696
9181
  hasExternalPromotions: boolean;
7697
9182
  startResultIndex: number;
@@ -7724,6 +9209,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
7724
9209
  url: string;
7725
9210
  description: string;
7726
9211
  }[];
9212
+ answer: string;
9213
+ shouldShowAnswer: boolean;
9214
+ isInfiniteScroll: boolean;
9215
+ percentageOfResultsLoaded: number;
7727
9216
  };
7728
9217
  readonly searchSortingData: {
7729
9218
  currentPage: number;
@@ -7757,6 +9246,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7757
9246
  hasResults: boolean;
7758
9247
  hasResultsOrExternalPromotions: boolean;
7759
9248
  searchExecuted: boolean;
9249
+ searchingEverything: boolean;
7760
9250
  hasRelatedSearches: boolean;
7761
9251
  hasExternalPromotions: boolean;
7762
9252
  startResultIndex: number;
@@ -7789,6 +9279,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
7789
9279
  url: string;
7790
9280
  description: string;
7791
9281
  }[];
9282
+ answer: string;
9283
+ shouldShowAnswer: boolean;
9284
+ isInfiniteScroll: boolean;
9285
+ percentageOfResultsLoaded: number;
7792
9286
  };
7793
9287
  readonly searchRelatedSearchesData: {
7794
9288
  relatedSearches: {
@@ -7829,6 +9323,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7829
9323
  hasResults: boolean;
7830
9324
  hasResultsOrExternalPromotions: boolean;
7831
9325
  searchExecuted: boolean;
9326
+ searchingEverything: boolean;
7832
9327
  hasRelatedSearches: boolean;
7833
9328
  hasExternalPromotions: boolean;
7834
9329
  startResultIndex: number;
@@ -7854,6 +9349,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
7854
9349
  url: string;
7855
9350
  description: string;
7856
9351
  }[];
9352
+ answer: string;
9353
+ shouldShowAnswer: boolean;
9354
+ isInfiniteScroll: boolean;
9355
+ percentageOfResultsLoaded: number;
7857
9356
  };
7858
9357
  readonly searchExternalPromotionsData: {
7859
9358
  externalPromotions: {
@@ -7893,6 +9392,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7893
9392
  hasResults: boolean;
7894
9393
  hasResultsOrExternalPromotions: boolean;
7895
9394
  searchExecuted: boolean;
9395
+ searchingEverything: boolean;
7896
9396
  hasRelatedSearches: boolean;
7897
9397
  hasExternalPromotions: boolean;
7898
9398
  startResultIndex: number;
@@ -7919,6 +9419,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
7919
9419
  last?: boolean;
7920
9420
  position?: number;
7921
9421
  }[];
9422
+ answer: string;
9423
+ shouldShowAnswer: boolean;
9424
+ isInfiniteScroll: boolean;
9425
+ percentageOfResultsLoaded: number;
7922
9426
  };
7923
9427
  readonly cookiesDisabled: boolean;
7924
9428
  };
@@ -7928,6 +9432,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7928
9432
  suggest: (term: string, queryParams: import("@searchstax-inc/searchstudio-ux-js").IAdditionalProp[]) => void;
7929
9433
  changeLanguage: (language: string) => void;
7930
9434
  addSearchInputWidget: (containerId: string, config: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchInputConfig) => void;
9435
+ addAnswerWidget: (containerId: string, config: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxAnswerConfig) => void;
7931
9436
  addSearchResultsWidget: (containerId: string, config: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchResultsConfig) => void;
7932
9437
  addPaginationWidget: (containerId: string, config: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchPaginationConfig) => void;
7933
9438
  addSearchFeedbackWidget: (containerId: string, config: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchFeedbackConfig) => void;