taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit 6ba1bdfdcfaa9d75bd72d9231a81ac68191f8e61
parent 66b8b80e3204433724b4a554a86028c236384612
Author: Martin Schanzenbach <schanzen@gnunet.org>
Date:   Mon, 23 Jun 2025 12:23:47 +0200

more v19 info

Diffstat:
Mcore/api-merchant.rst | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/core/api-merchant.rst b/core/api-merchant.rst @@ -1249,14 +1249,16 @@ Setting up instances .. ts:def:: LoginTokenSuccessResponse interface LoginTokenSuccessResponse { - // deprecated. See access_token + // deprecated since v19. See access_token token: string; // The login token that can be used to access resources // that are in scope for some time. Must be prefixed // with "Bearer " when used in the "Authorization" HTTP header. // Will already begin with the RFC 8959 prefix. + // **Since v19** access_token: string; + // Scope of the token (which kinds of operations it will allow) scope: "readonly" | "write" | "all" | "order-simple" | "order-pos" | "order-mgmt" | "order-full";