n8n-core 1.59.0 → 1.61.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/dist/InstanceSettings.d.ts +3 -0
- package/dist/InstanceSettings.js +9 -1
- package/dist/InstanceSettings.js.map +1 -1
- package/dist/NodeExecuteFunctions.js +5 -7
- package/dist/NodeExecuteFunctions.js.map +1 -1
- package/dist/PartialExecutionUtils/DirectedGraph.d.ts +42 -0
- package/dist/PartialExecutionUtils/DirectedGraph.js +180 -0
- package/dist/PartialExecutionUtils/DirectedGraph.js.map +1 -0
- package/dist/PartialExecutionUtils/cleanRunData.d.ts +3 -0
- package/dist/PartialExecutionUtils/cleanRunData.js +15 -0
- package/dist/PartialExecutionUtils/cleanRunData.js.map +1 -0
- package/dist/PartialExecutionUtils/findCycles.d.ts +2 -0
- package/dist/PartialExecutionUtils/findCycles.js +7 -0
- package/dist/PartialExecutionUtils/findCycles.js.map +1 -0
- package/dist/PartialExecutionUtils/findStartNodes.d.ts +4 -0
- package/dist/PartialExecutionUtils/findStartNodes.js +57 -0
- package/dist/PartialExecutionUtils/findStartNodes.js.map +1 -0
- package/dist/PartialExecutionUtils/findSubgraph.d.ts +3 -0
- package/dist/PartialExecutionUtils/findSubgraph.js +60 -0
- package/dist/PartialExecutionUtils/findSubgraph.js.map +1 -0
- package/dist/PartialExecutionUtils/findTriggerForPartialExecution.d.ts +2 -0
- package/dist/PartialExecutionUtils/findTriggerForPartialExecution.js +56 -0
- package/dist/PartialExecutionUtils/findTriggerForPartialExecution.js.map +1 -0
- package/dist/PartialExecutionUtils/getIncomingData.d.ts +2 -0
- package/dist/PartialExecutionUtils/getIncomingData.js +34 -0
- package/dist/PartialExecutionUtils/getIncomingData.js.map +1 -0
- package/dist/PartialExecutionUtils/getSourceDataGroups.d.ts +3 -0
- package/dist/PartialExecutionUtils/getSourceDataGroups.js +43 -0
- package/dist/PartialExecutionUtils/getSourceDataGroups.js.map +1 -0
- package/dist/PartialExecutionUtils/index.d.ts +6 -0
- package/dist/PartialExecutionUtils/index.js +16 -0
- package/dist/PartialExecutionUtils/index.js.map +1 -0
- package/dist/PartialExecutionUtils/recreateNodeExecutionStack.d.ts +7 -0
- package/dist/PartialExecutionUtils/recreateNodeExecutionStack.js +125 -0
- package/dist/PartialExecutionUtils/recreateNodeExecutionStack.js.map +1 -0
- package/dist/WorkflowExecute.d.ts +1 -0
- package/dist/WorkflowExecute.js +42 -1
- package/dist/WorkflowExecute.js.map +1 -1
- package/dist/build.tsbuildinfo +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +10 -9
package/dist/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export * from './Constants';
|
|
|
9
9
|
export * from './Credentials';
|
|
10
10
|
export * from './DirectoryLoader';
|
|
11
11
|
export * from './Interfaces';
|
|
12
|
-
export { InstanceSettings } from './InstanceSettings';
|
|
12
|
+
export { InstanceSettings, InstanceType } from './InstanceSettings';
|
|
13
13
|
export * from './NodeExecuteFunctions';
|
|
14
14
|
export * from './WorkflowExecute';
|
|
15
15
|
export { NodeExecuteFunctions };
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6EAA+D;AAetD,oDAAoB;AAb7B,2CAAyB;AACzB,oDAAkC;AAClC,kEAAgD;AAChD,qDAAmC;AACnC,mCAAkC;AAAzB,gGAAA,MAAM,OAAA;AACf,gDAA8B;AAC9B,8CAA4B;AAC5B,gDAA8B;AAC9B,oDAAkC;AAClC,+CAA6B;AAC7B,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6EAA+D;AAetD,oDAAoB;AAb7B,2CAAyB;AACzB,oDAAkC;AAClC,kEAAgD;AAChD,qDAAmC;AACnC,mCAAkC;AAAzB,gGAAA,MAAM,OAAA;AACf,gDAA8B;AAC9B,8CAA4B;AAC5B,gDAA8B;AAC9B,oDAAkC;AAClC,+CAA6B;AAC7B,uDAAoE;AAA3D,oHAAA,gBAAgB,OAAA;AACzB,yDAAuC;AACvC,oDAAkC;AAElC,2CAAyB;AACzB,+EAA0E;AAAjE,4HAAA,kBAAkB,OAAA;AAE3B,4CAA2E;AAAlE,8GAAA,YAAY,OAAyB;AAC9C,sDAAoC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.61.0",
|
|
4
4
|
"description": "Core functionality of n8n",
|
|
5
5
|
"main": "dist/index",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"files": [
|
|
14
14
|
"dist",
|
|
15
15
|
"bin",
|
|
16
|
-
"
|
|
17
|
-
"
|
|
16
|
+
"LICENSE.md",
|
|
17
|
+
"LICENSE_EE.md"
|
|
18
18
|
],
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@types/aws4": "^1.5.1",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@types/express": "^4.17.21",
|
|
23
23
|
"@types/lodash": "^4.14.195",
|
|
24
24
|
"@types/mime-types": "^2.1.0",
|
|
25
|
-
"@types/uuid": "^
|
|
25
|
+
"@types/uuid": "^10.0.0",
|
|
26
26
|
"@types/xml2js": "^0.4.14"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"file-type": "16.5.4",
|
|
35
35
|
"form-data": "4.0.0",
|
|
36
36
|
"lodash": "4.17.21",
|
|
37
|
-
"@langchain/core": "0.
|
|
37
|
+
"@langchain/core": "0.3.3",
|
|
38
38
|
"luxon": "3.4.4",
|
|
39
39
|
"mime-types": "2.1.35",
|
|
40
40
|
"oauth-1.0a": "2.2.6",
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"qs": "6.11.0",
|
|
44
44
|
"ssh2": "1.15.0",
|
|
45
45
|
"typedi": "0.10.0",
|
|
46
|
-
"uuid": "
|
|
46
|
+
"uuid": "10.0.0",
|
|
47
47
|
"xml2js": "0.6.2",
|
|
48
48
|
"zod": "3.23.8",
|
|
49
|
-
"@n8n/client-oauth2": "0.
|
|
50
|
-
"n8n-workflow": "1.
|
|
49
|
+
"@n8n/client-oauth2": "0.21.0",
|
|
50
|
+
"n8n-workflow": "1.60.0"
|
|
51
51
|
},
|
|
52
52
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
53
53
|
"homepage": "https://n8n.io",
|
|
@@ -64,7 +64,8 @@
|
|
|
64
64
|
"typecheck": "tsc --noEmit",
|
|
65
65
|
"build": "tsc -p tsconfig.build.json",
|
|
66
66
|
"dev": "pnpm watch",
|
|
67
|
-
"format": "
|
|
67
|
+
"format": "biome format --write .",
|
|
68
|
+
"format:check": "biome ci .",
|
|
68
69
|
"lint": "eslint . --quiet",
|
|
69
70
|
"lintfix": "eslint . --fix",
|
|
70
71
|
"watch": "tsc -p tsconfig.build.json --watch",
|