@platformatic/basic 3.39.0 → 3.40.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
@@ -220,6 +220,12 @@ export interface PlatformaticBasicConfig {
220
220
  */
221
221
  socket?: string;
222
222
  };
223
+ management?:
224
+ | boolean
225
+ | {
226
+ enabled?: boolean;
227
+ operations?: string[];
228
+ };
223
229
  metrics?:
224
230
  | boolean
225
231
  | {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/basic",
3
- "version": "3.39.0",
3
+ "version": "3.40.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.39.0",
29
- "@platformatic/metrics": "3.39.0",
30
- "@platformatic/itc": "3.39.0",
31
- "@platformatic/telemetry": "3.39.0"
28
+ "@platformatic/foundation": "3.40.0",
29
+ "@platformatic/telemetry": "3.40.0",
30
+ "@platformatic/itc": "3.40.0",
31
+ "@platformatic/metrics": "3.40.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.39.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/basic/3.40.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Basic Config",
5
5
  "type": "object",
@@ -358,6 +358,29 @@
358
358
  "additionalProperties": false
359
359
  }
360
360
  ]
361
+ },
362
+ "management": {
363
+ "anyOf": [
364
+ {
365
+ "type": "boolean"
366
+ },
367
+ {
368
+ "type": "object",
369
+ "properties": {
370
+ "enabled": {
371
+ "type": "boolean",
372
+ "default": true
373
+ },
374
+ "operations": {
375
+ "type": "array",
376
+ "items": {
377
+ "type": "string"
378
+ }
379
+ }
380
+ },
381
+ "additionalProperties": false
382
+ }
383
+ ]
361
384
  }
362
385
  }
363
386
  }
@@ -1097,6 +1120,29 @@
1097
1120
  ],
1098
1121
  "default": true
1099
1122
  },
1123
+ "management": {
1124
+ "anyOf": [
1125
+ {
1126
+ "type": "boolean"
1127
+ },
1128
+ {
1129
+ "type": "object",
1130
+ "properties": {
1131
+ "enabled": {
1132
+ "type": "boolean",
1133
+ "default": true
1134
+ },
1135
+ "operations": {
1136
+ "type": "array",
1137
+ "items": {
1138
+ "type": "string"
1139
+ }
1140
+ }
1141
+ },
1142
+ "additionalProperties": false
1143
+ }
1144
+ ]
1145
+ },
1100
1146
  "metrics": {
1101
1147
  "anyOf": [
1102
1148
  {