taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 496ebe7cce1df7ff0ca89d8873348d8e65943e51
parent 9e40b0372c7c6e82425c30ca3acc635a79e09998
Author: Florian Dold <florian@dold.me>
Date:   Wed, 13 Dec 2023 09:18:38 +0100

-comments

Diffstat:
Mpackages/taler-util/src/notifications.ts | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/packages/taler-util/src/notifications.ts b/packages/taler-util/src/notifications.ts @@ -72,8 +72,15 @@ export interface ExchangeStateTransitionNotification { */ oldExchangeState?: ExchangeEntryState; + /** + * New state of the exchange. + */ newExchangeState: ExchangeEntryState; + /** + * Summary of the error that occurred when trying to update the exchange entry, + * if applicable. + */ errorInfo?: ErrorInfoSummary; }