@builder.io/ai-utils 0.11.13 → 0.11.14
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 +11 -0
package/package.json
CHANGED
package/src/codegen.d.ts
CHANGED
|
@@ -1007,6 +1007,17 @@ export interface FusionConfig {
|
|
|
1007
1007
|
localHttpsDomain?: string;
|
|
1008
1008
|
https?: boolean;
|
|
1009
1009
|
nativeApp?: boolean;
|
|
1010
|
+
/**
|
|
1011
|
+
* Local MCP server configurations.
|
|
1012
|
+
* Servers defined here will be merged with servers from mcp.json.
|
|
1013
|
+
* Supports environment variable substitution using ${VAR_NAME} syntax.
|
|
1014
|
+
*/
|
|
1015
|
+
mcpServers?: Record<string, {
|
|
1016
|
+
command: string;
|
|
1017
|
+
args?: string[];
|
|
1018
|
+
env?: Record<string, string>;
|
|
1019
|
+
envFile?: string;
|
|
1020
|
+
}>;
|
|
1010
1021
|
/** @deprecated use devCommand */
|
|
1011
1022
|
command?: string;
|
|
1012
1023
|
}
|