aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/wallet-api-types.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-08-05 23:19:55 +0200
committerFlorian Dold <florian@dold.me>2023-08-05 23:34:37 +0200
commit308a4282cbdde7376d88ca76e3eca967a1f02c46 (patch)
tree1a919a37095d781513109fdc3bf388af0002a437 /packages/taler-wallet-core/src/wallet-api-types.ts
parent951d1b66fa0ba0dbe7cc4f81a0de4d64b35f8fad (diff)
downloadwallet-core-308a4282cbdde7376d88ca76e3eca967a1f02c46.tar.xz
wallet-core: mock implementation of GetCurrencyInfo
Diffstat (limited to 'packages/taler-wallet-core/src/wallet-api-types.ts')
-rw-r--r--packages/taler-wallet-core/src/wallet-api-types.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/taler-wallet-core/src/wallet-api-types.ts b/packages/taler-wallet-core/src/wallet-api-types.ts
index eaa99a6c3..0c9755a3a 100644
--- a/packages/taler-wallet-core/src/wallet-api-types.ts
+++ b/packages/taler-wallet-core/src/wallet-api-types.ts
@@ -114,6 +114,8 @@ import {
WithdrawUriInfoResponse,
SharePaymentRequest,
SharePaymentResult,
+ GetCurrencyInfoRequest,
+ GetCurrencyInfoResponse,
} from "@gnu-taler/taler-util";
import { AuditorTrustRecord, WalletContractData } from "./db.js";
import {
@@ -210,6 +212,7 @@ export enum WalletApiOperation {
ApplyDevExperiment = "applyDevExperiment",
ValidateIban = "validateIban",
TestingWaitTransactionsFinal = "testingWaitTransactionsFinal",
+ GetCurrencyInfo = "getCurrencyInfo",
}
// group: Initialization
@@ -601,6 +604,12 @@ export type ListCurrenciesOp = {
response: WalletCurrencyInfo;
};
+export type GetCurrencyInfoOp = {
+ op: WalletApiOperation.GetCurrencyInfo;
+ request: GetCurrencyInfoRequest;
+ response: GetCurrencyInfoResponse;
+};
+
// group: Deposits
/**
@@ -1072,6 +1081,7 @@ export type WalletOperations = {
[WalletApiOperation.ApplyDevExperiment]: ApplyDevExperimentOp;
[WalletApiOperation.ValidateIban]: ValidateIbanOp;
[WalletApiOperation.TestingWaitTransactionsFinal]: TestingWaitTransactionsFinal;
+ [WalletApiOperation.GetCurrencyInfo]: GetCurrencyInfoOp;
};
export type WalletCoreRequestType<