commit 651d38cceb83120806dc4bb373d5c3169e72bdf8
parent 7b5afb41336fe4557fe8872236122dea398d2cf8
Author: Florian Dold <florian@dold.me>
Date: Tue, 9 Apr 2024 16:13:37 +0200
wallet-core: fix parsing, clientCancellationId is optional
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/taler-util/src/wallet-types.ts b/packages/taler-util/src/wallet-types.ts
@@ -1894,7 +1894,7 @@ export const codecForGetWithdrawalDetailsForAmountRequest =
.property("exchangeBaseUrl", codecForString())
.property("amount", codecForAmountString())
.property("restrictAge", codecOptional(codecForNumber()))
- .property("clientCancellationId", codecForString())
+ .property("clientCancellationId", codecOptional(codecForString()))
.build("GetWithdrawalDetailsForAmountRequest");
export interface AcceptExchangeTosRequest {