@platformatic/gateway 3.0.6 → 3.2.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 -2
- package/lib/generator.js +1 -5
- package/package.json +8 -8
- package/schema.json +14 -3
package/config.d.ts
CHANGED
package/lib/generator.js
CHANGED
|
@@ -113,11 +113,7 @@ npm start
|
|
|
113
113
|
.filter(applicationMeta => applicationMeta.application.module !== '@platformatic/gateway')
|
|
114
114
|
.map(applicationMeta => {
|
|
115
115
|
return {
|
|
116
|
-
id: applicationMeta.name
|
|
117
|
-
openapi: {
|
|
118
|
-
url: '/documentation/json',
|
|
119
|
-
prefix: `/${applicationMeta.name}`
|
|
120
|
-
}
|
|
116
|
+
id: applicationMeta.name
|
|
121
117
|
}
|
|
122
118
|
})
|
|
123
119
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/gateway",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"typescript": "^5.5.4",
|
|
33
33
|
"why-is-node-running": "2",
|
|
34
34
|
"ws": "^8.16.0",
|
|
35
|
-
"@platformatic/db": "3.0
|
|
35
|
+
"@platformatic/db": "3.2.0"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@fastify/error": "^4.0.0",
|
|
@@ -63,14 +63,14 @@
|
|
|
63
63
|
"rfdc": "^1.3.1",
|
|
64
64
|
"semgrator": "^0.3.0",
|
|
65
65
|
"undici": "^7.0.0",
|
|
66
|
-
"@platformatic/basic": "3.0
|
|
67
|
-
"@platformatic/
|
|
68
|
-
"@platformatic/
|
|
69
|
-
"@platformatic/service": "3.0
|
|
70
|
-
"@platformatic/telemetry": "3.0
|
|
66
|
+
"@platformatic/basic": "3.2.0",
|
|
67
|
+
"@platformatic/foundation": "^3.2.0",
|
|
68
|
+
"@platformatic/scalar-theme": "3.2.0",
|
|
69
|
+
"@platformatic/service": "3.2.0",
|
|
70
|
+
"@platformatic/telemetry": "3.2.0"
|
|
71
71
|
},
|
|
72
72
|
"engines": {
|
|
73
|
-
"node": ">=22.
|
|
73
|
+
"node": ">=22.19.0"
|
|
74
74
|
},
|
|
75
75
|
"scripts": {
|
|
76
76
|
"test": "node --test --test-reporter=cleaner-spec-reporter --test-concurrency=1 --test-timeout=2000000 test/*.test.js test/**/*.test.js",
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/gateway/3.0.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/gateway/3.2.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Gateway Config",
|
|
5
5
|
"type": "object",
|
|
@@ -2248,8 +2248,19 @@
|
|
|
2248
2248
|
}
|
|
2249
2249
|
]
|
|
2250
2250
|
},
|
|
2251
|
-
"
|
|
2252
|
-
|
|
2251
|
+
"plugins": {
|
|
2252
|
+
"type": "array",
|
|
2253
|
+
"items": {
|
|
2254
|
+
"anyOf": [
|
|
2255
|
+
{
|
|
2256
|
+
"type": "string",
|
|
2257
|
+
"resolvePath": true
|
|
2258
|
+
}
|
|
2259
|
+
]
|
|
2260
|
+
}
|
|
2261
|
+
}
|
|
2262
|
+
},
|
|
2263
|
+
"additionalProperties": false
|
|
2253
2264
|
}
|
|
2254
2265
|
]
|
|
2255
2266
|
},
|