@tillhub/schemas 6.160.0 → 6.161.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.161.0](https://github.com/tillhub/schemas/compare/v6.160.0...v6.161.0) (2022-09-14)
2
+
3
+
4
+ ### Features
5
+
6
+ * **configurations:** ui ([b595365](https://github.com/tillhub/schemas/commit/b595365))
7
+
1
8
  # [6.160.0](https://github.com/tillhub/schemas/compare/v6.159.0...v6.160.0) (2022-09-09)
2
9
 
3
10
 
@@ -163,7 +163,18 @@ module.exports = {
163
163
  }
164
164
  })
165
165
  }
166
- }
166
+ },
167
+ sync: oneOf({
168
+ description: 'Sync UI view',
169
+ type: 'object',
170
+ properties: {
171
+ enabled: oneOf({
172
+ description: 'Defines if the Sync Details UI View comes up on tapping the sync wheel',
173
+ type: 'boolean',
174
+ default: false // 2022-09, might be changed as soon as 2022-12
175
+ })
176
+ }
177
+ })
167
178
  }
168
179
  })
169
180
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.160.0",
3
+ "version": "6.161.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",