builder.io 1.10.4 → 1.10.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.
@@ -92,7 +92,10 @@ export declare class CodeGenSession {
92
92
  }>;
93
93
  hasChangesRelativeToRemote(): Promise<boolean>;
94
94
  pullLatestFromRemote(): Promise<boolean>;
95
- syncChangesFromMain(mainBranchName: string): Promise<{
95
+ syncChangesFromMain(arg: string | {
96
+ mainBranchName: string;
97
+ allowUnrelatedHistory?: boolean;
98
+ }): Promise<{
96
99
  success: boolean;
97
100
  message: string;
98
101
  conflicts?: undefined;