aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util/src/transactions-types.ts
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-01-15 17:46:56 -0300
committerSebastian <sebasjm@gmail.com>2023-01-15 17:46:56 -0300
commitbfc7b201007b88c7b20d74334edfb84bd54cdf94 (patch)
treeaf42eccacb21c035ea4f66bbc1fb504229cb5f79 /packages/taler-util/src/transactions-types.ts
parent8e8bada643b73b78991cde9abc375825a18bf9d9 (diff)
downloadwallet-core-bfc7b201007b88c7b20d74334edfb84bd54cdf94.tar.xz
TrackTransaction interface
Diffstat (limited to 'packages/taler-util/src/transactions-types.ts')
-rw-r--r--packages/taler-util/src/transactions-types.ts8
1 files changed, 5 insertions, 3 deletions
diff --git a/packages/taler-util/src/transactions-types.ts b/packages/taler-util/src/transactions-types.ts
index 3678dfa86..e81625a5a 100644
--- a/packages/taler-util/src/transactions-types.ts
+++ b/packages/taler-util/src/transactions-types.ts
@@ -95,7 +95,7 @@ export interface TransactionCommon {
* true if the transaction is still pending, false otherwise
* If a transaction is not longer pending, its timestamp will be updated,
* but its transactionId will remain unchanged
- *
+ *
* @deprecated show extendedStatus
*/
pending: boolean;
@@ -103,7 +103,7 @@ export interface TransactionCommon {
/**
* True if the transaction encountered a problem that might be
* permanent. A frozen transaction won't be automatically retried.
- *
+ *
* @deprecated show extendedStatus
*/
frozen: boolean;
@@ -351,7 +351,7 @@ export interface TransactionPayment extends TransactionCommon {
/**
* How far did the wallet get with processing the payment?
- *
+ *
* @deprecated use extendedStatus
*/
status: PaymentStatus;
@@ -548,6 +548,8 @@ export interface TransactionDeposit extends TransactionCommon {
amountEffective: AmountString;
wireTransferDeadline: TalerProtocolTimestamp;
+
+ wireTransferProgress: number;
}
export interface TransactionByIdRequest {