@platformatic/composer 3.24.0 → 3.25.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
@@ -758,6 +758,9 @@ export interface PlatformaticComposerConfig {
758
758
  upstream?: string;
759
759
  prefix?: string;
760
760
  hostname?: string;
761
+ custom?: {
762
+ path: string;
763
+ };
761
764
  ws?: {
762
765
  upstream?: string;
763
766
  reconnect?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/composer",
3
- "version": "3.24.0",
3
+ "version": "3.25.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.24.0",
27
- "@platformatic/gateway": "3.24.0"
26
+ "@platformatic/gateway": "3.25.0",
27
+ "@platformatic/foundation": "3.25.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.24.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/composer/3.25.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Composer Config",
5
5
  "type": "object",
@@ -2662,6 +2662,18 @@
2662
2662
  "hostname": {
2663
2663
  "type": "string"
2664
2664
  },
2665
+ "custom": {
2666
+ "type": "object",
2667
+ "properties": {
2668
+ "path": {
2669
+ "type": "string"
2670
+ }
2671
+ },
2672
+ "required": [
2673
+ "path"
2674
+ ],
2675
+ "additionalProperties": false
2676
+ },
2665
2677
  "ws": {
2666
2678
  "type": "object",
2667
2679
  "properties": {