From ca60e97755d91d73b4f5fc3992ddb2db524cd5f2 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 8 Apr 2024 22:52:53 +0200 Subject: wallet-core: fix cancellation --- packages/taler-util/src/notifications.ts | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'packages/taler-util') diff --git a/packages/taler-util/src/notifications.ts b/packages/taler-util/src/notifications.ts index 7ef474754..1c6ca4b85 100644 --- a/packages/taler-util/src/notifications.ts +++ b/packages/taler-util/src/notifications.ts @@ -129,6 +129,7 @@ export enum ObservabilityEventType { CryptoStart = "crypto-start", CryptoFinishSuccess = "crypto-finish-success", CryptoFinishError = "crypto-finish-error", + Message = "message", } export type ObservabilityEvent = @@ -208,6 +209,10 @@ export type ObservabilityEvent = | { type: ObservabilityEventType.ShepherdTaskResult; resultType: string; + } + | { + type: ObservabilityEventType.Message; + contents: string; }; export interface BackupOperationErrorNotification { -- cgit v1.2.3