@platformatic/service 2.9.1 → 2.10.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 +0 -2
- package/package.json +10 -10
- package/schema.json +15 -7
package/config.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/service",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.10.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -71,19 +71,19 @@
|
|
|
71
71
|
"my-ua-parser": "^2.0.2",
|
|
72
72
|
"ora": "^6.3.1",
|
|
73
73
|
"pino": "^9.0.0",
|
|
74
|
-
"pino-pretty": "^
|
|
74
|
+
"pino-pretty": "^12.0.0",
|
|
75
75
|
"prom-client": "^15.1.2",
|
|
76
76
|
"rfdc": "^1.3.1",
|
|
77
77
|
"semgrator": "^0.3.0",
|
|
78
78
|
"undici": "^6.9.0",
|
|
79
|
-
"@platformatic/client": "2.
|
|
80
|
-
"@platformatic/config": "2.
|
|
81
|
-
"@platformatic/
|
|
82
|
-
"@platformatic/scalar-theme": "2.
|
|
83
|
-
"@platformatic/
|
|
84
|
-
"@platformatic/
|
|
85
|
-
"@platformatic/
|
|
86
|
-
"@platformatic/utils": "2.
|
|
79
|
+
"@platformatic/client": "2.10.0",
|
|
80
|
+
"@platformatic/config": "2.10.0",
|
|
81
|
+
"@platformatic/generators": "2.10.0",
|
|
82
|
+
"@platformatic/scalar-theme": "2.10.0",
|
|
83
|
+
"@platformatic/metrics": "2.10.0",
|
|
84
|
+
"@platformatic/ts-compiler": "2.10.0",
|
|
85
|
+
"@platformatic/telemetry": "2.10.0",
|
|
86
|
+
"@platformatic/utils": "2.10.0"
|
|
87
87
|
},
|
|
88
88
|
"scripts": {
|
|
89
89
|
"test": "pnpm run lint && borp -T --concurrency=1 --timeout=300000 && tsd",
|
package/schema.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/service/2.
|
|
3
|
-
"version": "2.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/service/2.10.0.json",
|
|
3
|
+
"version": "2.10.0",
|
|
4
4
|
"title": "Platformatic Service",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
@@ -139,17 +139,25 @@
|
|
|
139
139
|
"type": "object",
|
|
140
140
|
"properties": {
|
|
141
141
|
"target": {
|
|
142
|
-
"
|
|
143
|
-
|
|
142
|
+
"anyOf": [
|
|
143
|
+
{
|
|
144
|
+
"type": "string",
|
|
145
|
+
"resolveModule": true
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"type": "string",
|
|
149
|
+
"resolvePath": true
|
|
150
|
+
}
|
|
151
|
+
]
|
|
144
152
|
},
|
|
145
153
|
"options": {
|
|
146
154
|
"type": "object"
|
|
147
155
|
},
|
|
148
156
|
"level": {
|
|
149
157
|
"type": "string"
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
"additionalProperties": false
|
|
153
161
|
}
|
|
154
162
|
},
|
|
155
163
|
"options": {
|