@chen-rmag/core-infra 1.0.2 → 1.0.3

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.
@@ -1,5 +1,5 @@
1
- import { MCPClient, MCPTool } from '@ai-test/core-infra/src/mcp/mcp-client';
2
- import { GroupedMCPManager } from '@ai-test/core-infra/src/mcp';
1
+ import { MCPClient, MCPTool } from './mcp-client';
2
+ import { GroupedMCPManager } from './index';
3
3
  export interface ToolGroupInfo {
4
4
  groupId: string;
5
5
  description: string;
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.MCPManager = void 0;
4
- const file_mcp_manager_1 = require("@ai-test/core-infra/src/mcp/file-mcp-manager");
5
- const playwright_mcp_manager_1 = require("@ai-test/core-infra/src/mcp/playwright-mcp-manager");
4
+ const file_mcp_manager_1 = require("./file-mcp-manager");
5
+ const playwright_mcp_manager_1 = require("./playwright-mcp-manager");
6
6
  class MCPManager {
7
7
  constructor() {
8
8
  this.managers = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chen-rmag/core-infra",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Core infrastructure for AI testing framework",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,7 +1,7 @@
1
- import { MCPClient, MCPTool } from '@ai-test/core-infra/src/mcp/mcp-client';
2
- import { FileMCPManager } from '@ai-test/core-infra/src/mcp/file-mcp-manager';
3
- import { PlaywrightMCPManager } from '@ai-test/core-infra/src/mcp/playwright-mcp-manager';
4
- import { GroupedMCPManager } from '@ai-test/core-infra/src/mcp';
1
+ import { MCPClient, MCPTool } from './mcp-client';
2
+ import { FileMCPManager } from './file-mcp-manager';
3
+ import { PlaywrightMCPManager } from './playwright-mcp-manager';
4
+ import { GroupedMCPManager } from './index';
5
5
 
6
6
  export interface ToolGroupInfo {
7
7
  groupId: string;