@vantagepay/vantagepay 0.17.3 → 0.18.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 ADDED
@@ -0,0 +1,68 @@
1
+ # Changelog
2
+
3
+ ## 0.18.0 (2026-05-10)
4
+ - New universal notification API.
5
+ - New merchant QR options.
6
+ - Updated all documentation for methods and model properties.
7
+ - Expose product assignments on merchant model.
8
+ - Add new product API methods to get only assigned products for a merchant.
9
+ - Added merchant category group lookup.
10
+ - Added logo and icon URLs to merchant products.
11
+ - Improved reports API delta caching logic.
12
+ - Updated dependencies.
13
+
14
+ ## 0.17.4 (2026-02-18)
15
+ - Removed method to upload files for merchants.
16
+ - Add methods to email and SMS consumer files.
17
+ - Add methods to retrieve and update bank account limits.
18
+ - Add facility indicators and last used dates on card settings.
19
+ - Add optional description text to files.
20
+ - Add terminal reference to bill payments.
21
+
22
+ ## 0.17.3 (2026-02-05)
23
+ - Add debit orders to consumer bank accounts.
24
+ - Add `stopDebitOrders` and `disputeDebitOrders` methods to consumer API.
25
+ - Expose merchant POS QR code settings and availability.
26
+
27
+ ## 0.17.1 (2026-01-28)
28
+ - Added credit and debit totals to daily transaction report.
29
+ - Add beneficiary and product references to transaction report.
30
+ - Renamed "accounts" to "genericAccounts" on consumers and beneficiaries.
31
+ - Add term, type, status and last payment date onto loans.
32
+ - Add loan status and insurance policy status enum.
33
+ - Added support for multiple beneficiaries on insurance policies.
34
+ - Added additional banks to the enum.
35
+ - Add card settings onto consumer bank accounts.
36
+ - Expose external references for consumer accounts and beneficiaries.
37
+
38
+ ## 0.16.0 (2025-12-10)
39
+ - Added transaction history delta caching.
40
+ - Added OnSessionStarted event.
41
+ - Added consumer account file links.
42
+ - Added additional lookups.
43
+ - Expose both current and available balance for bank accounts.
44
+
45
+ ## 0.15.8 (2025-11-28)
46
+ - Fix refresh logic for invalidated tokens.
47
+
48
+ ## 0.15.7 (2025-11-28)
49
+ - Added linked consumer card/bank account references.
50
+ - Added preferred name property to consumer.
51
+ - Added credential lockout indicators.
52
+ - Added download file method for consumers.
53
+ - Added bank account balance lookup for consumer bank accounts.
54
+ - Added stop card function for consumer cards.
55
+ - Added ability to pass in beneficiary reference on destination when making a payments.
56
+ - Added last transaction date, amount and current to beneficiaries.
57
+ - Added generic beneficiary accounts for things like water and electricity meters.
58
+ - Fixed incorrect currency cache key.
59
+
60
+ ## 0.15.6 (2025-11-13)
61
+ - Provide missing bank name and account type name for consumer bank accounts.
62
+
63
+ ## 0.15.5 (2025-11-12)
64
+ - Added extra bank codes and universal routing for South African banks.
65
+ - Added some missing merchant category codes.
66
+ - Added missing API call to get all consumer messages.
67
+ - Expose created dates of consumer accounts.
68
+ - Expose insurance and loans accounts on consumers.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 VantagePay
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.