@platformatic/basic 3.0.5 → 3.1.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
@@ -214,8 +214,7 @@ export interface PlatformaticBasicConfig {
214
214
  body?: string;
215
215
  };
216
216
  };
217
- additionalProperties?: never;
218
- [k: string]: unknown;
217
+ plugins?: string[];
219
218
  };
220
219
  telemetry?: {
221
220
  enabled?: boolean | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/basic",
3
- "version": "3.0.5",
3
+ "version": "3.1.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.0.5",
29
- "@platformatic/itc": "3.0.5",
30
- "@platformatic/metrics": "3.0.5",
31
- "@platformatic/telemetry": "3.0.5"
28
+ "@platformatic/foundation": "3.1.0",
29
+ "@platformatic/itc": "3.1.0",
30
+ "@platformatic/metrics": "3.1.0",
31
+ "@platformatic/telemetry": "3.1.0"
32
32
  },
33
33
  "devDependencies": {
34
34
  "cleaner-spec-reporter": "^0.5.0",
@@ -41,7 +41,7 @@
41
41
  "typescript": "^5.5.4"
42
42
  },
43
43
  "engines": {
44
- "node": ">=22.18.0"
44
+ "node": ">=22.19.0"
45
45
  },
46
46
  "scripts": {
47
47
  "test": "node --test --test-reporter=cleaner-spec-reporter --test-concurrency=1 --test-timeout=2000000 test/*.test.js test/**/*.test.js",
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/basic/3.0.5.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/basic/3.1.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Basic Config",
5
5
  "type": "object",
@@ -1011,8 +1011,19 @@
1011
1011
  }
1012
1012
  ]
1013
1013
  },
1014
- "additionalProperties": false
1015
- }
1014
+ "plugins": {
1015
+ "type": "array",
1016
+ "items": {
1017
+ "anyOf": [
1018
+ {
1019
+ "type": "string",
1020
+ "resolvePath": true
1021
+ }
1022
+ ]
1023
+ }
1024
+ }
1025
+ },
1026
+ "additionalProperties": false
1016
1027
  }
1017
1028
  ]
1018
1029
  },