@searchstax-inc/searchstudio-ux-vue 0.2.0 → 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.
@@ -243,6 +243,24 @@ declare const _sfc_main: import("vue").DefineComponent<{
243
243
  getValue: () => any;
244
244
  notify: () => void;
245
245
  };
246
+ $cookiesDisabled: {
247
+ value: any;
248
+ observers: Function[];
249
+ subscribe: (observer: (data: any) => void) => void;
250
+ unsubscribe: (observer: (data: any) => void) => void;
251
+ setValue: (value: any) => void;
252
+ getValue: () => any;
253
+ notify: () => void;
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
+ };
246
264
  $language: {
247
265
  value: any;
248
266
  observers: Function[];
@@ -261,6 +279,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
261
279
  readonly endResultIndex: number;
262
280
  readonly isFirstPage: boolean;
263
281
  readonly isLastPage: boolean;
282
+ readonly percentageOfResultsLoaded: number;
264
283
  readonly results: {
265
284
  custom?: any;
266
285
  ribbon: string;
@@ -286,7 +305,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
286
305
  }[];
287
306
  readonly autoCorrectedQuery: string;
288
307
  readonly originalQuery: string;
308
+ readonly getAnswerData: string;
309
+ readonly shouldShowAnswer: boolean;
289
310
  readonly searchTerm: string;
311
+ readonly searchingEverything: boolean;
312
+ readonly isInfiniteScroll: boolean;
290
313
  readonly searchExecuted: boolean;
291
314
  readonly selectedFacets: ({
292
315
  value: string;
@@ -345,6 +368,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
345
368
  hasResults: boolean;
346
369
  hasResultsOrExternalPromotions: boolean;
347
370
  searchExecuted: boolean;
371
+ searchingEverything: boolean;
348
372
  hasRelatedSearches: boolean;
349
373
  hasExternalPromotions: boolean;
350
374
  startResultIndex: number;
@@ -377,6 +401,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
377
401
  url: string;
378
402
  description: string;
379
403
  }[];
404
+ answer: string;
405
+ shouldShowAnswer: boolean;
406
+ isInfiniteScroll: boolean;
407
+ percentageOfResultsLoaded: number;
380
408
  };
381
409
  readonly trackingData: {
382
410
  searchTerm: string;
@@ -392,9 +420,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
392
420
  sessionId: string;
393
421
  autoCorrect: boolean;
394
422
  forceNotCorrect: boolean;
423
+ lastSearchValue: string;
424
+ turnAIAnswerGenerationOn: boolean;
425
+ isInfiniteScroll: boolean;
426
+ cookieHandlingCallback: () => void;
427
+ setIsInfiniteScroll: (value: boolean) => void;
395
428
  setSearchTerm: (value: string) => void;
396
429
  setRenderingEngine: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine) => void;
397
430
  setCurrentPage: (value: number) => void;
431
+ setIsAnswerWidgetCreated: (value: boolean) => void;
398
432
  setLoading: (value: boolean) => void;
399
433
  setSearchResults: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => void;
400
434
  setSearchResultsMetadata: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchMetadata) => void;
@@ -415,6 +449,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
415
449
  setSearchSortingData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchSortingData) => void;
416
450
  setRelatedSearchesData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRelatedSearchesData) => void;
417
451
  setExternalPromotionsData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxExternalPromotionsData) => void;
452
+ setCookiesDisabled: (data: boolean) => void;
453
+ setAnswerData: (data: string) => void;
454
+ readonly getAnswerData: any;
418
455
  readonly searchstaxConfig: {
419
456
  language: string;
420
457
  searchURL: string;
@@ -433,6 +470,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
433
470
  beforeSearch?: (props: import("@searchstax-inc/searchstudio-ux-js").ISearchObject) => import("@searchstax-inc/searchstudio-ux-js").ISearchObject;
434
471
  afterSearch?: (results: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[];
435
472
  };
473
+ turnAIAnswerGenerationOn?: boolean;
436
474
  };
437
475
  readonly searchFacets: {
438
476
  name: string;
@@ -514,10 +552,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
514
552
  }[];
515
553
  };
516
554
  readonly currentPage: number;
555
+ readonly isAnswerWidgetCreated: boolean;
517
556
  readonly renderingEngine: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine;
518
557
  readonly searchObject: {
519
558
  query: string;
520
559
  page: number;
560
+ itemsPerPage: number;
521
561
  order: string;
522
562
  facets: {
523
563
  name: string;
@@ -559,6 +599,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
559
599
  afterAutosuggest?: (result: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse;
560
600
  };
561
601
  };
602
+ readonly answerConfig: string;
562
603
  readonly autosuggestResults: {
563
604
  numFound: number;
564
605
  suggestions: {
@@ -618,6 +659,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
618
659
  hasResults: boolean;
619
660
  hasResultsOrExternalPromotions: boolean;
620
661
  searchExecuted: boolean;
662
+ searchingEverything: boolean;
621
663
  hasRelatedSearches: boolean;
622
664
  hasExternalPromotions: boolean;
623
665
  startResultIndex: number;
@@ -650,6 +692,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
650
692
  url: string;
651
693
  description: string;
652
694
  }[];
695
+ answer: string;
696
+ shouldShowAnswer: boolean;
697
+ isInfiniteScroll: boolean;
698
+ percentageOfResultsLoaded: number;
653
699
  };
654
700
  readonly selectedFacetsTemplateData: ({
655
701
  value: string;
@@ -697,6 +743,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
697
743
  hasResults: boolean;
698
744
  hasResultsOrExternalPromotions: boolean;
699
745
  searchExecuted: boolean;
746
+ searchingEverything: boolean;
700
747
  hasRelatedSearches: boolean;
701
748
  hasExternalPromotions: boolean;
702
749
  startResultIndex: number;
@@ -729,6 +776,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
729
776
  url: string;
730
777
  description: string;
731
778
  }[];
779
+ answer: string;
780
+ shouldShowAnswer: boolean;
781
+ isInfiniteScroll: boolean;
782
+ percentageOfResultsLoaded: number;
732
783
  };
733
784
  readonly searchFeedbackData: {
734
785
  currentPage: number;
@@ -762,6 +813,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
762
813
  hasResults: boolean;
763
814
  hasResultsOrExternalPromotions: boolean;
764
815
  searchExecuted: boolean;
816
+ searchingEverything: boolean;
765
817
  hasRelatedSearches: boolean;
766
818
  hasExternalPromotions: boolean;
767
819
  startResultIndex: number;
@@ -794,6 +846,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
794
846
  url: string;
795
847
  description: string;
796
848
  }[];
849
+ answer: string;
850
+ shouldShowAnswer: boolean;
851
+ isInfiniteScroll: boolean;
852
+ percentageOfResultsLoaded: number;
797
853
  };
798
854
  readonly searchSortingData: {
799
855
  currentPage: number;
@@ -827,6 +883,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
827
883
  hasResults: boolean;
828
884
  hasResultsOrExternalPromotions: boolean;
829
885
  searchExecuted: boolean;
886
+ searchingEverything: boolean;
830
887
  hasRelatedSearches: boolean;
831
888
  hasExternalPromotions: boolean;
832
889
  startResultIndex: number;
@@ -859,6 +916,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
859
916
  url: string;
860
917
  description: string;
861
918
  }[];
919
+ answer: string;
920
+ shouldShowAnswer: boolean;
921
+ isInfiniteScroll: boolean;
922
+ percentageOfResultsLoaded: number;
862
923
  };
863
924
  readonly searchRelatedSearchesData: {
864
925
  relatedSearches: {
@@ -899,6 +960,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
899
960
  hasResults: boolean;
900
961
  hasResultsOrExternalPromotions: boolean;
901
962
  searchExecuted: boolean;
963
+ searchingEverything: boolean;
902
964
  hasRelatedSearches: boolean;
903
965
  hasExternalPromotions: boolean;
904
966
  startResultIndex: number;
@@ -924,6 +986,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
924
986
  url: string;
925
987
  description: string;
926
988
  }[];
989
+ answer: string;
990
+ shouldShowAnswer: boolean;
991
+ isInfiniteScroll: boolean;
992
+ percentageOfResultsLoaded: number;
927
993
  };
928
994
  readonly searchExternalPromotionsData: {
929
995
  externalPromotions: {
@@ -963,6 +1029,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
963
1029
  hasResults: boolean;
964
1030
  hasResultsOrExternalPromotions: boolean;
965
1031
  searchExecuted: boolean;
1032
+ searchingEverything: boolean;
966
1033
  hasRelatedSearches: boolean;
967
1034
  hasExternalPromotions: boolean;
968
1035
  startResultIndex: number;
@@ -989,9 +1056,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
989
1056
  last?: boolean;
990
1057
  position?: number;
991
1058
  }[];
1059
+ answer: string;
1060
+ shouldShowAnswer: boolean;
1061
+ isInfiniteScroll: boolean;
1062
+ percentageOfResultsLoaded: number;
992
1063
  };
1064
+ readonly cookiesDisabled: boolean;
993
1065
  };
994
1066
  config: {
1067
+ renderMethod?: "pagination" | "infiniteScroll";
1068
+ resultsPerPage?: number;
995
1069
  templates?: {
996
1070
  mainTemplate?: {
997
1071
  template: string;
@@ -1199,6 +1273,24 @@ declare const _sfc_main: import("vue").DefineComponent<{
1199
1273
  getValue: () => any;
1200
1274
  notify: () => void;
1201
1275
  };
1276
+ $cookiesDisabled: {
1277
+ value: any;
1278
+ observers: Function[];
1279
+ subscribe: (observer: (data: any) => void) => void;
1280
+ unsubscribe: (observer: (data: any) => void) => void;
1281
+ setValue: (value: any) => void;
1282
+ getValue: () => any;
1283
+ notify: () => void;
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
+ };
1202
1294
  $language: {
1203
1295
  value: any;
1204
1296
  observers: Function[];
@@ -1217,6 +1309,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1217
1309
  readonly endResultIndex: number;
1218
1310
  readonly isFirstPage: boolean;
1219
1311
  readonly isLastPage: boolean;
1312
+ readonly percentageOfResultsLoaded: number;
1220
1313
  readonly results: {
1221
1314
  custom?: any;
1222
1315
  ribbon: string;
@@ -1242,7 +1335,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
1242
1335
  }[];
1243
1336
  readonly autoCorrectedQuery: string;
1244
1337
  readonly originalQuery: string;
1338
+ readonly getAnswerData: string;
1339
+ readonly shouldShowAnswer: boolean;
1245
1340
  readonly searchTerm: string;
1341
+ readonly searchingEverything: boolean;
1342
+ readonly isInfiniteScroll: boolean;
1246
1343
  readonly searchExecuted: boolean;
1247
1344
  readonly selectedFacets: ({
1248
1345
  value: string;
@@ -1301,6 +1398,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1301
1398
  hasResults: boolean;
1302
1399
  hasResultsOrExternalPromotions: boolean;
1303
1400
  searchExecuted: boolean;
1401
+ searchingEverything: boolean;
1304
1402
  hasRelatedSearches: boolean;
1305
1403
  hasExternalPromotions: boolean;
1306
1404
  startResultIndex: number;
@@ -1333,6 +1431,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1333
1431
  url: string;
1334
1432
  description: string;
1335
1433
  }[];
1434
+ answer: string;
1435
+ shouldShowAnswer: boolean;
1436
+ isInfiniteScroll: boolean;
1437
+ percentageOfResultsLoaded: number;
1336
1438
  };
1337
1439
  readonly trackingData: {
1338
1440
  searchTerm: string;
@@ -1348,9 +1450,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
1348
1450
  sessionId: string;
1349
1451
  autoCorrect: boolean;
1350
1452
  forceNotCorrect: boolean;
1453
+ lastSearchValue: string;
1454
+ turnAIAnswerGenerationOn: boolean;
1455
+ isInfiniteScroll: boolean;
1456
+ cookieHandlingCallback: () => void;
1457
+ setIsInfiniteScroll: (value: boolean) => void;
1351
1458
  setSearchTerm: (value: string) => void;
1352
1459
  setRenderingEngine: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine) => void;
1353
1460
  setCurrentPage: (value: number) => void;
1461
+ setIsAnswerWidgetCreated: (value: boolean) => void;
1354
1462
  setLoading: (value: boolean) => void;
1355
1463
  setSearchResults: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => void;
1356
1464
  setSearchResultsMetadata: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchMetadata) => void;
@@ -1371,6 +1479,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
1371
1479
  setSearchSortingData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchSortingData) => void;
1372
1480
  setRelatedSearchesData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRelatedSearchesData) => void;
1373
1481
  setExternalPromotionsData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxExternalPromotionsData) => void;
1482
+ setCookiesDisabled: (data: boolean) => void;
1483
+ setAnswerData: (data: string) => void;
1484
+ readonly getAnswerData: any;
1374
1485
  readonly searchstaxConfig: {
1375
1486
  language: string;
1376
1487
  searchURL: string;
@@ -1389,6 +1500,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1389
1500
  beforeSearch?: (props: import("@searchstax-inc/searchstudio-ux-js").ISearchObject) => import("@searchstax-inc/searchstudio-ux-js").ISearchObject;
1390
1501
  afterSearch?: (results: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[];
1391
1502
  };
1503
+ turnAIAnswerGenerationOn?: boolean;
1392
1504
  };
1393
1505
  readonly searchFacets: {
1394
1506
  name: string;
@@ -1470,10 +1582,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
1470
1582
  }[];
1471
1583
  };
1472
1584
  readonly currentPage: number;
1585
+ readonly isAnswerWidgetCreated: boolean;
1473
1586
  readonly renderingEngine: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine;
1474
1587
  readonly searchObject: {
1475
1588
  query: string;
1476
1589
  page: number;
1590
+ itemsPerPage: number;
1477
1591
  order: string;
1478
1592
  facets: {
1479
1593
  name: string;
@@ -1515,6 +1629,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1515
1629
  afterAutosuggest?: (result: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse;
1516
1630
  };
1517
1631
  };
1632
+ readonly answerConfig: string;
1518
1633
  readonly autosuggestResults: {
1519
1634
  numFound: number;
1520
1635
  suggestions: {
@@ -1574,6 +1689,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1574
1689
  hasResults: boolean;
1575
1690
  hasResultsOrExternalPromotions: boolean;
1576
1691
  searchExecuted: boolean;
1692
+ searchingEverything: boolean;
1577
1693
  hasRelatedSearches: boolean;
1578
1694
  hasExternalPromotions: boolean;
1579
1695
  startResultIndex: number;
@@ -1606,6 +1722,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1606
1722
  url: string;
1607
1723
  description: string;
1608
1724
  }[];
1725
+ answer: string;
1726
+ shouldShowAnswer: boolean;
1727
+ isInfiniteScroll: boolean;
1728
+ percentageOfResultsLoaded: number;
1609
1729
  };
1610
1730
  readonly selectedFacetsTemplateData: ({
1611
1731
  value: string;
@@ -1653,6 +1773,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1653
1773
  hasResults: boolean;
1654
1774
  hasResultsOrExternalPromotions: boolean;
1655
1775
  searchExecuted: boolean;
1776
+ searchingEverything: boolean;
1656
1777
  hasRelatedSearches: boolean;
1657
1778
  hasExternalPromotions: boolean;
1658
1779
  startResultIndex: number;
@@ -1685,6 +1806,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1685
1806
  url: string;
1686
1807
  description: string;
1687
1808
  }[];
1809
+ answer: string;
1810
+ shouldShowAnswer: boolean;
1811
+ isInfiniteScroll: boolean;
1812
+ percentageOfResultsLoaded: number;
1688
1813
  };
1689
1814
  readonly searchFeedbackData: {
1690
1815
  currentPage: number;
@@ -1718,6 +1843,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1718
1843
  hasResults: boolean;
1719
1844
  hasResultsOrExternalPromotions: boolean;
1720
1845
  searchExecuted: boolean;
1846
+ searchingEverything: boolean;
1721
1847
  hasRelatedSearches: boolean;
1722
1848
  hasExternalPromotions: boolean;
1723
1849
  startResultIndex: number;
@@ -1750,6 +1876,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1750
1876
  url: string;
1751
1877
  description: string;
1752
1878
  }[];
1879
+ answer: string;
1880
+ shouldShowAnswer: boolean;
1881
+ isInfiniteScroll: boolean;
1882
+ percentageOfResultsLoaded: number;
1753
1883
  };
1754
1884
  readonly searchSortingData: {
1755
1885
  currentPage: number;
@@ -1783,6 +1913,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1783
1913
  hasResults: boolean;
1784
1914
  hasResultsOrExternalPromotions: boolean;
1785
1915
  searchExecuted: boolean;
1916
+ searchingEverything: boolean;
1786
1917
  hasRelatedSearches: boolean;
1787
1918
  hasExternalPromotions: boolean;
1788
1919
  startResultIndex: number;
@@ -1815,6 +1946,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1815
1946
  url: string;
1816
1947
  description: string;
1817
1948
  }[];
1949
+ answer: string;
1950
+ shouldShowAnswer: boolean;
1951
+ isInfiniteScroll: boolean;
1952
+ percentageOfResultsLoaded: number;
1818
1953
  };
1819
1954
  readonly searchRelatedSearchesData: {
1820
1955
  relatedSearches: {
@@ -1855,6 +1990,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1855
1990
  hasResults: boolean;
1856
1991
  hasResultsOrExternalPromotions: boolean;
1857
1992
  searchExecuted: boolean;
1993
+ searchingEverything: boolean;
1858
1994
  hasRelatedSearches: boolean;
1859
1995
  hasExternalPromotions: boolean;
1860
1996
  startResultIndex: number;
@@ -1880,6 +2016,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1880
2016
  url: string;
1881
2017
  description: string;
1882
2018
  }[];
2019
+ answer: string;
2020
+ shouldShowAnswer: boolean;
2021
+ isInfiniteScroll: boolean;
2022
+ percentageOfResultsLoaded: number;
1883
2023
  };
1884
2024
  readonly searchExternalPromotionsData: {
1885
2025
  externalPromotions: {
@@ -1919,6 +2059,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1919
2059
  hasResults: boolean;
1920
2060
  hasResultsOrExternalPromotions: boolean;
1921
2061
  searchExecuted: boolean;
2062
+ searchingEverything: boolean;
1922
2063
  hasRelatedSearches: boolean;
1923
2064
  hasExternalPromotions: boolean;
1924
2065
  startResultIndex: number;
@@ -1945,7 +2086,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
1945
2086
  last?: boolean;
1946
2087
  position?: number;
1947
2088
  }[];
2089
+ answer: string;
2090
+ shouldShowAnswer: boolean;
2091
+ isInfiniteScroll: boolean;
2092
+ percentageOfResultsLoaded: number;
1948
2093
  };
2094
+ readonly cookiesDisabled: boolean;
1949
2095
  };
1950
2096
  config: {
1951
2097
  facetingType: "and" | "or" | "showUnavailable" | "tabs";
@@ -2083,6 +2229,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2083
2229
  hasResults: boolean;
2084
2230
  hasResultsOrExternalPromotions: boolean;
2085
2231
  searchExecuted: boolean;
2232
+ searchingEverything: boolean;
2086
2233
  hasRelatedSearches: boolean;
2087
2234
  hasExternalPromotions: boolean;
2088
2235
  startResultIndex: number;
@@ -2115,6 +2262,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2115
2262
  url: string;
2116
2263
  description: string;
2117
2264
  }[];
2265
+ answer: string;
2266
+ shouldShowAnswer: boolean;
2267
+ isInfiniteScroll: boolean;
2268
+ percentageOfResultsLoaded: number;
2118
2269
  };
2119
2270
  cacheFacets: () => void;
2120
2271
  readonly needCache: boolean;
@@ -2324,6 +2475,24 @@ declare const _sfc_main: import("vue").DefineComponent<{
2324
2475
  getValue: () => any;
2325
2476
  notify: () => void;
2326
2477
  };
2478
+ $cookiesDisabled: {
2479
+ value: any;
2480
+ observers: Function[];
2481
+ subscribe: (observer: (data: any) => void) => void;
2482
+ unsubscribe: (observer: (data: any) => void) => void;
2483
+ setValue: (value: any) => void;
2484
+ getValue: () => any;
2485
+ notify: () => void;
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
+ };
2327
2496
  $language: {
2328
2497
  value: any;
2329
2498
  observers: Function[];
@@ -2342,6 +2511,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2342
2511
  readonly endResultIndex: number;
2343
2512
  readonly isFirstPage: boolean;
2344
2513
  readonly isLastPage: boolean;
2514
+ readonly percentageOfResultsLoaded: number;
2345
2515
  readonly results: {
2346
2516
  custom?: any;
2347
2517
  ribbon: string;
@@ -2367,7 +2537,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
2367
2537
  }[];
2368
2538
  readonly autoCorrectedQuery: string;
2369
2539
  readonly originalQuery: string;
2540
+ readonly getAnswerData: string;
2541
+ readonly shouldShowAnswer: boolean;
2370
2542
  readonly searchTerm: string;
2543
+ readonly searchingEverything: boolean;
2544
+ readonly isInfiniteScroll: boolean;
2371
2545
  readonly searchExecuted: boolean;
2372
2546
  readonly selectedFacets: ({
2373
2547
  value: string;
@@ -2426,6 +2600,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2426
2600
  hasResults: boolean;
2427
2601
  hasResultsOrExternalPromotions: boolean;
2428
2602
  searchExecuted: boolean;
2603
+ searchingEverything: boolean;
2429
2604
  hasRelatedSearches: boolean;
2430
2605
  hasExternalPromotions: boolean;
2431
2606
  startResultIndex: number;
@@ -2458,6 +2633,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2458
2633
  url: string;
2459
2634
  description: string;
2460
2635
  }[];
2636
+ answer: string;
2637
+ shouldShowAnswer: boolean;
2638
+ isInfiniteScroll: boolean;
2639
+ percentageOfResultsLoaded: number;
2461
2640
  };
2462
2641
  readonly trackingData: {
2463
2642
  searchTerm: string;
@@ -2473,9 +2652,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
2473
2652
  sessionId: string;
2474
2653
  autoCorrect: boolean;
2475
2654
  forceNotCorrect: boolean;
2655
+ lastSearchValue: string;
2656
+ turnAIAnswerGenerationOn: boolean;
2657
+ isInfiniteScroll: boolean;
2658
+ cookieHandlingCallback: () => void;
2659
+ setIsInfiniteScroll: (value: boolean) => void;
2476
2660
  setSearchTerm: (value: string) => void;
2477
2661
  setRenderingEngine: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine) => void;
2478
2662
  setCurrentPage: (value: number) => void;
2663
+ setIsAnswerWidgetCreated: (value: boolean) => void;
2479
2664
  setLoading: (value: boolean) => void;
2480
2665
  setSearchResults: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => void;
2481
2666
  setSearchResultsMetadata: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchMetadata) => void;
@@ -2496,6 +2681,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
2496
2681
  setSearchSortingData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchSortingData) => void;
2497
2682
  setRelatedSearchesData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRelatedSearchesData) => void;
2498
2683
  setExternalPromotionsData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxExternalPromotionsData) => void;
2684
+ setCookiesDisabled: (data: boolean) => void;
2685
+ setAnswerData: (data: string) => void;
2686
+ readonly getAnswerData: any;
2499
2687
  readonly searchstaxConfig: {
2500
2688
  language: string;
2501
2689
  searchURL: string;
@@ -2514,6 +2702,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2514
2702
  beforeSearch?: (props: import("@searchstax-inc/searchstudio-ux-js").ISearchObject) => import("@searchstax-inc/searchstudio-ux-js").ISearchObject;
2515
2703
  afterSearch?: (results: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[];
2516
2704
  };
2705
+ turnAIAnswerGenerationOn?: boolean;
2517
2706
  };
2518
2707
  readonly searchFacets: {
2519
2708
  name: string;
@@ -2595,10 +2784,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
2595
2784
  }[];
2596
2785
  };
2597
2786
  readonly currentPage: number;
2787
+ readonly isAnswerWidgetCreated: boolean;
2598
2788
  readonly renderingEngine: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine;
2599
2789
  readonly searchObject: {
2600
2790
  query: string;
2601
2791
  page: number;
2792
+ itemsPerPage: number;
2602
2793
  order: string;
2603
2794
  facets: {
2604
2795
  name: string;
@@ -2640,6 +2831,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2640
2831
  afterAutosuggest?: (result: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse;
2641
2832
  };
2642
2833
  };
2834
+ readonly answerConfig: string;
2643
2835
  readonly autosuggestResults: {
2644
2836
  numFound: number;
2645
2837
  suggestions: {
@@ -2699,6 +2891,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2699
2891
  hasResults: boolean;
2700
2892
  hasResultsOrExternalPromotions: boolean;
2701
2893
  searchExecuted: boolean;
2894
+ searchingEverything: boolean;
2702
2895
  hasRelatedSearches: boolean;
2703
2896
  hasExternalPromotions: boolean;
2704
2897
  startResultIndex: number;
@@ -2731,6 +2924,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2731
2924
  url: string;
2732
2925
  description: string;
2733
2926
  }[];
2927
+ answer: string;
2928
+ shouldShowAnswer: boolean;
2929
+ isInfiniteScroll: boolean;
2930
+ percentageOfResultsLoaded: number;
2734
2931
  };
2735
2932
  readonly selectedFacetsTemplateData: ({
2736
2933
  value: string;
@@ -2778,6 +2975,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2778
2975
  hasResults: boolean;
2779
2976
  hasResultsOrExternalPromotions: boolean;
2780
2977
  searchExecuted: boolean;
2978
+ searchingEverything: boolean;
2781
2979
  hasRelatedSearches: boolean;
2782
2980
  hasExternalPromotions: boolean;
2783
2981
  startResultIndex: number;
@@ -2810,6 +3008,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2810
3008
  url: string;
2811
3009
  description: string;
2812
3010
  }[];
3011
+ answer: string;
3012
+ shouldShowAnswer: boolean;
3013
+ isInfiniteScroll: boolean;
3014
+ percentageOfResultsLoaded: number;
2813
3015
  };
2814
3016
  readonly searchFeedbackData: {
2815
3017
  currentPage: number;
@@ -2843,6 +3045,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2843
3045
  hasResults: boolean;
2844
3046
  hasResultsOrExternalPromotions: boolean;
2845
3047
  searchExecuted: boolean;
3048
+ searchingEverything: boolean;
2846
3049
  hasRelatedSearches: boolean;
2847
3050
  hasExternalPromotions: boolean;
2848
3051
  startResultIndex: number;
@@ -2875,6 +3078,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2875
3078
  url: string;
2876
3079
  description: string;
2877
3080
  }[];
3081
+ answer: string;
3082
+ shouldShowAnswer: boolean;
3083
+ isInfiniteScroll: boolean;
3084
+ percentageOfResultsLoaded: number;
2878
3085
  };
2879
3086
  readonly searchSortingData: {
2880
3087
  currentPage: number;
@@ -2908,6 +3115,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2908
3115
  hasResults: boolean;
2909
3116
  hasResultsOrExternalPromotions: boolean;
2910
3117
  searchExecuted: boolean;
3118
+ searchingEverything: boolean;
2911
3119
  hasRelatedSearches: boolean;
2912
3120
  hasExternalPromotions: boolean;
2913
3121
  startResultIndex: number;
@@ -2940,6 +3148,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2940
3148
  url: string;
2941
3149
  description: string;
2942
3150
  }[];
3151
+ answer: string;
3152
+ shouldShowAnswer: boolean;
3153
+ isInfiniteScroll: boolean;
3154
+ percentageOfResultsLoaded: number;
2943
3155
  };
2944
3156
  readonly searchRelatedSearchesData: {
2945
3157
  relatedSearches: {
@@ -2980,6 +3192,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2980
3192
  hasResults: boolean;
2981
3193
  hasResultsOrExternalPromotions: boolean;
2982
3194
  searchExecuted: boolean;
3195
+ searchingEverything: boolean;
2983
3196
  hasRelatedSearches: boolean;
2984
3197
  hasExternalPromotions: boolean;
2985
3198
  startResultIndex: number;
@@ -3005,6 +3218,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3005
3218
  url: string;
3006
3219
  description: string;
3007
3220
  }[];
3221
+ answer: string;
3222
+ shouldShowAnswer: boolean;
3223
+ isInfiniteScroll: boolean;
3224
+ percentageOfResultsLoaded: number;
3008
3225
  };
3009
3226
  readonly searchExternalPromotionsData: {
3010
3227
  externalPromotions: {
@@ -3044,6 +3261,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3044
3261
  hasResults: boolean;
3045
3262
  hasResultsOrExternalPromotions: boolean;
3046
3263
  searchExecuted: boolean;
3264
+ searchingEverything: boolean;
3047
3265
  hasRelatedSearches: boolean;
3048
3266
  hasExternalPromotions: boolean;
3049
3267
  startResultIndex: number;
@@ -3070,7 +3288,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
3070
3288
  last?: boolean;
3071
3289
  position?: number;
3072
3290
  }[];
3291
+ answer: string;
3292
+ shouldShowAnswer: boolean;
3293
+ isInfiniteScroll: boolean;
3294
+ percentageOfResultsLoaded: number;
3073
3295
  };
3296
+ readonly cookiesDisabled: boolean;
3074
3297
  };
3075
3298
  config: {
3076
3299
  templates?: {
@@ -3079,11 +3302,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
3079
3302
  previousButtonClass: string;
3080
3303
  nextButtonClass: string;
3081
3304
  };
3305
+ infiniteScrollTemplate?: {
3306
+ template: string;
3307
+ loadMoreButtonClass: string;
3308
+ };
3082
3309
  };
3083
3310
  };
3084
3311
  containerId: string;
3085
3312
  previousButtonClass: string;
3086
3313
  nextButtonClass: string;
3314
+ loadMoreButtonClass: string;
3087
3315
  routerHelper: {
3088
3316
  routeName: string;
3089
3317
  ignoredKeys: string[];
@@ -3108,7 +3336,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3108
3336
  searchPaginationMainContainer: HTMLElement;
3109
3337
  readonly isFirstPage: boolean;
3110
3338
  readonly isLastPage: boolean;
3111
- goToPage: (page: number) => void;
3339
+ goToPage: (page: number, ignoreScroll?: boolean) => void;
3112
3340
  nextPage: (event: Event) => void;
3113
3341
  previousPage: (event: Event) => void;
3114
3342
  };
@@ -3294,6 +3522,24 @@ declare const _sfc_main: import("vue").DefineComponent<{
3294
3522
  getValue: () => any;
3295
3523
  notify: () => void;
3296
3524
  };
3525
+ $cookiesDisabled: {
3526
+ value: any;
3527
+ observers: Function[];
3528
+ subscribe: (observer: (data: any) => void) => void;
3529
+ unsubscribe: (observer: (data: any) => void) => void;
3530
+ setValue: (value: any) => void;
3531
+ getValue: () => any;
3532
+ notify: () => void;
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
+ };
3297
3543
  $language: {
3298
3544
  value: any;
3299
3545
  observers: Function[];
@@ -3312,6 +3558,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3312
3558
  readonly endResultIndex: number;
3313
3559
  readonly isFirstPage: boolean;
3314
3560
  readonly isLastPage: boolean;
3561
+ readonly percentageOfResultsLoaded: number;
3315
3562
  readonly results: {
3316
3563
  custom?: any;
3317
3564
  ribbon: string;
@@ -3337,7 +3584,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
3337
3584
  }[];
3338
3585
  readonly autoCorrectedQuery: string;
3339
3586
  readonly originalQuery: string;
3587
+ readonly getAnswerData: string;
3588
+ readonly shouldShowAnswer: boolean;
3340
3589
  readonly searchTerm: string;
3590
+ readonly searchingEverything: boolean;
3591
+ readonly isInfiniteScroll: boolean;
3341
3592
  readonly searchExecuted: boolean;
3342
3593
  readonly selectedFacets: ({
3343
3594
  value: string;
@@ -3396,6 +3647,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3396
3647
  hasResults: boolean;
3397
3648
  hasResultsOrExternalPromotions: boolean;
3398
3649
  searchExecuted: boolean;
3650
+ searchingEverything: boolean;
3399
3651
  hasRelatedSearches: boolean;
3400
3652
  hasExternalPromotions: boolean;
3401
3653
  startResultIndex: number;
@@ -3428,6 +3680,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3428
3680
  url: string;
3429
3681
  description: string;
3430
3682
  }[];
3683
+ answer: string;
3684
+ shouldShowAnswer: boolean;
3685
+ isInfiniteScroll: boolean;
3686
+ percentageOfResultsLoaded: number;
3431
3687
  };
3432
3688
  readonly trackingData: {
3433
3689
  searchTerm: string;
@@ -3443,9 +3699,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
3443
3699
  sessionId: string;
3444
3700
  autoCorrect: boolean;
3445
3701
  forceNotCorrect: boolean;
3702
+ lastSearchValue: string;
3703
+ turnAIAnswerGenerationOn: boolean;
3704
+ isInfiniteScroll: boolean;
3705
+ cookieHandlingCallback: () => void;
3706
+ setIsInfiniteScroll: (value: boolean) => void;
3446
3707
  setSearchTerm: (value: string) => void;
3447
3708
  setRenderingEngine: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine) => void;
3448
3709
  setCurrentPage: (value: number) => void;
3710
+ setIsAnswerWidgetCreated: (value: boolean) => void;
3449
3711
  setLoading: (value: boolean) => void;
3450
3712
  setSearchResults: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => void;
3451
3713
  setSearchResultsMetadata: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchMetadata) => void;
@@ -3466,6 +3728,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
3466
3728
  setSearchSortingData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchSortingData) => void;
3467
3729
  setRelatedSearchesData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRelatedSearchesData) => void;
3468
3730
  setExternalPromotionsData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxExternalPromotionsData) => void;
3731
+ setCookiesDisabled: (data: boolean) => void;
3732
+ setAnswerData: (data: string) => void;
3733
+ readonly getAnswerData: any;
3469
3734
  readonly searchstaxConfig: {
3470
3735
  language: string;
3471
3736
  searchURL: string;
@@ -3484,6 +3749,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3484
3749
  beforeSearch?: (props: import("@searchstax-inc/searchstudio-ux-js").ISearchObject) => import("@searchstax-inc/searchstudio-ux-js").ISearchObject;
3485
3750
  afterSearch?: (results: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[];
3486
3751
  };
3752
+ turnAIAnswerGenerationOn?: boolean;
3487
3753
  };
3488
3754
  readonly searchFacets: {
3489
3755
  name: string;
@@ -3565,10 +3831,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
3565
3831
  }[];
3566
3832
  };
3567
3833
  readonly currentPage: number;
3834
+ readonly isAnswerWidgetCreated: boolean;
3568
3835
  readonly renderingEngine: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine;
3569
3836
  readonly searchObject: {
3570
3837
  query: string;
3571
3838
  page: number;
3839
+ itemsPerPage: number;
3572
3840
  order: string;
3573
3841
  facets: {
3574
3842
  name: string;
@@ -3610,6 +3878,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3610
3878
  afterAutosuggest?: (result: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse;
3611
3879
  };
3612
3880
  };
3881
+ readonly answerConfig: string;
3613
3882
  readonly autosuggestResults: {
3614
3883
  numFound: number;
3615
3884
  suggestions: {
@@ -3669,6 +3938,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3669
3938
  hasResults: boolean;
3670
3939
  hasResultsOrExternalPromotions: boolean;
3671
3940
  searchExecuted: boolean;
3941
+ searchingEverything: boolean;
3672
3942
  hasRelatedSearches: boolean;
3673
3943
  hasExternalPromotions: boolean;
3674
3944
  startResultIndex: number;
@@ -3701,6 +3971,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3701
3971
  url: string;
3702
3972
  description: string;
3703
3973
  }[];
3974
+ answer: string;
3975
+ shouldShowAnswer: boolean;
3976
+ isInfiniteScroll: boolean;
3977
+ percentageOfResultsLoaded: number;
3704
3978
  };
3705
3979
  readonly selectedFacetsTemplateData: ({
3706
3980
  value: string;
@@ -3748,6 +4022,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3748
4022
  hasResults: boolean;
3749
4023
  hasResultsOrExternalPromotions: boolean;
3750
4024
  searchExecuted: boolean;
4025
+ searchingEverything: boolean;
3751
4026
  hasRelatedSearches: boolean;
3752
4027
  hasExternalPromotions: boolean;
3753
4028
  startResultIndex: number;
@@ -3780,6 +4055,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3780
4055
  url: string;
3781
4056
  description: string;
3782
4057
  }[];
4058
+ answer: string;
4059
+ shouldShowAnswer: boolean;
4060
+ isInfiniteScroll: boolean;
4061
+ percentageOfResultsLoaded: number;
3783
4062
  };
3784
4063
  readonly searchFeedbackData: {
3785
4064
  currentPage: number;
@@ -3813,6 +4092,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3813
4092
  hasResults: boolean;
3814
4093
  hasResultsOrExternalPromotions: boolean;
3815
4094
  searchExecuted: boolean;
4095
+ searchingEverything: boolean;
3816
4096
  hasRelatedSearches: boolean;
3817
4097
  hasExternalPromotions: boolean;
3818
4098
  startResultIndex: number;
@@ -3845,6 +4125,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3845
4125
  url: string;
3846
4126
  description: string;
3847
4127
  }[];
4128
+ answer: string;
4129
+ shouldShowAnswer: boolean;
4130
+ isInfiniteScroll: boolean;
4131
+ percentageOfResultsLoaded: number;
3848
4132
  };
3849
4133
  readonly searchSortingData: {
3850
4134
  currentPage: number;
@@ -3878,6 +4162,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3878
4162
  hasResults: boolean;
3879
4163
  hasResultsOrExternalPromotions: boolean;
3880
4164
  searchExecuted: boolean;
4165
+ searchingEverything: boolean;
3881
4166
  hasRelatedSearches: boolean;
3882
4167
  hasExternalPromotions: boolean;
3883
4168
  startResultIndex: number;
@@ -3910,6 +4195,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3910
4195
  url: string;
3911
4196
  description: string;
3912
4197
  }[];
4198
+ answer: string;
4199
+ shouldShowAnswer: boolean;
4200
+ isInfiniteScroll: boolean;
4201
+ percentageOfResultsLoaded: number;
3913
4202
  };
3914
4203
  readonly searchRelatedSearchesData: {
3915
4204
  relatedSearches: {
@@ -3950,6 +4239,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3950
4239
  hasResults: boolean;
3951
4240
  hasResultsOrExternalPromotions: boolean;
3952
4241
  searchExecuted: boolean;
4242
+ searchingEverything: boolean;
3953
4243
  hasRelatedSearches: boolean;
3954
4244
  hasExternalPromotions: boolean;
3955
4245
  startResultIndex: number;
@@ -3975,6 +4265,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3975
4265
  url: string;
3976
4266
  description: string;
3977
4267
  }[];
4268
+ answer: string;
4269
+ shouldShowAnswer: boolean;
4270
+ isInfiniteScroll: boolean;
4271
+ percentageOfResultsLoaded: number;
3978
4272
  };
3979
4273
  readonly searchExternalPromotionsData: {
3980
4274
  externalPromotions: {
@@ -4014,6 +4308,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4014
4308
  hasResults: boolean;
4015
4309
  hasResultsOrExternalPromotions: boolean;
4016
4310
  searchExecuted: boolean;
4311
+ searchingEverything: boolean;
4017
4312
  hasRelatedSearches: boolean;
4018
4313
  hasExternalPromotions: boolean;
4019
4314
  startResultIndex: number;
@@ -4040,7 +4335,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
4040
4335
  last?: boolean;
4041
4336
  position?: number;
4042
4337
  }[];
4338
+ answer: string;
4339
+ shouldShowAnswer: boolean;
4340
+ isInfiniteScroll: boolean;
4341
+ percentageOfResultsLoaded: number;
4043
4342
  };
4343
+ readonly cookiesDisabled: boolean;
4044
4344
  };
4045
4345
  config: {
4046
4346
  templates?: {
@@ -4237,6 +4537,24 @@ declare const _sfc_main: import("vue").DefineComponent<{
4237
4537
  getValue: () => any;
4238
4538
  notify: () => void;
4239
4539
  };
4540
+ $cookiesDisabled: {
4541
+ value: any;
4542
+ observers: Function[];
4543
+ subscribe: (observer: (data: any) => void) => void;
4544
+ unsubscribe: (observer: (data: any) => void) => void;
4545
+ setValue: (value: any) => void;
4546
+ getValue: () => any;
4547
+ notify: () => void;
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
+ };
4240
4558
  $language: {
4241
4559
  value: any;
4242
4560
  observers: Function[];
@@ -4255,6 +4573,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4255
4573
  readonly endResultIndex: number;
4256
4574
  readonly isFirstPage: boolean;
4257
4575
  readonly isLastPage: boolean;
4576
+ readonly percentageOfResultsLoaded: number;
4258
4577
  readonly results: {
4259
4578
  custom?: any;
4260
4579
  ribbon: string;
@@ -4280,7 +4599,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
4280
4599
  }[];
4281
4600
  readonly autoCorrectedQuery: string;
4282
4601
  readonly originalQuery: string;
4602
+ readonly getAnswerData: string;
4603
+ readonly shouldShowAnswer: boolean;
4283
4604
  readonly searchTerm: string;
4605
+ readonly searchingEverything: boolean;
4606
+ readonly isInfiniteScroll: boolean;
4284
4607
  readonly searchExecuted: boolean;
4285
4608
  readonly selectedFacets: ({
4286
4609
  value: string;
@@ -4339,6 +4662,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4339
4662
  hasResults: boolean;
4340
4663
  hasResultsOrExternalPromotions: boolean;
4341
4664
  searchExecuted: boolean;
4665
+ searchingEverything: boolean;
4342
4666
  hasRelatedSearches: boolean;
4343
4667
  hasExternalPromotions: boolean;
4344
4668
  startResultIndex: number;
@@ -4371,6 +4695,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
4371
4695
  url: string;
4372
4696
  description: string;
4373
4697
  }[];
4698
+ answer: string;
4699
+ shouldShowAnswer: boolean;
4700
+ isInfiniteScroll: boolean;
4701
+ percentageOfResultsLoaded: number;
4374
4702
  };
4375
4703
  readonly trackingData: {
4376
4704
  searchTerm: string;
@@ -4386,9 +4714,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
4386
4714
  sessionId: string;
4387
4715
  autoCorrect: boolean;
4388
4716
  forceNotCorrect: boolean;
4717
+ lastSearchValue: string;
4718
+ turnAIAnswerGenerationOn: boolean;
4719
+ isInfiniteScroll: boolean;
4720
+ cookieHandlingCallback: () => void;
4721
+ setIsInfiniteScroll: (value: boolean) => void;
4389
4722
  setSearchTerm: (value: string) => void;
4390
4723
  setRenderingEngine: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine) => void;
4391
4724
  setCurrentPage: (value: number) => void;
4725
+ setIsAnswerWidgetCreated: (value: boolean) => void;
4392
4726
  setLoading: (value: boolean) => void;
4393
4727
  setSearchResults: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => void;
4394
4728
  setSearchResultsMetadata: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchMetadata) => void;
@@ -4409,6 +4743,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
4409
4743
  setSearchSortingData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchSortingData) => void;
4410
4744
  setRelatedSearchesData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRelatedSearchesData) => void;
4411
4745
  setExternalPromotionsData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxExternalPromotionsData) => void;
4746
+ setCookiesDisabled: (data: boolean) => void;
4747
+ setAnswerData: (data: string) => void;
4748
+ readonly getAnswerData: any;
4412
4749
  readonly searchstaxConfig: {
4413
4750
  language: string;
4414
4751
  searchURL: string;
@@ -4427,6 +4764,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4427
4764
  beforeSearch?: (props: import("@searchstax-inc/searchstudio-ux-js").ISearchObject) => import("@searchstax-inc/searchstudio-ux-js").ISearchObject;
4428
4765
  afterSearch?: (results: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[];
4429
4766
  };
4767
+ turnAIAnswerGenerationOn?: boolean;
4430
4768
  };
4431
4769
  readonly searchFacets: {
4432
4770
  name: string;
@@ -4508,10 +4846,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
4508
4846
  }[];
4509
4847
  };
4510
4848
  readonly currentPage: number;
4849
+ readonly isAnswerWidgetCreated: boolean;
4511
4850
  readonly renderingEngine: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine;
4512
4851
  readonly searchObject: {
4513
4852
  query: string;
4514
4853
  page: number;
4854
+ itemsPerPage: number;
4515
4855
  order: string;
4516
4856
  facets: {
4517
4857
  name: string;
@@ -4553,6 +4893,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4553
4893
  afterAutosuggest?: (result: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse;
4554
4894
  };
4555
4895
  };
4896
+ readonly answerConfig: string;
4556
4897
  readonly autosuggestResults: {
4557
4898
  numFound: number;
4558
4899
  suggestions: {
@@ -4612,6 +4953,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4612
4953
  hasResults: boolean;
4613
4954
  hasResultsOrExternalPromotions: boolean;
4614
4955
  searchExecuted: boolean;
4956
+ searchingEverything: boolean;
4615
4957
  hasRelatedSearches: boolean;
4616
4958
  hasExternalPromotions: boolean;
4617
4959
  startResultIndex: number;
@@ -4644,6 +4986,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
4644
4986
  url: string;
4645
4987
  description: string;
4646
4988
  }[];
4989
+ answer: string;
4990
+ shouldShowAnswer: boolean;
4991
+ isInfiniteScroll: boolean;
4992
+ percentageOfResultsLoaded: number;
4647
4993
  };
4648
4994
  readonly selectedFacetsTemplateData: ({
4649
4995
  value: string;
@@ -4691,6 +5037,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4691
5037
  hasResults: boolean;
4692
5038
  hasResultsOrExternalPromotions: boolean;
4693
5039
  searchExecuted: boolean;
5040
+ searchingEverything: boolean;
4694
5041
  hasRelatedSearches: boolean;
4695
5042
  hasExternalPromotions: boolean;
4696
5043
  startResultIndex: number;
@@ -4723,6 +5070,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
4723
5070
  url: string;
4724
5071
  description: string;
4725
5072
  }[];
5073
+ answer: string;
5074
+ shouldShowAnswer: boolean;
5075
+ isInfiniteScroll: boolean;
5076
+ percentageOfResultsLoaded: number;
4726
5077
  };
4727
5078
  readonly searchFeedbackData: {
4728
5079
  currentPage: number;
@@ -4756,6 +5107,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4756
5107
  hasResults: boolean;
4757
5108
  hasResultsOrExternalPromotions: boolean;
4758
5109
  searchExecuted: boolean;
5110
+ searchingEverything: boolean;
4759
5111
  hasRelatedSearches: boolean;
4760
5112
  hasExternalPromotions: boolean;
4761
5113
  startResultIndex: number;
@@ -4788,6 +5140,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
4788
5140
  url: string;
4789
5141
  description: string;
4790
5142
  }[];
5143
+ answer: string;
5144
+ shouldShowAnswer: boolean;
5145
+ isInfiniteScroll: boolean;
5146
+ percentageOfResultsLoaded: number;
4791
5147
  };
4792
5148
  readonly searchSortingData: {
4793
5149
  currentPage: number;
@@ -4821,6 +5177,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4821
5177
  hasResults: boolean;
4822
5178
  hasResultsOrExternalPromotions: boolean;
4823
5179
  searchExecuted: boolean;
5180
+ searchingEverything: boolean;
4824
5181
  hasRelatedSearches: boolean;
4825
5182
  hasExternalPromotions: boolean;
4826
5183
  startResultIndex: number;
@@ -4853,6 +5210,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
4853
5210
  url: string;
4854
5211
  description: string;
4855
5212
  }[];
5213
+ answer: string;
5214
+ shouldShowAnswer: boolean;
5215
+ isInfiniteScroll: boolean;
5216
+ percentageOfResultsLoaded: number;
4856
5217
  };
4857
5218
  readonly searchRelatedSearchesData: {
4858
5219
  relatedSearches: {
@@ -4893,6 +5254,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4893
5254
  hasResults: boolean;
4894
5255
  hasResultsOrExternalPromotions: boolean;
4895
5256
  searchExecuted: boolean;
5257
+ searchingEverything: boolean;
4896
5258
  hasRelatedSearches: boolean;
4897
5259
  hasExternalPromotions: boolean;
4898
5260
  startResultIndex: number;
@@ -4918,6 +5280,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
4918
5280
  url: string;
4919
5281
  description: string;
4920
5282
  }[];
5283
+ answer: string;
5284
+ shouldShowAnswer: boolean;
5285
+ isInfiniteScroll: boolean;
5286
+ percentageOfResultsLoaded: number;
4921
5287
  };
4922
5288
  readonly searchExternalPromotionsData: {
4923
5289
  externalPromotions: {
@@ -4957,6 +5323,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4957
5323
  hasResults: boolean;
4958
5324
  hasResultsOrExternalPromotions: boolean;
4959
5325
  searchExecuted: boolean;
5326
+ searchingEverything: boolean;
4960
5327
  hasRelatedSearches: boolean;
4961
5328
  hasExternalPromotions: boolean;
4962
5329
  startResultIndex: number;
@@ -4983,7 +5350,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
4983
5350
  last?: boolean;
4984
5351
  position?: number;
4985
5352
  }[];
5353
+ answer: string;
5354
+ shouldShowAnswer: boolean;
5355
+ isInfiniteScroll: boolean;
5356
+ percentageOfResultsLoaded: number;
4986
5357
  };
5358
+ readonly cookiesDisabled: boolean;
4987
5359
  };
4988
5360
  config: {
4989
5361
  templates?: {
@@ -5181,6 +5553,24 @@ declare const _sfc_main: import("vue").DefineComponent<{
5181
5553
  getValue: () => any;
5182
5554
  notify: () => void;
5183
5555
  };
5556
+ $cookiesDisabled: {
5557
+ value: any;
5558
+ observers: Function[];
5559
+ subscribe: (observer: (data: any) => void) => void;
5560
+ unsubscribe: (observer: (data: any) => void) => void;
5561
+ setValue: (value: any) => void;
5562
+ getValue: () => any;
5563
+ notify: () => void;
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
+ };
5184
5574
  $language: {
5185
5575
  value: any;
5186
5576
  observers: Function[];
@@ -5199,6 +5589,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5199
5589
  readonly endResultIndex: number;
5200
5590
  readonly isFirstPage: boolean;
5201
5591
  readonly isLastPage: boolean;
5592
+ readonly percentageOfResultsLoaded: number;
5202
5593
  readonly results: {
5203
5594
  custom?: any;
5204
5595
  ribbon: string;
@@ -5224,7 +5615,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
5224
5615
  }[];
5225
5616
  readonly autoCorrectedQuery: string;
5226
5617
  readonly originalQuery: string;
5618
+ readonly getAnswerData: string;
5619
+ readonly shouldShowAnswer: boolean;
5227
5620
  readonly searchTerm: string;
5621
+ readonly searchingEverything: boolean;
5622
+ readonly isInfiniteScroll: boolean;
5228
5623
  readonly searchExecuted: boolean;
5229
5624
  readonly selectedFacets: ({
5230
5625
  value: string;
@@ -5283,6 +5678,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5283
5678
  hasResults: boolean;
5284
5679
  hasResultsOrExternalPromotions: boolean;
5285
5680
  searchExecuted: boolean;
5681
+ searchingEverything: boolean;
5286
5682
  hasRelatedSearches: boolean;
5287
5683
  hasExternalPromotions: boolean;
5288
5684
  startResultIndex: number;
@@ -5315,6 +5711,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
5315
5711
  url: string;
5316
5712
  description: string;
5317
5713
  }[];
5714
+ answer: string;
5715
+ shouldShowAnswer: boolean;
5716
+ isInfiniteScroll: boolean;
5717
+ percentageOfResultsLoaded: number;
5318
5718
  };
5319
5719
  readonly trackingData: {
5320
5720
  searchTerm: string;
@@ -5330,9 +5730,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
5330
5730
  sessionId: string;
5331
5731
  autoCorrect: boolean;
5332
5732
  forceNotCorrect: boolean;
5733
+ lastSearchValue: string;
5734
+ turnAIAnswerGenerationOn: boolean;
5735
+ isInfiniteScroll: boolean;
5736
+ cookieHandlingCallback: () => void;
5737
+ setIsInfiniteScroll: (value: boolean) => void;
5333
5738
  setSearchTerm: (value: string) => void;
5334
5739
  setRenderingEngine: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine) => void;
5335
5740
  setCurrentPage: (value: number) => void;
5741
+ setIsAnswerWidgetCreated: (value: boolean) => void;
5336
5742
  setLoading: (value: boolean) => void;
5337
5743
  setSearchResults: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => void;
5338
5744
  setSearchResultsMetadata: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchMetadata) => void;
@@ -5353,6 +5759,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
5353
5759
  setSearchSortingData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchSortingData) => void;
5354
5760
  setRelatedSearchesData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRelatedSearchesData) => void;
5355
5761
  setExternalPromotionsData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxExternalPromotionsData) => void;
5762
+ setCookiesDisabled: (data: boolean) => void;
5763
+ setAnswerData: (data: string) => void;
5764
+ readonly getAnswerData: any;
5356
5765
  readonly searchstaxConfig: {
5357
5766
  language: string;
5358
5767
  searchURL: string;
@@ -5371,6 +5780,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5371
5780
  beforeSearch?: (props: import("@searchstax-inc/searchstudio-ux-js").ISearchObject) => import("@searchstax-inc/searchstudio-ux-js").ISearchObject;
5372
5781
  afterSearch?: (results: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[];
5373
5782
  };
5783
+ turnAIAnswerGenerationOn?: boolean;
5374
5784
  };
5375
5785
  readonly searchFacets: {
5376
5786
  name: string;
@@ -5452,10 +5862,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
5452
5862
  }[];
5453
5863
  };
5454
5864
  readonly currentPage: number;
5865
+ readonly isAnswerWidgetCreated: boolean;
5455
5866
  readonly renderingEngine: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine;
5456
5867
  readonly searchObject: {
5457
5868
  query: string;
5458
5869
  page: number;
5870
+ itemsPerPage: number;
5459
5871
  order: string;
5460
5872
  facets: {
5461
5873
  name: string;
@@ -5497,6 +5909,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5497
5909
  afterAutosuggest?: (result: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse;
5498
5910
  };
5499
5911
  };
5912
+ readonly answerConfig: string;
5500
5913
  readonly autosuggestResults: {
5501
5914
  numFound: number;
5502
5915
  suggestions: {
@@ -5556,6 +5969,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5556
5969
  hasResults: boolean;
5557
5970
  hasResultsOrExternalPromotions: boolean;
5558
5971
  searchExecuted: boolean;
5972
+ searchingEverything: boolean;
5559
5973
  hasRelatedSearches: boolean;
5560
5974
  hasExternalPromotions: boolean;
5561
5975
  startResultIndex: number;
@@ -5588,6 +6002,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
5588
6002
  url: string;
5589
6003
  description: string;
5590
6004
  }[];
6005
+ answer: string;
6006
+ shouldShowAnswer: boolean;
6007
+ isInfiniteScroll: boolean;
6008
+ percentageOfResultsLoaded: number;
5591
6009
  };
5592
6010
  readonly selectedFacetsTemplateData: ({
5593
6011
  value: string;
@@ -5635,6 +6053,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5635
6053
  hasResults: boolean;
5636
6054
  hasResultsOrExternalPromotions: boolean;
5637
6055
  searchExecuted: boolean;
6056
+ searchingEverything: boolean;
5638
6057
  hasRelatedSearches: boolean;
5639
6058
  hasExternalPromotions: boolean;
5640
6059
  startResultIndex: number;
@@ -5667,6 +6086,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
5667
6086
  url: string;
5668
6087
  description: string;
5669
6088
  }[];
6089
+ answer: string;
6090
+ shouldShowAnswer: boolean;
6091
+ isInfiniteScroll: boolean;
6092
+ percentageOfResultsLoaded: number;
5670
6093
  };
5671
6094
  readonly searchFeedbackData: {
5672
6095
  currentPage: number;
@@ -5700,6 +6123,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5700
6123
  hasResults: boolean;
5701
6124
  hasResultsOrExternalPromotions: boolean;
5702
6125
  searchExecuted: boolean;
6126
+ searchingEverything: boolean;
5703
6127
  hasRelatedSearches: boolean;
5704
6128
  hasExternalPromotions: boolean;
5705
6129
  startResultIndex: number;
@@ -5732,6 +6156,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
5732
6156
  url: string;
5733
6157
  description: string;
5734
6158
  }[];
6159
+ answer: string;
6160
+ shouldShowAnswer: boolean;
6161
+ isInfiniteScroll: boolean;
6162
+ percentageOfResultsLoaded: number;
5735
6163
  };
5736
6164
  readonly searchSortingData: {
5737
6165
  currentPage: number;
@@ -5765,6 +6193,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5765
6193
  hasResults: boolean;
5766
6194
  hasResultsOrExternalPromotions: boolean;
5767
6195
  searchExecuted: boolean;
6196
+ searchingEverything: boolean;
5768
6197
  hasRelatedSearches: boolean;
5769
6198
  hasExternalPromotions: boolean;
5770
6199
  startResultIndex: number;
@@ -5797,6 +6226,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
5797
6226
  url: string;
5798
6227
  description: string;
5799
6228
  }[];
6229
+ answer: string;
6230
+ shouldShowAnswer: boolean;
6231
+ isInfiniteScroll: boolean;
6232
+ percentageOfResultsLoaded: number;
5800
6233
  };
5801
6234
  readonly searchRelatedSearchesData: {
5802
6235
  relatedSearches: {
@@ -5837,6 +6270,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5837
6270
  hasResults: boolean;
5838
6271
  hasResultsOrExternalPromotions: boolean;
5839
6272
  searchExecuted: boolean;
6273
+ searchingEverything: boolean;
5840
6274
  hasRelatedSearches: boolean;
5841
6275
  hasExternalPromotions: boolean;
5842
6276
  startResultIndex: number;
@@ -5862,6 +6296,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
5862
6296
  url: string;
5863
6297
  description: string;
5864
6298
  }[];
6299
+ answer: string;
6300
+ shouldShowAnswer: boolean;
6301
+ isInfiniteScroll: boolean;
6302
+ percentageOfResultsLoaded: number;
5865
6303
  };
5866
6304
  readonly searchExternalPromotionsData: {
5867
6305
  externalPromotions: {
@@ -5901,6 +6339,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5901
6339
  hasResults: boolean;
5902
6340
  hasResultsOrExternalPromotions: boolean;
5903
6341
  searchExecuted: boolean;
6342
+ searchingEverything: boolean;
5904
6343
  hasRelatedSearches: boolean;
5905
6344
  hasExternalPromotions: boolean;
5906
6345
  startResultIndex: number;
@@ -5927,7 +6366,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
5927
6366
  last?: boolean;
5928
6367
  position?: number;
5929
6368
  }[];
6369
+ answer: string;
6370
+ shouldShowAnswer: boolean;
6371
+ isInfiniteScroll: boolean;
6372
+ percentageOfResultsLoaded: number;
5930
6373
  };
6374
+ readonly cookiesDisabled: boolean;
5931
6375
  };
5932
6376
  config: {
5933
6377
  relatedSearchesURL: string;
@@ -6132,6 +6576,24 @@ declare const _sfc_main: import("vue").DefineComponent<{
6132
6576
  getValue: () => any;
6133
6577
  notify: () => void;
6134
6578
  };
6579
+ $cookiesDisabled: {
6580
+ value: any;
6581
+ observers: Function[];
6582
+ subscribe: (observer: (data: any) => void) => void;
6583
+ unsubscribe: (observer: (data: any) => void) => void;
6584
+ setValue: (value: any) => void;
6585
+ getValue: () => any;
6586
+ notify: () => void;
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
+ };
6135
6597
  $language: {
6136
6598
  value: any;
6137
6599
  observers: Function[];
@@ -6150,6 +6612,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6150
6612
  readonly endResultIndex: number;
6151
6613
  readonly isFirstPage: boolean;
6152
6614
  readonly isLastPage: boolean;
6615
+ readonly percentageOfResultsLoaded: number;
6153
6616
  readonly results: {
6154
6617
  custom?: any;
6155
6618
  ribbon: string;
@@ -6175,7 +6638,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
6175
6638
  }[];
6176
6639
  readonly autoCorrectedQuery: string;
6177
6640
  readonly originalQuery: string;
6641
+ readonly getAnswerData: string;
6642
+ readonly shouldShowAnswer: boolean;
6178
6643
  readonly searchTerm: string;
6644
+ readonly searchingEverything: boolean;
6645
+ readonly isInfiniteScroll: boolean;
6179
6646
  readonly searchExecuted: boolean;
6180
6647
  readonly selectedFacets: ({
6181
6648
  value: string;
@@ -6234,6 +6701,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6234
6701
  hasResults: boolean;
6235
6702
  hasResultsOrExternalPromotions: boolean;
6236
6703
  searchExecuted: boolean;
6704
+ searchingEverything: boolean;
6237
6705
  hasRelatedSearches: boolean;
6238
6706
  hasExternalPromotions: boolean;
6239
6707
  startResultIndex: number;
@@ -6266,6 +6734,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
6266
6734
  url: string;
6267
6735
  description: string;
6268
6736
  }[];
6737
+ answer: string;
6738
+ shouldShowAnswer: boolean;
6739
+ isInfiniteScroll: boolean;
6740
+ percentageOfResultsLoaded: number;
6269
6741
  };
6270
6742
  readonly trackingData: {
6271
6743
  searchTerm: string;
@@ -6281,9 +6753,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
6281
6753
  sessionId: string;
6282
6754
  autoCorrect: boolean;
6283
6755
  forceNotCorrect: boolean;
6756
+ lastSearchValue: string;
6757
+ turnAIAnswerGenerationOn: boolean;
6758
+ isInfiniteScroll: boolean;
6759
+ cookieHandlingCallback: () => void;
6760
+ setIsInfiniteScroll: (value: boolean) => void;
6284
6761
  setSearchTerm: (value: string) => void;
6285
6762
  setRenderingEngine: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine) => void;
6286
6763
  setCurrentPage: (value: number) => void;
6764
+ setIsAnswerWidgetCreated: (value: boolean) => void;
6287
6765
  setLoading: (value: boolean) => void;
6288
6766
  setSearchResults: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => void;
6289
6767
  setSearchResultsMetadata: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchMetadata) => void;
@@ -6304,6 +6782,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
6304
6782
  setSearchSortingData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchSortingData) => void;
6305
6783
  setRelatedSearchesData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRelatedSearchesData) => void;
6306
6784
  setExternalPromotionsData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxExternalPromotionsData) => void;
6785
+ setCookiesDisabled: (data: boolean) => void;
6786
+ setAnswerData: (data: string) => void;
6787
+ readonly getAnswerData: any;
6307
6788
  readonly searchstaxConfig: {
6308
6789
  language: string;
6309
6790
  searchURL: string;
@@ -6322,6 +6803,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6322
6803
  beforeSearch?: (props: import("@searchstax-inc/searchstudio-ux-js").ISearchObject) => import("@searchstax-inc/searchstudio-ux-js").ISearchObject;
6323
6804
  afterSearch?: (results: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[];
6324
6805
  };
6806
+ turnAIAnswerGenerationOn?: boolean;
6325
6807
  };
6326
6808
  readonly searchFacets: {
6327
6809
  name: string;
@@ -6403,10 +6885,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
6403
6885
  }[];
6404
6886
  };
6405
6887
  readonly currentPage: number;
6888
+ readonly isAnswerWidgetCreated: boolean;
6406
6889
  readonly renderingEngine: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine;
6407
6890
  readonly searchObject: {
6408
6891
  query: string;
6409
6892
  page: number;
6893
+ itemsPerPage: number;
6410
6894
  order: string;
6411
6895
  facets: {
6412
6896
  name: string;
@@ -6448,6 +6932,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6448
6932
  afterAutosuggest?: (result: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse;
6449
6933
  };
6450
6934
  };
6935
+ readonly answerConfig: string;
6451
6936
  readonly autosuggestResults: {
6452
6937
  numFound: number;
6453
6938
  suggestions: {
@@ -6507,6 +6992,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6507
6992
  hasResults: boolean;
6508
6993
  hasResultsOrExternalPromotions: boolean;
6509
6994
  searchExecuted: boolean;
6995
+ searchingEverything: boolean;
6510
6996
  hasRelatedSearches: boolean;
6511
6997
  hasExternalPromotions: boolean;
6512
6998
  startResultIndex: number;
@@ -6539,6 +7025,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
6539
7025
  url: string;
6540
7026
  description: string;
6541
7027
  }[];
7028
+ answer: string;
7029
+ shouldShowAnswer: boolean;
7030
+ isInfiniteScroll: boolean;
7031
+ percentageOfResultsLoaded: number;
6542
7032
  };
6543
7033
  readonly selectedFacetsTemplateData: ({
6544
7034
  value: string;
@@ -6586,6 +7076,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6586
7076
  hasResults: boolean;
6587
7077
  hasResultsOrExternalPromotions: boolean;
6588
7078
  searchExecuted: boolean;
7079
+ searchingEverything: boolean;
6589
7080
  hasRelatedSearches: boolean;
6590
7081
  hasExternalPromotions: boolean;
6591
7082
  startResultIndex: number;
@@ -6618,6 +7109,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
6618
7109
  url: string;
6619
7110
  description: string;
6620
7111
  }[];
7112
+ answer: string;
7113
+ shouldShowAnswer: boolean;
7114
+ isInfiniteScroll: boolean;
7115
+ percentageOfResultsLoaded: number;
6621
7116
  };
6622
7117
  readonly searchFeedbackData: {
6623
7118
  currentPage: number;
@@ -6651,6 +7146,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6651
7146
  hasResults: boolean;
6652
7147
  hasResultsOrExternalPromotions: boolean;
6653
7148
  searchExecuted: boolean;
7149
+ searchingEverything: boolean;
6654
7150
  hasRelatedSearches: boolean;
6655
7151
  hasExternalPromotions: boolean;
6656
7152
  startResultIndex: number;
@@ -6683,6 +7179,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
6683
7179
  url: string;
6684
7180
  description: string;
6685
7181
  }[];
7182
+ answer: string;
7183
+ shouldShowAnswer: boolean;
7184
+ isInfiniteScroll: boolean;
7185
+ percentageOfResultsLoaded: number;
6686
7186
  };
6687
7187
  readonly searchSortingData: {
6688
7188
  currentPage: number;
@@ -6716,6 +7216,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6716
7216
  hasResults: boolean;
6717
7217
  hasResultsOrExternalPromotions: boolean;
6718
7218
  searchExecuted: boolean;
7219
+ searchingEverything: boolean;
6719
7220
  hasRelatedSearches: boolean;
6720
7221
  hasExternalPromotions: boolean;
6721
7222
  startResultIndex: number;
@@ -6748,6 +7249,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
6748
7249
  url: string;
6749
7250
  description: string;
6750
7251
  }[];
7252
+ answer: string;
7253
+ shouldShowAnswer: boolean;
7254
+ isInfiniteScroll: boolean;
7255
+ percentageOfResultsLoaded: number;
6751
7256
  };
6752
7257
  readonly searchRelatedSearchesData: {
6753
7258
  relatedSearches: {
@@ -6788,6 +7293,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6788
7293
  hasResults: boolean;
6789
7294
  hasResultsOrExternalPromotions: boolean;
6790
7295
  searchExecuted: boolean;
7296
+ searchingEverything: boolean;
6791
7297
  hasRelatedSearches: boolean;
6792
7298
  hasExternalPromotions: boolean;
6793
7299
  startResultIndex: number;
@@ -6813,6 +7319,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
6813
7319
  url: string;
6814
7320
  description: string;
6815
7321
  }[];
7322
+ answer: string;
7323
+ shouldShowAnswer: boolean;
7324
+ isInfiniteScroll: boolean;
7325
+ percentageOfResultsLoaded: number;
6816
7326
  };
6817
7327
  readonly searchExternalPromotionsData: {
6818
7328
  externalPromotions: {
@@ -6852,6 +7362,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6852
7362
  hasResults: boolean;
6853
7363
  hasResultsOrExternalPromotions: boolean;
6854
7364
  searchExecuted: boolean;
7365
+ searchingEverything: boolean;
6855
7366
  hasRelatedSearches: boolean;
6856
7367
  hasExternalPromotions: boolean;
6857
7368
  startResultIndex: number;
@@ -6878,7 +7389,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
6878
7389
  last?: boolean;
6879
7390
  position?: number;
6880
7391
  }[];
7392
+ answer: string;
7393
+ shouldShowAnswer: boolean;
7394
+ isInfiniteScroll: boolean;
7395
+ percentageOfResultsLoaded: number;
6881
7396
  };
7397
+ readonly cookiesDisabled: boolean;
6882
7398
  };
6883
7399
  config: {
6884
7400
  templates?: {
@@ -6897,148 +7413,1160 @@ declare const _sfc_main: import("vue").DefineComponent<{
6897
7413
  addExternalSearch: (promotion: import("@searchstax-inc/searchstudio-ux-js").IExternalPromotion) => void;
6898
7414
  trackClick: (result: import("@searchstax-inc/searchstudio-ux-js").IExternalPromotion, event: any) => void;
6899
7415
  };
6900
- dataLayer: {
6901
- $searchTermChange: {
6902
- value: any;
6903
- observers: Function[];
6904
- subscribe: (observer: (data: any) => void) => void;
6905
- unsubscribe: (observer: (data: any) => void) => void;
6906
- setValue: (value: any) => void;
6907
- getValue: () => any;
6908
- notify: () => void;
6909
- };
6910
- $loadingChange: {
6911
- value: any;
6912
- observers: Function[];
6913
- subscribe: (observer: (data: any) => void) => void;
6914
- unsubscribe: (observer: (data: any) => void) => void;
6915
- setValue: (value: any) => void;
6916
- getValue: () => any;
6917
- notify: () => void;
6918
- };
6919
- $searchResults: {
6920
- value: any;
6921
- observers: Function[];
6922
- subscribe: (observer: (data: any) => void) => void;
6923
- unsubscribe: (observer: (data: any) => void) => void;
6924
- setValue: (value: any) => void;
6925
- getValue: () => any;
6926
- notify: () => void;
6927
- };
6928
- $searchResultsMetadata: {
6929
- value: any;
6930
- observers: Function[];
6931
- subscribe: (observer: (data: any) => void) => void;
6932
- unsubscribe: (observer: (data: any) => void) => void;
6933
- setValue: (value: any) => void;
6934
- getValue: () => any;
6935
- notify: () => void;
6936
- };
6937
- $searchAutosuggest: {
6938
- value: any;
6939
- observers: Function[];
6940
- subscribe: (observer: (data: any) => void) => void;
6941
- unsubscribe: (observer: (data: any) => void) => void;
6942
- setValue: (value: any) => void;
6943
- getValue: () => any;
6944
- notify: () => void;
6945
- };
6946
- $searchFacets: {
6947
- value: any;
6948
- observers: Function[];
6949
- subscribe: (observer: (data: any) => void) => void;
6950
- unsubscribe: (observer: (data: any) => void) => void;
6951
- setValue: (value: any) => void;
6952
- getValue: () => any;
6953
- notify: () => void;
6954
- };
6955
- $searchFacetsCached: {
6956
- value: any;
6957
- observers: Function[];
6958
- subscribe: (observer: (data: any) => void) => void;
6959
- unsubscribe: (observer: (data: any) => void) => void;
6960
- setValue: (value: any) => void;
6961
- getValue: () => any;
6962
- notify: () => void;
6963
- };
6964
- $searchstaxConfig: {
6965
- value: any;
6966
- observers: Function[];
6967
- subscribe: (observer: (data: any) => void) => void;
6968
- unsubscribe: (observer: (data: any) => void) => void;
6969
- setValue: (value: any) => void;
6970
- getValue: () => any;
6971
- notify: () => void;
6972
- };
6973
- $autosuggestResults: {
6974
- value: any;
6975
- observers: Function[];
6976
- subscribe: (observer: (data: any) => void) => void;
6977
- unsubscribe: (observer: (data: any) => void) => void;
6978
- setValue: (value: any) => void;
6979
- getValue: () => any;
6980
- notify: () => void;
6981
- };
6982
- $searchObject: {
6983
- value: any;
6984
- observers: Function[];
6985
- subscribe: (observer: (data: any) => void) => void;
6986
- unsubscribe: (observer: (data: any) => void) => void;
6987
- setValue: (value: any) => void;
6988
- getValue: () => any;
6989
- notify: () => void;
6990
- };
6991
- $searchRelatedSearches: {
6992
- value: any;
6993
- observers: Function[];
6994
- subscribe: (observer: (data: any) => void) => void;
6995
- unsubscribe: (observer: (data: any) => void) => void;
6996
- setValue: (value: any) => void;
6997
- getValue: () => any;
6998
- notify: () => void;
6999
- };
7000
- $searchInputConfig: {
7001
- value: any;
7002
- observers: Function[];
7003
- subscribe: (observer: (data: any) => void) => void;
7004
- unsubscribe: (observer: (data: any) => void) => void;
7005
- setValue: (value: any) => void;
7006
- getValue: () => any;
7007
- notify: () => void;
7008
- };
7009
- $searchExternalPromotions: {
7010
- value: any;
7011
- observers: Function[];
7012
- subscribe: (observer: (data: any) => void) => void;
7013
- unsubscribe: (observer: (data: any) => void) => void;
7014
- setValue: (value: any) => void;
7015
- getValue: () => any;
7016
- notify: () => void;
7017
- };
7018
- $facetsTemplateData: {
7019
- value: any;
7020
- observers: Function[];
7021
- subscribe: (observer: (data: any) => void) => void;
7022
- unsubscribe: (observer: (data: any) => void) => void;
7023
- setValue: (value: any) => void;
7024
- getValue: () => any;
7025
- notify: () => void;
7026
- };
7027
- $selectedFacetsTemplateData: {
7028
- value: any;
7029
- observers: Function[];
7030
- subscribe: (observer: (data: any) => void) => void;
7031
- unsubscribe: (observer: (data: any) => void) => void;
7032
- setValue: (value: any) => void;
7033
- getValue: () => any;
7034
- notify: () => void;
7035
- };
7036
- $paginationData: {
7037
- value: any;
7038
- observers: Function[];
7039
- subscribe: (observer: (data: any) => void) => void;
7040
- unsubscribe: (observer: (data: any) => void) => void;
7041
- setValue: (value: any) => void;
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;
7042
8570
  getValue: () => any;
7043
8571
  notify: () => void;
7044
8572
  };
@@ -7078,6 +8606,24 @@ declare const _sfc_main: import("vue").DefineComponent<{
7078
8606
  getValue: () => any;
7079
8607
  notify: () => void;
7080
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: {
8619
+ value: any;
8620
+ observers: Function[];
8621
+ subscribe: (observer: (data: any) => void) => void;
8622
+ unsubscribe: (observer: (data: any) => void) => void;
8623
+ setValue: (value: any) => void;
8624
+ getValue: () => any;
8625
+ notify: () => void;
8626
+ };
7081
8627
  $language: {
7082
8628
  value: any;
7083
8629
  observers: Function[];
@@ -7096,6 +8642,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7096
8642
  readonly endResultIndex: number;
7097
8643
  readonly isFirstPage: boolean;
7098
8644
  readonly isLastPage: boolean;
8645
+ readonly percentageOfResultsLoaded: number;
7099
8646
  readonly results: {
7100
8647
  custom?: any;
7101
8648
  ribbon: string;
@@ -7121,7 +8668,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
7121
8668
  }[];
7122
8669
  readonly autoCorrectedQuery: string;
7123
8670
  readonly originalQuery: string;
8671
+ readonly getAnswerData: string;
8672
+ readonly shouldShowAnswer: boolean;
7124
8673
  readonly searchTerm: string;
8674
+ readonly searchingEverything: boolean;
8675
+ readonly isInfiniteScroll: boolean;
7125
8676
  readonly searchExecuted: boolean;
7126
8677
  readonly selectedFacets: ({
7127
8678
  value: string;
@@ -7180,6 +8731,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7180
8731
  hasResults: boolean;
7181
8732
  hasResultsOrExternalPromotions: boolean;
7182
8733
  searchExecuted: boolean;
8734
+ searchingEverything: boolean;
7183
8735
  hasRelatedSearches: boolean;
7184
8736
  hasExternalPromotions: boolean;
7185
8737
  startResultIndex: number;
@@ -7212,6 +8764,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
7212
8764
  url: string;
7213
8765
  description: string;
7214
8766
  }[];
8767
+ answer: string;
8768
+ shouldShowAnswer: boolean;
8769
+ isInfiniteScroll: boolean;
8770
+ percentageOfResultsLoaded: number;
7215
8771
  };
7216
8772
  readonly trackingData: {
7217
8773
  searchTerm: string;
@@ -7227,9 +8783,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
7227
8783
  sessionId: string;
7228
8784
  autoCorrect: boolean;
7229
8785
  forceNotCorrect: boolean;
8786
+ lastSearchValue: string;
8787
+ turnAIAnswerGenerationOn: boolean;
8788
+ isInfiniteScroll: boolean;
8789
+ cookieHandlingCallback: () => void;
8790
+ setIsInfiniteScroll: (value: boolean) => void;
7230
8791
  setSearchTerm: (value: string) => void;
7231
8792
  setRenderingEngine: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine) => void;
7232
8793
  setCurrentPage: (value: number) => void;
8794
+ setIsAnswerWidgetCreated: (value: boolean) => void;
7233
8795
  setLoading: (value: boolean) => void;
7234
8796
  setSearchResults: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => void;
7235
8797
  setSearchResultsMetadata: (value: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchMetadata) => void;
@@ -7250,6 +8812,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
7250
8812
  setSearchSortingData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchSortingData) => void;
7251
8813
  setRelatedSearchesData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRelatedSearchesData) => void;
7252
8814
  setExternalPromotionsData: (data: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxExternalPromotionsData) => void;
8815
+ setCookiesDisabled: (data: boolean) => void;
8816
+ setAnswerData: (data: string) => void;
8817
+ readonly getAnswerData: any;
7253
8818
  readonly searchstaxConfig: {
7254
8819
  language: string;
7255
8820
  searchURL: string;
@@ -7268,6 +8833,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7268
8833
  beforeSearch?: (props: import("@searchstax-inc/searchstudio-ux-js").ISearchObject) => import("@searchstax-inc/searchstudio-ux-js").ISearchObject;
7269
8834
  afterSearch?: (results: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[]) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxParsedResult[];
7270
8835
  };
8836
+ turnAIAnswerGenerationOn?: boolean;
7271
8837
  };
7272
8838
  readonly searchFacets: {
7273
8839
  name: string;
@@ -7349,10 +8915,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
7349
8915
  }[];
7350
8916
  };
7351
8917
  readonly currentPage: number;
8918
+ readonly isAnswerWidgetCreated: boolean;
7352
8919
  readonly renderingEngine: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine;
7353
8920
  readonly searchObject: {
7354
8921
  query: string;
7355
8922
  page: number;
8923
+ itemsPerPage: number;
7356
8924
  order: string;
7357
8925
  facets: {
7358
8926
  name: string;
@@ -7394,6 +8962,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7394
8962
  afterAutosuggest?: (result: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse) => import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSuggestResponse;
7395
8963
  };
7396
8964
  };
8965
+ readonly answerConfig: string;
7397
8966
  readonly autosuggestResults: {
7398
8967
  numFound: number;
7399
8968
  suggestions: {
@@ -7453,6 +9022,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7453
9022
  hasResults: boolean;
7454
9023
  hasResultsOrExternalPromotions: boolean;
7455
9024
  searchExecuted: boolean;
9025
+ searchingEverything: boolean;
7456
9026
  hasRelatedSearches: boolean;
7457
9027
  hasExternalPromotions: boolean;
7458
9028
  startResultIndex: number;
@@ -7485,6 +9055,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
7485
9055
  url: string;
7486
9056
  description: string;
7487
9057
  }[];
9058
+ answer: string;
9059
+ shouldShowAnswer: boolean;
9060
+ isInfiniteScroll: boolean;
9061
+ percentageOfResultsLoaded: number;
7488
9062
  };
7489
9063
  readonly selectedFacetsTemplateData: ({
7490
9064
  value: string;
@@ -7532,6 +9106,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7532
9106
  hasResults: boolean;
7533
9107
  hasResultsOrExternalPromotions: boolean;
7534
9108
  searchExecuted: boolean;
9109
+ searchingEverything: boolean;
7535
9110
  hasRelatedSearches: boolean;
7536
9111
  hasExternalPromotions: boolean;
7537
9112
  startResultIndex: number;
@@ -7564,6 +9139,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
7564
9139
  url: string;
7565
9140
  description: string;
7566
9141
  }[];
9142
+ answer: string;
9143
+ shouldShowAnswer: boolean;
9144
+ isInfiniteScroll: boolean;
9145
+ percentageOfResultsLoaded: number;
7567
9146
  };
7568
9147
  readonly searchFeedbackData: {
7569
9148
  currentPage: number;
@@ -7597,6 +9176,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7597
9176
  hasResults: boolean;
7598
9177
  hasResultsOrExternalPromotions: boolean;
7599
9178
  searchExecuted: boolean;
9179
+ searchingEverything: boolean;
7600
9180
  hasRelatedSearches: boolean;
7601
9181
  hasExternalPromotions: boolean;
7602
9182
  startResultIndex: number;
@@ -7629,6 +9209,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
7629
9209
  url: string;
7630
9210
  description: string;
7631
9211
  }[];
9212
+ answer: string;
9213
+ shouldShowAnswer: boolean;
9214
+ isInfiniteScroll: boolean;
9215
+ percentageOfResultsLoaded: number;
7632
9216
  };
7633
9217
  readonly searchSortingData: {
7634
9218
  currentPage: number;
@@ -7662,6 +9246,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7662
9246
  hasResults: boolean;
7663
9247
  hasResultsOrExternalPromotions: boolean;
7664
9248
  searchExecuted: boolean;
9249
+ searchingEverything: boolean;
7665
9250
  hasRelatedSearches: boolean;
7666
9251
  hasExternalPromotions: boolean;
7667
9252
  startResultIndex: number;
@@ -7694,6 +9279,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
7694
9279
  url: string;
7695
9280
  description: string;
7696
9281
  }[];
9282
+ answer: string;
9283
+ shouldShowAnswer: boolean;
9284
+ isInfiniteScroll: boolean;
9285
+ percentageOfResultsLoaded: number;
7697
9286
  };
7698
9287
  readonly searchRelatedSearchesData: {
7699
9288
  relatedSearches: {
@@ -7734,6 +9323,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7734
9323
  hasResults: boolean;
7735
9324
  hasResultsOrExternalPromotions: boolean;
7736
9325
  searchExecuted: boolean;
9326
+ searchingEverything: boolean;
7737
9327
  hasRelatedSearches: boolean;
7738
9328
  hasExternalPromotions: boolean;
7739
9329
  startResultIndex: number;
@@ -7759,6 +9349,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
7759
9349
  url: string;
7760
9350
  description: string;
7761
9351
  }[];
9352
+ answer: string;
9353
+ shouldShowAnswer: boolean;
9354
+ isInfiniteScroll: boolean;
9355
+ percentageOfResultsLoaded: number;
7762
9356
  };
7763
9357
  readonly searchExternalPromotionsData: {
7764
9358
  externalPromotions: {
@@ -7798,6 +9392,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7798
9392
  hasResults: boolean;
7799
9393
  hasResultsOrExternalPromotions: boolean;
7800
9394
  searchExecuted: boolean;
9395
+ searchingEverything: boolean;
7801
9396
  hasRelatedSearches: boolean;
7802
9397
  hasExternalPromotions: boolean;
7803
9398
  startResultIndex: number;
@@ -7824,7 +9419,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
7824
9419
  last?: boolean;
7825
9420
  position?: number;
7826
9421
  }[];
9422
+ answer: string;
9423
+ shouldShowAnswer: boolean;
9424
+ isInfiniteScroll: boolean;
9425
+ percentageOfResultsLoaded: number;
7827
9426
  };
9427
+ readonly cookiesDisabled: boolean;
7828
9428
  };
7829
9429
  setRenderingEngine: (engine?: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRenderEngine) => void;
7830
9430
  initialize: (config: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxConfig) => void;
@@ -7832,6 +9432,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7832
9432
  suggest: (term: string, queryParams: import("@searchstax-inc/searchstudio-ux-js").IAdditionalProp[]) => void;
7833
9433
  changeLanguage: (language: string) => void;
7834
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;
7835
9436
  addSearchResultsWidget: (containerId: string, config: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchResultsConfig) => void;
7836
9437
  addPaginationWidget: (containerId: string, config: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchPaginationConfig) => void;
7837
9438
  addSearchFeedbackWidget: (containerId: string, config: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxSearchFeedbackConfig) => void;
@@ -7842,6 +9443,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7842
9443
  trackRelatedSearchClick: (relatedSearch: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxRelatedSearchResult) => void;
7843
9444
  executeLinkClick: (uniqueId: string) => void;
7844
9445
  setPage: (page: number) => void;
9446
+ setCookiesDisabled: (disabled: boolean) => void;
7845
9447
  changeResultTemplate: (templates: {
7846
9448
  mainTemplate?: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxResultsMainTemplateData;
7847
9449
  searchResultTemplate?: import("@searchstax-inc/searchstudio-ux-js").ISearchstaxResultsResultTemplateData;