@tillhub/schemas 6.216.0 → 6.217.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.217.0](https://github.com/tillhub/schemas/compare/v6.216.0...v6.217.0) (2023-05-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **balances:** payments ([a1bd0d2](https://github.com/tillhub/schemas/commit/a1bd0d2))
|
|
7
|
+
|
|
1
8
|
# [6.216.0](https://github.com/tillhub/schemas/compare/v6.215.0...v6.216.0) (2023-05-23)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -26,13 +26,6 @@ module.exports = {
|
|
|
26
26
|
example: '5ad2351d-9a67-45f9-ad4f-0abcbefa9037',
|
|
27
27
|
description: 'The payment_option ressource id'
|
|
28
28
|
},
|
|
29
|
-
payment_option_id: {
|
|
30
|
-
...oneOf({
|
|
31
|
-
type: 'integer',
|
|
32
|
-
example: 131,
|
|
33
|
-
description: 'Legacy id of the payment option'
|
|
34
|
-
})
|
|
35
|
-
},
|
|
36
29
|
payment_option_name: {
|
|
37
30
|
...oneOf({
|
|
38
31
|
type: 'string',
|
|
@@ -95,13 +88,6 @@ module.exports = {
|
|
|
95
88
|
example: 1850,
|
|
96
89
|
description: 'The daily discrepancy between calculated and counted amounts, POS: counted - calculated, not available anymore for non-cash types (e.g. terminal) (in cent-format: 1267 == 12.67€)'
|
|
97
90
|
})
|
|
98
|
-
},
|
|
99
|
-
exchangeRate: {
|
|
100
|
-
...oneOf({
|
|
101
|
-
type: 'number',
|
|
102
|
-
example: 1.403,
|
|
103
|
-
description: 'Exchange rate of the payment option, not used.'
|
|
104
|
-
})
|
|
105
91
|
}
|
|
106
92
|
}
|
|
107
93
|
}
|
|
@@ -24,7 +24,7 @@ module.exports = {
|
|
|
24
24
|
type: 'integer',
|
|
25
25
|
example: 15,
|
|
26
26
|
minimum: 0,
|
|
27
|
-
maximum:
|
|
27
|
+
maximum: 30, // to be on the safe side of Apple
|
|
28
28
|
default: 25
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -41,7 +41,7 @@ module.exports = {
|
|
|
41
41
|
type: 'integer',
|
|
42
42
|
example: 15,
|
|
43
43
|
minimum: 0,
|
|
44
|
-
maximum:
|
|
44
|
+
maximum: 30, // to be on the safe side of Apple
|
|
45
45
|
default: 25
|
|
46
46
|
}
|
|
47
47
|
}
|