@tillhub/schemas 6.292.0 → 6.293.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,10 @@
1
+ # [6.293.0](https://github.com/tillhub/schemas/compare/v6.292.0...v6.293.0) (2024-03-06)
2
+
3
+
4
+ ### Features
5
+
6
+ * **customers:** make lastname nullable ([275a9e1](https://github.com/tillhub/schemas/commit/275a9e1))
7
+
1
8
  # [6.292.0](https://github.com/tillhub/schemas/compare/v6.291.0...v6.292.0) (2024-03-01)
2
9
 
3
10
 
@@ -26,8 +26,10 @@ module.exports = {
26
26
  lastname: {
27
27
  example: 'Fett',
28
28
  description: 'Last name',
29
- type: 'string',
30
- maxLength: 128
29
+ ...anyOf({
30
+ type: 'string',
31
+ maxLength: 128
32
+ })
31
33
  },
32
34
  middlename: {
33
35
  description: 'Middle name',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.292.0",
3
+ "version": "6.293.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",