UNPKG

dtamind-components

Version:

Apps integration for Dtamind. Contain Nodes and Credentials.

1,265 lines 55.9 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createTeamsTools = createTeamsTools; const zod_1 = require("zod"); const core_1 = require("../OpenAPIToolkit/core"); const agents_1 = require("../../../src/agents"); const BASE_URL = 'https://graph.microsoft.com/v1.0'; // Helper function to make Graph API requests async function makeGraphRequest(endpoint, method = 'GET', body, accessToken) { const headers = { Authorization: `Bearer ${accessToken}`, 'Content-Type': 'application/json' }; const config = { method, headers }; if (body && (method === 'POST' || method === 'PATCH')) { config.body = JSON.stringify(body); } try { const response = await fetch(`${BASE_URL}${endpoint}`, config); if (!response.ok) { const errorText = await response.text(); throw new Error(`Microsoft Graph API error: ${response.status} ${response.statusText} - ${errorText}`); } // Handle empty responses for DELETE operations if (method === 'DELETE' || response.status === 204) { return { success: true, message: 'Operation completed successfully' }; } return await response.json(); } catch (error) { throw new Error(`Microsoft Graph request failed: ${error instanceof Error ? error.message : 'Unknown error'}`); } } // Base Teams Tool class class BaseTeamsTool extends core_1.DynamicStructuredTool { constructor(args) { super(args); this.accessToken = ''; this.accessToken = args.accessToken ?? ''; this.defaultParams = args.defaultParams || {}; } async makeTeamsRequest(endpoint, method = 'GET', body) { return await makeGraphRequest(endpoint, method, body, this.accessToken); } formatResponse(data, params) { return JSON.stringify(data) + agents_1.TOOL_ARGS_PREFIX + JSON.stringify(params); } } // CHANNEL TOOLS class ListChannelsTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'list_channels', description: 'List all channels in a team', schema: zod_1.z.object({ teamId: zod_1.z.string().describe('ID of the team to list channels from'), maxResults: zod_1.z.number().optional().default(50).describe('Maximum number of channels to return') }), baseUrl: BASE_URL, method: 'GET', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { teamId, maxResults = 50 } = params; if (!teamId) { throw new Error('Team ID is required to list channels'); } try { const endpoint = `/teams/${teamId}/channels`; const result = await this.makeTeamsRequest(endpoint); // Filter results to maxResults on client side since $top is not supported const channels = result.value || []; const limitedChannels = channels.slice(0, maxResults); const responseData = { success: true, channels: limitedChannels, count: limitedChannels.length, total: channels.length }; return this.formatResponse(responseData, params); } catch (error) { return `Error listing channels: ${error}`; } } } class GetChannelTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'get_channel', description: 'Get details of a specific channel', schema: zod_1.z.object({ teamId: zod_1.z.string().describe('ID of the team that contains the channel'), channelId: zod_1.z.string().describe('ID of the channel to retrieve') }), baseUrl: BASE_URL, method: 'GET', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { teamId, channelId } = params; if (!teamId || !channelId) { throw new Error('Both Team ID and Channel ID are required'); } try { const endpoint = `/teams/${teamId}/channels/${channelId}`; const result = await this.makeTeamsRequest(endpoint); return this.formatResponse({ success: true, channel: result }, params); } catch (error) { return this.formatResponse(`Error getting channel: ${error}`, params); } } } class CreateChannelTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'create_channel', description: 'Create a new channel in a team', schema: zod_1.z.object({ teamId: zod_1.z.string().describe('ID of the team to create the channel in'), displayName: zod_1.z.string().describe('Display name of the channel'), description: zod_1.z.string().optional().describe('Description of the channel'), membershipType: zod_1.z .enum(['standard', 'private', 'shared']) .optional() .default('standard') .describe('Type of channel membership') }), baseUrl: BASE_URL, method: 'POST', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { teamId, displayName, description, membershipType = 'standard' } = params; if (!teamId || !displayName) { throw new Error('Team ID and Display Name are required to create a channel'); } try { const body = { displayName, membershipType, ...(description && { description }) }; const endpoint = `/teams/${teamId}/channels`; const result = await this.makeTeamsRequest(endpoint, 'POST', body); return this.formatResponse({ success: true, channel: result, message: `Channel "${displayName}" created successfully` }, params); } catch (error) { return this.formatResponse(`Error creating channel: ${error}`, params); } } } class UpdateChannelTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'update_channel', description: 'Update an existing channel', schema: zod_1.z.object({ teamId: zod_1.z.string().describe('ID of the team that contains the channel'), channelId: zod_1.z.string().describe('ID of the channel to update'), displayName: zod_1.z.string().optional().describe('New display name of the channel'), description: zod_1.z.string().optional().describe('New description of the channel') }), baseUrl: BASE_URL, method: 'PATCH', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { teamId, channelId, displayName, description } = params; if (!teamId || !channelId) { throw new Error('Both Team ID and Channel ID are required'); } try { const body = {}; if (displayName) body.displayName = displayName; if (description) body.description = description; if (Object.keys(body).length === 0) { throw new Error('At least one field to update must be provided'); } const endpoint = `/teams/${teamId}/channels/${channelId}`; await this.makeTeamsRequest(endpoint, 'PATCH', body); return this.formatResponse({ success: true, message: 'Channel updated successfully' }, params); } catch (error) { return this.formatResponse(`Error updating channel: ${error}`, params); } } } class DeleteChannelTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'delete_channel', description: 'Delete a channel from a team', schema: zod_1.z.object({ teamId: zod_1.z.string().describe('ID of the team that contains the channel'), channelId: zod_1.z.string().describe('ID of the channel to delete') }), baseUrl: BASE_URL, method: 'DELETE', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { teamId, channelId } = params; if (!teamId || !channelId) { throw new Error('Both Team ID and Channel ID are required'); } try { const endpoint = `/teams/${teamId}/channels/${channelId}`; await this.makeTeamsRequest(endpoint, 'DELETE'); return this.formatResponse({ success: true, message: 'Channel deleted successfully' }, params); } catch (error) { return this.formatResponse(`Error deleting channel: ${error}`, params); } } } class ArchiveChannelTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'archive_channel', description: 'Archive a channel in a team', schema: zod_1.z.object({ teamId: zod_1.z.string().describe('ID of the team that contains the channel'), channelId: zod_1.z.string().describe('ID of the channel to archive') }), baseUrl: BASE_URL, method: 'POST', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { teamId, channelId } = params; if (!teamId || !channelId) { throw new Error('Both Team ID and Channel ID are required'); } try { const endpoint = `/teams/${teamId}/channels/${channelId}/archive`; await this.makeTeamsRequest(endpoint, 'POST', {}); return this.formatResponse({ success: true, message: 'Channel archived successfully' }, params); } catch (error) { return this.formatResponse(`Error archiving channel: ${error}`, params); } } } class UnarchiveChannelTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'unarchive_channel', description: 'Unarchive a channel in a team', schema: zod_1.z.object({ teamId: zod_1.z.string().describe('ID of the team that contains the channel'), channelId: zod_1.z.string().describe('ID of the channel to unarchive') }), baseUrl: BASE_URL, method: 'POST', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { teamId, channelId } = params; if (!teamId || !channelId) { throw new Error('Both Team ID and Channel ID are required'); } try { const endpoint = `/teams/${teamId}/channels/${channelId}/unarchive`; await this.makeTeamsRequest(endpoint, 'POST', {}); return this.formatResponse({ success: true, message: 'Channel unarchived successfully' }, params); } catch (error) { return this.formatResponse(`Error unarchiving channel: ${error}`, params); } } } class ListChannelMembersTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'list_channel_members', description: 'List members of a channel', schema: zod_1.z.object({ teamId: zod_1.z.string().describe('ID of the team that contains the channel'), channelId: zod_1.z.string().describe('ID of the channel') }), baseUrl: BASE_URL, method: 'GET', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { teamId, channelId } = params; if (!teamId || !channelId) { throw new Error('Both Team ID and Channel ID are required'); } try { const endpoint = `/teams/${teamId}/channels/${channelId}/members`; const result = await this.makeTeamsRequest(endpoint); return this.formatResponse({ success: true, members: result.value || [], count: result.value?.length || 0 }, params); } catch (error) { return this.formatResponse(`Error listing channel members: ${error}`, params); } } } class AddChannelMemberTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'add_channel_member', description: 'Add a member to a channel', schema: zod_1.z.object({ teamId: zod_1.z.string().describe('ID of the team that contains the channel'), channelId: zod_1.z.string().describe('ID of the channel'), userId: zod_1.z.string().describe('ID of the user to add') }), baseUrl: BASE_URL, method: 'POST', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { teamId, channelId, userId } = params; if (!teamId || !channelId || !userId) { throw new Error('Team ID, Channel ID, and User ID are all required'); } try { const body = { '@odata.type': '#microsoft.graph.aadUserConversationMember', 'user@odata.bind': `https://graph.microsoft.com/v1.0/users('${userId}')` }; const endpoint = `/teams/${teamId}/channels/${channelId}/members`; await this.makeTeamsRequest(endpoint, 'POST', body); return this.formatResponse({ success: true, message: 'Member added to channel successfully' }, params); } catch (error) { return this.formatResponse(`Error adding channel member: ${error}`, params); } } } class RemoveChannelMemberTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'remove_channel_member', description: 'Remove a member from a channel', schema: zod_1.z.object({ teamId: zod_1.z.string().describe('ID of the team that contains the channel'), channelId: zod_1.z.string().describe('ID of the channel'), userId: zod_1.z.string().describe('ID of the user to remove') }), baseUrl: BASE_URL, method: 'DELETE', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { teamId, channelId, userId } = params; if (!teamId || !channelId || !userId) { throw new Error('Team ID, Channel ID, and User ID are all required'); } try { // First get the membership ID const membersEndpoint = `/teams/${teamId}/channels/${channelId}/members`; const membersResult = await this.makeTeamsRequest(membersEndpoint); const member = membersResult.value?.find((m) => m.userId === userId); if (!member) { throw new Error('User is not a member of this channel'); } const endpoint = `/teams/${teamId}/channels/${channelId}/members/${member.id}`; await this.makeTeamsRequest(endpoint, 'DELETE'); return this.formatResponse({ success: true, message: 'Member removed from channel successfully' }, params); } catch (error) { return this.formatResponse(`Error removing channel member: ${error}`, params); } } } // CHAT TOOLS class ListChatsTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'list_chats', description: 'List all chats for the current user', schema: zod_1.z.object({ maxResults: zod_1.z.number().optional().default(50).describe('Maximum number of chats to return') }), baseUrl: BASE_URL, method: 'GET', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { maxResults = 50 } = params; try { const endpoint = `/me/chats?$top=${maxResults}`; const result = await this.makeTeamsRequest(endpoint); return this.formatResponse({ success: true, chats: result.value || [], count: result.value?.length || 0 }, params); } catch (error) { return this.formatResponse(`Error listing chats: ${error}`, params); } } } class GetChatTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'get_chat', description: 'Get details of a specific chat', schema: zod_1.z.object({ chatId: zod_1.z.string().describe('ID of the chat to retrieve') }), baseUrl: BASE_URL, method: 'GET', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { chatId } = params; if (!chatId) { throw new Error('Chat ID is required'); } try { const endpoint = `/chats/${chatId}`; const result = await this.makeTeamsRequest(endpoint); return this.formatResponse({ success: true, chat: result }, params); } catch (error) { return this.formatResponse(`Error getting chat: ${error}`, params); } } } class CreateChatTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'create_chat', description: 'Create a new chat', schema: zod_1.z.object({ chatType: zod_1.z.enum(['oneOnOne', 'group']).optional().default('group').describe('Type of chat to create'), topic: zod_1.z.string().optional().describe('Topic/subject of the chat (for group chats)'), members: zod_1.z.string().describe('Comma-separated list of user IDs to add to the chat') }), baseUrl: BASE_URL, method: 'POST', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { chatType = 'group', topic, members } = params; if (!members) { throw new Error('Members list is required to create a chat'); } try { const memberIds = members.split(',').map((id) => id.trim()); const chatMembers = memberIds.map((userId) => ({ '@odata.type': '#microsoft.graph.aadUserConversationMember', 'user@odata.bind': `https://graph.microsoft.com/v1.0/users('${userId}')` })); const body = { chatType, members: chatMembers }; if (topic && chatType === 'group') { body.topic = topic; } const endpoint = '/chats'; const result = await this.makeTeamsRequest(endpoint, 'POST', body); return this.formatResponse({ success: true, chat: result, message: 'Chat created successfully' }, params); } catch (error) { return this.formatResponse(`Error creating chat: ${error}`, params); } } } class UpdateChatTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'update_chat', description: 'Update an existing chat', schema: zod_1.z.object({ chatId: zod_1.z.string().describe('ID of the chat to update'), topic: zod_1.z.string().describe('New topic/subject of the chat') }), baseUrl: BASE_URL, method: 'PATCH', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { chatId, topic } = params; if (!chatId) { throw new Error('Chat ID is required'); } if (!topic) { throw new Error('Topic is required to update a chat'); } try { const body = { topic }; const endpoint = `/chats/${chatId}`; await this.makeTeamsRequest(endpoint, 'PATCH', body); return this.formatResponse({ success: true, message: 'Chat updated successfully' }, params); } catch (error) { return this.formatResponse(`Error updating chat: ${error}`, params); } } } class DeleteChatTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'delete_chat', description: 'Delete a chat', schema: zod_1.z.object({ chatId: zod_1.z.string().describe('ID of the chat to delete') }), baseUrl: BASE_URL, method: 'DELETE', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { chatId } = params; if (!chatId) { throw new Error('Chat ID is required'); } try { const endpoint = `/chats/${chatId}`; await this.makeTeamsRequest(endpoint, 'DELETE'); return this.formatResponse({ success: true, message: 'Chat deleted successfully' }, params); } catch (error) { return this.formatResponse(`Error deleting chat: ${error}`, params); } } } class ListChatMembersTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'list_chat_members', description: 'List members of a chat', schema: zod_1.z.object({ chatId: zod_1.z.string().describe('ID of the chat') }), baseUrl: BASE_URL, method: 'GET', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { chatId } = params; if (!chatId) { throw new Error('Chat ID is required'); } try { const endpoint = `/chats/${chatId}/members`; const result = await this.makeTeamsRequest(endpoint); return this.formatResponse({ success: true, members: result.value || [], count: result.value?.length || 0 }, params); } catch (error) { return this.formatResponse(`Error listing chat members: ${error}`, params); } } } class AddChatMemberTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'add_chat_member', description: 'Add a member to a chat', schema: zod_1.z.object({ chatId: zod_1.z.string().describe('ID of the chat'), userId: zod_1.z.string().describe('ID of the user to add') }), baseUrl: BASE_URL, method: 'POST', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { chatId, userId } = params; if (!chatId || !userId) { throw new Error('Both Chat ID and User ID are required'); } try { const body = { '@odata.type': '#microsoft.graph.aadUserConversationMember', 'user@odata.bind': `https://graph.microsoft.com/v1.0/users('${userId}')` }; const endpoint = `/chats/${chatId}/members`; await this.makeTeamsRequest(endpoint, 'POST', body); return this.formatResponse({ success: true, message: 'Member added to chat successfully' }, params); } catch (error) { return this.formatResponse(`Error adding chat member: ${error}`, params); } } } class RemoveChatMemberTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'remove_chat_member', description: 'Remove a member from a chat', schema: zod_1.z.object({ chatId: zod_1.z.string().describe('ID of the chat'), userId: zod_1.z.string().describe('ID of the user to remove') }), baseUrl: BASE_URL, method: 'DELETE', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { chatId, userId } = params; if (!chatId || !userId) { throw new Error('Both Chat ID and User ID are required'); } try { // First get the membership ID const membersEndpoint = `/chats/${chatId}/members`; const membersResult = await this.makeTeamsRequest(membersEndpoint); const member = membersResult.value?.find((m) => m.userId === userId); if (!member) { throw new Error('User is not a member of this chat'); } const endpoint = `/chats/${chatId}/members/${member.id}`; await this.makeTeamsRequest(endpoint, 'DELETE'); return this.formatResponse({ success: true, message: 'Member removed from chat successfully' }, params); } catch (error) { return this.formatResponse(`Error removing chat member: ${error}`, params); } } } class PinMessageTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'pin_message', description: 'Pin a message in a chat', schema: zod_1.z.object({ chatId: zod_1.z.string().describe('ID of the chat'), messageId: zod_1.z.string().describe('ID of the message to pin') }), baseUrl: BASE_URL, method: 'POST', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { chatId, messageId } = params; if (!chatId || !messageId) { throw new Error('Both Chat ID and Message ID are required'); } try { const body = { message: { '@odata.bind': `https://graph.microsoft.com/v1.0/chats('${chatId}')/messages('${messageId}')` } }; const endpoint = `/chats/${chatId}/pinnedMessages`; await this.makeTeamsRequest(endpoint, 'POST', body); return this.formatResponse({ success: true, message: 'Message pinned successfully' }, params); } catch (error) { return this.formatResponse(`Error pinning message: ${error}`, params); } } } class UnpinMessageTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'unpin_message', description: 'Unpin a message from a chat', schema: zod_1.z.object({ chatId: zod_1.z.string().describe('ID of the chat'), messageId: zod_1.z.string().describe('ID of the message to unpin') }), baseUrl: BASE_URL, method: 'DELETE', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { chatId, messageId } = params; if (!chatId || !messageId) { throw new Error('Both Chat ID and Message ID are required'); } try { // First get the pinned messages to find the pinned message ID const pinnedEndpoint = `/chats/${chatId}/pinnedMessages`; const pinnedResult = await this.makeTeamsRequest(pinnedEndpoint); const pinnedMessage = pinnedResult.value?.find((pm) => pm.message?.id === messageId); if (!pinnedMessage) { throw new Error('Message is not pinned in this chat'); } const endpoint = `/chats/${chatId}/pinnedMessages/${pinnedMessage.id}`; await this.makeTeamsRequest(endpoint, 'DELETE'); return this.formatResponse({ success: true, message: 'Message unpinned successfully' }, params); } catch (error) { return this.formatResponse(`Error unpinning message: ${error}`, params); } } } // CHAT MESSAGE TOOLS class ListMessagesTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'list_messages', description: 'List messages in a chat or channel', schema: zod_1.z.object({ chatChannelId: zod_1.z.string().describe('ID of the chat or channel to list messages from'), teamId: zod_1.z.string().optional().describe('ID of the team (required for channel messages)'), maxResults: zod_1.z.number().optional().default(50).describe('Maximum number of messages to return') }), baseUrl: BASE_URL, method: 'GET', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { chatChannelId, teamId, maxResults = 50 } = params; if (!chatChannelId) { throw new Error('Chat or Channel ID is required'); } try { let endpoint; if (teamId) { // Channel messages endpoint = `/teams/${teamId}/channels/${chatChannelId}/messages?$top=${maxResults}`; } else { // Chat messages endpoint = `/chats/${chatChannelId}/messages?$top=${maxResults}`; } const result = await this.makeTeamsRequest(endpoint); return this.formatResponse({ success: true, messages: result.value || [], count: result.value?.length || 0, context: teamId ? 'channel' : 'chat' }, params); } catch (error) { return this.formatResponse(`Error listing messages: ${error}`, params); } } } class GetMessageTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'get_message', description: 'Get details of a specific message', schema: zod_1.z.object({ chatChannelId: zod_1.z.string().describe('ID of the chat or channel'), teamId: zod_1.z.string().optional().describe('ID of the team (required for channel messages)'), messageId: zod_1.z.string().describe('ID of the message to retrieve') }), baseUrl: BASE_URL, method: 'GET', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { chatChannelId, teamId, messageId } = params; if (!chatChannelId || !messageId) { throw new Error('Chat/Channel ID and Message ID are required'); } try { let endpoint; if (teamId) { // Channel message endpoint = `/teams/${teamId}/channels/${chatChannelId}/messages/${messageId}`; } else { // Chat message endpoint = `/chats/${chatChannelId}/messages/${messageId}`; } const result = await this.makeTeamsRequest(endpoint); return this.formatResponse({ success: true, message: result, context: teamId ? 'channel' : 'chat' }, params); } catch (error) { return this.formatResponse(`Error getting message: ${error}`, params); } } } class SendMessageTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'send_message', description: 'Send a message to a chat or channel', schema: zod_1.z.object({ chatChannelId: zod_1.z.string().describe('ID of the chat or channel to send message to'), teamId: zod_1.z.string().optional().describe('ID of the team (required for channel messages)'), messageBody: zod_1.z.string().describe('Content of the message'), contentType: zod_1.z.enum(['text', 'html']).optional().default('text').describe('Content type of the message') }), baseUrl: BASE_URL, method: 'POST', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { chatChannelId, teamId, messageBody, contentType = 'text' } = params; if (!chatChannelId || !messageBody) { throw new Error('Chat/Channel ID and Message Body are required'); } try { const body = { body: { contentType, content: messageBody } }; let endpoint; if (teamId) { // Channel message endpoint = `/teams/${teamId}/channels/${chatChannelId}/messages`; } else { // Chat message endpoint = `/chats/${chatChannelId}/messages`; } const result = await this.makeTeamsRequest(endpoint, 'POST', body); return this.formatResponse({ success: true, message: result, context: teamId ? 'channel' : 'chat', messageText: 'Message sent successfully' }, params); } catch (error) { return this.formatResponse(`Error sending message: ${error}`, params); } } } class UpdateMessageTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'update_message', description: 'Update an existing message', schema: zod_1.z.object({ chatChannelId: zod_1.z.string().describe('ID of the chat or channel'), teamId: zod_1.z.string().optional().describe('ID of the team (required for channel messages)'), messageId: zod_1.z.string().describe('ID of the message to update') }), baseUrl: BASE_URL, method: 'PATCH', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { chatChannelId, teamId, messageId } = params; if (!chatChannelId || !messageId) { throw new Error('Chat/Channel ID and Message ID are required'); } try { // Note: Message update is primarily for policy violations in Teams const body = { policyViolation: null }; let endpoint; if (teamId) { // Channel message endpoint = `/teams/${teamId}/channels/${chatChannelId}/messages/${messageId}`; } else { // Chat message endpoint = `/chats/${chatChannelId}/messages/${messageId}`; } await this.makeTeamsRequest(endpoint, 'PATCH', body); return this.formatResponse({ success: true, message: 'Message updated successfully', context: teamId ? 'channel' : 'chat' }, params); } catch (error) { return this.formatResponse(`Error updating message: ${error}`, params); } } } class DeleteMessageTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'delete_message', description: 'Delete a message', schema: zod_1.z.object({ chatChannelId: zod_1.z.string().describe('ID of the chat or channel'), teamId: zod_1.z.string().optional().describe('ID of the team (required for channel messages)'), messageId: zod_1.z.string().describe('ID of the message to delete') }), baseUrl: BASE_URL, method: 'DELETE', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { chatChannelId, teamId, messageId } = params; if (!chatChannelId || !messageId) { throw new Error('Chat/Channel ID and Message ID are required'); } try { let endpoint; if (teamId) { // Channel message - use soft delete endpoint = `/teams/${teamId}/channels/${chatChannelId}/messages/${messageId}/softDelete`; } else { // Chat message - use soft delete endpoint = `/chats/${chatChannelId}/messages/${messageId}/softDelete`; } await this.makeTeamsRequest(endpoint, 'POST', {}); return this.formatResponse({ success: true, message: 'Message deleted successfully', context: teamId ? 'channel' : 'chat' }, params); } catch (error) { return this.formatResponse(`Error deleting message: ${error}`, params); } } } class ReplyToMessageTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'reply_to_message', description: 'Reply to a message in a chat or channel', schema: zod_1.z.object({ chatChannelId: zod_1.z.string().describe('ID of the chat or channel'), teamId: zod_1.z.string().optional().describe('ID of the team (required for channel messages)'), messageId: zod_1.z.string().describe('ID of the message to reply to'), replyBody: zod_1.z.string().describe('Content of the reply'), contentType: zod_1.z.enum(['text', 'html']).optional().default('text').describe('Content type of the reply') }), baseUrl: BASE_URL, method: 'POST', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { chatChannelId, teamId, messageId, replyBody, contentType = 'text' } = params; if (!chatChannelId || !messageId || !replyBody) { throw new Error('Chat/Channel ID, Message ID, and Reply Body are required'); } try { const body = { body: { contentType, content: replyBody } }; let endpoint; if (teamId) { // Channel message reply endpoint = `/teams/${teamId}/channels/${chatChannelId}/messages/${messageId}/replies`; } else { // For chat messages, replies are just new messages endpoint = `/chats/${chatChannelId}/messages`; } const result = await this.makeTeamsRequest(endpoint, 'POST', body); return this.formatResponse({ success: true, reply: result, message: 'Reply sent successfully', context: teamId ? 'channel' : 'chat' }, params); } catch (error) { return this.formatResponse(`Error replying to message: ${error}`, params); } } } class SetReactionTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'set_reaction', description: 'Set a reaction to a message', schema: zod_1.z.object({ chatChannelId: zod_1.z.string().describe('ID of the chat or channel'), teamId: zod_1.z.string().optional().describe('ID of the team (required for channel messages)'), messageId: zod_1.z.string().describe('ID of the message to react to'), reactionType: zod_1.z .enum(['like', 'heart', 'laugh', 'surprised', 'sad', 'angry']) .optional() .default('like') .describe('Type of reaction to set') }), baseUrl: BASE_URL, method: 'POST', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { chatChannelId, teamId, messageId, reactionType = 'like' } = params; if (!chatChannelId || !messageId) { throw new Error('Chat/Channel ID and Message ID are required'); } try { let endpoint; if (teamId) { // Channel message endpoint = `/teams/${teamId}/channels/${chatChannelId}/messages/${messageId}/setReaction`; } else { // Chat message endpoint = `/chats/${chatChannelId}/messages/${messageId}/setReaction`; } const body = { reactionType }; await this.makeTeamsRequest(endpoint, 'POST', body); return this.formatResponse({ success: true, message: `Reaction "${reactionType}" set successfully`, context: teamId ? 'channel' : 'chat' }, params); } catch (error) { return this.formatResponse(`Error setting reaction: ${error}`, params); } } } class UnsetReactionTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'unset_reaction', description: 'Remove a reaction from a message', schema: zod_1.z.object({ chatChannelId: zod_1.z.string().describe('ID of the chat or channel'), teamId: zod_1.z.string().optional().describe('ID of the team (required for channel messages)'), messageId: zod_1.z.string().describe('ID of the message to remove reaction from'), reactionType: zod_1.z .enum(['like', 'heart', 'laugh', 'surprised', 'sad', 'angry']) .optional() .default('like') .describe('Type of reaction to remove') }), baseUrl: BASE_URL, method: 'POST', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { chatChannelId, teamId, messageId, reactionType = 'like' } = params; if (!chatChannelId || !messageId) { throw new Error('Chat/Channel ID and Message ID are required'); } try { let endpoint; if (teamId) { // Channel message endpoint = `/teams/${teamId}/channels/${chatChannelId}/messages/${messageId}/unsetReaction`; } else { // Chat message endpoint = `/chats/${chatChannelId}/messages/${messageId}/unsetReaction`; } const body = { reactionType }; await this.makeTeamsRequest(endpoint, 'POST', body); return this.formatResponse({ success: true, message: `Reaction "${reactionType}" removed successfully`, context: teamId ? 'channel' : 'chat' }, params); } catch (error) { return this.formatResponse(`Error unsetting reaction: ${error}`, params); } } } class GetAllMessagesTool extends BaseTeamsTool { constructor(args) { const toolInput = { name: 'get_all_messages', description: 'Get messages across all chats and channels for the user', schema: zod_1.z.object({ maxResults: zod_1.z.number().optional().default(50).describe('Maximum number of messages to return') }), baseUrl: BASE_URL, method: 'GET', headers: {} }; super({ ...toolInput, accessToken: args.accessToken, defaultParams: args.defaultParams }); } async _call(arg) { const params = { ...arg, ...this.defaultParams }; const { maxResults = 50 } = params; try { // Get messages from all chats const chatEndpoint = `/me/chats/getAllMessages?$top=${maxResults}`; const chatResult = await this.makeTeamsRequest(chatEndpoint); return this.formatResponse({ success: true, messages: chatResult.value || [], count: chatResult.value?.length || 0, source: 'all_chats_and_channels' }, params); } catch (error) { return this.formatResponse(`Error getting all messages: ${error}`, params); } } } // Main function to create Teams tools function createTeamsTools(options) { const tools = []; const actions = options.actions || []; const accessToken = options.accessToken || ''; const defaultParams = options.defaultParams || {}; // Channel tools if (actions.includes('listChannels')) { const listTool = new ListChannelsTool({ accessToken, defaultParams: defaultParams.listChannels }); tools.push(listTool); } if (actions.includes('getChannel')) { const getTool = new GetChannelTool({ accessToken, defaultParams: defaultParams.getChannel }); tools.push(getTool); } if (actions.includes('createChannel')) { const createTool = new CreateChannelTool({ accessToken, defaultParams: defaultParams.createChannel }); tools.push(createTool); } if (actions.includes('updateChannel')) { const update