@platformatic/basic 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 CHANGED
@@ -211,6 +211,10 @@ export interface PlatformaticBasicConfig {
211
211
  logs?: {
212
212
  maxSize?: number;
213
213
  };
214
+ /**
215
+ * Custom path for the control socket. If not specified, uses the default platform-specific location.
216
+ */
217
+ socket?: string;
214
218
  };
215
219
  metrics?:
216
220
  | boolean
@@ -415,6 +419,7 @@ export interface PlatformaticBasicConfig {
415
419
  [k: string]: unknown;
416
420
  };
417
421
  applicationTimeout?: number | string;
422
+ startupConcurrency?: number | string;
418
423
  messagingTimeout?: number | string;
419
424
  env?: {
420
425
  [k: string]: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/basic",
3
- "version": "3.35.1",
3
+ "version": "3.37.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -25,10 +25,10 @@
25
25
  "split2": "^4.2.0",
26
26
  "undici": "^7.0.0",
27
27
  "ws": "^8.18.0",
28
- "@platformatic/foundation": "3.35.1",
29
- "@platformatic/itc": "3.35.1",
30
- "@platformatic/metrics": "3.35.1",
31
- "@platformatic/telemetry": "3.35.1"
28
+ "@platformatic/metrics": "3.37.0",
29
+ "@platformatic/foundation": "3.37.0",
30
+ "@platformatic/telemetry": "3.37.0",
31
+ "@platformatic/itc": "3.37.0"
32
32
  },
33
33
  "devDependencies": {
34
34
  "cleaner-spec-reporter": "^0.5.0",
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/basic/3.35.1.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/basic/3.37.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Basic Config",
5
5
  "type": "object",
@@ -1066,6 +1066,10 @@
1066
1066
  }
1067
1067
  },
1068
1068
  "additionalProperties": false
1069
+ },
1070
+ "socket": {
1071
+ "type": "string",
1072
+ "description": "Custom path for the control socket. If not specified, uses the default platform-specific location."
1069
1073
  }
1070
1074
  },
1071
1075
  "additionalProperties": false
@@ -1548,6 +1552,17 @@
1548
1552
  ],
1549
1553
  "default": 300000
1550
1554
  },
1555
+ "startupConcurrency": {
1556
+ "anyOf": [
1557
+ {
1558
+ "type": "number",
1559
+ "minimum": 1
1560
+ },
1561
+ {
1562
+ "type": "string"
1563
+ }
1564
+ ]
1565
+ },
1551
1566
  "messagingTimeout": {
1552
1567
  "anyOf": [
1553
1568
  {