Skip to content

Commit 84355a9

Browse files
authored
feat(types): support facetQuery in MultipleQueriesQuery (#1267)
1 parent cd39284 commit 84355a9

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

packages/client-search/src/types/MultipleQueriesQuery.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,14 @@ export type MultipleQueriesQuery = SharedMultipleQueriesQuery &
3535
* The facet name.
3636
*/
3737
readonly facet: string;
38+
/**
39+
* The search options.
40+
*/
41+
readonly params?: SharedMultipleQueriesQuery['params'] & {
42+
/**
43+
* The search query used to search the facet attribute. Follows the same rules for an index query: a single character, a partial word, a word, or a phrase.
44+
*/
45+
readonly facetQuery?: string;
46+
};
3847
}
3948
);

0 commit comments

Comments
 (0)