@fibery/expression-utils 1.1.8 → 1.1.9

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.
@@ -190,7 +190,7 @@ const assertIsValidExpression = expression => {
190
190
  };
191
191
  const dateRangeFunctions = new Set(["q/start", "q/end"]);
192
192
  const firstLastFunctions = new Set(["q/first", "q/last"]);
193
- const collectionOps = new Set(["q/count", "q/count-distinsct", "q/sum", "q/min", "q/max", "q/avg", "q/join", "q/first", "q/last"]);
193
+ const collectionOps = new Set(["q/count", "q/count-distinct", "q/sum", "q/min", "q/max", "q/avg", "q/join", "q/first", "q/last"]);
194
194
  // [op, left, right]
195
195
  // [=, $true, $false]
196
196
  // [=, $my-id, ["fibery/id"]]
package/lib/utils.js CHANGED
@@ -40,7 +40,7 @@ const assertIsValidExpression = expression => {
40
40
  };
41
41
  const dateRangeFunctions = new Set(["q/start", "q/end"]);
42
42
  const firstLastFunctions = new Set(["q/first", "q/last"]);
43
- const collectionOps = new Set(["q/count", "q/count-distinsct", "q/sum", "q/min", "q/max", "q/avg", "q/join", "q/first", "q/last"]);
43
+ const collectionOps = new Set(["q/count", "q/count-distinct", "q/sum", "q/min", "q/max", "q/avg", "q/join", "q/first", "q/last"]);
44
44
  // [op, left, right]
45
45
  // [=, $true, $false]
46
46
  // [=, $my-id, ["fibery/id"]]
package/lib/visitors.js CHANGED
@@ -33,7 +33,7 @@ class NotImplementedError extends Error {
33
33
  }
34
34
 
35
35
  const firstLastFunctions = new Set(["q/first", "q/last"]);
36
- const collectionOps = new Set(["q/count", "q/count-distinsct", "q/sum", "q/min", "q/max", "q/avg", "q/join", "q/first", "q/last"]);
36
+ const collectionOps = new Set(["q/count", "q/count-distinct", "q/sum", "q/min", "q/max", "q/avg", "q/join", "q/first", "q/last"]);
37
37
  // [op, left, right]
38
38
  // [=, $true, $false]
39
39
  // [=, $my-id, ["fibery/id"]]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fibery/expression-utils",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "description": "utils for working with fibery api expressions",
5
5
  "exports": {
6
6
  ".": "./lib/expression-utils.js",