@riocrypto/common 1.0.2693 → 1.0.2694
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -46,5 +46,6 @@ export declare enum UserAttribute {
|
|
|
46
46
|
UseAlfinForPENDeposits = "useAlfinForPENDeposits",
|
|
47
47
|
UseAlfinForPENWithdrawals = "useAlfinForPENWithdrawals",
|
|
48
48
|
UseAlfinForUSDDeposits = "useAlfinForUSDDeposits",
|
|
49
|
-
UseAlfinForUSDWithdrawals = "useAlfinForUSDWithdrawals"
|
|
49
|
+
UseAlfinForUSDWithdrawals = "useAlfinForUSDWithdrawals",
|
|
50
|
+
AllowOnboardingsViaAPI = "allowOnboardingsViaAPI"
|
|
50
51
|
}
|
|
@@ -51,4 +51,10 @@ var UserAttribute;
|
|
|
51
51
|
UserAttribute["UseAlfinForPENWithdrawals"] = "useAlfinForPENWithdrawals";
|
|
52
52
|
UserAttribute["UseAlfinForUSDDeposits"] = "useAlfinForUSDDeposits";
|
|
53
53
|
UserAttribute["UseAlfinForUSDWithdrawals"] = "useAlfinForUSDWithdrawals";
|
|
54
|
+
// Lets a broker onboard its own sub-accounts over the API: uploading
|
|
55
|
+
// documents and submitting additional information for users whose brokerId
|
|
56
|
+
// is the caller. Almost every onboarding now goes through the register page
|
|
57
|
+
// or an information request link, so this stays off unless a broker is
|
|
58
|
+
// actually integrating against those endpoints.
|
|
59
|
+
UserAttribute["AllowOnboardingsViaAPI"] = "allowOnboardingsViaAPI";
|
|
54
60
|
})(UserAttribute = exports.UserAttribute || (exports.UserAttribute = {}));
|