@tillhub/schemas 6.405.0 → 6.406.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,11 @@
1
+ # [6.406.0](https://github.com/tillhub/schemas/compare/v6.405.0...v6.406.0) (2025-10-20)
2
+
3
+
4
+ ### Features
5
+
6
+ * **transactions:** legacy ([385403c](https://github.com/tillhub/schemas/commit/385403c))
7
+ * **transactions:** legacy ([209ed04](https://github.com/tillhub/schemas/commit/209ed04))
8
+
1
9
  # [6.405.0](https://github.com/tillhub/schemas/compare/v6.404.0...v6.405.0) (2025-10-14)
2
10
 
3
11
 
@@ -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.406.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",