webc-miam 6.2.3 → 6.2.5

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.
@@ -44,6 +44,10 @@ export interface MiamInterface {
44
44
  };
45
45
 
46
46
  basketSync: {
47
+ // /**
48
+ // * /!\ DEPRECATED: DO NOT USE /!\
49
+ // */
50
+ setAllProductsAsRetailers: () => void,
47
51
  /**
48
52
  * The callback parameter is called when Miam's basket changes to update the user's cart accordingly
49
53
  *
@@ -134,6 +138,14 @@ export interface MiamInterface {
134
138
  * @returns A BehaviorSubject that emits the current number of recipes in Miam's GroceriesList
135
139
  */
136
140
  recipeCount: () => Observable<number>;
141
+ // /**
142
+ // * /!\ DEPRECATED: DO NOT USE /!\
143
+ // */
144
+ createTemporaryList: () => void,
145
+ // /**
146
+ // * /!\ DEPRECATED: DO NOT USE /!\
147
+ // */
148
+ refresh: () => void;
137
149
  };
138
150
 
139
151
  // ---------------------------------------------------------------------------------------------------