@tillhub/schemas 6.343.1 → 6.345.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.345.0](https://github.com/tillhub/schemas/compare/v6.344.0...v6.345.0) (2024-10-16)
2
+
3
+
4
+ ### Features
5
+
6
+ * **client-accounts:** Create new feature flag flat pos - UOD-887 ([b66defe](https://github.com/tillhub/schemas/commit/b66defe))
7
+
8
+ # [6.344.0](https://github.com/tillhub/schemas/compare/v6.343.1...v6.344.0) (2024-10-15)
9
+
10
+
11
+ ### Features
12
+
13
+ * **configurations:** payments ([d78da65](https://github.com/tillhub/schemas/commit/d78da65))
14
+
1
15
  ## [6.343.1](https://github.com/tillhub/schemas/compare/v6.343.0...v6.343.1) (2024-10-15)
2
16
 
3
17
 
@@ -98,5 +98,9 @@ module.exports = {
98
98
  sms_reminder_notification: {
99
99
  type: 'boolean',
100
100
  default: false
101
+ },
102
+ flat_pos: {
103
+ type: 'boolean',
104
+ default: false
101
105
  }
102
106
  }
@@ -54,6 +54,11 @@ module.exports = {
54
54
  default: false,
55
55
  type: 'boolean'
56
56
  }),
57
+ show_foreign_currencies: oneOf({
58
+ description: 'If true, show also payment options outside the currently used one. This still will ot have any effect on payments!',
59
+ default: false,
60
+ type: 'boolean'
61
+ }),
57
62
  allow_change_on_undefined: oneOf({
58
63
  description: 'If true, allows entering values for split payments that are higher than the remaining price - thus potentially handing back cash (legacy behavior).',
59
64
  default: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.343.1",
3
+ "version": "6.345.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",