@tillhub/schemas 6.170.0 → 6.171.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.171.0](https://github.com/tillhub/schemas/compare/v6.170.0...v6.171.0) (2022-11-16)
2
+
3
+
4
+ ### Features
5
+
6
+ * **features:** fix webview ([c45fff5](https://github.com/tillhub/schemas/commit/c45fff5))
7
+
1
8
  # [6.170.0](https://github.com/tillhub/schemas/compare/v6.169.0...v6.170.0) (2022-11-16)
2
9
 
3
10
 
@@ -86,12 +86,9 @@ module.exports = {
86
86
  default: false
87
87
  },
88
88
  webview: oneOf({
89
- type: 'Object',
90
- properties: {
91
- enabled: {
92
- type: 'boolean',
93
- default: false
94
- }
89
+ type: 'object',
90
+ example: {
91
+ enabled: false
95
92
  }
96
93
  })
97
94
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.170.0",
3
+ "version": "6.171.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",