@platformatic/runtime 2.26.1 → 2.27.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/package.json +19 -19
- 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 HttpsSchemasPlatformaticDevPlatformaticRuntime2270Json = {
|
|
9
9
|
[k: string]: unknown;
|
|
10
10
|
} & {
|
|
11
11
|
$schema?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/runtime",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.27.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/
|
|
41
|
-
"@platformatic/
|
|
42
|
-
"@platformatic/sql-graphql": "2.
|
|
43
|
-
"@platformatic/
|
|
38
|
+
"@platformatic/composer": "2.27.0",
|
|
39
|
+
"@platformatic/db": "2.27.0",
|
|
40
|
+
"@platformatic/node": "2.27.0",
|
|
41
|
+
"@platformatic/service": "2.27.0",
|
|
42
|
+
"@platformatic/sql-graphql": "2.27.0",
|
|
43
|
+
"@platformatic/sql-mapper": "2.27.0"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@fastify/accepts": "^5.0.0",
|
|
@@ -73,21 +73,21 @@
|
|
|
73
73
|
"undici": "^7.0.0",
|
|
74
74
|
"undici-thread-interceptor": "^0.10.0",
|
|
75
75
|
"ws": "^8.16.0",
|
|
76
|
-
"@platformatic/
|
|
77
|
-
"@platformatic/
|
|
78
|
-
"@platformatic/
|
|
79
|
-
"@platformatic/
|
|
80
|
-
"@platformatic/
|
|
81
|
-
"@platformatic/
|
|
82
|
-
"@platformatic/
|
|
76
|
+
"@platformatic/basic": "2.27.0",
|
|
77
|
+
"@platformatic/config": "2.27.0",
|
|
78
|
+
"@platformatic/generators": "2.27.0",
|
|
79
|
+
"@platformatic/telemetry": "2.27.0",
|
|
80
|
+
"@platformatic/itc": "2.27.0",
|
|
81
|
+
"@platformatic/ts-compiler": "2.27.0",
|
|
82
|
+
"@platformatic/utils": "2.27.0"
|
|
83
83
|
},
|
|
84
84
|
"scripts": {
|
|
85
85
|
"test": "npm run lint && borp --concurrency=1 --timeout=300000 && tsd",
|
|
86
|
-
"test:main": "borp --concurrency=1 --timeout=300000 test/*.test.js test/versions/*.test.js",
|
|
87
|
-
"test:api": "borp --concurrency=1 --timeout=300000 test/api/*.test.js test/management-api/*.test.js",
|
|
88
|
-
"test:cli": "borp --concurrency=1 --timeout=300000 test/cli/*.test.js test/cli/**/*.test.js",
|
|
89
|
-
"test:start": "borp --concurrency=1 --timeout=300000 test/start/*.test.js",
|
|
90
|
-
"test:multiple-workers": "borp --concurrency=1 --timeout=300000 test/multiple-workers/*.test.js",
|
|
86
|
+
"test:main": "borp --concurrency=1 --timeout=300000 test/*.test.js test/*.test.mjs test/versions/*.test.js test/versions/*.test.mjs",
|
|
87
|
+
"test:api": "borp --concurrency=1 --timeout=300000 test/api/*.test.js test/api/*.test.mjs test/management-api/*.test.js test/management-api/*.test.mjs",
|
|
88
|
+
"test:cli": "borp --concurrency=1 --timeout=300000 test/cli/*.test.js test/cli/*.test.mjs test/cli/**/*.test.js test/cli/**/*.test.mjs",
|
|
89
|
+
"test:start": "borp --concurrency=1 --timeout=300000 test/start/*.test.js test/start/*.test.mjs",
|
|
90
|
+
"test:multiple-workers": "borp --concurrency=1 --timeout=300000 test/multiple-workers/*.test.js test/multiple-workers/*.test.mjs",
|
|
91
91
|
"test:types": "tsd",
|
|
92
92
|
"coverage": "npm run lint && borp -X fixtures -X test -C --concurrency=1 --timeout=300000 && tsd",
|
|
93
93
|
"gen-schema": "node lib/schema.js > schema.json",
|
package/schema.json
CHANGED