@tillhub/schemas 6.327.0 → 6.329.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.329.0](https://github.com/tillhub/schemas/compare/v6.328.0...v6.329.0) (2024-07-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **transactions:** meta ([c6c9083](https://github.com/tillhub/schemas/commit/c6c9083))
|
|
7
|
+
|
|
8
|
+
# [6.328.0](https://github.com/tillhub/schemas/compare/v6.327.0...v6.328.0) (2024-07-24)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **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))
|
|
14
|
+
|
|
1
15
|
# [6.327.0](https://github.com/tillhub/schemas/compare/v6.326.0...v6.327.0) (2024-07-22)
|
|
2
16
|
|
|
3
17
|
|
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
|
}
|
|
@@ -68,11 +68,18 @@ module.exports = {
|
|
|
68
68
|
properties: {
|
|
69
69
|
identifier_for_vendor: oneOf({
|
|
70
70
|
type: 'string',
|
|
71
|
-
description: 'Current vendor identifier regardless of value stored in keychain'
|
|
71
|
+
description: 'Current vendor identifier regardless of value stored in keychain',
|
|
72
|
+
example: 'A2700DA6-CE09-4041-9724-1313DEF295E2'
|
|
72
73
|
}),
|
|
73
74
|
keychain_counting_numbers: oneOf({
|
|
74
75
|
type: 'string',
|
|
75
|
-
description: 'Snapshot of the keychain counting numbers table'
|
|
76
|
+
description: 'Snapshot of the keychain counting numbers table',
|
|
77
|
+
example: 'sale: 3, expense: 0, balance: 0, deliveryNote: 0, savedCart: 0, order: 1'
|
|
78
|
+
}),
|
|
79
|
+
app_info: oneOf({
|
|
80
|
+
type: 'string',
|
|
81
|
+
description: 'Application info currently reporting',
|
|
82
|
+
example: 'de.tillhub.tillhubstage.dev 1.0:0'
|
|
76
83
|
})
|
|
77
84
|
}
|
|
78
85
|
})
|
|
@@ -207,11 +207,18 @@ module.exports = {
|
|
|
207
207
|
properties: {
|
|
208
208
|
identifier_for_vendor: oneOf({
|
|
209
209
|
type: 'string',
|
|
210
|
-
description: 'Current vendor identifier regardless of value stored in keychain'
|
|
210
|
+
description: 'Current vendor identifier regardless of value stored in keychain',
|
|
211
|
+
example: 'A2700DA6-CE09-4041-9724-1313DEF295E2'
|
|
211
212
|
}),
|
|
212
213
|
keychain_counting_numbers: oneOf({
|
|
213
214
|
type: 'string',
|
|
214
|
-
description: 'Snapshot of the keychain counting numbers table'
|
|
215
|
+
description: 'Snapshot of the keychain counting numbers table',
|
|
216
|
+
example: 'sale: 3, expense: 0, balance: 0, deliveryNote: 0, savedCart: 0, order: 1'
|
|
217
|
+
}),
|
|
218
|
+
app_info: oneOf({
|
|
219
|
+
type: 'string',
|
|
220
|
+
description: 'Application info currently reporting',
|
|
221
|
+
example: 'de.tillhub.tillhubstage.dev 1.0:0'
|
|
215
222
|
})
|
|
216
223
|
}
|
|
217
224
|
}),
|