@platformatic/foundation 3.56.0 → 3.57.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.
Files changed (2) hide show
  1. package/lib/schema.js +11 -0
  2. package/package.json +4 -4
package/lib/schema.js CHANGED
@@ -649,6 +649,16 @@ export const openTelemetryExporter = {
649
649
  path: {
650
650
  type: 'string',
651
651
  description: 'The path to write the traces to. Only for file exporter.'
652
+ },
653
+ protocol: {
654
+ type: 'string',
655
+ enum: ['http', 'grpc'],
656
+ description: 'The OTLP transport protocol to use. Only for the otlp exporter. Defaults to http.'
657
+ },
658
+ transport: {
659
+ type: 'string',
660
+ enum: ['http', 'grpc'],
661
+ description: 'Alias for protocol. Only for the otlp exporter. Defaults to http.'
652
662
  }
653
663
  }
654
664
  },
@@ -1211,6 +1221,7 @@ export const runtimeProperties = {
1211
1221
  },
1212
1222
  hostname: { type: 'string' },
1213
1223
  endpoint: { type: 'string' },
1224
+ https: server.properties.https,
1214
1225
  auth: {
1215
1226
  type: 'object',
1216
1227
  properties: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/foundation",
3
- "version": "3.56.0",
3
+ "version": "3.57.0",
4
4
  "description": "Platformatic Foundation",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -16,7 +16,7 @@
16
16
  },
17
17
  "homepage": "https://github.com/platformatic/platformatic#readme",
18
18
  "dependencies": {
19
- "@fastify/deepmerge": "^2.0.0",
19
+ "@fastify/deepmerge": "^3.0.0",
20
20
  "@fastify/error": "^4.0.0",
21
21
  "@iarna/toml": "^2.2.5",
22
22
  "@watchable/unpromise": "^1.0.2",
@@ -30,11 +30,11 @@
30
30
  "pino": "^9.9.0",
31
31
  "pino-pretty": "^13.0.0",
32
32
  "semver": "^7.6.3",
33
- "undici": "7.24.0",
33
+ "undici": "7.27.2",
34
34
  "yaml": "^2.4.1"
35
35
  },
36
36
  "devDependencies": {
37
- "c8": "^10.0.0",
37
+ "c8": "^11.0.0",
38
38
  "cleaner-spec-reporter": "^0.5.0",
39
39
  "eslint": "9",
40
40
  "fastify": "^5.7.0",