@riocrypto/common 1.0.2312 → 1.0.2313

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 AsyncBulkBankPayoutLiquidityNeedsSourcingEvent {
3
+ subject: Subjects.AsyncBulkBankPayoutLiquidityNeedsSourcing;
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 AsyncBulkBankPayoutLiquiditySourcedEvent {
3
+ subject: Subjects.AsyncBulkBankPayoutLiquiditySourced;
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 AsyncBulkCryptoPayoutLiquidityNeedsSourcingEvent {
3
+ subject: Subjects.AsyncBulkCryptoPayoutLiquidityNeedsSourcing;
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 AsyncBulkCryptoPayoutLiquiditySourcedEvent {
3
+ subject: Subjects.AsyncBulkCryptoPayoutLiquiditySourced;
4
+ data: {
5
+ bulkCryptoPayoutId: string;
6
+ };
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -58,8 +58,12 @@ export declare enum Subjects {
58
58
  LiquiditySourced = "liquidity:sourced",
59
59
  BulkCryptoPayoutLiquiditySourced = "bulkCryptoPayout:liquiditySourced",
60
60
  BulkBankPayoutLiquiditySourced = "bulkBankPayout:liquiditySourced",
61
+ AsyncBulkCryptoPayoutLiquiditySourced = "asyncBulkCryptoPayout:liquiditySourced",
62
+ AsyncBulkBankPayoutLiquiditySourced = "asyncBulkBankPayout:liquiditySourced",
61
63
  BulkCryptoPayoutLiquidityNeedsSourcing = "bulkCryptoPayout:liquidityNeedsSourcing",
62
64
  BulkBankPayoutLiquidityNeedsSourcing = "bulkBankPayout:liquidityNeedsSourcing",
65
+ AsyncBulkCryptoPayoutLiquidityNeedsSourcing = "asyncBulkCryptoPayout:liquidityNeedsSourcing",
66
+ AsyncBulkBankPayoutLiquidityNeedsSourcing = "asyncBulkBankPayout:liquidityNeedsSourcing",
63
67
  LiquidityInsufficient = "liquidity:insufficient",
64
68
  LiquidityTransfered = "liquidity:transfered",
65
69
  LiquidityFillFailed = "liquidity:fillFailed",
@@ -62,8 +62,12 @@ var Subjects;
62
62
  Subjects["LiquiditySourced"] = "liquidity:sourced";
63
63
  Subjects["BulkCryptoPayoutLiquiditySourced"] = "bulkCryptoPayout:liquiditySourced";
64
64
  Subjects["BulkBankPayoutLiquiditySourced"] = "bulkBankPayout:liquiditySourced";
65
+ Subjects["AsyncBulkCryptoPayoutLiquiditySourced"] = "asyncBulkCryptoPayout:liquiditySourced";
66
+ Subjects["AsyncBulkBankPayoutLiquiditySourced"] = "asyncBulkBankPayout:liquiditySourced";
65
67
  Subjects["BulkCryptoPayoutLiquidityNeedsSourcing"] = "bulkCryptoPayout:liquidityNeedsSourcing";
66
68
  Subjects["BulkBankPayoutLiquidityNeedsSourcing"] = "bulkBankPayout:liquidityNeedsSourcing";
69
+ Subjects["AsyncBulkCryptoPayoutLiquidityNeedsSourcing"] = "asyncBulkCryptoPayout:liquidityNeedsSourcing";
70
+ Subjects["AsyncBulkBankPayoutLiquidityNeedsSourcing"] = "asyncBulkBankPayout:liquidityNeedsSourcing";
67
71
  Subjects["LiquidityInsufficient"] = "liquidity:insufficient";
68
72
  Subjects["LiquidityTransfered"] = "liquidity:transfered";
69
73
  Subjects["LiquidityFillFailed"] = "liquidity:fillFailed";
package/build/index.d.ts CHANGED
@@ -218,6 +218,10 @@ export * from "./events/bulk-crypto-payout-liquidity-sourced-event";
218
218
  export * from "./events/bulk-bank-payout-liquidity-sourced-event";
219
219
  export * from "./events/bulk-crypto-payout-liquidity-needs-sourcing-event";
220
220
  export * from "./events/bulk-bank-payout-liquidity-needs-sourcing-event";
221
+ export * from "./events/async-bulk-crypto-payout-liquidity-sourced-event";
222
+ export * from "./events/async-bulk-bank-payout-liquidity-sourced-event";
223
+ export * from "./events/async-bulk-crypto-payout-liquidity-needs-sourcing-event";
224
+ export * from "./events/async-bulk-bank-payout-liquidity-needs-sourcing-event";
221
225
  export * from "./types/auth-payload";
222
226
  export * from "./types/admin-auth-payload";
223
227
  export * from "./types/admin-auth";
package/build/index.js CHANGED
@@ -234,6 +234,10 @@ __exportStar(require("./events/bulk-crypto-payout-liquidity-sourced-event"), exp
234
234
  __exportStar(require("./events/bulk-bank-payout-liquidity-sourced-event"), exports);
235
235
  __exportStar(require("./events/bulk-crypto-payout-liquidity-needs-sourcing-event"), exports);
236
236
  __exportStar(require("./events/bulk-bank-payout-liquidity-needs-sourcing-event"), exports);
237
+ __exportStar(require("./events/async-bulk-crypto-payout-liquidity-sourced-event"), exports);
238
+ __exportStar(require("./events/async-bulk-bank-payout-liquidity-sourced-event"), exports);
239
+ __exportStar(require("./events/async-bulk-crypto-payout-liquidity-needs-sourcing-event"), exports);
240
+ __exportStar(require("./events/async-bulk-bank-payout-liquidity-needs-sourcing-event"), exports);
237
241
  __exportStar(require("./types/auth-payload"), exports);
238
242
  __exportStar(require("./types/admin-auth-payload"), exports);
239
243
  __exportStar(require("./types/admin-auth"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2312",
3
+ "version": "1.0.2313",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",