@platformatic/composer 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 +11 -11
- package/schema.json +13 -1
package/config.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/composer",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.71.0-alpha.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"typescript": "^5.5.4",
|
|
33
33
|
"why-is-node-running": "2",
|
|
34
34
|
"ws": "^8.16.0",
|
|
35
|
-
"@platformatic/
|
|
36
|
-
"@platformatic/
|
|
37
|
-
"@platformatic/
|
|
35
|
+
"@platformatic/client": "2.71.0-alpha.1",
|
|
36
|
+
"@platformatic/config": "2.71.0-alpha.1",
|
|
37
|
+
"@platformatic/db": "2.71.0-alpha.1"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@fastify/error": "^4.0.0",
|
|
@@ -68,15 +68,15 @@
|
|
|
68
68
|
"rfdc": "^1.3.1",
|
|
69
69
|
"semgrator": "^0.3.0",
|
|
70
70
|
"undici": "^7.0.0",
|
|
71
|
-
"@platformatic/config": "2.
|
|
72
|
-
"@platformatic/generators": "2.
|
|
73
|
-
"@platformatic/scalar-theme": "2.
|
|
74
|
-
"@platformatic/
|
|
75
|
-
"@platformatic/
|
|
76
|
-
"@platformatic/
|
|
71
|
+
"@platformatic/config": "2.71.0-alpha.1",
|
|
72
|
+
"@platformatic/generators": "2.71.0-alpha.1",
|
|
73
|
+
"@platformatic/scalar-theme": "2.71.0-alpha.1",
|
|
74
|
+
"@platformatic/telemetry": "2.71.0-alpha.1",
|
|
75
|
+
"@platformatic/utils": "^2.71.0-alpha.1",
|
|
76
|
+
"@platformatic/service": "2.71.0-alpha.1"
|
|
77
77
|
},
|
|
78
78
|
"scripts": {
|
|
79
|
-
"test": "pnpm run lint && borp -T --timeout=
|
|
79
|
+
"test": "pnpm run lint && borp -T --timeout=1200000 -c 1 && tsd",
|
|
80
80
|
"gen-schema": "node lib/schema.js > schema.json",
|
|
81
81
|
"gen-types": "json2ts > config.d.ts < schema.json",
|
|
82
82
|
"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/composer/2.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/composer/2.71.0-alpha.1.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Composer",
|
|
5
5
|
"type": "object",
|
|
@@ -2317,6 +2317,18 @@
|
|
|
2317
2317
|
],
|
|
2318
2318
|
"default": 300000
|
|
2319
2319
|
},
|
|
2320
|
+
"messagingTimeout": {
|
|
2321
|
+
"anyOf": [
|
|
2322
|
+
{
|
|
2323
|
+
"type": "number",
|
|
2324
|
+
"minimum": 1
|
|
2325
|
+
},
|
|
2326
|
+
{
|
|
2327
|
+
"type": "string"
|
|
2328
|
+
}
|
|
2329
|
+
],
|
|
2330
|
+
"default": 30000
|
|
2331
|
+
},
|
|
2320
2332
|
"env": {
|
|
2321
2333
|
"type": "object",
|
|
2322
2334
|
"additionalProperties": {
|