@builder.io/ai-utils 0.5.36 → 0.5.38

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.36",
3
+ "version": "0.5.38",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/codegen.d.ts CHANGED
@@ -691,6 +691,7 @@ export interface GenerateCodeEventDone {
691
691
  sessionUsage: number;
692
692
  nextUrl: string;
693
693
  autoContinue: boolean;
694
+ model: string;
694
695
  }
695
696
  export interface GenerateCodeEventError {
696
697
  type: "error";
@@ -843,6 +844,7 @@ export interface PrivacyMode {
843
844
  */
844
845
  mcpServers?: boolean;
845
846
  }
847
+ export type Mode = "init-and-launch" | "backup";
846
848
  export interface FusionConfig {
847
849
  devCommand?: string;
848
850
  checkCommand?: string;
@@ -867,6 +869,7 @@ export interface FusionConfig {
867
869
  repoIndexingConfig?: RepoIndexingConfig;
868
870
  machine?: RemoteMachineConfig;
869
871
  _attemptDryRunBackupGit?: boolean;
872
+ mode?: Mode;
870
873
  /** @deprecated use devCommand */
871
874
  command?: string;
872
875
  }
@@ -52,6 +52,7 @@ export interface UpdateDesignSystemInput {
52
52
  designSystemPackage?: string;
53
53
  designSystemVersion?: string;
54
54
  status?: "in-progress" | "completed" | "failed";
55
+ scope?: DesignSystemScope;
55
56
  }
56
57
  export interface DesignSystem {
57
58
  id: string;