@tillhub/schemas 6.393.0 → 6.394.1

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,17 @@
1
+ ## [6.394.1](https://github.com/tillhub/schemas/compare/v6.394.0...v6.394.1) (2025-06-24)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **table-reservation:** fix sortOrder to support null ([#1077](https://github.com/tillhub/schemas/issues/1077)) ([132a3bb](https://github.com/tillhub/schemas/commit/132a3bb))
7
+
8
+ # [6.394.0](https://github.com/tillhub/schemas/compare/v6.393.0...v6.394.0) (2025-06-23)
9
+
10
+
11
+ ### Features
12
+
13
+ * **registers:** device_configuration ([6752dbf](https://github.com/tillhub/schemas/commit/6752dbf))
14
+
1
15
  # [6.393.0](https://github.com/tillhub/schemas/compare/v6.392.0...v6.393.0) (2025-06-19)
2
16
 
3
17
 
@@ -2,6 +2,7 @@ const { stripIndents } = require('common-tags')
2
2
  const { oneOf, anyOf } = require('../../helpers/payload-or-null')
3
3
 
4
4
  const countingDecision = require('../../common/counting_decision')
5
+ const deviceInfo = require('../../common/device_info')
5
6
 
6
7
  module.exports = {
7
8
  name: {
@@ -441,7 +442,10 @@ module.exports = {
441
442
  type: 'null'
442
443
  }
443
444
  ]
444
- }
445
+ },
446
+ device_info: oneOf({
447
+ ...deviceInfo
448
+ })
445
449
  }
446
450
  },
447
451
  {
@@ -36,7 +36,14 @@ module.exports = {
36
36
  format: 'uuid'
37
37
  },
38
38
  sortOrder: {
39
- type: 'number'
39
+ oneOf: [
40
+ {
41
+ type: 'number'
42
+ },
43
+ {
44
+ type: 'null'
45
+ }
46
+ ]
40
47
  },
41
48
  type: {
42
49
  type: 'string'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.393.0",
3
+ "version": "6.394.1",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",