commit 6a4e0ffd858a6eeb29f19de949db87a115b34097
parent 53998741a6f280c5c56573c2db6ffd35ce5c34d9
Author: Florian Dold <florian@dold.me>
Date: Mon, 16 Oct 2023 10:07:52 +0200
wallet: confirm_transfer_url is optional
Diffstat:
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
@@ -402,7 +402,7 @@ export const codecForBankWithdrawalOperationStatus =
export const codecForBankWithdrawalOperationPostResponse =
(): Codec<TalerBankIntegrationApi.BankWithdrawalOperationPostResponse> =>
buildCodecForObject<TalerBankIntegrationApi.BankWithdrawalOperationPostResponse>()
- .property("confirm_transfer_url", codecForURL())
+ .property("confirm_transfer_url", codecOptional(codecForURL()))
.property("transfer_done", codecForBoolean())
.build("TalerBankIntegrationApi.BankWithdrawalOperationPostResponse");