@n8n/db 1.15.0 → 1.16.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/types-db.d.ts +1 -1
- package/dist/entities/types-db.js +1 -1
- package/dist/entities/types-db.js.map +1 -1
- package/dist/migrations/common/1774854660000-CreateInstanceVersionHistoryTable.d.ts +5 -0
- package/dist/migrations/common/1774854660000-CreateInstanceVersionHistoryTable.js +13 -0
- package/dist/migrations/common/1774854660000-CreateInstanceVersionHistoryTable.js.map +1 -0
- package/dist/migrations/common/1775000000000-CreateInstanceAiTables.d.ts +5 -0
- package/dist/migrations/common/1775000000000-CreateInstanceAiTables.js +69 -0
- package/dist/migrations/common/1775000000000-CreateInstanceAiTables.js.map +1 -0
- package/dist/migrations/common/1775116241000-CreateTokenExchangeJtiTable.d.ts +5 -0
- package/dist/migrations/common/1775116241000-CreateTokenExchangeJtiTable.js +14 -0
- package/dist/migrations/common/1775116241000-CreateTokenExchangeJtiTable.js.map +1 -0
- package/dist/migrations/postgresdb/index.js +6 -0
- package/dist/migrations/postgresdb/index.js.map +1 -1
- package/dist/migrations/sqlite/index.js +6 -0
- package/dist/migrations/sqlite/index.js.map +1 -1
- package/dist/repositories/clock.repository.d.ts +8 -0
- package/dist/repositories/clock.repository.js +41 -0
- package/dist/repositories/clock.repository.js.map +1 -0
- package/dist/repositories/execution.repository.d.ts +1 -1
- package/dist/repositories/execution.repository.js +9 -15
- package/dist/repositories/execution.repository.js.map +1 -1
- package/dist/repositories/index.d.ts +1 -0
- package/dist/repositories/index.js +3 -1
- package/dist/repositories/index.js.map +1 -1
- package/dist/repositories/project.repository.js +7 -12
- package/dist/repositories/project.repository.js.map +1 -1
- package/package.json +13 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n8n/db",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "src/index.ts",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@n8n/typeorm": "0.3.20-16",
|
|
14
14
|
"class-validator": "0.14.0",
|
|
15
|
-
"flatted": "3.2
|
|
15
|
+
"flatted": "3.4.2",
|
|
16
16
|
"lodash": "4.17.23",
|
|
17
17
|
"nanoid": "3.3.8",
|
|
18
18
|
"p-lazy": "3.1.0",
|
|
@@ -20,21 +20,21 @@
|
|
|
20
20
|
"uuid": "10.0.0",
|
|
21
21
|
"xss": "1.0.15",
|
|
22
22
|
"zod": "3.25.67",
|
|
23
|
-
"@n8n/
|
|
24
|
-
"@n8n/
|
|
25
|
-
"@n8n/
|
|
26
|
-
"@n8n/decorators": "1.
|
|
27
|
-
"@n8n/permissions": "0.
|
|
28
|
-
"n8n-
|
|
29
|
-
"@n8n/
|
|
30
|
-
"n8n-
|
|
31
|
-
"@n8n/
|
|
32
|
-
"@n8n/
|
|
23
|
+
"@n8n/backend-common": "1.16.0",
|
|
24
|
+
"@n8n/constants": "0.20.0",
|
|
25
|
+
"@n8n/config": "2.15.0",
|
|
26
|
+
"@n8n/decorators": "1.16.0",
|
|
27
|
+
"@n8n/permissions": "0.56.0",
|
|
28
|
+
"n8n-core": "2.16.0",
|
|
29
|
+
"@n8n/utils": "1.27.0",
|
|
30
|
+
"n8n-workflow": "2.16.0",
|
|
31
|
+
"@n8n/api-types": "1.16.0",
|
|
32
|
+
"@n8n/di": "0.10.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/lodash": "4.17.17",
|
|
36
36
|
"express": "5.1.0",
|
|
37
|
-
"@n8n/typescript-config": "1.
|
|
37
|
+
"@n8n/typescript-config": "1.4.0"
|
|
38
38
|
},
|
|
39
39
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
40
40
|
"homepage": "https://n8n.io",
|