n8n 2.12.1 → 2.12.3
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/build.tsbuildinfo +1 -1
- package/dist/commands/import/entities.d.ts +3 -0
- package/dist/commands/import/entities.js +9 -1
- package/dist/commands/import/entities.js.map +1 -1
- package/dist/scaling/multi-main-setup.ee.js +2 -1
- package/dist/scaling/multi-main-setup.ee.js.map +1 -1
- package/dist/services/import.service.d.ts +1 -1
- package/dist/services/import.service.js +9 -5
- package/dist/services/import.service.js.map +1 -1
- package/dist/task-runners/task-broker/auth/task-broker-auth.controller.d.ts +5 -3
- package/dist/task-runners/task-broker/auth/task-broker-auth.controller.js +17 -12
- package/dist/task-runners/task-broker/auth/task-broker-auth.controller.js.map +1 -1
- package/dist/task-runners/task-broker/auth/task-broker-auth.schema.d.ts +1 -0
- package/dist/task-runners/task-broker/auth/task-broker-auth.schema.js +5 -1
- package/dist/task-runners/task-broker/auth/task-broker-auth.schema.js.map +1 -1
- package/dist/task-runners/task-broker/task-broker-server.d.ts +5 -1
- package/dist/task-runners/task-broker/task-broker-server.js +71 -28
- package/dist/task-runners/task-broker/task-broker-server.js.map +1 -1
- package/dist/task-runners/task-broker/task-broker-ws-server.d.ts +2 -2
- package/dist/task-runners/task-broker/task-broker-ws-server.js +4 -4
- package/package.json +11 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n",
|
|
3
|
-
"version": "2.12.
|
|
3
|
+
"version": "2.12.3",
|
|
4
4
|
"description": "n8n Workflow Automation Tool",
|
|
5
5
|
"main": "dist/index",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"bin",
|
|
23
23
|
"templates",
|
|
24
24
|
"dist",
|
|
25
|
-
"
|
|
26
|
-
"
|
|
25
|
+
"LICENSE.md",
|
|
26
|
+
"LICENSE_EE.md"
|
|
27
27
|
],
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@redocly/cli": "^1.28.5",
|
|
@@ -147,23 +147,23 @@
|
|
|
147
147
|
"@n8n/api-types": "1.12.0",
|
|
148
148
|
"@n8n/ai-workflow-builder": "1.12.0",
|
|
149
149
|
"@n8n/backend-common": "1.12.0",
|
|
150
|
-
"@n8n/chat-hub": "1.5.0",
|
|
151
150
|
"@n8n/client-oauth2": "1.0.0",
|
|
152
|
-
"@n8n/
|
|
151
|
+
"@n8n/config": "2.11.0",
|
|
152
|
+
"@n8n/chat-hub": "1.5.0",
|
|
153
153
|
"@n8n/db": "1.12.0",
|
|
154
|
-
"@n8n/di": "0.10.0",
|
|
155
154
|
"@n8n/decorators": "1.12.0",
|
|
155
|
+
"@n8n/di": "0.10.0",
|
|
156
156
|
"@n8n/errors": "0.6.0",
|
|
157
|
-
"@n8n/syslog-client": "1.2.0",
|
|
158
157
|
"@n8n/n8n-nodes-langchain": "2.12.0",
|
|
158
|
+
"@n8n/constants": "0.19.0",
|
|
159
159
|
"@n8n/permissions": "0.53.0",
|
|
160
|
-
"@n8n/
|
|
160
|
+
"@n8n/syslog-client": "1.2.0",
|
|
161
161
|
"@n8n/utils": "1.25.0",
|
|
162
|
-
"@n8n/config": "2.11.0",
|
|
163
|
-
"n8n-editor-ui": "2.12.1",
|
|
164
162
|
"n8n-core": "2.12.0",
|
|
165
|
-
"n8n-
|
|
163
|
+
"@n8n/task-runner": "2.12.1",
|
|
164
|
+
"n8n-editor-ui": "2.12.2",
|
|
166
165
|
"n8n-nodes-base": "2.12.0",
|
|
166
|
+
"n8n-workflow": "2.12.0",
|
|
167
167
|
"@n8n/workflow-sdk": "0.5.0"
|
|
168
168
|
},
|
|
169
169
|
"license": "SEE LICENSE IN LICENSE.md",
|