@builder.io/ai-utils 0.12.7 → 0.12.8

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.12.7",
3
+ "version": "0.12.8",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/codegen.d.ts CHANGED
@@ -1066,6 +1066,14 @@ export interface FusionConfig {
1066
1066
  mode?: Mode;
1067
1067
  autoDetectDevServer?: boolean;
1068
1068
  autoDetectDevServerPatterns?: string[];
1069
+ /**
1070
+ * If true, automatically assign a random free port (>=40000) to the PORT environment variable
1071
+ * when devCommand runs. The system will then detect which port the dev server is actually
1072
+ * listening on and use that instead of the configured serverUrl.
1073
+ *
1074
+ * @default false
1075
+ */
1076
+ autoSuggestPort?: boolean;
1069
1077
  runInPty?: boolean;
1070
1078
  httpsServerFiles?: {
1071
1079
  key?: string;
package/src/projects.d.ts CHANGED
@@ -255,14 +255,14 @@ export interface SetupScriptDependency {
255
255
  name: string;
256
256
  script: string;
257
257
  }
258
- export type FusionExecutionEnvironment = "containerized" | "container-less" | "cloud";
258
+ export type FusionExecutionEnvironment = "containerized" | "container-less" | "cloud" | "cloud-v2";
259
259
  export interface PartialBranchData {
260
260
  name?: string;
261
261
  createdBy: string;
262
262
  friendlyName: string;
263
263
  isDefault: boolean;
264
264
  isPublic: boolean;
265
- lockedFusionEnvironment: FusionExecutionEnvironment;
265
+ lockedFusionEnvironment?: FusionExecutionEnvironment;
266
266
  metadata?: Record<string, unknown>;
267
267
  backup?: BranchBackup;
268
268
  gitAiBranch?: string | null;