@smartive/graphql-magic 16.2.5 → 16.3.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.
package/docs/package.json CHANGED
@@ -15,8 +15,8 @@
15
15
  "typecheck": "tsc"
16
16
  },
17
17
  "dependencies": {
18
- "@docusaurus/core": "3.6.3",
19
- "@docusaurus/preset-classic": "3.6.3",
18
+ "@docusaurus/core": "3.7.0",
19
+ "@docusaurus/preset-classic": "3.7.0",
20
20
  "@mdx-js/react": "^3.0.0",
21
21
  "clsx": "^2.0.0",
22
22
  "prism-react-renderer": "^2.3.0",
@@ -24,9 +24,9 @@
24
24
  "react-dom": "^18.0.0"
25
25
  },
26
26
  "devDependencies": {
27
- "@docusaurus/module-type-aliases": "3.6.3",
28
- "@docusaurus/tsconfig": "3.6.3",
29
- "@docusaurus/types": "3.6.3",
27
+ "@docusaurus/module-type-aliases": "3.7.0",
28
+ "@docusaurus/tsconfig": "3.7.0",
29
+ "@docusaurus/types": "3.7.0",
30
30
  "typescript": "5.5.4"
31
31
  },
32
32
  "browserslist": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartive/graphql-magic",
3
- "version": "16.2.5",
3
+ "version": "16.3.0",
4
4
  "description": "",
5
5
  "source": "src/index.ts",
6
6
  "type": "module",
@@ -72,13 +72,13 @@
72
72
  "@smartive/eslint-config": "3.3.0",
73
73
  "@smartive/prettier-config": "3.1.2",
74
74
  "@types/jest": "29.5.14",
75
- "@types/lodash": "4.17.13",
75
+ "@types/lodash": "4.17.15",
76
76
  "@types/luxon": "3.4.2",
77
- "@types/pg": "8.11.10",
77
+ "@types/pg": "8.11.11",
78
78
  "@types/uuid": "9.0.8",
79
79
  "create-ts-index": "1.14.0",
80
80
  "del-cli": "5.1.0",
81
- "esbuild": "0.24.0",
81
+ "esbuild": "0.24.2",
82
82
  "eslint": "8.57.1",
83
83
  "graphql-request": "6.1.0",
84
84
  "jest": "29.7.0",
@@ -170,6 +170,8 @@ const VISITOR: Visitor<unknown, Dictionary<unknown>> = {
170
170
  switch (node.getOperatorToken().getKind()) {
171
171
  case SyntaxKind.EqualsEqualsEqualsToken:
172
172
  return staticEval(node.getLeft(), context) === staticEval(node.getRight(), context);
173
+ case SyntaxKind.ExclamationEqualsEqualsToken:
174
+ return staticEval(node.getLeft(), context) !== staticEval(node.getRight(), context);
173
175
  case SyntaxKind.BarBarToken:
174
176
  return staticEval(node.getLeft(), context) || staticEval(node.getRight(), context);
175
177
  default: