@tillhub/schemas 6.174.0 → 6.176.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.176.0](https://github.com/tillhub/schemas/compare/v6.175.0...v6.176.0) (2022-11-24)
2
+
3
+
4
+ ### Features
5
+
6
+ * **configurations:** gastro ([28f5e8a](https://github.com/tillhub/schemas/commit/28f5e8a))
7
+
8
+ # [6.175.0](https://github.com/tillhub/schemas/compare/v6.174.0...v6.175.0) (2022-11-21)
9
+
10
+
11
+ ### Features
12
+
13
+ * **webview:** feature boolean ([4141b65](https://github.com/tillhub/schemas/commit/4141b65))
14
+
1
15
  # [6.174.0](https://github.com/tillhub/schemas/compare/v6.173.0...v6.174.0) (2022-11-21)
2
16
 
3
17
 
@@ -1,5 +1,3 @@
1
- const { oneOf } = require('../../../helpers/payload-or-null')
2
-
3
1
  module.exports = {
4
2
  savedcart: {
5
3
  type: 'boolean',
@@ -85,10 +83,8 @@ module.exports = {
85
83
  type: 'boolean',
86
84
  default: false
87
85
  },
88
- webview: oneOf({
89
- type: 'object',
90
- example: {
91
- enabled: false
92
- }
93
- })
86
+ web_view: {
87
+ type: 'boolean',
88
+ default: false
89
+ }
94
90
  }
@@ -44,7 +44,7 @@ module.exports = {
44
44
  type: 'integer',
45
45
  example: 15,
46
46
  minimum: 0,
47
- maximum: 3600,
47
+ maximum: 30, // to be on the safe side of Apple
48
48
  default: 25
49
49
  },
50
50
  log_level: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.174.0",
3
+ "version": "6.176.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",