@riocrypto/common 1.0.1650 → 1.0.1651
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-owner-approved-event.d.ts +7 -0
- package/build/events/async-bank-payment-owner-approved-event.js +2 -0
- package/build/events/bank-payment-owner-approved-event.d.ts +7 -0
- package/build/events/bank-payment-owner-approved-event.js +2 -0
- package/build/events/subjects.d.ts +2 -2
- package/build/events/subjects.js +2 -2
- package/build/index.d.ts +2 -0
- package/build/index.js +2 -0
- package/package.json +1 -1
|
@@ -12,6 +12,8 @@ export declare enum Subjects {
|
|
|
12
12
|
AsyncBankPaymentCreated = "asyncBankPayment:created",
|
|
13
13
|
AsyncBankPaymentProcessing = "asyncBankPayment:processing",
|
|
14
14
|
AsyncBankPaymentCompleted = "asyncBankPayment:completed",
|
|
15
|
+
AsyncBankPaymentOwnerApproved = "asyncBankPayment:ownerApproved",
|
|
16
|
+
BankPaymentOwnerApproved = "bankPayment:ownerApproved",
|
|
15
17
|
AsyncBinanceBankPaymentCompleted = "asyncBinanceBankPayment:completed",
|
|
16
18
|
AsyncBankPaymentFailed = "asyncBankPayment:failed",
|
|
17
19
|
AsyncBankPayoutCreated = "asyncBankPayout:created",
|
|
@@ -64,8 +66,6 @@ export declare enum Subjects {
|
|
|
64
66
|
BankPaymentCreated = "bankPayment:created",
|
|
65
67
|
BankPaymentProcessing = "bankPayment:processing",
|
|
66
68
|
BankPaymentCompleted = "bankPayment:completed",
|
|
67
|
-
BankPaymentOwnerMismatch = "bankPayment:ownerMismatch",
|
|
68
|
-
AsyncBankPaymentOwnerMismatch = "asyncBankPayment:ownerMismatch",
|
|
69
69
|
BankPaymentFailed = "bankPayment:failed",
|
|
70
70
|
FeesUpdated = "fees:updated",
|
|
71
71
|
ChainedQuoteReissued = "chainedQuote:reissued",
|
package/build/events/subjects.js
CHANGED
|
@@ -16,6 +16,8 @@ var Subjects;
|
|
|
16
16
|
Subjects["AsyncBankPaymentCreated"] = "asyncBankPayment:created";
|
|
17
17
|
Subjects["AsyncBankPaymentProcessing"] = "asyncBankPayment:processing";
|
|
18
18
|
Subjects["AsyncBankPaymentCompleted"] = "asyncBankPayment:completed";
|
|
19
|
+
Subjects["AsyncBankPaymentOwnerApproved"] = "asyncBankPayment:ownerApproved";
|
|
20
|
+
Subjects["BankPaymentOwnerApproved"] = "bankPayment:ownerApproved";
|
|
19
21
|
Subjects["AsyncBinanceBankPaymentCompleted"] = "asyncBinanceBankPayment:completed";
|
|
20
22
|
Subjects["AsyncBankPaymentFailed"] = "asyncBankPayment:failed";
|
|
21
23
|
Subjects["AsyncBankPayoutCreated"] = "asyncBankPayout:created";
|
|
@@ -68,8 +70,6 @@ var Subjects;
|
|
|
68
70
|
Subjects["BankPaymentCreated"] = "bankPayment:created";
|
|
69
71
|
Subjects["BankPaymentProcessing"] = "bankPayment:processing";
|
|
70
72
|
Subjects["BankPaymentCompleted"] = "bankPayment:completed";
|
|
71
|
-
Subjects["BankPaymentOwnerMismatch"] = "bankPayment:ownerMismatch";
|
|
72
|
-
Subjects["AsyncBankPaymentOwnerMismatch"] = "asyncBankPayment:ownerMismatch";
|
|
73
73
|
Subjects["BankPaymentFailed"] = "bankPayment:failed";
|
|
74
74
|
Subjects["FeesUpdated"] = "fees:updated";
|
|
75
75
|
Subjects["ChainedQuoteReissued"] = "chainedQuote:reissued";
|
package/build/index.d.ts
CHANGED
|
@@ -80,6 +80,8 @@ export * from "./events/async-crypto-payout-failed-event";
|
|
|
80
80
|
export * from "./events/async-bank-payment-created-event";
|
|
81
81
|
export * from "./events/async-bank-payment-failed-event";
|
|
82
82
|
export * from "./events/async-bank-payment-processing-event";
|
|
83
|
+
export * from "./events/async-bank-payment-owner-approved-event";
|
|
84
|
+
export * from "./events/bank-payment-owner-approved-event";
|
|
83
85
|
export * from "./events/async-bank-payout-created-event";
|
|
84
86
|
export * from "./events/async-bank-payout-failed-event";
|
|
85
87
|
export * from "./events/async-crypto-payout-failed-event";
|
package/build/index.js
CHANGED
|
@@ -96,6 +96,8 @@ __exportStar(require("./events/async-crypto-payout-failed-event"), exports);
|
|
|
96
96
|
__exportStar(require("./events/async-bank-payment-created-event"), exports);
|
|
97
97
|
__exportStar(require("./events/async-bank-payment-failed-event"), exports);
|
|
98
98
|
__exportStar(require("./events/async-bank-payment-processing-event"), exports);
|
|
99
|
+
__exportStar(require("./events/async-bank-payment-owner-approved-event"), exports);
|
|
100
|
+
__exportStar(require("./events/bank-payment-owner-approved-event"), exports);
|
|
99
101
|
__exportStar(require("./events/async-bank-payout-created-event"), exports);
|
|
100
102
|
__exportStar(require("./events/async-bank-payout-failed-event"), exports);
|
|
101
103
|
__exportStar(require("./events/async-crypto-payout-failed-event"), exports);
|