shred-api-client 2.4.12 → 2.4.13-rc.3
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.
- package/dist/index.d.ts +6 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -801,8 +801,12 @@ type QueryOrderBy<T> = {
|
|
|
801
801
|
type QueryFilterOp = "==" | "!=" | ">" | "<" | ">=" | "<=" | "in" | "not-in" | "array-contains" | "array-contains-any" | "between";
|
|
802
802
|
type QueryWhere<T> = {
|
|
803
803
|
field: keyof T | "modified";
|
|
804
|
-
operation: QueryFilterOp
|
|
805
|
-
value: T[keyof T] | T[keyof T][]
|
|
804
|
+
operation: Exclude<QueryFilterOp, "between">;
|
|
805
|
+
value: T[keyof T] | T[keyof T][];
|
|
806
|
+
} | {
|
|
807
|
+
field: keyof T | "modified";
|
|
808
|
+
operation: "between";
|
|
809
|
+
value: {
|
|
806
810
|
from: number;
|
|
807
811
|
to: number;
|
|
808
812
|
};
|