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 docs


From: gnunet
Subject: [taler-docs] branch master updated: update wallet-core docs
Date: Tue, 16 May 2023 19:09:48 +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 43ad9cf1 update wallet-core docs
43ad9cf1 is described below

commit 43ad9cf1eb4cdbbd3dae6ed37f298115d4e96e87
Author: Florian Dold <florian@dold.me>
AuthorDate: Tue May 16 19:09:46 2023 +0200

    update wallet-core docs
---
 wallet/wallet-core.md | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

diff --git a/wallet/wallet-core.md b/wallet/wallet-core.md
index 81deb361..5575a251 100644
--- a/wallet/wallet-core.md
+++ b/wallet/wallet-core.md
@@ -716,7 +716,7 @@ export interface ConfirmPayResultPending {
 export type StartRefundQueryForUriOp = {
   op: WalletApiOperation.StartRefundQueryForUri;
   request: PrepareRefundRequest;
-  response: EmptyObject;
+  response: StartRefundQueryForUriResponse;
 };
 // StartRefundQueryForUri = "startRefundQueryForUri"
 
@@ -726,6 +726,12 @@ export interface PrepareRefundRequest {
   talerRefundUri: string;
 }
 
+```
+```typescript
+export interface StartRefundQueryForUriResponse {
+  transactionId: string;
+}
+
 ```
 
 ### StartRefundQueryOp
@@ -1593,21 +1599,21 @@ export interface CheckPeerPushDebitResponse {
  */
 export type InitiatePeerPushDebitOp = {
   op: WalletApiOperation.InitiatePeerPushDebit;
-  request: InitiatePeerPushPaymentRequest;
-  response: InitiatePeerPushPaymentResponse;
+  request: InitiatePeerPushDebitRequest;
+  response: InitiatePeerPushDebitResponse;
 };
 // InitiatePeerPushDebit = "initiatePeerPushDebit"
 
 ```
 ```typescript
-export interface InitiatePeerPushPaymentRequest {
+export interface InitiatePeerPushDebitRequest {
   exchangeBaseUrl?: string;
   partialContractTerms: PeerContractTerms;
 }
 
 ```
 ```typescript
-export interface InitiatePeerPushPaymentResponse {
+export interface InitiatePeerPushDebitResponse {
   exchangeBaseUrl: string;
   pursePub: string;
   mergePriv: string;
@@ -2734,7 +2740,7 @@ export declare enum TransactionMinorState {
   Bank = "bank",
   Exchange = "exchange",
   ClaimProposal = "claim-proposal",
-  CheckRefunds = "check-refunds",
+  CheckRefund = "check-refund",
   CreatePurse = "create-purse",
   DeletePurse = "delete-purse",
   Ready = "ready",

-- 
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]