@tillhub/schemas 6.394.0 → 6.395.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.395.0](https://github.com/tillhub/schemas/compare/v6.394.1...v6.395.0) (2025-07-01)
2
+
3
+
4
+ ### Features
5
+
6
+ * **configurations:** gastro ([e578bc7](https://github.com/tillhub/schemas/commit/e578bc7))
7
+
8
+ ## [6.394.1](https://github.com/tillhub/schemas/compare/v6.394.0...v6.394.1) (2025-06-24)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **table-reservation:** fix sortOrder to support null ([#1077](https://github.com/tillhub/schemas/issues/1077)) ([132a3bb](https://github.com/tillhub/schemas/commit/132a3bb))
14
+
1
15
  # [6.394.0](https://github.com/tillhub/schemas/compare/v6.393.0...v6.394.0) (2025-06-23)
2
16
 
3
17
 
@@ -83,6 +83,17 @@ module.exports = {
83
83
  default: 25
84
84
  })
85
85
  }
86
+ }),
87
+ history: oneOf({
88
+ type: 'object',
89
+ description: 'Defines data on the Orderpro history view',
90
+ properties: {
91
+ transactions: oneOf({
92
+ description: 'Specifies if Orderpro should fetch transactions to potentially process cancellations and refunds',
93
+ type: 'boolean',
94
+ default: false
95
+ })
96
+ }
86
97
  })
87
98
  }
88
99
  }),
@@ -36,7 +36,14 @@ module.exports = {
36
36
  format: 'uuid'
37
37
  },
38
38
  sortOrder: {
39
- type: 'number'
39
+ oneOf: [
40
+ {
41
+ type: 'number'
42
+ },
43
+ {
44
+ type: 'null'
45
+ }
46
+ ]
40
47
  },
41
48
  type: {
42
49
  type: 'string'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.394.0",
3
+ "version": "6.395.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",