meemup-library 1.5.99 → 1.6.0

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.
@@ -33,4 +33,5 @@ export default interface IPointOfSaleOrderSummary {
33
33
  via: string;
34
34
  tableNo?: string | number;
35
35
  tableId: number | null;
36
+ deliveryMode?: number;
36
37
  }
@@ -0,0 +1,8 @@
1
+ import { CourierInfoDto } from "./courier-info.dto";
2
+ export default interface CourierAcceptedOrderDto {
3
+ orderId: number;
4
+ orderNumber: number;
5
+ courierInfoDto: CourierInfoDto;
6
+ time: string;
7
+ message: string;
8
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,7 @@
1
+ import { CourierInfoDto } from "./courier-info.dto";
2
+ export default interface CourierApproachingDto {
3
+ orderId: number;
4
+ orderNumber: number;
5
+ courier: CourierInfoDto;
6
+ message: string;
7
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,12 @@
1
+ import ILocation from "../ILocation";
2
+ export interface CourierInfoDto {
3
+ name: string;
4
+ phoneNumber: string;
5
+ location: ILocation;
6
+ image: string;
7
+ vehicleType: string;
8
+ vehicleBrand: string;
9
+ vehicleModel: string;
10
+ vehicleColor: string;
11
+ rating: number;
12
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,8 @@
1
+ import { CourierInfoDto } from "./courier-info.dto";
2
+ export default interface CourierReachedDto {
3
+ orderId: number;
4
+ orderNumber: number;
5
+ courier: CourierInfoDto;
6
+ message: string;
7
+ time: string;
8
+ }
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.5.99",
3
+ "version": "1.6.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,7 +11,7 @@
11
11
  "remove:one": "rimraf dist",
12
12
  "remove:two": "rimraf ./src/dist",
13
13
  "test": "echo \"Error: no test specified\" && exit 1",
14
- "commit": "git add . && git commit -m \"version.1.5.99\" && git push origin "
14
+ "commit": "git add . && git commit -m \"version.1.6.0\" && git push origin "
15
15
  },
16
16
  "files": [
17
17
  "/dist"