@riocrypto/common 1.0.2310 → 1.0.2312

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.
@@ -0,0 +1,7 @@
1
+ import { Subjects } from "./subjects";
2
+ export interface BulkBankPayoutLiquidityNeedsSourcingEvent {
3
+ subject: Subjects.BulkBankPayoutLiquidityNeedsSourcing;
4
+ data: {
5
+ bulkBankPayoutId: string;
6
+ };
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ import { Subjects } from "./subjects";
2
+ export interface BulkBankPayoutLiquiditySourcedEvent {
3
+ subject: Subjects.BulkBankPayoutLiquiditySourced;
4
+ data: {
5
+ bulkBankPayoutId: string;
6
+ };
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ import { Subjects } from "./subjects";
2
+ export interface BulkCryptoPayoutLiquidityNeedsSourcingEvent {
3
+ subject: Subjects.BulkCryptoPayoutLiquidityNeedsSourcing;
4
+ data: {
5
+ bulkCryptoPayoutId: string;
6
+ };
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ import { Subjects } from "./subjects";
2
+ export interface BulkCryptoPayoutLiquiditySourcedEvent {
3
+ subject: Subjects.BulkCryptoPayoutLiquiditySourced;
4
+ data: {
5
+ bulkCryptoPayoutId: string;
6
+ };
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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",
@@ -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);
@@ -6,6 +6,7 @@ export declare enum BulkBankPayoutStatus {
6
6
  AwaitingAsyncPayout = "awaitingAsyncPayout",
7
7
  SourcingLiquidity = "sourcingLiquidity",
8
8
  LiquiditySourced = "liquiditySourced",
9
+ CheckingLiquidity = "checkingLiquidity",
9
10
  Complete = "complete",
10
11
  Failed = "failed",
11
12
  Cancelled = "cancelled"
@@ -10,6 +10,7 @@ var BulkBankPayoutStatus;
10
10
  BulkBankPayoutStatus["AwaitingAsyncPayout"] = "awaitingAsyncPayout";
11
11
  BulkBankPayoutStatus["SourcingLiquidity"] = "sourcingLiquidity";
12
12
  BulkBankPayoutStatus["LiquiditySourced"] = "liquiditySourced";
13
+ BulkBankPayoutStatus["CheckingLiquidity"] = "checkingLiquidity";
13
14
  BulkBankPayoutStatus["Complete"] = "complete";
14
15
  BulkBankPayoutStatus["Failed"] = "failed";
15
16
  BulkBankPayoutStatus["Cancelled"] = "cancelled";
@@ -5,6 +5,7 @@ export declare enum BulkCryptoPayoutStatus {
5
5
  AwaitingPayout = "awaitingPayout",
6
6
  AwaitingAsyncPayout = "awaitingAsyncPayout",
7
7
  AwaitingAsyncPayoutRequest = "awaitingAsyncPayoutRequest",
8
+ CheckingLiquidity = "checkingLiquidity",
8
9
  SourcingLiquidity = "sourcingLiquidity",
9
10
  LiquiditySourced = "liquiditySourced",
10
11
  Complete = "complete",
@@ -9,6 +9,7 @@ var BulkCryptoPayoutStatus;
9
9
  BulkCryptoPayoutStatus["AwaitingPayout"] = "awaitingPayout";
10
10
  BulkCryptoPayoutStatus["AwaitingAsyncPayout"] = "awaitingAsyncPayout";
11
11
  BulkCryptoPayoutStatus["AwaitingAsyncPayoutRequest"] = "awaitingAsyncPayoutRequest";
12
+ BulkCryptoPayoutStatus["CheckingLiquidity"] = "checkingLiquidity";
12
13
  BulkCryptoPayoutStatus["SourcingLiquidity"] = "sourcingLiquidity";
13
14
  BulkCryptoPayoutStatus["LiquiditySourced"] = "liquiditySourced";
14
15
  BulkCryptoPayoutStatus["Complete"] = "complete";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2310",
3
+ "version": "1.0.2312",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",