wallet-core: implement request to return sample transactions
This commit is contained in:
parent
0b4d900088
commit
a4112bae9e
@ -133,6 +133,7 @@ export enum WalletApiOperation {
|
||||
AddExchange = "addExchange",
|
||||
GetTransactions = "getTransactions",
|
||||
GetTransactionById = "getTransactionById",
|
||||
TestingGetSampleTransactions = "testingGetSampleTransactions",
|
||||
ListExchanges = "listExchanges",
|
||||
ListKnownBankAccounts = "listKnownBankAccounts",
|
||||
AddKnownBankAccounts = "addKnownBankAccounts",
|
||||
@ -285,6 +286,15 @@ export type GetTransactionsOp = {
|
||||
response: TransactionsResponse;
|
||||
};
|
||||
|
||||
/**
|
||||
* Get sample transactions.
|
||||
*/
|
||||
export type TestingGetSampleTransactionsOp = {
|
||||
op: WalletApiOperation.TestingGetSampleTransactions;
|
||||
request: EmptyObject;
|
||||
response: TransactionsResponse;
|
||||
};
|
||||
|
||||
export type GetTransactionByIdOp = {
|
||||
op: WalletApiOperation.GetTransactionById;
|
||||
request: TransactionByIdRequest;
|
||||
@ -932,6 +942,7 @@ export type WalletOperations = {
|
||||
[WalletApiOperation.GetBalances]: GetBalancesOp;
|
||||
[WalletApiOperation.GetBalanceDetail]: GetBalancesDetailOp;
|
||||
[WalletApiOperation.GetTransactions]: GetTransactionsOp;
|
||||
[WalletApiOperation.TestingGetSampleTransactions]: TestingGetSampleTransactionsOp;
|
||||
[WalletApiOperation.GetTransactionById]: GetTransactionByIdOp;
|
||||
[WalletApiOperation.RetryPendingNow]: RetryPendingNowOp;
|
||||
[WalletApiOperation.GetPendingOperations]: GetPendingTasksOp;
|
||||
|
@ -113,6 +113,7 @@ import {
|
||||
j2s,
|
||||
parsePayTemplateUri,
|
||||
parsePaytoUri,
|
||||
sampleWalletCoreTransactions,
|
||||
validateIban,
|
||||
} from "@gnu-taler/taler-util";
|
||||
import {
|
||||
@ -1241,6 +1242,8 @@ async function dispatchRequestInternal<Op extends WalletApiOperation>(
|
||||
await setCoinSuspended(ws, req.coinPub, req.suspended);
|
||||
return {};
|
||||
}
|
||||
case WalletApiOperation.TestingGetSampleTransactions:
|
||||
return { transactions: sampleWalletCoreTransactions };
|
||||
case WalletApiOperation.ForceRefresh: {
|
||||
const req = codecForForceRefreshRequest().decode(payload);
|
||||
if (req.coinPubList.length == 0) {
|
||||
@ -1507,7 +1510,6 @@ export function getVersion(ws: InternalWalletState): WalletCoreVersion {
|
||||
return version;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Handle a request to the wallet-core API.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user