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