@riocrypto/common 1.0.146 → 1.0.148

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.
@@ -5,6 +5,6 @@ export interface WyreACHPaymentCreatedEvent {
5
5
  version: number;
6
6
  id: string;
7
7
  orderId: string;
8
- spreedlyToken: string;
8
+ plaidToken: string;
9
9
  };
10
10
  }
@@ -3,6 +3,7 @@ export declare enum OrderStatus {
3
3
  Cancelled = "cancelled",
4
4
  Processing = "processing",
5
5
  Paid = "paid",
6
+ Filled = "filled",
6
7
  Complete = "complete",
7
8
  Failed = "failed"
8
9
  }
@@ -15,6 +15,10 @@ var OrderStatus;
15
15
  // payment processor but not yet filled
16
16
  // by liquidity provider
17
17
  OrderStatus["Paid"] = "paid";
18
+ // When order has been filled by the liquidity
19
+ // provider but not yet transferred to the
20
+ // user
21
+ OrderStatus["Filled"] = "filled";
18
22
  // When order has been processed by the payment
19
23
  // processor and filled by the liquidity provider
20
24
  OrderStatus["Complete"] = "complete";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.146",
3
+ "version": "1.0.148",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",