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.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/packages/taler-util/src/notifications.ts b/packages/taler-util/src/notifications.ts
index f0683b31b..fc3286435 100644
--- a/packages/taler-util/src/notifications.ts
+++ b/packages/taler-util/src/notifications.ts
@@ -44,7 +44,6 @@ export enum NotificationType {
WaitingForRetry = "waiting-for-retry",
RefundStarted = "refund-started",
RefundQueried = "refund-queried",
- RefundFinished = "refund-finished",
ExchangeOperationError = "exchange-operation-error",
ExchangeAdded = "exchange-added",
RefreshOperationError = "refresh-operation-error",
@@ -192,14 +191,6 @@ export interface WaitingForRetryNotification {
numDue: number;
}
-export interface RefundFinishedNotification {
- type: NotificationType.RefundFinished;
-
- /**
- * Transaction ID of the purchase (NOT the refund transaction).
- */
- transactionId: string;
-}
export interface ExchangeAddedNotification {
type: NotificationType.ExchangeAdded;
@@ -321,7 +312,6 @@ export type WalletNotification =
| WithdrawalGroupFinishedNotification
| WaitingForRetryNotification
| RefundStartedNotification
- | RefundFinishedNotification
| RefundQueriedNotification
| WithdrawalGroupCreatedNotification
| CoinWithdrawnNotification