@riocrypto/common 1.0.1646 → 1.0.1649
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-mismatch-event.d.ts +7 -0
- package/build/events/async-bank-payment-owner-mismatch-event.js +2 -0
- package/build/events/bank-payment-owner-mismatch-event.d.ts +7 -0
- package/build/events/bank-payment-owner-mismatch-event.js +2 -0
- package/build/events/subjects.d.ts +2 -0
- package/build/events/subjects.js +2 -0
- package/build/index.d.ts +2 -0
- package/build/index.js +2 -0
- package/package.json +1 -1
|
@@ -64,6 +64,8 @@ export declare enum Subjects {
|
|
|
64
64
|
BankPaymentCreated = "bankPayment:created",
|
|
65
65
|
BankPaymentProcessing = "bankPayment:processing",
|
|
66
66
|
BankPaymentCompleted = "bankPayment:completed",
|
|
67
|
+
BankPaymentOwnerMismatch = "bankPayment:ownerMismatch",
|
|
68
|
+
AsyncBankPaymentOwnerMismatch = "asyncBankPayment:ownerMismatch",
|
|
67
69
|
BankPaymentFailed = "bankPayment:failed",
|
|
68
70
|
FeesUpdated = "fees:updated",
|
|
69
71
|
ChainedQuoteReissued = "chainedQuote:reissued",
|
package/build/events/subjects.js
CHANGED
|
@@ -68,6 +68,8 @@ var Subjects;
|
|
|
68
68
|
Subjects["BankPaymentCreated"] = "bankPayment:created";
|
|
69
69
|
Subjects["BankPaymentProcessing"] = "bankPayment:processing";
|
|
70
70
|
Subjects["BankPaymentCompleted"] = "bankPayment:completed";
|
|
71
|
+
Subjects["BankPaymentOwnerMismatch"] = "bankPayment:ownerMismatch";
|
|
72
|
+
Subjects["AsyncBankPaymentOwnerMismatch"] = "asyncBankPayment:ownerMismatch";
|
|
71
73
|
Subjects["BankPaymentFailed"] = "bankPayment:failed";
|
|
72
74
|
Subjects["FeesUpdated"] = "fees:updated";
|
|
73
75
|
Subjects["ChainedQuoteReissued"] = "chainedQuote:reissued";
|
package/build/index.d.ts
CHANGED
|
@@ -78,8 +78,10 @@ export * from "./events/deposit-address-created-event";
|
|
|
78
78
|
export * from "./events/async-bank-payout-failed-event";
|
|
79
79
|
export * from "./events/async-crypto-payout-failed-event";
|
|
80
80
|
export * from "./events/async-bank-payment-created-event";
|
|
81
|
+
export * from "./events/bank-payment-owner-mismatch-event";
|
|
81
82
|
export * from "./events/async-bank-payment-failed-event";
|
|
82
83
|
export * from "./events/async-bank-payment-processing-event";
|
|
84
|
+
export * from "./events/async-bank-payment-owner-mismatch-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
|
@@ -94,8 +94,10 @@ __exportStar(require("./events/deposit-address-created-event"), exports);
|
|
|
94
94
|
__exportStar(require("./events/async-bank-payout-failed-event"), exports);
|
|
95
95
|
__exportStar(require("./events/async-crypto-payout-failed-event"), exports);
|
|
96
96
|
__exportStar(require("./events/async-bank-payment-created-event"), exports);
|
|
97
|
+
__exportStar(require("./events/bank-payment-owner-mismatch-event"), exports);
|
|
97
98
|
__exportStar(require("./events/async-bank-payment-failed-event"), exports);
|
|
98
99
|
__exportStar(require("./events/async-bank-payment-processing-event"), exports);
|
|
100
|
+
__exportStar(require("./events/async-bank-payment-owner-mismatch-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);
|