diff options
author | Sebastian <sebasjm@gmail.com> | 2023-04-24 23:42:14 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2023-04-24 23:42:14 -0300 |
commit | 00f108b9ddd4ac3447fd29552b3a503d6daed48d (patch) | |
tree | a69c09991b2c928c1f8e1eaf727c025a4e21a328 /packages/merchant-backoffice-ui/src/declaration.d.ts | |
parent | 2f8de9ea86cc1170b45e13fae6f0a66c7c4fd038 (diff) |
fix #7684
Diffstat (limited to 'packages/merchant-backoffice-ui/src/declaration.d.ts')
-rw-r--r-- | packages/merchant-backoffice-ui/src/declaration.d.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/merchant-backoffice-ui/src/declaration.d.ts b/packages/merchant-backoffice-ui/src/declaration.d.ts index 9fc4f0d77..a9d0f3a7f 100644 --- a/packages/merchant-backoffice-ui/src/declaration.d.ts +++ b/packages/merchant-backoffice-ui/src/declaration.d.ts @@ -395,11 +395,16 @@ export namespace MerchantBackend { // URL that the user should open in a browser to // proceed with the KYC process (as returned // by the exchange's /kyc-check/ endpoint). - kyc_url: string; + // Optional, missing if the account is blocked + // due to AML and not due to KYC. + kyc_url?: string; // Base URL of the exchange this is about. exchange_url: string; + // AML status of the account. + aml_status: number; + // Our bank wire account this is about. payto_uri: string; } |