webc-miam 10.5.9 → 10.5.11

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.
@@ -358,6 +358,11 @@ export interface MealzInternalInterface {
358
358
  */
359
359
  displayedRecipe$: BehaviorSubject<RecipeDisplay>;
360
360
 
361
+ /**
362
+ * Emits the tab index to select when opening recipe details (0 = products, 1 = preparation).
363
+ */
364
+ recipeDetailsTabIndex$: BehaviorSubject<number>;
365
+
361
366
  /**
362
367
  * Emits the products by category
363
368
  */
@@ -773,5 +778,7 @@ export interface MealzInternalInterface {
773
778
  noSupplier: {
774
779
  addRecipeToBasketFromIdAndOpenPreview: (recipeId: string) => Observable<void>;
775
780
  displaySupplierSelector$: BehaviorSubject<boolean>;
781
+ openStoreLocatorForPricing: () => void;
782
+ cancelPricingPosSelection: () => void;
776
783
  };
777
784
  }