Compare commits

...

2 Commits

Author SHA1 Message Date
5abc4e7976 1.0.22 2020-08-25 12:57:15 +00:00
58f4855cb6 fix(core): update 2020-08-25 12:57:14 +00:00
3 changed files with 27 additions and 3 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "@mojoio/bunq", "name": "@mojoio/bunq",
"version": "1.0.21", "version": "1.0.22",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@mojoio/bunq", "name": "@mojoio/bunq",
"version": "1.0.21", "version": "1.0.22",
"private": false, "private": false,
"description": "a bunq api abstraction package", "description": "a bunq api abstraction package",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",

View File

@ -20,7 +20,31 @@ export class BunqTransaction {
public type: 'MASTERCARD' | 'BUNQ'; public type: 'MASTERCARD' | 'BUNQ';
public merchant_reference: null; public merchant_reference: null;
public alias: [Object]; public alias: [Object];
public counterparty_alias: [Object]; public counterparty_alias: {
iban: string,
is_light: any,
display_name: string,
avatar: {
uuid: string,
image: [
{
attachment_public_uuid: string,
height: number,
width: number,
content_type: string,
},
],
anchor_uuid: null,
},
label_user: {
uuid: null,
display_name: string,
country: string,
avatar: null,
public_nick_name: string,
},
country: string,
};
public attachment: []; public attachment: [];
public geolocation: null; public geolocation: null;
public batch_id: null; public batch_id: null;