webc-miam 9.2.3 → 9.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.
- package/interfaces/mealz-interface.ts +0 -6
- package/interfaces/mealz-internal-interface.ts +1 -1
- 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
|
@@ -51,12 +51,6 @@ export interface MealzInterface {
|
|
|
51
51
|
* /!\ We heavily recommend not to use this method except in the console for testing purposes /!\
|
|
52
52
|
*/
|
|
53
53
|
reset: () => void;
|
|
54
|
-
/**
|
|
55
|
-
* If you have different price tables (or pricebooks) for the same point of sale, you can call this
|
|
56
|
-
* method to make Mealz know on which pricebook you are using
|
|
57
|
-
* For example, prices can be different depending on if the user chose home delivery or drive-in
|
|
58
|
-
*/
|
|
59
|
-
updatePricebook: (pricebookName: string) => Observable<void>;
|
|
60
54
|
/**
|
|
61
55
|
* @returns A BehaviorSubject that emits the current number of recipes in Mealz's Basket
|
|
62
56
|
*/
|
|
@@ -102,7 +102,7 @@ export interface MealzInternalInterface {
|
|
|
102
102
|
/**
|
|
103
103
|
* Fetches the pricing information for a specific recipe based on the provided parameters.
|
|
104
104
|
*/
|
|
105
|
-
fetchPricing: (recipeId: string, posId: string,
|
|
105
|
+
fetchPricing: (recipeId: string, posId: string, serves: number) => Observable<RecipePricing>;
|
|
106
106
|
};
|
|
107
107
|
|
|
108
108
|
// ---------------------------------------------------------------------------------------------------
|