@tillhub/schemas 6.158.0 → 6.159.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.159.0](https://github.com/tillhub/schemas/compare/v6.158.0...v6.159.0) (2022-09-09)
2
+
3
+
4
+ ### Features
5
+
6
+ * **configuration:** explicit parameter on the products route to indicate branch price stripping ([c450bc5](https://github.com/tillhub/schemas/commit/c450bc5))
7
+
1
8
  # [6.158.0](https://github.com/tillhub/schemas/compare/v6.157.2...v6.158.0) (2022-09-05)
2
9
 
3
10
 
@@ -101,6 +101,18 @@ module.exports = {
101
101
  }
102
102
  ]
103
103
  },
104
+ product_sync_strip_branch_prices: {
105
+ description: 'If true, product will get ONLY branch prices from current branch',
106
+ oneOf: [
107
+ {
108
+ type: 'null'
109
+ },
110
+ {
111
+ type: 'boolean',
112
+ default: false
113
+ }
114
+ ]
115
+ },
104
116
  product_number_length: {
105
117
  description: 'Auto product number length',
106
118
  oneOf: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.158.0",
3
+ "version": "6.159.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",