@riocrypto/common 1.0.1617 → 1.0.1619
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/async-bank-payment-completed-event.d.ts +7 -0
- package/build/events/async-bank-payment-completed-event.js +2 -0
- package/build/events/async-bank-payout-completed-event.d.ts +7 -0
- package/build/events/async-bank-payout-completed-event.js +2 -0
- package/build/events/async-crypto-payment-completed-event.d.ts +7 -0
- package/build/events/async-crypto-payment-completed-event.js +2 -0
- package/build/events/async-crypto-payout-completed-event.d.ts +7 -0
- package/build/events/async-crypto-payout-completed-event.js +2 -0
- package/build/events/subjects.d.ts +4 -0
- package/build/events/subjects.js +4 -0
- package/build/index.d.ts +4 -0
- package/build/index.js +4 -0
- package/package.json +1 -1
|
@@ -4,6 +4,10 @@ export declare enum Subjects {
|
|
|
4
4
|
AddressVerificationSent = "addressVerification:sent",
|
|
5
5
|
AddressCheckPassed = "addressCheck:passed",
|
|
6
6
|
AddressCheckFailed = "addressCheck:Failed",
|
|
7
|
+
AsyncCryptoPayoutCompleted = "asyncCryptoPayout:completed",
|
|
8
|
+
AsyncCryptoPaymentCompleted = "asyncCryptoPayment:completed",
|
|
9
|
+
AsyncBankPaymentCompleted = "asyncBankPayment:completed",
|
|
10
|
+
AsyncBankPayoutCompleted = "asyncBankPayout:completed",
|
|
7
11
|
BankAccountVerificationInitiated = "bankAccountVerification:initiated",
|
|
8
12
|
BankAccountVerificationSent = "bankAccountVerification:sent",
|
|
9
13
|
BankAccountCheckPassed = "bankAccountCheck:passed",
|
package/build/events/subjects.js
CHANGED
|
@@ -8,6 +8,10 @@ var Subjects;
|
|
|
8
8
|
Subjects["AddressVerificationSent"] = "addressVerification:sent";
|
|
9
9
|
Subjects["AddressCheckPassed"] = "addressCheck:passed";
|
|
10
10
|
Subjects["AddressCheckFailed"] = "addressCheck:Failed";
|
|
11
|
+
Subjects["AsyncCryptoPayoutCompleted"] = "asyncCryptoPayout:completed";
|
|
12
|
+
Subjects["AsyncCryptoPaymentCompleted"] = "asyncCryptoPayment:completed";
|
|
13
|
+
Subjects["AsyncBankPaymentCompleted"] = "asyncBankPayment:completed";
|
|
14
|
+
Subjects["AsyncBankPayoutCompleted"] = "asyncBankPayout:completed";
|
|
11
15
|
Subjects["BankAccountVerificationInitiated"] = "bankAccountVerification:initiated";
|
|
12
16
|
Subjects["BankAccountVerificationSent"] = "bankAccountVerification:sent";
|
|
13
17
|
Subjects["BankAccountCheckPassed"] = "bankAccountCheck:passed";
|
package/build/index.d.ts
CHANGED
|
@@ -43,6 +43,10 @@ export * from "./errors/onboarding-not-approved-error";
|
|
|
43
43
|
export * from "./events/base-listener";
|
|
44
44
|
export * from "./events/base-publisher";
|
|
45
45
|
export * from "./events/subjects";
|
|
46
|
+
export * from "./events/async-crypto-payout-completed-event";
|
|
47
|
+
export * from "./events/async-crypto-payment-completed-event";
|
|
48
|
+
export * from "./events/async-bank-payment-completed-event";
|
|
49
|
+
export * from "./events/async-bank-payout-completed-event";
|
|
46
50
|
export * from "./events/bid-approved-event";
|
|
47
51
|
export * from "./events/bid-declined-event";
|
|
48
52
|
export * from "./events/user-created-event";
|
package/build/index.js
CHANGED
|
@@ -59,6 +59,10 @@ __exportStar(require("./errors/onboarding-not-approved-error"), exports);
|
|
|
59
59
|
__exportStar(require("./events/base-listener"), exports);
|
|
60
60
|
__exportStar(require("./events/base-publisher"), exports);
|
|
61
61
|
__exportStar(require("./events/subjects"), exports);
|
|
62
|
+
__exportStar(require("./events/async-crypto-payout-completed-event"), exports);
|
|
63
|
+
__exportStar(require("./events/async-crypto-payment-completed-event"), exports);
|
|
64
|
+
__exportStar(require("./events/async-bank-payment-completed-event"), exports);
|
|
65
|
+
__exportStar(require("./events/async-bank-payout-completed-event"), exports);
|
|
62
66
|
__exportStar(require("./events/bid-approved-event"), exports);
|
|
63
67
|
__exportStar(require("./events/bid-declined-event"), exports);
|
|
64
68
|
__exportStar(require("./events/user-created-event"), exports);
|