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