meemup-library 1.1.20 → 1.1.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.
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import IExtraItem from "./IExtraItem";
|
|
1
2
|
interface IExtra {
|
|
2
3
|
id: number;
|
|
3
4
|
name: string;
|
|
@@ -8,22 +9,10 @@ interface IExtra {
|
|
|
8
9
|
increasingOtherExtraItemsPrice: boolean;
|
|
9
10
|
choosablePizzaToppingsSides: boolean;
|
|
10
11
|
numberOfFreeItems: number;
|
|
11
|
-
items:
|
|
12
|
+
items: IExtraItem[];
|
|
13
|
+
products: number[];
|
|
14
|
+
productsCount: number;
|
|
15
|
+
categoriesCount: number;
|
|
16
|
+
displayingMode: number;
|
|
12
17
|
}
|
|
13
18
|
export default IExtra;
|
|
14
|
-
export interface IExtraModelItem {
|
|
15
|
-
id: number;
|
|
16
|
-
title: string;
|
|
17
|
-
receiptTitle: string;
|
|
18
|
-
price: number;
|
|
19
|
-
available: boolean;
|
|
20
|
-
priority: number;
|
|
21
|
-
min: number;
|
|
22
|
-
max: number;
|
|
23
|
-
calories: number;
|
|
24
|
-
increasingPriceType: number;
|
|
25
|
-
scale: number;
|
|
26
|
-
isDefaultSelected: boolean;
|
|
27
|
-
increasingAmount: number;
|
|
28
|
-
increasingPercentage: number;
|
|
29
|
-
}
|
|
@@ -13,6 +13,9 @@ interface IExtraItem {
|
|
|
13
13
|
increasingValue: number;
|
|
14
14
|
scale: number;
|
|
15
15
|
isDefaultSelected: boolean;
|
|
16
|
+
increasingAmount: number;
|
|
17
|
+
increasingPercentage: number;
|
|
18
|
+
tags: string[] | null;
|
|
16
19
|
}
|
|
17
20
|
export declare const initExtraItem: IExtraItem;
|
|
18
21
|
export default IExtraItem;
|
package/dist/statics.js
CHANGED
|
@@ -40,4 +40,4 @@ export const REFRESH_TOKEN_EVERY_MINUTE = 60;
|
|
|
40
40
|
export const FIND_STAR_MICRONIC_PRINTER_TIMEOUT_POST_NAME = " Sec";
|
|
41
41
|
export const DASHBOARD_ITEM_MINIMUM_WITH = 300;
|
|
42
42
|
export const TOKEN_REFRESH_AFTER_THIS_AMOUNT_OF_MINUTE = 60;
|
|
43
|
-
export const SIGNALR_AUTO_RECONNECT_TIMES_ARRAY = [
|
|
43
|
+
export const SIGNALR_AUTO_RECONNECT_TIMES_ARRAY = [180000, 240000, 300000, 360000, 420000];
|