commit 99dbe425fdd60c27c53c3c7ca48a216bb11471f7
parent 97594836a18df476000459dace950dd3b547960c
Author: Martin Schanzenbach <schanzen@gnunet.org>
Date: Sun, 6 Jul 2025 16:21:23 +0200
params are now mandatory
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
@@ -1185,7 +1185,7 @@ Setting up instances
// is done using basic authentication with the configured password
// in the "password" field. Tokens are passed to other endpoints for
// authorization using RFC 8959 bearer tokens.
- password?: string;
+ password: string;
}
@@ -1199,7 +1199,7 @@ Setting up instances
method: "token";
// The value of this field MUST begin with the string "secret-token:".
- token?: string;
+ token: string;
}