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