From fddc6eb4f21e7b85f089d5bf532580c3da874d54 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 20 Feb 2023 01:20:41 +0100 Subject: -deep rename --- .../taler-wallet-core/src/operations/pay-peer.ts | 40 +++++++++++----------- packages/taler-wallet-core/src/wallet-api-types.ts | 20 +++++------ 2 files changed, 30 insertions(+), 30 deletions(-) (limited to 'packages/taler-wallet-core') diff --git a/packages/taler-wallet-core/src/operations/pay-peer.ts b/packages/taler-wallet-core/src/operations/pay-peer.ts index 27363cb3e..ed4e57eea 100644 --- a/packages/taler-wallet-core/src/operations/pay-peer.ts +++ b/packages/taler-wallet-core/src/operations/pay-peer.ts @@ -19,17 +19,17 @@ */ import { AbsoluteTime, - AcceptPeerPullPaymentRequest, + ConfirmPeerPullDebitRequest, AcceptPeerPullPaymentResponse, - AcceptPeerPushPaymentRequest, + ConfirmPeerPushCreditRequest, AcceptPeerPushPaymentResponse, AgeCommitmentProof, AmountJson, Amounts, AmountString, buildCodecForObject, - CheckPeerPullPaymentRequest, - CheckPeerPullPaymentResponse, + PreparePeerPullDebitRequest, + PreparePeerPullDebitResponse, CheckPeerPushPaymentRequest, CheckPeerPushPaymentResponse, Codec, @@ -48,8 +48,8 @@ import { ExchangePurseMergeRequest, ExchangeReservePurseRequest, getRandomBytes, - InitiatePeerPullPaymentRequest, - InitiatePeerPullPaymentResponse, + InitiatePeerPullCreditRequest, + InitiatePeerPullCreditResponse, InitiatePeerPushPaymentRequest, InitiatePeerPushPaymentResponse, j2s, @@ -58,10 +58,10 @@ import { parsePayPushUri, PayPeerInsufficientBalanceDetails, PeerContractTerms, - PreparePeerPullPaymentRequest, - PreparePeerPullPaymentResponse, - PreparePeerPushPaymentRequest, - PreparePeerPushPaymentResponse, + CheckPeerPullCreditRequest, + CheckPeerPullCreditResponse, + CheckPeerPushDebitRequest, + CheckPeerPushDebitResponse, RefreshReason, strcmp, TalerErrorCode, @@ -389,8 +389,8 @@ export async function getTotalPeerPaymentCost( export async function preparePeerPushPayment( ws: InternalWalletState, - req: PreparePeerPushPaymentRequest, -): Promise { + req: CheckPeerPushDebitRequest, +): Promise { const instructedAmount = Amounts.parseOrThrow(req.amount); const coinSelRes = await selectPeerCoins(ws, instructedAmount); if (coinSelRes.type === "failure") { @@ -900,7 +900,7 @@ export async function processPeerPushCredit( export async function acceptPeerPushPayment( ws: InternalWalletState, - req: AcceptPeerPushPaymentRequest, + req: ConfirmPeerPushCreditRequest, ): Promise { let peerInc: PeerPushPaymentIncomingRecord | undefined; let contractTerms: PeerContractTerms | undefined; @@ -1019,7 +1019,7 @@ export async function processPeerPullDebit( export async function acceptIncomingPeerPullPayment( ws: InternalWalletState, - req: AcceptPeerPullPaymentRequest, + req: ConfirmPeerPullDebitRequest, ): Promise { const peerPullInc = await ws.db .mktx((x) => [x.peerPullPaymentIncoming]) @@ -1115,8 +1115,8 @@ export async function acceptIncomingPeerPullPayment( */ export async function preparePeerPullCredit( ws: InternalWalletState, - req: CheckPeerPullPaymentRequest, -): Promise { + req: PreparePeerPullDebitRequest, +): Promise { const uri = parsePayPullUri(req.talerUri); if (!uri) { @@ -1389,8 +1389,8 @@ async function getPreferredExchangeForCurrency( */ export async function checkPeerPullPaymentInitiation( ws: InternalWalletState, - req: PreparePeerPullPaymentRequest, -): Promise { + req: CheckPeerPullCreditRequest, +): Promise { // FIXME: We don't support exchanges with purse fees yet. // Select an exchange where we have money in the specified currency // FIXME: How do we handle regional currency scopes here? Is it an additional input? @@ -1419,8 +1419,8 @@ export async function checkPeerPullPaymentInitiation( */ export async function initiatePeerPullPayment( ws: InternalWalletState, - req: InitiatePeerPullPaymentRequest, -): Promise { + req: InitiatePeerPullCreditRequest, +): Promise { const currency = Amounts.currencyOf(req.partialContractTerms.amount); let maybeExchangeBaseUrl: string | undefined; if (req.exchangeBaseUrl) { diff --git a/packages/taler-wallet-core/src/wallet-api-types.ts b/packages/taler-wallet-core/src/wallet-api-types.ts index f1d1441d6..67e9169cf 100644 --- a/packages/taler-wallet-core/src/wallet-api-types.ts +++ b/packages/taler-wallet-core/src/wallet-api-types.ts @@ -29,8 +29,8 @@ import { AcceptExchangeTosRequest, AcceptManualWithdrawalRequest, AcceptManualWithdrawalResult, - AcceptPeerPullPaymentRequest as ConfirmPeerPullDebitRequest, - AcceptPeerPushPaymentRequest as ConfirmPeerPushCreditRequest, + ConfirmPeerPullDebitRequest, + ConfirmPeerPushCreditRequest, AcceptTipRequest, AcceptTipResponse, AcceptWithdrawalResponse, @@ -42,8 +42,8 @@ import { ApplyRefundResponse, BackupRecovery, BalancesResponse, - CheckPeerPullPaymentRequest as PreparePeerPullDebitRequest, - CheckPeerPullPaymentResponse as PreparePeerPullDebitResponse, + PreparePeerPullDebitRequest, + PreparePeerPullDebitResponse, CheckPeerPushPaymentRequest, CheckPeerPushPaymentResponse, CoinDumpJson, @@ -64,8 +64,8 @@ import { GetFeeForDepositRequest, GetWithdrawalDetailsForAmountRequest, GetWithdrawalDetailsForUriRequest, - InitiatePeerPullPaymentRequest as InitiatePeerPullCreditRequest, - InitiatePeerPullPaymentResponse as InitiatePeerPullCreditResponse, + InitiatePeerPullCreditRequest, + InitiatePeerPullCreditResponse, InitiatePeerPushPaymentRequest, InitiatePeerPushPaymentResponse, InitRequest, @@ -79,10 +79,10 @@ import { PreparePayRequest, PreparePayResult, PreparePayTemplateRequest, - PreparePeerPullPaymentRequest as CheckPeerPullCreditRequest, - PreparePeerPullPaymentResponse as CheckPeerPullCreditResponse, - PreparePeerPushPaymentRequest as CheckPeerPushDebitRequest, - PreparePeerPushPaymentResponse as CheckPeerPushDebitResponse, + CheckPeerPullCreditRequest, + CheckPeerPullCreditResponse, + CheckPeerPushDebitRequest, + CheckPeerPushDebitResponse, PrepareRefundRequest, PrepareRefundResult, PrepareTipRequest, -- cgit v1.2.3