@riocrypto/common 1.0.2567 → 1.0.2573
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.
- package/build/events/CEP-link-created-event.d.ts +1 -0
- package/build/events/bank-account-verification-actual-account-holder-name-obtained-event.d.ts +8 -0
- package/build/events/bank-account-verification-actual-account-holder-name-obtained-event.js +2 -0
- package/build/events/bank-account-verification-sent-event.d.ts +1 -1
- package/build/events/subjects.d.ts +1 -0
- package/build/events/subjects.js +1 -0
- package/build/index.d.ts +1 -0
- package/build/index.js +1 -0
- package/build/types/CEP.d.ts +1 -0
- package/build/types/address-verification.d.ts +1 -0
- package/build/types/bank-account-verification.d.ts +2 -0
- package/package.json +1 -1
|
@@ -30,6 +30,7 @@ export declare enum Subjects {
|
|
|
30
30
|
BankAccountNeedsReview = "bankAccount:needsReview",
|
|
31
31
|
BankAccountVerificationInitiated = "bankAccountVerification:initiated",
|
|
32
32
|
BankAccountVerificationSent = "bankAccountVerification:sent",
|
|
33
|
+
BankAccountVerificationActualAccountHolderNameObtained = "bankAccountVerification:actualAccountHolderNameObtained",
|
|
33
34
|
BankAccountVerificationDispatched = "bankAccountVerification:dispatched",
|
|
34
35
|
BankAccountAccountHolderNameValidated = "bankAccount:accountHolderNameValidated",
|
|
35
36
|
BankAccountCheckPassed = "bankAccountCheck:passed",
|
package/build/events/subjects.js
CHANGED
|
@@ -34,6 +34,7 @@ var Subjects;
|
|
|
34
34
|
Subjects["BankAccountNeedsReview"] = "bankAccount:needsReview";
|
|
35
35
|
Subjects["BankAccountVerificationInitiated"] = "bankAccountVerification:initiated";
|
|
36
36
|
Subjects["BankAccountVerificationSent"] = "bankAccountVerification:sent";
|
|
37
|
+
Subjects["BankAccountVerificationActualAccountHolderNameObtained"] = "bankAccountVerification:actualAccountHolderNameObtained";
|
|
37
38
|
Subjects["BankAccountVerificationDispatched"] = "bankAccountVerification:dispatched";
|
|
38
39
|
Subjects["BankAccountAccountHolderNameValidated"] = "bankAccount:accountHolderNameValidated";
|
|
39
40
|
Subjects["BankAccountCheckPassed"] = "bankAccountCheck:passed";
|
package/build/index.d.ts
CHANGED
|
@@ -256,6 +256,7 @@ export * from "./events/bank-account-verification-dispatched-event";
|
|
|
256
256
|
export * from "./events/external-trade-updated-event";
|
|
257
257
|
export * from "./events/stonex-trade-updated-event";
|
|
258
258
|
export * from "./events/binance-rfq-order-settlement-completed-event";
|
|
259
|
+
export * from "./events/bank-account-verification-actual-account-holder-name-obtained-event";
|
|
259
260
|
export * from "./types/auth-payload";
|
|
260
261
|
export * from "./types/admin-auth-payload";
|
|
261
262
|
export * from "./types/admin-auth";
|
package/build/index.js
CHANGED
|
@@ -272,6 +272,7 @@ __exportStar(require("./events/bank-account-verification-dispatched-event"), exp
|
|
|
272
272
|
__exportStar(require("./events/external-trade-updated-event"), exports);
|
|
273
273
|
__exportStar(require("./events/stonex-trade-updated-event"), exports);
|
|
274
274
|
__exportStar(require("./events/binance-rfq-order-settlement-completed-event"), exports);
|
|
275
|
+
__exportStar(require("./events/bank-account-verification-actual-account-holder-name-obtained-event"), exports);
|
|
275
276
|
__exportStar(require("./types/auth-payload"), exports);
|
|
276
277
|
__exportStar(require("./types/admin-auth-payload"), exports);
|
|
277
278
|
__exportStar(require("./types/admin-auth"), exports);
|
package/build/types/CEP.d.ts
CHANGED