Appearance
Changelog
v0.9.0
March 6th 2026
- New ✨
- Addition of wayfinding methods getPath and findClosestts
// find the closest meeting room // by walking distance from a specific location const { path, distance, target } = await hostApi.findClosest({ start: [12, 5], where: { subCategory: 'meetingRoom' } })
- Addition of wayfinding methods getPath and findClosest
v0.8.0
February 25th 2026
- New ✨
- Spatial query filters
atandwithinfor elements and spacestsconst spaces = await hostApi.getSpaces({ where: { at: [-5, 3] } }) const assetsInBoundingBox = await hostApi.getElements({ where: { within: { min: [-3, 0], max: [10, 5] } } }) - Asset elements now inherit product category and subCategoryts
const workstations = await hostApi.getElements({ where: { subCategory: 'workstation' } })
- Spatial query filters
v0.7.0
February 17th 2026
- New ✨
- Changes
- Elements now expose transform, localTransform, boundingBox and localBoundingBox
element.position,element.rotationare removed in favour ofelement.transform

