webc-miam 9.2.9 → 9.3.1
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.
- package/interfaces/mealz-internal-interface.ts +17 -2
- package/main-es2015.js +1 -1
- package/main-es5.js +1 -1
- package/miam-style.css +1 -1
- package/package.json +1 -1
- package/webc-miam-de.js +1 -1
- package/webc-miam-en.js +1 -1
- package/webc-miam-es.js +1 -1
- package/webc-miam-fr.js +1 -1
- package/webc-miam-it.js +1 -1
- package/webc-miam-nl.js +1 -1
- package/webc-miam-pt.js +1 -1
- package/webc-miam-ro.js +1 -1
|
@@ -33,7 +33,7 @@ export interface MealzInternalInterface {
|
|
|
33
33
|
/**
|
|
34
34
|
* Emits the pricing information for recipes in the basket.
|
|
35
35
|
*/
|
|
36
|
-
recipeDataInBasket$: () => Observable<{ id: string; price: string
|
|
36
|
+
recipeDataInBasket$: () => Observable<{ id: string; price: string; guests: number }[]>;
|
|
37
37
|
|
|
38
38
|
/**
|
|
39
39
|
* Emits the list of recipes in the basket.
|
|
@@ -65,8 +65,18 @@ export interface MealzInternalInterface {
|
|
|
65
65
|
|
|
66
66
|
// ---------------------------------------------------------------------------------------------------
|
|
67
67
|
|
|
68
|
+
preferences: {
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Resets user preferences and clears cached preferences when SSR is enabled
|
|
72
|
+
*/
|
|
73
|
+
resetPreferences: () => void;
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
// ---------------------------------------------------------------------------------------------------
|
|
77
|
+
|
|
68
78
|
config: {
|
|
69
|
-
logLevel: Observable<string
|
|
79
|
+
logLevel: Observable<string>;
|
|
70
80
|
};
|
|
71
81
|
|
|
72
82
|
// ---------------------------------------------------------------------------------------------------
|
|
@@ -140,5 +150,10 @@ export interface MealzInternalInterface {
|
|
|
140
150
|
setSessionId: (sessionId: string) => void;
|
|
141
151
|
};
|
|
142
152
|
|
|
153
|
+
planner: {
|
|
154
|
+
getDashboardHTML: () => Observable<string>;
|
|
155
|
+
getCurrentMenuHTML: () => Observable<string>;
|
|
156
|
+
};
|
|
157
|
+
|
|
143
158
|
getStickyHeaderHeight: () => Observable<number>;
|
|
144
159
|
}
|