@coveo/quantic 3.32.0 → 3.33.1

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.
Files changed (316) hide show
  1. package/README.md +15 -15
  2. package/docs/out/quantic-docs.json +1 -1
  3. package/force-app/main/default/lwc/quanticAriaLive/__tests__/quanticAriaLive.test.js +106 -0
  4. package/force-app/main/default/lwc/quanticBreadcrumbManager/__tests__/quanticBreadcrumbManager.test.js +752 -0
  5. package/force-app/main/default/lwc/quanticBreadcrumbManager/e2e/fixture.ts +76 -0
  6. package/force-app/main/default/lwc/quanticBreadcrumbManager/e2e/pageObject.ts +282 -0
  7. package/force-app/main/default/lwc/quanticBreadcrumbManager/e2e/quanticBreadcrumbManager.e2e.ts +167 -0
  8. package/force-app/main/default/lwc/quanticCarousel/__tests__/quanticCarousel.test.js +262 -0
  9. package/force-app/main/default/lwc/quanticCaseClassification/__tests__/quanticCaseClassification.test.js +819 -0
  10. package/force-app/main/default/lwc/quanticCaseClassification/e2e/data.ts +23 -0
  11. package/force-app/main/default/lwc/quanticCaseClassification/e2e/fixture.ts +51 -0
  12. package/force-app/main/default/lwc/quanticCaseClassification/e2e/pageObject.ts +152 -0
  13. package/force-app/main/default/lwc/quanticCaseClassification/e2e/quanticCaseClassification.e2e.ts +269 -0
  14. package/force-app/main/default/lwc/quanticCategoryFacet/__tests__/quanticCategoryFacet.test.js +1183 -0
  15. package/force-app/main/default/lwc/quanticCategoryFacet/e2e/data.ts +27 -0
  16. package/force-app/main/default/lwc/quanticCategoryFacet/e2e/fixture.ts +75 -0
  17. package/force-app/main/default/lwc/quanticCategoryFacet/e2e/pageObject.ts +55 -0
  18. package/force-app/main/default/lwc/quanticCategoryFacet/e2e/quanticCategoryFacet.e2e.ts +199 -0
  19. package/force-app/main/default/lwc/quanticCitation/__tests__/quanticCitation.test.js +371 -0
  20. package/force-app/main/default/lwc/quanticColoredResultBadge/__tests__/quanticColoredResultBadge.test.js +212 -0
  21. package/force-app/main/default/lwc/quanticDateFacet/__tests__/quanticDateFacet.test.js +688 -0
  22. package/force-app/main/default/lwc/quanticDateFacet/e2e/data.ts +24 -0
  23. package/force-app/main/default/lwc/quanticDateFacet/e2e/fixture.ts +68 -0
  24. package/force-app/main/default/lwc/quanticDateFacet/e2e/pageObject.ts +27 -0
  25. package/force-app/main/default/lwc/quanticDateFacet/e2e/quanticDateFacet.e2e.ts +145 -0
  26. package/force-app/main/default/lwc/quanticDidYouMean/__tests__/quanticDidYouMean.test.js +348 -0
  27. package/force-app/main/default/lwc/quanticDidYouMean/e2e/data.ts +48 -0
  28. package/force-app/main/default/lwc/quanticDidYouMean/e2e/fixture.ts +80 -0
  29. package/force-app/main/default/lwc/quanticDidYouMean/e2e/pageObject.ts +173 -0
  30. package/force-app/main/default/lwc/quanticDidYouMean/e2e/quanticDidYouMean.e2e.ts +219 -0
  31. package/force-app/main/default/lwc/quanticDocumentSuggestion/__tests__/quanticDocumentSuggestion.test.js +404 -0
  32. package/force-app/main/default/lwc/quanticDocumentSuggestion/e2e/fixture.ts +38 -0
  33. package/force-app/main/default/lwc/quanticDocumentSuggestion/e2e/pageObject.ts +52 -0
  34. package/force-app/main/default/lwc/quanticDocumentSuggestion/e2e/quanticDocumentSuggestion.e2e.ts +102 -0
  35. package/force-app/main/default/lwc/quanticFacet/__tests__/quanticFacet.test.js +1105 -0
  36. package/force-app/main/default/lwc/quanticFacet/e2e/data.ts +21 -0
  37. package/force-app/main/default/lwc/quanticFacet/e2e/fixture.ts +73 -0
  38. package/force-app/main/default/lwc/quanticFacet/e2e/pageObject.ts +67 -0
  39. package/force-app/main/default/lwc/quanticFacet/e2e/quanticFacet.e2e.ts +208 -0
  40. package/force-app/main/default/lwc/quanticFacetCaption/__tests__/quanticFacetCaption.test.js +28 -0
  41. package/force-app/main/default/lwc/quanticFacetManager/__tests__/quanticFacetManager.test.js +178 -0
  42. package/force-app/main/default/lwc/quanticFacetManager/e2e/fixture.ts +64 -0
  43. package/force-app/main/default/lwc/quanticFacetManager/e2e/pageObject.ts +23 -0
  44. package/force-app/main/default/lwc/quanticFacetManager/e2e/quanticFacetManager.e2e.ts +82 -0
  45. package/force-app/main/default/lwc/quanticFeedback/__tests__/quanticFeedback.test.js +392 -0
  46. package/force-app/main/default/lwc/quanticFeedbackModal/__tests__/quanticFeedbackModal.test.js +448 -0
  47. package/force-app/main/default/lwc/quanticFeedbackModalQna/__tests__/quanticFeedbackModalQna.test.js +298 -0
  48. package/force-app/main/default/lwc/quanticFoldedResultList/__tests__/quanticFoldedResultList.test.js +323 -0
  49. package/force-app/main/default/lwc/quanticFoldedResultList/e2e/fixture.ts +70 -0
  50. package/force-app/main/default/lwc/quanticFoldedResultList/e2e/pageObject.ts +81 -0
  51. package/force-app/main/default/lwc/quanticFoldedResultList/e2e/quanticFoldedResultList.e2e.ts +69 -0
  52. package/force-app/main/default/lwc/quanticGeneratedAnswer/__tests__/quanticGeneratedAnswer.test.js +1158 -0
  53. package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/data.ts +56 -0
  54. package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/fixture.ts +185 -0
  55. package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/pageObject.ts +451 -0
  56. package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/quanticGeneratedAnswer.e2e.ts +337 -0
  57. package/force-app/main/default/lwc/quanticGeneratedAnswerContent/__tests__/quanticGeneratedAnswerContent.test.js +151 -0
  58. package/force-app/main/default/lwc/quanticHeading/__tests__/quanticHeading.test.js +71 -0
  59. package/force-app/main/default/lwc/quanticHeadlessLoader/__tests__/quanticHeadlessLoader.test.js +651 -0
  60. package/force-app/main/default/lwc/quanticInsightInterface/__tests__/quanticInsightInterface.test.js +194 -0
  61. package/force-app/main/default/lwc/quanticInsightInterface/quanticInsightInterface.js +1 -1
  62. package/force-app/main/default/lwc/quanticInsightSummary/__tests__/quanticInsightSummary.test.js +230 -0
  63. package/force-app/main/default/lwc/quanticModal/__tests__/quanticModal.test.js +205 -0
  64. package/force-app/main/default/lwc/quanticNotifications/__tests__/quanticNotifications.test.js +309 -0
  65. package/force-app/main/default/lwc/quanticNotifications/e2e/fixture.ts +58 -0
  66. package/force-app/main/default/lwc/quanticNotifications/e2e/pageObject.ts +55 -0
  67. package/force-app/main/default/lwc/quanticNotifications/e2e/quanticNotifications.e2e.ts +47 -0
  68. package/force-app/main/default/lwc/quanticNumericFacet/__tests__/quanticNumericFacet.test.js +953 -0
  69. package/force-app/main/default/lwc/quanticNumericFacet/e2e/data.ts +28 -0
  70. package/force-app/main/default/lwc/quanticNumericFacet/e2e/fixture.ts +71 -0
  71. package/force-app/main/default/lwc/quanticNumericFacet/e2e/pageObject.ts +59 -0
  72. package/force-app/main/default/lwc/quanticNumericFacet/e2e/quanticNumericFacet.e2e.ts +164 -0
  73. package/force-app/main/default/lwc/quanticPager/__tests__/quanticPager.test.js +430 -0
  74. package/force-app/main/default/lwc/quanticPager/e2e/fixture.ts +65 -0
  75. package/force-app/main/default/lwc/quanticPager/e2e/pageObject.ts +69 -0
  76. package/force-app/main/default/lwc/quanticPager/e2e/quanticPager.e2e.ts +106 -0
  77. package/force-app/main/default/lwc/quanticPlaceholder/__tests__/quanticPlaceholder.test.js +47 -0
  78. package/force-app/main/default/lwc/quanticQuickviewContent/__tests__/data/defaultTestCase.json +13 -0
  79. package/force-app/main/default/lwc/quanticQuickviewContent/__tests__/data/youtubeTestCase.json +14 -0
  80. package/force-app/main/default/lwc/quanticQuickviewContent/__tests__/quanticQuickviewContent.test.js +82 -0
  81. package/force-app/main/default/lwc/quanticRadioButtonsGroup/__tests__/quanticRadioButtonsGroup.test.js +273 -0
  82. package/force-app/main/default/lwc/quanticRecentQueriesList/__tests__/quanticRecentQueriesList.test.js +448 -0
  83. package/force-app/main/default/lwc/quanticRecentQueriesList/e2e/fixture.ts +42 -0
  84. package/force-app/main/default/lwc/quanticRecentQueriesList/e2e/pageObject.ts +55 -0
  85. package/force-app/main/default/lwc/quanticRecentQueriesList/e2e/quanticRecentQueriesList.e2e.ts +93 -0
  86. package/force-app/main/default/lwc/quanticRecentResultsList/__tests__/quanticRecentResultsList.test.js +516 -0
  87. package/force-app/main/default/lwc/quanticRecentResultsList/e2e/fixture.ts +42 -0
  88. package/force-app/main/default/lwc/quanticRecentResultsList/e2e/pageObject.ts +61 -0
  89. package/force-app/main/default/lwc/quanticRecentResultsList/e2e/quanticRecentResultsList.e2e.ts +48 -0
  90. package/force-app/main/default/lwc/quanticRecommendationList/__tests__/quanticRecommendationList.test.js +491 -0
  91. package/force-app/main/default/lwc/quanticRecommendationList/e2e/fixture.ts +35 -0
  92. package/force-app/main/default/lwc/quanticRecommendationList/e2e/pageObject.ts +52 -0
  93. package/force-app/main/default/lwc/quanticRecommendationList/e2e/quanticRecommendationList.e2e.ts +53 -0
  94. package/force-app/main/default/lwc/quanticRefineModalContent/__tests__/quanticRefineModalContent.test.js +747 -0
  95. package/force-app/main/default/lwc/quanticRefineToggle/__tests__/quanticRefineToggle.test.js +542 -0
  96. package/force-app/main/default/lwc/quanticResultAction/__tests__/quanticResultAction.test.js +262 -0
  97. package/force-app/main/default/lwc/quanticResultActionBar/__tests__/quanticResultActionBar.test.js +141 -0
  98. package/force-app/main/default/lwc/quanticResultChildren/__tests__/quanticResultChildren.test.js +340 -0
  99. package/force-app/main/default/lwc/quanticResultCopyToClipboard/__tests__/quanticResultCopyToClipboard.test.js +300 -0
  100. package/force-app/main/default/lwc/quanticResultCopyToClipboard/e2e/fixture.ts +46 -0
  101. package/force-app/main/default/lwc/quanticResultCopyToClipboard/e2e/pageObject.ts +49 -0
  102. package/force-app/main/default/lwc/quanticResultCopyToClipboard/e2e/quanticResultCopyToClipboard.e2e.ts +40 -0
  103. package/force-app/main/default/lwc/quanticResultDate/__tests__/quanticResultDate.test.js +144 -0
  104. package/force-app/main/default/lwc/quanticResultField/__tests__/quanticResultField.test.js +120 -0
  105. package/force-app/main/default/lwc/quanticResultHighlightedTextField/__tests__/quanticResultHighlightedTextField.test.js +209 -0
  106. package/force-app/main/default/lwc/quanticResultLink/__tests__/quanticResultLink.test.js +261 -0
  107. package/force-app/main/default/lwc/quanticResultList/__tests__/quanticResultList.test.js +342 -0
  108. package/force-app/main/default/lwc/quanticResultList/e2e/fixture.ts +66 -0
  109. package/force-app/main/default/lwc/quanticResultList/e2e/pageObject.ts +81 -0
  110. package/force-app/main/default/lwc/quanticResultList/e2e/quanticResultList.e2e.ts +69 -0
  111. package/force-app/main/default/lwc/quanticResultMultiValueText/__tests__/quanticResultMultiValueText.test.js +235 -0
  112. package/force-app/main/default/lwc/quanticResultNumber/__tests__/quanticResultNumber.test.js +144 -0
  113. package/force-app/main/default/lwc/quanticResultPrintableUri/__tests__/quanticResultPrintableUri.test.js +324 -0
  114. package/force-app/main/default/lwc/quanticResultQuickview/__tests__/quanticResultQuickview.test.js +301 -0
  115. package/force-app/main/default/lwc/quanticResultQuickview/e2e/fixture.ts +81 -0
  116. package/force-app/main/default/lwc/quanticResultQuickview/e2e/pageObject.ts +38 -0
  117. package/force-app/main/default/lwc/quanticResultQuickview/e2e/quanticResultQuickView.e2e.ts +66 -0
  118. package/force-app/main/default/lwc/quanticResultTemplate/__tests__/quanticResultTemplate.test.js +90 -0
  119. package/force-app/main/default/lwc/quanticResultText/__tests__/quanticResultText.test.js +155 -0
  120. package/force-app/main/default/lwc/quanticResultsPerPage/__tests__/quanticResultsPerPage.test.js +464 -0
  121. package/force-app/main/default/lwc/quanticResultsPerPage/e2e/fixture.ts +74 -0
  122. package/force-app/main/default/lwc/quanticResultsPerPage/e2e/pageObject.ts +85 -0
  123. package/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts +97 -0
  124. package/force-app/main/default/lwc/quanticSearchBox/__tests__/quanticSearchBox.test.js +487 -0
  125. package/force-app/main/default/lwc/quanticSearchBox/e2e/fixture.ts +84 -0
  126. package/force-app/main/default/lwc/quanticSearchBox/e2e/pageObject.ts +45 -0
  127. package/force-app/main/default/lwc/quanticSearchBox/e2e/quanticSearchBox.e2e.ts +159 -0
  128. package/force-app/main/default/lwc/quanticSearchBoxInput/__tests__/quanticSearchBoxInput.test.js +743 -0
  129. package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/__tests__/quanticSearchBoxSuggestionsList.test.js +571 -0
  130. package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/e2e/fixture.ts +110 -0
  131. package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/e2e/pageObject.ts +113 -0
  132. package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/e2e/quanticSearchBoxSuggestionsList.e2e.ts +299 -0
  133. package/force-app/main/default/lwc/quanticSmartSnippet/__tests__/quanticSmartSnippet.test.js +341 -0
  134. package/force-app/main/default/lwc/quanticSmartSnippet/e2e/data.ts +21 -0
  135. package/force-app/main/default/lwc/quanticSmartSnippet/e2e/fixture.ts +91 -0
  136. package/force-app/main/default/lwc/quanticSmartSnippet/e2e/pageObject.ts +196 -0
  137. package/force-app/main/default/lwc/quanticSmartSnippet/e2e/quanticSmartSnippet.e2e.ts +192 -0
  138. package/force-app/main/default/lwc/quanticSmartSnippetAnswer/__tests__/quanticSmartSnippetAnswer.test.js +126 -0
  139. package/force-app/main/default/lwc/quanticSmartSnippetSource/__tests__/quanticSmartSnippetSource.test.js +290 -0
  140. package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/__tests__/quanticSmartSnippetSuggestions.test.js +329 -0
  141. package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/data.ts +31 -0
  142. package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/fixture.ts +93 -0
  143. package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/pageObject.ts +160 -0
  144. package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/quanticSmartSnippetSuggestions.e2e.ts +127 -0
  145. package/force-app/main/default/lwc/quanticSort/__tests__/quanticSort.test.js +416 -0
  146. package/force-app/main/default/lwc/quanticSort/e2e/fixture.ts +61 -0
  147. package/force-app/main/default/lwc/quanticSort/e2e/pageObject.ts +89 -0
  148. package/force-app/main/default/lwc/quanticSort/e2e/quanticSort.e2e.ts +91 -0
  149. package/force-app/main/default/lwc/quanticSourceCitations/__tests__/quanticSourceCitations.test.js +136 -0
  150. package/force-app/main/default/lwc/quanticStandaloneSearchBox/__tests__/quanticStandaloneSearchBox.test.js +387 -0
  151. package/force-app/main/default/lwc/quanticStandaloneSearchBox/e2e/fixture.ts +53 -0
  152. package/force-app/main/default/lwc/quanticStandaloneSearchBox/e2e/pageObject.ts +54 -0
  153. package/force-app/main/default/lwc/quanticStandaloneSearchBox/e2e/quanticStandaloneSearchBox.e2e.ts +72 -0
  154. package/force-app/main/default/lwc/quanticStatefulButton/__tests__/quanticStatefulButton.test.js +222 -0
  155. package/force-app/main/default/lwc/quanticSummary/__tests__/quanticSummary.test.js +244 -0
  156. package/force-app/main/default/lwc/quanticTab/__tests__/quanticTab.test.js +333 -0
  157. package/force-app/main/default/lwc/quanticTab/e2e/fixture.ts +56 -0
  158. package/force-app/main/default/lwc/quanticTab/e2e/pageObject.ts +68 -0
  159. package/force-app/main/default/lwc/quanticTab/e2e/quanticTab.e2e.ts +72 -0
  160. package/force-app/main/default/lwc/quanticTabBar/__tests__/quanticTabBar.test.js +331 -0
  161. package/force-app/main/default/lwc/quanticTabBar/e2e/fixture.ts +61 -0
  162. package/force-app/main/default/lwc/quanticTabBar/e2e/pageObject.ts +80 -0
  163. package/force-app/main/default/lwc/quanticTabBar/e2e/quanticTabBar.e2e.ts +171 -0
  164. package/force-app/main/default/lwc/quanticTimeframeFacet/__tests__/quanticTimeframeFacet.test.js +1037 -0
  165. package/force-app/main/default/lwc/quanticTimeframeFacet/e2e/fixture.ts +58 -0
  166. package/force-app/main/default/lwc/quanticTimeframeFacet/e2e/pageObject.ts +43 -0
  167. package/force-app/main/default/lwc/quanticTimeframeFacet/e2e/quanticTimeframeFacet.e2e.ts +160 -0
  168. package/force-app/main/default/lwc/quanticTooltip/__tests__/quanticTooltip.test.js +107 -0
  169. package/force-app/main/default/lwc/quanticUserAction/__tests__/quanticUserAction.test.js +427 -0
  170. package/force-app/main/default/lwc/quanticUserActionsSession/__tests__/quanticUserActionsSession.test.js +269 -0
  171. package/force-app/main/default/lwc/quanticUserActionsTimeline/__tests__/data/userActionsState.json +89 -0
  172. package/force-app/main/default/lwc/quanticUserActionsTimeline/__tests__/quanticUserActionsTimeline.test.js +511 -0
  173. package/force-app/main/default/lwc/quanticUserActionsToggle/__tests__/quanticUserActionsToggle.test.js +229 -0
  174. package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/data.ts +32 -0
  175. package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/fixture.ts +32 -0
  176. package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/pageObject.ts +71 -0
  177. package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/quanticUserActionsToggle.e2e.ts +39 -0
  178. package/force-app/main/default/lwc/quanticUtils/__tests__/citationAnchoringUtils.test.js +84 -0
  179. package/force-app/main/default/lwc/quanticUtils/__tests__/facetDependenciesUtils.test.js +92 -0
  180. package/force-app/main/default/lwc/quanticUtils/__tests__/markdownUtils.test.js +71 -0
  181. package/force-app/main/default/lwc/quanticUtils/__tests__/quanticUtils.test.js +223 -0
  182. package/force-app/main/default/lwc/quanticUtils/recentQueriesUtils.js +20 -12
  183. package/force-app/main/default/lwc/quanticViewedByCustomerBadge/__tests__/quanticViewedByCustomerBadge.test.js +131 -0
  184. package/force-app/main/default/staticresources/coveoheadless/case-assist/headless.js +3 -3
  185. package/force-app/main/default/staticresources/coveoheadless/definitions/app/case-assist-engine/case-assist-engine.d.ts +3 -3
  186. package/force-app/main/default/staticresources/coveoheadless/definitions/app/commerce-engine/commerce-engine.d.ts +16 -16
  187. package/force-app/main/default/staticresources/coveoheadless/definitions/app/common-reducers.d.ts +1 -1
  188. package/force-app/main/default/staticresources/coveoheadless/definitions/app/insight-engine/insight-engine.d.ts +5 -5
  189. package/force-app/main/default/staticresources/coveoheadless/definitions/app/recommendation-engine/recommendation-engine.d.ts +4 -4
  190. package/force-app/main/default/staticresources/coveoheadless/definitions/app/search-engine/search-engine.d.ts +4 -4
  191. package/force-app/main/default/staticresources/coveoheadless/definitions/app/store.d.ts +2 -2
  192. package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/commerce/core/facets/headless-core-commerce-facet.d.ts +1 -1
  193. package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/core/facets/range-facet/headless-core-range-facet.d.ts +1 -1
  194. package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/core/recent-queries-list/headless-core-recent-queries-list.d.ts +91 -0
  195. package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/insight/attach-to-case/headless-attach-to-case.d.ts +2 -0
  196. package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/insight/attached-results/headless-attached-results.d.ts +68 -0
  197. package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/insight/recent-queries-list/headless-insight-recent-queries-list.d.ts +14 -0
  198. package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/recent-queries-list/headless-recent-queries-list.d.ts +2 -79
  199. package/force-app/main/default/staticresources/coveoheadless/definitions/features/actions-history/ipx-actions-history-actions.d.ts +1 -1
  200. package/force-app/main/default/staticresources/coveoheadless/definitions/features/advanced-search-queries/advanced-search-queries-slice.d.ts +1 -1
  201. package/force-app/main/default/staticresources/coveoheadless/definitions/features/analytics/search-action-cause.d.ts +9 -1
  202. package/force-app/main/default/staticresources/coveoheadless/definitions/features/attached-results/attached-results-slice.d.ts +1 -1
  203. package/force-app/main/default/staticresources/coveoheadless/definitions/features/attached-results/attached-results-state.d.ts +1 -0
  204. package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-assist-configuration/case-assist-configuration-slice.d.ts +1 -1
  205. package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-context/case-context-slice.d.ts +1 -1
  206. package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-field/case-field-actions.d.ts +1 -1
  207. package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-field/case-field-slice.d.ts +1 -1
  208. package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-input/case-input-slice.d.ts +1 -1
  209. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/configuration/configuration-slice.d.ts +1 -1
  210. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/context/cart/cart-actions.d.ts +2 -2
  211. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/context/cart/cart-slice.d.ts +1 -1
  212. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/context/context-slice.d.ts +1 -1
  213. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/did-you-mean/did-you-mean-slice.d.ts +1 -1
  214. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/facet-search-set/commerce-facet-search-actions.d.ts +2 -2
  215. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/facet-set/facet-set-slice.d.ts +1 -1
  216. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/field-suggestions-order/field-suggestions-order-slice.d.ts +1 -1
  217. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/numeric-facet/manual-numeric-facet-slice.d.ts +1 -1
  218. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/instant-products/instant-products-slice.d.ts +1 -1
  219. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/pagination/pagination-slice.d.ts +1 -1
  220. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/parameters/parameters-slice.d.ts +1 -1
  221. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/product/product-actions.d.ts +2 -2
  222. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/product-listing/product-listing-actions.d.ts +2 -2
  223. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/product-listing/product-listing-slice.d.ts +1 -1
  224. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/query/query-slice.d.ts +1 -1
  225. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/query-suggest/query-suggest-actions.d.ts +1 -1
  226. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/recent-queries/recent-queries-slice.d.ts +1 -1
  227. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/recommendations/recommendations-actions.d.ts +2 -2
  228. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/recommendations/recommendations-slice.d.ts +1 -1
  229. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/search/search-actions.d.ts +4 -4
  230. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/search/search-slice.d.ts +1 -1
  231. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/sort/sort-slice.d.ts +1 -1
  232. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/standalone-search-box-set/standalone-search-box-set-actions.d.ts +1 -1
  233. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/standalone-search-box-set/standalone-search-box-set-slice.d.ts +1 -1
  234. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/triggers/triggers-slice.d.ts +1 -1
  235. package/force-app/main/default/staticresources/coveoheadless/definitions/features/configuration/configuration-slice.d.ts +1 -1
  236. package/force-app/main/default/staticresources/coveoheadless/definitions/features/context/context-slice.d.ts +1 -1
  237. package/force-app/main/default/staticresources/coveoheadless/definitions/features/debug/debug-slice.d.ts +1 -1
  238. package/force-app/main/default/staticresources/coveoheadless/definitions/features/debug/version-slice.d.ts +1 -1
  239. package/force-app/main/default/staticresources/coveoheadless/definitions/features/dictionary-field-context/dictionary-field-context-slice.d.ts +1 -1
  240. package/force-app/main/default/staticresources/coveoheadless/definitions/features/did-you-mean/did-you-mean-slice.d.ts +1 -1
  241. package/force-app/main/default/staticresources/coveoheadless/definitions/features/document-suggestion/document-suggestion-actions.d.ts +1 -1
  242. package/force-app/main/default/staticresources/coveoheadless/definitions/features/document-suggestion/document-suggestion-slice.d.ts +1 -1
  243. package/force-app/main/default/staticresources/coveoheadless/definitions/features/excerpt-length/excerpt-length-slice.d.ts +1 -1
  244. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facet-options/facet-options-slice.d.ts +1 -1
  245. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/automatic-facet-set/automatic-facet-set-slice.d.ts +1 -1
  246. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/category-facet-set/category-facet-set-slice.d.ts +1 -1
  247. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-order/facet-order-slice.d.ts +1 -1
  248. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-search-set/category/category-facet-search-set-slice.d.ts +1 -1
  249. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-search-set/generic/generic-facet-search-actions.d.ts +2 -2
  250. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-search-set/specific/specific-facet-search-set-slice.d.ts +1 -1
  251. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-set/facet-set-controller-actions.d.ts +2 -2
  252. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-set/facet-set-slice.d.ts +1 -1
  253. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/date-facet-set/date-facet-controller-actions.d.ts +2 -2
  254. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/date-facet-set/date-facet-set-slice.d.ts +1 -1
  255. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/numeric-facet-set/numeric-facet-controller-actions.d.ts +2 -2
  256. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/numeric-facet-set/numeric-facet-set-slice.d.ts +1 -1
  257. package/force-app/main/default/staticresources/coveoheadless/definitions/features/fields/fields-actions.d.ts +1 -1
  258. package/force-app/main/default/staticresources/coveoheadless/definitions/features/fields/fields-slice.d.ts +1 -1
  259. package/force-app/main/default/staticresources/coveoheadless/definitions/features/folding/folding-actions.d.ts +1 -1
  260. package/force-app/main/default/staticresources/coveoheadless/definitions/features/folding/folding-slice.d.ts +1 -1
  261. package/force-app/main/default/staticresources/coveoheadless/definitions/features/folding/insight-folding-actions.d.ts +1 -1
  262. package/force-app/main/default/staticresources/coveoheadless/definitions/features/generated-answer/generated-answer-actions.d.ts +2 -2
  263. package/force-app/main/default/staticresources/coveoheadless/definitions/features/generated-answer/generated-answer-slice.d.ts +1 -1
  264. package/force-app/main/default/staticresources/coveoheadless/definitions/features/history/history-actions.d.ts +3 -3
  265. package/force-app/main/default/staticresources/coveoheadless/definitions/features/history/history-slice.d.ts +2 -2
  266. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-configuration/insight-configuration-slice.d.ts +1 -1
  267. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-interface/insight-interface-actions.d.ts +1 -1
  268. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-interface/insight-interface-slice.d.ts +1 -1
  269. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-search/insight-search-actions.d.ts +5 -5
  270. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-search/legacy/insight-search-actions.d.ts +4 -4
  271. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-user-actions/insight-user-actions-actions.d.ts +1 -1
  272. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-user-actions/insight-user-actions-slice.d.ts +1 -1
  273. package/force-app/main/default/staticresources/coveoheadless/definitions/features/instant-results/instant-results-slice.d.ts +1 -1
  274. package/force-app/main/default/staticresources/coveoheadless/definitions/features/pagination/pagination-slice.d.ts +1 -1
  275. package/force-app/main/default/staticresources/coveoheadless/definitions/features/pipeline/pipeline-slice.d.ts +1 -1
  276. package/force-app/main/default/staticresources/coveoheadless/definitions/features/query/query-slice.d.ts +1 -1
  277. package/force-app/main/default/staticresources/coveoheadless/definitions/features/query-set/query-set-slice.d.ts +1 -1
  278. package/force-app/main/default/staticresources/coveoheadless/definitions/features/query-suggest/query-suggest-actions.d.ts +1 -1
  279. package/force-app/main/default/staticresources/coveoheadless/definitions/features/query-suggest/query-suggest-slice.d.ts +1 -1
  280. package/force-app/main/default/staticresources/coveoheadless/definitions/features/question-answering/question-answering-slice.d.ts +1 -1
  281. package/force-app/main/default/staticresources/coveoheadless/definitions/features/recent-queries/recent-queries-insight-analytics-actions.d.ts +3 -0
  282. package/force-app/main/default/staticresources/coveoheadless/definitions/features/recent-queries/recent-queries-slice.d.ts +1 -1
  283. package/force-app/main/default/staticresources/coveoheadless/definitions/features/recent-results/recent-results-slice.d.ts +1 -1
  284. package/force-app/main/default/staticresources/coveoheadless/definitions/features/recommendation/recommendation-actions.d.ts +1 -1
  285. package/force-app/main/default/staticresources/coveoheadless/definitions/features/recommendation/recommendation-slice.d.ts +1 -1
  286. package/force-app/main/default/staticresources/coveoheadless/definitions/features/result-preview/result-preview-actions.d.ts +2 -2
  287. package/force-app/main/default/staticresources/coveoheadless/definitions/features/result-preview/result-preview-slice.d.ts +1 -1
  288. package/force-app/main/default/staticresources/coveoheadless/definitions/features/search/legacy/search-actions.d.ts +5 -5
  289. package/force-app/main/default/staticresources/coveoheadless/definitions/features/search/search-actions.d.ts +6 -6
  290. package/force-app/main/default/staticresources/coveoheadless/definitions/features/search/search-slice.d.ts +1 -1
  291. package/force-app/main/default/staticresources/coveoheadless/definitions/features/search-hub/search-hub-slice.d.ts +1 -1
  292. package/force-app/main/default/staticresources/coveoheadless/definitions/features/sort-criteria/sort-criteria-slice.d.ts +1 -1
  293. package/force-app/main/default/staticresources/coveoheadless/definitions/features/standalone-search-box-set/standalone-search-box-set-actions.d.ts +1 -1
  294. package/force-app/main/default/staticresources/coveoheadless/definitions/features/standalone-search-box-set/standalone-search-box-set-slice.d.ts +1 -1
  295. package/force-app/main/default/staticresources/coveoheadless/definitions/features/static-filter-set/static-filter-set-slice.d.ts +1 -1
  296. package/force-app/main/default/staticresources/coveoheadless/definitions/features/tab-set/tab-set-slice.d.ts +1 -1
  297. package/force-app/main/default/staticresources/coveoheadless/definitions/features/triggers/triggers-slice.d.ts +1 -1
  298. package/force-app/main/default/staticresources/coveoheadless/definitions/insight.index.d.ts +4 -0
  299. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/commerce/factories/build-factory.d.ts +6 -1
  300. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/commerce/types/fetch-static-state.d.ts +3 -0
  301. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/commerce/types/from-build-result.d.ts +6 -0
  302. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/commerce/types/hydrate-static-state.d.ts +3 -0
  303. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/common/access-token-manager.d.ts +19 -0
  304. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/common/augment-preprocess-request.d.ts +7 -2
  305. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/common/types/fetch-static-state.d.ts +3 -0
  306. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/common/types/hydrate-static-state.d.ts +3 -0
  307. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/commerce/types/engine.d.ts +4 -2
  308. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/common/access-token-manager.d.ts +19 -0
  309. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/common/augment-preprocess-request.d.ts +7 -2
  310. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/search/engine/search-engine.ssr.d.ts +2 -2
  311. package/force-app/main/default/staticresources/coveoheadless/definitions/state/insight-app-state.d.ts +2 -2
  312. package/force-app/main/default/staticresources/coveoheadless/definitions/test/mock-ssr-controller-definitions.d.ts +2 -2
  313. package/force-app/main/default/staticresources/coveoheadless/headless.js +10 -10
  314. package/force-app/main/default/staticresources/coveoheadless/insight/headless.js +9 -9
  315. package/force-app/main/default/staticresources/coveoheadless/recommendation/headless.js +3 -3
  316. package/package.json +46 -44
@@ -15,7 +15,7 @@ interface ExecuteCommerceFacetSearchThunkArg {
15
15
  export declare const executeCommerceFacetSearch: import("@reduxjs/toolkit").AsyncThunk<ExecuteCommerceFacetSearchThunkReturn, ExecuteCommerceFacetSearchThunkArg, {
16
16
  state: StateNeededForAnyFacetSearch;
17
17
  extra: ClientThunkExtraArguments<CommerceFacetSearchAPIClient, import("../../../../api/generated-answer/generated-answer-client.js").GeneratedAnswerAPIClient>;
18
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
18
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
19
19
  rejectValue?: unknown;
20
20
  serializedErrorType?: unknown;
21
21
  pendingMeta?: unknown;
@@ -25,7 +25,7 @@ export declare const executeCommerceFacetSearch: import("@reduxjs/toolkit").Asyn
25
25
  export declare const executeCommerceFieldSuggest: import("@reduxjs/toolkit").AsyncThunk<ExecuteCommerceFacetSearchThunkReturn, ExecuteCommerceFacetSearchThunkArg, {
26
26
  state: StateNeededForAnyFacetSearch;
27
27
  extra: ClientThunkExtraArguments<CommerceFacetSearchAPIClient, import("../../../../api/generated-answer/generated-answer-client.js").GeneratedAnswerAPIClient>;
28
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
28
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
29
29
  rejectValue?: unknown;
30
30
  serializedErrorType?: unknown;
31
31
  pendingMeta?: unknown;
@@ -2,7 +2,7 @@ import type { CategoryFacetValueRequest } from '../../../../controllers/commerce
2
2
  import { type CommerceFacetSetState } from './facet-set-state.js';
3
3
  import type { LocationFacetValueRequest } from './interfaces/request.js';
4
4
  import type { CategoryFacetValue, LocationFacetValue } from './interfaces/response.js';
5
- export declare const commerceFacetSetReducer: import("redux").Reducer<CommerceFacetSetState> & {
5
+ export declare const commerceFacetSetReducer: import("@reduxjs/toolkit").Reducer<CommerceFacetSetState> & {
6
6
  getInitialState: () => CommerceFacetSetState;
7
7
  };
8
8
  export declare function convertCategoryFacetValueToRequest(responseValue: CategoryFacetValue): CategoryFacetValueRequest;
@@ -1,3 +1,3 @@
1
- export declare const fieldSuggestionsOrderReducer: import("redux").Reducer<import("./field-suggestions-order-state.js").FieldSuggestionsOrderState> & {
1
+ export declare const fieldSuggestionsOrderReducer: import("@reduxjs/toolkit").Reducer<import("./field-suggestions-order-state.js").FieldSuggestionsOrderState> & {
2
2
  getInitialState: () => import("./field-suggestions-order-state.js").FieldSuggestionsOrderState;
3
3
  };
@@ -1,4 +1,4 @@
1
1
  import { type ManualNumericFacetSetState } from './manual-numeric-facet-state.js';
2
- export declare const manualNumericFacetReducer: import("redux").Reducer<ManualNumericFacetSetState> & {
2
+ export declare const manualNumericFacetReducer: import("@reduxjs/toolkit").Reducer<ManualNumericFacetSetState> & {
3
3
  getInitialState: () => ManualNumericFacetSetState;
4
4
  };
@@ -1,3 +1,3 @@
1
- export declare const instantProductsReducer: import("redux").Reducer<import("./instant-products-state.js").InstantProductsState> & {
1
+ export declare const instantProductsReducer: import("@reduxjs/toolkit").Reducer<import("./instant-products-state.js").InstantProductsState> & {
2
2
  getInitialState: () => import("./instant-products-state.js").InstantProductsState;
3
3
  };
@@ -1,4 +1,4 @@
1
1
  import { type CommercePaginationState } from './pagination-state.js';
2
- export declare const paginationReducer: import("redux").Reducer<CommercePaginationState> & {
2
+ export declare const paginationReducer: import("@reduxjs/toolkit").Reducer<CommercePaginationState> & {
3
3
  getInitialState: () => CommercePaginationState;
4
4
  };
@@ -1,4 +1,4 @@
1
1
  import { type CommerceParametersState } from './parameters-state.js';
2
- export declare const parametersReducer: import("redux").Reducer<CommerceParametersState> & {
2
+ export declare const parametersReducer: import("@reduxjs/toolkit").Reducer<CommerceParametersState> & {
3
3
  getInitialState: () => CommerceParametersState;
4
4
  };
@@ -5,7 +5,7 @@ export declare const productView: import("@reduxjs/toolkit").AsyncThunk<void, Pr
5
5
  state: CommerceEngineState;
6
6
  rejectValue: import("../../../api/commerce/commerce-api-error-response.js").CommerceAPIErrorStatusResponse;
7
7
  extra: import("../../../app/commerce-thunk-extra-arguments.js").CommerceThunkExtraArguments;
8
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
8
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
9
9
  serializedErrorType?: unknown;
10
10
  pendingMeta?: unknown;
11
11
  fulfilledMeta?: unknown;
@@ -16,7 +16,7 @@ export declare const productClick: import("@reduxjs/toolkit").AsyncThunk<void, P
16
16
  state: CommerceEngineState;
17
17
  rejectValue: import("../../../api/commerce/commerce-api-error-response.js").CommerceAPIErrorStatusResponse;
18
18
  extra: import("../../../app/commerce-thunk-extra-arguments.js").CommerceThunkExtraArguments;
19
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
19
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
20
20
  serializedErrorType?: unknown;
21
21
  pendingMeta?: unknown;
22
22
  fulfilledMeta?: unknown;
@@ -11,7 +11,7 @@ export declare const fetchProductListing: import("@reduxjs/toolkit").AsyncThunk<
11
11
  state: StateNeededByFetchProductListing;
12
12
  rejectValue: import("../../../api/commerce/commerce-api-error-response.js").CommerceAPIErrorStatusResponse;
13
13
  extra: import("../../../app/commerce-thunk-extra-arguments.js").CommerceThunkExtraArguments;
14
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
14
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
15
15
  serializedErrorType?: unknown;
16
16
  pendingMeta?: unknown;
17
17
  fulfilledMeta?: unknown;
@@ -21,7 +21,7 @@ export declare const fetchMoreProducts: import("@reduxjs/toolkit").AsyncThunk<Qu
21
21
  state: StateNeededByFetchProductListing;
22
22
  rejectValue: import("../../../api/commerce/commerce-api-error-response.js").CommerceAPIErrorStatusResponse;
23
23
  extra: import("../../../app/commerce-thunk-extra-arguments.js").CommerceThunkExtraArguments;
24
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
24
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
25
25
  serializedErrorType?: unknown;
26
26
  pendingMeta?: unknown;
27
27
  fulfilledMeta?: unknown;
@@ -1,4 +1,4 @@
1
1
  import { type ProductListingState } from './product-listing-state.js';
2
- export declare const productListingReducer: import("redux").Reducer<ProductListingState> & {
2
+ export declare const productListingReducer: import("@reduxjs/toolkit").Reducer<ProductListingState> & {
3
3
  getInitialState: () => ProductListingState;
4
4
  };
@@ -1,3 +1,3 @@
1
- export declare const queryReducer: import("redux").Reducer<import("./query-state.js").CommerceQueryState> & {
1
+ export declare const queryReducer: import("@reduxjs/toolkit").Reducer<import("./query-state.js").CommerceQueryState> & {
2
2
  getInitialState: () => import("./query-state.js").CommerceQueryState;
3
3
  };
@@ -15,7 +15,7 @@ export declare const fetchQuerySuggestions: import("@reduxjs/toolkit").AsyncThun
15
15
  state: StateNeededByQuerySuggest;
16
16
  rejectValue: import("../../../api/commerce/commerce-api-error-response.js").CommerceAPIErrorStatusResponse;
17
17
  extra: import("../../../app/commerce-thunk-extra-arguments.js").CommerceThunkExtraArguments;
18
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
18
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
19
19
  serializedErrorType?: unknown;
20
20
  pendingMeta?: unknown;
21
21
  fulfilledMeta?: unknown;
@@ -1,3 +1,3 @@
1
- export declare const recentQueriesReducer: import("redux").Reducer<import("../../recent-queries/recent-queries-state.js").RecentQueriesState> & {
1
+ export declare const recentQueriesReducer: import("@reduxjs/toolkit").Reducer<import("../../recent-queries/recent-queries-state.js").RecentQueriesState> & {
2
2
  getInitialState: () => import("../../recent-queries/recent-queries-state.js").RecentQueriesState;
3
3
  };
@@ -18,7 +18,7 @@ export declare const fetchRecommendations: import("@reduxjs/toolkit").AsyncThunk
18
18
  state: StateNeededByFetchRecommendations;
19
19
  rejectValue: import("../../../api/commerce/commerce-api-error-response.js").CommerceAPIErrorStatusResponse;
20
20
  extra: import("../../../app/commerce-thunk-extra-arguments.js").CommerceThunkExtraArguments;
21
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
21
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
22
22
  serializedErrorType?: unknown;
23
23
  pendingMeta?: unknown;
24
24
  fulfilledMeta?: unknown;
@@ -29,7 +29,7 @@ export declare const fetchMoreRecommendations: import("@reduxjs/toolkit").AsyncT
29
29
  state: StateNeededByFetchRecommendations;
30
30
  rejectValue: import("../../../api/commerce/commerce-api-error-response.js").CommerceAPIErrorStatusResponse;
31
31
  extra: import("../../../app/commerce-thunk-extra-arguments.js").CommerceThunkExtraArguments;
32
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
32
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
33
33
  serializedErrorType?: unknown;
34
34
  pendingMeta?: unknown;
35
35
  fulfilledMeta?: unknown;
@@ -1,4 +1,4 @@
1
1
  import { type RecommendationsState } from './recommendations-state.js';
2
- export declare const recommendationsReducer: import("redux").Reducer<RecommendationsState> & {
2
+ export declare const recommendationsReducer: import("@reduxjs/toolkit").Reducer<RecommendationsState> & {
3
3
  getInitialState: () => RecommendationsState;
4
4
  };
@@ -39,7 +39,7 @@ export declare const executeSearch: import("@reduxjs/toolkit").AsyncThunk<QueryS
39
39
  state: StateNeededByExecuteSearch;
40
40
  rejectValue: import("../../../api/commerce/commerce-api-error-response.js").CommerceAPIErrorStatusResponse;
41
41
  extra: import("../../../app/commerce-thunk-extra-arguments.js").CommerceThunkExtraArguments;
42
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
42
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
43
43
  serializedErrorType?: unknown;
44
44
  pendingMeta?: unknown;
45
45
  fulfilledMeta?: unknown;
@@ -49,7 +49,7 @@ export declare const fetchMoreProducts: import("@reduxjs/toolkit").AsyncThunk<Qu
49
49
  state: StateNeededByExecuteSearch;
50
50
  rejectValue: import("../../../api/commerce/commerce-api-error-response.js").CommerceAPIErrorStatusResponse;
51
51
  extra: import("../../../app/commerce-thunk-extra-arguments.js").CommerceThunkExtraArguments;
52
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
52
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
53
53
  serializedErrorType?: unknown;
54
54
  pendingMeta?: unknown;
55
55
  fulfilledMeta?: unknown;
@@ -60,7 +60,7 @@ export declare const prepareForSearchWithQuery: import("@reduxjs/toolkit").Async
60
60
  state: StateNeededByExecuteSearch;
61
61
  rejectValue: import("../../../api/commerce/commerce-api-error-response.js").CommerceAPIErrorStatusResponse;
62
62
  extra: import("../../../app/commerce-thunk-extra-arguments.js").CommerceThunkExtraArguments;
63
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
63
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
64
64
  serializedErrorType?: unknown;
65
65
  pendingMeta?: unknown;
66
66
  fulfilledMeta?: unknown;
@@ -70,7 +70,7 @@ export declare const fetchInstantProducts: import("@reduxjs/toolkit").AsyncThunk
70
70
  state: StateNeededByExecuteSearch;
71
71
  rejectValue: import("../../../api/commerce/commerce-api-error-response.js").CommerceAPIErrorStatusResponse;
72
72
  extra: import("../../../app/commerce-thunk-extra-arguments.js").CommerceThunkExtraArguments;
73
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
73
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
74
74
  serializedErrorType?: unknown;
75
75
  pendingMeta?: unknown;
76
76
  fulfilledMeta?: unknown;
@@ -1,4 +1,4 @@
1
1
  import { type CommerceSearchState } from './search-state.js';
2
- export declare const commerceSearchReducer: import("redux").Reducer<CommerceSearchState> & {
2
+ export declare const commerceSearchReducer: import("@reduxjs/toolkit").Reducer<CommerceSearchState> & {
3
3
  getInitialState: () => CommerceSearchState;
4
4
  };
@@ -1,4 +1,4 @@
1
1
  import { type CommerceSortState } from './sort-state.js';
2
- export declare const sortReducer: import("redux").Reducer<CommerceSortState> & {
2
+ export declare const sortReducer: import("@reduxjs/toolkit").Reducer<CommerceSortState> & {
3
3
  getInitialState: () => CommerceSortState;
4
4
  };
@@ -9,7 +9,7 @@ export declare const fetchRedirectUrl: import("@reduxjs/toolkit").AsyncThunk<str
9
9
  state: StateNeededForPlanCommerceAPIRequest;
10
10
  rejectValue: import("../../../api/commerce/commerce-api-error-response.js").CommerceAPIErrorStatusResponse;
11
11
  extra: import("../../../app/commerce-thunk-extra-arguments.js").CommerceThunkExtraArguments;
12
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
12
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
13
13
  serializedErrorType?: unknown;
14
14
  pendingMeta?: unknown;
15
15
  fulfilledMeta?: unknown;
@@ -1,3 +1,3 @@
1
- export declare const commerceStandaloneSearchBoxSetReducer: import("redux").Reducer<import("./standalone-search-box-set-state.js").CommerceStandaloneSearchBoxSetState> & {
1
+ export declare const commerceStandaloneSearchBoxSetReducer: import("@reduxjs/toolkit").Reducer<import("./standalone-search-box-set-state.js").CommerceStandaloneSearchBoxSetState> & {
2
2
  getInitialState: () => import("./standalone-search-box-set-state.js").CommerceStandaloneSearchBoxSetState;
3
3
  };
@@ -1,3 +1,3 @@
1
- export declare const commerceTriggersReducer: import("redux").Reducer<import("../../triggers/triggers-state.js").TriggerState> & {
1
+ export declare const commerceTriggersReducer: import("@reduxjs/toolkit").Reducer<import("../../triggers/triggers-state.js").TriggerState> & {
2
2
  getInitialState: () => import("../../triggers/triggers-state.js").TriggerState;
3
3
  };
@@ -1,4 +1,4 @@
1
1
  import { type ConfigurationState } from './configuration-state.js';
2
- export declare const configurationReducer: import("redux").Reducer<ConfigurationState> & {
2
+ export declare const configurationReducer: import("@reduxjs/toolkit").Reducer<ConfigurationState> & {
3
3
  getInitialState: () => ConfigurationState;
4
4
  };
@@ -1,3 +1,3 @@
1
- export declare const contextReducer: import("redux").Reducer<import("./context-state.js").ContextState> & {
1
+ export declare const contextReducer: import("@reduxjs/toolkit").Reducer<import("./context-state.js").ContextState> & {
2
2
  getInitialState: () => import("./context-state.js").ContextState;
3
3
  };
@@ -1,3 +1,3 @@
1
- export declare const debugReducer: import("redux").Reducer<boolean> & {
1
+ export declare const debugReducer: import("@reduxjs/toolkit").Reducer<boolean> & {
2
2
  getInitialState: () => boolean;
3
3
  };
@@ -1,3 +1,3 @@
1
- export declare const versionReducer: import("redux").Reducer<string> & {
1
+ export declare const versionReducer: import("@reduxjs/toolkit").Reducer<string> & {
2
2
  getInitialState: () => string;
3
3
  };
@@ -1,3 +1,3 @@
1
- export declare const dictionaryFieldContextReducer: import("redux").Reducer<import("./dictionary-field-context-state.js").DictionaryFieldContextState> & {
1
+ export declare const dictionaryFieldContextReducer: import("@reduxjs/toolkit").Reducer<import("./dictionary-field-context-state.js").DictionaryFieldContextState> & {
2
2
  getInitialState: () => import("./dictionary-field-context-state.js").DictionaryFieldContextState;
3
3
  };
@@ -1,3 +1,3 @@
1
- export declare const didYouMeanReducer: import("redux").Reducer<import("./did-you-mean-state.js").DidYouMeanState> & {
1
+ export declare const didYouMeanReducer: import("@reduxjs/toolkit").Reducer<import("./did-you-mean-state.js").DidYouMeanState> & {
2
2
  getInitialState: () => import("./did-you-mean-state.js").DidYouMeanState;
3
3
  };
@@ -11,7 +11,7 @@ export declare const fetchDocumentSuggestions: import("@reduxjs/toolkit").AsyncT
11
11
  rejectValue: import("../../api/service/case-assist/case-assist-api-client.js").CaseAssistAPIErrorStatusResponse;
12
12
  state: StateNeededByFetchDocumentSuggestions;
13
13
  extra: import("../../app/thunk-extra-arguments.js").ClientThunkExtraArguments<import("../../api/service/case-assist/case-assist-api-client.js").CaseAssistAPIClient, import("../../api/generated-answer/generated-answer-client.js").GeneratedAnswerAPIClient>;
14
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
14
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
15
15
  serializedErrorType?: unknown;
16
16
  pendingMeta?: unknown;
17
17
  fulfilledMeta?: unknown;
@@ -1,3 +1,3 @@
1
- export declare const documentSuggestionReducer: import("redux").Reducer<import("./document-suggestion-state.js").DocumentSuggestionState> & {
1
+ export declare const documentSuggestionReducer: import("@reduxjs/toolkit").Reducer<import("./document-suggestion-state.js").DocumentSuggestionState> & {
2
2
  getInitialState: () => import("./document-suggestion-state.js").DocumentSuggestionState;
3
3
  };
@@ -1,3 +1,3 @@
1
- export declare const excerptLengthReducer: import("redux").Reducer<import("./excerpt-length-state.js").ExcerptLengthState> & {
1
+ export declare const excerptLengthReducer: import("@reduxjs/toolkit").Reducer<import("./excerpt-length-state.js").ExcerptLengthState> & {
2
2
  getInitialState: () => import("./excerpt-length-state.js").ExcerptLengthState;
3
3
  };
@@ -1,4 +1,4 @@
1
1
  import { type FacetOptionsState } from './facet-options-state.js';
2
- export declare const facetOptionsReducer: import("redux").Reducer<FacetOptionsState> & {
2
+ export declare const facetOptionsReducer: import("@reduxjs/toolkit").Reducer<FacetOptionsState> & {
3
3
  getInitialState: () => FacetOptionsState;
4
4
  };
@@ -1,3 +1,3 @@
1
- export declare const automaticFacetSetReducer: import("redux").Reducer<import("./automatic-facet-set-state.js").AutomaticFacetSetState> & {
1
+ export declare const automaticFacetSetReducer: import("@reduxjs/toolkit").Reducer<import("./automatic-facet-set-state.js").AutomaticFacetSetState> & {
2
2
  getInitialState: () => import("./automatic-facet-set-state.js").AutomaticFacetSetState;
3
3
  };
@@ -1,6 +1,6 @@
1
1
  import { type CategoryFacetSetState } from './category-facet-set-state.js';
2
2
  import type { CategoryFacetOptionalParameters } from './interfaces/options.js';
3
- export declare const categoryFacetSetReducer: import("redux").Reducer<CategoryFacetSetState> & {
3
+ export declare const categoryFacetSetReducer: import("@reduxjs/toolkit").Reducer<CategoryFacetSetState> & {
4
4
  getInitialState: () => CategoryFacetSetState;
5
5
  };
6
6
  export declare const defaultCategoryFacetOptions: CategoryFacetOptionalParameters;
@@ -1,4 +1,4 @@
1
1
  import { type FacetOrderState } from './facet-order-state.js';
2
- export declare const facetOrderReducer: import("redux").Reducer<FacetOrderState> & {
2
+ export declare const facetOrderReducer: import("@reduxjs/toolkit").Reducer<FacetOrderState> & {
3
3
  getInitialState: () => FacetOrderState;
4
4
  };
@@ -1,3 +1,3 @@
1
- export declare const categoryFacetSearchSetReducer: import("redux").Reducer<import("./category-facet-search-set-state.js").CategoryFacetSearchSetState> & {
1
+ export declare const categoryFacetSearchSetReducer: import("@reduxjs/toolkit").Reducer<import("./category-facet-search-set-state.js").CategoryFacetSearchSetState> & {
2
2
  getInitialState: () => import("./category-facet-search-set-state.js").CategoryFacetSearchSetState;
3
3
  };
@@ -9,7 +9,7 @@ type ExecuteFacetSearchThunkReturn = {
9
9
  export declare const executeFacetSearch: import("@reduxjs/toolkit").AsyncThunk<ExecuteFacetSearchThunkReturn, string, {
10
10
  state: StateNeededForFacetSearch;
11
11
  extra: ClientThunkExtraArguments<FacetSearchAPIClient, import("../../../../api/generated-answer/generated-answer-client.js").GeneratedAnswerAPIClient>;
12
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
12
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
13
13
  rejectValue?: unknown;
14
14
  serializedErrorType?: unknown;
15
15
  pendingMeta?: unknown;
@@ -22,7 +22,7 @@ export declare const executeFieldSuggest: import("@reduxjs/toolkit").AsyncThunk<
22
22
  }, string, {
23
23
  state: StateNeededForFacetSearch;
24
24
  extra: ClientThunkExtraArguments<FacetSearchAPIClient, import("../../../../api/generated-answer/generated-answer-client.js").GeneratedAnswerAPIClient>;
25
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
25
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
26
26
  rejectValue?: unknown;
27
27
  serializedErrorType?: unknown;
28
28
  pendingMeta?: unknown;
@@ -1,3 +1,3 @@
1
- export declare const specificFacetSearchSetReducer: import("redux").Reducer<import("./specific-facet-search-set-state.js").SpecificFacetSearchSetState> & {
1
+ export declare const specificFacetSearchSetReducer: import("@reduxjs/toolkit").Reducer<import("./specific-facet-search-set-state.js").SpecificFacetSearchSetState> & {
2
2
  getInitialState: () => import("./specific-facet-search-set-state.js").SpecificFacetSearchSetState;
3
3
  };
@@ -6,7 +6,7 @@ export declare const executeToggleFacetSelect: import("@reduxjs/toolkit").AsyncT
6
6
  }, {
7
7
  state: FacetSection & ConfigurationSection;
8
8
  extra: import("../../../app/thunk-extra-arguments.js").ThunkExtraArguments;
9
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
9
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
10
10
  rejectValue?: unknown;
11
11
  serializedErrorType?: unknown;
12
12
  pendingMeta?: unknown;
@@ -19,7 +19,7 @@ export declare const executeToggleFacetExclude: import("@reduxjs/toolkit").Async
19
19
  }, {
20
20
  state: FacetSection & ConfigurationSection;
21
21
  extra: import("../../../app/thunk-extra-arguments.js").ThunkExtraArguments;
22
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
22
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
23
23
  rejectValue?: unknown;
24
24
  serializedErrorType?: unknown;
25
25
  pendingMeta?: unknown;
@@ -1,7 +1,7 @@
1
1
  import type { FacetOptionalParameters } from './interfaces/options.js';
2
2
  import type { FacetValueRequest } from './interfaces/request.js';
3
3
  import type { FacetValue } from './interfaces/response.js';
4
- export declare const facetSetReducer: import("redux").Reducer<import("./facet-set-state.js").FacetSetState> & {
4
+ export declare const facetSetReducer: import("@reduxjs/toolkit").Reducer<import("./facet-set-state.js").FacetSetState> & {
5
5
  getInitialState: () => import("./facet-set-state.js").FacetSetState;
6
6
  };
7
7
  export declare const defaultFacetOptions: FacetOptionalParameters;
@@ -6,7 +6,7 @@ export declare const executeToggleDateFacetSelect: import("@reduxjs/toolkit").As
6
6
  }, {
7
7
  state: ConfigurationSection & DateFacetSection;
8
8
  extra: import("../../../../app/thunk-extra-arguments.js").ThunkExtraArguments;
9
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
9
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
10
10
  rejectValue?: unknown;
11
11
  serializedErrorType?: unknown;
12
12
  pendingMeta?: unknown;
@@ -19,7 +19,7 @@ export declare const executeToggleDateFacetExclude: import("@reduxjs/toolkit").A
19
19
  }, {
20
20
  state: ConfigurationSection & DateFacetSection;
21
21
  extra: import("../../../../app/thunk-extra-arguments.js").ThunkExtraArguments;
22
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
22
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
23
23
  rejectValue?: unknown;
24
24
  serializedErrorType?: unknown;
25
25
  pendingMeta?: unknown;
@@ -1,6 +1,6 @@
1
1
  import type { DateRangeRequest } from './interfaces/request.js';
2
2
  import type { DateFacetValue } from './interfaces/response.js';
3
- export declare const dateFacetSetReducer: import("redux").Reducer<import("./date-facet-set-state.js").DateFacetSetState> & {
3
+ export declare const dateFacetSetReducer: import("@reduxjs/toolkit").Reducer<import("./date-facet-set-state.js").DateFacetSetState> & {
4
4
  getInitialState: () => import("./date-facet-set-state.js").DateFacetSetState;
5
5
  };
6
6
  export declare function convertToDateRangeRequests(values: DateFacetValue[]): DateRangeRequest[];
@@ -6,7 +6,7 @@ export declare const executeToggleNumericFacetSelect: import("@reduxjs/toolkit")
6
6
  }, {
7
7
  state: ConfigurationSection & NumericFacetSection;
8
8
  extra: import("../../../../app/thunk-extra-arguments.js").ThunkExtraArguments;
9
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
9
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
10
10
  rejectValue?: unknown;
11
11
  serializedErrorType?: unknown;
12
12
  pendingMeta?: unknown;
@@ -19,7 +19,7 @@ export declare const executeToggleNumericFacetExclude: import("@reduxjs/toolkit"
19
19
  }, {
20
20
  state: ConfigurationSection & NumericFacetSection;
21
21
  extra: import("../../../../app/thunk-extra-arguments.js").ThunkExtraArguments;
22
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
22
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
23
23
  rejectValue?: unknown;
24
24
  serializedErrorType?: unknown;
25
25
  pendingMeta?: unknown;
@@ -1,6 +1,6 @@
1
1
  import type { NumericRangeRequest } from './interfaces/request.js';
2
2
  import type { NumericFacetValue } from './interfaces/response.js';
3
- export declare const numericFacetSetReducer: import("redux").Reducer<import("./numeric-facet-set-state.js").NumericFacetSetState> & {
3
+ export declare const numericFacetSetReducer: import("@reduxjs/toolkit").Reducer<import("./numeric-facet-set-state.js").NumericFacetSetState> & {
4
4
  getInitialState: () => import("./numeric-facet-set-state.js").NumericFacetSetState;
5
5
  };
6
6
  export declare function convertToNumericRangeRequests(values: NumericFacetValue[]): NumericRangeRequest[];
@@ -7,7 +7,7 @@ export declare const fetchFieldsDescription: import("@reduxjs/toolkit").AsyncThu
7
7
  rejectValue: import("../../api/search/search-api-error-response.js").SearchAPIErrorWithStatusCode;
8
8
  state: ConfigurationSection;
9
9
  extra: import("../../app/thunk-extra-arguments.js").ClientThunkExtraArguments<import("../../api/search/search-api-client.js").SearchAPIClient, import("../../api/generated-answer/generated-answer-client.js").GeneratedAnswerAPIClient>;
10
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
10
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
11
11
  serializedErrorType?: unknown;
12
12
  pendingMeta?: unknown;
13
13
  fulfilledMeta?: unknown;
@@ -1,3 +1,3 @@
1
- export declare const fieldsReducer: import("redux").Reducer<import("./fields-state.js").FieldsState> & {
1
+ export declare const fieldsReducer: import("@reduxjs/toolkit").Reducer<import("./fields-state.js").FieldsState> & {
2
2
  getInitialState: () => import("./fields-state.js").FieldsState;
3
3
  };
@@ -42,7 +42,7 @@ export declare const loadCollection: import("@reduxjs/toolkit").AsyncThunk<LoadC
42
42
  rejectValue: import("../../api/search/search-api-error-response.js").SearchAPIErrorWithStatusCode;
43
43
  state: StateNeededByLoadCollection;
44
44
  extra: import("../../app/thunk-extra-arguments.js").ClientThunkExtraArguments<import("../../api/search/search-api-client.js").SearchAPIClient, import("../../api/generated-answer/generated-answer-client.js").GeneratedAnswerAPIClient>;
45
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
45
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
46
46
  serializedErrorType?: unknown;
47
47
  pendingMeta?: unknown;
48
48
  fulfilledMeta?: unknown;
@@ -5,6 +5,6 @@ export interface ResultWithFolding extends Result {
5
5
  childResults: ResultWithFolding[];
6
6
  totalNumberOfChildResults: number;
7
7
  }
8
- export declare const foldingReducer: import("redux").Reducer<FoldingState> & {
8
+ export declare const foldingReducer: import("@reduxjs/toolkit").Reducer<FoldingState> & {
9
9
  getInitialState: () => FoldingState;
10
10
  };
@@ -7,7 +7,7 @@ export declare const loadCollection: import("@reduxjs/toolkit").AsyncThunk<LoadC
7
7
  rejectValue: import("../../api/service/insight/insight-api-client.js").InsightAPIErrorStatusResponse;
8
8
  state: StateNeededByLoadCollection;
9
9
  extra: import("../../app/thunk-extra-arguments.js").ClientThunkExtraArguments<import("../../api/service/insight/insight-api-client.js").InsightAPIClient, import("../../api/generated-answer/generated-answer-client.js").GeneratedAnswerAPIClient>;
10
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
10
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
11
11
  serializedErrorType?: unknown;
12
12
  pendingMeta?: unknown;
13
13
  fulfilledMeta?: unknown;
@@ -44,7 +44,7 @@ interface StreamAnswerArgs {
44
44
  export declare const streamAnswer: import("@reduxjs/toolkit").AsyncThunk<void, StreamAnswerArgs, {
45
45
  state: StateNeededByGeneratedAnswerStream;
46
46
  extra: import("../../app/thunk-extra-arguments.js").ClientThunkExtraArguments<import("../../api/generated-answer/generated-answer-client.js").GeneratedAnswerAPIClient, import("../../api/generated-answer/generated-answer-client.js").GeneratedAnswerAPIClient>;
47
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
47
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
48
48
  rejectValue?: unknown;
49
49
  serializedErrorType?: unknown;
50
50
  pendingMeta?: unknown;
@@ -66,7 +66,7 @@ export declare const streamAnswer: import("@reduxjs/toolkit").AsyncThunk<void, S
66
66
  export declare const generateAnswer: import("@reduxjs/toolkit").AsyncThunk<void, void, {
67
67
  state: StreamAnswerAPIState;
68
68
  extra: SearchThunkExtraArguments;
69
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
69
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
70
70
  rejectValue?: unknown;
71
71
  serializedErrorType?: unknown;
72
72
  pendingMeta?: unknown;
@@ -1,3 +1,3 @@
1
- export declare const generatedAnswerReducer: import("redux").Reducer<import("./generated-answer-state.js").GeneratedAnswerState> & {
1
+ export declare const generatedAnswerReducer: import("@reduxjs/toolkit").Reducer<import("./generated-answer-state.js").GeneratedAnswerState> & {
2
2
  getInitialState: () => import("./generated-answer-state.js").GeneratedAnswerState;
3
3
  };
@@ -4,7 +4,7 @@ export declare const redo: import("@reduxjs/toolkit").ActionCreatorWithoutPayloa
4
4
  export declare const snapshot: import("@reduxjs/toolkit").ActionCreatorWithPayload<HistoryState, string>;
5
5
  export declare const back: import("@reduxjs/toolkit").AsyncThunk<void, void, {
6
6
  state?: unknown;
7
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction>;
7
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction>;
8
8
  extra?: unknown;
9
9
  rejectValue?: unknown;
10
10
  serializedErrorType?: unknown;
@@ -14,7 +14,7 @@ export declare const back: import("@reduxjs/toolkit").AsyncThunk<void, void, {
14
14
  }>;
15
15
  export declare const forward: import("@reduxjs/toolkit").AsyncThunk<void, void, {
16
16
  state?: unknown;
17
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction>;
17
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction>;
18
18
  extra?: unknown;
19
19
  rejectValue?: unknown;
20
20
  serializedErrorType?: unknown;
@@ -24,7 +24,7 @@ export declare const forward: import("@reduxjs/toolkit").AsyncThunk<void, void,
24
24
  }>;
25
25
  export declare const change: import("@reduxjs/toolkit").AsyncThunk<HistoryState | undefined, void, {
26
26
  state?: unknown;
27
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction>;
27
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction>;
28
28
  extra?: unknown;
29
29
  rejectValue?: unknown;
30
30
  serializedErrorType?: unknown;
@@ -1,5 +1,5 @@
1
1
  import { type HistoryState } from './history-state.js';
2
- export declare const historyReducer: import("redux").Reducer<HistoryState> & {
2
+ export declare const historyReducer: import("@reduxjs/toolkit").Reducer<HistoryState> & {
3
3
  getInitialState: () => HistoryState;
4
4
  };
5
- export declare const history: (state: import("../../app/undoable.js").StateWithHistory<HistoryState> | undefined, action: import("redux").AnyAction) => import("../../app/undoable.js").StateWithHistory<HistoryState>;
5
+ export declare const history: (state: import("../../app/undoable.js").StateWithHistory<HistoryState> | undefined, action: import("@reduxjs/toolkit").AnyAction) => import("../../app/undoable.js").StateWithHistory<HistoryState>;
@@ -1,3 +1,3 @@
1
- export declare const insightConfigurationReducer: import("redux").Reducer<import("./insight-configuration-state.js").InsightConfigurationState> & {
1
+ export declare const insightConfigurationReducer: import("@reduxjs/toolkit").Reducer<import("./insight-configuration-state.js").InsightConfigurationState> & {
2
2
  getInitialState: () => import("./insight-configuration-state.js").InsightConfigurationState;
3
3
  };
@@ -9,7 +9,7 @@ export declare const fetchInterface: import("@reduxjs/toolkit").AsyncThunk<Fetch
9
9
  rejectValue: import("../../api/service/insight/insight-api-client.js").InsightAPIErrorStatusResponse;
10
10
  state: StateNeededByFetchInterface;
11
11
  extra: import("../../app/thunk-extra-arguments.js").ClientThunkExtraArguments<import("../../api/service/insight/insight-api-client.js").InsightAPIClient, import("../../api/generated-answer/generated-answer-client.js").GeneratedAnswerAPIClient>;
12
- dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction> | undefined;
12
+ dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("@reduxjs/toolkit").UnknownAction> | undefined;
13
13
  serializedErrorType?: unknown;
14
14
  pendingMeta?: unknown;
15
15
  fulfilledMeta?: unknown;