fintecture-client
Advanced tools
Comparing version 1.0.20 to 1.0.21
{ | ||
"name": "fintecture-client", | ||
"version": "1.0.20", | ||
"version": "1.0.21", | ||
"description": "Fintecture Open Banking API Gateway enabling secure bank connections and payments", | ||
@@ -5,0 +5,0 @@ "main": "lib/fintecture-client.js", |
@@ -144,2 +144,3 @@ "use strict"; | ||
beneficiary: payment.beneficiary, | ||
execution_date: payment.execution_date, | ||
end_to_end_id: payment.end_to_end_id, | ||
@@ -178,2 +179,5 @@ }; | ||
} | ||
if (payment.data.attributes.execution_date) { | ||
payload.data.attributes.execution_date = payment.data.attributes.execution_date; | ||
} | ||
return payload; | ||
@@ -180,0 +184,0 @@ } |
@@ -75,2 +75,3 @@ import { ISessionPayload } from '../pis/PisInterface'; | ||
communication: string; | ||
execution_date?: string; | ||
beneficiary?: IBeneficiary; | ||
@@ -77,0 +78,0 @@ end_to_end_id?: string; |
{ | ||
"name": "fintecture-client", | ||
"version": "1.0.20", | ||
"version": "1.0.21", | ||
"description": "Fintecture Open Banking API Gateway enabling secure bank connections and payments", | ||
@@ -5,0 +5,0 @@ "main": "lib/fintecture-client.js", |
@@ -146,3 +146,3 @@ # Fintecture | ||
```javascript | ||
let options = {'filter[pis]': 'SEPA', 'filter[country]': 'FR', 'filter[psu_supported_types]': 'retail', 'sort[full_name]': 'asc'} | ||
let options = {'filter[pis]': 'SEPA', 'filter[country]': 'FR', 'filter[psu_type]': 'retail', 'sort[full_name]': 'asc'} | ||
let providers = await client.getProviders(options); | ||
@@ -149,0 +149,0 @@ ``` |
Sorry, the diff of this file is not supported yet
168838
2464