@n8n/db 1.20.1 → 1.21.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/build.tsbuildinfo +1 -1
- package/dist/entities/evaluation-config.ee.d.ts +16 -0
- package/dist/entities/evaluation-config.ee.js +69 -0
- package/dist/entities/evaluation-config.ee.js.map +1 -0
- package/dist/entities/index.d.ts +3 -1
- package/dist/entities/index.js +4 -1
- package/dist/entities/index.js.map +1 -1
- package/dist/entities/test-case-execution.ee.d.ts +1 -0
- package/dist/entities/test-case-execution.ee.js +4 -0
- package/dist/entities/test-case-execution.ee.js.map +1 -1
- package/dist/migrations/common/1777996709110-AddRunIndexToTestCaseExecution.d.ts +5 -0
- package/dist/migrations/common/1777996709110-AddRunIndexToTestCaseExecution.js +17 -0
- package/dist/migrations/common/1777996709110-AddRunIndexToTestCaseExecution.js.map +1 -0
- package/dist/migrations/common/1778100000000-CreateEvaluationConfig.d.ts +5 -0
- package/dist/migrations/common/1778100000000-CreateEvaluationConfig.js +22 -0
- package/dist/migrations/common/1778100000000-CreateEvaluationConfig.js.map +1 -0
- package/dist/migrations/common/1778100001000-AddWorkflowVersionToTestRun.d.ts +5 -0
- package/dist/migrations/common/1778100001000-AddWorkflowVersionToTestRun.js +17 -0
- package/dist/migrations/common/1778100001000-AddWorkflowVersionToTestRun.js.map +1 -0
- package/dist/migrations/common/1778100002000-AddEvaluationConfigColumnsToTestRun.d.ts +5 -0
- package/dist/migrations/common/1778100002000-AddEvaluationConfigColumnsToTestRun.js +25 -0
- package/dist/migrations/common/1778100002000-AddEvaluationConfigColumnsToTestRun.js.map +1 -0
- package/dist/migrations/common/1783000000000-CreateAgentTables.d.ts +5 -0
- package/dist/migrations/common/1783000000000-CreateAgentTables.js +59 -0
- package/dist/migrations/common/1783000000000-CreateAgentTables.js.map +1 -0
- package/dist/migrations/common/1783000000001-CreateAgentExecutionTables.d.ts +5 -0
- package/dist/migrations/common/1783000000001-CreateAgentExecutionTables.js +35 -0
- package/dist/migrations/common/1783000000001-CreateAgentExecutionTables.js.map +1 -0
- package/dist/migrations/common/1784000000000-CreateAgentObservationTables.d.ts +5 -0
- package/dist/migrations/common/1784000000000-CreateAgentObservationTables.js +24 -0
- package/dist/migrations/common/1784000000000-CreateAgentObservationTables.js.map +1 -0
- package/dist/migrations/postgresdb/index.js +16 -2
- package/dist/migrations/postgresdb/index.js.map +1 -1
- package/dist/migrations/sqlite/index.js +16 -2
- package/dist/migrations/sqlite/index.js.map +1 -1
- package/dist/repositories/credentials.repository.d.ts +1 -0
- package/dist/repositories/credentials.repository.js +11 -3
- package/dist/repositories/credentials.repository.js.map +1 -1
- package/dist/repositories/deployment-key.repository.d.ts +15 -0
- package/dist/repositories/deployment-key.repository.js +26 -0
- package/dist/repositories/deployment-key.repository.js.map +1 -1
- package/dist/repositories/evaluation-config.repository.d.ts +13 -0
- package/dist/repositories/evaluation-config.repository.js +62 -0
- package/dist/repositories/evaluation-config.repository.js.map +1 -0
- package/dist/repositories/execution.repository.js +6 -4
- package/dist/repositories/execution.repository.js.map +1 -1
- package/dist/repositories/index.d.ts +2 -1
- package/dist/repositories/index.js +3 -1
- package/dist/repositories/index.js.map +1 -1
- package/dist/repositories/test-case-execution.repository.ee.d.ts +3 -0
- package/dist/repositories/test-case-execution.repository.ee.js +16 -0
- package/dist/repositories/test-case-execution.repository.ee.js.map +1 -1
- package/package.json +11 -11
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n8n/db",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.21.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "src/index.ts",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist/**/*",
|
|
9
|
-
"
|
|
10
|
-
"
|
|
9
|
+
"LICENSE_EE.md",
|
|
10
|
+
"LICENSE.md"
|
|
11
11
|
],
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@n8n/typeorm": "0.3.20-16",
|
|
@@ -20,16 +20,16 @@
|
|
|
20
20
|
"uuid": "10.0.0",
|
|
21
21
|
"xss": "1.0.15",
|
|
22
22
|
"zod": "3.25.67",
|
|
23
|
-
"@n8n/api-types": "1.
|
|
24
|
-
"@n8n/backend-common": "1.
|
|
25
|
-
"@n8n/config": "2.19.1",
|
|
23
|
+
"@n8n/api-types": "1.21.0",
|
|
24
|
+
"@n8n/backend-common": "1.21.0",
|
|
26
25
|
"@n8n/constants": "0.23.0",
|
|
27
|
-
"@n8n/
|
|
26
|
+
"@n8n/config": "2.20.0",
|
|
27
|
+
"@n8n/decorators": "1.21.0",
|
|
28
28
|
"@n8n/di": "0.11.0",
|
|
29
|
-
"@n8n/permissions": "0.
|
|
30
|
-
"
|
|
31
|
-
"n8n-core": "2.
|
|
32
|
-
"n8n
|
|
29
|
+
"@n8n/permissions": "0.59.0",
|
|
30
|
+
"n8n-workflow": "2.21.0",
|
|
31
|
+
"n8n-core": "2.21.0",
|
|
32
|
+
"@n8n/utils": "1.30.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/lodash": "4.17.17",
|