lucid-extension-sdk 0.0.308 → 0.0.309

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
@@ -762,6 +762,8 @@ export type AddCardIntegrationQuery = {
762
762
  /** Create card action */
763
763
  'cc': string;
764
764
  } | undefined;
765
+ /** Whether to enable dependency mapping for this integration */
766
+ 'sdm'?: boolean;
765
767
  };
766
768
  export type AddCardIntegrationResult = undefined;
767
769
  /** @ignore */
@@ -95,4 +95,5 @@ export declare abstract class LucidCardIntegration {
95
95
  }>;
96
96
  };
97
97
  showCardImport(name: string): import("../../commandtypes").ImportCardsResult;
98
+ showDependencyMapping?: boolean;
98
99
  }
@@ -141,6 +141,9 @@ class LucidCardIntegrationRegistry {
141
141
  };
142
142
  });
143
143
  }
144
+ if (cardIntegration.showDependencyMapping) {
145
+ serialized['sdm'] = true;
146
+ }
144
147
  client.sendCommand("aci" /* CommandName.AddCardIntegration */, serialized);
145
148
  }
146
149
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucid-extension-sdk",
3
- "version": "0.0.308",
3
+ "version": "0.0.309",
4
4
  "description": "Utility classes for writing Lucid Software editor extensions",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",