webc-miam 9.2.1 → 9.2.3
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 +6 -0
- package/main-es2015.js +1 -1
- package/main-es5.js +1 -1
- package/miam-style.css +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
|
@@ -208,6 +208,12 @@ export interface MealzInterface {
|
|
|
208
208
|
* This is an internal method that will be moved elsewhere soon. Do not call
|
|
209
209
|
*/
|
|
210
210
|
getByCoordinates: (latitude: number, longitude: number, radius: number, suppliers: string[]) => Observable<DocumentCollection<PointOfSale>>;
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* Opens the no supplier onboarding popup
|
|
215
|
+
*/
|
|
216
|
+
openNoSupplierOnboarding: () => void;
|
|
211
217
|
};
|
|
212
218
|
|
|
213
219
|
// ---------------------------------------------------------------------------------------------------
|