taler-typescript-core

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

commit ee75c6d7436acf96268c773d14f43e2d9a15b790
parent 0b9faf7ddee658bd3080fd487232642e7b14ae32
Author: Florian Dold <florian@dold.me>
Date:   Thu, 13 Jun 2024 14:09:57 +0200

wallet-core: stick with naming conventions

Should be non-breaking as only webext uses these calls at the moment.

Diffstat:
Mpackages/taler-wallet-core/src/wallet-api-types.ts | 11++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/packages/taler-wallet-core/src/wallet-api-types.ts b/packages/taler-wallet-core/src/wallet-api-types.ts @@ -190,18 +190,18 @@ export enum WalletApiOperation { GetBalances = "getBalances", GetBalanceDetail = "getBalanceDetail", GetPlanForOperation = "getPlanForOperation", - ConvertDepositAmount = "ConvertDepositAmount", - GetMaxDepositAmount = "GetMaxDepositAmount", + ConvertDepositAmount = "convertDepositAmount", + GetMaxDepositAmount = "getMaxDepositAmount", ConvertPeerPushAmount = "ConvertPeerPushAmount", - GetMaxPeerPushAmount = "GetMaxPeerPushAmount", - ConvertWithdrawalAmount = "ConvertWithdrawalAmount", + GetMaxPeerPushAmount = "getMaxPeerPushAmount", + ConvertWithdrawalAmount = "convertWithdrawalAmount", GetUserAttentionRequests = "getUserAttentionRequests", GetUserAttentionUnreadCount = "getUserAttentionUnreadCount", MarkAttentionRequestAsRead = "markAttentionRequestAsRead", GetPendingOperations = "getPendingOperations", GetActiveTasks = "getActiveTasks", SetExchangeTosAccepted = "setExchangeTosAccepted", - SetExchangeTosForgotten = "SetExchangeTosForgotten", + SetExchangeTosForgotten = "setExchangeTosForgotten", StartRefundQueryForUri = "startRefundQueryForUri", StartRefundQuery = "startRefundQuery", PrepareBankIntegratedWithdrawal = "prepareBankIntegratedWithdrawal", @@ -266,6 +266,7 @@ export enum WalletApiOperation { Shutdown = "shutdown", HintNetworkAvailability = "hintNetworkAvailability", CanonicalizeBaseUrl = "canonicalizeBaseUrl", + GetDepositWireTypesForCurency = "getDepositWireTypesForCurrency", TestingWaitTransactionsFinal = "testingWaitTransactionsFinal", TestingWaitRefreshesFinal = "testingWaitRefreshesFinal", TestingWaitTransactionState = "testingWaitTransactionState",