@mappedin/events 6.9.1-beta.0 → 6.10.0-beta.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.
@@ -100,6 +100,7 @@ declare const VALID_CONTEXTS: readonly [
100
100
  "websdk",
101
101
  "web",
102
102
  "webv2",
103
+ "kiosk",
103
104
  "kiosk-v2",
104
105
  "mobile",
105
106
  "iossdk",
@@ -107,7 +108,8 @@ declare const VALID_CONTEXTS: readonly [
107
108
  "reactnativesdk",
108
109
  "gen7",
109
110
  "bespoke",
110
- "reactsdk"
111
+ "reactsdk",
112
+ "minimap"
111
113
  ];
112
114
  type ValidContext = (typeof VALID_CONTEXTS)[number];
113
115
  declare const FOUND_POSITION = "found-position";
@@ -4484,7 +4486,8 @@ type TCoordinateParams = {
4484
4486
  */
4485
4487
  verticalOffset?: number;
4486
4488
  };
4487
- declare class Coordinate implements IFocusable, IAnchorable {
4489
+ declare class Coordinate implements IFocusable, IAnchorable, IGeoJSONData {
4490
+ #private;
4488
4491
  /**
4489
4492
  * @internal
4490
4493
  */
@@ -4557,10 +4560,14 @@ declare class Coordinate implements IFocusable, IAnchorable {
4557
4560
  floorId: string | undefined;
4558
4561
  verticalOffset: number;
4559
4562
  };
4560
- toGeoJSON(): {
4561
- type: string;
4562
- coordinates: number[];
4563
- };
4563
+ /**
4564
+ * Gets the underlying GeoJSON Feature representation of this Coordinate.
4565
+ */
4566
+ get geoJSON(): Feature<Point, null>;
4567
+ /**
4568
+ * @deprecated Use {@link geoJSON} instead.
4569
+ */
4570
+ toGeoJSON(): Point;
4564
4571
  /**
4565
4572
  * Cleans up resources used by the instance.
4566
4573
  *
@@ -5645,7 +5652,7 @@ type TMapDataInternalOptions = {
5645
5652
  };
5646
5653
  type MVFNodeFeature = MVFNodeCollection["features"][number];
5647
5654
  type MVFFloorFeature = FloorCollection["features"][number];
5648
- declare class Floor extends BaseMapData implements IFocusable {
5655
+ declare class Floor extends BaseMapData implements IFocusable, IGeoJSONData {
5649
5656
  #private;
5650
5657
  /**
5651
5658
  * @internal
@@ -5886,7 +5893,7 @@ declare class Node$1 extends BaseMetaData implements IGeoJSONData, IFocusable, I
5886
5893
  */
5887
5894
  destroy(): void;
5888
5895
  }
5889
- declare class FloorStack extends BaseMapData {
5896
+ declare class FloorStack extends BaseMapData implements IGeoJSONData {
5890
5897
  #private;
5891
5898
  /**
5892
5899
  * @internal
@@ -5947,6 +5954,12 @@ declare class FloorStack extends BaseMapData {
5947
5954
  * Gets the facade ({@link Facade}) representing this floor stack, if it exists.
5948
5955
  */
5949
5956
  get facade(): Facade | undefined;
5957
+ /**
5958
+ * Gets the underlying GeoJSON Feature representation of this FloorStack.
5959
+ *
5960
+ * Returns a union of all floor geometries in this stack.
5961
+ */
5962
+ get geoJSON(): Feature$1<Polygon$1 | MultiPolygon$1, null>;
5950
5963
  /**
5951
5964
  * Serializes the FloorStack data to JSON.
5952
5965
  *
@@ -6897,6 +6910,7 @@ type THydrateMapDataBundle = {
6897
6910
  options?: {
6898
6911
  version?: "2.0.0" | "3.0.0";
6899
6912
  enterprise?: boolean;
6913
+ mvf3?: MVFv2_STANDARD_MVFv3;
6900
6914
  };
6901
6915
  languagePacks?: {
6902
6916
  language: {