fix(core): update

This commit is contained in:
Philipp Kunz 2022-10-30 17:40:16 +01:00
parent ab1ac03993
commit bc5846751a
2 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@mojoio/tink', name: '@mojoio/tink',
version: '3.1.6', version: '3.1.7',
description: 'an unofficial api abstraction for tink.com' description: 'an unofficial api abstraction for tink.com'
} }

View File

@ -108,7 +108,8 @@ export class BankTransaction {
description: this.data.descriptions.original, description: this.data.descriptions.original,
originAccountId: this.data.accountId, originAccountId: this.data.accountId,
justForLooks: { justForLooks: {
originalScaledAmount: this.data.amount originalScaledAmount: this.data.amount,
dateIso: new Date(this.data.dates.booked).toISOString()
} }
} }