[CST-6056] Fix issue with authority suggestion by adding the filter query in the input suggestion object

This commit is contained in:
Giuseppe Digilio
2022-06-21 13:37:42 +02:00
parent ac41e7b3d6
commit 20314d4620
6 changed files with 18 additions and 19 deletions

View File

@@ -7,6 +7,14 @@ export interface InputSuggestion {
*/
displayValue: string;
/**
* The search query that can be used with filter suggestion.
* It contains the value within the operator :
* - value,equals
* - value,authority
*/
query?: string;
/**
* The actual value of the suggestion
*/