webc-miam 6.3.12 → 6.4.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.
- package/interfaces/miam-interface.ts +0 -13
- 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
|
@@ -127,15 +127,6 @@ export interface MiamInterface {
|
|
|
127
127
|
* /!\ We heavily recommend not to use this method outside of the web console for testing purposes /!\
|
|
128
128
|
*/
|
|
129
129
|
reset: () => void;
|
|
130
|
-
/**
|
|
131
|
-
* Adds a recipe to Miam's basket
|
|
132
|
-
* /!\ We heavily recommend not to use this method outside of the web console for testing purposes /!\
|
|
133
|
-
*/
|
|
134
|
-
addRecipe: (recipeId: string, guests: number) => Observable<object>;
|
|
135
|
-
/**
|
|
136
|
-
* Returns an observable that will emit true if the recipe passed in parameter is in Miam's GroceriesList
|
|
137
|
-
*/
|
|
138
|
-
hasRecipe: (recipeId: string) => Observable<boolean>;
|
|
139
130
|
/**
|
|
140
131
|
* @returns A BehaviorSubject that emits the current number of recipes in Miam's GroceriesList
|
|
141
132
|
*/
|
|
@@ -177,10 +168,6 @@ export interface MiamInterface {
|
|
|
177
168
|
* example : [{value: 1, label: "Beginner"}] to update the label of easy recipes to "Beginner"
|
|
178
169
|
*/
|
|
179
170
|
setDifficultyLevels: (levels: { value: number, label: string }[]) => void;
|
|
180
|
-
/**
|
|
181
|
-
* /!\ DEPRECATED: DO NOT USE /!\
|
|
182
|
-
*/
|
|
183
|
-
search: (provider, query) => any;
|
|
184
171
|
// /**
|
|
185
172
|
// * /!\ DEPRECATED: DO NOT USE /!\
|
|
186
173
|
// */
|