@tillhub/schemas 6.170.0 → 6.172.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,17 @@
1
+ # [6.172.0](https://github.com/tillhub/schemas/compare/v6.171.0...v6.172.0) (2022-11-17)
2
+
3
+
4
+ ### Features
5
+
6
+ * **features:** handle extra features ([9ba3e9e](https://github.com/tillhub/schemas/commit/9ba3e9e))
7
+
8
+ # [6.171.0](https://github.com/tillhub/schemas/compare/v6.170.0...v6.171.0) (2022-11-16)
9
+
10
+
11
+ ### Features
12
+
13
+ * **features:** fix webview ([c45fff5](https://github.com/tillhub/schemas/commit/c45fff5))
14
+
1
15
  # [6.170.0](https://github.com/tillhub/schemas/compare/v6.169.0...v6.170.0) (2022-11-16)
2
16
 
3
17
 
@@ -149,7 +149,7 @@ module.exports = {
149
149
  },
150
150
  features: {
151
151
  type: 'object',
152
- additionalProperties: false,
152
+ additionalProperties: true,
153
153
  description: 'Feature flags enabling/disabling current features.',
154
154
  properties: features
155
155
  },
@@ -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
  }
@@ -14,7 +14,7 @@ module.exports.features = {
14
14
  request: {
15
15
  $id: 'https://schemas.tillhub.com/v0/client_accounts.update.features.request.schema.json',
16
16
  $schema: 'http://json-schema.org/draft-07/schema#',
17
- additionalProperties: false,
17
+ additionalProperties: true,
18
18
  required: [],
19
19
  properties: features,
20
20
  type: 'object'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.170.0",
3
+ "version": "6.172.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",