meemup-library 1.1.93 → 1.1.95

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.
@@ -52,5 +52,6 @@ interface IDProduct {
52
52
  showExtrasCategory: number;
53
53
  packagingCosts: number;
54
54
  depositCost: number;
55
+ thumbnailImage: string | null;
55
56
  }
56
57
  export default IDProduct;
@@ -61,7 +61,7 @@ interface IOrder {
61
61
  displayRoundCashAmount: number;
62
62
  displayFees: ICalculateFeeResult[];
63
63
  roundCashPayments: number;
64
- registrationDate: Date;
64
+ registrationDate: string;
65
65
  sync: boolean;
66
66
  paymentToken: string;
67
67
  deviceId: string | null;
@@ -67,7 +67,7 @@ export const initOrder = {
67
67
  displayRoundCashAmount: 0,
68
68
  displayFees: [],
69
69
  roundCashPayments: 0,
70
- registrationDate: new Date(),
70
+ registrationDate: "2024-05-10T00:00:00",
71
71
  sync: false,
72
72
  paymentToken: "",
73
73
  deviceId: INIT_TERMINAL.value,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.1.93",
3
+ "version": "1.1.95",
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.1.93\" && git push origin "
14
+ "commit": "git add . && git commit -m \"version.1.1.95\" && git push origin "
15
15
  },
16
16
  "files": [
17
17
  "/dist"