document-dataply 0.0.2-alpha.0 → 0.0.2-alpha.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.
package/dist/cjs/index.js CHANGED
@@ -7225,6 +7225,7 @@ var DocumentDataply = class {
7225
7225
  lte: "primaryLte",
7226
7226
  gt: "primaryGt",
7227
7227
  gte: "primaryGte",
7228
+ or: "primaryOr",
7228
7229
  like: "like"
7229
7230
  };
7230
7231
  constructor(file, options) {
@@ -43,6 +43,7 @@ export type DocumentDataplyCondition<V> = {
43
43
  equal?: Partial<V>;
44
44
  notEqual?: Partial<V>;
45
45
  like?: Partial<V>;
46
+ or?: Partial<V>[];
46
47
  };
47
48
  export type DocumentDataplyQuery<T> = {
48
49
  [key in keyof T]: T[key] | DocumentDataplyCondition<T[key]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "document-dataply",
3
- "version": "0.0.2-alpha.0",
3
+ "version": "0.0.2-alpha.1",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "author": "izure <admin@izure.org>",