aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/wallet.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-06-05 11:45:16 +0200
committerFlorian Dold <florian@dold.me>2023-06-05 11:45:16 +0200
commitfda5a0ed87a6473a6b34bd1ac07d5f1d45dfbc19 (patch)
treec8b7b09ca441d2a01e340dd3f569e075d3ef278e /packages/taler-wallet-core/src/wallet.ts
parentf3d4ff4e3a44141ad387ef68a9083b01bf1c818a (diff)
downloadwallet-core-fda5a0ed87a6473a6b34bd1ac07d5f1d45dfbc19.tar.xz
wallet-core: restructure p2p implv0.9.3-dev.14
Diffstat (limited to 'packages/taler-wallet-core/src/wallet.ts')
-rw-r--r--packages/taler-wallet-core/src/wallet.ts24
1 files changed, 14 insertions, 10 deletions
diff --git a/packages/taler-wallet-core/src/wallet.ts b/packages/taler-wallet-core/src/wallet.ts
index df48c0e19..d0c34588b 100644
--- a/packages/taler-wallet-core/src/wallet.ts
+++ b/packages/taler-wallet-core/src/wallet.ts
@@ -63,8 +63,6 @@ import {
codecForAddKnownBankAccounts,
codecForAny,
codecForApplyDevExperiment,
- codecForApplyRefundFromPurchaseIdRequest,
- codecForApplyRefundRequest,
codecForCancelAbortingTransactionRequest,
codecForCheckPeerPullPaymentRequest,
codecForCheckPeerPushDebitRequest,
@@ -196,22 +194,29 @@ import {
getContractTermsDetails,
preparePayForUri,
processPurchase,
+ startQueryRefund,
startRefundQueryForUri,
} from "./operations/pay-merchant.js";
import {
checkPeerPullPaymentInitiation,
- checkPeerPushDebit,
- confirmPeerPullDebit,
- confirmPeerPushCredit,
initiatePeerPullPayment,
- initiatePeerPushDebit,
+ processPeerPullCredit,
+} from "./operations/pay-peer-pull-credit.js";
+import {
+ confirmPeerPullDebit,
preparePeerPullDebit,
+} from "./operations/pay-peer-pull-debit.js";
+import {
+ confirmPeerPushCredit,
preparePeerPushCredit,
- processPeerPullCredit,
processPeerPullDebit,
processPeerPushCredit,
+} from "./operations/pay-peer-push-credit.js";
+import {
+ checkPeerPushDebit,
+ initiatePeerPushDebit,
processPeerPushDebit,
-} from "./operations/pay-peer.js";
+} from "./operations/pay-peer-push-debit.js";
import { getPendingOperations } from "./operations/pending.js";
import {
createRecoupGroup,
@@ -232,8 +237,8 @@ import {
import { acceptTip, prepareTip, processTip } from "./operations/tip.js";
import {
abortTransaction,
- failTransaction,
deleteTransaction,
+ failTransaction,
getTransactionById,
getTransactions,
parseTransactionIdentifier,
@@ -280,7 +285,6 @@ import {
WalletCoreApiClient,
WalletCoreResponseType,
} from "./wallet-api-types.js";
-import { startQueryRefund } from "./operations/pay-merchant.js";
const logger = new Logger("wallet.ts");