feishu-mcp 0.0.9-alpha.1 → 0.0.9-alpha.2

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,4 +1,4 @@
1
- import { Logger } from '../utils/logger';
1
+ import { Logger } from '../utils/logger.js';
2
2
  /**
3
3
  * SSE连接管理器 - 负责管理所有的SSE长连接和心跳机制
4
4
  */
package/dist/server.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import express from 'express';
2
2
  import { SSEServerTransport } from '@modelcontextprotocol/sdk/server/sse.js';
3
3
  import { Logger } from './utils/logger.js';
4
- import { SSEConnectionManager } from './manager/sseConnectionManager';
5
- import { FeishuMcp } from './mcp/feishuMcp';
4
+ import { SSEConnectionManager } from './manager/sseConnectionManager.js';
5
+ import { FeishuMcp } from './mcp/feishuMcp.js';
6
6
  export class FeishuMcpServer {
7
7
  constructor() {
8
8
  Object.defineProperty(this, "connectionManager", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "feishu-mcp",
3
- "version": "0.0.9-alpha.1",
3
+ "version": "0.0.9-alpha.2",
4
4
  "description": "Model Context Protocol server for Feishu integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",