@neovate/code 0.20.0 → 0.20.1

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/dist/index.d.ts CHANGED
@@ -180,6 +180,7 @@ export declare class Context {
180
180
  mcpManager: MCPManager;
181
181
  backgroundTaskManager: BackgroundTaskManager;
182
182
  messageBus?: MessageBus;
183
+ plugins: (string | Plugin_2)[];
183
184
  constructor(opts: ContextOpts);
184
185
  apply(applyOpts: Omit<PluginApplyOpts, 'pluginContext'>): Promise<any>;
185
186
  destroy(): Promise<void>;
@@ -208,6 +209,7 @@ declare type ContextOpts = {
208
209
  mcpManager: MCPManager;
209
210
  backgroundTaskManager: BackgroundTaskManager;
210
211
  messageBus?: MessageBus;
212
+ plugins: (string | Plugin_2)[];
211
213
  };
212
214
 
213
215
  declare interface CreateTaskInput {