@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/ai-utils",
3
- "version": "0.23.1",
3
+ "version": "0.23.2",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
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;
package/src/projects.d.ts CHANGED
@@ -604,6 +604,7 @@ export interface Project {
604
604
  enabled: boolean;
605
605
  instructions?: string;
606
606
  };
607
+ createSnapshot?: boolean;
607
608
  postMergeMemories?: boolean;
608
609
  commitInstructions?: string;
609
610
  maxAgentCompletions?: number;