meemup-library 1.0.77 → 1.0.79

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.
@@ -6,6 +6,7 @@ import IOrderDetailOrder from "./IOrderDetailOrder";
6
6
  import IOrderDetailDriver from "./IOrderDetailDriver";
7
7
  import IOrderDetailPaymentInfo from "./IOrderDetailPaymentInfo";
8
8
  import IModifiedDetails from "./IModifiedDetails";
9
+ import IOrderDetailTimeLine from "./IOrderDetailTimeLine";
9
10
  interface IOrderDetails {
10
11
  order: IOrderDetailOrder;
11
12
  customer: IOrderDetailCustomer;
@@ -17,6 +18,8 @@ interface IOrderDetails {
17
18
  company: IGeneralInformation;
18
19
  paymentInfo: IOrderDetailPaymentInfo | null;
19
20
  modifiedDetails: IModifiedDetails[] | null;
21
+ availablePaymentTypes: ITextValue[];
22
+ timeline: IOrderDetailTimeLine[];
20
23
  }
21
24
  export default IOrderDetails;
22
25
  export declare const initOrderDetails: IOrderDetails;
@@ -11,5 +11,7 @@ export const initOrderDetails = {
11
11
  stateHistories: [],
12
12
  company: initGeneralInformation,
13
13
  paymentInfo: null,
14
- modifiedDetails: null
14
+ modifiedDetails: null,
15
+ availablePaymentTypes: [],
16
+ timeline: []
15
17
  };
package/dist/statics.d.ts CHANGED
@@ -10,6 +10,7 @@ export declare const GOOGLE_MAP_TOKEN = "AIzaSyCPfdaGt8HtI21kimrmVN08yNHu-lvmgcA
10
10
  export declare const CUSTOM_DELIVERY_ZONE_ID: null;
11
11
  export declare const UDP_CUSTOMER_MONITOR_PRE_NAME = "Pos monitor ";
12
12
  export declare const INTERNET_CONNECTION_MESSAGE = "Please check your internet connection!";
13
+ export declare const UDP_NO_CLINET = "No Client";
13
14
  export declare const DEFAULT_DRIVER: ITextValue;
14
15
  export declare const INIT_TERMINAL: ITextValue;
15
16
  export declare const POS_SIGNALR: {
package/dist/statics.js CHANGED
@@ -9,6 +9,7 @@ export const GOOGLE_MAP_TOKEN = "AIzaSyCPfdaGt8HtI21kimrmVN08yNHu-lvmgcA";
9
9
  export const CUSTOM_DELIVERY_ZONE_ID = null;
10
10
  export const UDP_CUSTOMER_MONITOR_PRE_NAME = "Pos monitor ";
11
11
  export const INTERNET_CONNECTION_MESSAGE = "Please check your internet connection!";
12
+ export const UDP_NO_CLINET = "No Client";
12
13
  export const DEFAULT_DRIVER = { text: "No Driver", value: null };
13
14
  export const INIT_TERMINAL = {
14
15
  text: "Any",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.0.77",
3
+ "version": "1.0.79",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",