@wix/evalforge-evaluator 0.70.0 → 0.71.0

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.
@@ -17,24 +17,6 @@ interface McpProbeResult {
17
17
  * Results are returned so the caller can emit them as trace events.
18
18
  */
19
19
  export declare function probeMcpServers(mcps: MCPEntity[], probeMs?: number): Promise<McpProbeResult[]>;
20
- interface McpPreInstallResult {
21
- package: string;
22
- success: boolean;
23
- skipped: boolean;
24
- output: string;
25
- durationMs: number;
26
- }
27
- /**
28
- * Pre-install npm packages used by stdio MCP servers that rely on `npx`.
29
- *
30
- * When an MCP config specifies `npx -y <pkg>`, the first invocation downloads
31
- * the package on the fly. In containerised environments the download can exceed
32
- * the SDK's MCP-init timeout, causing the server to fail.
33
- *
34
- * This function checks whether each package is already globally installed and
35
- * only runs `npm install -g` for packages that are missing.
36
- */
37
- export declare function preInstallMcpPackages(mcps: MCPEntity[], timeoutMs?: number): Promise<McpPreInstallResult[]>;
38
20
  interface NpmConfigDiagnostic {
39
21
  cwd: string;
40
22
  processCwd: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/evalforge-evaluator",
3
- "version": "0.70.0",
3
+ "version": "0.71.0",
4
4
  "description": "EvalForge Evaluator",
5
5
  "bin": "./build/index.js",
6
6
  "files": [
@@ -60,5 +60,5 @@
60
60
  "artifactId": "evalforge-evaluator"
61
61
  }
62
62
  },
63
- "falconPackageHash": "dfaf4b4dbac4e496455cec1e9ee9d8e48d29981a533f8fcb5c91f010"
63
+ "falconPackageHash": "6b6cec397685660da339630768b2f362465c859c2f25a2ac1921785e"
64
64
  }