@tillhub/schemas 6.266.0 → 6.268.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,22 @@
1
+ # [6.268.0](https://github.com/tillhub/schemas/compare/v6.267.0...v6.268.0) (2023-10-20)
2
+
3
+
4
+ ### Features
5
+
6
+ * **reservations:** add feature flag ([#884](https://github.com/tillhub/schemas/issues/884)) ([4ddc303](https://github.com/tillhub/schemas/commit/4ddc303))
7
+
8
+ # [6.267.0](https://github.com/tillhub/schemas/compare/v6.266.0...v6.267.0) (2023-10-19)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **configurations:** carts ([0906ffe](https://github.com/tillhub/schemas/commit/0906ffe))
14
+
15
+
16
+ ### Features
17
+
18
+ * **configurations:** carts ([5621298](https://github.com/tillhub/schemas/commit/5621298))
19
+
1
20
  # [6.266.0](https://github.com/tillhub/schemas/compare/v6.265.0...v6.266.0) (2023-10-17)
2
21
 
3
22
 
@@ -86,5 +86,9 @@ module.exports = {
86
86
  web_view: {
87
87
  type: 'boolean',
88
88
  default: false
89
+ },
90
+ reservations: {
91
+ type: 'boolean',
92
+ default: false
89
93
  }
90
94
  }
@@ -9,6 +9,11 @@ module.exports = oneOf({
9
9
  type: 'boolean',
10
10
  default: true
11
11
  }),
12
+ enforce_integer_quantities: oneOf({
13
+ description: 'Specifies if only integer quantities are allowed -1, 1,2 etc. vs. decimal quantities like 1.62).',
14
+ type: 'boolean',
15
+ default: false
16
+ }),
12
17
  item_merge_policy: oneOf({
13
18
  description: 'Specifies how newly added products get merged into existing cart items.',
14
19
  type: 'string',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.266.0",
3
+ "version": "6.268.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",