You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix(methods): remove addDisjunctiveRefine
BREAKING CHANGE: addDisjunctiveRefine is replaced with addDisjunctiveFacetRefinement
* fix(methods): remove removeDisjunctiveRefine
BREAKING CHANGE: removeDisjunctiveRefine is replaced with removeDisjunctiveFacetRefinement
* fix(methods): remove addRefine
BREAKING CHANGE: addRefine is replaced with addFacetRefinement
* fix(methods): remove addExclude
BREAKING CHANGE: addExclude is replaced with addFacetExclusion
* fix(methods): remove removeRefine
BREAKING CHANGE: removeRefine is replaced with removeFacetRefinement
* fix(methods): remove removeExclude
BREAKING CHANGE: removeExclude is replaced with removeFacetExclusion
* fix(methods): remove toggleExclude
BREAKING CHANGE: toggleExclude is replaced with toggleFacetExclusion
* fix(methods): remove toggleRefine
BREAKING CHANGE: toggleRefine is replaced with toggleFacetRefinement
* fix(methods): remove toggleRefinement
BREAKING CHANGE: toggleRefinement is replaced with toggleFacetRefinement
* fix(methods): remove isExcluded, isDisjunctiveRefined, hasTag, isTagRefined
These methods are available from the SearchParameters / helper.state instead
BREAKING CHANGE: replace helper.isExcluded with helper.state.isExcludeRefined
BREAKING CHANGE: replace helper.isDisjunctiveRefined with helper.state.isDisjunctiveFacetRefined
BREAKING CHANGE: replace helper.hasTag with helper.state.isTagRefined
BREAKING CHANGE: replace helper.isTagRefined with helper.state.isTagRefined
* fix(methods): remove setCurrentPage
BREAKING CHANGE: setCurrentPage is replaced with setPage
* fix(methods): remove getCurrentPage
BREAKING CHANGE: getCurrentPage is replaced with getPage
* fix(methods): remove getFacetByName
BREAKING CHANGE: getFacetByName (on search results) is replaced by calling results.xxxfacets.find(f => f.name === name) yourself (where xxxfacets is facets, disjunctiveFacets or hierarchicalFacets depending on your use case)
* fix(methods): remove containsRefinement
BREAKING CHANGE: containsRefinement is removed. Instead check the length of the arguments directly.
0 commit comments