wattpm 2.53.2 → 2.55.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.
Files changed (2) hide show
  1. package/package.json +7 -7
  2. package/schema.json +83 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wattpm",
3
- "version": "2.53.2",
3
+ "version": "2.55.0",
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/basic": "2.53.2",
40
- "@platformatic/config": "2.53.2",
41
- "@platformatic/control": "2.53.2",
42
- "@platformatic/runtime": "2.53.2",
43
- "@platformatic/utils": "2.53.2"
39
+ "@platformatic/basic": "2.55.0",
40
+ "@platformatic/config": "2.55.0",
41
+ "@platformatic/control": "2.55.0",
42
+ "@platformatic/runtime": "2.55.0",
43
+ "@platformatic/utils": "2.55.0"
44
44
  },
45
45
  "devDependencies": {
46
46
  "borp": "^0.19.0",
@@ -50,7 +50,7 @@
50
50
  "neostandard": "^0.12.0",
51
51
  "typescript": "^5.5.4",
52
52
  "undici": "^7.0.0",
53
- "@platformatic/node": "2.53.2"
53
+ "@platformatic/node": "2.55.0"
54
54
  },
55
55
  "scripts": {
56
56
  "test": "npm run lint && borp --concurrency=1 --timeout=300000",
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/wattpm/2.53.2.json",
2
+ "$id": "https://schemas.platformatic.dev/wattpm/2.55.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "type": "object",
5
5
  "properties": {
@@ -154,6 +154,10 @@
154
154
  "type": "string"
155
155
  }
156
156
  ]
157
+ },
158
+ "maxYoungGeneration": {
159
+ "type": "number",
160
+ "minimum": 0
157
161
  }
158
162
  },
159
163
  "additionalProperties": false
@@ -318,6 +322,10 @@
318
322
  "type": "string"
319
323
  }
320
324
  ]
325
+ },
326
+ "maxYoungGeneration": {
327
+ "type": "number",
328
+ "minimum": 0
321
329
  }
322
330
  },
323
331
  "additionalProperties": false
@@ -547,6 +555,10 @@
547
555
  "type": "string"
548
556
  }
549
557
  ]
558
+ },
559
+ "maxYoungGeneration": {
560
+ "type": "number",
561
+ "minimum": 0
550
562
  }
551
563
  },
552
564
  "additionalProperties": false
@@ -976,6 +988,10 @@
976
988
  "type": "string"
977
989
  }
978
990
  ]
991
+ },
992
+ "maxYoungGeneration": {
993
+ "type": "number",
994
+ "minimum": 0
979
995
  }
980
996
  },
981
997
  "additionalProperties": false
@@ -1412,6 +1428,72 @@
1412
1428
  "sourceMaps": {
1413
1429
  "type": "boolean",
1414
1430
  "default": false
1431
+ },
1432
+ "scheduler": {
1433
+ "type": "array",
1434
+ "items": {
1435
+ "type": "object",
1436
+ "properties": {
1437
+ "enabled": {
1438
+ "anyOf": [
1439
+ {
1440
+ "type": "boolean"
1441
+ },
1442
+ {
1443
+ "type": "string"
1444
+ }
1445
+ ],
1446
+ "default": true
1447
+ },
1448
+ "name": {
1449
+ "type": "string"
1450
+ },
1451
+ "cron": {
1452
+ "type": "string"
1453
+ },
1454
+ "callbackUrl": {
1455
+ "type": "string"
1456
+ },
1457
+ "method": {
1458
+ "type": "string",
1459
+ "enum": [
1460
+ "GET",
1461
+ "POST",
1462
+ "PUT",
1463
+ "PATCH",
1464
+ "DELETE"
1465
+ ],
1466
+ "default": "GET"
1467
+ },
1468
+ "headers": {
1469
+ "type": "object",
1470
+ "additionalProperties": {
1471
+ "type": "string"
1472
+ }
1473
+ },
1474
+ "body": {
1475
+ "anyOf": [
1476
+ {
1477
+ "type": "string"
1478
+ },
1479
+ {
1480
+ "type": "object",
1481
+ "additionalProperties": true
1482
+ }
1483
+ ]
1484
+ },
1485
+ "maxRetries": {
1486
+ "type": "number",
1487
+ "minimum": 0,
1488
+ "default": 3
1489
+ }
1490
+ },
1491
+ "required": [
1492
+ "name",
1493
+ "cron",
1494
+ "callbackUrl"
1495
+ ]
1496
+ }
1415
1497
  }
1416
1498
  },
1417
1499
  "anyOf": [