@platformatic/composer 3.19.0 → 3.21.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 +1 -0
- package/package.json +3 -3
- package/schema.json +29 -5
package/config.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/composer",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.21.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"json-schema-to-typescript": "^15.0.0"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@platformatic/foundation": "3.
|
|
27
|
-
"@platformatic/gateway": "3.
|
|
26
|
+
"@platformatic/foundation": "3.21.0",
|
|
27
|
+
"@platformatic/gateway": "3.21.0"
|
|
28
28
|
},
|
|
29
29
|
"engines": {
|
|
30
30
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/composer/3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/composer/3.21.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Composer Config",
|
|
5
5
|
"type": "object",
|
|
@@ -851,6 +851,17 @@
|
|
|
851
851
|
"type": "string"
|
|
852
852
|
}
|
|
853
853
|
]
|
|
854
|
+
},
|
|
855
|
+
"codeRangeSize": {
|
|
856
|
+
"anyOf": [
|
|
857
|
+
{
|
|
858
|
+
"type": "number",
|
|
859
|
+
"minimum": 0
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"type": "string"
|
|
863
|
+
}
|
|
864
|
+
]
|
|
854
865
|
}
|
|
855
866
|
},
|
|
856
867
|
"additionalProperties": false
|
|
@@ -878,8 +889,7 @@
|
|
|
878
889
|
"type": "string"
|
|
879
890
|
},
|
|
880
891
|
"sourceMaps": {
|
|
881
|
-
"type": "boolean"
|
|
882
|
-
"default": false
|
|
892
|
+
"type": "boolean"
|
|
883
893
|
},
|
|
884
894
|
"packageManager": {
|
|
885
895
|
"type": "string",
|
|
@@ -1444,7 +1454,8 @@
|
|
|
1444
1454
|
{
|
|
1445
1455
|
"type": "string"
|
|
1446
1456
|
}
|
|
1447
|
-
]
|
|
1457
|
+
],
|
|
1458
|
+
"default": 4294967296
|
|
1448
1459
|
},
|
|
1449
1460
|
"maxYoungGeneration": {
|
|
1450
1461
|
"anyOf": [
|
|
@@ -1455,7 +1466,20 @@
|
|
|
1455
1466
|
{
|
|
1456
1467
|
"type": "string"
|
|
1457
1468
|
}
|
|
1458
|
-
]
|
|
1469
|
+
],
|
|
1470
|
+
"default": 134217728
|
|
1471
|
+
},
|
|
1472
|
+
"codeRangeSize": {
|
|
1473
|
+
"anyOf": [
|
|
1474
|
+
{
|
|
1475
|
+
"type": "number",
|
|
1476
|
+
"minimum": 0
|
|
1477
|
+
},
|
|
1478
|
+
{
|
|
1479
|
+
"type": "string"
|
|
1480
|
+
}
|
|
1481
|
+
],
|
|
1482
|
+
"default": 268435456
|
|
1459
1483
|
}
|
|
1460
1484
|
},
|
|
1461
1485
|
"additionalProperties": false
|