builder.io 1.6.148 → 1.6.150

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.
@@ -160,7 +160,7 @@ export declare class CodeGenSession {
160
160
  * Get the AI branch name
161
161
  */
162
162
  getAiBranch(): string | undefined;
163
- runGitCommand(command: string, cwd?: string): Promise<string>;
163
+ git(args: string[], cwd?: string): Promise<string>;
164
164
  /**
165
165
  * Helper to run git commands
166
166
  */
@@ -9,6 +9,4 @@ export declare const getGitHubRemoteUrl: ({ repoFullName, githubToken, githubHos
9
9
  githubToken: string | undefined;
10
10
  githubHost: string;
11
11
  }) => string;
12
- export declare const getActiveBranchCommand: () => string;
13
- export declare const getActiveBranch: (cwd?: string) => string;
14
12
  export declare const getCommandWithShellArgs: (command: string, shell: string) => string[];