@tillhub/schemas 6.405.0 → 6.407.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,18 @@
1
+ # [6.407.0](https://github.com/tillhub/schemas/compare/v6.406.0...v6.407.0) (2025-10-24)
2
+
3
+
4
+ ### Features
5
+
6
+ * **client_accounts:** feature flags ([8550c57](https://github.com/tillhub/schemas/commit/8550c57))
7
+
8
+ # [6.406.0](https://github.com/tillhub/schemas/compare/v6.405.0...v6.406.0) (2025-10-20)
9
+
10
+
11
+ ### Features
12
+
13
+ * **transactions:** legacy ([385403c](https://github.com/tillhub/schemas/commit/385403c))
14
+ * **transactions:** legacy ([209ed04](https://github.com/tillhub/schemas/commit/209ed04))
15
+
1
16
  # [6.405.0](https://github.com/tillhub/schemas/compare/v6.404.0...v6.405.0) (2025-10-14)
2
17
 
3
18
 
@@ -107,5 +107,20 @@ module.exports = {
107
107
  flat_pos: {
108
108
  type: 'boolean',
109
109
  default: false
110
+ },
111
+ gastro_basic: {
112
+ description: 'indicates usage of table managemnt and availability of v1 gastro tables',
113
+ type: 'boolean',
114
+ default: false
115
+ },
116
+ gastro_table_reservations: {
117
+ description: 'enables gastro table reservations and triggers gastro basic and the required migrations to v1 tables',
118
+ type: 'boolean',
119
+ default: false
120
+ },
121
+ gastro_table_reservations_sms_reminders: {
122
+ description: 'enables sms reminders for gastro table reservations',
123
+ type: 'boolean',
124
+ default: false
110
125
  }
111
126
  }
@@ -203,6 +203,11 @@ module.exports = {
203
203
  })
204
204
  }
205
205
  },
206
+ reservation_id: oneOf({
207
+ type: 'string',
208
+ format: 'uuid',
209
+ description: 'The identifier of the respective reservation object'
210
+ }),
206
211
  device: oneOf({
207
212
  ...deviceInfo
208
213
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.405.0",
3
+ "version": "6.407.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",