@platformatic/node 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
@@ -332,6 +332,12 @@ export interface PlatformaticNodeJsConfig {
332
332
  */
333
333
  socket?: string;
334
334
  };
335
+ management?:
336
+ | boolean
337
+ | {
338
+ enabled?: boolean;
339
+ operations?: string[];
340
+ };
335
341
  metrics?:
336
342
  | boolean
337
343
  | {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/node",
3
- "version": "3.39.0",
3
+ "version": "3.40.0",
4
4
  "description": "Platformatic Node.js Capability",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -18,9 +18,9 @@
18
18
  "@watchable/unpromise": "^1.0.2",
19
19
  "json5": "^2.2.3",
20
20
  "light-my-request": "^6.0.0",
21
- "@platformatic/basic": "3.39.0",
22
- "@platformatic/foundation": "3.39.0",
23
- "@platformatic/generators": "3.39.0"
21
+ "@platformatic/basic": "3.40.0",
22
+ "@platformatic/foundation": "3.40.0",
23
+ "@platformatic/generators": "3.40.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "cleaner-spec-reporter": "^0.5.0",
@@ -32,8 +32,8 @@
32
32
  "neostandard": "^0.12.0",
33
33
  "tsx": "^4.19.0",
34
34
  "typescript": "^5.5.4",
35
- "@platformatic/service": "3.39.0",
36
- "@platformatic/gateway": "3.39.0"
35
+ "@platformatic/gateway": "3.40.0",
36
+ "@platformatic/service": "3.40.0"
37
37
  },
38
38
  "engines": {
39
39
  "node": ">=22.19.0"
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/node/3.39.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/node/3.40.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Node.js Config",
5
5
  "type": "object",
@@ -736,6 +736,29 @@
736
736
  "additionalProperties": false
737
737
  }
738
738
  ]
739
+ },
740
+ "management": {
741
+ "anyOf": [
742
+ {
743
+ "type": "boolean"
744
+ },
745
+ {
746
+ "type": "object",
747
+ "properties": {
748
+ "enabled": {
749
+ "type": "boolean",
750
+ "default": true
751
+ },
752
+ "operations": {
753
+ "type": "array",
754
+ "items": {
755
+ "type": "string"
756
+ }
757
+ }
758
+ },
759
+ "additionalProperties": false
760
+ }
761
+ ]
739
762
  }
740
763
  }
741
764
  }
@@ -1475,6 +1498,29 @@
1475
1498
  ],
1476
1499
  "default": true
1477
1500
  },
1501
+ "management": {
1502
+ "anyOf": [
1503
+ {
1504
+ "type": "boolean"
1505
+ },
1506
+ {
1507
+ "type": "object",
1508
+ "properties": {
1509
+ "enabled": {
1510
+ "type": "boolean",
1511
+ "default": true
1512
+ },
1513
+ "operations": {
1514
+ "type": "array",
1515
+ "items": {
1516
+ "type": "string"
1517
+ }
1518
+ }
1519
+ },
1520
+ "additionalProperties": false
1521
+ }
1522
+ ]
1523
+ },
1478
1524
  "metrics": {
1479
1525
  "anyOf": [
1480
1526
  {