summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/wallet-api-types.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-05-11 14:29:55 +0200
committerFlorian Dold <florian@dold.me>2023-05-11 14:29:55 +0200
commit359b9860a615b8421dcbb72b763b20f3cae24083 (patch)
tree57ef4df830541fbbae804ea29bd04b5780faa20f /packages/taler-wallet-core/src/wallet-api-types.ts
parentedd3a39a0ca01a299b6d9ebed8d34c29a9c3bb30 (diff)
downloadwallet-core-359b9860a615b8421dcbb72b763b20f3cae24083.tar.gz
wallet-core-359b9860a615b8421dcbb72b763b20f3cae24083.tar.bz2
wallet-core-359b9860a615b8421dcbb72b763b20f3cae24083.zip
wallet-core: remove legacy operation names
Diffstat (limited to 'packages/taler-wallet-core/src/wallet-api-types.ts')
-rw-r--r--packages/taler-wallet-core/src/wallet-api-types.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/taler-wallet-core/src/wallet-api-types.ts b/packages/taler-wallet-core/src/wallet-api-types.ts
index d8424494b..850098daa 100644
--- a/packages/taler-wallet-core/src/wallet-api-types.ts
+++ b/packages/taler-wallet-core/src/wallet-api-types.ts
@@ -67,8 +67,8 @@ import {
InitResponse,
InitiatePeerPullCreditRequest,
InitiatePeerPullCreditResponse,
- InitiatePeerPushPaymentRequest,
- InitiatePeerPushPaymentResponse,
+ InitiatePeerPushDebitRequest,
+ InitiatePeerPushDebitResponse,
IntegrationTestArgs,
KnownBankAccounts,
ListKnownBankAccountsRequest,
@@ -671,8 +671,8 @@ export type CheckPeerPushDebitOp = {
*/
export type InitiatePeerPushDebitOp = {
op: WalletApiOperation.InitiatePeerPushDebit;
- request: InitiatePeerPushPaymentRequest;
- response: InitiatePeerPushPaymentResponse;
+ request: InitiatePeerPushDebitRequest;
+ response: InitiatePeerPushDebitResponse;
};
/**