summaryrefslogtreecommitdiff
path: root/packages/taler-util/src/transactions-types.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-02-14 13:02:59 +0100
committerFlorian Dold <florian@dold.me>2023-02-14 13:02:59 +0100
commit55f868d5e83f577cd20ad6f33e0cf8776b4d0f45 (patch)
treea4bb2803384f558308552bc5606423a52090f79e /packages/taler-util/src/transactions-types.ts
parent97fac057c2f66cf8c00e50c555b761d5062fb4cf (diff)
downloadwallet-core-55f868d5e83f577cd20ad6f33e0cf8776b4d0f45.tar.gz
wallet-core-55f868d5e83f577cd20ad6f33e0cf8776b4d0f45.tar.bz2
wallet-core-55f868d5e83f577cd20ad6f33e0cf8776b4d0f45.zip
wallet-core: allow inclusion of refreshes in transactions list
Diffstat (limited to 'packages/taler-util/src/transactions-types.ts')
-rw-r--r--packages/taler-util/src/transactions-types.ts10
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;
/**