@builder.io/dev-tools 1.17.1-dev.202510281013.ee0c22983 → 1.17.1-dev.202510281301.ee0c22983

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.
@@ -78,7 +78,11 @@ export declare class CodeGenSession {
78
78
  pullLatestFromRemote(): Promise<CodegenApiResult>;
79
79
  abortMerge(emitStatus?: boolean): Promise<CodegenApiResult>;
80
80
  syncChangesFromRemote(opts?: {
81
+ remoteBranches?: "both" | "main" | "ai";
81
82
  fastForward?: "never" | "required" | "auto";
83
+ canPush?: boolean;
84
+ uncommittedChanges?: "stash" | "commit" | "fail";
85
+ allowUnrelatedHistory?: boolean;
82
86
  }): Promise<CodegenApiResult>;
83
87
  /**
84
88
  * Get the current commit hash
@@ -4,8 +4,6 @@
4
4
  export interface EnvCaptureOptions {
5
5
  /** The command to wrap with env capture */
6
6
  command: string;
7
- /** Optional prefix commands (e.g., mise setup) */
8
- prefix?: string;
9
7
  }
10
8
  /**
11
9
  * Result of environment capture
@@ -33,7 +31,6 @@ export interface EnvCaptureResult {
33
31
  * ```typescript
34
32
  * const { command, getCapturedEnv } = wrapCommandWithEnvCapture({
35
33
  * command: 'npm install',
36
- * prefix: 'source ~/.bashrc'
37
34
  * });
38
35
  *
39
36
  * // Execute command...