import type { FacetResultsMustMatch } from '../facet-api/request.js'; import type { FacetSortCriterion } from './interfaces/request.js'; import type { FacetValue } from './interfaces/response.js'; export interface RegisterFacetActionCreatorPayload { /** * A unique identifier for the facet. * */ facetId: string; /** * The field from which to display values in the facet. * */ field: string; /** * The tabs on which the facet should be enabled or disabled. */ tabs?: { included?: string[]; excluded?: string[]; }; /** * @deprecated - This field is unused and should not be relied on. * If you need the currently active tab, use the TabManager instead. * * This property will be removed in version 4.0. */ activeTab?: string; /** * Whether to exclude the parents of folded results when estimating the result count for each facet value. * * Note: Resulting count is only an estimation, in some cases this value could be incorrect. * * @defaultValue `true` */ filterFacetCount?: boolean; /** * The maximum number of results to scan in the index to ensure that the facet lists all potential facet values. * * Note: A high `injectionDepth` may negatively impact the facet request performance. * * Minimum: `0` * * @defaultValue `1000` * */ injectionDepth?: number; /** * The number of values to request for this facet. Also determines the number of additional values to request each time this facet is expanded, and the number of values to display when this facet is collapsed. * * Minimum: `1` * * @defaultValue `8` */ numberOfValues?: number; /** * The criterion to use for sorting returned facet values. * * The `sortCriteria` option does not apply when making a facet search request. It is only used for sorting returned facet values during a regular Coveo search request. * * Learn more about `sortCriteria` values and the default behavior of specific facets in the [Search API documentation](https://docs.coveo.com/en/13#operation/searchUsingPost-facets-sortCriteria). * * @defaultValue `automatic` */ sortCriteria?: FacetSortCriterion; /** * Specifies an explicit list of `allowedValues` in the Search API request. * * If you specify a list of values for this option, the facet uses only these values (if they are available in * the current result set). * * The maximum amount of allowed values is 25. * * Default value is `undefined`, and the facet uses all available values for its `field` in the current result set. */ allowedValues?: { type: 'simple'; values: string[]; }; /** * Identifies the facet values that must appear at the top, in this order. * This parameter can be used in conjunction with the `sortCriteria` parameter. * * Facet values not part of the `customSort` list will be sorted according to the `sortCriteria`. * * The maximum amount of custom sort values is 25. * * The default value is `undefined`, and the facet values will be sorted using only the `sortCriteria`. */ customSort?: string[]; /** * The criterion to use for specifying how results must match the selected facet values. * * @defaultValue `atLeastOneValue` */ resultsMustMatch?: FacetResultsMustMatch; } export declare const registerFacet: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[payload: RegisterFacetActionCreatorPayload], RegisterFacetActionCreatorPayload, "facet/register", never, never>; export interface ToggleSelectFacetValueActionCreatorPayload { /** * The unique identifier of the facet (for example, `"1"`). */ facetId: string; /** * The target facet value. */ selection: FacetValue; } export declare const toggleSelectFacetValue: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[payload: ToggleSelectFacetValueActionCreatorPayload], ToggleSelectFacetValueActionCreatorPayload, "facet/toggleSelectValue", never, never>; export declare const toggleExcludeFacetValue: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[payload: ToggleSelectFacetValueActionCreatorPayload], ToggleSelectFacetValueActionCreatorPayload, "facet/toggleExcludeValue", never, never>; export declare const deselectAllFacetValues: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[payload: string], string, "facet/deselectAll", never, never>; export interface UpdateFacetSortCriterionActionCreatorPayload { /** * The unique identifier of the facet (for example, `"1"`). */ facetId: string; /** * The criterion by which to sort the facet. */ criterion: FacetSortCriterion; } export declare const updateFacetSortCriterion: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[payload: UpdateFacetSortCriterionActionCreatorPayload], UpdateFacetSortCriterionActionCreatorPayload, "facet/updateSortCriterion", never, never>; export interface UpdateFacetNumberOfValuesActionCreatorPayload { /** * The unique identifier of the facet (for example, `"1"`). */ facetId: string; /** * The new number of facet values (for example, `10`). */ numberOfValues: number; } export declare const updateFacetNumberOfValues: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[payload: UpdateFacetNumberOfValuesActionCreatorPayload], UpdateFacetNumberOfValuesActionCreatorPayload, "facet/updateNumberOfValues", never, never>; export interface UpdateFacetIsFieldExpandedActionCreatorPayload { /** * The unique identifier of the facet (for example, `"1"`). */ facetId: string; /** * Whether to expand or shrink down the facet. */ isFieldExpanded: boolean; } export declare const updateFacetIsFieldExpanded: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[payload: UpdateFacetIsFieldExpandedActionCreatorPayload], UpdateFacetIsFieldExpandedActionCreatorPayload, "facet/updateIsFieldExpanded", never, never>; export interface UpdateFreezeCurrentValuesActionCreatorPayload { /** * The unique identifier of the facet (for example, `"1"`). */ facetId: string; /** * Whether the values should be frozen in the next request. */ freezeCurrentValues: boolean; } export declare const updateFreezeCurrentValues: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[payload: UpdateFreezeCurrentValuesActionCreatorPayload], UpdateFreezeCurrentValuesActionCreatorPayload, "facet/updateFreezeCurrentValues", never, never>;