From 6a4e0ffd858a6eeb29f19de949db87a115b34097 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 16 Oct 2023 10:07:52 +0200 Subject: [PATCH] wallet: confirm_transfer_url is optional --- packages/taler-util/src/http-client/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/taler-util/src/http-client/types.ts b/packages/taler-util/src/http-client/types.ts index 5f899dd5a..66ac39f59 100644 --- a/packages/taler-util/src/http-client/types.ts +++ b/packages/taler-util/src/http-client/types.ts @@ -402,7 +402,7 @@ export const codecForBankWithdrawalOperationStatus = export const codecForBankWithdrawalOperationPostResponse = (): Codec => buildCodecForObject() - .property("confirm_transfer_url", codecForURL()) + .property("confirm_transfer_url", codecOptional(codecForURL())) .property("transfer_done", codecForBoolean()) .build("TalerBankIntegrationApi.BankWithdrawalOperationPostResponse");