@platformatic/service 2.70.0 → 2.70.1
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 -0
- package/lib/stackable.js +1 -1
- package/package.json +12 -12
- package/schema.json +14 -2
package/config.d.ts
CHANGED
package/lib/stackable.js
CHANGED
|
@@ -138,7 +138,7 @@ class ServiceStackable {
|
|
|
138
138
|
composer: {
|
|
139
139
|
prefix: config.basePath ?? this.basePath ?? this.context?.serviceId,
|
|
140
140
|
wantsAbsoluteUrls: false,
|
|
141
|
-
|
|
141
|
+
needsRootTrailingSlash: false,
|
|
142
142
|
tcp: !!this.app?.url,
|
|
143
143
|
url: this.app?.url
|
|
144
144
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/service",
|
|
3
|
-
"version": "2.70.
|
|
3
|
+
"version": "2.70.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@fastify/static": "^8.0.0",
|
|
47
47
|
"@fastify/swagger": "^9.0.0",
|
|
48
48
|
"@fastify/under-pressure": "^9.0.0",
|
|
49
|
-
"@scalar/fastify-api-reference": "1.31.
|
|
49
|
+
"@scalar/fastify-api-reference": "1.31.14",
|
|
50
50
|
"@types/ws": "^8.5.10",
|
|
51
51
|
"ajv": "^8.12.0",
|
|
52
52
|
"cli-progress": "^3.12.0",
|
|
@@ -75,18 +75,18 @@
|
|
|
75
75
|
"rfdc": "^1.3.1",
|
|
76
76
|
"semgrator": "^0.3.0",
|
|
77
77
|
"undici": "^7.0.0",
|
|
78
|
-
"@platformatic/client": "2.70.
|
|
79
|
-
"@platformatic/config": "2.70.
|
|
80
|
-
"@platformatic/
|
|
81
|
-
"@platformatic/scalar-theme": "2.70.
|
|
82
|
-
"@platformatic/
|
|
83
|
-
"@platformatic/telemetry": "2.70.
|
|
84
|
-
"@platformatic/ts-compiler": "2.70.
|
|
85
|
-
"@platformatic/utils": "2.70.
|
|
78
|
+
"@platformatic/client": "2.70.1",
|
|
79
|
+
"@platformatic/config": "2.70.1",
|
|
80
|
+
"@platformatic/generators": "2.70.1",
|
|
81
|
+
"@platformatic/scalar-theme": "2.70.1",
|
|
82
|
+
"@platformatic/metrics": "2.70.1",
|
|
83
|
+
"@platformatic/telemetry": "2.70.1",
|
|
84
|
+
"@platformatic/ts-compiler": "2.70.1",
|
|
85
|
+
"@platformatic/utils": "2.70.1"
|
|
86
86
|
},
|
|
87
87
|
"scripts": {
|
|
88
|
-
"test": "pnpm run lint && borp -T --concurrency=1 --timeout=
|
|
89
|
-
"unit": "borp --pattern 'test/**/*.test.{js,mjs}' --ignore 'fixtures/**/*' --concurrency=1 --timeout=
|
|
88
|
+
"test": "pnpm run lint && borp -T --concurrency=1 --timeout=1200000 && tsd",
|
|
89
|
+
"unit": "borp --pattern 'test/**/*.test.{js,mjs}' --ignore 'fixtures/**/*' --concurrency=1 --timeout=1200000 --no-typescript",
|
|
90
90
|
"gen-schema": "node lib/schema.js > schema.json",
|
|
91
91
|
"gen-types": "json2ts > config.d.ts < schema.json",
|
|
92
92
|
"build": "pnpm run gen-schema && pnpm run gen-types",
|
package/schema.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/service/2.70.
|
|
3
|
-
"version": "2.70.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/service/2.70.1.json",
|
|
3
|
+
"version": "2.70.1",
|
|
4
4
|
"title": "Platformatic Service",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
@@ -2066,6 +2066,18 @@
|
|
|
2066
2066
|
],
|
|
2067
2067
|
"default": 300000
|
|
2068
2068
|
},
|
|
2069
|
+
"messagingTimeout": {
|
|
2070
|
+
"anyOf": [
|
|
2071
|
+
{
|
|
2072
|
+
"type": "number",
|
|
2073
|
+
"minimum": 1
|
|
2074
|
+
},
|
|
2075
|
+
{
|
|
2076
|
+
"type": "string"
|
|
2077
|
+
}
|
|
2078
|
+
],
|
|
2079
|
+
"default": 30000
|
|
2080
|
+
},
|
|
2069
2081
|
"env": {
|
|
2070
2082
|
"type": "object",
|
|
2071
2083
|
"additionalProperties": {
|