aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util/src/transactions-types.ts
diff options
context:
space:
mode:
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 {