(channelId: string, text: string)
| 181 | console.log("[FeishuAdapter] Stopped"); |
| 182 | } |
| 183 | |
| 184 | async sendMessage(channelId: string, text: string): Promise<void> { |
| 185 | if (!this.channel) { |
| 186 | throw new Error("[Feishu] Channel not initialized"); |
| 187 | } |
| 188 | |
| 189 | const chatId = parseFeishuChannelId(channelId); |
| 190 | await this.sendLongMessage(chatId, text); |
| 191 | } |
| 192 | |
| 193 | async sendFile( |
nothing calls this directly
no test coverage detected