From 6a4da88719bc7a1506433c1117b2402d2bd48f36 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 14 Feb 2023 11:16:58 +0100 Subject: wallet-core: expose more info about refund query --- packages/taler-util/src/notifications.ts | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'packages/taler-util/src/notifications.ts') 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 { -- cgit v1.2.3