@builder.io/ai-utils 0.11.7 → 0.11.9

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 +13 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/ai-utils",
3
- "version": "0.11.7",
3
+ "version": "0.11.9",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/codegen.d.ts CHANGED
@@ -676,6 +676,7 @@ export interface GenerateUserMessage {
676
676
  autoPush?: "force-push" | "merge-push" | "ff-push" | "none";
677
677
  enabledMCPs?: string[];
678
678
  sessionMode?: SessionMode;
679
+ queue?: boolean;
679
680
  /** @deprecated */
680
681
  repair?: boolean;
681
682
  }
@@ -959,6 +960,7 @@ export interface FusionConfig {
959
960
  sessionId?: string;
960
961
  featureBranch?: string;
961
962
  aiBranch?: string;
963
+ refreshPreview?: boolean;
962
964
  workingDirectory?: string;
963
965
  bashWorkingDirectory?: string;
964
966
  workspace?: WorkspaceConfiguration;
@@ -978,6 +980,7 @@ export interface FusionConfig {
978
980
  repoIndexingConfig?: RepoIndexingConfig;
979
981
  machine?: RemoteMachineConfig;
980
982
  _attemptDryRunBackupGit?: boolean;
983
+ _useNI?: boolean;
981
984
  mode?: Mode;
982
985
  autoDetectDevServer?: boolean;
983
986
  autoDetectDevServerPatterns?: string[];
@@ -1140,12 +1143,22 @@ export interface SetupCommandResult {
1140
1143
  code: number | null;
1141
1144
  output: string;
1142
1145
  }
1146
+ export type DevCommandResult = DevCommandResultSuccess | DevCommandResultFailure;
1147
+ export interface DevCommandResultSuccess {
1148
+ status: "success";
1149
+ }
1150
+ export interface DevCommandResultFailure {
1151
+ status: "failure";
1152
+ code: number | null;
1153
+ output: string;
1154
+ }
1143
1155
  export interface ConfigureDevOrchestratorUpdates {
1144
1156
  devCommand: boolean;
1145
1157
  setupCommand: boolean;
1146
1158
  proxyServer: boolean;
1147
1159
  env: boolean;
1148
1160
  setupResult: SetupCommandResult | undefined;
1161
+ devResult: DevCommandResult | undefined;
1149
1162
  }
1150
1163
  export interface ConfigureDevOrchestratorOpts {
1151
1164
  devCommand?: string | null;