webc-miam 6.1.4 → 6.1.6
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/miam-interface.ts +12 -0
- package/main-es2015.js +1 -1
- package/main-es5.js +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
|
@@ -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
|
// ---------------------------------------------------------------------------------------------------
|