@builder.io/ai-utils 0.5.14 → 0.5.15

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.5.14",
3
+ "version": "0.5.15",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/codegen.d.ts CHANGED
@@ -590,6 +590,7 @@ export interface UserInput {
590
590
  mostRelevantFile: string | null;
591
591
  toolResults: ContentMessageItemToolResult[];
592
592
  user: UserSource;
593
+ patchFusionConfig?: Partial<FusionConfig> | undefined;
593
594
  }
594
595
  export interface CodegenTurn {
595
596
  state: "running" | "done" | "error";
@@ -710,7 +711,8 @@ export interface BranchBackup {
710
711
  lastCommitHash: string;
711
712
  partial: boolean;
712
713
  status: "initiated" | "completed";
713
- contentMd5: string;
714
+ contentMd5?: string;
715
+ empty?: boolean;
714
716
  }
715
717
  export interface CheckBackupDataResultValid {
716
718
  hasValidBackup: true;
package/src/projects.d.ts CHANGED
@@ -185,8 +185,9 @@ export interface GitBackupRecordOptions {
185
185
  initialCommitHash: string;
186
186
  lastCommitHash: string;
187
187
  partial: boolean;
188
- status: "initiated" | "completed";
189
- contentMd5: string;
188
+ empty: boolean;
189
+ status: "completed";
190
+ contentMd5?: string;
190
191
  }
191
192
  export interface GitBackupRecordResult {
192
193
  success: boolean;