@riocrypto/common 1.0.1422 → 1.0.1423
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/bank-account-verification-initiated-event.d.ts +7 -0
- package/build/events/bank-account-verification-initiated-event.js +2 -0
- package/build/events/bank-account-verification-sent-event.d.ts +7 -0
- package/build/events/bank-account-verification-sent-event.js +2 -0
- package/build/events/subjects.d.ts +3 -0
- package/build/events/subjects.js +3 -0
- package/build/index.d.ts +2 -0
- package/build/index.js +2 -0
- package/package.json +1 -1
|
@@ -4,6 +4,9 @@ export declare enum Subjects {
|
|
|
4
4
|
AddressVerificationSent = "addressVerification:sent",
|
|
5
5
|
AddressCheckPassed = "addressCheck:passed",
|
|
6
6
|
AddressCheckFailed = "addressCheck:Failed",
|
|
7
|
+
BankAccountVerificationInitiated = "bankAccountVerification:initiated",
|
|
8
|
+
BankAccountVerificationSent = "bankAccountVerification:sent",
|
|
9
|
+
BankAccountCheckPassed = "bankAccountCheck:passed",
|
|
7
10
|
CircleAddressReady = "circleAddress:ready",
|
|
8
11
|
CircleAddressFailed = "circleAddress:failed",
|
|
9
12
|
UBOCreated = "ubo:created",
|
package/build/events/subjects.js
CHANGED
|
@@ -8,6 +8,9 @@ var Subjects;
|
|
|
8
8
|
Subjects["AddressVerificationSent"] = "addressVerification:sent";
|
|
9
9
|
Subjects["AddressCheckPassed"] = "addressCheck:passed";
|
|
10
10
|
Subjects["AddressCheckFailed"] = "addressCheck:Failed";
|
|
11
|
+
Subjects["BankAccountVerificationInitiated"] = "bankAccountVerification:initiated";
|
|
12
|
+
Subjects["BankAccountVerificationSent"] = "bankAccountVerification:sent";
|
|
13
|
+
Subjects["BankAccountCheckPassed"] = "bankAccountCheck:passed";
|
|
11
14
|
Subjects["CircleAddressReady"] = "circleAddress:ready";
|
|
12
15
|
Subjects["CircleAddressFailed"] = "circleAddress:failed";
|
|
13
16
|
Subjects["UBOCreated"] = "ubo:created";
|
package/build/index.d.ts
CHANGED
|
@@ -130,6 +130,8 @@ export * from "./events/ubo-updated-event";
|
|
|
130
130
|
export * from "./events/auth-deleted-event";
|
|
131
131
|
export * from "./events/address-verification-initiated-event";
|
|
132
132
|
export * from "./events/address-verification-sent-event";
|
|
133
|
+
export * from "./events/bank-account-verification-initiated-event";
|
|
134
|
+
export * from "./events/bank-account-verification-sent-event";
|
|
133
135
|
export * from "./types/auth-payload";
|
|
134
136
|
export * from "./types/admin-auth-payload";
|
|
135
137
|
export * from "./types/admin-auth";
|
package/build/index.js
CHANGED
|
@@ -146,6 +146,8 @@ __exportStar(require("./events/ubo-updated-event"), exports);
|
|
|
146
146
|
__exportStar(require("./events/auth-deleted-event"), exports);
|
|
147
147
|
__exportStar(require("./events/address-verification-initiated-event"), exports);
|
|
148
148
|
__exportStar(require("./events/address-verification-sent-event"), exports);
|
|
149
|
+
__exportStar(require("./events/bank-account-verification-initiated-event"), exports);
|
|
150
|
+
__exportStar(require("./events/bank-account-verification-sent-event"), exports);
|
|
149
151
|
__exportStar(require("./types/auth-payload"), exports);
|
|
150
152
|
__exportStar(require("./types/admin-auth-payload"), exports);
|
|
151
153
|
__exportStar(require("./types/admin-auth"), exports);
|