@archilogic/floor-plan-sdk 5.1.12 → 5.1.13

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/dist/fpe.d.ts CHANGED
@@ -2973,6 +2973,7 @@ declare class SpaceGraphProductBase extends SpaceGraphNodeWithCustomAttributesBa
2973
2973
  constructor(id: string, type: SpaceGraphProductType);
2974
2974
  copyForClone(product: SpaceGraphProductStatic | SpaceGraphProductComponent): void;
2975
2975
  setAttributes(attributesJson: SpaceGraphProductAttributesJson): void;
2976
+ getBoundingBox(): BoundingBox3d;
2976
2977
  toJSON(): SpaceGraphProductJson;
2977
2978
  }
2978
2979
 
@@ -3125,6 +3126,7 @@ declare class SpatialGraphEdge extends SpatialGraphNodeBase {
3125
3126
  }
3126
3127
 
3127
3128
  declare interface SpatialGraphEdgeJson extends SpatialGraphNodeBaseJson {
3129
+ id: string;
3128
3130
  type: SpatialGraphEdgeType;
3129
3131
  vertices: [string, string];
3130
3132
  }
@@ -3156,6 +3158,7 @@ declare class SpatialGraphVertex extends SpatialGraphNodeBase {
3156
3158
  }
3157
3159
 
3158
3160
  declare interface SpatialGraphVertexJson extends SpatialGraphNodeBaseJson {
3161
+ id: string;
3159
3162
  type: SpatialGraphVertexType;
3160
3163
  position: Vector2_2;
3161
3164
  }