aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util/src/transactions-types.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-05-16 19:03:22 +0200
committerFlorian Dold <florian@dold.me>2023-05-16 19:03:22 +0200
commitacf0dda83f3974187cacf58e7d81c2115f6d950d (patch)
tree6ca65c874d33f21a3a81435ff2429c08e28a03e5 /packages/taler-util/src/transactions-types.ts
parent72d0230a2ec34d83bfbbd0c7f731e25c76da3a45 (diff)
downloadwallet-core-acf0dda83f3974187cacf58e7d81c2115f6d950d.tar.xz
wallet-core: return purchase information in refund if available
Diffstat (limited to 'packages/taler-util/src/transactions-types.ts')
-rw-r--r--packages/taler-util/src/transactions-types.ts20
1 files changed, 17 insertions, 3 deletions
diff --git a/packages/taler-util/src/transactions-types.ts b/packages/taler-util/src/transactions-types.ts
index 02e95c208..aaf527b89 100644
--- a/packages/taler-util/src/transactions-types.ts
+++ b/packages/taler-util/src/transactions-types.ts
@@ -545,17 +545,31 @@ export interface RefundInfoShort {
amountRaw: AmountString;
}
+/**
+ * Summary information about the payment that we got a refund for.
+ */
+export interface RefundPaymentInfo {
+ summary: string;
+ summary_i18n?: InternationalizedString;
+ /**
+ * More information about the merchant
+ */
+ merchant: MerchantInfo;
+}
+
export interface TransactionRefund extends TransactionCommon {
type: TransactionType.Refund;
- // ID for the transaction that is refunded
- refundedTransactionId: string;
-
// Amount that has been refunded by the merchant
amountRaw: AmountString;
// Amount will be added to the wallet's balance after fees and refreshing
amountEffective: AmountString;
+
+ // ID for the transaction that is refunded
+ refundedTransactionId: string;
+
+ paymentInfo: RefundPaymentInfo | undefined;
}
export interface TransactionTip extends TransactionCommon {