@neovate/code 0.12.3 → 0.12.5

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
@@ -176,6 +176,7 @@ export declare class Context {
176
176
  version: string;
177
177
  config: Config;
178
178
  paths: Paths;
179
+ argvConfig: Record<string, any>;
179
180
  mcpManager: MCPManager;
180
181
  constructor(opts: ContextOpts);
181
182
  apply(applyOpts: Omit<PluginApplyOpts, 'pluginContext'>): Promise<any>;
@@ -421,6 +422,7 @@ declare class Paths {
421
422
  messageCount: number;
422
423
  summary: string;
423
424
  }[];
425
+ getGlobalDataPath(): string;
424
426
  }
425
427
 
426
428
  declare type Plugin_2 = {
@@ -535,8 +537,7 @@ declare class PluginManager {
535
537
 
536
538
  declare interface PromptCommand extends BaseSlashCommand {
537
539
  type: 'prompt';
538
- argNames?: string[];
539
- progressMessage: string;
540
+ progressMessage?: string;
540
541
  model?: string;
541
542
  getPromptForCommand(args: string): Promise<Array<{
542
543
  role: string;