Compare commits

...

2 Commits

Author SHA1 Message Date
aadamgough
92a08b0a33 removed success from microsoft tools 2025-12-15 19:37:45 -08:00
aadamgough
5d3b216922 fixed jira output 2025-12-14 21:06:28 -08:00
50 changed files with 86 additions and 216 deletions

View File

@@ -762,7 +762,6 @@ export const JiraBlock: BlockConfig<JiraResponse> = {
outputs: { outputs: {
// Common outputs across all Jira operations // Common outputs across all Jira operations
ts: { type: 'string', description: 'Timestamp of the operation' }, ts: { type: 'string', description: 'Timestamp of the operation' },
success: { type: 'boolean', description: 'Whether the operation was successful' },
// jira_retrieve (read) outputs // jira_retrieve (read) outputs
issueKey: { type: 'string', description: 'Issue key (e.g., PROJ-123)' }, issueKey: { type: 'string', description: 'Issue key (e.g., PROJ-123)' },

View File

@@ -163,14 +163,9 @@ export const jiraAddCommentTool: ToolConfig<JiraAddCommentParams, JiraAddComment
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', issueKey: { type: 'string', description: 'Issue key the comment was added to' },
description: 'Operation success status', commentId: { type: 'string', description: 'Created comment ID' },
}, body: { type: 'string', description: 'Comment text content' },
output: {
type: 'object',
description:
'Comment details with timestamp, issue key, comment ID, body, and success status',
},
}, },
} }

View File

@@ -141,14 +141,8 @@ export const jiraAddWatcherTool: ToolConfig<JiraAddWatcherParams, JiraAddWatcher
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', issueKey: { type: 'string', description: 'Issue key' },
description: 'Operation success status', watcherAccountId: { type: 'string', description: 'Added watcher account ID' },
},
output: {
type: 'object',
description:
'Watcher details with timestamp, issue key, watcher account ID, and success status',
},
}, },
} }

View File

@@ -191,14 +191,9 @@ export const jiraAddWorklogTool: ToolConfig<JiraAddWorklogParams, JiraAddWorklog
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', issueKey: { type: 'string', description: 'Issue key the worklog was added to' },
description: 'Operation success status', worklogId: { type: 'string', description: 'Created worklog ID' },
}, timeSpentSeconds: { type: 'number', description: 'Time spent in seconds' },
output: {
type: 'object',
description:
'Worklog details with timestamp, issue key, worklog ID, time spent in seconds, and success status',
},
}, },
} }

View File

@@ -144,13 +144,8 @@ export const jiraAssignIssueTool: ToolConfig<JiraAssignIssueParams, JiraAssignIs
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', issueKey: { type: 'string', description: 'Issue key that was assigned' },
description: 'Operation success status', assigneeId: { type: 'string', description: 'Account ID of the assignee' },
},
output: {
type: 'object',
description: 'Assignment details with timestamp, issue key, assignee ID, and success status',
},
}, },
} }

View File

@@ -204,13 +204,10 @@ export const jiraBulkRetrieveTool: ToolConfig<JiraRetrieveBulkParams, JiraRetrie
}, },
outputs: { outputs: {
success: { issues: {
type: 'boolean',
description: 'Operation success status',
},
output: {
type: 'array', type: 'array',
description: 'Array of Jira issues with summary, description, created and updated timestamps', description:
'Array of Jira issues with ts, summary, description, created, and updated timestamps',
}, },
}, },
} }

View File

@@ -201,14 +201,10 @@ export const jiraCreateIssueLinkTool: ToolConfig<
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', inwardIssue: { type: 'string', description: 'Inward issue key' },
description: 'Operation success status', outwardIssue: { type: 'string', description: 'Outward issue key' },
}, linkType: { type: 'string', description: 'Type of issue link' },
output: { linkId: { type: 'string', description: 'Created link ID' },
type: 'object',
description:
'Issue link details with timestamp, inward issue key, outward issue key, link type, and success status',
},
}, },
} }

View File

@@ -127,13 +127,7 @@ export const jiraDeleteAttachmentTool: ToolConfig<
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', attachmentId: { type: 'string', description: 'Deleted attachment ID' },
description: 'Operation success status',
},
output: {
type: 'object',
description: 'Deletion details with timestamp, attachment ID, and success status',
},
}, },
} }

View File

@@ -135,13 +135,8 @@ export const jiraDeleteCommentTool: ToolConfig<JiraDeleteCommentParams, JiraDele
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', issueKey: { type: 'string', description: 'Issue key' },
description: 'Operation success status', commentId: { type: 'string', description: 'Deleted comment ID' },
},
output: {
type: 'object',
description: 'Deletion details with timestamp, issue key, comment ID, and success status',
},
}, },
} }

View File

@@ -170,13 +170,7 @@ export const jiraDeleteIssueTool: ToolConfig<JiraDeleteIssueParams, JiraDeleteIs
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', issueKey: { type: 'string', description: 'Deleted issue key' },
description: 'Operation success status',
},
output: {
type: 'object',
description: 'Deleted issue details with timestamp, issue key, and success status',
},
}, },
} }

View File

@@ -127,13 +127,7 @@ export const jiraDeleteIssueLinkTool: ToolConfig<
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', linkId: { type: 'string', description: 'Deleted link ID' },
description: 'Operation success status',
},
output: {
type: 'object',
description: 'Deletion details with timestamp, link ID, and success status',
},
}, },
} }

View File

@@ -135,13 +135,8 @@ export const jiraDeleteWorklogTool: ToolConfig<JiraDeleteWorklogParams, JiraDele
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', issueKey: { type: 'string', description: 'Issue key' },
description: 'Operation success status', worklogId: { type: 'string', description: 'Deleted worklog ID' },
},
output: {
type: 'object',
description: 'Deletion details with timestamp, issue key, worklog ID, and success status',
},
}, },
} }

View File

@@ -131,13 +131,11 @@ export const jiraGetAttachmentsTool: ToolConfig<
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', issueKey: { type: 'string', description: 'Issue key' },
description: 'Operation success status', attachments: {
}, type: 'array',
output: { description: 'Array of attachments with id, filename, size, mimeType, created, author',
type: 'object',
description: 'Attachments data with timestamp, issue key, and array of attachments',
}, },
}, },
} }

View File

@@ -179,13 +179,12 @@ export const jiraGetCommentsTool: ToolConfig<JiraGetCommentsParams, JiraGetComme
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', issueKey: { type: 'string', description: 'Issue key' },
description: 'Operation success status', total: { type: 'number', description: 'Total number of comments' },
}, comments: {
output: { type: 'array',
type: 'object', description: 'Array of comments with id, author, body, created, updated',
description: 'Comments data with timestamp, issue key, total count, and array of comments',
}, },
}, },
} }

View File

@@ -188,13 +188,13 @@ export const jiraGetWorklogsTool: ToolConfig<JiraGetWorklogsParams, JiraGetWorkl
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', issueKey: { type: 'string', description: 'Issue key' },
description: 'Operation success status', total: { type: 'number', description: 'Total number of worklogs' },
}, worklogs: {
output: { type: 'array',
type: 'object', description:
description: 'Worklogs data with timestamp, issue key, total count, and array of worklogs', 'Array of worklogs with id, author, timeSpentSeconds, timeSpent, comment, created, updated, started',
}, },
}, },
} }

View File

@@ -135,14 +135,8 @@ export const jiraRemoveWatcherTool: ToolConfig<JiraRemoveWatcherParams, JiraRemo
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', issueKey: { type: 'string', description: 'Issue key' },
description: 'Operation success status', watcherAccountId: { type: 'string', description: 'Removed watcher account ID' },
},
output: {
type: 'object',
description:
'Removal details with timestamp, issue key, watcher account ID, and success status',
},
}, },
} }

View File

@@ -229,14 +229,12 @@ export const jiraRetrieveTool: ToolConfig<JiraRetrieveParams, JiraRetrieveRespon
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', issueKey: { type: 'string', description: 'Issue key (e.g., PROJ-123)' },
description: 'Operation success status', summary: { type: 'string', description: 'Issue summary' },
}, description: { type: 'json', description: 'Issue description content' },
output: { created: { type: 'string', description: 'Issue creation timestamp' },
type: 'object', updated: { type: 'string', description: 'Issue last updated timestamp' },
description: issue: { type: 'json', description: 'Complete issue object with all fields' },
'Jira issue details with issue key, summary, description, created and updated timestamps',
},
}, },
} }

View File

@@ -172,14 +172,13 @@ export const jiraSearchIssuesTool: ToolConfig<JiraSearchIssuesParams, JiraSearch
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', total: { type: 'number', description: 'Total number of matching issues' },
description: 'Operation success status', startAt: { type: 'number', description: 'Pagination start index' },
}, maxResults: { type: 'number', description: 'Maximum results per page' },
output: { issues: {
type: 'object', type: 'array',
description: description: 'Array of matching issues with key, summary, status, assignee, created, updated',
'Search results with timestamp, total count, pagination details, and array of matching issues',
}, },
}, },
} }

View File

@@ -200,14 +200,8 @@ export const jiraTransitionIssueTool: ToolConfig<
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', issueKey: { type: 'string', description: 'Issue key that was transitioned' },
description: 'Operation success status', transitionId: { type: 'string', description: 'Applied transition ID' },
},
output: {
type: 'object',
description:
'Transition details with timestamp, issue key, transition ID, and success status',
},
}, },
} }

View File

@@ -136,14 +136,8 @@ export const jiraUpdateTool: ToolConfig<JiraUpdateParams, JiraUpdateResponse> =
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', issueKey: { type: 'string', description: 'Updated issue key (e.g., PROJ-123)' },
description: 'Operation success status', summary: { type: 'string', description: 'Issue summary after update' },
},
output: {
type: 'object',
description:
'Updated Jira issue details with timestamp, issue key, summary, and success status',
},
}, },
} }

View File

@@ -170,14 +170,9 @@ export const jiraUpdateCommentTool: ToolConfig<JiraUpdateCommentParams, JiraUpda
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', issueKey: { type: 'string', description: 'Issue key' },
description: 'Operation success status', commentId: { type: 'string', description: 'Updated comment ID' },
}, body: { type: 'string', description: 'Updated comment text' },
output: {
type: 'object',
description:
'Updated comment details with timestamp, issue key, comment ID, body text, and success status',
},
}, },
} }

View File

@@ -188,14 +188,8 @@ export const jiraUpdateWorklogTool: ToolConfig<JiraUpdateWorklogParams, JiraUpda
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', issueKey: { type: 'string', description: 'Issue key' },
description: 'Operation success status', worklogId: { type: 'string', description: 'Updated worklog ID' },
},
output: {
type: 'object',
description:
'Worklog update details with timestamp, issue key, worklog ID, and success status',
},
}, },
} }

View File

@@ -130,14 +130,9 @@ export const jiraWriteTool: ToolConfig<JiraWriteParams, JiraWriteResponse> = {
}, },
outputs: { outputs: {
success: { ts: { type: 'string', description: 'Timestamp of the operation' },
type: 'boolean', issueKey: { type: 'string', description: 'Created issue key (e.g., PROJ-123)' },
description: 'Operation success status', summary: { type: 'string', description: 'Issue summary' },
}, url: { type: 'string', description: 'URL to the created issue' },
output: {
type: 'object',
description:
'Created Jira issue details with timestamp, issue key, summary, success status, and URL',
},
}, },
} }

View File

@@ -93,7 +93,6 @@ export const createBucketTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether the bucket was created successfully' },
bucket: { type: 'object', description: 'The created bucket object with all properties' }, bucket: { type: 'object', description: 'The created bucket object with all properties' },
metadata: { type: 'object', description: 'Metadata including bucketId and planId' }, metadata: { type: 'object', description: 'Metadata including bucketId and planId' },
}, },

View File

@@ -143,7 +143,6 @@ export const createTaskTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether the task was created successfully' },
task: { type: 'object', description: 'The created task object with all properties' }, task: { type: 'object', description: 'The created task object with all properties' },
metadata: { type: 'object', description: 'Metadata including planId, taskId, and taskUrl' }, metadata: { type: 'object', description: 'Metadata including planId, taskId, and taskUrl' },
}, },

View File

@@ -92,7 +92,6 @@ export const deleteBucketTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether the bucket was deleted successfully' },
deleted: { type: 'boolean', description: 'Confirmation of deletion' }, deleted: { type: 'boolean', description: 'Confirmation of deletion' },
metadata: { type: 'object', description: 'Additional metadata' }, metadata: { type: 'object', description: 'Additional metadata' },
}, },

View File

@@ -92,7 +92,6 @@ export const deleteTaskTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether the task was deleted successfully' },
deleted: { type: 'boolean', description: 'Confirmation of deletion' }, deleted: { type: 'boolean', description: 'Confirmation of deletion' },
metadata: { type: 'object', description: 'Additional metadata' }, metadata: { type: 'object', description: 'Additional metadata' },
}, },

View File

@@ -76,10 +76,6 @@ export const getTaskDetailsTool: ToolConfig<
}, },
outputs: { outputs: {
success: {
type: 'boolean',
description: 'Whether the task details were retrieved successfully',
},
taskDetails: { taskDetails: {
type: 'object', type: 'object',
description: 'The task details including description, checklist, and references', description: 'The task details including description, checklist, and references',

View File

@@ -76,7 +76,6 @@ export const listBucketsTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether buckets were retrieved successfully' },
buckets: { type: 'array', description: 'Array of bucket objects' }, buckets: { type: 'array', description: 'Array of bucket objects' },
metadata: { type: 'object', description: 'Metadata including planId and count' }, metadata: { type: 'object', description: 'Metadata including planId and count' },
}, },

View File

@@ -67,7 +67,6 @@ export const listPlansTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether plans were retrieved successfully' },
plans: { type: 'array', description: 'Array of plan objects shared with the current user' }, plans: { type: 'array', description: 'Array of plan objects shared with the current user' },
metadata: { type: 'object', description: 'Metadata including userId and count' }, metadata: { type: 'object', description: 'Metadata including userId and count' },
}, },

View File

@@ -74,7 +74,6 @@ export const readBucketTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether the bucket was retrieved successfully' },
bucket: { type: 'object', description: 'The bucket object with all properties' }, bucket: { type: 'object', description: 'The bucket object with all properties' },
metadata: { type: 'object', description: 'Metadata including bucketId and planId' }, metadata: { type: 'object', description: 'Metadata including bucketId and planId' },
}, },

View File

@@ -74,7 +74,6 @@ export const readPlanTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether the plan was retrieved successfully' },
plan: { type: 'object', description: 'The plan object with all properties' }, plan: { type: 'object', description: 'The plan object with all properties' },
metadata: { type: 'object', description: 'Metadata including planId and planUrl' }, metadata: { type: 'object', description: 'Metadata including planId and planUrl' },
}, },

View File

@@ -151,7 +151,6 @@ export const readTaskTool: ToolConfig<MicrosoftPlannerToolParams, MicrosoftPlann
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether tasks were retrieved successfully' },
tasks: { type: 'array', description: 'Array of task objects with filtered properties' }, tasks: { type: 'array', description: 'Array of task objects with filtered properties' },
metadata: { type: 'object', description: 'Metadata including planId, userId, and planUrl' }, metadata: { type: 'object', description: 'Metadata including planId, userId, and planUrl' },
}, },

View File

@@ -118,7 +118,6 @@ export const updateBucketTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether the bucket was updated successfully' },
bucket: { type: 'object', description: 'The updated bucket object with all properties' }, bucket: { type: 'object', description: 'The updated bucket object with all properties' },
metadata: { type: 'object', description: 'Metadata including bucketId and planId' }, metadata: { type: 'object', description: 'Metadata including bucketId and planId' },
}, },

View File

@@ -228,7 +228,6 @@ export const updateTaskTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether the task was updated successfully' },
message: { type: 'string', description: 'Success message when task is updated' }, message: { type: 'string', description: 'Success message when task is updated' },
task: { type: 'object', description: 'The updated task object with all properties' }, task: { type: 'object', description: 'The updated task object with all properties' },
taskId: { type: 'string', description: 'ID of the updated task' }, taskId: { type: 'string', description: 'ID of the updated task' },

View File

@@ -165,10 +165,6 @@ export const updateTaskDetailsTool: ToolConfig<
}, },
outputs: { outputs: {
success: {
type: 'boolean',
description: 'Whether the task details were updated successfully',
},
taskDetails: { taskDetails: {
type: 'object', type: 'object',
description: 'The updated task details object with all properties', description: 'The updated task details object with all properties',

View File

@@ -45,7 +45,6 @@ export const deleteChannelMessageTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether the deletion was successful' },
deleted: { type: 'boolean', description: 'Confirmation of deletion' }, deleted: { type: 'boolean', description: 'Confirmation of deletion' },
messageId: { type: 'string', description: 'ID of the deleted message' }, messageId: { type: 'string', description: 'ID of the deleted message' },
}, },

View File

@@ -39,7 +39,6 @@ export const deleteChatMessageTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether the deletion was successful' },
deleted: { type: 'boolean', description: 'Confirmation of deletion' }, deleted: { type: 'boolean', description: 'Confirmation of deletion' },
messageId: { type: 'string', description: 'ID of the deleted message' }, messageId: { type: 'string', description: 'ID of the deleted message' },
}, },

View File

@@ -51,7 +51,6 @@ export const getMessageTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether the retrieval was successful' },
content: { type: 'string', description: 'The message content' }, content: { type: 'string', description: 'The message content' },
metadata: { type: 'object', description: 'Message metadata including sender, timestamp, etc.' }, metadata: { type: 'object', description: 'Message metadata including sender, timestamp, etc.' },
}, },

View File

@@ -39,7 +39,6 @@ export const listChannelMembersTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether the listing was successful' },
members: { type: 'array', description: 'Array of channel members' }, members: { type: 'array', description: 'Array of channel members' },
memberCount: { type: 'number', description: 'Total number of members' }, memberCount: { type: 'number', description: 'Total number of members' },
}, },

View File

@@ -33,7 +33,6 @@ export const listTeamMembersTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether the listing was successful' },
members: { type: 'array', description: 'Array of team members' }, members: { type: 'array', description: 'Array of team members' },
memberCount: { type: 'number', description: 'Total number of members' }, memberCount: { type: 'number', description: 'Total number of members' },
}, },

View File

@@ -217,7 +217,6 @@ export const readChannelTool: ToolConfig<MicrosoftTeamsToolParams, MicrosoftTeam
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Teams channel read operation success status' },
messageCount: { type: 'number', description: 'Number of messages retrieved from channel' }, messageCount: { type: 'number', description: 'Number of messages retrieved from channel' },
teamId: { type: 'string', description: 'ID of the team that was read from' }, teamId: { type: 'string', description: 'ID of the team that was read from' },
channelId: { type: 'string', description: 'ID of the channel that was read from' }, channelId: { type: 'string', description: 'ID of the channel that was read from' },

View File

@@ -173,7 +173,6 @@ export const readChatTool: ToolConfig<MicrosoftTeamsToolParams, MicrosoftTeamsRe
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Teams chat read operation success status' },
messageCount: { type: 'number', description: 'Number of messages retrieved from chat' }, messageCount: { type: 'number', description: 'Number of messages retrieved from chat' },
chatId: { type: 'string', description: 'ID of the chat that was read from' }, chatId: { type: 'string', description: 'ID of the chat that was read from' },
messages: { type: 'array', description: 'Array of chat message objects' }, messages: { type: 'array', description: 'Array of chat message objects' },

View File

@@ -51,7 +51,6 @@ export const replyToMessageTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether the reply was successful' },
messageId: { type: 'string', description: 'ID of the reply message' }, messageId: { type: 'string', description: 'ID of the reply message' },
updatedContent: { type: 'boolean', description: 'Whether content was successfully sent' }, updatedContent: { type: 'boolean', description: 'Whether content was successfully sent' },
}, },

View File

@@ -57,7 +57,6 @@ export const setReactionTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether the reaction was added successfully' },
reactionType: { type: 'string', description: 'The emoji that was added' }, reactionType: { type: 'string', description: 'The emoji that was added' },
messageId: { type: 'string', description: 'ID of the message' }, messageId: { type: 'string', description: 'ID of the message' },
}, },

View File

@@ -57,7 +57,6 @@ export const unsetReactionTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether the reaction was removed successfully' },
reactionType: { type: 'string', description: 'The emoji that was removed' }, reactionType: { type: 'string', description: 'The emoji that was removed' },
messageId: { type: 'string', description: 'ID of the message' }, messageId: { type: 'string', description: 'ID of the message' },
}, },

View File

@@ -51,7 +51,6 @@ export const updateChannelMessageTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether the update was successful' },
messageId: { type: 'string', description: 'ID of the updated message' }, messageId: { type: 'string', description: 'ID of the updated message' },
updatedContent: { type: 'boolean', description: 'Whether content was successfully updated' }, updatedContent: { type: 'boolean', description: 'Whether content was successfully updated' },
}, },

View File

@@ -45,7 +45,6 @@ export const updateChatMessageTool: ToolConfig<
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Whether the update was successful' },
messageId: { type: 'string', description: 'ID of the updated message' }, messageId: { type: 'string', description: 'ID of the updated message' },
updatedContent: { type: 'boolean', description: 'Whether content was successfully updated' }, updatedContent: { type: 'boolean', description: 'Whether content was successfully updated' },
}, },

View File

@@ -48,7 +48,6 @@ export const writeChannelTool: ToolConfig<MicrosoftTeamsToolParams, MicrosoftTea
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Teams channel message send success status' },
messageId: { type: 'string', description: 'Unique identifier for the sent message' }, messageId: { type: 'string', description: 'Unique identifier for the sent message' },
teamId: { type: 'string', description: 'ID of the team where message was sent' }, teamId: { type: 'string', description: 'ID of the team where message was sent' },
channelId: { type: 'string', description: 'ID of the channel where message was sent' }, channelId: { type: 'string', description: 'ID of the channel where message was sent' },

View File

@@ -42,7 +42,6 @@ export const writeChatTool: ToolConfig<MicrosoftTeamsToolParams, MicrosoftTeamsW
}, },
outputs: { outputs: {
success: { type: 'boolean', description: 'Teams chat message send success status' },
messageId: { type: 'string', description: 'Unique identifier for the sent message' }, messageId: { type: 'string', description: 'Unique identifier for the sent message' },
chatId: { type: 'string', description: 'ID of the chat where message was sent' }, chatId: { type: 'string', description: 'ID of the chat where message was sent' },
createdTime: { type: 'string', description: 'Timestamp when message was created' }, createdTime: { type: 'string', description: 'Timestamp when message was created' },