@tillhub/schemas 6.337.0 → 6.338.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,10 @@
1
+ # [6.338.0](https://github.com/tillhub/schemas/compare/v6.337.0...v6.338.0) (2024-08-21)
2
+
3
+
4
+ ### Features
5
+
6
+ * **transactions:** cart_item ([ff21d8f](https://github.com/tillhub/schemas/commit/ff21d8f))
7
+
1
8
  # [6.337.0](https://github.com/tillhub/schemas/compare/v6.336.0...v6.337.0) (2024-08-19)
2
9
 
3
10
 
@@ -721,22 +721,22 @@ module.exports = {
721
721
  type: 'object',
722
722
  description: 'Item property changes triggered by a user decision.',
723
723
  properties: {
724
- tax_switched: {
724
+ tax_switched: oneOf({
725
725
  type: 'boolean'
726
- },
726
+ }),
727
727
  action: oneOf({
728
728
  type: 'object',
729
729
  properties: {
730
- tax: {
730
+ tax: oneOf({
731
731
  type: 'string',
732
732
  format: 'uuid'
733
- },
734
- default: {
733
+ }),
734
+ default: oneOf({
735
735
  type: 'boolean'
736
- },
737
- name: {
736
+ }),
737
+ name: oneOf({
738
738
  type: 'string'
739
- }
739
+ })
740
740
  }
741
741
  })
742
742
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.337.0",
3
+ "version": "6.338.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",