@platformatic/db 2.70.0 → 2.71.0-alpha.1
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/config.d.ts +1 -0
- package/package.json +18 -18
- package/schema.json +13 -1
package/config.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/db",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.71.0-alpha.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -73,25 +73,25 @@
|
|
|
73
73
|
"rfdc": "^1.3.1",
|
|
74
74
|
"rimraf": "^4.4.1",
|
|
75
75
|
"semgrator": "^0.3.0",
|
|
76
|
-
"@platformatic/config": "2.
|
|
77
|
-
"@platformatic/db-authorization": "2.
|
|
78
|
-
"@platformatic/db-core": "2.
|
|
79
|
-
"@platformatic/generators": "2.
|
|
80
|
-
"@platformatic/
|
|
81
|
-
"@platformatic/sql-
|
|
82
|
-
"@platformatic/sql-
|
|
83
|
-
"@platformatic/
|
|
84
|
-
"@platformatic/sql-
|
|
85
|
-
"@platformatic/sql-
|
|
86
|
-
"@platformatic/
|
|
87
|
-
"@platformatic/
|
|
88
|
-
"@platformatic/
|
|
76
|
+
"@platformatic/config": "2.71.0-alpha.1",
|
|
77
|
+
"@platformatic/db-authorization": "2.71.0-alpha.1",
|
|
78
|
+
"@platformatic/db-core": "2.71.0-alpha.1",
|
|
79
|
+
"@platformatic/generators": "2.71.0-alpha.1",
|
|
80
|
+
"@platformatic/service": "2.71.0-alpha.1",
|
|
81
|
+
"@platformatic/sql-graphql": "2.71.0-alpha.1",
|
|
82
|
+
"@platformatic/sql-events": "2.71.0-alpha.1",
|
|
83
|
+
"@platformatic/sql-json-schema-mapper": "2.71.0-alpha.1",
|
|
84
|
+
"@platformatic/sql-openapi": "2.71.0-alpha.1",
|
|
85
|
+
"@platformatic/sql-mapper": "2.71.0-alpha.1",
|
|
86
|
+
"@platformatic/telemetry": "2.71.0-alpha.1",
|
|
87
|
+
"@platformatic/ts-compiler": "2.71.0-alpha.1",
|
|
88
|
+
"@platformatic/utils": "2.71.0-alpha.1"
|
|
89
89
|
},
|
|
90
90
|
"scripts": {
|
|
91
|
-
"test": "pnpm run lint && borp -T --concurrency=1 --timeout=
|
|
92
|
-
"test:postgresql": "DB=postgresql borp -T --concurrency=1 --timeout=
|
|
93
|
-
"test:mariadb": "DB=mariadb borp -T --concurrency=1 --timeout=
|
|
94
|
-
"test:mysql": "DB=mysql borp -T --concurrency=1 --timeout=
|
|
91
|
+
"test": "pnpm run lint && borp -T --concurrency=1 --timeout=1200000 && tsd ",
|
|
92
|
+
"test:postgresql": "DB=postgresql borp -T --concurrency=1 --timeout=1200000",
|
|
93
|
+
"test:mariadb": "DB=mariadb borp -T --concurrency=1 --timeout=1200000",
|
|
94
|
+
"test:mysql": "DB=mysql borp -T --concurrency=1 --timeout=1200000",
|
|
95
95
|
"gen-schema": "node lib/schema.js > schema.json",
|
|
96
96
|
"gen-types": "json2ts > config.d.ts < schema.json",
|
|
97
97
|
"build": "pnpm run gen-schema && pnpm run gen-types",
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/db/2.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/db/2.71.0-alpha.1.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic DB",
|
|
5
5
|
"type": "object",
|
|
@@ -2377,6 +2377,18 @@
|
|
|
2377
2377
|
],
|
|
2378
2378
|
"default": 300000
|
|
2379
2379
|
},
|
|
2380
|
+
"messagingTimeout": {
|
|
2381
|
+
"anyOf": [
|
|
2382
|
+
{
|
|
2383
|
+
"type": "number",
|
|
2384
|
+
"minimum": 1
|
|
2385
|
+
},
|
|
2386
|
+
{
|
|
2387
|
+
"type": "string"
|
|
2388
|
+
}
|
|
2389
|
+
],
|
|
2390
|
+
"default": 30000
|
|
2391
|
+
},
|
|
2380
2392
|
"env": {
|
|
2381
2393
|
"type": "object",
|
|
2382
2394
|
"additionalProperties": {
|