taler-docs

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

commit dcbc9ea550698046918a9d4a2e080d2a591ec2cf
parent c104cb17bbe8d7e11c8335206a09f733a207afef
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 24 Dec 2024 10:19:24 +0100

fix spec for donau

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

diff --git a/core/api-merchant.rst b/core/api-merchant.rst @@ -4401,7 +4401,7 @@ The contract terms must have the following structure: .. ts:def:: ContractTerms - type ContractTerms = (`ContractTermsV1` | ContractTermsV0) & ContractTermsCommon; + type ContractTerms = (ContractTermsV1 | ContractTermsV0) & ContractTermsCommon; .. ts:def:: ContractTermsV1 @@ -4608,7 +4608,7 @@ The contract terms must have the following structure: type: "token"; // Slug of the token family in the - // 'token_families' map on the order. + // ``token_families`` map on the order. token_family_slug: string; // Number of tokens of this type required. @@ -4636,7 +4636,7 @@ The contract terms must have the following structure: // Index of the public key for this output token // in the `ContractTokenFamily` ``keys`` array. - key_index: integer; + key_index: Integer; }