@tillhub/schemas 6.398.0 → 6.400.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.400.0](https://github.com/tillhub/schemas/compare/v6.399.0...v6.400.0) (2025-09-16)
2
+
3
+
4
+ ### Features
5
+
6
+ * **permissions:** reservations ([b925c6a](https://github.com/tillhub/schemas/commit/b925c6a))
7
+
8
+ # [6.399.0](https://github.com/tillhub/schemas/compare/v6.398.0...v6.399.0) (2025-09-08)
9
+
10
+
11
+ ### Features
12
+
13
+ * **configurations:** gastro ([6f9e357](https://github.com/tillhub/schemas/commit/6f9e357))
14
+
1
15
  # [6.398.0](https://github.com/tillhub/schemas/compare/v6.397.0...v6.398.0) (2025-08-19)
2
16
 
3
17
 
@@ -141,7 +141,10 @@ module.exports.staff = {
141
141
  'staff:staff:wallets:assign', // Assign Waiter Wallets to Waiters
142
142
  'staff:staff:wallets:transfer', // Transfer cash between the main till and any Waiter Wallet to create the Starting Balance for a Wallet.
143
143
  'staff:staff:wallets:discrepancy', // Accept discrepancies for not matching closing balances for individual Waiter Wallets
144
- 'staff:staff:wallets:activation' // Activate and deactivate Waiter Wallets
144
+ 'staff:staff:wallets:activation', // Activate and deactivate Waiter Wallets
145
+ 'staff:staff:reservations:create', // User can create new reservations on iOS and calendar
146
+ 'staff:staff:reservations:update', // User can update reservations on iOS and calendar
147
+ 'staff:staff:reservations:delete' // User can delete reservations on iOS and calendar
145
148
  ]
146
149
  }
147
150
  }
@@ -39,6 +39,11 @@ module.exports = {
39
39
  description: 'defines whether remote access is available on the main POS.',
40
40
  default: 'false'
41
41
  },
42
+ drawer_open: oneOf({
43
+ type: 'boolean',
44
+ description: 'defines whether cash drawers will be automatically opened when checking out remotely.',
45
+ default: 'false'
46
+ }),
42
47
  background_release_seconds: {
43
48
  description: 'The time in seconds that the Local Server will stay available when the app is send to the background.',
44
49
  type: 'integer',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.398.0",
3
+ "version": "6.400.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",