feat: add support for multiple values in the value filter

This commit is contained in:
Wieland Schöbl
2021-04-07 11:22:29 +02:00
committed by Jovan Krunić
parent 03cdbc6f9b
commit 913c5691da

View File

@@ -32,7 +32,7 @@ export interface SCValueFilterArguments extends SCSearchAbstractFilterArguments
field: SCThingsField; field: SCThingsField;
/** /**
* Value to filter. Value has to match the field exactly. * Value to filter. One or more values has to match the field exactly.
*/ */
value: string; value: string | string[];
} }