@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.
- package/package.json +1 -1
- package/src/codegen.d.ts +2 -0
package/package.json
CHANGED
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
|
}
|