@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 +7 -0
- package/lib/v0/branches/base.js +6 -0
- package/package.json +1 -1
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
|
|
package/lib/v0/branches/base.js
CHANGED
|
@@ -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
|
}
|