@platformatic/runtime 2.13.0 → 2.14.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 -1
- package/lib/management-api.js +0 -7
- package/package.json +14 -14
- package/schema.json +1 -1
package/config.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* and run json-schema-to-typescript to regenerate this file.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
export type
|
|
8
|
+
export type HttpsSchemasPlatformaticDevPlatformaticRuntime2140Json = {
|
|
9
9
|
[k: string]: unknown;
|
|
10
10
|
} & {
|
|
11
11
|
$schema?: string;
|
package/lib/management-api.js
CHANGED
|
@@ -13,13 +13,6 @@ const { getRuntimeLogsDir } = require('./utils')
|
|
|
13
13
|
const PLATFORMATIC_TMP_DIR = join(tmpdir(), 'platformatic', 'runtimes')
|
|
14
14
|
|
|
15
15
|
async function managementApiPlugin (app, opts) {
|
|
16
|
-
app.log.warn(
|
|
17
|
-
'Runtime Management API is in the experimental stage. ' +
|
|
18
|
-
'The feature is not subject to semantic versioning rules. ' +
|
|
19
|
-
'Non-backward compatible changes or removal may occur in any future release. ' +
|
|
20
|
-
'Use of the feature is not recommended in production environments.'
|
|
21
|
-
)
|
|
22
|
-
|
|
23
16
|
const runtime = opts.runtime
|
|
24
17
|
|
|
25
18
|
app.get('/status', async () => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/runtime",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.14.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
"typescript": "^5.5.4",
|
|
36
36
|
"undici-oidc-interceptor": "^0.5.0",
|
|
37
37
|
"why-is-node-running": "^2.2.2",
|
|
38
|
-
"@platformatic/composer": "2.
|
|
39
|
-
"@platformatic/db": "2.
|
|
40
|
-
"@platformatic/node": "2.
|
|
41
|
-
"@platformatic/service": "2.
|
|
42
|
-
"@platformatic/sql-
|
|
43
|
-
"@platformatic/sql-
|
|
38
|
+
"@platformatic/composer": "2.14.0",
|
|
39
|
+
"@platformatic/db": "2.14.0",
|
|
40
|
+
"@platformatic/node": "2.14.0",
|
|
41
|
+
"@platformatic/service": "2.14.0",
|
|
42
|
+
"@platformatic/sql-mapper": "2.14.0",
|
|
43
|
+
"@platformatic/sql-graphql": "2.14.0"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@fastify/error": "^4.0.0",
|
|
@@ -70,13 +70,13 @@
|
|
|
70
70
|
"undici": "^6.9.0",
|
|
71
71
|
"undici-thread-interceptor": "^0.9.0",
|
|
72
72
|
"ws": "^8.16.0",
|
|
73
|
-
"@platformatic/basic": "2.
|
|
74
|
-
"@platformatic/
|
|
75
|
-
"@platformatic/
|
|
76
|
-
"@platformatic/
|
|
77
|
-
"@platformatic/telemetry": "2.
|
|
78
|
-
"@platformatic/
|
|
79
|
-
"@platformatic/
|
|
73
|
+
"@platformatic/basic": "2.14.0",
|
|
74
|
+
"@platformatic/itc": "2.14.0",
|
|
75
|
+
"@platformatic/config": "2.14.0",
|
|
76
|
+
"@platformatic/generators": "2.14.0",
|
|
77
|
+
"@platformatic/telemetry": "2.14.0",
|
|
78
|
+
"@platformatic/ts-compiler": "2.14.0",
|
|
79
|
+
"@platformatic/utils": "2.14.0"
|
|
80
80
|
},
|
|
81
81
|
"scripts": {
|
|
82
82
|
"test": "npm run lint && borp --concurrency=1 --timeout=300000 && tsd",
|
package/schema.json
CHANGED