@archilogic/extension-sdk 0.9.1 → 0.10.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @archilogic/extension-sdk
2
2
 
3
+ ## 0.10.0
4
+
5
+ ### Minor Changes
6
+
7
+ - dd8a02f: feat(extension-sdk): add getSpaceGraphJson method
8
+
3
9
  ## 0.9.1
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1130,6 +1130,7 @@ export declare type HostApi = {
1130
1130
  selectNodes: (args: {
1131
1131
  nodeIds: string[];
1132
1132
  }) => Promise<NodeResult[]>;
1133
+ getSpaceGraphJson: () => Promise<SpaceGraphJson>;
1133
1134
  getPath: (args: {
1134
1135
  start: Vector2;
1135
1136
  end: Vector2;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@archilogic/extension-sdk",
3
3
  "description": "",
4
- "version": "0.9.1",
4
+ "version": "0.10.0",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },