builder.io 1.6.69 → 1.6.71

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.
@@ -59,7 +59,7 @@ interface RipgrepMatch {
59
59
  interface RipgrepResult {
60
60
  matches: RipgrepMatch[];
61
61
  }
62
- export declare function runRipgrep(workingDirectory: string, pattern: string, includeGlob?: string, excludeGlob?: string): Promise<RipgrepResult>;
62
+ export declare function runRipgrep(sys: DevToolsSys, workingDirectory: string, pattern: string, includeGlob?: string, excludeGlob?: string): Promise<RipgrepResult>;
63
63
  export declare function newAbortError(): Error;
64
64
  export declare function killProcess(sys: DevToolsSys, proc: ChildProcessByStdio<null, Readable, Readable> | undefined, abortSignal?: AbortSignal, timeout?: number): Promise<boolean>;
65
65
  export {};
@@ -1,6 +1,6 @@
1
1
  import type { DevToolsSys } from "../types";
2
2
  import type { CLIArgs } from "./index";
3
- import type { UserContext } from "$/ai-utils";
3
+ import { type UserContext } from "$/ai-utils";
4
4
  export declare const runCodeCommand: (sys: DevToolsSys, subCommand: string, args: CLIArgs) => Promise<void>;
5
5
  export declare const runCodeGen: (sys: DevToolsSys, args: CLIArgs) => Promise<void>;
6
6
  export declare function checkProjectRoot(sys: DevToolsSys, interactive: boolean): Promise<void>;
@@ -48,6 +48,7 @@ export interface CodeGenSessionOptionsBase {
48
48
  fusionContext?: FusionContext;
49
49
  workingDirectory?: string;
50
50
  workspace?: WorkspaceConfiguration;
51
+ mcpServers?: boolean;
51
52
  }
52
53
  export interface CodeGenSessionOptionsSession extends CodeGenSessionOptionsBase {
53
54
  sessionOrCompletionId?: string;