diff options
author | Florian Dold <florian@dold.me> | 2023-02-14 13:02:59 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2023-02-14 13:02:59 +0100 |
commit | 55f868d5e83f577cd20ad6f33e0cf8776b4d0f45 (patch) | |
tree | a4bb2803384f558308552bc5606423a52090f79e /packages/taler-util | |
parent | 97fac057c2f66cf8c00e50c555b761d5062fb4cf (diff) |
wallet-core: allow inclusion of refreshes in transactions list
Diffstat (limited to 'packages/taler-util')
-rw-r--r-- | packages/taler-util/src/transactions-types.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/taler-util/src/transactions-types.ts b/packages/taler-util/src/transactions-types.ts index 946f9dda9..98e333ad3 100644 --- a/packages/taler-util/src/transactions-types.ts +++ b/packages/taler-util/src/transactions-types.ts @@ -68,6 +68,11 @@ export interface TransactionsRequest { * if present, results will be limited to transactions related to the given search string */ search?: string; + + /** + * If true, include all refreshes in the transactions list. + */ + includeRefreshes?: boolean; } export interface TransactionsResponse { @@ -514,11 +519,6 @@ export interface TransactionTip extends TransactionCommon { export interface TransactionRefresh extends TransactionCommon { type: TransactionType.Refresh; - /** - * Exchange that the coins are refreshed with - */ - exchangeBaseUrl: string; - refreshReason: RefreshReason; /** |