meemup-library 1.0.40 → 1.0.42

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.
@@ -0,0 +1,6 @@
1
+ declare enum EnumKitchenScreenSortOrders {
2
+ FIRST_REGISTRATION = 0,
3
+ LAST_REGISTRATION = 1,
4
+ LOW_TIME = 2
5
+ }
6
+ export default EnumKitchenScreenSortOrders;
@@ -0,0 +1,7 @@
1
+ var EnumKitchenScreenSortOrders;
2
+ (function (EnumKitchenScreenSortOrders) {
3
+ EnumKitchenScreenSortOrders[EnumKitchenScreenSortOrders["FIRST_REGISTRATION"] = 0] = "FIRST_REGISTRATION";
4
+ EnumKitchenScreenSortOrders[EnumKitchenScreenSortOrders["LAST_REGISTRATION"] = 1] = "LAST_REGISTRATION";
5
+ EnumKitchenScreenSortOrders[EnumKitchenScreenSortOrders["LOW_TIME"] = 2] = "LOW_TIME";
6
+ })(EnumKitchenScreenSortOrders || (EnumKitchenScreenSortOrders = {}));
7
+ export default EnumKitchenScreenSortOrders;
@@ -29,5 +29,7 @@ export default interface IGeneralInformation {
29
29
  digitalMenuUrl?: any;
30
30
  availablePaymentTypes: number[];
31
31
  invoiceDetail: ICompanyInvoiceDetail;
32
+ currencySymbol: string;
33
+ currency: string;
32
34
  }
33
35
  export declare const initGeneralInformation: IGeneralInformation;
@@ -27,6 +27,8 @@ export const initGeneralInformation = {
27
27
  availablePaymentTypes: [],
28
28
  feeTitle: "",
29
29
  digitalMenuUrl: "",
30
+ currencySymbol: "",
31
+ currency: "",
30
32
  invoiceDetail: {
31
33
  companyName: "",
32
34
  contactPerson: "",
@@ -1,8 +1,16 @@
1
+ import EnumKitchenScreenSortOrders from "../enums/EnumKitchenScreenSortOrders";
1
2
  interface IKitchenScreenSetting {
2
3
  row: number;
3
4
  column: number;
4
5
  showOrderType: boolean;
5
6
  sortAccordingPizzaMode: boolean;
7
+ sortOrders: EnumKitchenScreenSortOrders;
8
+ timer: boolean;
9
+ timerFontSize: number;
10
+ timerWarningColor: string;
11
+ timerExpireColor: string;
12
+ productFontSize: number;
13
+ extraFontSize: number;
6
14
  }
7
15
  export default IKitchenScreenSetting;
8
16
  export declare const initKitchenScreenSetting: IKitchenScreenSetting;
@@ -1,6 +1,14 @@
1
+ import EnumKitchenScreenSortOrders from "../enums/EnumKitchenScreenSortOrders";
1
2
  export const initKitchenScreenSetting = {
2
3
  row: 1,
3
4
  column: 3,
4
5
  showOrderType: true,
5
- sortAccordingPizzaMode: true
6
+ sortAccordingPizzaMode: true,
7
+ sortOrders: EnumKitchenScreenSortOrders.FIRST_REGISTRATION,
8
+ timer: false,
9
+ timerFontSize: 24,
10
+ timerWarningColor: "#00ff00",
11
+ timerExpireColor: "#ff0000",
12
+ extraFontSize: 16,
13
+ productFontSize: 20,
6
14
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.0.40",
3
+ "version": "1.0.42",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",