@platformatic/service 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 +7 -7
- package/schema.json +17 -2
package/config.d.ts
CHANGED
|
@@ -511,6 +511,10 @@ export interface PlatformaticServiceConfig {
|
|
|
511
511
|
logs?: {
|
|
512
512
|
maxSize?: number;
|
|
513
513
|
};
|
|
514
|
+
/**
|
|
515
|
+
* Custom path for the control socket. If not specified, uses the default platform-specific location.
|
|
516
|
+
*/
|
|
517
|
+
socket?: string;
|
|
514
518
|
};
|
|
515
519
|
metrics?:
|
|
516
520
|
| boolean
|
|
@@ -715,6 +719,7 @@ export interface PlatformaticServiceConfig {
|
|
|
715
719
|
[k: string]: unknown;
|
|
716
720
|
};
|
|
717
721
|
applicationTimeout?: number | string;
|
|
722
|
+
startupConcurrency?: number | string;
|
|
718
723
|
messagingTimeout?: number | string;
|
|
719
724
|
env?: {
|
|
720
725
|
[k: string]: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/service",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.37.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -67,12 +67,12 @@
|
|
|
67
67
|
"rfdc": "^1.3.1",
|
|
68
68
|
"semgrator": "^0.3.0",
|
|
69
69
|
"undici": "^7.0.0",
|
|
70
|
-
"@platformatic/
|
|
71
|
-
"@platformatic/metrics": "3.
|
|
72
|
-
"@platformatic/
|
|
73
|
-
"@platformatic/
|
|
74
|
-
"@platformatic/telemetry": "3.
|
|
75
|
-
"@platformatic/
|
|
70
|
+
"@platformatic/foundation": "3.37.0",
|
|
71
|
+
"@platformatic/metrics": "3.37.0",
|
|
72
|
+
"@platformatic/generators": "3.37.0",
|
|
73
|
+
"@platformatic/basic": "3.37.0",
|
|
74
|
+
"@platformatic/telemetry": "3.37.0",
|
|
75
|
+
"@platformatic/scalar-theme": "3.37.0"
|
|
76
76
|
},
|
|
77
77
|
"engines": {
|
|
78
78
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/service/3.
|
|
3
|
-
"version": "3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/service/3.37.0.json",
|
|
3
|
+
"version": "3.37.0",
|
|
4
4
|
"title": "Platformatic Service Config",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
@@ -2048,6 +2048,10 @@
|
|
|
2048
2048
|
}
|
|
2049
2049
|
},
|
|
2050
2050
|
"additionalProperties": false
|
|
2051
|
+
},
|
|
2052
|
+
"socket": {
|
|
2053
|
+
"type": "string",
|
|
2054
|
+
"description": "Custom path for the control socket. If not specified, uses the default platform-specific location."
|
|
2051
2055
|
}
|
|
2052
2056
|
},
|
|
2053
2057
|
"additionalProperties": false
|
|
@@ -2530,6 +2534,17 @@
|
|
|
2530
2534
|
],
|
|
2531
2535
|
"default": 300000
|
|
2532
2536
|
},
|
|
2537
|
+
"startupConcurrency": {
|
|
2538
|
+
"anyOf": [
|
|
2539
|
+
{
|
|
2540
|
+
"type": "number",
|
|
2541
|
+
"minimum": 1
|
|
2542
|
+
},
|
|
2543
|
+
{
|
|
2544
|
+
"type": "string"
|
|
2545
|
+
}
|
|
2546
|
+
]
|
|
2547
|
+
},
|
|
2533
2548
|
"messagingTimeout": {
|
|
2534
2549
|
"anyOf": [
|
|
2535
2550
|
{
|