@riocrypto/common 1.0.1649 → 1.0.1650

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.
@@ -4,6 +4,7 @@ export interface AsyncBankPaymentCompletedEvent {
4
4
  data: {
5
5
  orderId: string;
6
6
  amount: number;
7
+ doesOriginAccountOwnerMatch: boolean;
7
8
  originAccountHolderName?: string;
8
9
  originAccountNumber?: string;
9
10
  originCLABE?: string;
@@ -4,6 +4,7 @@ export interface BankPaymentCompletedEvent {
4
4
  data: {
5
5
  orderId: string;
6
6
  amount: number;
7
+ doesOriginAccountOwnerMatch: boolean;
7
8
  originAccountHolderName?: string;
8
9
  originAccountNumber?: string;
9
10
  originCLABE?: string;
package/build/index.d.ts CHANGED
@@ -78,10 +78,8 @@ export * from "./events/deposit-address-created-event";
78
78
  export * from "./events/async-bank-payout-failed-event";
79
79
  export * from "./events/async-crypto-payout-failed-event";
80
80
  export * from "./events/async-bank-payment-created-event";
81
- export * from "./events/bank-payment-owner-mismatch-event";
82
81
  export * from "./events/async-bank-payment-failed-event";
83
82
  export * from "./events/async-bank-payment-processing-event";
84
- export * from "./events/async-bank-payment-owner-mismatch-event";
85
83
  export * from "./events/async-bank-payout-created-event";
86
84
  export * from "./events/async-bank-payout-failed-event";
87
85
  export * from "./events/async-crypto-payout-failed-event";
package/build/index.js CHANGED
@@ -94,10 +94,8 @@ __exportStar(require("./events/deposit-address-created-event"), exports);
94
94
  __exportStar(require("./events/async-bank-payout-failed-event"), exports);
95
95
  __exportStar(require("./events/async-crypto-payout-failed-event"), exports);
96
96
  __exportStar(require("./events/async-bank-payment-created-event"), exports);
97
- __exportStar(require("./events/bank-payment-owner-mismatch-event"), exports);
98
97
  __exportStar(require("./events/async-bank-payment-failed-event"), exports);
99
98
  __exportStar(require("./events/async-bank-payment-processing-event"), exports);
100
- __exportStar(require("./events/async-bank-payment-owner-mismatch-event"), exports);
101
99
  __exportStar(require("./events/async-bank-payout-created-event"), exports);
102
100
  __exportStar(require("./events/async-bank-payout-failed-event"), exports);
103
101
  __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.1649",
3
+ "version": "1.0.1650",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
@@ -1,7 +0,0 @@
1
- import { Subjects } from "./subjects";
2
- export interface AsyncBankPaymentOwnerMismatchEvent {
3
- subject: Subjects.AsyncBankPaymentOwnerMismatch;
4
- data: {
5
- orderId: string;
6
- };
7
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,7 +0,0 @@
1
- import { Subjects } from "./subjects";
2
- export interface BankPaymentOwnerMismatchEvent {
3
- subject: Subjects.BankPaymentOwnerMismatch;
4
- data: {
5
- orderId: string;
6
- };
7
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });