@builder.io/ai-utils 0.23.1 → 0.23.2
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/package.json +1 -1
- package/src/codegen.d.ts +4 -1
- package/src/projects.d.ts +1 -0
package/package.json
CHANGED
package/src/codegen.d.ts
CHANGED
|
@@ -336,6 +336,7 @@ export interface ReportUIIssueToolInput {
|
|
|
336
336
|
export interface ReportIssueToolInput {
|
|
337
337
|
file_path: string;
|
|
338
338
|
line: number;
|
|
339
|
+
start_line?: number;
|
|
339
340
|
title: string;
|
|
340
341
|
severity: "high" | "medium";
|
|
341
342
|
body: string;
|
|
@@ -1462,6 +1463,8 @@ export interface FusionConfig {
|
|
|
1462
1463
|
* Errors matching these patterns will not show the error popup.
|
|
1463
1464
|
*/
|
|
1464
1465
|
errorIgnorePatterns?: string[];
|
|
1466
|
+
/** When true, sync the git working tree to the latest remote state during init */
|
|
1467
|
+
syncBranch?: boolean;
|
|
1465
1468
|
/**
|
|
1466
1469
|
* Maximum number of agent completions before pausing to ask the user to continue.
|
|
1467
1470
|
* Read from project settings, with fallback to organization/space settings.
|
|
@@ -1496,7 +1499,7 @@ export interface LoadHistoryResult {
|
|
|
1496
1499
|
updatedUnixTime: number;
|
|
1497
1500
|
turns: CodegenTurn[];
|
|
1498
1501
|
}
|
|
1499
|
-
export type InitStateStep = "initial" | "init" | "validation" | "check-directories" | "create-directories" | "configure-git-repos" | "check-existing-git" | "update-remote-url" | "clone-repo" | "apply-partial-backup" | "configure-git-user" | "stash-changes" | "collect-repo-info" | "init-success" | "init-command" | "init-failed";
|
|
1502
|
+
export type InitStateStep = "initial" | "init" | "validation" | "check-directories" | "create-directories" | "configure-git-repos" | "check-existing-git" | "update-remote-url" | "clone-repo" | "apply-partial-backup" | "configure-git-user" | "stash-changes" | "collect-repo-info" | "init-success" | "init-command" | "init-failed" | "snapshot-git-sync";
|
|
1500
1503
|
export interface InitStatusLog {
|
|
1501
1504
|
id: number;
|
|
1502
1505
|
timestamp: string;
|