lucid-extension-sdk 0.0.56 → 0.0.57

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucid-extension-sdk",
3
- "version": "0.0.56",
3
+ "version": "0.0.57",
4
4
  "description": "Utility classes for writing Lucid Software editor extensions",
5
5
  "main": "sdk/index.js",
6
6
  "types": "sdk/index.d.ts",
@@ -681,7 +681,7 @@ export declare type AnimateViewportResult = Promise<void>;
681
681
  export declare type GetElementTypeQuery = {
682
682
  'id'?: string | undefined;
683
683
  };
684
- export declare type GetElementTypeResult = 'block' | 'line' | 'group' | 'page' | 'document' | 'generator' | 'panel';
684
+ export declare type GetElementTypeResult = 'block' | 'line' | 'group' | 'visual-activity' | 'page' | 'document' | 'generator' | 'panel';
685
685
  export declare type GetConnectedLinesQuery = string;
686
686
  export declare type GetConnectedLinesResult = string[];
687
687
  export declare type GetCurrentPageQuery = void;