@riocrypto/common 1.0.1649 → 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-completed-event.d.ts +1 -0
- package/build/events/async-bank-payment-owner-approved-event.d.ts +7 -0
- package/build/events/bank-payment-completed-event.d.ts +1 -0
- package/build/events/bank-payment-owner-approved-event.d.ts +7 -0
- package/build/events/subjects.d.ts +2 -2
- package/build/events/subjects.js +2 -2
- package/build/index.d.ts +2 -2
- package/build/index.js +2 -2
- package/package.json +1 -1
- package/build/events/async-bank-payment-owner-mismatch-event.d.ts +0 -7
- package/build/events/bank-payment-owner-mismatch-event.d.ts +0 -7
- /package/build/events/{async-bank-payment-owner-mismatch-event.js → async-bank-payment-owner-approved-event.js} +0 -0
- /package/build/events/{bank-payment-owner-mismatch-event.js → bank-payment-owner-approved-event.js} +0 -0
|
@@ -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
|
@@ -78,10 +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";
|
|
82
81
|
export * from "./events/async-bank-payment-failed-event";
|
|
83
82
|
export * from "./events/async-bank-payment-processing-event";
|
|
84
|
-
export * from "./events/async-bank-payment-owner-
|
|
83
|
+
export * from "./events/async-bank-payment-owner-approved-event";
|
|
84
|
+
export * from "./events/bank-payment-owner-approved-event";
|
|
85
85
|
export * from "./events/async-bank-payout-created-event";
|
|
86
86
|
export * from "./events/async-bank-payout-failed-event";
|
|
87
87
|
export * from "./events/async-crypto-payout-failed-event";
|
package/build/index.js
CHANGED
|
@@ -94,10 +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);
|
|
98
97
|
__exportStar(require("./events/async-bank-payment-failed-event"), exports);
|
|
99
98
|
__exportStar(require("./events/async-bank-payment-processing-event"), exports);
|
|
100
|
-
__exportStar(require("./events/async-bank-payment-owner-
|
|
99
|
+
__exportStar(require("./events/async-bank-payment-owner-approved-event"), exports);
|
|
100
|
+
__exportStar(require("./events/bank-payment-owner-approved-event"), exports);
|
|
101
101
|
__exportStar(require("./events/async-bank-payout-created-event"), exports);
|
|
102
102
|
__exportStar(require("./events/async-bank-payout-failed-event"), exports);
|
|
103
103
|
__exportStar(require("./events/async-crypto-payout-failed-event"), exports);
|
package/package.json
CHANGED
|
File without changes
|
/package/build/events/{bank-payment-owner-mismatch-event.js → bank-payment-owner-approved-event.js}
RENAMED
|
File without changes
|