@tillhub/schemas 6.135.0 → 6.135.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.135.1](https://github.com/tillhub/schemas/compare/v6.135.0...v6.135.1) (2022-04-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **client_accounts:** Accept `regiondo` as valid Whitelabel and dashboard value when creating account ([87fc826](https://github.com/tillhub/schemas/commit/87fc826))
7
+
1
8
  # [6.135.0](https://github.com/tillhub/schemas/compare/v6.134.0...v6.135.0) (2022-04-13)
2
9
 
3
10
 
@@ -33,12 +33,14 @@ module.exports = {
33
33
  'default': 'tillhub_init'
34
34
  },
35
35
  dashboard: {
36
+ description: 'Defines this account\'s preferred dashboard',
36
37
  type: 'string',
37
38
  'enum': [
38
39
  'tillhub',
39
40
  'tillhub_legacy',
40
41
  'shore',
41
- 'localsearch'
42
+ 'localsearch',
43
+ 'regiondo'
42
44
  ],
43
45
  'default': 'tillhub'
44
46
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.135.0",
3
+ "version": "6.135.1",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",