[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-docs] branch master updated: use Any on unknown types
From: |
gnunet |
Subject: |
[taler-docs] branch master updated: use Any on unknown types |
Date: |
Wed, 13 Jan 2021 11:01:30 +0100 |
This is an automated email from the git hooks/post-receive script.
ms pushed a commit to branch master
in repository docs.
The following commit(s) were added to refs/heads/master by this push:
new c1f3909 use Any on unknown types
c1f3909 is described below
commit c1f3909466600345488557e2cee9ac638a4a2a31
Author: MS <ms@taler.net>
AuthorDate: Wed Jan 13 11:01:24 2021 +0100
use Any on unknown types
---
libeufin/api-nexus.rst | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
diff --git a/libeufin/api-nexus.rst b/libeufin/api-nexus.rst
index 64fc48e..0fd0874 100644
--- a/libeufin/api-nexus.rst
+++ b/libeufin/api-nexus.rst
@@ -675,13 +675,18 @@ to the real bank.
Facades
-------
+.. http:get:: <nexus>/facades/{fcid}
+
+ **Response:** A `FacadeShowInfo` pointed to by ``fcid``.
+
+
.. http:get:: <nexus>/facades
List available facades that belong to the requesting user.
**Response:** A list of the following elements:
- .. code-block:: ts
+.. ts:def:: FacadeShowInfo
interface FacadeShowInfo {
@@ -694,17 +699,18 @@ Facades
// Bas URL of the facade.
baseUrl: string;
+
+ // details depending on the facade type.
+ config: any;
}
.. http:post:: {nexus}/facades
- Create a new facade; it requires a `FacadeInfo` as the request's body.
-
-.. http:get:: {nexus}/facades/${fcid}
+ Create a new facade.
- Get details about a facade.
+ **Request:**
- .. ts:def:: FacadeInfo
+ .. code-block:: ts
interface FacadeInfo {
// Name of the facade, same as the "fcid" parameter.
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-docs] branch master updated: use Any on unknown types,
gnunet <=