@riocrypto/common 1.0.2328 → 1.0.2330

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 AsyncBulkBankPaymentCancelledEvent {
3
+ subject: Subjects.AsyncBulkBankPaymentCancelled;
4
+ data: {
5
+ id: 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 AsyncBulkCryptoPaymentCancelledEvent {
3
+ subject: Subjects.AsyncBulkCryptoPaymentCancelled;
4
+ data: {
5
+ id: string;
6
+ };
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -3,6 +3,5 @@ export interface BulkBankPaymentCancelledEvent {
3
3
  subject: Subjects.BulkBankPaymentCancelled;
4
4
  data: {
5
5
  id: string;
6
- orderId: string;
7
6
  };
8
7
  }
@@ -3,6 +3,5 @@ export interface BulkCryptoPaymentCancelledEvent {
3
3
  subject: Subjects.BulkCryptoPaymentCancelled;
4
4
  data: {
5
5
  id: string;
6
- orderId: string;
7
6
  };
8
7
  }
@@ -104,7 +104,9 @@ export declare enum Subjects {
104
104
  AsyncBulkCryptoPayoutCompleted = "asyncBulkCryptoPayout:completed",
105
105
  AsyncBulkCryptoPayoutFailed = "asyncBulkCryptoPayout:failed",
106
106
  BulkCryptoPaymentCancelled = "bulkCryptoPayment:cancelled",
107
+ AsyncBulkCryptoPaymentCancelled = "asyncBulkCryptoPayment:cancelled",
107
108
  AsyncBulkCryptoPaymentCompleted = "asyncBulkCryptoPayment:completed",
109
+ AsyncBulkBankPaymentCancelled = "asyncBulkBankPayment:cancelled",
108
110
  AsyncBulkCryptoPaymentIncorrectAmountPaid = "asyncBulkCryptoPayment:incorrectAmountPaid",
109
111
  BankPaymentCompleted = "bankPayment:completed",
110
112
  BankPaymentMismatch = "bankPayment:mismatch",
@@ -108,7 +108,9 @@ var Subjects;
108
108
  Subjects["AsyncBulkCryptoPayoutCompleted"] = "asyncBulkCryptoPayout:completed";
109
109
  Subjects["AsyncBulkCryptoPayoutFailed"] = "asyncBulkCryptoPayout:failed";
110
110
  Subjects["BulkCryptoPaymentCancelled"] = "bulkCryptoPayment:cancelled";
111
+ Subjects["AsyncBulkCryptoPaymentCancelled"] = "asyncBulkCryptoPayment:cancelled";
111
112
  Subjects["AsyncBulkCryptoPaymentCompleted"] = "asyncBulkCryptoPayment:completed";
113
+ Subjects["AsyncBulkBankPaymentCancelled"] = "asyncBulkBankPayment:cancelled";
112
114
  Subjects["AsyncBulkCryptoPaymentIncorrectAmountPaid"] = "asyncBulkCryptoPayment:incorrectAmountPaid";
113
115
  Subjects["BankPaymentCompleted"] = "bankPayment:completed";
114
116
  Subjects["BankPaymentMismatch"] = "bankPayment:mismatch";
package/build/index.d.ts CHANGED
@@ -222,6 +222,8 @@ export * from "./events/async-bulk-crypto-payout-liquidity-sourced-event";
222
222
  export * from "./events/async-bulk-bank-payout-liquidity-sourced-event";
223
223
  export * from "./events/async-bulk-crypto-payout-liquidity-needs-sourcing-event";
224
224
  export * from "./events/async-bulk-bank-payout-liquidity-needs-sourcing-event";
225
+ export * from "./events/async-bulk-bank-payment-cancelled-event";
226
+ export * from "./events/async-bulk-crypto-payment-cancelled-event";
225
227
  export * from "./types/auth-payload";
226
228
  export * from "./types/admin-auth-payload";
227
229
  export * from "./types/admin-auth";
package/build/index.js CHANGED
@@ -238,6 +238,8 @@ __exportStar(require("./events/async-bulk-crypto-payout-liquidity-sourced-event"
238
238
  __exportStar(require("./events/async-bulk-bank-payout-liquidity-sourced-event"), exports);
239
239
  __exportStar(require("./events/async-bulk-crypto-payout-liquidity-needs-sourcing-event"), exports);
240
240
  __exportStar(require("./events/async-bulk-bank-payout-liquidity-needs-sourcing-event"), exports);
241
+ __exportStar(require("./events/async-bulk-bank-payment-cancelled-event"), exports);
242
+ __exportStar(require("./events/async-bulk-crypto-payment-cancelled-event"), exports);
241
243
  __exportStar(require("./types/auth-payload"), exports);
242
244
  __exportStar(require("./types/admin-auth-payload"), exports);
243
245
  __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.2328",
3
+ "version": "1.0.2330",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",