meemup-library 1.5.62 → 1.5.65

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.
@@ -72,5 +72,6 @@ export default interface IProduct {
72
72
  inventoryControl: boolean;
73
73
  accesses: number[];
74
74
  prices: IProductPriceItem[];
75
+ productImageStyle: string;
75
76
  }
76
77
  export declare const initProduct: IProduct;
@@ -68,5 +68,6 @@ export const initProduct = {
68
68
  sellWhenOutOfStock: false,
69
69
  inventoryControl: false,
70
70
  accesses: [],
71
- prices: []
71
+ prices: [],
72
+ productImageStyle: "contain"
72
73
  };
@@ -22,7 +22,6 @@ export default interface IManagementOnlineStore {
22
22
  promotionSectionVisibility: boolean;
23
23
  ageVerificationPopUp: boolean;
24
24
  ageRestriction: number;
25
- productImageStyle: string | null;
26
25
  productsPageTitle: string;
27
26
  defaultProductView: number;
28
27
  asSoonAsPossibleDesiredDateTimeEnabled: boolean;
@@ -20,7 +20,7 @@ export const initManagementOnlineStore = {
20
20
  allergiesSectionVisibility: true,
21
21
  defaultProductView: 1,
22
22
  filterSectionVisibility: true,
23
- productImageStyle: null,
23
+ // productImageStyle: null,
24
24
  productsPageTitle: "Menu",
25
25
  promotionSectionVisibility: true,
26
26
  asSoonAsPossibleDesiredDateTimeEnabled: true,
@@ -1,8 +1,10 @@
1
1
  export default interface IManagementNotification {
2
2
  id: string;
3
- notificationType: "new_order" | "cancel_requests" | "message" | "others";
3
+ notificationType: "new_order" | "cancel_requests" | "reservation" | "message" | "others";
4
4
  type: "success" | "error" | "info" | "default" | "warning";
5
5
  title: string;
6
6
  message: string;
7
7
  data: any;
8
+ clicked: boolean;
9
+ glow: boolean;
8
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.5.62",
3
+ "version": "1.5.65",
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.62\" && git push origin "
14
+ "commit": "git add . && git commit -m \"version.1.5.65\" && git push origin "
15
15
  },
16
16
  "files": [
17
17
  "/dist"