webc-miam 10.4.0 → 10.5.0

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,6 +1,6 @@
1
1
  import { PlausibleProps } from 'mealz-shared-analytics';
2
2
  import { DocumentCollection } from 'miam-jsonapi';
3
- import { BehaviorSubject, Observable } from 'rxjs';
3
+ import { BehaviorSubject, Observable, ReplaySubject } from 'rxjs';
4
4
  import { Basket, BasketEntry, Ingredient, Item, Menu, MenuRecipe, PointOfSale, Recipe, RecipeLike, SponsorBlock, Supplier } from '../../_models';
5
5
  import { RecipePricing } from '../../_models/recipe-pricing';
6
6
  import { Tag } from '../../_models/tag';
@@ -568,6 +568,11 @@ export interface MealzInternalInterface {
568
568
  * Retrieves if the retailer is not a supplier
569
569
  */
570
570
  isNoSupplier: () => boolean;
571
+
572
+ /**
573
+ * Emits once the no-supplier mode has been resolved from `setupWithToken`.
574
+ */
575
+ noSupplier$: ReplaySubject<boolean>;
571
576
  };
572
577
 
573
578
  // ---------------------------------------------------------------------------------------------------