@tillhub/schemas 6.266.0 → 6.267.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 +12 -0
- package/lib/v1/configurations/items/carts.js +5 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# [6.267.0](https://github.com/tillhub/schemas/compare/v6.266.0...v6.267.0) (2023-10-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **configurations:** carts ([0906ffe](https://github.com/tillhub/schemas/commit/0906ffe))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **configurations:** carts ([5621298](https://github.com/tillhub/schemas/commit/5621298))
|
|
12
|
+
|
|
1
13
|
# [6.266.0](https://github.com/tillhub/schemas/compare/v6.265.0...v6.266.0) (2023-10-17)
|
|
2
14
|
|
|
3
15
|
|
|
@@ -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',
|