@riocrypto/common 1.0.1653 → 1.0.1655

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,7 +4,6 @@ export interface AsyncBankPaymentCompletedEvent {
4
4
  data: {
5
5
  orderId: string;
6
6
  amount: number;
7
- doesOriginAccountOwnerMatch: boolean;
8
7
  originAccountHolderName?: string;
9
8
  originAccountNumber?: string;
10
9
  originCLABE?: string;
@@ -4,7 +4,6 @@ export interface BankPaymentCompletedEvent {
4
4
  data: {
5
5
  orderId: string;
6
6
  amount: number;
7
- doesOriginAccountOwnerMatch: boolean;
8
7
  originAccountHolderName?: string;
9
8
  originAccountNumber?: string;
10
9
  originCLABE?: string;
@@ -8,6 +8,7 @@ export declare enum OrderStatus {
8
8
  AwaitingBankPayoutDetails = "awaitingBankPayoutDetails",
9
9
  DepositRegistered = "depositRegistered",
10
10
  DepositConfirmed = "depositConfirmed",
11
+ PaymentOriginMismatch = "paymentOriginMismatch",
11
12
  Paid = "paid",
12
13
  Filled = "filled",
13
14
  refundInitiated = "refundInitiated",
@@ -19,6 +19,7 @@ var OrderStatus;
19
19
  OrderStatus["DepositRegistered"] = "depositRegistered";
20
20
  // When the crypto deposit from a sell order is confirmed by the liquidity provider
21
21
  OrderStatus["DepositConfirmed"] = "depositConfirmed";
22
+ OrderStatus["PaymentOriginMismatch"] = "paymentOriginMismatch";
22
23
  // When order has been processed by the
23
24
  // payment processor but not yet filled
24
25
  // by a liquidity provider
@@ -1,5 +1,4 @@
1
1
  export declare enum OrderSubstatus {
2
2
  AutoFXRunning = "autoFXRunning",
3
- AutoLiquiditySourcingRunning = "autoLiquiditySourcingRunning",
4
- OriginAccountOwnerMismatch = "originAccountOwnerMismatch"
3
+ AutoLiquiditySourcingRunning = "autoLiquiditySourcingRunning"
5
4
  }
@@ -5,5 +5,4 @@ var OrderSubstatus;
5
5
  (function (OrderSubstatus) {
6
6
  OrderSubstatus["AutoFXRunning"] = "autoFXRunning";
7
7
  OrderSubstatus["AutoLiquiditySourcingRunning"] = "autoLiquiditySourcingRunning";
8
- OrderSubstatus["OriginAccountOwnerMismatch"] = "originAccountOwnerMismatch";
9
8
  })(OrderSubstatus = exports.OrderSubstatus || (exports.OrderSubstatus = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1653",
3
+ "version": "1.0.1655",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",