@tillhub/schemas 6.329.0 → 6.331.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.331.0](https://github.com/tillhub/schemas/compare/v6.330.0...v6.331.0) (2024-08-05)
2
+
3
+
4
+ ### Features
5
+
6
+ * **configurations:** interfaces ([8592ff7](https://github.com/tillhub/schemas/commit/8592ff7))
7
+
8
+ # [6.330.0](https://github.com/tillhub/schemas/compare/v6.329.0...v6.330.0) (2024-08-01)
9
+
10
+
11
+ ### Features
12
+
13
+ * **reservation:** add available_in_online_booking to branch_group schema ([#983](https://github.com/tillhub/schemas/issues/983)) ([789a6b6](https://github.com/tillhub/schemas/commit/789a6b6))
14
+
1
15
  # [6.329.0](https://github.com/tillhub/schemas/compare/v6.328.0...v6.329.0) (2024-07-30)
2
16
 
3
17
 
@@ -59,5 +59,9 @@ module.exports = {
59
59
  description: 'Soft delete this branch group.',
60
60
  type: 'boolean',
61
61
  default: false
62
+ },
63
+ available_in_online_booking: {
64
+ description: 'Branches in this group are available for online booking.',
65
+ type: 'boolean'
62
66
  }
63
67
  }
@@ -68,6 +68,11 @@ module.exports = {
68
68
  'payment_view'
69
69
  ]
70
70
  }
71
+ }),
72
+ allow_force_narrow: oneOf({
73
+ description: 'Potentially allow forcing 60mm-print on 80mm-printers via UI toggle ',
74
+ type: 'boolean',
75
+ default: false
71
76
  })
72
77
  }
73
78
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.329.0",
3
+ "version": "6.331.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",