@sendhome/common 1.0.69 → 1.0.71

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.
@@ -8,6 +8,7 @@ export interface CartCreatedEvent {
8
8
  user: string;
9
9
  company: string;
10
10
  status: CartStatus;
11
+ expires_at: Date;
11
12
  created_at: Date;
12
13
  updated_at: Date;
13
14
  version: number;
@@ -8,6 +8,7 @@ export interface CartUpdatedEvent {
8
8
  user: string;
9
9
  company: string;
10
10
  status: CartStatus;
11
+ expires_at: Date;
11
12
  created_at: Date;
12
13
  updated_at: Date;
13
14
  version: number;
@@ -1,7 +1,7 @@
1
1
  export declare enum OrderStatus {
2
2
  Created = "created",
3
3
  Declined = "declined",
4
- Partially = "partial",
4
+ Partial = "partial",
5
5
  Collected = "collected",
6
6
  Cancelled = "cancelled"
7
7
  }
@@ -8,7 +8,7 @@ var OrderStatus;
8
8
  // order declined
9
9
  OrderStatus["Declined"] = "declined";
10
10
  // order partially collected
11
- OrderStatus["Partially"] = "partial";
11
+ OrderStatus["Partial"] = "partial";
12
12
  // order collected
13
13
  OrderStatus["Collected"] = "collected";
14
14
  // order cancelled
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sendhome/common",
3
- "version": "1.0.69",
3
+ "version": "1.0.71",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",