@riocrypto/common 1.0.1005 → 1.0.1006

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.
@@ -13,6 +13,7 @@ export declare enum OrderStatus {
13
13
  DepositAddressCreated = "depositAddressCreated",
14
14
  Complete = "complete",
15
15
  PaymentFailed = "failedPayment",
16
+ AwaitingChainedOrder = "awaitingChainedOrder",
16
17
  AwaitingPayment = "awaitingPayment",
17
18
  AwaitingPayout = "awaitingPayout",
18
19
  AwaitingBridgeRouting = "awaitingBridgeRouting",
@@ -33,6 +33,8 @@ var OrderStatus;
33
33
  OrderStatus["Complete"] = "complete";
34
34
  // When the payment fails
35
35
  OrderStatus["PaymentFailed"] = "failedPayment";
36
+ // When waiting for a previous order in chain to complete
37
+ OrderStatus["AwaitingChainedOrder"] = "awaitingChainedOrder";
36
38
  // When waiting for asynchronous payment
37
39
  OrderStatus["AwaitingPayment"] = "awaitingPayment";
38
40
  // When waiting for asynchronous payout
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1005",
3
+ "version": "1.0.1006",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",