wattpm 2.63.0 → 2.63.2
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/package.json +7 -7
- package/schema.json +10 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wattpm",
|
|
3
|
-
"version": "2.63.
|
|
3
|
+
"version": "2.63.2",
|
|
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.63.
|
|
40
|
-
"@platformatic/
|
|
41
|
-
"@platformatic/
|
|
42
|
-
"@platformatic/utils": "2.63.
|
|
43
|
-
"@platformatic/
|
|
39
|
+
"@platformatic/basic": "2.63.2",
|
|
40
|
+
"@platformatic/config": "2.63.2",
|
|
41
|
+
"@platformatic/runtime": "2.63.2",
|
|
42
|
+
"@platformatic/utils": "2.63.2",
|
|
43
|
+
"@platformatic/control": "2.63.2"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"borp": "^0.20.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.63.
|
|
53
|
+
"@platformatic/node": "2.63.2"
|
|
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.63.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/wattpm/2.63.2.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"properties": {
|
|
@@ -804,6 +804,9 @@
|
|
|
804
804
|
"https": {
|
|
805
805
|
"type": "object",
|
|
806
806
|
"properties": {
|
|
807
|
+
"allowHTTP1": {
|
|
808
|
+
"type": "boolean"
|
|
809
|
+
},
|
|
807
810
|
"key": {
|
|
808
811
|
"anyOf": [
|
|
809
812
|
{
|
|
@@ -877,6 +880,12 @@
|
|
|
877
880
|
}
|
|
878
881
|
}
|
|
879
882
|
]
|
|
883
|
+
},
|
|
884
|
+
"requestCert": {
|
|
885
|
+
"type": "boolean"
|
|
886
|
+
},
|
|
887
|
+
"rejectUnauthorized": {
|
|
888
|
+
"type": "boolean"
|
|
880
889
|
}
|
|
881
890
|
},
|
|
882
891
|
"additionalProperties": false,
|