webc-miam 9.0.5 → 9.0.7

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.
@@ -106,6 +106,12 @@ export interface MealzInterface {
106
106
 
107
107
  // ---------------------------------------------------------------------------------------------------
108
108
 
109
+ config: {
110
+ mealzLogs: (param: 'none' | 'warn' | 'error' | 'all') => void;
111
+ };
112
+
113
+ // ---------------------------------------------------------------------------------------------------
114
+
109
115
  features: {
110
116
  /**
111
117
  * Call to enable recipes to display a video instead of their picture, if there is a video for the recipe
@@ -52,6 +52,12 @@ export interface MealzInternalInterface {
52
52
 
53
53
  // ---------------------------------------------------------------------------------------------------
54
54
 
55
+ config: {
56
+ logLevel: Observable<string>
57
+ };
58
+
59
+ // ---------------------------------------------------------------------------------------------------
60
+
55
61
  recipes: {
56
62
  /**
57
63
  * Opens the recipe details by calling the `openRecipeDetails` method of the `recipesService`.