@platformatic/basic 3.35.1 → 3.36.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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/basic",
3
- "version": "3.35.1",
3
+ "version": "3.36.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/foundation": "3.36.0",
29
+ "@platformatic/itc": "3.36.0",
30
+ "@platformatic/metrics": "3.36.0",
31
+ "@platformatic/telemetry": "3.36.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.36.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