@riocrypto/common 1.0.2455 → 1.0.2457
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-dispatched-event.d.ts +10 -0
- package/build/events/bank-account-verification-dispatched-event.js +2 -0
- package/build/events/bank-account-verification-sent-event.d.ts +0 -3
- 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/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Processor } from "../types/processor";
|
|
2
|
+
import { Subjects } from "./subjects";
|
|
3
|
+
export interface BankAccountVerificationDispatchedEvent {
|
|
4
|
+
subject: Subjects.BankAccountVerificationDispatched;
|
|
5
|
+
data: {
|
|
6
|
+
id: string;
|
|
7
|
+
provider?: Processor.SPEI_STP | Processor.SPEI_NVIO;
|
|
8
|
+
providerWithdrawalId?: string;
|
|
9
|
+
};
|
|
10
|
+
}
|
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
import { Processor } from "../types/processor";
|
|
2
1
|
import { Subjects } from "./subjects";
|
|
3
2
|
export interface BankAccountVerificationSentEvent {
|
|
4
3
|
subject: Subjects.BankAccountVerificationSent;
|
|
5
4
|
data: {
|
|
6
5
|
id: string;
|
|
7
|
-
provider?: Processor.SPEI_STP | Processor.SPEI_NVIO;
|
|
8
|
-
providerWithdrawalId?: string;
|
|
9
6
|
actualAccountHolderName: string;
|
|
10
7
|
};
|
|
11
8
|
}
|
|
@@ -30,6 +30,7 @@ export declare enum Subjects {
|
|
|
30
30
|
BankAccountNeedsReview = "bankAccount:needsReview",
|
|
31
31
|
BankAccountVerificationInitiated = "bankAccountVerification:initiated",
|
|
32
32
|
BankAccountVerificationSent = "bankAccountVerification:sent",
|
|
33
|
+
BankAccountVerificationDispatched = "bankAccountVerification:dispatched",
|
|
33
34
|
BankAccountAccountHolderNameValidated = "bankAccount:accountHolderNameValidated",
|
|
34
35
|
BankAccountHasInvalidAccountHolderName = "bankAccount:hasInvalidAccountHolderName",
|
|
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["BankAccountVerificationDispatched"] = "bankAccountVerification:dispatched";
|
|
37
38
|
Subjects["BankAccountAccountHolderNameValidated"] = "bankAccount:accountHolderNameValidated";
|
|
38
39
|
Subjects["BankAccountHasInvalidAccountHolderName"] = "bankAccount:hasInvalidAccountHolderName";
|
|
39
40
|
Subjects["BankAccountCheckPassed"] = "bankAccountCheck:passed";
|
package/build/index.d.ts
CHANGED
|
@@ -251,6 +251,7 @@ export * from "./events/transnetwork-fx-trade-alternative-requested-event";
|
|
|
251
251
|
export * from "./events/auth-kyc-needs-review-event";
|
|
252
252
|
export * from "./events/order-emergency-support-requested-event";
|
|
253
253
|
export * from "./events/bank-account-needs-review-event";
|
|
254
|
+
export * from "./events/bank-account-verification-dispatched-event";
|
|
254
255
|
export * from "./types/auth-payload";
|
|
255
256
|
export * from "./types/admin-auth-payload";
|
|
256
257
|
export * from "./types/admin-auth";
|
package/build/index.js
CHANGED
|
@@ -267,6 +267,7 @@ __exportStar(require("./events/transnetwork-fx-trade-alternative-requested-event
|
|
|
267
267
|
__exportStar(require("./events/auth-kyc-needs-review-event"), exports);
|
|
268
268
|
__exportStar(require("./events/order-emergency-support-requested-event"), exports);
|
|
269
269
|
__exportStar(require("./events/bank-account-needs-review-event"), exports);
|
|
270
|
+
__exportStar(require("./events/bank-account-verification-dispatched-event"), exports);
|
|
270
271
|
__exportStar(require("./types/auth-payload"), exports);
|
|
271
272
|
__exportStar(require("./types/admin-auth-payload"), exports);
|
|
272
273
|
__exportStar(require("./types/admin-auth"), exports);
|