@builder.io/ai-utils 0.11.13 → 0.11.15

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 +16 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/ai-utils",
3
- "version": "0.11.13",
3
+ "version": "0.11.15",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/codegen.d.ts CHANGED
@@ -955,6 +955,11 @@ export interface FusionConfig {
955
955
  devCommand?: string;
956
956
  checkCommand?: string;
957
957
  setupCommand?: string;
958
+ fusionServerPort?: number;
959
+ lockFile?: {
960
+ filePath: string;
961
+ conflictBehavior: "replace" | "exit" | "kill";
962
+ };
958
963
  setupDependencies?: SetupDependency[];
959
964
  projectId?: string;
960
965
  branchName?: string;
@@ -1007,6 +1012,17 @@ export interface FusionConfig {
1007
1012
  localHttpsDomain?: string;
1008
1013
  https?: boolean;
1009
1014
  nativeApp?: boolean;
1015
+ /**
1016
+ * Local MCP server configurations.
1017
+ * Servers defined here will be merged with servers from mcp.json.
1018
+ * Supports environment variable substitution using ${VAR_NAME} syntax.
1019
+ */
1020
+ mcpServers?: Record<string, {
1021
+ command: string;
1022
+ args?: string[];
1023
+ env?: Record<string, string>;
1024
+ envFile?: string;
1025
+ }>;
1010
1026
  /** @deprecated use devCommand */
1011
1027
  command?: string;
1012
1028
  }