@riocrypto/common 1.0.2309 → 1.0.2311
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/bulk-bank-payout-liquidity-needs-sourcing-event.d.ts +7 -0
- package/build/events/bulk-bank-payout-liquidity-needs-sourcing-event.js +2 -0
- package/build/events/bulk-bank-payout-liquidity-sourced-event.d.ts +7 -0
- package/build/events/bulk-bank-payout-liquidity-sourced-event.js +2 -0
- package/build/events/bulk-crypto-payout-liquidity-needs-sourcing-event.d.ts +7 -0
- package/build/events/bulk-crypto-payout-liquidity-needs-sourcing-event.js +2 -0
- package/build/events/bulk-crypto-payout-liquidity-sourced-event.d.ts +7 -0
- package/build/events/bulk-crypto-payout-liquidity-sourced-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/build/types/bulk-bank-payout-status.d.ts +2 -0
- package/build/types/bulk-bank-payout-status.js +2 -0
- package/build/types/bulk-crypto-payout-status.d.ts +2 -0
- package/build/types/bulk-crypto-payout-status.js +2 -0
- package/package.json +1 -1
|
@@ -56,6 +56,10 @@ export declare enum Subjects {
|
|
|
56
56
|
LiquidityNeedsSourcing = "liquidity:needsSourcing",
|
|
57
57
|
LiquidityBeingSourced = "liquidity:beingSourced",
|
|
58
58
|
LiquiditySourced = "liquidity:sourced",
|
|
59
|
+
BulkCryptoPayoutLiquiditySourced = "bulkCryptoPayout:liquiditySourced",
|
|
60
|
+
BulkBankPayoutLiquiditySourced = "bulkBankPayout:liquiditySourced",
|
|
61
|
+
BulkCryptoPayoutLiquidityNeedsSourcing = "bulkCryptoPayout:liquidityNeedsSourcing",
|
|
62
|
+
BulkBankPayoutLiquidityNeedsSourcing = "bulkBankPayout:liquidityNeedsSourcing",
|
|
59
63
|
LiquidityInsufficient = "liquidity:insufficient",
|
|
60
64
|
LiquidityTransfered = "liquidity:transfered",
|
|
61
65
|
LiquidityFillFailed = "liquidity:fillFailed",
|
package/build/events/subjects.js
CHANGED
|
@@ -60,6 +60,10 @@ var Subjects;
|
|
|
60
60
|
Subjects["LiquidityNeedsSourcing"] = "liquidity:needsSourcing";
|
|
61
61
|
Subjects["LiquidityBeingSourced"] = "liquidity:beingSourced";
|
|
62
62
|
Subjects["LiquiditySourced"] = "liquidity:sourced";
|
|
63
|
+
Subjects["BulkCryptoPayoutLiquiditySourced"] = "bulkCryptoPayout:liquiditySourced";
|
|
64
|
+
Subjects["BulkBankPayoutLiquiditySourced"] = "bulkBankPayout:liquiditySourced";
|
|
65
|
+
Subjects["BulkCryptoPayoutLiquidityNeedsSourcing"] = "bulkCryptoPayout:liquidityNeedsSourcing";
|
|
66
|
+
Subjects["BulkBankPayoutLiquidityNeedsSourcing"] = "bulkBankPayout:liquidityNeedsSourcing";
|
|
63
67
|
Subjects["LiquidityInsufficient"] = "liquidity:insufficient";
|
|
64
68
|
Subjects["LiquidityTransfered"] = "liquidity:transfered";
|
|
65
69
|
Subjects["LiquidityFillFailed"] = "liquidity:fillFailed";
|
package/build/index.d.ts
CHANGED
|
@@ -214,6 +214,10 @@ export * from "./events/bulk-crypto-payment-incorrect-amount-paid-event";
|
|
|
214
214
|
export * from "./events/bulk-bank-payment-incorrect-amount-paid-event";
|
|
215
215
|
export * from "./events/async-bulk-crypto-payment-incorrect-amount-paid-event";
|
|
216
216
|
export * from "./events/async-bulk-bank-payment-incorrect-amount-paid-event";
|
|
217
|
+
export * from "./events/bulk-crypto-payout-liquidity-sourced-event";
|
|
218
|
+
export * from "./events/bulk-bank-payout-liquidity-sourced-event";
|
|
219
|
+
export * from "./events/bulk-crypto-payout-liquidity-needs-sourcing-event";
|
|
220
|
+
export * from "./events/bulk-bank-payout-liquidity-needs-sourcing-event";
|
|
217
221
|
export * from "./types/auth-payload";
|
|
218
222
|
export * from "./types/admin-auth-payload";
|
|
219
223
|
export * from "./types/admin-auth";
|
package/build/index.js
CHANGED
|
@@ -230,6 +230,10 @@ __exportStar(require("./events/bulk-crypto-payment-incorrect-amount-paid-event")
|
|
|
230
230
|
__exportStar(require("./events/bulk-bank-payment-incorrect-amount-paid-event"), exports);
|
|
231
231
|
__exportStar(require("./events/async-bulk-crypto-payment-incorrect-amount-paid-event"), exports);
|
|
232
232
|
__exportStar(require("./events/async-bulk-bank-payment-incorrect-amount-paid-event"), exports);
|
|
233
|
+
__exportStar(require("./events/bulk-crypto-payout-liquidity-sourced-event"), exports);
|
|
234
|
+
__exportStar(require("./events/bulk-bank-payout-liquidity-sourced-event"), exports);
|
|
235
|
+
__exportStar(require("./events/bulk-crypto-payout-liquidity-needs-sourcing-event"), exports);
|
|
236
|
+
__exportStar(require("./events/bulk-bank-payout-liquidity-needs-sourcing-event"), exports);
|
|
233
237
|
__exportStar(require("./types/auth-payload"), exports);
|
|
234
238
|
__exportStar(require("./types/admin-auth-payload"), exports);
|
|
235
239
|
__exportStar(require("./types/admin-auth"), exports);
|
|
@@ -4,6 +4,8 @@ export declare enum BulkBankPayoutStatus {
|
|
|
4
4
|
AwaitingAsyncPayoutRequest = "awaitingAsyncPayoutRequest",
|
|
5
5
|
AwaitingPayout = "awaitingPayout",
|
|
6
6
|
AwaitingAsyncPayout = "awaitingAsyncPayout",
|
|
7
|
+
SourcingLiquidity = "sourcingLiquidity",
|
|
8
|
+
LiquiditySourced = "liquiditySourced",
|
|
7
9
|
Complete = "complete",
|
|
8
10
|
Failed = "failed",
|
|
9
11
|
Cancelled = "cancelled"
|
|
@@ -8,6 +8,8 @@ var BulkBankPayoutStatus;
|
|
|
8
8
|
BulkBankPayoutStatus["AwaitingAsyncPayoutRequest"] = "awaitingAsyncPayoutRequest";
|
|
9
9
|
BulkBankPayoutStatus["AwaitingPayout"] = "awaitingPayout";
|
|
10
10
|
BulkBankPayoutStatus["AwaitingAsyncPayout"] = "awaitingAsyncPayout";
|
|
11
|
+
BulkBankPayoutStatus["SourcingLiquidity"] = "sourcingLiquidity";
|
|
12
|
+
BulkBankPayoutStatus["LiquiditySourced"] = "liquiditySourced";
|
|
11
13
|
BulkBankPayoutStatus["Complete"] = "complete";
|
|
12
14
|
BulkBankPayoutStatus["Failed"] = "failed";
|
|
13
15
|
BulkBankPayoutStatus["Cancelled"] = "cancelled";
|
|
@@ -5,6 +5,8 @@ export declare enum BulkCryptoPayoutStatus {
|
|
|
5
5
|
AwaitingPayout = "awaitingPayout",
|
|
6
6
|
AwaitingAsyncPayout = "awaitingAsyncPayout",
|
|
7
7
|
AwaitingAsyncPayoutRequest = "awaitingAsyncPayoutRequest",
|
|
8
|
+
SourcingLiquidity = "sourcingLiquidity",
|
|
9
|
+
LiquiditySourced = "liquiditySourced",
|
|
8
10
|
Complete = "complete",
|
|
9
11
|
Failed = "failed",
|
|
10
12
|
Cancelled = "cancelled"
|
|
@@ -9,6 +9,8 @@ var BulkCryptoPayoutStatus;
|
|
|
9
9
|
BulkCryptoPayoutStatus["AwaitingPayout"] = "awaitingPayout";
|
|
10
10
|
BulkCryptoPayoutStatus["AwaitingAsyncPayout"] = "awaitingAsyncPayout";
|
|
11
11
|
BulkCryptoPayoutStatus["AwaitingAsyncPayoutRequest"] = "awaitingAsyncPayoutRequest";
|
|
12
|
+
BulkCryptoPayoutStatus["SourcingLiquidity"] = "sourcingLiquidity";
|
|
13
|
+
BulkCryptoPayoutStatus["LiquiditySourced"] = "liquiditySourced";
|
|
12
14
|
BulkCryptoPayoutStatus["Complete"] = "complete";
|
|
13
15
|
BulkCryptoPayoutStatus["Failed"] = "failed";
|
|
14
16
|
BulkCryptoPayoutStatus["Cancelled"] = "cancelled";
|