@sendhome/common 1.0.106 → 1.0.108

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.
@@ -4,7 +4,7 @@ export interface OrderCancellationCreatedEvent {
4
4
  subject: Subjects.OrderCancellationCreated;
5
5
  data: {
6
6
  id: string;
7
- order_id: string;
7
+ order: string;
8
8
  reason: string;
9
9
  status: OrderCancellationStatus;
10
10
  user: string;
@@ -4,7 +4,7 @@ export interface OrderCancellationUpdatedEvent {
4
4
  subject: Subjects.OrderCancellationUpdated;
5
5
  data: {
6
6
  id: string;
7
- order_id: string;
7
+ order: string;
8
8
  reason: string;
9
9
  status: OrderCancellationStatus;
10
10
  user: string;
@@ -1,6 +1,6 @@
1
1
  export declare enum OrderCancellationStatus {
2
2
  Created = "created",
3
- Completed = "completed",
3
+ Approved = "approved",
4
4
  Declined = "declined",
5
5
  Cancelled = "cancelled"
6
6
  }
@@ -6,7 +6,7 @@ var OrderCancellationStatus;
6
6
  // order cancellation created
7
7
  OrderCancellationStatus["Created"] = "created";
8
8
  // order cancellation completed
9
- OrderCancellationStatus["Completed"] = "completed";
9
+ OrderCancellationStatus["Approved"] = "approved";
10
10
  // order cancellation declined
11
11
  OrderCancellationStatus["Declined"] = "declined";
12
12
  // order cancellation cancelled
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sendhome/common",
3
- "version": "1.0.106",
3
+ "version": "1.0.108",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",