lucid-extension-sdk 0.0.295 → 0.0.296

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/commandtypes.d.ts CHANGED
@@ -1423,7 +1423,9 @@ export type MeasureTextResult = {
1423
1423
  'h': number;
1424
1424
  };
1425
1425
  export declare enum MermaidDiagramType {
1426
- FLOWCHART = "flowchart"
1426
+ FLOWCHART = "flowchart",
1427
+ CLASS_DIAGRAM = "class_diagram",
1428
+ ERD = "erd"
1427
1429
  }
1428
1430
  export type AddDiagramFromMermaidQuery = {
1429
1431
  /** Type of diagram as an enum, e.g., flowchart. */
package/commandtypes.js CHANGED
@@ -170,11 +170,11 @@ var GetLLMContextType;
170
170
  var MermaidDiagramType;
171
171
  (function (MermaidDiagramType) {
172
172
  MermaidDiagramType["FLOWCHART"] = "flowchart";
173
+ MermaidDiagramType["CLASS_DIAGRAM"] = "class_diagram";
174
+ MermaidDiagramType["ERD"] = "erd";
173
175
  // The following types are not yet supported.
174
176
  // SEQUENCE_DIAGRAM = 'sequence_diagram',
175
- // CLASS_DIAGRAM = 'class_diagram',
176
177
  // STATE_DIAGRAM = 'state_diagram',
177
- // ERD = 'erd',
178
178
  // USER_JOURNEY = 'user_journey',
179
179
  // GANTT = 'gantt',
180
180
  // PIECHART = 'piechart',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucid-extension-sdk",
3
- "version": "0.0.295",
3
+ "version": "0.0.296",
4
4
  "description": "Utility classes for writing Lucid Software editor extensions",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",