@tillhub/schemas 6.323.2 → 6.325.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.325.0](https://github.com/tillhub/schemas/compare/v6.324.0...v6.325.0) (2024-07-11)
2
+
3
+
4
+ ### Features
5
+
6
+ * **configurations:** features ([3ca266e](https://github.com/tillhub/schemas/commit/3ca266e))
7
+
8
+ # [6.324.0](https://github.com/tillhub/schemas/compare/v6.323.2...v6.324.0) (2024-07-11)
9
+
10
+
11
+ ### Features
12
+
13
+ * **configurations:** features ([b039670](https://github.com/tillhub/schemas/commit/b039670))
14
+
1
15
  ## [6.323.2](https://github.com/tillhub/schemas/compare/v6.323.1...v6.323.2) (2024-07-05)
2
16
 
3
17
 
@@ -202,6 +202,16 @@ module.exports = oneOf({
202
202
  type: 'boolean',
203
203
  default: false
204
204
  },
205
+ suppress_errors: oneOf({
206
+ description: 'Specifies if error messages should be suppressed on the UI',
207
+ type: 'boolean',
208
+ default: false
209
+ }),
210
+ sale_confirmation: oneOf({
211
+ description: 'Specifies if sale confirmation is indicated',
212
+ type: 'boolean',
213
+ default: true
214
+ }),
205
215
  url: {
206
216
  description: 'The URL of the web view',
207
217
  type: 'string',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.323.2",
3
+ "version": "6.325.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",