@tillhub/schemas 6.327.0 → 6.328.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,10 @@
1
+ # [6.328.0](https://github.com/tillhub/schemas/compare/v6.327.0...v6.328.0) (2024-07-24)
2
+
3
+
4
+ ### Features
5
+
6
+ * **reservation:** add available_in_online_booking flag to branch ([#981](https://github.com/tillhub/schemas/issues/981)) ([e530da7](https://github.com/tillhub/schemas/commit/e530da7))
7
+
1
8
  # [6.327.0](https://github.com/tillhub/schemas/compare/v6.326.0...v6.327.0) (2024-07-22)
2
9
 
3
10
 
@@ -548,5 +548,11 @@ module.exports = {
548
548
  example: 'false',
549
549
  type: 'boolean',
550
550
  default: false
551
+ },
552
+ available_in_online_booking: {
553
+ description: 'The Flag to indicate if the branch is available for online booking / reservation.',
554
+ example: 'false',
555
+ type: 'boolean',
556
+ default: true
551
557
  }
552
558
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.327.0",
3
+ "version": "6.328.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",