@riocrypto/common 1.0.1647 → 1.0.1649

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 AsyncBankPaymentOwnerMismatchEvent {
3
+ subject: Subjects.AsyncBankPaymentOwnerMismatch;
4
+ data: {
5
+ orderId: string;
6
+ };
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -65,6 +65,7 @@ export declare enum Subjects {
65
65
  BankPaymentProcessing = "bankPayment:processing",
66
66
  BankPaymentCompleted = "bankPayment:completed",
67
67
  BankPaymentOwnerMismatch = "bankPayment:ownerMismatch",
68
+ AsyncBankPaymentOwnerMismatch = "asyncBankPayment:ownerMismatch",
68
69
  BankPaymentFailed = "bankPayment:failed",
69
70
  FeesUpdated = "fees:updated",
70
71
  ChainedQuoteReissued = "chainedQuote:reissued",
@@ -69,6 +69,7 @@ var Subjects;
69
69
  Subjects["BankPaymentProcessing"] = "bankPayment:processing";
70
70
  Subjects["BankPaymentCompleted"] = "bankPayment:completed";
71
71
  Subjects["BankPaymentOwnerMismatch"] = "bankPayment:ownerMismatch";
72
+ Subjects["AsyncBankPaymentOwnerMismatch"] = "asyncBankPayment:ownerMismatch";
72
73
  Subjects["BankPaymentFailed"] = "bankPayment:failed";
73
74
  Subjects["FeesUpdated"] = "fees:updated";
74
75
  Subjects["ChainedQuoteReissued"] = "chainedQuote:reissued";
package/build/index.d.ts CHANGED
@@ -81,6 +81,7 @@ export * from "./events/async-bank-payment-created-event";
81
81
  export * from "./events/bank-payment-owner-mismatch-event";
82
82
  export * from "./events/async-bank-payment-failed-event";
83
83
  export * from "./events/async-bank-payment-processing-event";
84
+ export * from "./events/async-bank-payment-owner-mismatch-event";
84
85
  export * from "./events/async-bank-payout-created-event";
85
86
  export * from "./events/async-bank-payout-failed-event";
86
87
  export * from "./events/async-crypto-payout-failed-event";
package/build/index.js CHANGED
@@ -97,6 +97,7 @@ __exportStar(require("./events/async-bank-payment-created-event"), exports);
97
97
  __exportStar(require("./events/bank-payment-owner-mismatch-event"), exports);
98
98
  __exportStar(require("./events/async-bank-payment-failed-event"), exports);
99
99
  __exportStar(require("./events/async-bank-payment-processing-event"), exports);
100
+ __exportStar(require("./events/async-bank-payment-owner-mismatch-event"), exports);
100
101
  __exportStar(require("./events/async-bank-payout-created-event"), exports);
101
102
  __exportStar(require("./events/async-bank-payout-failed-event"), exports);
102
103
  __exportStar(require("./events/async-crypto-payout-failed-event"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1647",
3
+ "version": "1.0.1649",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",