commit b0c70ff1e82a7a6c3e4b80ecc79dedb253fad848 parent a5958dbfa24c312283c32e0e80b6ab19bc5677ec Author: Christian Grothoff <christian@grothoff.org> Date: Sat, 25 May 2024 22:19:04 +0200 disambiguate type name Diffstat:
| M | core/api-exchange.rst | | | 11 | +++++++---- |
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/core/api-exchange.rst b/core/api-exchange.rst @@ -1408,7 +1408,10 @@ and freeze or unfreeze accounts suspected of money laundering. // to the AML staff but will also be shown to the // client when they initiate the check in the KYC SPA. description: string; - description_i18n: {}; + + // Map from IETF BCP 47 language tags to localized + // description texts. + description_i18n: { [lang_tag: string]: string}; // Names of the fields that the CONTEXT must provide // as inputs to this check. @@ -5398,7 +5401,7 @@ regulatory compliance. // List of available voluntary checks the client could pay for. // Since **vATTEST**. - voluntary_checks?: { name : KycCheckInformation}; + voluntary_checks?: { name : KycCheckPublicInformation}; } .. ts:def:: KycRequirementInformation @@ -5428,10 +5431,10 @@ regulatory compliance. } - .. ts:def:: KycCheckInformation + .. ts:def:: KycCheckPublicInformation // Since **vATTEST**. - interface KycCheckInformation { + interface KycCheckPublicInformation { // English description of the check. description: string;