@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.
- package/cli/index.cjs +103 -32
- package/cli/index.cjs.map +3 -3
- package/core/index.cjs +1 -1
- package/core/index.mjs +1 -1
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +1 -1
- package/server/index.cjs +2 -2
- package/server/index.mjs +2 -2
- package/types/cli/codegen.d.ts +2 -1
- package/types/cli/launch/InitStateMachine.d.ts +1 -1
- package/types/tsconfig.tsbuildinfo +1 -1
package/types/cli/codegen.d.ts
CHANGED
|
@@ -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
|
|
2
|
+
import { type FusionConfig, type WorkspaceFolder } from "$/ai-utils";
|
|
3
3
|
export interface InitConfig {
|
|
4
4
|
fusionConfig: FusionConfig;
|
|
5
5
|
sys: DevToolsSys;
|