@builder.io/dev-tools 1.21.6-dev.202601211930.10e037ddf → 1.21.7-dev.202601220544.7c9f878c1
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/cli/index.cjs +67 -21
- package/cli/index.cjs.map +3 -3
- package/cli/pkg-entry.cjs +149 -0
- package/core/index.cjs +1 -1
- package/core/index.mjs +1 -1
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +1 -1
- package/server/index.cjs +2 -2
- package/server/index.mjs +2 -2
- package/types/cli/mcp-local.d.ts +2 -2
- package/types/common/ast/component-input-types.d.ts +1 -1
- package/types/common/utils.d.ts +1 -1
- package/types/tsconfig.tsbuildinfo +1 -1
package/types/cli/mcp-local.d.ts
CHANGED
|
@@ -73,7 +73,7 @@ export interface LocalMCPClientManager {
|
|
|
73
73
|
/**
|
|
74
74
|
* Create a local MCP client manager from server definitions
|
|
75
75
|
*/
|
|
76
|
-
export declare function createLocalMCPClientManager(servers: MCPServerDefinition[], sys: DevToolsSys, workingDirectory: string, signal?: AbortSignal): Promise<LocalMCPClientManager>;
|
|
76
|
+
export declare function createLocalMCPClientManager(servers: MCPServerDefinition[], sys: DevToolsSys, workingDirectory: string, debug: boolean, signal?: AbortSignal): Promise<LocalMCPClientManager>;
|
|
77
77
|
/**
|
|
78
78
|
* Apply environment variable substitution to MCP server configuration
|
|
79
79
|
* This is separated from loadMCPConfig to allow easy unit testing
|
|
@@ -90,4 +90,4 @@ export declare function applyEnvSubstitutionRemote(serverConfig: Omit<MCPServerR
|
|
|
90
90
|
* If a server with the same name exists in both, fusionConfig takes precedence
|
|
91
91
|
* Supports both stdio (command-based) and remote (http/sse) server definitions
|
|
92
92
|
*/
|
|
93
|
-
export declare function loadMCPConfig(sys: DevToolsSys, workingDirectory: string, serverConfigs: MCPServerConfig, autoImportLocalMCPs: boolean): Promise<MCPServerDefinition[]>;
|
|
93
|
+
export declare function loadMCPConfig(sys: DevToolsSys, workingDirectory: string, serverConfigs: MCPServerConfig, autoImportLocalMCPs: boolean, debug?: boolean): Promise<MCPServerDefinition[]>;
|
|
@@ -17,7 +17,7 @@ export declare const NUMBER_TYPES: string[];
|
|
|
17
17
|
export declare const BOOLEAN_TYPES: string[];
|
|
18
18
|
export declare const ARRAY_TYPES: string[];
|
|
19
19
|
export declare const OBJECT_TYPES: string[];
|
|
20
|
-
export declare function getPrimitiveType(t: string): "
|
|
20
|
+
export declare function getPrimitiveType(t: string): "number" | "string" | "boolean" | "object" | "array";
|
|
21
21
|
export declare function removeQuotes(text: string): string;
|
|
22
22
|
export declare const resolveType: (sys: DevToolsSys, checker: ts.TypeChecker, type: ts.Type) => string[] | undefined;
|
|
23
23
|
export declare const typeToString: (sys: DevToolsSys, checker: ts.TypeChecker, type: ts.Type) => string;
|
package/types/common/utils.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export declare function clone<T>(obj: T): T;
|
|
|
19
19
|
export declare function shouldSkipFolder(sys: DevToolsSys, skipFolders: Set<string>, fileName: string): boolean;
|
|
20
20
|
export declare function getPackageManager(): string;
|
|
21
21
|
export declare function isWindows(): boolean;
|
|
22
|
-
export declare function builderNpxPackage(): "
|
|
22
|
+
export declare function builderNpxPackage(): "@builder.io/agent" | "\"@builder.io/dev-tools\"" | "builder.io";
|
|
23
23
|
/**
|
|
24
24
|
* Sanitizes a component name for use in filesystem paths by replacing invalid characters with underscores
|
|
25
25
|
* @param name The component name to sanitize
|