aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util/src/notifications.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-util/src/notifications.ts')
-rw-r--r--packages/taler-util/src/notifications.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/packages/taler-util/src/notifications.ts b/packages/taler-util/src/notifications.ts
index 823c4130d..55d838007 100644
--- a/packages/taler-util/src/notifications.ts
+++ b/packages/taler-util/src/notifications.ts
@@ -96,6 +96,10 @@ export interface RefundStartedNotification {
export interface RefundQueriedNotification {
type: NotificationType.RefundQueried;
+ /**
+ * Transaction ID of the purchase (NOT the refund transaction).
+ */
+ transactionId: string;
}
export interface ProposalDownloadedNotification {
@@ -171,6 +175,11 @@ export interface WaitingForRetryNotification {
export interface RefundFinishedNotification {
type: NotificationType.RefundFinished;
+
+ /**
+ * Transaction ID of the purchase (NOT the refund transaction).
+ */
+ transactionId: string;
}
export interface ExchangeAddedNotification {