@mappedin/mappedin-js 5.3.0 → 5.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.
@@ -1290,7 +1290,7 @@ declare module '@mappedin/mappedin-js/lib/esm/get-venue/get-venue/MappedinNaviga
1290
1290
  import type { MappedinPolygon } from '@mappedin/mappedin-js/lib/esm/get-venue/get-venue/MappedinPolygon';
1291
1291
  import type { MappedinNode } from '@mappedin/mappedin-js/lib/esm/get-venue/get-venue/MappedinNode';
1292
1292
  import { MappedinDestinationSet } from '@mappedin/mappedin-js/lib/esm/get-venue/get-venue/MappedinDestinationSet';
1293
- import type { Mappedin } from '@mappedin/mappedin-js/lib/esm/get-venue/get-venue/Mappedin';
1293
+ import { Mappedin } from '@mappedin/mappedin-js/lib/esm/get-venue/get-venue/Mappedin';
1294
1294
  import { MappedinDirections } from '@mappedin/mappedin-js/lib/esm/get-venue/get-venue/MappedinDirections';
1295
1295
  export type TDirectionToOptions = {
1296
1296
  accessible?: boolean;
@@ -1313,7 +1313,7 @@ declare module '@mappedin/mappedin-js/lib/esm/get-venue/get-venue/MappedinNaviga
1313
1313
  }
1314
1314
 
1315
1315
  declare module '@mappedin/mappedin-js/lib/esm/get-venue/get-venue/Mappedin.CustomerAnalytics' {
1316
- import { MappedinCategory, MappedinLocation } from '@mappedin/mappedin-js/lib/esm/get-venue/get-venue';
1316
+ import { MappedinCategory, MappedinLocation, MappedinNavigatable } from '@mappedin/mappedin-js/lib/esm/get-venue/get-venue';
1317
1317
  type AnalyticsOptions = {
1318
1318
  clientId?: string;
1319
1319
  clientSecret?: string;
@@ -1327,7 +1327,12 @@ declare module '@mappedin/mappedin-js/lib/esm/get-venue/get-venue/Mappedin.Custo
1327
1327
  interface IAnalytics {
1328
1328
  locationSelected(location: MappedinLocation): void;
1329
1329
  categorySelected(category: MappedinCategory): void;
1330
- getDirections(start: MappedinLocation, end: MappedinLocation): void;
1330
+ /**
1331
+ * @hidden
1332
+ * @internal
1333
+ * @deprecated
1334
+ */
1335
+ getDirections(start: MappedinNavigatable, end: MappedinNavigatable): void;
1331
1336
  }
1332
1337
  interface IInternalAnalytics extends IAnalytics {
1333
1338
  track(target: string, query: any): void;