@smplrspace/smplr-loader 2.16.2-beta.27 → 2.16.2-beta.29
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.
|
@@ -494,6 +494,14 @@ export declare class QueryClient {
|
|
|
494
494
|
spaceId: string;
|
|
495
495
|
furnitureId: string;
|
|
496
496
|
}): Furniture | null;
|
|
497
|
+
getFurnitureGroundFootprintById({ spaceId, furnitureId, }: {
|
|
498
|
+
spaceId: string;
|
|
499
|
+
furnitureId: string;
|
|
500
|
+
}): Promise<SmplrCoord2d[] | null>;
|
|
501
|
+
getFurnitureGroundFootprintByIdFromCache({ spaceId, furnitureId, }: {
|
|
502
|
+
spaceId: string;
|
|
503
|
+
furnitureId: string;
|
|
504
|
+
}): SmplrCoord2d[] | null;
|
|
497
505
|
getSpaceAssetmap(id: string): Promise<unknown>;
|
|
498
506
|
getSpaceAssetmapFromCache(id: string): unknown;
|
|
499
507
|
getPolylineLength({ line, unit }: {
|
|
@@ -719,7 +727,7 @@ declare interface Vector3Coord extends Vector2Coord {
|
|
|
719
727
|
z: number;
|
|
720
728
|
}
|
|
721
729
|
|
|
722
|
-
export declare const version = "2.16.2-beta.
|
|
730
|
+
export declare const version = "2.16.2-beta.29";
|
|
723
731
|
|
|
724
732
|
declare interface ViewerOptions {
|
|
725
733
|
mode?: CameraMode;
|