@tillhub/schemas 6.90.1 → 6.90.2

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.90.2](https://github.com/tillhub/schemas/compare/v6.90.1...v6.90.2) (2021-09-23)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **loyalty_systems:** adjust min value for abocard system validity pe… ([#624](https://github.com/tillhub/schemas/issues/624)) ([be1b62e](https://github.com/tillhub/schemas/commit/be1b62e)), closes [#API-1017](https://github.com/tillhub/schemas/issues/API-1017)
7
+
1
8
  ## [6.90.1](https://github.com/tillhub/schemas/compare/v6.90.0...v6.90.1) (2021-09-23)
2
9
 
3
10
 
@@ -80,13 +80,15 @@ const request = {
80
80
  type: 'string',
81
81
  enum: [
82
82
  'years'
83
- ]
83
+ ],
84
+ default: 'years'
84
85
  },
85
86
  value: {
86
87
  description: 'The period value in given units',
87
88
  example: 3,
88
89
  type: 'number',
89
- minimum: 0
90
+ minimum: 1,
91
+ default: 3
90
92
  }
91
93
  }
92
94
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.90.1",
3
+ "version": "6.90.2",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",