wattpm 2.70.0 → 2.70.1

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.
Files changed (2) hide show
  1. package/package.json +9 -9
  2. package/schema.json +13 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wattpm",
3
- "version": "2.70.0",
3
+ "version": "2.70.1",
4
4
  "description": "The Node.js Application Server",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -36,11 +36,11 @@
36
36
  "semver": "^7.7.0",
37
37
  "split2": "^4.2.0",
38
38
  "table": "^6.8.2",
39
- "@platformatic/config": "2.70.0",
40
- "@platformatic/control": "2.70.0",
41
- "@platformatic/utils": "2.70.0",
42
- "@platformatic/runtime": "2.70.0",
43
- "create-platformatic": "2.70.0"
39
+ "@platformatic/utils": "2.70.1",
40
+ "@platformatic/config": "2.70.1",
41
+ "create-platformatic": "2.70.1",
42
+ "@platformatic/control": "2.70.1",
43
+ "@platformatic/runtime": "2.70.1"
44
44
  },
45
45
  "devDependencies": {
46
46
  "borp": "^0.20.0",
@@ -50,11 +50,11 @@
50
50
  "neostandard": "^0.12.0",
51
51
  "typescript": "^5.5.4",
52
52
  "undici": "^7.0.0",
53
- "@platformatic/node": "2.70.0"
53
+ "@platformatic/node": "2.70.1"
54
54
  },
55
55
  "scripts": {
56
- "test": "npm run lint && borp --concurrency=1 --timeout=600000",
57
- "coverage": "npm run lint && borp -X test -C --concurrency=1 --timeout=600000",
56
+ "test": "npm run lint && borp --concurrency=1 --timeout=1200000",
57
+ "coverage": "npm run lint && borp -X test -C --concurrency=1 --timeout=1200000",
58
58
  "gen-packages": "node scripts/list-package.js > lib/packages.js",
59
59
  "gen-schema": "node lib/schema.js > schema.json",
60
60
  "gen-types": "json2ts > config.d.ts < schema.json",
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/wattpm/2.70.0.json",
2
+ "$id": "https://schemas.platformatic.dev/wattpm/2.70.1.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "type": "object",
5
5
  "properties": {
@@ -1568,6 +1568,18 @@
1568
1568
  ],
1569
1569
  "default": 300000
1570
1570
  },
1571
+ "messagingTimeout": {
1572
+ "anyOf": [
1573
+ {
1574
+ "type": "number",
1575
+ "minimum": 1
1576
+ },
1577
+ {
1578
+ "type": "string"
1579
+ }
1580
+ ],
1581
+ "default": 30000
1582
+ },
1571
1583
  "resolvedServicesBasePath": {
1572
1584
  "type": "string",
1573
1585
  "default": "external"