@n8n/db 1.27.2 → 1.28.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/execution-entity.d.ts +2 -1
- package/dist/entities/execution-entity.js +4 -0
- package/dist/entities/execution-entity.js.map +1 -1
- package/dist/entities/types-db.d.ts +3 -1
- package/dist/entities/types-db.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/migrations/common/1784000000033-AddBinaryDataSizeBytesToExecutionEntity.d.ts +5 -0
- package/dist/migrations/common/1784000000033-AddBinaryDataSizeBytesToExecutionEntity.js +20 -0
- package/dist/migrations/common/1784000000033-AddBinaryDataSizeBytesToExecutionEntity.js.map +1 -0
- package/dist/migrations/common/1784000000034-AllowAzureStoredAt.d.ts +4 -0
- package/dist/migrations/common/1784000000034-AllowAzureStoredAt.js +21 -0
- package/dist/migrations/common/1784000000034-AllowAzureStoredAt.js.map +1 -0
- package/dist/migrations/common/1784000000035-AddUniqueAgentFileNames.d.ts +5 -0
- package/dist/migrations/common/1784000000035-AddUniqueAgentFileNames.js +15 -0
- package/dist/migrations/common/1784000000035-AddUniqueAgentFileNames.js.map +1 -0
- package/dist/migrations/common/1784000000036-CreateInstanceAiThreadGrantTable.d.ts +5 -0
- package/dist/migrations/common/1784000000036-CreateInstanceAiThreadGrantTable.js +29 -0
- package/dist/migrations/common/1784000000036-CreateInstanceAiThreadGrantTable.js.map +1 -0
- package/dist/migrations/postgresdb/index.js +8 -0
- package/dist/migrations/postgresdb/index.js.map +1 -1
- package/dist/migrations/sqlite/1784000000034-AllowAzureStoredAt.d.ts +4 -0
- package/dist/migrations/sqlite/1784000000034-AllowAzureStoredAt.js +12 -0
- package/dist/migrations/sqlite/1784000000034-AllowAzureStoredAt.js.map +1 -0
- package/dist/migrations/sqlite/index.js +8 -0
- package/dist/migrations/sqlite/index.js.map +1 -1
- package/dist/repositories/execution.repository.js +5 -1
- package/dist/repositories/execution.repository.js.map +1 -1
- package/dist/repositories/workflow-publication-outbox.repository.d.ts +7 -0
- package/dist/repositories/workflow-publication-outbox.repository.js +106 -19
- package/dist/repositories/workflow-publication-outbox.repository.js.map +1 -1
- package/dist/repositories/workflow.repository.d.ts +7 -2
- package/dist/repositories/workflow.repository.js +70 -14
- package/dist/repositories/workflow.repository.js.map +1 -1
- package/dist/utils/is-unique-constraint-error.d.ts +1 -0
- package/dist/utils/is-unique-constraint-error.js +20 -0
- package/dist/utils/is-unique-constraint-error.js.map +1 -0
- package/package.json +13 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n8n/db",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.28.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "src/index.ts",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -20,27 +20,28 @@
|
|
|
20
20
|
"uuid": "11.1.1",
|
|
21
21
|
"xss": "1.0.15",
|
|
22
22
|
"zod": "3.25.67",
|
|
23
|
-
"@n8n/
|
|
24
|
-
"@n8n/
|
|
25
|
-
"@n8n/
|
|
23
|
+
"@n8n/config": "2.26.0",
|
|
24
|
+
"@n8n/api-types": "1.28.0",
|
|
25
|
+
"@n8n/constants": "0.28.0",
|
|
26
|
+
"@n8n/backend-common": "1.28.0",
|
|
26
27
|
"@n8n/di": "0.14.0",
|
|
27
|
-
"@n8n/permissions": "0.
|
|
28
|
-
"@n8n/
|
|
29
|
-
"@n8n/
|
|
30
|
-
"
|
|
31
|
-
"n8n-workflow": "2.
|
|
32
|
-
"n8n-core": "2.27.2"
|
|
28
|
+
"@n8n/permissions": "0.65.0",
|
|
29
|
+
"@n8n/decorators": "1.28.0",
|
|
30
|
+
"@n8n/utils": "1.36.0",
|
|
31
|
+
"n8n-core": "2.28.0",
|
|
32
|
+
"n8n-workflow": "2.28.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/lodash": "4.17.17",
|
|
36
36
|
"@testcontainers/postgresql": "^11.13.0",
|
|
37
37
|
"@vitest/coverage-v8": "4.1.1",
|
|
38
38
|
"express": "5.1.0",
|
|
39
|
+
"testcontainers": "^11.13.0",
|
|
39
40
|
"typescript": "6.0.2",
|
|
40
41
|
"vitest": "^4.1.1",
|
|
41
42
|
"vitest-mock-extended": "^3.1.0",
|
|
42
|
-
"@n8n/
|
|
43
|
-
"@n8n/
|
|
43
|
+
"@n8n/typescript-config": "1.6.0",
|
|
44
|
+
"@n8n/vitest-config": "1.15.0"
|
|
44
45
|
},
|
|
45
46
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
46
47
|
"homepage": "https://n8n.io",
|