@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
|
|
package/lib/v1/registers/base.js
CHANGED
|
@@ -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
|
{
|