removed success from microsoft tools

This commit is contained in:
aadamgough
2025-12-15 19:37:45 -08:00
parent 5d3b216922
commit 92a08b0a33
27 changed files with 0 additions and 33 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -217,7 +217,6 @@ export const readChannelTool: ToolConfig<MicrosoftTeamsToolParams, MicrosoftTeam
},
outputs: {
success: { type: 'boolean', description: 'Teams channel read operation success status' },
messageCount: { type: 'number', description: 'Number of messages retrieved from channel' },
teamId: { type: 'string', description: 'ID of the team 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: {
success: { type: 'boolean', description: 'Teams chat read operation success status' },
messageCount: { type: 'number', description: 'Number of messages retrieved from chat' },
chatId: { type: 'string', description: 'ID of the chat that was read from' },
messages: { type: 'array', description: 'Array of chat message objects' },

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -48,7 +48,6 @@ export const writeChannelTool: ToolConfig<MicrosoftTeamsToolParams, MicrosoftTea
},
outputs: {
success: { type: 'boolean', description: 'Teams channel message send success status' },
messageId: { type: 'string', description: 'Unique identifier for the sent message' },
teamId: { type: 'string', description: 'ID of the team 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: {
success: { type: 'boolean', description: 'Teams chat message send success status' },
messageId: { type: 'string', description: 'Unique identifier for the sent message' },
chatId: { type: 'string', description: 'ID of the chat where message was sent' },
createdTime: { type: 'string', description: 'Timestamp when message was created' },