@tillhub/schemas 6.141.0 → 6.142.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.142.0](https://github.com/tillhub/schemas/compare/v6.141.0...v6.142.0) (2022-06-01)
2
+
3
+
4
+ ### Features
5
+
6
+ * **dashboard:** dashboard configuration ([d9613ce](https://github.com/tillhub/schemas/commit/d9613ce))
7
+
1
8
  # [6.141.0](https://github.com/tillhub/schemas/compare/v6.140.0...v6.141.0) (2022-05-30)
2
9
 
3
10
 
@@ -615,34 +615,10 @@ module.exports = {
615
615
  type: 'object',
616
616
  additionalProperties: false,
617
617
  properties: {
618
- availability: {
619
- type: 'string',
620
- 'enum': [
621
- 'legacy', // only the legacy dashboard (url) is available
622
- 'new', // only the new dashboard (url_new) is available
623
- 'both' // both dashboards are available and the user is prompted for selection
624
- ],
625
- default: 'legacy'
626
- },
627
618
  url: {
628
- description: 'URL of this account\'s perferred LEGACY dashboard',
629
- type: 'string' // client default kDashboardUrlLegacy is 'https://dashboard.tillhub.de' or 'https://awsxstaging.tillhub.de'
630
- },
631
- url_new: {
632
- description: 'URL of this account\'s perferred NEW dashboard',
619
+ description: 'URL of this account\'s dashboard',
633
620
  type: 'string' // client default kDashboardUrl is 'https://dashboard.tillhub.com' or 'https://staging-dashboard.tillhub.com'
634
621
  },
635
- auth: {
636
- description: ' -- client reads but does not use this, please provide a proper description --',
637
- oneOf: [
638
- {
639
- type: 'string'
640
- },
641
- {
642
- type: 'null'
643
- }
644
- ]
645
- },
646
622
  navigation_after_creation: oneOf({
647
623
  type: 'string',
648
624
  enum: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.141.0",
3
+ "version": "6.142.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",