@tillhub/schemas 6.415.0 → 6.416.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,16 @@
1
+ # [6.416.0](https://github.com/tillhub/schemas/compare/v6.415.0...v6.416.0) (2025-12-16)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **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))
7
+
8
+
9
+ ### Features
10
+
11
+ * **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))
12
+ * **configuration:** trigger ([#1105](https://github.com/tillhub/schemas/issues/1105)) ([02bf9b9](https://github.com/tillhub/schemas/commit/02bf9b9))
13
+
1
14
  # [6.415.0](https://github.com/tillhub/schemas/compare/v6.414.0...v6.415.0) (2025-12-09)
2
15
 
3
16
 
@@ -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
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.415.0",
3
+ "version": "6.416.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",