gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-docs] branch master updated: update wallet-core API docs


From: gnunet
Subject: [taler-docs] branch master updated: update wallet-core API docs
Date: Tue, 04 Apr 2023 15:38:45 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository docs.

The following commit(s) were added to refs/heads/master by this push:
     new 06acefd  update wallet-core API docs
06acefd is described below

commit 06acefdbc755afcad14a02202b674f7b68b9b78c
Author: Florian Dold <florian@dold.me>
AuthorDate: Tue Apr 4 15:38:42 2023 +0200

    update wallet-core API docs
---
 wallet/wallet-core.md | 39 ++++++++++++++++++++++++++++++---------
 1 file changed, 30 insertions(+), 9 deletions(-)

diff --git a/wallet/wallet-core.md b/wallet/wallet-core.md
index 1d28f46..9124c09 100644
--- a/wallet/wallet-core.md
+++ b/wallet/wallet-core.md
@@ -77,6 +77,7 @@ This file is auto-generated from 
[wallet-core](https://git.taler.net/wallet-core
 * [ApplyDevExperimentOp](#applydevexperimentop)
 * [SetDevModeOp](#setdevmodeop)
 * [RunIntegrationTestOp](#runintegrationtestop)
+* [RunIntegrationTestV2Op](#runintegrationtestv2op)
 * [TestCryptoOp](#testcryptoop)
 * [WithdrawTestBalanceOp](#withdrawtestbalanceop)
 * [WithdrawTestkudosOp](#withdrawtestkudosop)
@@ -1971,16 +1972,19 @@ export type RunIntegrationTestOp = {
 // RunIntegrationTest = "runIntegrationTest"
 
 ```
+
+### RunIntegrationTestV2Op
 ```typescript
-export interface IntegrationTestArgs {
-  exchangeBaseUrl: string;
-  bankBaseUrl: string;
-  bankAccessApiBaseUrl?: string;
-  merchantBaseUrl: string;
-  merchantAuthToken?: string;
-  amountToWithdraw: string;
-  amountToSpend: string;
-}
+/**
+ * Run a simple integration test on a test deployment
+ * of the exchange and merchant.
+ */
+export type RunIntegrationTestV2Op = {
+  op: WalletApiOperation.RunIntegrationTest;
+  request: IntegrationTestArgs;
+  response: EmptyObject;
+};
+// RunIntegrationTest = "runIntegrationTest"
 
 ```
 
@@ -3112,6 +3116,12 @@ export interface TransactionDeposit extends 
TransactionCommon {
    * Did all the deposit requests succeed?
    */
   deposited: boolean;
+  trackingState: Array<{
+    wireTransferId: string;
+    timestampExecuted: TalerProtocolTimestamp;
+    amountRaw: AmountString;
+    amountEffective: AmountString;
+  }>;
 }
 ```
 ```typescript
@@ -3557,3 +3567,14 @@ export interface PeerContractTerms {
   purse_expiration: TalerProtocolTimestamp;
 }
 ```
+```typescript
+export interface IntegrationTestArgs {
+  exchangeBaseUrl: string;
+  bankBaseUrl: string;
+  bankAccessApiBaseUrl?: string;
+  merchantBaseUrl: string;
+  merchantAuthToken?: string;
+  amountToWithdraw: string;
+  amountToSpend: string;
+}
+```

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]