gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-typescript-core] branch master updated: util: parse rule_gen in A


From: Admin
Subject: [taler-typescript-core] branch master updated: util: parse rule_gen in AccountKycStatus
Date: Tue, 03 Jun 2025 21:22:37 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository taler-typescript-core.

The following commit(s) were added to refs/heads/master by this push:
     new f958080a6 util: parse rule_gen in AccountKycStatus
f958080a6 is described below

commit f958080a63c86e5240caab4a51f260859a5f60c6
Author: Florian Dold <florian@dold.me>
AuthorDate: Tue Jun 3 21:22:32 2025 +0200

    util: parse rule_gen in AccountKycStatus
---
 packages/taler-util/src/types-taler-exchange.ts | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/packages/taler-util/src/types-taler-exchange.ts 
b/packages/taler-util/src/types-taler-exchange.ts
index 8603a7903..cd0feba9b 100644
--- a/packages/taler-util/src/types-taler-exchange.ts
+++ b/packages/taler-util/src/types-taler-exchange.ts
@@ -1922,6 +1922,12 @@ export interface AccountKycStatus {
   // accounts without this flag being set!
   aml_review: boolean;
 
+  // Monotonically increasing number identifying the decision.
+  // 0 if no decision was taken for this account. Useful for
+  // long-polling via min_rule to long-poll for any change
+  // to the rules or limits.
+  rule_gen: Integer;
+
   // Access token needed to construct the /kyc-spa/
   // URL that the user should open in a browser to
   // proceed with the KYC process (optional if the status
@@ -2726,6 +2732,7 @@ export const codecForAccountKycStatus = (): 
Codec<AccountKycStatus> =>
     .property("aml_review", codecForBoolean())
     .property("access_token", codecForAccessToken())
     .property("limits", codecOptional(codecForList(codecForAccountLimit())))
+    .property("rule_gen", codecForNumber())
     .build("TalerExchangeApi.AccountKycStatus");
 
 export const codecForOperationType = codecForEither(

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]