dbgate-sqltree 4.6.0 → 4.7.0

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.
@@ -29,6 +29,7 @@ function evaluateCondition(condition, values) {
29
29
  case '=':
30
30
  return left == right;
31
31
  case '!=':
32
+ case '<>':
32
33
  return left != right;
33
34
  case '<=':
34
35
  return left <= right;
package/lib/types.d.ts CHANGED
@@ -42,7 +42,7 @@ export interface UnaryCondition {
42
42
  }
43
43
  export interface BinaryCondition {
44
44
  conditionType: 'binary';
45
- operator: '=' | '!=' | '<' | '>' | '>=' | '<=';
45
+ operator: '=' | '!=' | '<>' | '<' | '>' | '>=' | '<=';
46
46
  left: Expression;
47
47
  right: Expression;
48
48
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "4.6.0",
2
+ "version": "4.7.0",
3
3
  "name": "dbgate-sqltree",
4
4
  "main": "lib/index.js",
5
5
  "typings": "lib/index.d.ts",
@@ -27,7 +27,7 @@
27
27
  ],
28
28
  "devDependencies": {
29
29
  "@types/node": "^13.7.0",
30
- "dbgate-types": "^4.6.0",
30
+ "dbgate-types": "^4.7.0",
31
31
  "typescript": "^4.4.3"
32
32
  },
33
33
  "dependencies": {