wattpm 2.12.0 → 2.13.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/package.json +7 -7
  2. package/schema.json +13 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wattpm",
3
- "version": "2.12.0",
3
+ "version": "2.13.0",
4
4
  "description": "The Node.js Application Server",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -34,11 +34,11 @@
34
34
  "pino-pretty": "^13.0.0",
35
35
  "split2": "^4.2.0",
36
36
  "table": "^6.8.2",
37
- "@platformatic/basic": "2.12.0",
38
- "@platformatic/config": "2.12.0",
39
- "@platformatic/control": "2.12.0",
40
- "@platformatic/runtime": "2.12.0",
41
- "@platformatic/utils": "2.12.0"
37
+ "@platformatic/basic": "2.13.0",
38
+ "@platformatic/config": "2.13.0",
39
+ "@platformatic/utils": "2.13.0",
40
+ "@platformatic/control": "2.13.0",
41
+ "@platformatic/runtime": "2.13.0"
42
42
  },
43
43
  "devDependencies": {
44
44
  "borp": "^0.18.0",
@@ -48,7 +48,7 @@
48
48
  "neostandard": "^0.11.1",
49
49
  "typescript": "^5.5.4",
50
50
  "undici": "^6.19.8",
51
- "@platformatic/node": "2.12.0"
51
+ "@platformatic/node": "2.13.0"
52
52
  },
53
53
  "scripts": {
54
54
  "test": "npm run lint && borp --concurrency=1 --timeout=300000",
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/wattpm/2.12.0.json",
2
+ "$id": "https://schemas.platformatic.dev/wattpm/2.13.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "type": "object",
5
5
  "properties": {
@@ -980,7 +980,8 @@
980
980
  "console",
981
981
  "otlp",
982
982
  "zipkin",
983
- "memory"
983
+ "memory",
984
+ "file"
984
985
  ],
985
986
  "default": "console"
986
987
  },
@@ -995,6 +996,10 @@
995
996
  "headers": {
996
997
  "type": "object",
997
998
  "description": "Headers to send to the exporter. Not used for console or memory exporters."
999
+ },
1000
+ "path": {
1001
+ "type": "string",
1002
+ "description": "The path to write the traces to. Only for file exporter."
998
1003
  }
999
1004
  }
1000
1005
  },
@@ -1011,7 +1016,8 @@
1011
1016
  "console",
1012
1017
  "otlp",
1013
1018
  "zipkin",
1014
- "memory"
1019
+ "memory",
1020
+ "file"
1015
1021
  ],
1016
1022
  "default": "console"
1017
1023
  },
@@ -1026,6 +1032,10 @@
1026
1032
  "headers": {
1027
1033
  "type": "object",
1028
1034
  "description": "Headers to send to the exporter. Not used for console or memory exporters."
1035
+ },
1036
+ "path": {
1037
+ "type": "string",
1038
+ "description": "The path to write the traces to. Only for file exporter."
1029
1039
  }
1030
1040
  }
1031
1041
  },