Skip to content

Commit

Permalink
fix(x-plugin): improve ResultFeature type values
Browse files Browse the repository at this point in the history
  • Loading branch information
herrardo committed Oct 30, 2023
1 parent 2c2e572 commit da530d6
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions packages/x-components/src/types/origin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,15 @@ export type QueryFeature =
*/
export type ResultFeature =
| 'search'
| 'recommendations'
| 'next_query_results'
| 'topclicked_recommendations'
| 'brand_recommendations'
| 'next_query_recommendations'
| 'semantic_recommendations'
| 'partial_results'
| 'identifier_result'
| 'brand_recommendations'
| 'semantics';
| 'recommendations' // TODO remove in major version. Deprecated value
| 'next_query_results' // TODO remove in major version. Deprecated value
| 'semantics'; // TODO remove in major version. Deprecated value

/**
* Indicates where the feature is placed.
Expand Down

0 comments on commit da530d6

Please sign in to comment.