File tree 2 files changed +4
-4
lines changed
packages/client-search/src/types
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,14 @@ export type DeleteByFiltersOptions = {
12
12
/**
13
13
* Filter on numeric attributes.
14
14
*/
15
- readonly numericFilters ?: string | readonly string [ ] | ReadonlyArray < readonly string [ ] > ;
15
+ readonly numericFilters ?: string | readonly string [ ] | ReadonlyArray < readonly string [ ] | string > ;
16
16
17
17
/**
18
18
* Filter hits by tags. tagFilters is a different way of filtering, which relies on the _tags
19
19
* attribute. It uses a simpler syntax than filters. You can use it when you want to do
20
20
* simple filtering based on tags.
21
21
*/
22
- readonly tagFilters ?: string | readonly string [ ] | ReadonlyArray < readonly string [ ] > ;
22
+ readonly tagFilters ?: string | readonly string [ ] | ReadonlyArray < readonly string [ ] | string > ;
23
23
24
24
/**
25
25
* Search for entries around a central geolocation, enabling a geo search within a circular area.
Original file line number Diff line number Diff line change @@ -24,14 +24,14 @@ export type SearchOptions = {
24
24
/**
25
25
* Filter on numeric attributes.
26
26
*/
27
- readonly numericFilters ?: string | readonly string [ ] | ReadonlyArray < readonly string [ ] > ;
27
+ readonly numericFilters ?: string | readonly string [ ] | ReadonlyArray < readonly string [ ] | string > ;
28
28
29
29
/**
30
30
* Filter hits by tags. tagFilters is a different way of filtering, which relies on the _tags
31
31
* attribute. It uses a simpler syntax than filters. You can use it when you want to do
32
32
* simple filtering based on tags.
33
33
*/
34
- readonly tagFilters ?: string | readonly string [ ] | ReadonlyArray < readonly string [ ] > ;
34
+ readonly tagFilters ?: string | readonly string [ ] | ReadonlyArray < readonly string [ ] | string > ;
35
35
36
36
/**
37
37
* Determines how to calculate the total score for filtering.
You can’t perform that action at this time.
0 commit comments