@tillhub/schemas 6.256.0 → 6.256.1

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.256.1](https://github.com/tillhub/schemas/compare/v6.256.0...v6.256.1) (2023-08-31)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **configuration:** add logo to be nullable, and delete wrong constraint for opening hours and leave ([52c7bba](https://github.com/tillhub/schemas/commit/52c7bba))
7
+
1
8
  # [6.256.0](https://github.com/tillhub/schemas/compare/v6.255.0...v6.256.0) (2023-08-30)
2
9
 
3
10
 
@@ -30,7 +30,10 @@ module.exports = {
30
30
  type: 'string'
31
31
  },
32
32
  logo: {
33
- type: 'string'
33
+ oneOf: [
34
+ { type: 'null' },
35
+ { type: 'string' }
36
+ ]
34
37
  },
35
38
  color: {
36
39
  type: 'string'
@@ -96,20 +99,16 @@ module.exports = {
96
99
  type: 'boolean'
97
100
  },
98
101
  open_from: {
99
- type: 'string',
100
- format: 'time'
102
+ type: 'string'
101
103
  },
102
104
  open_to: {
103
- type: 'string',
104
- format: 'time'
105
+ type: 'string'
105
106
  },
106
107
  break_from: {
107
- type: 'string',
108
- format: 'time'
108
+ type: 'string'
109
109
  },
110
110
  break_to: {
111
- type: 'string',
112
- format: 'time'
111
+ type: 'string'
113
112
  }
114
113
  }
115
114
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.256.0",
3
+ "version": "6.256.1",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",