@tillhub/schemas 6.415.0 → 6.417.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/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ # [6.417.0](https://github.com/tillhub/schemas/compare/v6.416.0...v6.417.0) (2026-01-08)
2
+
3
+
4
+ ### Features
5
+
6
+ * **configuration:** add themes.dashboard.branding to configuration ([#1106](https://github.com/tillhub/schemas/issues/1106)) ([86be0b0](https://github.com/tillhub/schemas/commit/86be0b0))
7
+
8
+ # [6.416.0](https://github.com/tillhub/schemas/compare/v6.415.0...v6.416.0) (2025-12-16)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **configuration:** increase maxLength for string type from 32 to 64 ([#1102](https://github.com/tillhub/schemas/issues/1102)) ([3e37806](https://github.com/tillhub/schemas/commit/3e37806))
14
+
15
+
16
+ ### Features
17
+
18
+ * **configuration:** increase maxLength for string type from 32 to 64 ([#1104](https://github.com/tillhub/schemas/issues/1104)) ([ff23446](https://github.com/tillhub/schemas/commit/ff23446))
19
+ * **configuration:** trigger ([#1105](https://github.com/tillhub/schemas/issues/1105)) ([02bf9b9](https://github.com/tillhub/schemas/commit/02bf9b9))
20
+
1
21
  # [6.415.0](https://github.com/tillhub/schemas/compare/v6.414.0...v6.415.0) (2025-12-09)
2
22
 
3
23
 
@@ -40,7 +40,7 @@ module.exports = {
40
40
  },
41
41
  {
42
42
  type: 'string',
43
- maxLength: 32
43
+ maxLength: 64
44
44
  }
45
45
  ]
46
46
  },
@@ -64,6 +64,9 @@ module.exports = {
64
64
  },
65
65
  colors: {
66
66
  type: 'object'
67
+ },
68
+ branding: {
69
+ type: 'string'
67
70
  }
68
71
  },
69
72
  required: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.415.0",
3
+ "version": "6.417.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",