/** * A trending facet value returned by the Recommend API. * NOT a Hit — no objectID, __position, or __queryID. */ export type TrendingFacetItem = { /** The facet attribute name (e.g., "brand"). */ facetName: string; /** The facet value (e.g., "Nike"). */ facetValue: string; /** Trending score from the Recommend API (0-100). */ _score: number; };