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