sakuya-types 0.2.0 → 0.3.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.
Files changed (2) hide show
  1. package/index.ts +0 -2
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -108,8 +108,6 @@ export interface ExtensionMetadata {
108
108
  * Every extension module must default-export an object implementing this interface.
109
109
  */
110
110
  export interface SakuyaExtension {
111
- /** Metadata about the extension */
112
- metadata: ExtensionMetadata;
113
111
  /** Lifecycle hook: called when extension is loaded during daemon startup */
114
112
  activate(ctx: ExtensionContext): void | Promise<void>;
115
113
  /** Lifecycle hook: called during daemon shutdown for cleanup */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sakuya-types",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "Type definitions for Sakuya extensions",
5
5
  "type": "module",
6
6
  "main": "index.ts",