@tillhub/schemas 6.308.0 → 6.308.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,17 @@
1
+ ## [6.308.2](https://github.com/tillhub/schemas/compare/v6.308.1...v6.308.2) (2024-05-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **pdf:** fix for exporting pdf with negative total_price_include_vat ([#953](https://github.com/tillhub/schemas/issues/953)) ([ed4c3d4](https://github.com/tillhub/schemas/commit/ed4c3d4))
7
+
8
+ ## [6.308.1](https://github.com/tillhub/schemas/compare/v6.308.0...v6.308.1) (2024-05-14)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **vouchers:** added missing filter ([84ed910](https://github.com/tillhub/schemas/commit/84ed910))
14
+
1
15
  # [6.308.0](https://github.com/tillhub/schemas/compare/v6.307.0...v6.308.0) (2024-05-14)
2
16
 
3
17
 
@@ -199,7 +199,6 @@ module.exports = {
199
199
  type: 'number',
200
200
  description: 'Total price without discounts',
201
201
  example: '27.55', // == 27.55 Euros
202
- minimum: 0,
203
202
  multipleOf: 0.01
204
203
  },
205
204
  currency: {
@@ -40,6 +40,13 @@ module.exports = {
40
40
  'false'
41
41
  ]
42
42
  },
43
+ restriction_single_transaction: {
44
+ type: 'string',
45
+ enum: [
46
+ 'true',
47
+ 'false'
48
+ ]
49
+ },
43
50
  partial_redemption: {
44
51
  type: 'string',
45
52
  enum: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.308.0",
3
+ "version": "6.308.2",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",