n8n-core 1.60.0 → 1.62.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/bin/generate-ui-types +30 -12
- package/dist/ActiveWorkflows.d.ts +1 -1
- package/dist/ActiveWorkflows.js +1 -1
- package/dist/ActiveWorkflows.js.map +1 -1
- package/dist/Agent/index.d.ts +2 -0
- package/dist/Agent/index.js +10 -0
- package/dist/Agent/index.js.map +1 -0
- package/dist/BinaryData/BinaryData.service.d.ts +1 -1
- package/dist/BinaryData/BinaryData.service.js +2 -2
- package/dist/BinaryData/BinaryData.service.js.map +1 -1
- package/dist/BinaryData/FileSystem.manager.js +1 -1
- package/dist/BinaryData/FileSystem.manager.js.map +1 -1
- package/dist/BinaryData/ObjectStore.manager.d.ts +1 -1
- package/dist/BinaryData/ObjectStore.manager.js.map +1 -1
- package/dist/BinaryData/utils.js +1 -1
- package/dist/BinaryData/utils.js.map +1 -1
- package/dist/Cipher.js +1 -1
- package/dist/Cipher.js.map +1 -1
- package/dist/Credentials.js +1 -1
- package/dist/Credentials.js.map +1 -1
- package/dist/DirectoryLoader.d.ts +2 -2
- package/dist/DirectoryLoader.js +13 -7
- package/dist/DirectoryLoader.js.map +1 -1
- package/dist/ExecutionMetadata.js.map +1 -1
- package/dist/InstanceSettings.js +3 -3
- package/dist/InstanceSettings.js.map +1 -1
- package/dist/NodeExecuteFunctions.js +20 -11
- package/dist/NodeExecuteFunctions.js.map +1 -1
- package/dist/ObjectStore/ObjectStore.service.ee.d.ts +1 -1
- package/dist/ObjectStore/ObjectStore.service.ee.js +3 -3
- package/dist/ObjectStore/ObjectStore.service.ee.js.map +1 -1
- package/dist/PartialExecutionUtils/DirectedGraph.d.ts +48 -0
- package/dist/PartialExecutionUtils/DirectedGraph.js +216 -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 +45 -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/SSHClientsManager.d.ts +1 -1
- package/dist/SSHClientsManager.js +2 -2
- package/dist/SSHClientsManager.js.map +1 -1
- package/dist/ScheduledTaskManager.js +1 -1
- package/dist/ScheduledTaskManager.js.map +1 -1
- package/dist/WorkflowExecute.d.ts +2 -1
- package/dist/WorkflowExecute.js +43 -2
- package/dist/WorkflowExecute.js.map +1 -1
- package/dist/build.tsbuildinfo +1 -1
- package/dist/errors/invalid-mode.error.js.map +1 -1
- package/package.json +5 -5
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"invalid-mode.error.js","sourceRoot":"","sources":["../../src/errors/invalid-mode.error.ts"],"names":[],"mappings":";;;AAAA,+CAAgD;
|
|
1
|
+
{"version":3,"file":"invalid-mode.error.js","sourceRoot":"","sources":["../../src/errors/invalid-mode.error.ts"],"names":[],"mappings":";;;AAAA,+CAAgD;AAEhD,+CAAmD;AAEnD,MAAa,gBAAiB,SAAQ,+BAAgB;IACrD;QACC,KAAK,CAAC,0CAA0C,oBAAY,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IAC5E,CAAC;CACD;AAJD,4CAIC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.62.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_EE.md",
|
|
17
|
+
"LICENSE.md"
|
|
18
18
|
],
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@types/aws4": "^1.5.1",
|
|
@@ -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",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"xml2js": "0.6.2",
|
|
48
48
|
"zod": "3.23.8",
|
|
49
49
|
"@n8n/client-oauth2": "0.21.0",
|
|
50
|
-
"n8n-workflow": "1.
|
|
50
|
+
"n8n-workflow": "1.61.0"
|
|
51
51
|
},
|
|
52
52
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
53
53
|
"homepage": "https://n8n.io",
|