meemup-library 1.5.50 → 1.5.52

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.
@@ -3,6 +3,7 @@ import ILocation from "../ILocation";
3
3
  import ICompanyBranch from "./ICompanyBranch";
4
4
  import ICompanyColor from "./ICompanyColor";
5
5
  import ICompanyHours from "./ICompanyHours";
6
+ import ICompanyReservation from "./ICompanyReservation";
6
7
  import ICompanyRewardsProgram from "./ICompanyRewardsProgram";
7
8
  import ICompanySeo from "./ICompanySeo";
8
9
  import ICompanyTemplate from "./ICompanyTemplate";
@@ -47,4 +48,5 @@ export default interface ICompany {
47
48
  template: ICompanyTemplate;
48
49
  colors: ICompanyColor;
49
50
  seo: ICompanySeo;
51
+ reservation: ICompanyReservation;
50
52
  }
@@ -0,0 +1,6 @@
1
+ export default interface ICompanyReservation {
2
+ status: boolean;
3
+ linkText: string | null;
4
+ cancellationDeadline: number;
5
+ submissionDeadline: number;
6
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -27,6 +27,8 @@ interface IOrderDetails {
27
27
  thirdPartyDriver: IOrderDetailThirdPartyDriver | null;
28
28
  thirdPartyTransportingInfo: IOrderDetailThirdPartyTransportingInfo | null;
29
29
  paymentTransactions: IPointOfSaleOrderTransaction[];
30
+ estimatedNetPayout: number;
31
+ deductionDetails: null | ITextValue[];
30
32
  }
31
33
  export default IOrderDetails;
32
34
  export declare const initOrderDetails: IOrderDetails;
@@ -17,5 +17,7 @@ export const initOrderDetails = {
17
17
  deliveryTrackingUrl: "",
18
18
  thirdPartyDriver: null,
19
19
  thirdPartyTransportingInfo: null,
20
- paymentTransactions: []
20
+ paymentTransactions: [],
21
+ estimatedNetPayout: 0,
22
+ deductionDetails: null
21
23
  };
package/dist/statics.d.ts CHANGED
@@ -6,7 +6,6 @@ export declare const STORAGE_PRE_ORDER_DETAIL_NAME = "z-";
6
6
  export declare const STORAGE_PRE_LOG_NAME = "log-";
7
7
  export declare const MANAGEMENT_URL = "https://my.meemup.com";
8
8
  export declare const MANAGEMENT_BETA_URL = "https://beta_management.meemup.com";
9
- export declare const GOOGLE_MAP_TOKEN = "AIzaSyCPfdaGt8HtI21kimrmVN08yNHu-lvmgcA";
10
9
  export declare const CUSTOM_DELIVERY_ZONE_ID: null;
11
10
  export declare const UDP_CUSTOMER_MONITOR_PRE_NAME = "Pos monitor ";
12
11
  export declare const INTERNET_CONNECTION_MESSAGE = "Please check your internet connection!";
package/dist/statics.js CHANGED
@@ -5,7 +5,7 @@ export const STORAGE_PRE_ORDER_DETAIL_NAME = "z-";
5
5
  export const STORAGE_PRE_LOG_NAME = "log-";
6
6
  export const MANAGEMENT_URL = "https://my.meemup.com";
7
7
  export const MANAGEMENT_BETA_URL = "https://beta_management.meemup.com";
8
- export const GOOGLE_MAP_TOKEN = "AIzaSyCPfdaGt8HtI21kimrmVN08yNHu-lvmgcA";
8
+ // 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!";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.5.50",
3
+ "version": "1.5.52",
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.50\" && git push origin "
14
+ "commit": "git add . && git commit -m \"version.1.5.52\" && git push origin "
15
15
  },
16
16
  "files": [
17
17
  "/dist"