@tillhub/schemas 6.363.0 → 6.365.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,17 @@
|
|
|
1
|
+
# [6.365.0](https://github.com/tillhub/schemas/compare/v6.364.0...v6.365.0) (2025-02-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **client_accounts:** features ([10f0de5](https://github.com/tillhub/schemas/commit/10f0de5))
|
|
7
|
+
|
|
8
|
+
# [6.364.0](https://github.com/tillhub/schemas/compare/v6.363.0...v6.364.0) (2025-02-28)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **gastro-order-locks:** hash fix ([#1040](https://github.com/tillhub/schemas/issues/1040)) ([f8411de](https://github.com/tillhub/schemas/commit/f8411de))
|
|
14
|
+
|
|
1
15
|
# [6.363.0](https://github.com/tillhub/schemas/compare/v6.362.0...v6.363.0) (2025-02-28)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -63,6 +63,11 @@ module.exports = {
|
|
|
63
63
|
type: 'boolean',
|
|
64
64
|
default: false
|
|
65
65
|
},
|
|
66
|
+
floor_layouts: {
|
|
67
|
+
description: 'enables visual table layouts instead of just a grid on the POS - depends on gastro_tables',
|
|
68
|
+
type: 'boolean',
|
|
69
|
+
default: false
|
|
70
|
+
},
|
|
66
71
|
takeaway: {
|
|
67
72
|
type: 'boolean',
|
|
68
73
|
default: false
|
|
@@ -6,7 +6,7 @@ module.exports = {
|
|
|
6
6
|
$schema: 'http://json-schema.org/draft-07/schema#',
|
|
7
7
|
type: 'object',
|
|
8
8
|
additionalProperties: false,
|
|
9
|
-
required: ['register_id', 'branch_id', 'cashier_id', 'order_date', 'expires_at', 'status', '
|
|
9
|
+
required: ['register_id', 'branch_id', 'cashier_id', 'order_date', 'expires_at', 'status', 'hash'],
|
|
10
10
|
properties: base
|
|
11
11
|
},
|
|
12
12
|
response: {
|
|
@@ -14,7 +14,7 @@ module.exports = {
|
|
|
14
14
|
$schema: 'http://json-schema.org/draft-07/schema#',
|
|
15
15
|
type: 'object',
|
|
16
16
|
additionalProperties: false,
|
|
17
|
-
required: ['register_id', 'branch_id', 'cashier_id', 'order_date', 'expires_at', 'status', '
|
|
17
|
+
required: ['register_id', 'branch_id', 'cashier_id', 'order_date', 'expires_at', 'status', 'hash'],
|
|
18
18
|
properties: base
|
|
19
19
|
}
|
|
20
20
|
}
|