wattpm 2.18.0 → 2.19.0-alpha.10
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 +8 -8
- package/schema.json +30 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wattpm",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.19.0-alpha.10",
|
|
4
4
|
"description": "The Node.js Application Server",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"pino-pretty": "^13.0.0",
|
|
35
35
|
"split2": "^4.2.0",
|
|
36
36
|
"table": "^6.8.2",
|
|
37
|
-
"@platformatic/basic": "2.
|
|
38
|
-
"@platformatic/config": "2.
|
|
39
|
-
"@platformatic/control": "2.
|
|
40
|
-
"@platformatic/
|
|
41
|
-
"@platformatic/
|
|
37
|
+
"@platformatic/basic": "2.19.0-alpha.10",
|
|
38
|
+
"@platformatic/config": "2.19.0-alpha.10",
|
|
39
|
+
"@platformatic/control": "2.19.0-alpha.10",
|
|
40
|
+
"@platformatic/runtime": "2.19.0-alpha.10",
|
|
41
|
+
"@platformatic/utils": "2.19.0-alpha.10"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"borp": "^0.19.0",
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"json-schema-to-typescript": "^15.0.0",
|
|
48
48
|
"neostandard": "^0.11.1",
|
|
49
49
|
"typescript": "^5.5.4",
|
|
50
|
-
"undici": "^
|
|
51
|
-
"@platformatic/node": "2.
|
|
50
|
+
"undici": "^7.0.0",
|
|
51
|
+
"@platformatic/node": "2.19.0-alpha.10"
|
|
52
52
|
},
|
|
53
53
|
"scripts": {
|
|
54
54
|
"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.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/wattpm/2.19.0-alpha.10.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"properties": {
|
|
@@ -840,6 +840,35 @@
|
|
|
840
840
|
}
|
|
841
841
|
}
|
|
842
842
|
},
|
|
843
|
+
"httpCache": {
|
|
844
|
+
"oneOf": [
|
|
845
|
+
{
|
|
846
|
+
"type": "boolean"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"type": "object",
|
|
850
|
+
"properties": {
|
|
851
|
+
"store": {
|
|
852
|
+
"type": "string"
|
|
853
|
+
},
|
|
854
|
+
"methods": {
|
|
855
|
+
"type": "array",
|
|
856
|
+
"items": {
|
|
857
|
+
"type": "string"
|
|
858
|
+
},
|
|
859
|
+
"default": [
|
|
860
|
+
"GET",
|
|
861
|
+
"HEAD"
|
|
862
|
+
],
|
|
863
|
+
"minItems": 1
|
|
864
|
+
},
|
|
865
|
+
"cacheTagsHeader": {
|
|
866
|
+
"type": "string"
|
|
867
|
+
}
|
|
868
|
+
}
|
|
869
|
+
}
|
|
870
|
+
]
|
|
871
|
+
},
|
|
843
872
|
"watch": {
|
|
844
873
|
"anyOf": [
|
|
845
874
|
{
|