summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/types/notifications.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-09-01 18:27:22 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-09-01 18:27:22 +0530
commit8c33e05bf08976403719a17b1faf424109a7eaa5 (patch)
tree61c72737640c9b552c41f62640cfb0c8c845f38a /packages/taler-wallet-core/src/types/notifications.ts
parent5056da6548d5880211abd3e1cdacd92134e40dab (diff)
downloadwallet-core-8c33e05bf08976403719a17b1faf424109a7eaa5.tar.gz
wallet-core-8c33e05bf08976403719a17b1faf424109a7eaa5.tar.bz2
wallet-core-8c33e05bf08976403719a17b1faf424109a7eaa5.zip
harmonized error codesv0.7.1-dev.23
Diffstat (limited to 'packages/taler-wallet-core/src/types/notifications.ts')
-rw-r--r--packages/taler-wallet-core/src/types/notifications.ts20
1 files changed, 10 insertions, 10 deletions
diff --git a/packages/taler-wallet-core/src/types/notifications.ts b/packages/taler-wallet-core/src/types/notifications.ts
index 945b86eea..0196cebf1 100644
--- a/packages/taler-wallet-core/src/types/notifications.ts
+++ b/packages/taler-wallet-core/src/types/notifications.ts
@@ -22,7 +22,7 @@
/**
* Imports.
*/
-import { OperationErrorDetails } from "./walletTypes";
+import { TalerErrorDetails } from "./walletTypes";
import { WithdrawalSource } from "./dbTypes";
export const enum NotificationType {
@@ -154,32 +154,32 @@ export interface RefundFinishedNotification {
export interface ExchangeOperationErrorNotification {
type: NotificationType.ExchangeOperationError;
- error: OperationErrorDetails;
+ error: TalerErrorDetails;
}
export interface RefreshOperationErrorNotification {
type: NotificationType.RefreshOperationError;
- error: OperationErrorDetails;
+ error: TalerErrorDetails;
}
export interface RefundStatusOperationErrorNotification {
type: NotificationType.RefundStatusOperationError;
- error: OperationErrorDetails;
+ error: TalerErrorDetails;
}
export interface RefundApplyOperationErrorNotification {
type: NotificationType.RefundApplyOperationError;
- error: OperationErrorDetails;
+ error: TalerErrorDetails;
}
export interface PayOperationErrorNotification {
type: NotificationType.PayOperationError;
- error: OperationErrorDetails;
+ error: TalerErrorDetails;
}
export interface ProposalOperationErrorNotification {
type: NotificationType.ProposalOperationError;
- error: OperationErrorDetails;
+ error: TalerErrorDetails;
}
export interface TipOperationErrorNotification {
@@ -188,17 +188,17 @@ export interface TipOperationErrorNotification {
export interface WithdrawOperationErrorNotification {
type: NotificationType.WithdrawOperationError;
- error: OperationErrorDetails;
+ error: TalerErrorDetails;
}
export interface RecoupOperationErrorNotification {
type: NotificationType.RecoupOperationError;
- error: OperationErrorDetails;
+ error: TalerErrorDetails;
}
export interface ReserveOperationErrorNotification {
type: NotificationType.ReserveOperationError;
- error: OperationErrorDetails;
+ error: TalerErrorDetails;
}
export interface ReserveCreatedNotification {