@tillhub/schemas 6.205.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,18 @@
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
+
9
+ # [6.206.0](https://github.com/tillhub/schemas/compare/v6.205.0...v6.206.0) (2023-04-14)
10
+
11
+
12
+ ### Features
13
+
14
+ * **configurations:** tips ([cb8afb7](https://github.com/tillhub/schemas/commit/cb8afb7))
15
+
1
16
  # [6.205.0](https://github.com/tillhub/schemas/compare/v6.204.0...v6.205.0) (2023-04-11)
2
17
 
3
18
 
@@ -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',
@@ -106,15 +106,7 @@ module.exports = oneOf({
106
106
  'enum': [
107
107
  'cash',
108
108
  'card',
109
- 'invoice',
110
- 'card_opi', // deprecated, use 'card' instead
111
- 'card_concardis', // deprecated, use 'card' instead
112
- 'card_tim', // deprecated, use 'card' instead
113
- 'card_adyen', // deprecated, use 'card' instead
114
- 'gift_card',
115
- 'default',
116
- 'undefined',
117
- 'voucher'
109
+ 'card_opi' // deprecated, use 'card' instead
118
110
  ]
119
111
  }
120
112
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.205.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",