@builder.io/ai-utils 0.5.37 → 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/codegen.d.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/ai-utils",
3
- "version": "0.5.37",
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
@@ -844,6 +844,7 @@ export interface PrivacyMode {
844
844
  */
845
845
  mcpServers?: boolean;
846
846
  }
847
+ export type Mode = "init-and-launch" | "backup";
847
848
  export interface FusionConfig {
848
849
  devCommand?: string;
849
850
  checkCommand?: string;
@@ -868,6 +869,7 @@ export interface FusionConfig {
868
869
  repoIndexingConfig?: RepoIndexingConfig;
869
870
  machine?: RemoteMachineConfig;
870
871
  _attemptDryRunBackupGit?: boolean;
872
+ mode?: Mode;
871
873
  /** @deprecated use devCommand */
872
874
  command?: string;
873
875
  }