mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
removed success from microsoft tools
This commit is contained in:
@@ -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' },
|
||||
},
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
|
||||
@@ -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' },
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
|
||||
@@ -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.' },
|
||||
},
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
|
||||
@@ -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' },
|
||||
|
||||
@@ -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' },
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
|
||||
@@ -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' },
|
||||
|
||||
@@ -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' },
|
||||
|
||||
Reference in New Issue
Block a user