taler-typescript-core

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

commit 25347370d90aa453fb6016f5161a679623b9c03f
parent 5a3990cbfdf059eafd294bed501e6d87a6724b69
Author: Florian Dold <florian@dold.me>
Date:   Thu, 16 Apr 2026 17:56:25 +0200

wallet-core: deprecate getDefaultExchanges

Diffstat:
Mpackages/taler-wallet-core/src/wallet-api-types.ts | 9+++++++--
1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/packages/taler-wallet-core/src/wallet-api-types.ts b/packages/taler-wallet-core/src/wallet-api-types.ts @@ -307,7 +307,6 @@ export enum WalletApiOperation { GetBankingChoicesForPayto = "getBankingChoicesForPayto", ConvertIbanAccountFieldToPayto = "convertIbanAccountFieldToPayto", ConvertIbanPaytoToAccountField = "convertIbanPaytoToAccountField", - GetDefaultExchanges = "getDefaultExchanges", // Tokens and token families ListDiscounts = "listDiscounts", @@ -357,9 +356,15 @@ export enum WalletApiOperation { /** * @deprecated (2025-05-07) - * Use {@link WalletApiOperation.PrepareBankIntegratedWithdrawal} instead. + * Use {@link WalletApiOperation.PrepareBankIntegratedWithdrawal} instead. */ GetWithdrawalDetailsForUri = "getWithdrawalDetailsForUri", + + /** + * @deprecated (2026-04-16) + * Use {@link WalletApiOperation.listExchanges} instead. + */ + GetDefaultExchanges = "getDefaultExchanges", } // group: Initialization