n8n 0.181.2 → 0.182.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/src/Interfaces.d.ts +1 -2
- package/dist/src/PublicApi/index.js +16 -21
- package/dist/src/PublicApi/index.js.map +1 -1
- package/dist/src/PublicApi/v1/handlers/credentials/credentials.handler.d.ts +7 -4
- package/dist/src/PublicApi/v1/handlers/credentials/credentials.handler.js +12 -17
- package/dist/src/PublicApi/v1/handlers/credentials/credentials.handler.js.map +1 -1
- package/dist/src/PublicApi/v1/handlers/credentials/credentials.middleware.d.ts +4 -3
- package/dist/src/PublicApi/v1/handlers/credentials/credentials.middleware.js +10 -12
- package/dist/src/PublicApi/v1/handlers/credentials/credentials.middleware.js.map +1 -1
- package/dist/src/PublicApi/v1/handlers/credentials/credentials.service.d.ts +2 -1
- package/dist/src/PublicApi/v1/handlers/credentials/credentials.service.js.map +1 -1
- package/dist/src/PublicApi/v1/handlers/executions/executions.handler.d.ts +4 -4
- package/dist/src/PublicApi/v1/handlers/executions/executions.handler.js +13 -27
- package/dist/src/PublicApi/v1/handlers/executions/executions.handler.js.map +1 -1
- package/dist/src/PublicApi/v1/handlers/executions/executions.service.d.ts +2 -2
- package/dist/src/PublicApi/v1/handlers/executions/executions.service.js +7 -10
- package/dist/src/PublicApi/v1/handlers/executions/executions.service.js.map +1 -1
- package/dist/src/PublicApi/v1/handlers/workflows/workflows.handler.d.ts +8 -8
- package/dist/src/PublicApi/v1/handlers/workflows/workflows.handler.js +23 -35
- package/dist/src/PublicApi/v1/handlers/workflows/workflows.handler.js.map +1 -1
- package/dist/src/PublicApi/v1/handlers/workflows/workflows.service.d.ts +1 -1
- package/dist/src/PublicApi/v1/handlers/workflows/workflows.service.js +19 -28
- package/dist/src/PublicApi/v1/handlers/workflows/workflows.service.js.map +1 -1
- package/dist/src/PublicApi/v1/shared/middlewares/global.middleware.d.ts +4 -5
- package/dist/src/PublicApi/v1/shared/middlewares/global.middleware.js +6 -8
- package/dist/src/PublicApi/v1/shared/middlewares/global.middleware.js.map +1 -1
- package/dist/src/PublicApi/v1/shared/services/pagination.service.js.map +1 -1
- package/dist/test/integration/publicApi/credentials.test.js +1 -4
- package/dist/test/integration/publicApi/credentials.test.js.map +1 -1
- package/dist/test/integration/publicApi/executions.test.js +34 -26
- package/dist/test/integration/publicApi/executions.test.js.map +1 -1
- package/dist/test/integration/publicApi/workflows.test.js +39 -41
- package/dist/test/integration/publicApi/workflows.test.js.map +1 -1
- package/dist/test/integration/shared/testDb.d.ts +1 -1
- package/dist/test/integration/shared/testDb.js +6 -9
- package/dist/test/integration/shared/testDb.js.map +1 -1
- package/dist/test/integration/shared/utils.d.ts +2 -2
- package/dist/test/integration/shared/utils.js +26 -19
- package/dist/test/integration/shared/utils.js.map +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.182.0",
|
|
4
4
|
"description": "n8n Workflow Automation Tool",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"homepage": "https://n8n.io",
|
|
@@ -19,9 +19,7 @@
|
|
|
19
19
|
"bin": "n8n"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
|
-
"build": "
|
|
23
|
-
"build:default": "tsc && cp -r ./src/UserManagement/email/templates ./dist/src/UserManagement/email && cp ./src/PublicApi/swaggerTheme.css ./dist/src/PublicApi/swaggerTheme.css; find ./src/PublicApi -iname 'openapi.yml' -exec swagger-cli bundle {} --type yaml --outfile \"./dist\"/{} \\;",
|
|
24
|
-
"build:windows": "tsc && xcopy /E /I src\\UserManagement\\email\\templates dist\\src\\UserManagement\\email\\templates",
|
|
22
|
+
"build": "node scripts/build.mjs",
|
|
25
23
|
"dev": "concurrently -k -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold\" \"npm run watch\" \"nodemon\"",
|
|
26
24
|
"format": "cd ../.. && node_modules/prettier/bin-prettier.js packages/cli/**/**.ts --write",
|
|
27
25
|
"lint": "cd ../.. && node_modules/eslint/bin/eslint.js packages/cli",
|
|
@@ -32,7 +30,7 @@
|
|
|
32
30
|
"start:default": "cd bin && ./n8n",
|
|
33
31
|
"start:windows": "cd bin && n8n",
|
|
34
32
|
"test": "npm run test:sqlite",
|
|
35
|
-
"test:sqlite": "export N8N_LOG_LEVEL=silent; export DB_TYPE=sqlite; jest",
|
|
33
|
+
"test:sqlite": "export N8N_LOG_LEVEL=silent; export DB_TYPE=sqlite; jest --forceExit",
|
|
36
34
|
"test:postgres": "export N8N_LOG_LEVEL=silent; export DB_TYPE=postgresdb; jest",
|
|
37
35
|
"test:postgres:alt-schema": "export DB_POSTGRESDB_SCHEMA=alt_schema; npm run test:postgres",
|
|
38
36
|
"test:mysql": "export N8N_LOG_LEVEL=silent; export DB_TYPE=mysqldb; jest",
|
|
@@ -100,6 +98,7 @@
|
|
|
100
98
|
"@rudderstack/rudder-sdk-node": "1.0.6",
|
|
101
99
|
"@types/json-diff": "^0.5.1",
|
|
102
100
|
"@types/jsonwebtoken": "^8.5.2",
|
|
101
|
+
"@types/shelljs": "^0.8.11",
|
|
103
102
|
"@types/swagger-ui-express": "^4.1.3",
|
|
104
103
|
"@types/yamljs": "^0.2.31",
|
|
105
104
|
"basic-auth": "^2.0.1",
|
|
@@ -131,10 +130,10 @@
|
|
|
131
130
|
"localtunnel": "^2.0.0",
|
|
132
131
|
"lodash": "^4.17.21",
|
|
133
132
|
"mysql2": "~2.3.0",
|
|
134
|
-
"n8n-core": "~0.
|
|
135
|
-
"n8n-editor-ui": "~0.
|
|
136
|
-
"n8n-nodes-base": "~0.
|
|
137
|
-
"n8n-workflow": "~0.
|
|
133
|
+
"n8n-core": "~0.122.0",
|
|
134
|
+
"n8n-editor-ui": "~0.148.0",
|
|
135
|
+
"n8n-nodes-base": "~0.180.0",
|
|
136
|
+
"n8n-workflow": "~0.104.0",
|
|
138
137
|
"nodemailer": "^6.7.1",
|
|
139
138
|
"oauth-1.0a": "^2.2.6",
|
|
140
139
|
"open": "^7.0.0",
|
|
@@ -146,6 +145,7 @@
|
|
|
146
145
|
"pg": "^8.3.0",
|
|
147
146
|
"prom-client": "^13.1.0",
|
|
148
147
|
"request-promise-native": "^1.0.7",
|
|
148
|
+
"shelljs": "^0.8.5",
|
|
149
149
|
"sqlite3": "^5.0.2",
|
|
150
150
|
"sse-channel": "^3.1.1",
|
|
151
151
|
"swagger-ui-express": "^4.3.0",
|