fix(core): update
This commit is contained in:
parent
29bd68f57d
commit
3ee4a1677e
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@mojoio/tink',
|
name: '@mojoio/tink',
|
||||||
version: '3.1.5',
|
version: '3.1.6',
|
||||||
description: 'an unofficial api abstraction for tink.com'
|
description: 'an unofficial api abstraction for tink.com'
|
||||||
}
|
}
|
||||||
|
@ -102,9 +102,11 @@ export class BankTransaction {
|
|||||||
public getNormalizedData() {
|
public getNormalizedData() {
|
||||||
return {
|
return {
|
||||||
id: this.data.id,
|
id: this.data.id,
|
||||||
|
date: new Date(this.data.dates.booked).getTime(),
|
||||||
amount: tinkHelpers.getNormalizedAmount(this.data.amount),
|
amount: tinkHelpers.getNormalizedAmount(this.data.amount),
|
||||||
name: this.data.descriptions.display,
|
name: this.data.descriptions.display,
|
||||||
description: this.data.descriptions.original,
|
description: this.data.descriptions.original,
|
||||||
|
originAccountId: this.data.accountId,
|
||||||
justForLooks: {
|
justForLooks: {
|
||||||
originalScaledAmount: this.data.amount
|
originalScaledAmount: this.data.amount
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user