From 74dba9506dba104d918c5386e67146f71f07436c Mon Sep 17 00:00:00 2001 From: Sebastian Date: Wed, 29 Mar 2023 15:14:02 -0300 Subject: show wire details when the deposit has been wired --- packages/taler-util/src/transactions-types.ts | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'packages/taler-util') diff --git a/packages/taler-util/src/transactions-types.ts b/packages/taler-util/src/transactions-types.ts index 9623e25a9..1d7e6ef30 100644 --- a/packages/taler-util/src/transactions-types.ts +++ b/packages/taler-util/src/transactions-types.ts @@ -535,7 +535,7 @@ export interface TransactionRefresh extends TransactionCommon { /** * Fees, i.e. the effective, negative effect of the refresh * on the balance. - * + * * Only applicable for stand-alone refreshes, and zero for * other refreshes where the transaction itself accounts for the * refresh fee. @@ -578,6 +578,17 @@ export interface TransactionDeposit extends TransactionCommon { * Did all the deposit requests succeed? */ deposited: boolean; + + trackingState: Array<{ + // Raw wire transfer identifier of the deposit. + wireTransferId: string; + // When was the wire transfer given to the bank. + timestampExecuted: TalerProtocolTimestamp; + // Total amount transfer for this wtid (including fees) + amountRaw: AmountString; + // Total amount received for this wtid (without fees) + amountEffective: AmountString; + }>; } export interface TransactionByIdRequest { -- cgit v1.2.3