@tillhub/schemas 6.143.0 → 6.144.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.144.0](https://github.com/tillhub/schemas/compare/v6.143.0...v6.144.0) (2022-06-08)
2
+
3
+
4
+ ### Features
5
+
6
+ * **transaction:** added pay id ([d260db4](https://github.com/tillhub/schemas/commit/d260db4))
7
+
1
8
  # [6.143.0](https://github.com/tillhub/schemas/compare/v6.142.0...v6.143.0) (2022-06-02)
2
9
 
3
10
 
@@ -52,6 +52,13 @@ module.exports = {
52
52
  maxLength: 128,
53
53
  description: 'The detected card circuit as reposrted by the terminal (VISA, MasterCard, GiroCard etc.)'
54
54
  },
55
+ card_pay_id: {
56
+ default: null,
57
+ type: 'string',
58
+ minLength: 3,
59
+ maxLength: 128,
60
+ description: 'Payment Provider Transaction ID (coming from the CCV / Computop terminal) for successful OPI Terminal Card Payments'
61
+ },
55
62
  card_pan: {
56
63
  default: null,
57
64
  type: 'string',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.143.0",
3
+ "version": "6.144.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",