File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
packages/client-search/src/types Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ export type RankingInfo = {
4343 readonly rankingScore : number ;
4444 readonly score : number ;
4545 } ;
46+ readonly promotedByReRanking ?: boolean ;
4647} ;
4748
4849export type Hit < THit > = THit & {
Original file line number Diff line number Diff line change @@ -366,5 +366,6 @@ export type SearchOptions = {
366366 readonly reRankingApplyFilter ?:
367367 | string
368368 | readonly string [ ]
369- | ReadonlyArray < readonly string [ ] | string > ;
369+ | ReadonlyArray < readonly string [ ] | string >
370+ | null ;
370371} ;
Original file line number Diff line number Diff line change @@ -359,5 +359,6 @@ export type Settings = {
359359 readonly reRankingApplyFilter ?:
360360 | string
361361 | readonly string [ ]
362- | ReadonlyArray < readonly string [ ] | string > ;
362+ | ReadonlyArray < readonly string [ ] | string >
363+ | null ;
363364} ;
You can’t perform that action at this time.
0 commit comments