veryfront 0.1.654 → 0.1.656
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/deno.js +1 -1
- package/esm/src/integrations/_data.js +1 -1
- package/esm/src/integrations/_tool_summaries.d.ts.map +1 -1
- package/esm/src/integrations/_tool_summaries.js +205 -0
- package/esm/src/utils/version-constant.d.ts +1 -1
- package/esm/src/utils/version-constant.js +1 -1
- package/package.json +1 -1
package/esm/deno.js
CHANGED
|
@@ -19,7 +19,7 @@ export const connectors = [
|
|
|
19
19
|
{ "name": "neon", "displayName": "Neon", "icon": "neon.svg", "description": "Manage Neon Postgres projects, branches, and execute database queries", "auth": { "type": "api-key", "requiredApis": [{ "name": "Neon Management API", "enableUrl": "https://console.neon.tech/app/settings/api-keys" }], "tokenName": "API Key", "docsUrl": "https://neon.tech/docs/manage/api-keys" }, "envVars": [{ "name": "NEON_API_KEY", "description": "Neon API Key for Management API access", "required": true, "sensitive": true, "docsUrl": "https://neon.tech/docs/manage/api-keys" }, { "name": "DATABASE_URL", "description": "PostgreSQL connection string for database queries", "required": true, "sensitive": true, "docsUrl": "https://neon.tech/docs/connect/connect-from-any-app" }], "npmDependencies": { "pg": "^8.13.1" }, "tools": [{ "id": "list_projects", "name": "List Projects", "description": "List all Neon projects in your account", "requiresWrite": false }, { "id": "list_branches", "name": "List Branches", "description": "List all branches for a specific project", "requiresWrite": false }, { "id": "query_database", "name": "Query Database", "description": "Execute SQL queries against the connected database", "requiresWrite": false }, { "id": "list_tables", "name": "List Tables", "description": "List all tables in the connected database", "requiresWrite": false }, { "id": "describe_table", "name": "Describe Table", "description": "Get detailed schema information for a specific table", "requiresWrite": false }], "prompts": [{ "id": "check_db_status", "title": "Check database status", "prompt": "Show me the status of my Neon projects and their branches.", "category": "database", "icon": "database" }, { "id": "explore_schema", "title": "Explore database schema", "prompt": "List all tables in my database and show me the schema for the main tables.", "category": "database", "icon": "table" }, { "id": "query_data", "title": "Query database", "prompt": "Help me query my database to find specific data.", "category": "database", "icon": "search" }], "suggestedWith": ["stripe", "clerk", "vercel"] },
|
|
20
20
|
{ "name": "notion", "displayName": "Notion", "icon": "notion.svg", "description": "Search, read, and create pages in Notion workspaces", "auth": { "type": "oauth2", "provider": "notion", "authorizationUrl": "https://api.notion.com/v1/oauth/authorize", "tokenUrl": "https://api.notion.com/v1/oauth/token", "scopes": [], "tokenAuthMethod": "basic", "requiredApis": [{ "name": "Notion Integration", "enableUrl": "https://www.notion.so/my-integrations" }] }, "envVars": [{ "name": "NOTION_CLIENT_ID", "description": "Notion OAuth Client ID (from your integration)", "required": true, "sensitive": false, "docsUrl": "https://www.notion.so/my-integrations" }, { "name": "NOTION_CLIENT_SECRET", "description": "Notion OAuth Client Secret", "required": true, "sensitive": true, "docsUrl": "https://www.notion.so/my-integrations" }], "tools": [{ "id": "search_notion", "name": "Search Notion", "description": "Search pages and databases in the workspace", "requiresWrite": false, "endpoint": { "method": "POST", "url": "https://api.notion.com/v1/search", "params": { "Notion-Version": { "type": "string", "in": "header", "description": "Notion API version", "default": "2022-06-28" } }, "body": { "query": { "type": "string", "description": "Search query text" }, "filter": { "type": "object", "description": "Optional Notion search filter" }, "sort": { "type": "object", "description": "Optional Notion search sort" }, "page_size": { "type": "number", "description": "Maximum results to return", "default": 10 }, "start_cursor": { "type": "string", "description": "Pagination cursor" } }, "response": { "transform": "results" } } }, { "id": "read_page", "name": "Read Page", "description": "Read the content of a Notion page", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://api.notion.com/v1/blocks/{pageId}/children", "params": { "Notion-Version": { "type": "string", "in": "header", "description": "Notion API version", "default": "2022-06-28" }, "pageId": { "type": "string", "in": "path", "description": "Notion page ID", "required": true }, "page_size": { "type": "number", "in": "query", "description": "Maximum child blocks to return", "default": 100 }, "start_cursor": { "type": "string", "in": "query", "description": "Pagination cursor" } }, "response": { "transform": "results" } } }, { "id": "create_page", "name": "Create Page", "description": "Create a new page in a database or as a subpage", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://api.notion.com/v1/pages", "params": { "Notion-Version": { "type": "string", "in": "header", "description": "Notion API version", "default": "2022-06-28" } }, "body": { "parent": { "type": "object", "description": "Notion parent object, e.g. database_id or page_id", "required": true }, "properties": { "type": "object", "description": "Page properties", "required": true }, "children": { "type": "array", "description": "Optional child blocks" } } } }, { "id": "query_database", "name": "Query Database", "description": "Query a Notion database with filters and sorts", "requiresWrite": false, "endpoint": { "method": "POST", "url": "https://api.notion.com/v1/databases/{databaseId}/query", "params": { "Notion-Version": { "type": "string", "in": "header", "description": "Notion API version", "default": "2022-06-28" }, "databaseId": { "type": "string", "in": "path", "description": "Notion database ID", "required": true } }, "body": { "filter": { "type": "object", "description": "Optional Notion database filter" }, "sorts": { "type": "array", "description": "Optional Notion database sorts" }, "page_size": { "type": "number", "description": "Maximum results to return", "default": 10 }, "start_cursor": { "type": "string", "description": "Pagination cursor" } }, "response": { "transform": "results" } } }, { "id": "get_page", "name": "Get Page Metadata", "description": "Retrieve Notion page metadata and properties without fetching child block content", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://api.notion.com/v1/pages/{pageId}", "params": { "Notion-Version": { "type": "string", "in": "header", "description": "Notion API version", "default": "2022-06-28" }, "pageId": { "type": "string", "in": "path", "description": "Notion page ID", "required": true } } } }, { "id": "get_database", "name": "Get Database", "description": "Retrieve Notion database metadata, title, and property schema", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://api.notion.com/v1/databases/{databaseId}", "params": { "Notion-Version": { "type": "string", "in": "header", "description": "Notion API version", "default": "2022-06-28" }, "databaseId": { "type": "string", "in": "path", "description": "Notion database ID", "required": true } } } }, { "id": "append_blocks", "name": "Append Blocks", "description": "Append child blocks to a Notion page or block", "requiresWrite": true, "endpoint": { "method": "PATCH", "url": "https://api.notion.com/v1/blocks/{blockId}/children", "params": { "Notion-Version": { "type": "string", "in": "header", "description": "Notion API version", "default": "2022-06-28" }, "blockId": { "type": "string", "in": "path", "description": "Page or block ID to append children to", "required": true } }, "body": { "children": { "type": "array", "description": "Notion block objects to append", "required": true }, "after": { "type": "string", "description": "Optional existing child block ID after which to append" } } } }, { "id": "update_page", "name": "Update Page", "description": "Update Notion page properties or archive/unarchive a page", "requiresWrite": true, "endpoint": { "method": "PATCH", "url": "https://api.notion.com/v1/pages/{pageId}", "params": { "Notion-Version": { "type": "string", "in": "header", "description": "Notion API version", "default": "2022-06-28" }, "pageId": { "type": "string", "in": "path", "description": "Notion page ID", "required": true } }, "body": { "properties": { "type": "object", "description": "Page properties to update" }, "archived": { "type": "boolean", "description": "Whether the page should be archived" }, "icon": { "type": "object", "description": "Optional page icon" }, "cover": { "type": "object", "description": "Optional page cover" } } } }], "prompts": [{ "id": "search_docs", "title": "Search my docs", "prompt": "Search my Notion workspace for relevant documentation or notes about a topic.", "category": "productivity", "icon": "search" }, { "id": "summarize_page", "title": "Summarize a page", "prompt": "Read and summarize a specific Notion page. Extract the key points and action items.", "category": "productivity", "icon": "document" }, { "id": "create_meeting_notes", "title": "Create meeting notes", "prompt": "Create a new meeting notes page with today's date, attendees, agenda, and action items sections.", "category": "productivity", "icon": "plus" }], "suggestedWith": ["gmail", "slack", "calendar"] },
|
|
21
21
|
{ "name": "onedrive", "displayName": "OneDrive", "icon": "onedrive.svg", "description": "Access and manage files in Microsoft OneDrive", "auth": { "type": "oauth2", "provider": "microsoft", "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize", "tokenUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/token", "scopes": ["Files.Read", "Files.ReadWrite", "Files.Read.All", "Files.ReadWrite.All", "offline_access"], "tokenAuthMethod": "body", "requiredApis": [{ "name": "Microsoft Graph API", "enableUrl": "https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationsListBlade" }] }, "envVars": [{ "name": "MICROSOFT_CLIENT_ID", "description": "Microsoft Azure App Client ID (shared with Outlook/Teams/SharePoint)", "required": true, "sensitive": false, "docsUrl": "https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationsListBlade" }, { "name": "MICROSOFT_CLIENT_SECRET", "description": "Microsoft Azure App Client Secret", "required": true, "sensitive": true, "docsUrl": "https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationsListBlade" }], "tools": [{ "id": "list_files", "name": "List Files", "description": "List files and folders in a OneDrive folder", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/drive/root/children", "params": { "$top": { "type": "number", "in": "query", "description": "Maximum number of items to return", "default": 200 }, "$select": { "type": "string", "in": "query", "description": "Comma-separated fields to return" } } } }, { "id": "search_files", "name": "Search Files", "description": "Search for files and folders in OneDrive by name or content", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/drive/root/search(q='{query}')", "params": { "query": { "type": "string", "in": "path", "description": "Search query", "required": true }, "$top": { "type": "number", "in": "query", "description": "Maximum number of items to return", "default": 200 } } } }, { "id": "upload_file", "name": "Upload File", "description": "Upload or update a file in OneDrive", "requiresWrite": true, "endpoint": { "method": "PUT", "url": "https://graph.microsoft.com/v1.0/me/drive/items/{parentFolderId}:/{fileName}:/content", "params": { "parentFolderId": { "type": "string", "in": "path", "description": "Parent folder item ID, or root", "default": "root" }, "fileName": { "type": "string", "in": "path", "description": "Name of the file to upload", "required": true } }, "body": { "content": { "type": "string", "description": "File content to upload", "required": true } }, "contentType": "application/octet-stream" } }, { "id": "download_file", "name": "Download File", "description": "Download file content from OneDrive", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/drive/items/{itemId}/content", "params": { "itemId": { "type": "string", "in": "path", "description": "OneDrive file item ID", "required": true } } } }], "prompts": [{ "id": "search_documents", "title": "Search documents", "prompt": "Search for documents in OneDrive and summarize their content.", "category": "productivity", "icon": "search" }, { "id": "list_recent_files", "title": "List recent files", "prompt": "Show me the most recently modified files in my OneDrive.", "category": "productivity", "icon": "document" }, { "id": "organize_files", "title": "Organize files", "prompt": "Help me organize and manage files in my OneDrive storage.", "category": "productivity", "icon": "folder" }, { "id": "backup_file", "title": "Backup a file", "prompt": "Upload and backup a file to my OneDrive storage.", "category": "productivity", "icon": "upload" }], "suggestedWith": ["outlook", "teams", "sharepoint"] },
|
|
22
|
-
{ "name": "outlook", "displayName": "Microsoft Outlook", "icon": "outlook.svg", "description": "Read, send, and manage Outlook emails", "auth": { "type": "oauth2", "provider": "microsoft", "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize", "tokenUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/token", "scopes": ["Mail.Read", "Mail.Send", "Mail.ReadWrite", "offline_access"], "tokenAuthMethod": "body", "requiredApis": [{ "name": "Microsoft Graph API", "enableUrl": "https://portal.azure.com/#view/Microsoft_AAD_RegisteredApps/ApplicationsListBlade" }] }, "envVars": [{ "name": "MICROSOFT_CLIENT_ID", "description": "Microsoft Azure App Client ID (Application ID)", "required": true, "sensitive": false, "docsUrl": "https://portal.azure.com/#view/Microsoft_AAD_RegisteredApps/ApplicationsListBlade" }, { "name": "MICROSOFT_CLIENT_SECRET", "description": "Microsoft Azure App Client Secret", "required": true, "sensitive": true, "docsUrl": "https://portal.azure.com/#view/Microsoft_AAD_RegisteredApps/ApplicationsListBlade" }], "tools": [{ "id": "list_emails", "name": "List Emails", "description": "List recent emails from inbox or a specific folder", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/mailFolders/{folderId}/messages", "params": { "folderId": { "type": "string", "in": "path", "description": "Mail folder ID or well-known name", "required": true, "default": "inbox" }, "$top": { "type": "number", "in": "query", "description": "Maximum messages to return", "default": 25 }, "$select": { "type": "string", "in": "query", "description": "Comma-separated message fields to return" }, "$orderby": { "type": "string", "in": "query", "description": "Sort expression", "default": "receivedDateTime desc" }, "$filter": { "type": "string", "in": "query", "description": "OData filter expression" } }, "response": { "transform": "value", "historicalSummary": { "collectionKeys": ["value", "data", "messages"], "collectionName": "messages", "itemFields": [{ "name": "id" }, { "name": "conversationId" }, { "name": "from", "kind": "contact" }, { "name": "sender", "kind": "contact" }, { "name": "toRecipients", "kind": "contact-array" }, { "name": "subject" }, { "name": "receivedDateTime" }, { "name": "sentDateTime" }, { "name": "bodyPreview", "maxLength": 300 }, { "name": "categories", "kind": "string-array" }, { "name": "isRead" }, { "name": "importance" }, { "name": "hasAttachments" }], "outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }], "omitted": "large email bodies and provider-specific message fields" } } } }, { "id": "get_email", "name": "Get Email", "description": "Get detailed information about a specific email", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}", "params": { "messageId": { "type": "string", "in": "path", "description": "Microsoft Graph message ID", "required": true }, "$select": { "type": "string", "in": "query", "description": "Comma-separated message fields to return" } } } }, { "id": "send_email", "name": "Send Email", "description": "Send a new email message", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/sendMail", "body": { "message": { "type": "object", "description": "Microsoft Graph message object with subject, body, toRecipients, etc.", "required": true }, "saveToSentItems": { "type": "boolean", "description": "Save sent message to Sent Items", "default": true } } } }, { "id": "search_emails", "name": "Search Emails", "description": "Search emails by query, subject, sender, or date", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/messages", "params": { "$search": { "type": "string", "in": "query", "description": "Search query, e.g. \"subject:roadmap\"", "required": true }, "$top": { "type": "number", "in": "query", "description": "Maximum messages to return", "default": 25 }, "$select": { "type": "string", "in": "query", "description": "Comma-separated message fields to return" } }, "response": { "transform": "value", "historicalSummary": { "collectionKeys": ["value", "data", "messages"], "collectionName": "messages", "itemFields": [{ "name": "id" }, { "name": "conversationId" }, { "name": "from", "kind": "contact" }, { "name": "sender", "kind": "contact" }, { "name": "toRecipients", "kind": "contact-array" }, { "name": "subject" }, { "name": "receivedDateTime" }, { "name": "sentDateTime" }, { "name": "bodyPreview", "maxLength": 300 }, { "name": "categories", "kind": "string-array" }, { "name": "isRead" }, { "name": "importance" }, { "name": "hasAttachments" }], "outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }], "omitted": "large email bodies and provider-specific message fields" } } } }, { "id": "list_folders", "name": "List Folders", "description": "List all mail folders in the mailbox", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/mailFolders", "params": { "includeHiddenFolders": { "type": "boolean", "in": "query", "description": "Include hidden folders", "default": false }, "$top": { "type": "number", "in": "query", "description": "Maximum folders to return", "default": 100 } }, "response": { "transform": "value", "historicalSummary": { "collectionKeys": ["value", "folders", "data"], "collectionName": "folders", "itemFields": [{ "name": "id" }, { "name": "displayName" }, { "name": "parentFolderId" }, { "name": "childFolderCount" }, { "name": "unreadItemCount" }, { "name": "totalItemCount" }], "outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }], "omitted": "folder provider-specific payload fields" } } } }], "prompts": [{ "id": "check_emails", "title": "Check my emails", "prompt": "List my recent unread emails and summarize the most important ones.", "category": "productivity", "icon": "mail" }, { "id": "search_emails", "title": "Search my emails", "prompt": "Search my emails for specific topics, senders, or date ranges.", "category": "productivity", "icon": "search" }, { "id": "draft_email", "title": "Draft an email", "prompt": "Help me draft a professional email with proper formatting and tone.", "category": "productivity", "icon": "compose" }], "suggestedWith": ["teams", "calendar", "gmail"] },
|
|
22
|
+
{ "name": "outlook", "displayName": "Microsoft Outlook", "icon": "outlook.svg", "description": "Read, send, schedule, and manage Outlook mail and calendars", "auth": { "type": "oauth2", "provider": "microsoft", "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize", "tokenUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/token", "scopes": ["Mail.Read", "Mail.Send", "Mail.ReadWrite", "Calendars.Read", "Calendars.ReadWrite", "offline_access"], "tokenAuthMethod": "body", "requiredApis": [{ "name": "Microsoft Graph API", "enableUrl": "https://portal.azure.com/#view/Microsoft_AAD_RegisteredApps/ApplicationsListBlade" }] }, "envVars": [{ "name": "MICROSOFT_CLIENT_ID", "description": "Microsoft Azure App Client ID (Application ID)", "required": true, "sensitive": false, "docsUrl": "https://portal.azure.com/#view/Microsoft_AAD_RegisteredApps/ApplicationsListBlade" }, { "name": "MICROSOFT_CLIENT_SECRET", "description": "Microsoft Azure App Client Secret", "required": true, "sensitive": true, "docsUrl": "https://portal.azure.com/#view/Microsoft_AAD_RegisteredApps/ApplicationsListBlade" }], "tools": [{ "id": "list_emails", "name": "List Emails", "description": "List recent emails from inbox or a specific folder", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/mailFolders/{folderId}/messages", "params": { "folderId": { "type": "string", "in": "path", "description": "Mail folder ID or well-known folder name", "required": true, "default": "inbox" }, "$top": { "type": "number", "in": "query", "description": "Maximum messages to return", "default": 25 }, "$select": { "type": "string", "in": "query", "description": "Comma-separated message fields to return", "default": "id,conversationId,internetMessageId,subject,from,sender,toRecipients,ccRecipients,receivedDateTime,sentDateTime,bodyPreview,categories,isRead,importance,hasAttachments,webLink,flag" }, "$orderby": { "type": "string", "in": "query", "description": "Sort expression", "default": "receivedDateTime desc" }, "$filter": { "type": "string", "in": "query", "description": "OData filter expression" } }, "response": { "transform": "value", "historicalSummary": { "collectionKeys": ["value", "data", "messages"], "collectionName": "messages", "itemFields": [{ "name": "id" }, { "name": "conversationId" }, { "name": "internetMessageId" }, { "name": "from", "kind": "contact" }, { "name": "sender", "kind": "contact" }, { "name": "toRecipients", "kind": "contact-array" }, { "name": "ccRecipients", "kind": "contact-array" }, { "name": "subject" }, { "name": "receivedDateTime" }, { "name": "sentDateTime" }, { "name": "bodyPreview", "maxLength": 300 }, { "name": "categories", "kind": "string-array" }, { "name": "isRead" }, { "name": "importance" }, { "name": "hasAttachments" }, { "name": "webLink" }, { "name": "flag", "kind": "object" }], "outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }], "omitted": "large email bodies and provider-specific message fields" } } } }, { "id": "get_email", "name": "Get Email", "description": "Get detailed information about a specific email", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}", "params": { "messageId": { "type": "string", "in": "path", "description": "Microsoft Graph message ID", "required": true }, "$select": { "type": "string", "in": "query", "description": "Comma-separated message fields to return", "default": "id,conversationId,internetMessageId,subject,body,bodyPreview,from,sender,toRecipients,ccRecipients,bccRecipients,replyTo,receivedDateTime,sentDateTime,categories,isRead,importance,hasAttachments,webLink,flag" } } } }, { "id": "send_email", "name": "Send Email", "description": "Send a new email message", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/sendMail", "body": { "message": { "type": "object", "description": "Microsoft Graph message object with subject, body, toRecipients, and optional fields", "required": true }, "saveToSentItems": { "type": "boolean", "description": "Save sent message to Sent Items", "default": true } } } }, { "id": "search_emails", "name": "Search Emails", "description": "Search emails by query, subject, sender, or date", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/messages", "params": { "$search": { "type": "string", "in": "query", "description": "Microsoft Graph search query, for example \"subject:roadmap\"", "required": true }, "$top": { "type": "number", "in": "query", "description": "Maximum messages to return", "default": 25 }, "$select": { "type": "string", "in": "query", "description": "Comma-separated message fields to return", "default": "id,conversationId,internetMessageId,subject,from,sender,toRecipients,ccRecipients,receivedDateTime,sentDateTime,bodyPreview,categories,isRead,importance,hasAttachments,webLink,flag" } }, "response": { "transform": "value", "historicalSummary": { "collectionKeys": ["value", "data", "messages"], "collectionName": "messages", "itemFields": [{ "name": "id" }, { "name": "conversationId" }, { "name": "internetMessageId" }, { "name": "from", "kind": "contact" }, { "name": "sender", "kind": "contact" }, { "name": "toRecipients", "kind": "contact-array" }, { "name": "ccRecipients", "kind": "contact-array" }, { "name": "subject" }, { "name": "receivedDateTime" }, { "name": "sentDateTime" }, { "name": "bodyPreview", "maxLength": 300 }, { "name": "categories", "kind": "string-array" }, { "name": "isRead" }, { "name": "importance" }, { "name": "hasAttachments" }, { "name": "webLink" }, { "name": "flag", "kind": "object" }], "outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }], "omitted": "large email bodies and provider-specific message fields" } } } }, { "id": "list_folders", "name": "List Folders", "description": "List all mail folders in the mailbox", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/mailFolders", "params": { "includeHiddenFolders": { "type": "boolean", "in": "query", "description": "Include hidden folders", "default": false }, "$top": { "type": "number", "in": "query", "description": "Maximum folders to return", "default": 100 } }, "response": { "transform": "value", "historicalSummary": { "collectionKeys": ["value", "folders", "data"], "collectionName": "folders", "itemFields": [{ "name": "id" }, { "name": "displayName" }, { "name": "parentFolderId" }, { "name": "childFolderCount" }, { "name": "unreadItemCount" }, { "name": "totalItemCount" }], "outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }], "omitted": "folder provider-specific payload fields" } } } }, { "id": "get_folder", "name": "Get Folder", "description": "Get metadata for a mail folder", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/mailFolders/{folderId}", "params": { "folderId": { "type": "string", "in": "path", "description": "Mail folder ID or well-known folder name", "required": true } } } }, { "id": "create_folder", "name": "Create Folder", "description": "Create a mail folder", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/mailFolders", "body": { "displayName": { "type": "string", "description": "Folder display name", "required": true } } } }, { "id": "update_folder", "name": "Update Folder", "description": "Rename a mail folder", "requiresWrite": true, "endpoint": { "method": "PATCH", "url": "https://graph.microsoft.com/v1.0/me/mailFolders/{folderId}", "params": { "folderId": { "type": "string", "in": "path", "description": "Mail folder ID", "required": true } }, "body": { "displayName": { "type": "string", "description": "Folder display name", "required": true } } } }, { "id": "delete_folder", "name": "Delete Folder", "description": "Delete a mail folder", "requiresWrite": true, "endpoint": { "method": "DELETE", "url": "https://graph.microsoft.com/v1.0/me/mailFolders/{folderId}", "params": { "folderId": { "type": "string", "in": "path", "description": "Mail folder ID", "required": true } } } }, { "id": "mark_email_read", "name": "Mark Email Read", "description": "Mark an email as read", "requiresWrite": true, "endpoint": { "method": "PATCH", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}", "params": { "messageId": { "type": "string", "in": "path", "description": "Message ID", "required": true } }, "body": { "isRead": { "type": "boolean", "description": "Read state", "default": true } } } }, { "id": "mark_email_unread", "name": "Mark Email Unread", "description": "Mark an email as unread", "requiresWrite": true, "endpoint": { "method": "PATCH", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}", "params": { "messageId": { "type": "string", "in": "path", "description": "Message ID", "required": true } }, "body": { "isRead": { "type": "boolean", "description": "Read state", "default": false } } } }, { "id": "delete_email", "name": "Delete Email", "description": "Delete an email message", "requiresWrite": true, "endpoint": { "method": "DELETE", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}", "params": { "messageId": { "type": "string", "in": "path", "description": "Message ID", "required": true } } } }, { "id": "move_email", "name": "Move Email", "description": "Move an email to another folder", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}/move", "params": { "messageId": { "type": "string", "in": "path", "description": "Message ID", "required": true } }, "body": { "destinationId": { "type": "string", "description": "Destination folder ID or well-known folder name", "required": true } } } }, { "id": "archive_email", "name": "Archive Email", "description": "Move an email to the archive folder", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}/move", "params": { "messageId": { "type": "string", "in": "path", "description": "Message ID", "required": true } }, "body": { "destinationId": { "type": "string", "description": "Destination folder ID or well-known folder name", "default": "archive" } } } }, { "id": "flag_email", "name": "Flag Email", "description": "Set a follow-up flag on an email", "requiresWrite": true, "endpoint": { "method": "PATCH", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}", "params": { "messageId": { "type": "string", "in": "path", "description": "Message ID", "required": true } }, "body": { "flag": { "type": "object", "description": "Microsoft Graph followupFlag object", "required": true } } } }, { "id": "clear_email_flag", "name": "Clear Email Flag", "description": "Clear the follow-up flag on an email", "requiresWrite": true, "endpoint": { "method": "PATCH", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}", "params": { "messageId": { "type": "string", "in": "path", "description": "Message ID", "required": true } }, "body": { "flag": { "type": "object", "description": "Microsoft Graph followupFlag object", "default": { "flagStatus": "notFlagged" } } } } }, { "id": "categorize_email", "name": "Categorize Email", "description": "Replace the categories on an email", "requiresWrite": true, "endpoint": { "method": "PATCH", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}", "params": { "messageId": { "type": "string", "in": "path", "description": "Message ID", "required": true } }, "body": { "categories": { "type": "array", "description": "Outlook category display names", "required": true } } } }, { "id": "list_categories", "name": "List Categories", "description": "List Outlook master categories", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/outlook/masterCategories", "response": { "transform": "value", "historicalSummary": { "collectionKeys": ["value", "categories", "data"], "collectionName": "categories", "itemFields": [{ "name": "id" }, { "name": "displayName" }, { "name": "color" }], "outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }], "omitted": "category provider-specific payload fields" } } } }, { "id": "create_category", "name": "Create Category", "description": "Create an Outlook master category", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/outlook/masterCategories", "body": { "displayName": { "type": "string", "description": "Category display name", "required": true }, "color": { "type": "string", "description": "Preset category color" } } } }, { "id": "update_category", "name": "Update Category", "description": "Update an Outlook master category color", "requiresWrite": true, "endpoint": { "method": "PATCH", "url": "https://graph.microsoft.com/v1.0/me/outlook/masterCategories/{categoryId}", "params": { "categoryId": { "type": "string", "in": "path", "description": "Category ID", "required": true } }, "body": { "color": { "type": "string", "description": "Preset category color", "required": true } } } }, { "id": "delete_category", "name": "Delete Category", "description": "Delete an Outlook master category", "requiresWrite": true, "endpoint": { "method": "DELETE", "url": "https://graph.microsoft.com/v1.0/me/outlook/masterCategories/{categoryId}", "params": { "categoryId": { "type": "string", "in": "path", "description": "Category ID", "required": true } } } }, { "id": "create_draft", "name": "Create Draft", "description": "Create a draft email message", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/messages", "body": { "subject": { "type": "string", "description": "Message subject", "required": true }, "body": { "type": "object", "description": "Microsoft Graph itemBody object, for example { contentType, content }", "required": true }, "toRecipients": { "type": "array", "description": "Microsoft Graph recipient array", "required": true }, "ccRecipients": { "type": "array", "description": "CC recipient array" }, "bccRecipients": { "type": "array", "description": "BCC recipient array" }, "replyTo": { "type": "array", "description": "Reply-to recipient array" }, "importance": { "type": "string", "description": "Message importance: low, normal, or high" }, "categories": { "type": "array", "description": "Outlook category names" } } } }, { "id": "list_drafts", "name": "List Drafts", "description": "List draft email messages", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/mailFolders/drafts/messages", "params": { "$top": { "type": "number", "in": "query", "description": "Maximum drafts to return", "default": 25 }, "$select": { "type": "string", "in": "query", "description": "Comma-separated message fields to return", "default": "id,conversationId,internetMessageId,subject,from,sender,toRecipients,ccRecipients,receivedDateTime,sentDateTime,bodyPreview,categories,isRead,importance,hasAttachments,webLink,flag" }, "$orderby": { "type": "string", "in": "query", "description": "Sort expression", "default": "lastModifiedDateTime desc" } }, "response": { "transform": "value", "historicalSummary": { "collectionKeys": ["value", "data", "messages"], "collectionName": "messages", "itemFields": [{ "name": "id" }, { "name": "conversationId" }, { "name": "internetMessageId" }, { "name": "from", "kind": "contact" }, { "name": "sender", "kind": "contact" }, { "name": "toRecipients", "kind": "contact-array" }, { "name": "ccRecipients", "kind": "contact-array" }, { "name": "subject" }, { "name": "receivedDateTime" }, { "name": "sentDateTime" }, { "name": "bodyPreview", "maxLength": 300 }, { "name": "categories", "kind": "string-array" }, { "name": "isRead" }, { "name": "importance" }, { "name": "hasAttachments" }, { "name": "webLink" }, { "name": "flag", "kind": "object" }], "outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }], "omitted": "large email bodies and provider-specific message fields" } } } }, { "id": "get_draft", "name": "Get Draft", "description": "Get a draft message", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}", "params": { "messageId": { "type": "string", "in": "path", "description": "Draft message ID", "required": true }, "$select": { "type": "string", "in": "query", "description": "Comma-separated message fields to return", "default": "id,conversationId,internetMessageId,subject,body,bodyPreview,from,sender,toRecipients,ccRecipients,bccRecipients,replyTo,receivedDateTime,sentDateTime,categories,isRead,importance,hasAttachments,webLink,flag" } } } }, { "id": "update_draft", "name": "Update Draft", "description": "Update a draft email message", "requiresWrite": true, "endpoint": { "method": "PATCH", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}", "params": { "messageId": { "type": "string", "in": "path", "description": "Draft message ID", "required": true } }, "body": { "subject": { "type": "string", "description": "Message subject" }, "body": { "type": "object", "description": "Microsoft Graph itemBody object, for example { contentType, content }" }, "toRecipients": { "type": "array", "description": "Microsoft Graph recipient array" }, "ccRecipients": { "type": "array", "description": "CC recipient array" }, "bccRecipients": { "type": "array", "description": "BCC recipient array" }, "replyTo": { "type": "array", "description": "Reply-to recipient array" }, "importance": { "type": "string", "description": "Message importance: low, normal, or high" }, "categories": { "type": "array", "description": "Outlook category names" } } } }, { "id": "send_draft", "name": "Send Draft", "description": "Send a draft email message", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}/send", "params": { "messageId": { "type": "string", "in": "path", "description": "Draft message ID", "required": true } } } }, { "id": "delete_draft", "name": "Delete Draft", "description": "Delete a draft email message", "requiresWrite": true, "endpoint": { "method": "DELETE", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}", "params": { "messageId": { "type": "string", "in": "path", "description": "Draft message ID", "required": true } } } }, { "id": "reply_email", "name": "Reply Email", "description": "Reply to an email", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}/reply", "params": { "messageId": { "type": "string", "in": "path", "description": "Message ID", "required": true } }, "body": { "comment": { "type": "string", "description": "Reply comment", "required": true } } } }, { "id": "reply_all_email", "name": "Reply All Email", "description": "Reply all to an email", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}/replyAll", "params": { "messageId": { "type": "string", "in": "path", "description": "Message ID", "required": true } }, "body": { "comment": { "type": "string", "description": "Reply-all comment", "required": true } } } }, { "id": "forward_email", "name": "Forward Email", "description": "Forward an email", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}/forward", "params": { "messageId": { "type": "string", "in": "path", "description": "Message ID", "required": true } }, "body": { "comment": { "type": "string", "description": "Forward comment" }, "toRecipients": { "type": "array", "description": "Recipients to forward to", "required": true } } } }, { "id": "create_reply_draft", "name": "Create Reply Draft", "description": "Create a reply draft for an email", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}/createReply", "params": { "messageId": { "type": "string", "in": "path", "description": "Message ID", "required": true } } } }, { "id": "create_reply_all_draft", "name": "Create Reply All Draft", "description": "Create a reply-all draft for an email", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}/createReplyAll", "params": { "messageId": { "type": "string", "in": "path", "description": "Message ID", "required": true } } } }, { "id": "create_forward_draft", "name": "Create Forward Draft", "description": "Create a forward draft for an email", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}/createForward", "params": { "messageId": { "type": "string", "in": "path", "description": "Message ID", "required": true } } } }, { "id": "list_attachments", "name": "List Attachments", "description": "List attachments for an email message", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}/attachments", "params": { "messageId": { "type": "string", "in": "path", "description": "Message ID", "required": true } }, "response": { "transform": "value", "historicalSummary": { "collectionKeys": ["value", "attachments", "data"], "collectionName": "attachments", "itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "contentType" }, { "name": "size" }, { "name": "isInline" }, { "name": "lastModifiedDateTime" }], "outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }], "omitted": "attachment binary content and provider-specific payload fields" } } } }, { "id": "get_attachment", "name": "Get Attachment", "description": "Get metadata and content for an email attachment", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}/attachments/{attachmentId}", "params": { "messageId": { "type": "string", "in": "path", "description": "Message ID", "required": true }, "attachmentId": { "type": "string", "in": "path", "description": "Attachment ID", "required": true } } } }, { "id": "add_attachment_to_message", "name": "Add Attachment To Message", "description": "Add a small attachment to a draft message", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/messages/{messageId}/attachments", "params": { "messageId": { "type": "string", "in": "path", "description": "Draft message ID", "required": true } }, "body": { "@odata.type": { "type": "string", "description": "Microsoft Graph attachment type", "default": "#microsoft.graph.fileAttachment" }, "name": { "type": "string", "description": "Attachment filename", "required": true }, "contentBytes": { "type": "string", "description": "Base64-encoded attachment content", "required": true }, "contentType": { "type": "string", "description": "Attachment MIME type" }, "isInline": { "type": "boolean", "description": "Whether the attachment is inline", "default": false } } } }, { "id": "list_conversation_messages", "name": "List Conversation Messages", "description": "List messages in an Outlook conversation", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/messages?$filter=conversationId eq '{conversationId}'", "params": { "conversationId": { "type": "string", "in": "path", "description": "Conversation ID", "required": true }, "$top": { "type": "number", "in": "query", "description": "Maximum messages to return", "default": 25 }, "$select": { "type": "string", "in": "query", "description": "Comma-separated message fields to return", "default": "id,conversationId,internetMessageId,subject,from,sender,toRecipients,ccRecipients,receivedDateTime,sentDateTime,bodyPreview,categories,isRead,importance,hasAttachments,webLink,flag" } }, "response": { "transform": "value", "historicalSummary": { "collectionKeys": ["value", "data", "messages"], "collectionName": "messages", "itemFields": [{ "name": "id" }, { "name": "conversationId" }, { "name": "internetMessageId" }, { "name": "from", "kind": "contact" }, { "name": "sender", "kind": "contact" }, { "name": "toRecipients", "kind": "contact-array" }, { "name": "ccRecipients", "kind": "contact-array" }, { "name": "subject" }, { "name": "receivedDateTime" }, { "name": "sentDateTime" }, { "name": "bodyPreview", "maxLength": 300 }, { "name": "categories", "kind": "string-array" }, { "name": "isRead" }, { "name": "importance" }, { "name": "hasAttachments" }, { "name": "webLink" }, { "name": "flag", "kind": "object" }], "outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }], "omitted": "large email bodies and provider-specific message fields" } } } }, { "id": "list_calendars", "name": "List Calendars", "description": "List Outlook calendars", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/calendars", "params": { "$top": { "type": "number", "in": "query", "description": "Maximum calendars to return", "default": 100 } }, "response": { "transform": "value", "historicalSummary": { "collectionKeys": ["value", "calendars", "data"], "collectionName": "calendars", "itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "color" }, { "name": "isDefaultCalendar" }, { "name": "canEdit" }, { "name": "canShare" }, { "name": "owner", "kind": "object" }], "outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }], "omitted": "calendar provider-specific payload fields" } } } }, { "id": "get_calendar", "name": "Get Calendar", "description": "Get metadata for an Outlook calendar", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/calendars/{calendarId}", "params": { "calendarId": { "type": "string", "in": "path", "description": "Calendar ID", "required": true } } } }, { "id": "create_calendar", "name": "Create Calendar", "description": "Create an Outlook calendar", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/calendars", "body": { "name": { "type": "string", "description": "Calendar name", "required": true } } } }, { "id": "update_calendar", "name": "Update Calendar", "description": "Update an Outlook calendar", "requiresWrite": true, "endpoint": { "method": "PATCH", "url": "https://graph.microsoft.com/v1.0/me/calendars/{calendarId}", "params": { "calendarId": { "type": "string", "in": "path", "description": "Calendar ID", "required": true } }, "body": { "name": { "type": "string", "description": "Calendar name" }, "color": { "type": "string", "description": "Calendar color" } } } }, { "id": "delete_calendar", "name": "Delete Calendar", "description": "Delete an Outlook calendar", "requiresWrite": true, "endpoint": { "method": "DELETE", "url": "https://graph.microsoft.com/v1.0/me/calendars/{calendarId}", "params": { "calendarId": { "type": "string", "in": "path", "description": "Calendar ID", "required": true } } } }, { "id": "list_events", "name": "List Events", "description": "List events from a specific Outlook calendar", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/calendars/{calendarId}/events", "params": { "calendarId": { "type": "string", "in": "path", "description": "Calendar ID", "required": true }, "$top": { "type": "number", "in": "query", "description": "Maximum events to return", "default": 25 }, "$select": { "type": "string", "in": "query", "description": "Comma-separated event fields to return", "default": "id,subject,bodyPreview,organizer,attendees,start,end,location,locations,isOnlineMeeting,onlineMeetingProvider,webLink,showAs,responseStatus,categories,importance,hasAttachments,recurrence" }, "$orderby": { "type": "string", "in": "query", "description": "Sort expression", "default": "start/dateTime" }, "$filter": { "type": "string", "in": "query", "description": "OData filter expression" } }, "response": { "transform": "value", "historicalSummary": { "collectionKeys": ["value", "events", "data"], "collectionName": "events", "itemFields": [{ "name": "id" }, { "name": "subject" }, { "name": "organizer", "kind": "contact" }, { "name": "attendees", "kind": "contact-array" }, { "name": "start", "kind": "object" }, { "name": "end", "kind": "object" }, { "name": "location", "kind": "object" }, { "name": "showAs" }, { "name": "responseStatus", "kind": "object" }, { "name": "isOnlineMeeting" }, { "name": "webLink" }, { "name": "bodyPreview", "maxLength": 300 }], "outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }], "omitted": "full event bodies and provider-specific payload fields" } } } }, { "id": "list_calendar_view", "name": "List Calendar View", "description": "List occurrences in a calendar time window", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/calendarView", "params": { "startDateTime": { "type": "string", "in": "query", "description": "Window start ISO date/time", "required": true }, "endDateTime": { "type": "string", "in": "query", "description": "Window end ISO date/time", "required": true }, "$top": { "type": "number", "in": "query", "description": "Maximum events to return", "default": 50 }, "$select": { "type": "string", "in": "query", "description": "Comma-separated event fields to return", "default": "id,subject,bodyPreview,organizer,attendees,start,end,location,locations,isOnlineMeeting,onlineMeetingProvider,webLink,showAs,responseStatus,categories,importance,hasAttachments,recurrence" }, "$orderby": { "type": "string", "in": "query", "description": "Sort expression", "default": "start/dateTime" } }, "response": { "transform": "value", "historicalSummary": { "collectionKeys": ["value", "events", "data"], "collectionName": "events", "itemFields": [{ "name": "id" }, { "name": "subject" }, { "name": "organizer", "kind": "contact" }, { "name": "attendees", "kind": "contact-array" }, { "name": "start", "kind": "object" }, { "name": "end", "kind": "object" }, { "name": "location", "kind": "object" }, { "name": "showAs" }, { "name": "responseStatus", "kind": "object" }, { "name": "isOnlineMeeting" }, { "name": "webLink" }, { "name": "bodyPreview", "maxLength": 300 }], "outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }], "omitted": "full event bodies and provider-specific payload fields" } } } }, { "id": "get_event", "name": "Get Event", "description": "Get details for an Outlook event", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/events/{eventId}", "params": { "eventId": { "type": "string", "in": "path", "description": "Event ID", "required": true }, "$select": { "type": "string", "in": "query", "description": "Comma-separated event fields to return", "default": "id,subject,bodyPreview,organizer,attendees,start,end,location,locations,isOnlineMeeting,onlineMeetingProvider,webLink,showAs,responseStatus,categories,importance,hasAttachments,recurrence" } } } }, { "id": "create_event", "name": "Create Event", "description": "Create an Outlook calendar event", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/events", "body": { "subject": { "type": "string", "description": "Event subject", "required": true }, "body": { "type": "object", "description": "Microsoft Graph itemBody object, for example { contentType, content }" }, "start": { "type": "object", "description": "Start date/time object with dateTime and timeZone", "required": true }, "end": { "type": "object", "description": "End date/time object with dateTime and timeZone", "required": true }, "attendees": { "type": "array", "description": "Attendee array" }, "location": { "type": "object", "description": "Primary event location" }, "locations": { "type": "array", "description": "Additional event locations" }, "categories": { "type": "array", "description": "Outlook category names" }, "importance": { "type": "string", "description": "Event importance: low, normal, or high" }, "showAs": { "type": "string", "description": "Free/busy status such as free, busy, tentative, or oof" }, "isOnlineMeeting": { "type": "boolean", "description": "Whether to create an online meeting" }, "onlineMeetingProvider": { "type": "string", "description": "Online meeting provider such as teamsForBusiness" }, "recurrence": { "type": "object", "description": "Microsoft Graph patternedRecurrence object" } } } }, { "id": "update_event", "name": "Update Event", "description": "Update an Outlook calendar event", "requiresWrite": true, "endpoint": { "method": "PATCH", "url": "https://graph.microsoft.com/v1.0/me/events/{eventId}", "params": { "eventId": { "type": "string", "in": "path", "description": "Event ID", "required": true } }, "body": { "subject": { "type": "string", "description": "Event subject" }, "body": { "type": "object", "description": "Microsoft Graph itemBody object, for example { contentType, content }" }, "start": { "type": "object", "description": "Start date/time object with dateTime and timeZone" }, "end": { "type": "object", "description": "End date/time object with dateTime and timeZone" }, "attendees": { "type": "array", "description": "Attendee array" }, "location": { "type": "object", "description": "Primary event location" }, "locations": { "type": "array", "description": "Additional event locations" }, "categories": { "type": "array", "description": "Outlook category names" }, "importance": { "type": "string", "description": "Event importance: low, normal, or high" }, "showAs": { "type": "string", "description": "Free/busy status such as free, busy, tentative, or oof" }, "isOnlineMeeting": { "type": "boolean", "description": "Whether to create an online meeting" }, "onlineMeetingProvider": { "type": "string", "description": "Online meeting provider such as teamsForBusiness" }, "recurrence": { "type": "object", "description": "Microsoft Graph patternedRecurrence object" } } } }, { "id": "delete_event", "name": "Delete Event", "description": "Delete an Outlook calendar event", "requiresWrite": true, "endpoint": { "method": "DELETE", "url": "https://graph.microsoft.com/v1.0/me/events/{eventId}", "params": { "eventId": { "type": "string", "in": "path", "description": "Event ID", "required": true } } } }, { "id": "respond_to_event", "name": "Respond To Event", "description": "Accept, tentatively accept, or decline an event invitation", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/events/{eventId}/{responseAction}", "params": { "eventId": { "type": "string", "in": "path", "description": "Event ID", "required": true }, "responseAction": { "type": "string", "in": "path", "description": "Response action: accept, tentativelyAccept, or decline", "required": true } }, "body": { "comment": { "type": "string", "description": "Response comment" }, "sendResponse": { "type": "boolean", "description": "Send a response to the organizer", "default": true } } } }, { "id": "get_event_instances", "name": "Get Event Instances", "description": "List instances of a recurring event in a time window", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/events/{eventId}/instances", "params": { "eventId": { "type": "string", "in": "path", "description": "Recurring event ID", "required": true }, "startDateTime": { "type": "string", "in": "query", "description": "Window start ISO date/time", "required": true }, "endDateTime": { "type": "string", "in": "query", "description": "Window end ISO date/time", "required": true }, "$top": { "type": "number", "in": "query", "description": "Maximum instances to return", "default": 50 }, "$select": { "type": "string", "in": "query", "description": "Comma-separated event fields to return", "default": "id,subject,bodyPreview,organizer,attendees,start,end,location,locations,isOnlineMeeting,onlineMeetingProvider,webLink,showAs,responseStatus,categories,importance,hasAttachments,recurrence" } }, "response": { "transform": "value", "historicalSummary": { "collectionKeys": ["value", "events", "data"], "collectionName": "events", "itemFields": [{ "name": "id" }, { "name": "subject" }, { "name": "organizer", "kind": "contact" }, { "name": "attendees", "kind": "contact-array" }, { "name": "start", "kind": "object" }, { "name": "end", "kind": "object" }, { "name": "location", "kind": "object" }, { "name": "showAs" }, { "name": "responseStatus", "kind": "object" }, { "name": "isOnlineMeeting" }, { "name": "webLink" }, { "name": "bodyPreview", "maxLength": 300 }], "outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }], "omitted": "full event bodies and provider-specific payload fields" } } } }, { "id": "list_event_attachments", "name": "List Event Attachments", "description": "List attachments for an event", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/events/{eventId}/attachments", "params": { "eventId": { "type": "string", "in": "path", "description": "Event ID", "required": true } }, "response": { "transform": "value", "historicalSummary": { "collectionKeys": ["value", "attachments", "data"], "collectionName": "attachments", "itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "contentType" }, { "name": "size" }, { "name": "isInline" }, { "name": "lastModifiedDateTime" }], "outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }], "omitted": "attachment binary content and provider-specific payload fields" } } } }, { "id": "get_event_attachment", "name": "Get Event Attachment", "description": "Get metadata and content for an event attachment", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/events/{eventId}/attachments/{attachmentId}", "params": { "eventId": { "type": "string", "in": "path", "description": "Event ID", "required": true }, "attachmentId": { "type": "string", "in": "path", "description": "Attachment ID", "required": true } } } }, { "id": "add_event_attachment", "name": "Add Event Attachment", "description": "Add a small attachment to an event", "requiresWrite": true, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/events/{eventId}/attachments", "params": { "eventId": { "type": "string", "in": "path", "description": "Event ID", "required": true } }, "body": { "@odata.type": { "type": "string", "description": "Microsoft Graph attachment type", "default": "#microsoft.graph.fileAttachment" }, "name": { "type": "string", "description": "Attachment filename", "required": true }, "contentBytes": { "type": "string", "description": "Base64-encoded attachment content", "required": true }, "contentType": { "type": "string", "description": "Attachment MIME type" }, "isInline": { "type": "boolean", "description": "Whether the attachment is inline", "default": false } } } }, { "id": "find_free_time", "name": "Find Free Time", "description": "Return free/busy schedule information for users or resources", "requiresWrite": false, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/calendar/getSchedule", "body": { "schedules": { "type": "array", "description": "Email addresses or schedule IDs to query", "required": true }, "startTime": { "type": "object", "description": "Window start dateTimeTimeZone object", "required": true }, "endTime": { "type": "object", "description": "Window end dateTimeTimeZone object", "required": true }, "availabilityViewInterval": { "type": "number", "description": "Availability view interval in minutes", "default": 30 } }, "response": { "transform": "value", "historicalSummary": { "collectionKeys": ["value", "schedules", "data"], "collectionName": "schedules", "itemFields": [{ "name": "scheduleId" }, { "name": "availabilityView" }, { "name": "scheduleItems", "kind": "object" }, { "name": "workingHours", "kind": "object" }, { "name": "error", "kind": "object" }], "omitted": "provider-specific schedule diagnostics and expanded free/busy payload fields" } } } }, { "id": "get_schedule", "name": "Get Schedule", "description": "Get detailed free/busy schedule information", "requiresWrite": false, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/calendar/getSchedule", "body": { "schedules": { "type": "array", "description": "Email addresses or schedule IDs to query", "required": true }, "startTime": { "type": "object", "description": "Window start dateTimeTimeZone object", "required": true }, "endTime": { "type": "object", "description": "Window end dateTimeTimeZone object", "required": true }, "availabilityViewInterval": { "type": "number", "description": "Availability view interval in minutes", "default": 30 } }, "response": { "transform": "value", "historicalSummary": { "collectionKeys": ["value", "schedules", "data"], "collectionName": "schedules", "itemFields": [{ "name": "scheduleId" }, { "name": "availabilityView" }, { "name": "scheduleItems", "kind": "object" }, { "name": "workingHours", "kind": "object" }, { "name": "error", "kind": "object" }], "omitted": "provider-specific schedule diagnostics and expanded free/busy payload fields" } } } }, { "id": "find_meeting_times", "name": "Find Meeting Times", "description": "Find meeting time suggestions from attendees and constraints", "requiresWrite": false, "endpoint": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/me/findMeetingTimes", "body": { "attendees": { "type": "array", "description": "Attendee array", "required": true }, "timeConstraint": { "type": "object", "description": "Meeting time constraint object", "required": true }, "meetingDuration": { "type": "string", "description": "ISO 8601 meeting duration, for example PT1H" }, "maxCandidates": { "type": "number", "description": "Maximum meeting suggestions to return", "default": 10 }, "isOrganizerOptional": { "type": "boolean", "description": "Whether organizer attendance is optional" }, "returnSuggestionReasons": { "type": "boolean", "description": "Return suggestion reason text", "default": true }, "minimumAttendeePercentage": { "type": "number", "description": "Minimum attendee availability percentage" } }, "response": { "transform": "meetingTimeSuggestions", "historicalSummary": { "collectionKeys": ["meetingTimeSuggestions", "value", "data"], "collectionName": "meetingTimeSuggestions", "itemFields": [{ "name": "confidence" }, { "name": "organizerAvailability" }, { "name": "attendeeAvailability", "kind": "object" }, { "name": "meetingTimeSlot", "kind": "object" }, { "name": "locations", "kind": "object" }, { "name": "suggestionReason", "maxLength": 300 }], "omitted": "provider-specific meeting suggestion diagnostics" } } } }], "prompts": [{ "id": "check_emails", "title": "Check my emails", "prompt": "List my recent unread emails and summarize the most important ones.", "category": "productivity", "icon": "mail" }, { "id": "search_emails", "title": "Search my emails", "prompt": "Search my emails for specific topics, senders, or date ranges.", "category": "productivity", "icon": "search" }, { "id": "draft_email", "title": "Draft an email", "prompt": "Help me draft a professional email with proper formatting and tone.", "category": "productivity", "icon": "compose" }], "suggestedWith": ["teams", "calendar", "gmail"] },
|
|
23
23
|
{ "name": "posthog", "displayName": "PostHog", "icon": "posthog.svg", "description": "Access analytics, feature flags, and user insights from PostHog", "auth": { "type": "api-key", "requiredApis": [{ "name": "PostHog API", "enableUrl": "https://app.posthog.com/project/settings" }], "keyName": "POSTHOG_API_KEY", "headerName": "Authorization", "headerPrefix": "Bearer" }, "envVars": [{ "name": "POSTHOG_API_KEY", "description": "PostHog Personal API Key", "required": true, "sensitive": true, "docsUrl": "https://posthog.com/docs/api/overview" }, { "name": "POSTHOG_HOST", "description": "PostHog API host (defaults to https://app.posthog.com)", "required": false, "sensitive": false, "docsUrl": "https://posthog.com/docs/self-host" }], "tools": [{ "id": "get_trends", "name": "Get Trends", "description": "Retrieve event trends and analytics data", "requiresWrite": false }, { "id": "list_feature_flags", "name": "List Feature Flags", "description": "List all feature flags in your PostHog project", "requiresWrite": false }, { "id": "list_persons", "name": "List Persons", "description": "List persons/users tracked in PostHog", "requiresWrite": false }, { "id": "capture_event", "name": "Capture Event", "description": "Track a custom event in PostHog", "requiresWrite": true }], "prompts": [{ "id": "trend_analysis", "title": "Trend analysis", "prompt": "Show me the trends for key events in my PostHog project over the last 7 days.", "category": "analytics", "icon": "chart" }, { "id": "feature_flag_status", "title": "Feature flag status", "prompt": "List all active feature flags and their current rollout status.", "category": "analytics", "icon": "flag" }, { "id": "user_insights", "title": "User insights", "prompt": "Give me insights about recent user activity and top users in my PostHog project.", "category": "analytics", "icon": "users" }], "suggestedWith": ["slack", "analytics", "monitoring"] },
|
|
24
24
|
{ "name": "salesforce", "displayName": "Salesforce", "icon": "salesforce.svg", "description": "Manage accounts, contacts, opportunities, and leads in your Salesforce CRM", "auth": { "type": "oauth2", "provider": "salesforce", "authorizationUrl": "https://login.salesforce.com/services/oauth2/authorize", "tokenUrl": "https://login.salesforce.com/services/oauth2/token", "scopes": ["api", "refresh_token", "offline_access"], "tokenAuthMethod": "request_body", "requiredApis": [{ "name": "Salesforce Connected App", "enableUrl": "https://login.salesforce.com/" }] }, "envVars": [{ "name": "SALESFORCE_CLIENT_ID", "description": "Salesforce OAuth Consumer Key (from your Connected App)", "required": true, "sensitive": false, "docsUrl": "https://help.salesforce.com/s/articleView?id=sf.connected_app_create.htm" }, { "name": "SALESFORCE_CLIENT_SECRET", "description": "Salesforce OAuth Consumer Secret", "required": true, "sensitive": true, "docsUrl": "https://help.salesforce.com/s/articleView?id=sf.connected_app_create.htm" }], "tools": [{ "id": "list_accounts", "name": "List Accounts", "description": "List accounts from your Salesforce CRM", "requiresWrite": false, "endpoint": { "method": "GET", "url": "{{oauth.raw.instance_url}}/services/data/v61.0/query", "params": { "q": { "type": "string", "in": "query", "description": "SOQL query for accounts", "default": "SELECT Id, Name, Type, Industry, Phone, Website FROM Account ORDER BY LastModifiedDate DESC LIMIT 50" } }, "response": { "transform": "records" } } }, { "id": "get_account", "name": "Get Account", "description": "Get detailed information about a specific account", "requiresWrite": false, "endpoint": { "method": "GET", "url": "{{oauth.raw.instance_url}}/services/data/v61.0/sobjects/Account/{accountId}", "params": { "accountId": { "type": "string", "in": "path", "description": "Salesforce Account ID", "required": true } } } }, { "id": "list_contacts", "name": "List Contacts", "description": "List contacts from your Salesforce CRM", "requiresWrite": false, "endpoint": { "method": "GET", "url": "{{oauth.raw.instance_url}}/services/data/v61.0/query", "params": { "q": { "type": "string", "in": "query", "description": "SOQL query for contacts", "default": "SELECT Id, FirstName, LastName, Email, Phone, AccountId FROM Contact ORDER BY LastModifiedDate DESC LIMIT 50" } }, "response": { "transform": "records" } } }, { "id": "list_opportunities", "name": "List Opportunities", "description": "List sales opportunities from your Salesforce CRM", "requiresWrite": false, "endpoint": { "method": "GET", "url": "{{oauth.raw.instance_url}}/services/data/v61.0/query", "params": { "q": { "type": "string", "in": "query", "description": "SOQL query for opportunities", "default": "SELECT Id, Name, StageName, Amount, CloseDate, AccountId FROM Opportunity ORDER BY CloseDate DESC LIMIT 50" } }, "response": { "transform": "records" } } }, { "id": "create_lead", "name": "Create Lead", "description": "Create a new lead in Salesforce CRM", "requiresWrite": true, "endpoint": { "method": "POST", "url": "{{oauth.raw.instance_url}}/services/data/v61.0/sobjects/Lead", "body": { "LastName": { "type": "string", "description": "Lead last name", "required": true }, "Company": { "type": "string", "description": "Lead company", "required": true }, "FirstName": { "type": "string", "description": "Lead first name" }, "Email": { "type": "string", "description": "Lead email address" }, "Phone": { "type": "string", "description": "Lead phone number" }, "Status": { "type": "string", "description": "Lead status" } } } }], "prompts": [{ "id": "find_accounts", "title": "Find accounts", "prompt": "Search for accounts in my Salesforce CRM and show me their key information.", "category": "crm", "icon": "search" }, { "id": "create_lead", "title": "Create a lead", "prompt": "Create a new lead in Salesforce CRM with the information I provide.", "category": "crm", "icon": "plus" }, { "id": "pipeline_summary", "title": "Pipeline summary", "prompt": "Show me a summary of my current sales opportunities and pipeline status.", "category": "crm", "icon": "chart" }, { "id": "contact_lookup", "title": "Contact lookup", "prompt": "Find and display information about specific contacts in my Salesforce CRM.", "category": "crm", "icon": "user" }], "suggestedWith": ["gmail", "slack", "calendar"] },
|
|
25
25
|
{ "name": "sentry", "displayName": "Sentry", "icon": "sentry.svg", "description": "Monitor errors, track issues, and manage Sentry projects", "auth": { "type": "oauth2", "provider": "sentry", "authorizationUrl": "https://sentry.io/oauth/authorize/", "tokenUrl": "https://sentry.io/oauth/token/", "scopes": ["org:read", "project:read", "event:read", "event:write"], "tokenAuthMethod": "none", "pkce": true, "supportsRefreshToken": true, "requiredApis": [{ "name": "Sentry OAuth Application", "enableUrl": "https://sentry.io/settings/account/api/applications/" }] }, "envVars": [{ "name": "SENTRY_CLIENT_ID", "description": "Sentry OAuth Client ID from your public OAuth application", "required": true, "sensitive": false, "docsUrl": "https://docs.sentry.io/api/auth/" }, { "name": "SENTRY_ORG", "description": "Default Sentry organization slug for prompts that do not specify one", "required": false, "sensitive": false, "docsUrl": "https://docs.sentry.io/api/organizations/" }], "tools": [{ "id": "list_organizations", "name": "List Organizations", "description": "List Sentry organizations available to the authenticated user so agents can discover organization slugs before project or issue calls", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://sentry.io/api/0/organizations/", "params": { "owner": { "type": "boolean", "in": "query", "description": "Restrict results to organizations where the authenticated user is an owner" }, "query": { "type": "string", "in": "query", "description": "Filter organizations by name, slug, status, id, email, or member id" }, "cursor": { "type": "string", "in": "query", "description": "Pagination cursor" } } } }, { "id": "list_projects", "name": "List Projects", "description": "List Sentry projects for an organization", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://sentry.io/api/0/organizations/{organizationSlug}/projects/", "params": { "organizationSlug": { "type": "string", "in": "path", "description": "Sentry organization slug", "required": true }, "cursor": { "type": "string", "in": "query", "description": "Pagination cursor" } } } }, { "id": "list_issues", "name": "List Issues", "description": "List Sentry issues for a project", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://sentry.io/api/0/projects/{organizationSlug}/{projectSlug}/issues/", "params": { "organizationSlug": { "type": "string", "in": "path", "description": "Sentry organization slug", "required": true }, "projectSlug": { "type": "string", "in": "path", "description": "Sentry project slug", "required": true }, "query": { "type": "string", "in": "query", "description": "Sentry issue search query, for example is:unresolved" }, "statsPeriod": { "type": "string", "in": "query", "description": "Stats period, for example 24h, 14d, or 30d" }, "limit": { "type": "number", "in": "query", "description": "Maximum number of issues to return" }, "cursor": { "type": "string", "in": "query", "description": "Pagination cursor" } } } }, { "id": "get_issue", "name": "Get Issue", "description": "Get details for a Sentry issue", "requiresWrite": false, "endpoint": { "method": "GET", "url": "https://sentry.io/api/0/organizations/{organizationSlug}/issues/{issueId}/", "params": { "organizationSlug": { "type": "string", "in": "path", "description": "Sentry organization slug", "required": true }, "issueId": { "type": "string", "in": "path", "description": "Sentry issue ID", "required": true }, "collapse": { "type": "string[]", "in": "query", "description": "Optional response sections to collapse" } } } }, { "id": "resolve_issue", "name": "Resolve Issue", "description": "Resolve a Sentry issue", "requiresWrite": true, "endpoint": { "method": "PUT", "url": "https://sentry.io/api/0/organizations/{organizationSlug}/issues/{issueId}/", "params": { "organizationSlug": { "type": "string", "in": "path", "description": "Sentry organization slug", "required": true }, "issueId": { "type": "string", "in": "path", "description": "Sentry issue ID", "required": true } }, "body": { "status": { "type": "string", "description": "New issue status", "default": "resolved" }, "statusDetails": { "type": "object", "description": "Optional Sentry status details" } } } }], "prompts": [{ "id": "check_errors", "title": "Check recent errors", "prompt": "Show me recent errors and issues in my Sentry projects and help me prioritize which ones to fix.", "category": "development", "icon": "alert-triangle" }, { "id": "analyze_issue", "title": "Analyze an issue", "prompt": "Help me analyze a specific Sentry issue, understand its root cause, and suggest a fix.", "category": "development", "icon": "bug" }, { "id": "project_health", "title": "Project health check", "prompt": "Give me an overview of the health of my Sentry projects, including error rates and trending issues.", "category": "analytics", "icon": "activity" }], "suggestedWith": ["github", "slack", "linear"], "category": "development" },
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_tool_summaries.d.ts","sourceRoot":"","sources":["../../../src/src/integrations/_tool_summaries.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,oCAAoC,EAAE,MAAM,aAAa,CAAC;AAExE,eAAO,MAAM,uBAAuB,EAAE,MAAM,CAAC,MAAM,EAAE,oCAAoC,
|
|
1
|
+
{"version":3,"file":"_tool_summaries.d.ts","sourceRoot":"","sources":["../../../src/src/integrations/_tool_summaries.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,oCAAoC,EAAE,MAAM,aAAa,CAAC;AAExE,eAAO,MAAM,uBAAuB,EAAE,MAAM,CAAC,MAAM,EAAE,oCAAoC,CAuqCxF,CAAC"}
|
|
@@ -898,15 +898,180 @@ export const historicalToolSummaries = {
|
|
|
898
898
|
"outputFields": [{ "name": "pageInfo", "kind": "object" }],
|
|
899
899
|
"omitted": "issue descriptions, comments, and provider-specific payload fields",
|
|
900
900
|
},
|
|
901
|
+
"outlook__find_free_time": {
|
|
902
|
+
"collectionKeys": ["value", "schedules", "data"],
|
|
903
|
+
"collectionName": "schedules",
|
|
904
|
+
"itemFields": [
|
|
905
|
+
{ "name": "scheduleId" },
|
|
906
|
+
{ "name": "availabilityView" },
|
|
907
|
+
{ "name": "scheduleItems", "kind": "object" },
|
|
908
|
+
{ "name": "workingHours", "kind": "object" },
|
|
909
|
+
{ "name": "error", "kind": "object" },
|
|
910
|
+
],
|
|
911
|
+
"omitted": "provider-specific schedule diagnostics and expanded free/busy payload fields",
|
|
912
|
+
},
|
|
913
|
+
"outlook__find_meeting_times": {
|
|
914
|
+
"collectionKeys": ["meetingTimeSuggestions", "value", "data"],
|
|
915
|
+
"collectionName": "meetingTimeSuggestions",
|
|
916
|
+
"itemFields": [
|
|
917
|
+
{ "name": "confidence" },
|
|
918
|
+
{ "name": "organizerAvailability" },
|
|
919
|
+
{ "name": "attendeeAvailability", "kind": "object" },
|
|
920
|
+
{ "name": "meetingTimeSlot", "kind": "object" },
|
|
921
|
+
{ "name": "locations", "kind": "object" },
|
|
922
|
+
{ "name": "suggestionReason", "maxLength": 300 },
|
|
923
|
+
],
|
|
924
|
+
"omitted": "provider-specific meeting suggestion diagnostics",
|
|
925
|
+
},
|
|
926
|
+
"outlook__get_event_instances": {
|
|
927
|
+
"collectionKeys": ["value", "events", "data"],
|
|
928
|
+
"collectionName": "events",
|
|
929
|
+
"itemFields": [
|
|
930
|
+
{ "name": "id" },
|
|
931
|
+
{ "name": "subject" },
|
|
932
|
+
{ "name": "organizer", "kind": "contact" },
|
|
933
|
+
{ "name": "attendees", "kind": "contact-array" },
|
|
934
|
+
{ "name": "start", "kind": "object" },
|
|
935
|
+
{ "name": "end", "kind": "object" },
|
|
936
|
+
{ "name": "location", "kind": "object" },
|
|
937
|
+
{ "name": "showAs" },
|
|
938
|
+
{ "name": "responseStatus", "kind": "object" },
|
|
939
|
+
{ "name": "isOnlineMeeting" },
|
|
940
|
+
{ "name": "webLink" },
|
|
941
|
+
{ "name": "bodyPreview", "maxLength": 300 },
|
|
942
|
+
],
|
|
943
|
+
"outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }],
|
|
944
|
+
"omitted": "full event bodies and provider-specific payload fields",
|
|
945
|
+
},
|
|
946
|
+
"outlook__get_schedule": {
|
|
947
|
+
"collectionKeys": ["value", "schedules", "data"],
|
|
948
|
+
"collectionName": "schedules",
|
|
949
|
+
"itemFields": [
|
|
950
|
+
{ "name": "scheduleId" },
|
|
951
|
+
{ "name": "availabilityView" },
|
|
952
|
+
{ "name": "scheduleItems", "kind": "object" },
|
|
953
|
+
{ "name": "workingHours", "kind": "object" },
|
|
954
|
+
{ "name": "error", "kind": "object" },
|
|
955
|
+
],
|
|
956
|
+
"omitted": "provider-specific schedule diagnostics and expanded free/busy payload fields",
|
|
957
|
+
},
|
|
958
|
+
"outlook__list_attachments": {
|
|
959
|
+
"collectionKeys": ["value", "attachments", "data"],
|
|
960
|
+
"collectionName": "attachments",
|
|
961
|
+
"itemFields": [
|
|
962
|
+
{ "name": "id" },
|
|
963
|
+
{ "name": "name" },
|
|
964
|
+
{ "name": "contentType" },
|
|
965
|
+
{ "name": "size" },
|
|
966
|
+
{ "name": "isInline" },
|
|
967
|
+
{ "name": "lastModifiedDateTime" },
|
|
968
|
+
],
|
|
969
|
+
"outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }],
|
|
970
|
+
"omitted": "attachment binary content and provider-specific payload fields",
|
|
971
|
+
},
|
|
972
|
+
"outlook__list_calendar_view": {
|
|
973
|
+
"collectionKeys": ["value", "events", "data"],
|
|
974
|
+
"collectionName": "events",
|
|
975
|
+
"itemFields": [
|
|
976
|
+
{ "name": "id" },
|
|
977
|
+
{ "name": "subject" },
|
|
978
|
+
{ "name": "organizer", "kind": "contact" },
|
|
979
|
+
{ "name": "attendees", "kind": "contact-array" },
|
|
980
|
+
{ "name": "start", "kind": "object" },
|
|
981
|
+
{ "name": "end", "kind": "object" },
|
|
982
|
+
{ "name": "location", "kind": "object" },
|
|
983
|
+
{ "name": "showAs" },
|
|
984
|
+
{ "name": "responseStatus", "kind": "object" },
|
|
985
|
+
{ "name": "isOnlineMeeting" },
|
|
986
|
+
{ "name": "webLink" },
|
|
987
|
+
{ "name": "bodyPreview", "maxLength": 300 },
|
|
988
|
+
],
|
|
989
|
+
"outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }],
|
|
990
|
+
"omitted": "full event bodies and provider-specific payload fields",
|
|
991
|
+
},
|
|
992
|
+
"outlook__list_calendars": {
|
|
993
|
+
"collectionKeys": ["value", "calendars", "data"],
|
|
994
|
+
"collectionName": "calendars",
|
|
995
|
+
"itemFields": [
|
|
996
|
+
{ "name": "id" },
|
|
997
|
+
{ "name": "name" },
|
|
998
|
+
{ "name": "color" },
|
|
999
|
+
{ "name": "isDefaultCalendar" },
|
|
1000
|
+
{ "name": "canEdit" },
|
|
1001
|
+
{ "name": "canShare" },
|
|
1002
|
+
{ "name": "owner", "kind": "object" },
|
|
1003
|
+
],
|
|
1004
|
+
"outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }],
|
|
1005
|
+
"omitted": "calendar provider-specific payload fields",
|
|
1006
|
+
},
|
|
1007
|
+
"outlook__list_categories": {
|
|
1008
|
+
"collectionKeys": ["value", "categories", "data"],
|
|
1009
|
+
"collectionName": "categories",
|
|
1010
|
+
"itemFields": [{ "name": "id" }, { "name": "displayName" }, { "name": "color" }],
|
|
1011
|
+
"outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }],
|
|
1012
|
+
"omitted": "category provider-specific payload fields",
|
|
1013
|
+
},
|
|
1014
|
+
"outlook__list_conversation_messages": {
|
|
1015
|
+
"collectionKeys": ["value", "data", "messages"],
|
|
1016
|
+
"collectionName": "messages",
|
|
1017
|
+
"itemFields": [
|
|
1018
|
+
{ "name": "id" },
|
|
1019
|
+
{ "name": "conversationId" },
|
|
1020
|
+
{ "name": "internetMessageId" },
|
|
1021
|
+
{ "name": "from", "kind": "contact" },
|
|
1022
|
+
{ "name": "sender", "kind": "contact" },
|
|
1023
|
+
{ "name": "toRecipients", "kind": "contact-array" },
|
|
1024
|
+
{ "name": "ccRecipients", "kind": "contact-array" },
|
|
1025
|
+
{ "name": "subject" },
|
|
1026
|
+
{ "name": "receivedDateTime" },
|
|
1027
|
+
{ "name": "sentDateTime" },
|
|
1028
|
+
{ "name": "bodyPreview", "maxLength": 300 },
|
|
1029
|
+
{ "name": "categories", "kind": "string-array" },
|
|
1030
|
+
{ "name": "isRead" },
|
|
1031
|
+
{ "name": "importance" },
|
|
1032
|
+
{ "name": "hasAttachments" },
|
|
1033
|
+
{ "name": "webLink" },
|
|
1034
|
+
{ "name": "flag", "kind": "object" },
|
|
1035
|
+
],
|
|
1036
|
+
"outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }],
|
|
1037
|
+
"omitted": "large email bodies and provider-specific message fields",
|
|
1038
|
+
},
|
|
1039
|
+
"outlook__list_drafts": {
|
|
1040
|
+
"collectionKeys": ["value", "data", "messages"],
|
|
1041
|
+
"collectionName": "messages",
|
|
1042
|
+
"itemFields": [
|
|
1043
|
+
{ "name": "id" },
|
|
1044
|
+
{ "name": "conversationId" },
|
|
1045
|
+
{ "name": "internetMessageId" },
|
|
1046
|
+
{ "name": "from", "kind": "contact" },
|
|
1047
|
+
{ "name": "sender", "kind": "contact" },
|
|
1048
|
+
{ "name": "toRecipients", "kind": "contact-array" },
|
|
1049
|
+
{ "name": "ccRecipients", "kind": "contact-array" },
|
|
1050
|
+
{ "name": "subject" },
|
|
1051
|
+
{ "name": "receivedDateTime" },
|
|
1052
|
+
{ "name": "sentDateTime" },
|
|
1053
|
+
{ "name": "bodyPreview", "maxLength": 300 },
|
|
1054
|
+
{ "name": "categories", "kind": "string-array" },
|
|
1055
|
+
{ "name": "isRead" },
|
|
1056
|
+
{ "name": "importance" },
|
|
1057
|
+
{ "name": "hasAttachments" },
|
|
1058
|
+
{ "name": "webLink" },
|
|
1059
|
+
{ "name": "flag", "kind": "object" },
|
|
1060
|
+
],
|
|
1061
|
+
"outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }],
|
|
1062
|
+
"omitted": "large email bodies and provider-specific message fields",
|
|
1063
|
+
},
|
|
901
1064
|
"outlook__list_emails": {
|
|
902
1065
|
"collectionKeys": ["value", "data", "messages"],
|
|
903
1066
|
"collectionName": "messages",
|
|
904
1067
|
"itemFields": [
|
|
905
1068
|
{ "name": "id" },
|
|
906
1069
|
{ "name": "conversationId" },
|
|
1070
|
+
{ "name": "internetMessageId" },
|
|
907
1071
|
{ "name": "from", "kind": "contact" },
|
|
908
1072
|
{ "name": "sender", "kind": "contact" },
|
|
909
1073
|
{ "name": "toRecipients", "kind": "contact-array" },
|
|
1074
|
+
{ "name": "ccRecipients", "kind": "contact-array" },
|
|
910
1075
|
{ "name": "subject" },
|
|
911
1076
|
{ "name": "receivedDateTime" },
|
|
912
1077
|
{ "name": "sentDateTime" },
|
|
@@ -915,10 +1080,46 @@ export const historicalToolSummaries = {
|
|
|
915
1080
|
{ "name": "isRead" },
|
|
916
1081
|
{ "name": "importance" },
|
|
917
1082
|
{ "name": "hasAttachments" },
|
|
1083
|
+
{ "name": "webLink" },
|
|
1084
|
+
{ "name": "flag", "kind": "object" },
|
|
918
1085
|
],
|
|
919
1086
|
"outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }],
|
|
920
1087
|
"omitted": "large email bodies and provider-specific message fields",
|
|
921
1088
|
},
|
|
1089
|
+
"outlook__list_event_attachments": {
|
|
1090
|
+
"collectionKeys": ["value", "attachments", "data"],
|
|
1091
|
+
"collectionName": "attachments",
|
|
1092
|
+
"itemFields": [
|
|
1093
|
+
{ "name": "id" },
|
|
1094
|
+
{ "name": "name" },
|
|
1095
|
+
{ "name": "contentType" },
|
|
1096
|
+
{ "name": "size" },
|
|
1097
|
+
{ "name": "isInline" },
|
|
1098
|
+
{ "name": "lastModifiedDateTime" },
|
|
1099
|
+
],
|
|
1100
|
+
"outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }],
|
|
1101
|
+
"omitted": "attachment binary content and provider-specific payload fields",
|
|
1102
|
+
},
|
|
1103
|
+
"outlook__list_events": {
|
|
1104
|
+
"collectionKeys": ["value", "events", "data"],
|
|
1105
|
+
"collectionName": "events",
|
|
1106
|
+
"itemFields": [
|
|
1107
|
+
{ "name": "id" },
|
|
1108
|
+
{ "name": "subject" },
|
|
1109
|
+
{ "name": "organizer", "kind": "contact" },
|
|
1110
|
+
{ "name": "attendees", "kind": "contact-array" },
|
|
1111
|
+
{ "name": "start", "kind": "object" },
|
|
1112
|
+
{ "name": "end", "kind": "object" },
|
|
1113
|
+
{ "name": "location", "kind": "object" },
|
|
1114
|
+
{ "name": "showAs" },
|
|
1115
|
+
{ "name": "responseStatus", "kind": "object" },
|
|
1116
|
+
{ "name": "isOnlineMeeting" },
|
|
1117
|
+
{ "name": "webLink" },
|
|
1118
|
+
{ "name": "bodyPreview", "maxLength": 300 },
|
|
1119
|
+
],
|
|
1120
|
+
"outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }],
|
|
1121
|
+
"omitted": "full event bodies and provider-specific payload fields",
|
|
1122
|
+
},
|
|
922
1123
|
"outlook__list_folders": {
|
|
923
1124
|
"collectionKeys": ["value", "folders", "data"],
|
|
924
1125
|
"collectionName": "folders",
|
|
@@ -939,9 +1140,11 @@ export const historicalToolSummaries = {
|
|
|
939
1140
|
"itemFields": [
|
|
940
1141
|
{ "name": "id" },
|
|
941
1142
|
{ "name": "conversationId" },
|
|
1143
|
+
{ "name": "internetMessageId" },
|
|
942
1144
|
{ "name": "from", "kind": "contact" },
|
|
943
1145
|
{ "name": "sender", "kind": "contact" },
|
|
944
1146
|
{ "name": "toRecipients", "kind": "contact-array" },
|
|
1147
|
+
{ "name": "ccRecipients", "kind": "contact-array" },
|
|
945
1148
|
{ "name": "subject" },
|
|
946
1149
|
{ "name": "receivedDateTime" },
|
|
947
1150
|
{ "name": "sentDateTime" },
|
|
@@ -950,6 +1153,8 @@ export const historicalToolSummaries = {
|
|
|
950
1153
|
{ "name": "isRead" },
|
|
951
1154
|
{ "name": "importance" },
|
|
952
1155
|
{ "name": "hasAttachments" },
|
|
1156
|
+
{ "name": "webLink" },
|
|
1157
|
+
{ "name": "flag", "kind": "object" },
|
|
953
1158
|
],
|
|
954
1159
|
"outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }],
|
|
955
1160
|
"omitted": "large email bodies and provider-specific message fields",
|