@sendhome/common 1.0.102 → 1.0.104

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.
@@ -1,5 +1,9 @@
1
1
  export declare enum OrderStatus {
2
2
  Created = "created",
3
+ pending = "pending",
4
+ PaymentPending = "paymentPending",
5
+ CancelPending = "cancelPending",
6
+ Paid = "paid",
3
7
  Pending = "pending",
4
8
  Declined = "declined",
5
9
  Partial = "partial",
@@ -6,6 +6,14 @@ var OrderStatus;
6
6
  // order created
7
7
  OrderStatus["Created"] = "created";
8
8
  // order pending
9
+ OrderStatus["pending"] = "pending";
10
+ // order payment-pending
11
+ OrderStatus["PaymentPending"] = "paymentPending";
12
+ // order cancel-pending
13
+ OrderStatus["CancelPending"] = "cancelPending";
14
+ // order paid
15
+ OrderStatus["Paid"] = "paid";
16
+ // order pending
9
17
  OrderStatus["Pending"] = "pending";
10
18
  // order declined
11
19
  OrderStatus["Declined"] = "declined";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sendhome/common",
3
- "version": "1.0.102",
3
+ "version": "1.0.104",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",