@platformatic/service 3.39.0 → 3.41.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
@@ -524,6 +524,12 @@ export interface PlatformaticServiceConfig {
524
524
  */
525
525
  socket?: string;
526
526
  };
527
+ management?:
528
+ | boolean
529
+ | {
530
+ enabled?: boolean;
531
+ operations?: string[];
532
+ };
527
533
  metrics?:
528
534
  | boolean
529
535
  | {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/service",
3
- "version": "3.39.0",
3
+ "version": "3.41.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -67,12 +67,12 @@
67
67
  "rfdc": "^1.3.1",
68
68
  "semgrator": "^0.3.0",
69
69
  "undici": "^7.0.0",
70
- "@platformatic/basic": "3.39.0",
71
- "@platformatic/generators": "3.39.0",
72
- "@platformatic/metrics": "3.39.0",
73
- "@platformatic/foundation": "3.39.0",
74
- "@platformatic/scalar-theme": "3.39.0",
75
- "@platformatic/telemetry": "3.39.0"
70
+ "@platformatic/basic": "3.41.0",
71
+ "@platformatic/foundation": "3.41.0",
72
+ "@platformatic/generators": "3.41.0",
73
+ "@platformatic/metrics": "3.41.0",
74
+ "@platformatic/scalar-theme": "3.41.0",
75
+ "@platformatic/telemetry": "3.41.0"
76
76
  },
77
77
  "engines": {
78
78
  "node": ">=22.19.0"
package/schema.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/service/3.39.0.json",
3
- "version": "3.39.0",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/service/3.41.0.json",
3
+ "version": "3.41.0",
4
4
  "title": "Platformatic Service Config",
5
5
  "type": "object",
6
6
  "properties": {
@@ -1360,6 +1360,29 @@
1360
1360
  "additionalProperties": false
1361
1361
  }
1362
1362
  ]
1363
+ },
1364
+ "management": {
1365
+ "anyOf": [
1366
+ {
1367
+ "type": "boolean"
1368
+ },
1369
+ {
1370
+ "type": "object",
1371
+ "properties": {
1372
+ "enabled": {
1373
+ "type": "boolean",
1374
+ "default": true
1375
+ },
1376
+ "operations": {
1377
+ "type": "array",
1378
+ "items": {
1379
+ "type": "string"
1380
+ }
1381
+ }
1382
+ },
1383
+ "additionalProperties": false
1384
+ }
1385
+ ]
1363
1386
  }
1364
1387
  }
1365
1388
  }
@@ -2099,6 +2122,29 @@
2099
2122
  ],
2100
2123
  "default": true
2101
2124
  },
2125
+ "management": {
2126
+ "anyOf": [
2127
+ {
2128
+ "type": "boolean"
2129
+ },
2130
+ {
2131
+ "type": "object",
2132
+ "properties": {
2133
+ "enabled": {
2134
+ "type": "boolean",
2135
+ "default": true
2136
+ },
2137
+ "operations": {
2138
+ "type": "array",
2139
+ "items": {
2140
+ "type": "string"
2141
+ }
2142
+ }
2143
+ },
2144
+ "additionalProperties": false
2145
+ }
2146
+ ]
2147
+ },
2102
2148
  "metrics": {
2103
2149
  "anyOf": [
2104
2150
  {