@platformatic/db 3.0.0-alpha.6 → 3.0.0-alpha.8
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/package.json +15 -15
- package/schema.json +8 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/db",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.8",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"neostandard": "^0.12.0",
|
|
31
31
|
"openapi-types": "^12.1.3",
|
|
32
32
|
"split2": "^4.2.0",
|
|
33
|
-
"tsd": "^0.
|
|
33
|
+
"tsd": "^0.33.0",
|
|
34
34
|
"typescript": "^5.5.4",
|
|
35
35
|
"undici": "^7.0.0",
|
|
36
36
|
"vscode-json-languageservice": "^5.3.9",
|
|
@@ -66,18 +66,18 @@
|
|
|
66
66
|
"rfdc": "^1.3.1",
|
|
67
67
|
"rimraf": "^4.4.1",
|
|
68
68
|
"semgrator": "^0.3.0",
|
|
69
|
-
"@platformatic/basic": "3.0.0-alpha.
|
|
70
|
-
"@platformatic/db-core": "3.0.0-alpha.
|
|
71
|
-
"@platformatic/
|
|
72
|
-
"@platformatic/db-authorization": "3.0.0-alpha.
|
|
73
|
-
"@platformatic/
|
|
74
|
-
"@platformatic/
|
|
75
|
-
"@platformatic/sql-
|
|
76
|
-
"@platformatic/
|
|
77
|
-
"@platformatic/sql-json-schema-mapper": "3.0.0-alpha.
|
|
78
|
-
"@platformatic/sql-mapper": "3.0.0-alpha.
|
|
79
|
-
"@platformatic/sql-openapi": "3.0.0-alpha.
|
|
80
|
-
"@platformatic/telemetry": "3.0.0-alpha.
|
|
69
|
+
"@platformatic/basic": "3.0.0-alpha.8",
|
|
70
|
+
"@platformatic/db-core": "3.0.0-alpha.8",
|
|
71
|
+
"@platformatic/generators": "3.0.0-alpha.8",
|
|
72
|
+
"@platformatic/db-authorization": "3.0.0-alpha.8",
|
|
73
|
+
"@platformatic/service": "3.0.0-alpha.8",
|
|
74
|
+
"@platformatic/sql-events": "3.0.0-alpha.8",
|
|
75
|
+
"@platformatic/sql-graphql": "3.0.0-alpha.8",
|
|
76
|
+
"@platformatic/foundation": "3.0.0-alpha.8",
|
|
77
|
+
"@platformatic/sql-json-schema-mapper": "3.0.0-alpha.8",
|
|
78
|
+
"@platformatic/sql-mapper": "3.0.0-alpha.8",
|
|
79
|
+
"@platformatic/sql-openapi": "3.0.0-alpha.8",
|
|
80
|
+
"@platformatic/telemetry": "3.0.0-alpha.8"
|
|
81
81
|
},
|
|
82
82
|
"engines": {
|
|
83
83
|
"node": ">=22.18.0"
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"test": "node --test --test-reporter=cleaner-spec-reporter --test-concurrency=1 --test-timeout=2000000 test/*.test.js test/**/*.test.js",
|
|
87
87
|
"gen-schema": "node lib/schema.js > schema.json",
|
|
88
88
|
"gen-types": "json2ts > config.d.ts < schema.json",
|
|
89
|
-
"build": "
|
|
89
|
+
"build": "npm run gen-schema && npm run gen-types",
|
|
90
90
|
"lint": "eslint"
|
|
91
91
|
}
|
|
92
92
|
}
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/db/3.0.0-alpha.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/db/3.0.0-alpha.8.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Database Config",
|
|
5
5
|
"type": "object",
|
|
@@ -1472,6 +1472,13 @@
|
|
|
1472
1472
|
},
|
|
1473
1473
|
"additionalProperties": false
|
|
1474
1474
|
},
|
|
1475
|
+
"dependencies": {
|
|
1476
|
+
"type": "array",
|
|
1477
|
+
"items": {
|
|
1478
|
+
"type": "string"
|
|
1479
|
+
},
|
|
1480
|
+
"default": []
|
|
1481
|
+
},
|
|
1475
1482
|
"arguments": {
|
|
1476
1483
|
"type": "array",
|
|
1477
1484
|
"items": {
|