builder.io 1.6.109 → 1.6.111

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.
@@ -21,6 +21,7 @@ export interface FusionContext {
21
21
  gitRemote?: string;
22
22
  gitAutoInit?: boolean;
23
23
  gitFeatureBranch?: string;
24
+ projectId?: string;
24
25
  }
25
26
  export interface ToolContext extends Partial<FusionContext> {
26
27
  sys: DevToolsSys;
@@ -131,7 +131,7 @@ export declare class CodeGenSession {
131
131
  /**
132
132
  * Helper to run git commands
133
133
  */
134
- runGitCommand(command: string): Promise<string>;
134
+ runGitCommand(command: string, cwd?: string): Promise<string>;
135
135
  /**
136
136
  * Helper to run git commands
137
137
  */
@@ -42,6 +42,7 @@ export declare class InitStateMachine {
42
42
  currentStep: string;
43
43
  error: string | undefined;
44
44
  };
45
+ debug: boolean;
45
46
  init(config: InitConfig, signal?: AbortSignal): Promise<boolean>;
46
47
  addInitLog(type: "status" | "log" | "error" | "complete", message: string, options?: {
47
48
  step?: InitStateStep;
@@ -56,6 +57,6 @@ export declare class InitStateMachine {
56
57
  private isGitConfigured;
57
58
  private getGitRemoteUrl;
58
59
  private sanitizeGitRemoteUrl;
59
- cloneRepository(repo: Required<WorkspaceFolder>, repoPath: string, debug?: boolean, signal?: AbortSignal): Promise<boolean>;
60
+ cloneRepository(repo: Required<WorkspaceFolder>, repoPath: string, signal?: AbortSignal): Promise<boolean>;
60
61
  }
61
62
  export {};