wattpm 2.62.0 → 2.63.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 +8 -8
  2. package/schema.json +41 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wattpm",
3
- "version": "2.62.0",
3
+ "version": "2.63.0",
4
4
  "description": "The Node.js Application Server",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -36,21 +36,21 @@
36
36
  "semver": "^7.7.0",
37
37
  "split2": "^4.2.0",
38
38
  "table": "^6.8.2",
39
- "@platformatic/basic": "2.62.0",
40
- "@platformatic/config": "2.62.0",
41
- "@platformatic/control": "2.62.0",
42
- "@platformatic/utils": "2.62.0",
43
- "@platformatic/runtime": "2.62.0"
39
+ "@platformatic/basic": "2.63.0",
40
+ "@platformatic/runtime": "2.63.0",
41
+ "@platformatic/control": "2.63.0",
42
+ "@platformatic/utils": "2.63.0",
43
+ "@platformatic/config": "2.63.0"
44
44
  },
45
45
  "devDependencies": {
46
- "borp": "^0.19.0",
46
+ "borp": "^0.20.0",
47
47
  "eslint": "9",
48
48
  "inspector-client": "^0.2.0",
49
49
  "json-schema-to-typescript": "^15.0.0",
50
50
  "neostandard": "^0.12.0",
51
51
  "typescript": "^5.5.4",
52
52
  "undici": "^7.0.0",
53
- "@platformatic/node": "2.62.0"
53
+ "@platformatic/node": "2.63.0"
54
54
  },
55
55
  "scripts": {
56
56
  "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.62.0.json",
2
+ "$id": "https://schemas.platformatic.dev/wattpm/2.63.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "type": "object",
5
5
  "properties": {
@@ -733,6 +733,46 @@
733
733
  }
734
734
  },
735
735
  "additionalProperties": false
736
+ },
737
+ "formatters": {
738
+ "type": "object",
739
+ "properties": {
740
+ "path": {
741
+ "type": "string",
742
+ "resolvePath": true
743
+ }
744
+ },
745
+ "required": [
746
+ "path"
747
+ ],
748
+ "additionalProperties": false
749
+ },
750
+ "timestamp": {
751
+ "enum": [
752
+ "epochTime",
753
+ "unixTime",
754
+ "nullTime",
755
+ "isoTime"
756
+ ]
757
+ },
758
+ "redact": {
759
+ "type": "object",
760
+ "properties": {
761
+ "paths": {
762
+ "type": "array",
763
+ "items": {
764
+ "type": "string"
765
+ }
766
+ },
767
+ "censor": {
768
+ "type": "string",
769
+ "default": "[redacted]"
770
+ }
771
+ },
772
+ "required": [
773
+ "paths"
774
+ ],
775
+ "additionalProperties": false
736
776
  }
737
777
  },
738
778
  "required": [