@roomle/web-sdk 2.102.0-alpha.3 → 2.102.0-alpha.4

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.
@@ -493,4 +493,8 @@ export default class RoomlePlanner<P extends readonly PluginName[] = readonly []
493
493
  * @hidden
494
494
  */
495
495
  turnLightsOff(): void;
496
+ getPlanObjectForRuntimeId(runtimeId: number): Promise<PlanElementViewModel | null>;
497
+ rotateByRuntimeId(runtimeId: number, rotateBy: number): Promise<void>;
498
+ deleteByRuntimeId(runtimeId: number): Promise<void>;
499
+ moveByRuntimeId(runtimeId: number, position: KernelVector3): Promise<void>;
496
500
  }
@@ -133,8 +133,10 @@ export default class PlannerSceneManager extends ConfiguratorSceneManager implem
133
133
  */
134
134
  getRootPlanObjectId(id: number): number;
135
135
  cancelPlanElementSelection(reason: CancelSelectionReasons): void;
136
+ deletePlanElements(runtimeIds: RuntimeId[]): Promise<void>;
136
137
  deletePlanElementSelection(): Promise<void>;
137
138
  deletePlanElementByIds(runtimeIds: number[]): Promise<void>;
139
+ rotatePlanElements(ids: RuntimeId[], rotateBy: number): void;
138
140
  rotatePlanElementSelection(rotateBy: number): void;
139
141
  planBoundsChanged(): void;
140
142
  planElementRemoved(element: PlanElement): void;
@@ -493,4 +493,8 @@ export default class RoomlePlanner<P extends readonly PluginName[] = readonly []
493
493
  * @hidden
494
494
  */
495
495
  turnLightsOff(): void;
496
+ getPlanObjectForRuntimeId(runtimeId: number): Promise<PlanElementViewModel | null>;
497
+ rotateByRuntimeId(runtimeId: number, rotateBy: number): Promise<void>;
498
+ deleteByRuntimeId(runtimeId: number): Promise<void>;
499
+ moveByRuntimeId(runtimeId: number, position: KernelVector3): Promise<void>;
496
500
  }
@@ -133,8 +133,10 @@ export default class PlannerSceneManager extends ConfiguratorSceneManager implem
133
133
  */
134
134
  getRootPlanObjectId(id: number): number;
135
135
  cancelPlanElementSelection(reason: CancelSelectionReasons): void;
136
+ deletePlanElements(runtimeIds: RuntimeId[]): Promise<void>;
136
137
  deletePlanElementSelection(): Promise<void>;
137
138
  deletePlanElementByIds(runtimeIds: number[]): Promise<void>;
139
+ rotatePlanElements(ids: RuntimeId[], rotateBy: number): void;
138
140
  rotatePlanElementSelection(rotateBy: number): void;
139
141
  planBoundsChanged(): void;
140
142
  planElementRemoved(element: PlanElement): void;