@ampsec/platform-client 29.1.0 → 29.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -65,6 +65,6 @@ export type FilterCriteria = {
|
|
|
65
65
|
/** Sort Criteria */
|
|
66
66
|
sort?: SortOptions;
|
|
67
67
|
/** catch all bucket for other fields */
|
|
68
|
-
[key: string]: string | StringMatcher | number | NumberMatcher | boolean | null | undefined;
|
|
68
|
+
[key: string]: string | string[] | StringMatcher | number | NumberMatcher | boolean | null | undefined;
|
|
69
69
|
};
|
|
70
70
|
export {};
|
package/package.json
CHANGED
package/src/FilterCriteria.ts
CHANGED
|
@@ -68,5 +68,5 @@ export type FilterCriteria = {
|
|
|
68
68
|
/** Sort Criteria */
|
|
69
69
|
sort?: SortOptions;
|
|
70
70
|
/** catch all bucket for other fields */
|
|
71
|
-
[key: string]: string | StringMatcher | number | NumberMatcher | boolean | null | undefined;
|
|
71
|
+
[key: string]: string | string[] | StringMatcher | number | NumberMatcher | boolean | null | undefined;
|
|
72
72
|
};
|