@platformatic/composer 3.35.1 → 3.37.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/config.d.ts +5 -0
- package/package.json +3 -3
- package/schema.json +16 -1
package/config.d.ts
CHANGED
|
@@ -376,6 +376,10 @@ export interface PlatformaticComposerConfig {
|
|
|
376
376
|
logs?: {
|
|
377
377
|
maxSize?: number;
|
|
378
378
|
};
|
|
379
|
+
/**
|
|
380
|
+
* Custom path for the control socket. If not specified, uses the default platform-specific location.
|
|
381
|
+
*/
|
|
382
|
+
socket?: string;
|
|
379
383
|
};
|
|
380
384
|
metrics?:
|
|
381
385
|
| boolean
|
|
@@ -580,6 +584,7 @@ export interface PlatformaticComposerConfig {
|
|
|
580
584
|
[k: string]: unknown;
|
|
581
585
|
};
|
|
582
586
|
applicationTimeout?: number | string;
|
|
587
|
+
startupConcurrency?: number | string;
|
|
583
588
|
messagingTimeout?: number | string;
|
|
584
589
|
env?: {
|
|
585
590
|
[k: string]: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/composer",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.37.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"json-schema-to-typescript": "^15.0.0"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@platformatic/foundation": "3.
|
|
27
|
-
"@platformatic/gateway": "3.
|
|
26
|
+
"@platformatic/foundation": "3.37.0",
|
|
27
|
+
"@platformatic/gateway": "3.37.0"
|
|
28
28
|
},
|
|
29
29
|
"engines": {
|
|
30
30
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/composer/3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/composer/3.37.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Composer Config",
|
|
5
5
|
"type": "object",
|
|
@@ -1722,6 +1722,10 @@
|
|
|
1722
1722
|
}
|
|
1723
1723
|
},
|
|
1724
1724
|
"additionalProperties": false
|
|
1725
|
+
},
|
|
1726
|
+
"socket": {
|
|
1727
|
+
"type": "string",
|
|
1728
|
+
"description": "Custom path for the control socket. If not specified, uses the default platform-specific location."
|
|
1725
1729
|
}
|
|
1726
1730
|
},
|
|
1727
1731
|
"additionalProperties": false
|
|
@@ -2204,6 +2208,17 @@
|
|
|
2204
2208
|
],
|
|
2205
2209
|
"default": 300000
|
|
2206
2210
|
},
|
|
2211
|
+
"startupConcurrency": {
|
|
2212
|
+
"anyOf": [
|
|
2213
|
+
{
|
|
2214
|
+
"type": "number",
|
|
2215
|
+
"minimum": 1
|
|
2216
|
+
},
|
|
2217
|
+
{
|
|
2218
|
+
"type": "string"
|
|
2219
|
+
}
|
|
2220
|
+
]
|
|
2221
|
+
},
|
|
2207
2222
|
"messagingTimeout": {
|
|
2208
2223
|
"anyOf": [
|
|
2209
2224
|
{
|