@builder.io/dev-tools 1.6.112-dev.202506180950.acba33404 → 1.6.113-dev.202506181002.604864d2f

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.
@@ -157,11 +157,12 @@ export declare class CodeGenSession {
157
157
  * @param dryRun If true, only simulate the restoration without making changes
158
158
  * @returns Array of file paths that were changed
159
159
  */
160
- restore({ location, predicate, dryRun, forceReplay, }: {
160
+ restore({ location, predicate, dryRun, forceReplay, debug, }: {
161
161
  location: "before" | "after";
162
162
  predicate: (turn: CodegenTurn | null, index: number) => boolean;
163
163
  dryRun?: boolean;
164
164
  forceReplay?: boolean;
165
+ debug?: string;
165
166
  }): Promise<string[] | null>;
166
167
  restoreHEAD(): Promise<string[] | null>;
167
168
  restoreAll(): Promise<string[] | null>;
@@ -1,5 +1,5 @@
1
1
  import type { DevToolsSys } from "@builder.io/dev-tools/core";
2
- import type { FusionConfig, WorkspaceFolder } from "$/ai-utils";
2
+ import { type FusionConfig, type WorkspaceFolder } from "$/ai-utils";
3
3
  export interface InitConfig {
4
4
  fusionConfig: FusionConfig;
5
5
  sys: DevToolsSys;