meemup-library 1.3.19 → 1.3.21

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.
@@ -59,5 +59,6 @@ export default interface IGeneralItems {
59
59
  orderSummaryPrintPlacementTypes: ITextValue[];
60
60
  orderDateTimePrintModeTypes: ITextValue[];
61
61
  donationRoundAmountTypes: ITextValue[];
62
+ landingProductsViewModes: ITextValue[];
62
63
  }
63
64
  export declare const initGeneralItems: IGeneralItems;
@@ -57,5 +57,6 @@ export const initGeneralItems = {
57
57
  cashDrawerTriggerActionTypes: [],
58
58
  orderSummaryPrintPlacementTypes: [],
59
59
  orderDateTimePrintModeTypes: [],
60
- donationRoundAmountTypes: []
60
+ donationRoundAmountTypes: [],
61
+ landingProductsViewModes: []
61
62
  };
@@ -0,0 +1,5 @@
1
+ export default interface IManagementInventoryAdd {
2
+ name: string;
3
+ enabled: boolean;
4
+ }
5
+ export declare const initManagementInventoryAdd: IManagementInventoryAdd;
@@ -0,0 +1,4 @@
1
+ export const initManagementInventoryAdd = {
2
+ name: "",
3
+ enabled: true
4
+ };
@@ -0,0 +1,4 @@
1
+ import IManagementInventoryAdd from "./IManagementInventoryAdd";
2
+ export default interface IManagementInventoryItem extends IManagementInventoryAdd {
3
+ id: number;
4
+ }
@@ -0,0 +1,5 @@
1
+ export default interface IManagementInventorySetting {
2
+ autoRefreshInventoryStatus: boolean;
3
+ autoRefreshInventoryStatusAt: number;
4
+ }
5
+ export declare const initManagementInventorySetting: IManagementInventorySetting;
@@ -0,0 +1,4 @@
1
+ export const initManagementInventorySetting = {
2
+ autoRefreshInventoryStatus: false,
3
+ autoRefreshInventoryStatusAt: 1
4
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.3.19",
3
+ "version": "1.3.21",
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.3.19 \" && git push origin "
14
+ "commit": "git add . && git commit -m \"version.1.3.21 \" && git push origin "
15
15
  },
16
16
  "files": [
17
17
  "/dist"