webc-miam 9.1.0 → 9.1.2
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 +1 -5
- package/interfaces/mealz-internal-interface.ts +5 -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
|
@@ -129,10 +129,6 @@ export interface MealzInterface {
|
|
|
129
129
|
* Call to enable tags displaying on recipe-details
|
|
130
130
|
*/
|
|
131
131
|
enableTagsOnRecipes: () => void;
|
|
132
|
-
/**
|
|
133
|
-
* Call to enable personal recipes on recipe-catalog
|
|
134
|
-
*/
|
|
135
|
-
enablePersonalRecipes: () => void;
|
|
136
132
|
/**
|
|
137
133
|
* Call to enable the meals-planner
|
|
138
134
|
*
|
|
@@ -198,7 +194,7 @@ export interface MealzInterface {
|
|
|
198
194
|
/**
|
|
199
195
|
* This is an internal method that will be moved elsewhere soon. Do not call
|
|
200
196
|
*/
|
|
201
|
-
getByCoordinates: (
|
|
197
|
+
getByCoordinates: (latitude: number, longitude: number, radius: number, suppliers: string[]) => Observable<DocumentCollection<PointOfSale>>;
|
|
202
198
|
};
|
|
203
199
|
|
|
204
200
|
// ---------------------------------------------------------------------------------------------------
|
|
@@ -121,6 +121,11 @@ export interface MealzInternalInterface {
|
|
|
121
121
|
* Retrieves the current authentication status of the user.
|
|
122
122
|
*/
|
|
123
123
|
isAuthenticated: () => Observable<boolean>;
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* Updates the SDK's session ID to ensure consistency with SSR.
|
|
127
|
+
*/
|
|
128
|
+
setSessionId: (sessionId: string) => void;
|
|
124
129
|
};
|
|
125
130
|
|
|
126
131
|
getStickyHeaderHeight: () => Observable<number>;
|