fintecture-client
Advanced tools
Comparing version 1.0.24 to 1.0.25
{ | ||
"name": "fintecture-client", | ||
"version": "1.0.24", | ||
"version": "1.0.25", | ||
"description": "Fintecture Open Banking API Gateway enabling secure bank connections and payments", | ||
@@ -5,0 +5,0 @@ "main": "lib/fintecture-client.js", |
@@ -177,3 +177,3 @@ "use strict"; | ||
if (payment.data.attributes.beneficiary) { | ||
payload.data.attributes.beneficiary = payment.data.attributes.beneficiary; | ||
payload.data.attributes.beneficiary = { name: payment.data.attributes.beneficiary.name }; | ||
} | ||
@@ -180,0 +180,0 @@ if (payment.data.attributes.execution_date) { |
{ | ||
"name": "fintecture-client", | ||
"version": "1.0.24", | ||
"version": "1.0.25", | ||
"description": "Fintecture Open Banking API Gateway enabling secure bank connections and payments", | ||
@@ -5,0 +5,0 @@ "main": "lib/fintecture-client.js", |
@@ -252,10 +252,9 @@ # Fintecture | ||
if (transactions.links.next) { | ||
while (transactions.links.next) { | ||
transactions = await client.getTransactions(accessToken, customerId, accountId, headers,transactions.links.next) ; | ||
transactionsPages.push(transactions); | ||
} | ||
while (transactions.links.next) { | ||
transactions = await client.getTransactions(accessToken, customerId, accountId, headers,transactions.links.next) ; | ||
transactionsPages.push(transactions); | ||
} | ||
``` | ||
@@ -262,0 +261,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
174294
272