commit 8ced714561d11ba9de52bad151919e34d9cb31c7
parent 972ade5b845e4332431f0f33551b4c596711d1ac
Author: Christian Grothoff <grothoff@gnunet.org>
Date: Thu, 23 Oct 2025 10:49:00 +0200
more updates for #9148
Diffstat:
1 file changed, 14 insertions(+), 4 deletions(-)
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
@@ -1484,7 +1484,7 @@ Setting up instances
// If the frontend does NOT specify a refund deadline, how long should
// refunds be allowed by default?
// @since **v22**
- default_refund_delay: RelativeTime;
+ default_refund_delay?: RelativeTime;
}
@@ -1517,7 +1517,7 @@ Setting up instances
.. ts:def:: InstanceAuthConfigToken
- // @since v19
+ // @since **v19**
interface InstanceAuthConfigToken {
// The API is accessible through API tokens.
// Tokens are retrieved from the /private/token
@@ -1534,7 +1534,7 @@ Setting up instances
.. ts:def:: InstanceAuthConfigTokenOLD
- // @deprecated since v19
+ // @deprecated since **v19**
interface InstanceAuthConfigTokenOLD {
// The API is accessible through API tokens.
// Tokens are retrieved from the /private/token
@@ -1548,7 +1548,7 @@ Setting up instances
.. ts:def:: InstanceAuthConfigExternal
- // @deprecated since v20
+ // @deprecated since **v20**
interface InstanceAuthConfigExternal {
// The mechant backend does not do
// any authentication checks. Instead an API
@@ -1783,6 +1783,11 @@ Setting up instances
// offers we make be valid by default?
default_pay_delay: RelativeTime;
+ // If the frontend does NOT specify a refund deadline, how long should
+ // refunds be allowed by default?
+ // @since **v22**
+ default_refund_delay?: RelativeTime;
+
}
@@ -1918,6 +1923,11 @@ Inspecting instances
// offers we make be valid by default?
default_pay_delay: RelativeTime;
+ // If the frontend does NOT specify a refund deadline, how long should
+ // refunds be allowed by default?
+ // @since **v22**
+ default_refund_delay: RelativeTime;
+
// Authentication configuration.
// Does not contain the token when token auth is configured.
auth: {