@skriptfabrik/n8n-nodes-fulfillmenttools 0.1.1 → 0.1.2

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/.eslintignore ADDED
@@ -0,0 +1 @@
1
+ node_modules
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## 0.1.2 (2024-07-05)
2
+
3
+
4
+ ### 🩹 Fixes
5
+
6
+ - **fulfillmenttools:** regenerate API definitions with openapi-typescript 7.0.0 (N8N-6)
7
+
8
+ - **fulfillmenttools:** bump n8n-workflow version to 1.46.0
9
+
10
+
11
+ ### ❤️ Thank You
12
+
13
+ - Marco Spengler
14
+
1
15
  ## 0.1.1 (2024-06-18)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skriptfabrik/n8n-nodes-fulfillmenttools",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "fulfillmenttools nodes for n8n",
5
5
  "keywords": [
6
6
  "fulfillmenttools",
@@ -35,6 +35,6 @@
35
35
  "tslib": "^2.6.2"
36
36
  },
37
37
  "peerDependencies": {
38
- "n8n-workflow": "1.43.0"
38
+ "n8n-workflow": "1.46.0"
39
39
  }
40
40
  }
package/project.json CHANGED
@@ -21,15 +21,14 @@
21
21
  "link": {
22
22
  "executor": "nx:run-commands",
23
23
  "options": {
24
- "cwd": "dist/nodes/fulfillmenttools",
25
- "command": "npm link --no-audit"
24
+ "command": "node tools/scripts/link.mjs {projectName}"
26
25
  },
27
26
  "dependsOn": ["build"]
28
27
  },
29
28
  "install": {
30
29
  "executor": "nx:run-commands",
31
30
  "options": {
32
- "command": "node tools/scripts/install.mjs n8n-nodes-fulfillmenttools"
31
+ "command": "node tools/scripts/install.mjs {projectName}"
33
32
  },
34
33
  "dependsOn": ["link"]
35
34
  }