commit 2e186a67bd60a775fa8028a917db2057112b0665 parent 1ac4612848c2d8ffd6cb43e9dbeaa4df5b45c508 Author: Florian Dold <dold@taler.net> Date: Mon, 17 Aug 2026 15:35:47 +0200 merchant docs: allow indefinite token-family validity Diffstat:
| M | core/merchant/patch-private-tokenfamilies-TOKEN_FAMILY_SLUG.rst | | | 4 | +++- |
| M | core/merchant/post-private-tokenfamilies.rst | | | 4 | +++- |
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/core/merchant/patch-private-tokenfamilies-TOKEN_FAMILY_SLUG.rst b/core/merchant/patch-private-tokenfamilies-TOKEN_FAMILY_SLUG.rst @@ -49,6 +49,8 @@ valid_after: Timestamp; // End time of the token family's validity period. - valid_before: Timestamp; + // If not specified, the token family is valid indefinitely. + // Optional since protocol **v36**. + valid_before?: Timestamp; } diff --git a/core/merchant/post-private-tokenfamilies.rst b/core/merchant/post-private-tokenfamilies.rst @@ -61,7 +61,9 @@ valid_after?: Timestamp; // End time of the token family's validity period. - valid_before: Timestamp; + // If not specified, the token family is valid indefinitely. + // Optional since protocol **v36**. + valid_before?: Timestamp; // Validity duration of an issued token. duration: RelativeTime;