@platformatic/runtime 3.40.0 → 3.41.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/index.d.ts +2 -2
- package/package.json +15 -15
- package/schema.json +1 -1
package/index.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export interface ApplicationsCommands {
|
|
|
27
27
|
help: Record<string, string | (() => string)>
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
export
|
|
30
|
+
export namespace errors {
|
|
31
31
|
export const RuntimeExitedError: () => FastifyError
|
|
32
32
|
export const UnknownRuntimeAPICommandError: (command: string) => FastifyError
|
|
33
33
|
export const ApplicationNotFoundError: (id: string) => FastifyError
|
|
@@ -47,7 +47,7 @@ export module errors {
|
|
|
47
47
|
export const NodeInspectorFlagsNotSupportedError: () => FastifyError
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
export
|
|
50
|
+
export namespace symbols {
|
|
51
51
|
export declare const kConfig: unique symbol
|
|
52
52
|
export declare const kId: unique symbol
|
|
53
53
|
export declare const kFullId: unique symbol
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/runtime",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.41.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -35,14 +35,14 @@
|
|
|
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": "3.
|
|
39
|
-
"@platformatic/
|
|
40
|
-
"@platformatic/gateway": "3.
|
|
41
|
-
"@platformatic/
|
|
42
|
-
"@platformatic/
|
|
43
|
-
"@platformatic/
|
|
44
|
-
"@platformatic/sql-
|
|
45
|
-
"@platformatic/
|
|
38
|
+
"@platformatic/composer": "3.41.0",
|
|
39
|
+
"@platformatic/db": "3.41.0",
|
|
40
|
+
"@platformatic/gateway": "3.41.0",
|
|
41
|
+
"@platformatic/node": "3.41.0",
|
|
42
|
+
"@platformatic/service": "3.41.0",
|
|
43
|
+
"@platformatic/sql-graphql": "3.41.0",
|
|
44
|
+
"@platformatic/sql-mapper": "3.41.0",
|
|
45
|
+
"@platformatic/wattpm-pprof-capture": "3.41.0"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@fastify/accepts": "^5.0.0",
|
|
@@ -72,12 +72,12 @@
|
|
|
72
72
|
"undici": "^7.0.0",
|
|
73
73
|
"undici-thread-interceptor": "^1.3.1",
|
|
74
74
|
"ws": "^8.16.0",
|
|
75
|
-
"@platformatic/
|
|
76
|
-
"@platformatic/generators": "3.
|
|
77
|
-
"@platformatic/
|
|
78
|
-
"@platformatic/
|
|
79
|
-
"@platformatic/
|
|
80
|
-
"@platformatic/
|
|
75
|
+
"@platformatic/basic": "3.41.0",
|
|
76
|
+
"@platformatic/generators": "3.41.0",
|
|
77
|
+
"@platformatic/itc": "3.41.0",
|
|
78
|
+
"@platformatic/telemetry": "3.41.0",
|
|
79
|
+
"@platformatic/foundation": "3.41.0",
|
|
80
|
+
"@platformatic/metrics": "3.41.0"
|
|
81
81
|
},
|
|
82
82
|
"engines": {
|
|
83
83
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/runtime/3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/runtime/3.41.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Runtime Config",
|
|
5
5
|
"type": "object",
|