@tillhub/schemas 6.188.0 → 6.189.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.189.0](https://github.com/tillhub/schemas/compare/v6.188.0...v6.189.0) (2023-02-02)
2
+
3
+
4
+ ### Features
5
+
6
+ * **configuration:** saved carts logs flag ([4cf480b](https://github.com/tillhub/schemas/commit/4cf480b))
7
+
1
8
  # [6.188.0](https://github.com/tillhub/schemas/compare/v6.187.0...v6.188.0) (2023-01-30)
2
9
 
3
10
 
@@ -128,6 +128,11 @@ module.exports = {
128
128
  type: 'boolean',
129
129
  default: true
130
130
  },
131
+ logs_enabled: {
132
+ description: 'Specifies if saved carts logging is enabled.',
133
+ type: 'boolean',
134
+ default: false
135
+ },
131
136
  confirm_deletion: {
132
137
  description: 'Specifies if the deletion of saved carts must be confirmed.',
133
138
  type: 'boolean',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.188.0",
3
+ "version": "6.189.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",