@platformatic/composer 3.38.1 → 3.39.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/package.json +3 -3
- package/schema.json +73 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/composer",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.39.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"json-schema-to-typescript": "^15.0.0"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@platformatic/foundation": "3.
|
|
27
|
-
"@platformatic/gateway": "3.
|
|
26
|
+
"@platformatic/foundation": "3.39.0",
|
|
27
|
+
"@platformatic/gateway": "3.39.0"
|
|
28
28
|
},
|
|
29
29
|
"engines": {
|
|
30
30
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/composer/3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/composer/3.39.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Composer Config",
|
|
5
5
|
"type": "object",
|
|
@@ -237,6 +237,26 @@
|
|
|
237
237
|
"customLevels": {
|
|
238
238
|
"type": "object",
|
|
239
239
|
"additionalProperties": true
|
|
240
|
+
},
|
|
241
|
+
"openTelemetryExporter": {
|
|
242
|
+
"type": "object",
|
|
243
|
+
"properties": {
|
|
244
|
+
"protocol": {
|
|
245
|
+
"type": "string",
|
|
246
|
+
"enum": [
|
|
247
|
+
"grpc",
|
|
248
|
+
"http"
|
|
249
|
+
]
|
|
250
|
+
},
|
|
251
|
+
"url": {
|
|
252
|
+
"type": "string"
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
"required": [
|
|
256
|
+
"protocol",
|
|
257
|
+
"url"
|
|
258
|
+
],
|
|
259
|
+
"additionalProperties": false
|
|
240
260
|
}
|
|
241
261
|
},
|
|
242
262
|
"default": {},
|
|
@@ -1233,6 +1253,26 @@
|
|
|
1233
1253
|
"customLevels": {
|
|
1234
1254
|
"type": "object",
|
|
1235
1255
|
"additionalProperties": true
|
|
1256
|
+
},
|
|
1257
|
+
"openTelemetryExporter": {
|
|
1258
|
+
"type": "object",
|
|
1259
|
+
"properties": {
|
|
1260
|
+
"protocol": {
|
|
1261
|
+
"type": "string",
|
|
1262
|
+
"enum": [
|
|
1263
|
+
"grpc",
|
|
1264
|
+
"http"
|
|
1265
|
+
]
|
|
1266
|
+
},
|
|
1267
|
+
"url": {
|
|
1268
|
+
"type": "string"
|
|
1269
|
+
}
|
|
1270
|
+
},
|
|
1271
|
+
"required": [
|
|
1272
|
+
"protocol",
|
|
1273
|
+
"url"
|
|
1274
|
+
],
|
|
1275
|
+
"additionalProperties": false
|
|
1236
1276
|
}
|
|
1237
1277
|
},
|
|
1238
1278
|
"default": {},
|
|
@@ -3082,6 +3122,38 @@
|
|
|
3082
3122
|
{
|
|
3083
3123
|
"type": "object",
|
|
3084
3124
|
"properties": {
|
|
3125
|
+
"methods": {
|
|
3126
|
+
"type": "array",
|
|
3127
|
+
"items": {
|
|
3128
|
+
"type": "string",
|
|
3129
|
+
"enum": [
|
|
3130
|
+
"GET",
|
|
3131
|
+
"POST",
|
|
3132
|
+
"PUT",
|
|
3133
|
+
"DELETE",
|
|
3134
|
+
"PATCH",
|
|
3135
|
+
"OPTIONS"
|
|
3136
|
+
]
|
|
3137
|
+
},
|
|
3138
|
+
"default": [
|
|
3139
|
+
"GET",
|
|
3140
|
+
"POST",
|
|
3141
|
+
"PUT",
|
|
3142
|
+
"DELETE",
|
|
3143
|
+
"PATCH",
|
|
3144
|
+
"OPTIONS"
|
|
3145
|
+
]
|
|
3146
|
+
},
|
|
3147
|
+
"routes": {
|
|
3148
|
+
"type": "array",
|
|
3149
|
+
"items": {
|
|
3150
|
+
"type": "string"
|
|
3151
|
+
},
|
|
3152
|
+
"default": [
|
|
3153
|
+
"/",
|
|
3154
|
+
"/*"
|
|
3155
|
+
]
|
|
3156
|
+
},
|
|
3085
3157
|
"upstream": {
|
|
3086
3158
|
"type": "string"
|
|
3087
3159
|
},
|