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 = {
43
43
readonly rankingScore : number ;
44
44
readonly score : number ;
45
45
} ;
46
+ readonly promotedByReRanking ?: boolean ;
46
47
} ;
47
48
48
49
export type Hit < THit > = THit & {
Original file line number Diff line number Diff line change @@ -366,5 +366,6 @@ export type SearchOptions = {
366
366
readonly reRankingApplyFilter ?:
367
367
| string
368
368
| readonly string [ ]
369
- | ReadonlyArray < readonly string [ ] | string > ;
369
+ | ReadonlyArray < readonly string [ ] | string >
370
+ | null ;
370
371
} ;
Original file line number Diff line number Diff line change @@ -359,5 +359,6 @@ export type Settings = {
359
359
readonly reRankingApplyFilter ?:
360
360
| string
361
361
| readonly string [ ]
362
- | ReadonlyArray < readonly string [ ] | string > ;
362
+ | ReadonlyArray < readonly string [ ] | string >
363
+ | null ;
363
364
} ;
You can’t perform that action at this time.
0 commit comments