@tillhub/schemas 6.343.1 → 6.344.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.344.0](https://github.com/tillhub/schemas/compare/v6.343.1...v6.344.0) (2024-10-15)
2
+
3
+
4
+ ### Features
5
+
6
+ * **configurations:** payments ([d78da65](https://github.com/tillhub/schemas/commit/d78da65))
7
+
1
8
  ## [6.343.1](https://github.com/tillhub/schemas/compare/v6.343.0...v6.343.1) (2024-10-15)
2
9
 
3
10
 
@@ -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.344.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",