@tillhub/schemas 6.206.0 → 6.207.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,11 @@
1
+ # [6.207.0](https://github.com/tillhub/schemas/compare/v6.206.0...v6.207.0) (2023-04-18)
2
+
3
+
4
+ ### Features
5
+
6
+ * **configurations:** features ([ab81b11](https://github.com/tillhub/schemas/commit/ab81b11))
7
+ * **configurations:** gastro ([58f7fc6](https://github.com/tillhub/schemas/commit/58f7fc6))
8
+
1
9
  # [6.206.0](https://github.com/tillhub/schemas/compare/v6.205.0...v6.206.0) (2023-04-14)
2
10
 
3
11
 
@@ -98,6 +98,17 @@ module.exports = oneOf({
98
98
  }
99
99
  }
100
100
  }),
101
+ wallets: oneOf({
102
+ type: 'object',
103
+ additionalProperties: false,
104
+ properties: {
105
+ enabled: {
106
+ description: 'Specifies if the wallets feature is available.',
107
+ type: 'boolean',
108
+ default: false
109
+ }
110
+ }
111
+ }),
101
112
  web_view: oneOf({
102
113
  description: 'Web view with js-interaction to iOS. Introduced by Regiondo project. Can not be used with Gastro.',
103
114
  type: 'object',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.206.0",
3
+ "version": "6.207.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",