@tillhub/schemas 6.293.0 → 6.294.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.294.0](https://github.com/tillhub/schemas/compare/v6.293.0...v6.294.0) (2024-03-19)
2
+
3
+
4
+ ### Features
5
+
6
+ * **web_view:** icon configuration ([b0314a6](https://github.com/tillhub/schemas/commit/b0314a6))
7
+
1
8
  # [6.293.0](https://github.com/tillhub/schemas/compare/v6.292.0...v6.293.0) (2024-03-06)
2
9
 
3
10
 
@@ -214,6 +214,15 @@ module.exports = oneOf({
214
214
  minLength: 2,
215
215
  maxLength: 24
216
216
  },
217
+ type: oneOf({
218
+ description: 'Web view icon type',
219
+ type: 'string',
220
+ enum: [
221
+ 'none',
222
+ 'calendar'
223
+ ],
224
+ default: 'none'
225
+ }),
217
226
  log_level: {
218
227
  description: 'defines the granularity of the web api logging.',
219
228
  type: 'string',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.293.0",
3
+ "version": "6.294.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",