teams-api 0.17.0 โ 0.19.0
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/README.md +8 -11
- package/dist/actions/conversation-actions.d.ts +1 -1
- package/dist/actions/conversation-actions.d.ts.map +1 -1
- package/dist/actions/conversation-actions.js +15 -73
- package/dist/actions/conversation-actions.js.map +1 -1
- package/dist/actions/file-actions.d.ts.map +1 -1
- package/dist/actions/file-actions.js +2 -23
- package/dist/actions/file-actions.js.map +1 -1
- package/dist/actions/formatters.d.ts +3 -8
- package/dist/actions/formatters.d.ts.map +1 -1
- package/dist/actions/formatters.js +4 -13
- package/dist/actions/formatters.js.map +1 -1
- package/dist/actions/message-actions.d.ts.map +1 -1
- package/dist/actions/message-actions.js +30 -177
- package/dist/actions/message-actions.js.map +1 -1
- package/dist/actions/search-actions.d.ts +1 -1
- package/dist/actions/search-actions.d.ts.map +1 -1
- package/dist/actions/search-actions.js +4 -53
- package/dist/actions/search-actions.js.map +1 -1
- package/dist/actions/utility-actions.d.ts.map +1 -1
- package/dist/actions/utility-actions.js +6 -91
- package/dist/actions/utility-actions.js.map +1 -1
- package/dist/api/chat-service.d.ts +10 -0
- package/dist/api/chat-service.d.ts.map +1 -1
- package/dist/api/chat-service.js +36 -0
- package/dist/api/chat-service.js.map +1 -1
- package/dist/cli.js +4 -7
- package/dist/cli.js.map +1 -1
- package/dist/emoji-map.d.ts.map +1 -1
- package/dist/emoji-map.js +46 -26
- package/dist/emoji-map.js.map +1 -1
- package/dist/mcp-server.d.ts +1 -0
- package/dist/mcp-server.d.ts.map +1 -1
- package/dist/mcp-server.js +95 -40
- package/dist/mcp-server.js.map +1 -1
- package/dist/server-instructions.d.ts.map +1 -1
- package/dist/server-instructions.js +4 -1
- package/dist/server-instructions.js.map +1 -1
- package/dist/teams-client.d.ts.map +1 -1
- package/dist/teams-client.js +17 -0
- package/dist/teams-client.js.map +1 -1
- package/dist/telemetry.d.ts +60 -0
- package/dist/telemetry.d.ts.map +1 -0
- package/dist/telemetry.js +142 -0
- package/dist/telemetry.js.map +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -280,8 +280,8 @@ The examples below use `teams-api` for readability. If you are not installing gl
|
|
|
280
280
|
| `--substrate-token <token>` | Optional Substrate bearer token (advanced/manual) |
|
|
281
281
|
| `--debug-port <port>` | Chrome debug port (default: 9222) |
|
|
282
282
|
| `--region <region>` | API region override. Auto-detected for login/debug auth; required with `--token` |
|
|
283
|
-
| `--format <format>` | Output format:
|
|
284
|
-
| `--output <file>` | Export output to file (default format:
|
|
283
|
+
| `--format <format>` | Output format: concise, detailed |
|
|
284
|
+
| `--output <file>` | Export output to file (default format: concise) |
|
|
285
285
|
|
|
286
286
|
### Examples
|
|
287
287
|
|
|
@@ -293,7 +293,7 @@ teams-api auth --login
|
|
|
293
293
|
teams-api auth --auto --email you@example.com
|
|
294
294
|
|
|
295
295
|
# List conversations
|
|
296
|
-
teams-api list-conversations --login --limit 20 --format
|
|
296
|
+
teams-api list-conversations --login --limit 20 --format detailed
|
|
297
297
|
|
|
298
298
|
# Find a conversation by topic
|
|
299
299
|
teams-api find-conversation --auto --email you@example.com --query "Design Review"
|
|
@@ -304,7 +304,7 @@ teams-api find-one-on-one --auto --email you@example.com --person-name "Jane Doe
|
|
|
304
304
|
# Read messages (by topic name, person name, or direct ID)
|
|
305
305
|
teams-api get-messages --auto --email you@example.com --chat "Design Review"
|
|
306
306
|
teams-api get-messages --auto --email you@example.com --to "Jane Doe" --max-pages 5
|
|
307
|
-
teams-api get-messages --auto --email you@example.com --conversation-id "19:abc@thread.v2" --format
|
|
307
|
+
teams-api get-messages --auto --email you@example.com --conversation-id "19:abc@thread.v2" --format detailed
|
|
308
308
|
|
|
309
309
|
# Newest-first order (API returns newest-first; default is oldest-first/chronological)
|
|
310
310
|
teams-api get-messages --auto --email you@example.com --chat "General" --order newest-first
|
|
@@ -314,19 +314,16 @@ teams-api send-message --auto --email you@example.com --to "Jane Doe" --content
|
|
|
314
314
|
teams-api send-message --auto --email you@example.com --chat "Design Review" --content "Status update"
|
|
315
315
|
|
|
316
316
|
# List members
|
|
317
|
-
teams-api get-members --auto --email you@example.com --chat "Design Review"
|
|
317
|
+
teams-api get-members --auto --email you@example.com --chat "Design Review"
|
|
318
318
|
|
|
319
319
|
# Get current user info
|
|
320
320
|
teams-api whoami --auto --email you@example.com
|
|
321
321
|
|
|
322
|
-
# Export messages to a file (default format:
|
|
322
|
+
# Export messages to a file (default format: concise)
|
|
323
323
|
teams-api get-messages --auto --email you@example.com --chat "General" --output exports/general.md
|
|
324
324
|
|
|
325
325
|
# Export as JSON to a file
|
|
326
|
-
teams-api get-messages --auto --email you@example.com --chat "General" --format
|
|
327
|
-
|
|
328
|
-
# Toon format (fun ASCII art output)
|
|
329
|
-
teams-api list-conversations --auto --email you@example.com --format toon
|
|
326
|
+
teams-api get-messages --auto --email you@example.com --chat "General" --format detailed --output exports/general.json
|
|
330
327
|
```
|
|
331
328
|
|
|
332
329
|
## MCP server
|
|
@@ -372,7 +369,7 @@ Use this only if you already have tokens from another flow or need to avoid brow
|
|
|
372
369
|
|
|
373
370
|
### Available tools
|
|
374
371
|
|
|
375
|
-
All MCP tools accept an optional `format` parameter (`
|
|
372
|
+
All MCP tools accept an optional `format` parameter (`concise` or `detailed`). Default format is `concise`.
|
|
376
373
|
|
|
377
374
|
| Tool | Description |
|
|
378
375
|
| -------------------------- | ----------------------------------------------------- |
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Actions: list-conversations, find-conversation, find-one-on-one.
|
|
5
5
|
*/
|
|
6
|
-
import {
|
|
6
|
+
import type { ActionDefinition } from "./formatters.js";
|
|
7
7
|
export declare const listConversations: ActionDefinition;
|
|
8
8
|
export declare const findConversation: ActionDefinition;
|
|
9
9
|
export declare const findOneOnOne: ActionDefinition;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"conversation-actions.d.ts","sourceRoot":"","sources":["../../src/actions/conversation-actions.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"conversation-actions.d.ts","sourceRoot":"","sources":["../../src/actions/conversation-actions.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAExD,eAAO,MAAM,iBAAiB,EAAE,gBAoC/B,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,gBAkC9B,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,gBAgC1B,CAAC"}
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
8
|
exports.findOneOnOne = exports.findConversation = exports.listConversations = void 0;
|
|
9
|
-
const formatters_js_1 = require("./formatters.js");
|
|
10
9
|
exports.listConversations = {
|
|
11
10
|
name: "list-conversations",
|
|
12
11
|
title: "List Teams Conversations",
|
|
@@ -25,43 +24,18 @@ exports.listConversations = {
|
|
|
25
24
|
const limit = parameters.limit ?? 50;
|
|
26
25
|
return client.listConversations({ pageSize: limit });
|
|
27
26
|
},
|
|
28
|
-
|
|
29
|
-
const conversations = result;
|
|
30
|
-
const lines = [`\n${conversations.length} conversations:\n`];
|
|
31
|
-
for (let i = 0; i < conversations.length; i++) {
|
|
32
|
-
const conversation = conversations[i];
|
|
33
|
-
const lastMessage = conversation.lastMessageTime?.slice(0, 10) ?? "unknown";
|
|
34
|
-
const topic = conversation.topic || "(untitled)";
|
|
35
|
-
lines.push(` [${i}] ${conversation.threadType}: "${topic}" ` +
|
|
36
|
-
`(last: ${lastMessage})`);
|
|
37
|
-
}
|
|
38
|
-
return lines.join("\n");
|
|
39
|
-
},
|
|
40
|
-
formatMarkdown: (result) => {
|
|
27
|
+
formatConcise: (result) => {
|
|
41
28
|
const conversations = result;
|
|
42
29
|
const lines = [`## Conversations (${conversations.length})`, ""];
|
|
43
30
|
if (conversations.length === 0)
|
|
44
31
|
return lines.join("\n");
|
|
45
|
-
lines.push("| # | Topic | Type | Last Message |");
|
|
46
|
-
lines.push("
|
|
32
|
+
lines.push("| # | Topic | Type | ID | Last Message |");
|
|
33
|
+
lines.push("|---|-------|------|----|--------------|");
|
|
47
34
|
for (let i = 0; i < conversations.length; i++) {
|
|
48
35
|
const conversation = conversations[i];
|
|
49
|
-
const lastMessage = conversation.lastMessageTime?.slice(0, 10) ?? "
|
|
36
|
+
const lastMessage = conversation.lastMessageTime?.slice(0, 10) ?? "";
|
|
50
37
|
const topic = conversation.topic || "(untitled)";
|
|
51
|
-
lines.push(`| ${i} | ${topic} | ${conversation.threadType} | ${lastMessage} |`);
|
|
52
|
-
}
|
|
53
|
-
return lines.join("\n");
|
|
54
|
-
},
|
|
55
|
-
formatToon: (result) => {
|
|
56
|
-
const conversations = result;
|
|
57
|
-
const lines = [(0, formatters_js_1.toonHeader)("๐", `${conversations.length} Conversations`)];
|
|
58
|
-
for (let i = 0; i < conversations.length; i++) {
|
|
59
|
-
const conversation = conversations[i];
|
|
60
|
-
const lastMessage = conversation.lastMessageTime?.slice(0, 10) ?? "unknown";
|
|
61
|
-
const topic = conversation.topic || "(untitled)";
|
|
62
|
-
lines.push("");
|
|
63
|
-
lines.push(` ๐ฌ [${i}] "${topic}"`);
|
|
64
|
-
lines.push(` ${conversation.threadType} ยท last: ${lastMessage}`);
|
|
38
|
+
lines.push(`| ${i} | ${topic} | ${conversation.threadType} | ${conversation.id} | ${lastMessage} |`);
|
|
65
39
|
}
|
|
66
40
|
return lines.join("\n");
|
|
67
41
|
},
|
|
@@ -85,47 +59,30 @@ exports.findConversation = {
|
|
|
85
59
|
const query = parameters.query;
|
|
86
60
|
return client.findConversation(query);
|
|
87
61
|
},
|
|
88
|
-
|
|
62
|
+
formatConcise: (result) => {
|
|
89
63
|
if (!result)
|
|
90
64
|
return "No conversation found.";
|
|
91
65
|
const conversation = result;
|
|
92
|
-
const lastMessage = conversation.lastMessageTime?.slice(0, 10) ?? "unknown";
|
|
93
|
-
return (`Found: "${conversation.topic}" ` +
|
|
94
|
-
`(${conversation.id}, ${conversation.threadType}, ` +
|
|
95
|
-
`last: ${lastMessage})`);
|
|
96
|
-
},
|
|
97
|
-
formatMarkdown: (result) => {
|
|
98
|
-
if (!result)
|
|
99
|
-
return "No conversation found.";
|
|
100
|
-
const conversation = result;
|
|
101
|
-
const lastMessage = conversation.lastMessageTime?.slice(0, 10) ?? "unknown";
|
|
102
66
|
const lines = [
|
|
103
67
|
`## Found: "${conversation.topic}"`,
|
|
104
68
|
"",
|
|
105
69
|
`- **ID:** ${conversation.id}`,
|
|
106
70
|
`- **Type:** ${conversation.threadType}`,
|
|
107
71
|
];
|
|
108
|
-
|
|
72
|
+
if (conversation.lastMessageTime) {
|
|
73
|
+
lines.push(`- **Last message:** ${conversation.lastMessageTime.slice(0, 10)}`);
|
|
74
|
+
}
|
|
109
75
|
return lines.join("\n");
|
|
110
76
|
},
|
|
111
|
-
formatToon: (result) => {
|
|
112
|
-
if (!result)
|
|
113
|
-
return "\n ๐ No conversation found.";
|
|
114
|
-
const conversation = result;
|
|
115
|
-
const lastMessage = conversation.lastMessageTime?.slice(0, 10) ?? "unknown";
|
|
116
|
-
return [
|
|
117
|
-
(0, formatters_js_1.toonHeader)("๐", `Found: "${conversation.topic}"`),
|
|
118
|
-
` ๐ ${conversation.id}`,
|
|
119
|
-
` ๐ ${conversation.threadType} ยท last: ${lastMessage}`,
|
|
120
|
-
].join("\n");
|
|
121
|
-
},
|
|
122
77
|
};
|
|
123
78
|
exports.findOneOnOne = {
|
|
124
79
|
name: "find-one-on-one",
|
|
125
80
|
title: "Find 1:1 Conversation",
|
|
126
|
-
description: "Find a 1:1 conversation with a person by name. " +
|
|
127
|
-
"Uses Substrate people/chat search when available
|
|
128
|
-
"
|
|
81
|
+
description: "Find or create a 1:1 conversation with a person by name. " +
|
|
82
|
+
"Uses Substrate people/chat search when available โ if a conversation " +
|
|
83
|
+
"already exists it is returned; if the person is found in the org directory " +
|
|
84
|
+
"but no chat exists yet, a new 1:1 is started. " +
|
|
85
|
+
"Falls back to scanning message senders when Substrate is unavailable. " +
|
|
129
86
|
"Also finds the self-chat if the name matches the current user.",
|
|
130
87
|
parameters: [
|
|
131
88
|
{
|
|
@@ -139,13 +96,7 @@ exports.findOneOnOne = {
|
|
|
139
96
|
const personName = parameters.personName;
|
|
140
97
|
return client.findOneOnOneConversation(personName);
|
|
141
98
|
},
|
|
142
|
-
|
|
143
|
-
if (!result)
|
|
144
|
-
return "No 1:1 conversation found.";
|
|
145
|
-
const searchResult = result;
|
|
146
|
-
return `Found 1:1 with ${searchResult.memberDisplayName} (${searchResult.conversationId})`;
|
|
147
|
-
},
|
|
148
|
-
formatMarkdown: (result) => {
|
|
99
|
+
formatConcise: (result) => {
|
|
149
100
|
if (!result)
|
|
150
101
|
return "No 1:1 conversation found.";
|
|
151
102
|
const searchResult = result;
|
|
@@ -155,14 +106,5 @@ exports.findOneOnOne = {
|
|
|
155
106
|
`- **Conversation ID:** ${searchResult.conversationId}`,
|
|
156
107
|
].join("\n");
|
|
157
108
|
},
|
|
158
|
-
formatToon: (result) => {
|
|
159
|
-
if (!result)
|
|
160
|
-
return "\n ๐ No 1:1 conversation found.";
|
|
161
|
-
const searchResult = result;
|
|
162
|
-
return [
|
|
163
|
-
(0, formatters_js_1.toonHeader)("๐", `Found 1:1 with ${searchResult.memberDisplayName}`),
|
|
164
|
-
` ๐ ${searchResult.conversationId}`,
|
|
165
|
-
].join("\n");
|
|
166
|
-
},
|
|
167
109
|
};
|
|
168
110
|
//# sourceMappingURL=conversation-actions.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"conversation-actions.js","sourceRoot":"","sources":["../../src/actions/conversation-actions.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;
|
|
1
|
+
{"version":3,"file":"conversation-actions.js","sourceRoot":"","sources":["../../src/actions/conversation-actions.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file-actions.d.ts","sourceRoot":"","sources":["../../src/actions/file-actions.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAMH,OAAO,EAAE,KAAK,gBAAgB,
|
|
1
|
+
{"version":3,"file":"file-actions.d.ts","sourceRoot":"","sources":["../../src/actions/file-actions.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAMH,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAMxD,MAAM,WAAW,cAAc;IAC7B,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;CACd;AAED,eAAO,MAAM,kBAAkB,EAAE,gBA0GhC,CAAC"}
|
|
@@ -10,7 +10,6 @@ const node_fs_1 = require("node:fs");
|
|
|
10
10
|
const node_path_1 = require("node:path");
|
|
11
11
|
const node_os_1 = require("node:os");
|
|
12
12
|
const node_crypto_1 = require("node:crypto");
|
|
13
|
-
const formatters_js_1 = require("./formatters.js");
|
|
14
13
|
const conversation_resolution_js_1 = require("./conversation-resolution.js");
|
|
15
14
|
exports.downloadFileAction = {
|
|
16
15
|
name: "download-file",
|
|
@@ -87,34 +86,14 @@ exports.downloadFileAction = {
|
|
|
87
86
|
}
|
|
88
87
|
return results;
|
|
89
88
|
},
|
|
90
|
-
|
|
91
|
-
const downloads = result;
|
|
92
|
-
const lines = [`Downloaded ${downloads.length} file(s):`];
|
|
93
|
-
for (const download of downloads) {
|
|
94
|
-
lines.push(` ${download.fileName} (${download.fileType}, ${download.size} bytes)`);
|
|
95
|
-
lines.push(` Saved to: ${download.savedTo}`);
|
|
96
|
-
}
|
|
97
|
-
return lines.join("\n");
|
|
98
|
-
},
|
|
99
|
-
formatMarkdown: (result) => {
|
|
89
|
+
formatConcise: (result) => {
|
|
100
90
|
const downloads = result;
|
|
101
91
|
const lines = [`## Downloaded ${downloads.length} file(s)`, ""];
|
|
102
92
|
for (const download of downloads) {
|
|
103
|
-
lines.push(`- **${download.fileName}** (${download.fileType}, ${download.size} bytes)`);
|
|
93
|
+
lines.push(`- **${download.fileName}** (${download.fileType}, ${download.size} bytes, ${download.contentType})`);
|
|
104
94
|
lines.push(` - Saved to: \`${download.savedTo}\``);
|
|
105
95
|
}
|
|
106
96
|
return lines.join("\n");
|
|
107
97
|
},
|
|
108
|
-
formatToon: (result) => {
|
|
109
|
-
const downloads = result;
|
|
110
|
-
const lines = [(0, formatters_js_1.toonHeader)("๐ฅ", `${downloads.length} File(s) Downloaded`)];
|
|
111
|
-
for (const download of downloads) {
|
|
112
|
-
lines.push("");
|
|
113
|
-
lines.push(` ๐ ${download.fileName}`);
|
|
114
|
-
lines.push(` ${download.fileType} ยท ${download.size} bytes`);
|
|
115
|
-
lines.push(` ๐พ ${download.savedTo}`);
|
|
116
|
-
}
|
|
117
|
-
return lines.join("\n");
|
|
118
|
-
},
|
|
119
98
|
};
|
|
120
99
|
//# sourceMappingURL=file-actions.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file-actions.js","sourceRoot":"","sources":["../../src/actions/file-actions.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAEH,qCAAmD;AACnD,yCAA0C;AAC1C,qCAAiC;AACjC,6CAAyC;
|
|
1
|
+
{"version":3,"file":"file-actions.js","sourceRoot":"","sources":["../../src/actions/file-actions.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAEH,qCAAmD;AACnD,yCAA0C;AAC1C,qCAAiC;AACjC,6CAAyC;AAEzC,6EAGsC;AAWzB,QAAA,kBAAkB,GAAqB;IAClD,IAAI,EAAE,eAAe;IACrB,KAAK,EAAE,eAAe;IACtB,WAAW,EACT,8CAA8C;QAC9C,oDAAoD;QACpD,sEAAsE;QACtE,+DAA+D;QAC/D,gEAAgE;QAChE,wEAAwE;QACxE,oDAAoD;IACtD,UAAU,EAAE;QACV,GAAG,mDAAsB;QACzB;YACE,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,iDAAiD;YAC9D,QAAQ,EAAE,IAAI;SACf;QACD;YACE,IAAI,EAAE,iBAAiB;YACvB,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,uCAAuC;YACpD,QAAQ,EAAE,KAAK;SAChB;KACF;IACD,OAAO,EAAE,KAAK,EAAE,MAAM,EAAE,UAAU,EAAE,EAAE;QACpC,MAAM,EAAE,cAAc,EAAE,GAAG,MAAM,IAAA,kDAAqB,EAAC,MAAM,EAAE,UAAU,CAAC,CAAC;QAC3E,MAAM,SAAS,GAAG,UAAU,CAAC,SAAmB,CAAC;QACjD,MAAM,eAAe,GAAG,UAAU,CAAC,eAAqC,CAAC;QAEzE,wCAAwC;QACxC,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,WAAW,CAAC,cAAc,CAAC,CAAC;QAC1D,MAAM,OAAO,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,EAAE,KAAK,SAAS,CAAC,CAAC;QACrE,IAAI,CAAC,OAAO,EAAE,CAAC;YACb,MAAM,IAAI,KAAK,CACb,WAAW,SAAS,8BAA8B,cAAc,EAAE,CACnE,CAAC;QACJ,CAAC;QAED,IAAI,OAAO,CAAC,KAAK,CAAC,MAAM,KAAK,CAAC,IAAI,OAAO,CAAC,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YAC9D,MAAM,IAAI,KAAK,CAAC,WAAW,SAAS,oCAAoC,CAAC,CAAC;QAC5E,CAAC;QAED,wFAAwF;QACxF,MAAM,uBAAuB,GAAG,eAAe;YAC7C,CAAC,CAAC,IAAA,mBAAO,EAAC,eAAe,CAAC;YAC1B,CAAC,CAAC,IAAA,mBAAO,EAAC,IAAA,gBAAI,EAAC,IAAA,gBAAM,GAAE,EAAE,kBAAkB,IAAA,wBAAU,GAAE,EAAE,CAAC,CAAC,CAAC;QAC9D,IAAA,mBAAS,EAAC,uBAAuB,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;QAExD,MAAM,OAAO,GAAqB,EAAE,CAAC;QAErC,yCAAyC;QACzC,KAAK,MAAM,IAAI,IAAI,OAAO,CAAC,KAAK,EAAE,CAAC;YACjC,MAAM,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,QAAQ,EAAE,GAAG,MAAM,MAAM,CAAC,YAAY,CACrE,IAAI,CAAC,OAAO,EACZ,IAAI,CAAC,MAAM,CACZ,CAAC;YAEF,MAAM,UAAU,GAAG,IAAA,mBAAO,EAAC,IAAA,gBAAI,EAAC,uBAAuB,EAAE,QAAQ,CAAC,CAAC,CAAC;YACpE,IAAA,uBAAa,EAAC,UAAU,EAAE,IAAI,CAAC,CAAC;YAEhC,OAAO,CAAC,IAAI,CAAC;gBACX,QAAQ;gBACR,QAAQ,EAAE,IAAI,CAAC,QAAQ;gBACvB,IAAI;gBACJ,WAAW;gBACX,OAAO,EAAE,UAAU;gBACnB,IAAI;aACL,CAAC,CAAC;QACL,CAAC;QAED,+BAA+B;QAC/B,KAAK,MAAM,KAAK,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;YACnC,MAAM,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,GAAG,MAAM,MAAM,CAAC,aAAa,CAC5D,KAAK,CAAC,WAAW,EACjB,IAAI,CACL,CAAC;YAEF,MAAM,QAAQ,GAAG,GAAG,KAAK,CAAC,WAAW,MAAM,CAAC;YAC5C,MAAM,UAAU,GAAG,IAAA,mBAAO,EAAC,IAAA,gBAAI,EAAC,uBAAuB,EAAE,QAAQ,CAAC,CAAC,CAAC;YACpE,IAAA,uBAAa,EAAC,UAAU,EAAE,IAAI,CAAC,CAAC;YAEhC,OAAO,CAAC,IAAI,CAAC;gBACX,QAAQ;gBACR,QAAQ,EAAE,OAAO;gBACjB,IAAI;gBACJ,WAAW;gBACX,OAAO,EAAE,UAAU;gBACnB,IAAI;aACL,CAAC,CAAC;QACL,CAAC;QAED,OAAO,OAAO,CAAC;IACjB,CAAC;IACD,aAAa,EAAE,CAAC,MAAM,EAAE,EAAE;QACxB,MAAM,SAAS,GAAG,MAA0B,CAAC;QAC7C,MAAM,KAAK,GAAG,CAAC,iBAAiB,SAAS,CAAC,MAAM,UAAU,EAAE,EAAE,CAAC,CAAC;QAChE,KAAK,MAAM,QAAQ,IAAI,SAAS,EAAE,CAAC;YACjC,KAAK,CAAC,IAAI,CACR,OAAO,QAAQ,CAAC,QAAQ,OAAO,QAAQ,CAAC,QAAQ,KAAK,QAAQ,CAAC,IAAI,WAAW,QAAQ,CAAC,WAAW,GAAG,CACrG,CAAC;YACF,KAAK,CAAC,IAAI,CAAC,mBAAmB,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;QACtD,CAAC;QACD,OAAO,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAC1B,CAAC;CACF,CAAC"}
|
|
@@ -28,18 +28,13 @@ export interface ActionDefinition {
|
|
|
28
28
|
parameters: ActionParameter[];
|
|
29
29
|
/** Execute the action against a TeamsClient. */
|
|
30
30
|
execute: (client: import("../teams-client.js").TeamsClient, parameters: Record<string, unknown>) => Promise<unknown>;
|
|
31
|
-
/** Format result as human-readable
|
|
32
|
-
|
|
33
|
-
/** Format result as Markdown. */
|
|
34
|
-
formatMarkdown: (result: unknown) => string;
|
|
35
|
-
/** Format result as fun ASCII art with emojis. */
|
|
36
|
-
formatToon: (result: unknown) => string;
|
|
31
|
+
/** Format result as concise Markdown โ human-readable, action-complete, with actionable IDs. */
|
|
32
|
+
formatConcise: (result: unknown) => string;
|
|
37
33
|
}
|
|
38
|
-
export type OutputFormat = "
|
|
34
|
+
export type OutputFormat = "concise" | "detailed";
|
|
39
35
|
export type MessageOrder = "newest-first" | "oldest-first";
|
|
40
36
|
/** Format an action result in the specified output format. */
|
|
41
37
|
export declare function formatOutput(action: ActionDefinition, result: unknown, format?: OutputFormat): string;
|
|
42
|
-
export declare function toonHeader(emoji: string, text: string): string;
|
|
43
38
|
/** Strip HTML tags and decode entities from message content. */
|
|
44
39
|
export declare function cleanContent(content: string): string;
|
|
45
40
|
/** Extract quoted text from HTML blockquotes, returning quote and body separately. */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"formatters.d.ts","sourceRoot":"","sources":["../../src/actions/formatters.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAK5D,MAAM,WAAW,eAAe;IAC9B,4EAA4E;IAC5E,IAAI,EAAE,MAAM,CAAC;IACb,qEAAqE;IACrE,IAAI,EAAE,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,UAAU,CAAC;IACnD,yEAAyE;IACzE,WAAW,EAAE,MAAM,CAAC;IACpB,8CAA8C;IAC9C,QAAQ,EAAE,OAAO,CAAC;IAClB,+CAA+C;IAC/C,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC;CACrC;AAED,MAAM,WAAW,gBAAgB;IAC/B,iFAAiF;IACjF,IAAI,EAAE,MAAM,CAAC;IACb,6CAA6C;IAC7C,KAAK,EAAE,MAAM,CAAC;IACd,uEAAuE;IACvE,WAAW,EAAE,MAAM,CAAC;IACpB,mCAAmC;IACnC,UAAU,EAAE,eAAe,EAAE,CAAC;IAC9B,gDAAgD;IAChD,OAAO,EAAE,CACP,MAAM,EAAE,OAAO,oBAAoB,EAAE,WAAW,EAChD,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAChC,OAAO,CAAC,OAAO,CAAC,CAAC;IACtB,
|
|
1
|
+
{"version":3,"file":"formatters.d.ts","sourceRoot":"","sources":["../../src/actions/formatters.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAK5D,MAAM,WAAW,eAAe;IAC9B,4EAA4E;IAC5E,IAAI,EAAE,MAAM,CAAC;IACb,qEAAqE;IACrE,IAAI,EAAE,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,UAAU,CAAC;IACnD,yEAAyE;IACzE,WAAW,EAAE,MAAM,CAAC;IACpB,8CAA8C;IAC9C,QAAQ,EAAE,OAAO,CAAC;IAClB,+CAA+C;IAC/C,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC;CACrC;AAED,MAAM,WAAW,gBAAgB;IAC/B,iFAAiF;IACjF,IAAI,EAAE,MAAM,CAAC;IACb,6CAA6C;IAC7C,KAAK,EAAE,MAAM,CAAC;IACd,uEAAuE;IACvE,WAAW,EAAE,MAAM,CAAC;IACpB,mCAAmC;IACnC,UAAU,EAAE,eAAe,EAAE,CAAC;IAC9B,gDAAgD;IAChD,OAAO,EAAE,CACP,MAAM,EAAE,OAAO,oBAAoB,EAAE,WAAW,EAChD,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAChC,OAAO,CAAC,OAAO,CAAC,CAAC;IACtB,gGAAgG;IAChG,aAAa,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,MAAM,CAAC;CAC5C;AAED,MAAM,MAAM,YAAY,GAAG,SAAS,GAAG,UAAU,CAAC;AAClD,MAAM,MAAM,YAAY,GAAG,cAAc,GAAG,cAAc,CAAC;AAI3D,8DAA8D;AAC9D,wBAAgB,YAAY,CAC1B,MAAM,EAAE,gBAAgB,EACxB,MAAM,EAAE,OAAO,EACf,MAAM,GAAE,YAAwB,GAC/B,MAAM,CAOR;AAGD,gEAAgE;AAChE,wBAAgB,YAAY,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAEpD;AAED,sFAAsF;AACtF,wBAAgB,YAAY,CAAC,OAAO,EAAE,MAAM,GAAG;IAC7C,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,IAAI,EAAE,MAAM,CAAC;CACd,CAWA;AAED,0DAA0D;AAC1D,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,OAAO,EAAE,GAAG,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAM1E;AAID,sEAAsE;AACtE,wBAAgB,eAAe,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAIzD;AAED,8EAA8E;AAC9E,wBAAgB,cAAc,CAC5B,OAAO,EAAE,eAAe,EAAE,GACzB,KAAK,CAAC;IAAE,OAAO,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAC;IAAC,QAAQ,EAAE,MAAM,EAAE,CAAA;CAAE,CAAC,CAqBnE"}
|
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
*/
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
9
|
exports.formatOutput = formatOutput;
|
|
10
|
-
exports.toonHeader = toonHeader;
|
|
11
10
|
exports.cleanContent = cleanContent;
|
|
12
11
|
exports.extractQuote = extractQuote;
|
|
13
12
|
exports.buildSenderLookup = buildSenderLookup;
|
|
@@ -16,23 +15,15 @@ exports.groupBySpeaker = groupBySpeaker;
|
|
|
16
15
|
const html_utils_js_1 = require("../html-utils.js");
|
|
17
16
|
// โโ Output format dispatch โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
18
17
|
/** Format an action result in the specified output format. */
|
|
19
|
-
function formatOutput(action, result, format = "
|
|
18
|
+
function formatOutput(action, result, format = "concise") {
|
|
20
19
|
switch (format) {
|
|
21
|
-
case "
|
|
20
|
+
case "detailed":
|
|
22
21
|
return JSON.stringify(result, null, 2);
|
|
23
|
-
case "
|
|
24
|
-
return action.
|
|
25
|
-
case "md":
|
|
26
|
-
return action.formatMarkdown(result);
|
|
27
|
-
case "toon":
|
|
28
|
-
return action.formatToon(result);
|
|
22
|
+
case "concise":
|
|
23
|
+
return action.formatConcise(result);
|
|
29
24
|
}
|
|
30
25
|
}
|
|
31
26
|
// โโ Shared formatting helpers โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
32
|
-
function toonHeader(emoji, text) {
|
|
33
|
-
const separator = "โ".repeat(40);
|
|
34
|
-
return `\n ${emoji} ${text}\n ${separator}`;
|
|
35
|
-
}
|
|
36
27
|
/** Strip HTML tags and decode entities from message content. */
|
|
37
28
|
function cleanContent(content) {
|
|
38
29
|
return (0, html_utils_js_1.decodeHtmlEntities)(content.replace(/<[^>]*>/g, "")).trim();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"formatters.js","sourceRoot":"","sources":["../../src/actions/formatters.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;
|
|
1
|
+
{"version":3,"file":"formatters.js","sourceRoot":"","sources":["../../src/actions/formatters.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"message-actions.d.ts","sourceRoot":"","sources":["../../src/actions/message-actions.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAYH,OAAO,EACL,KAAK,gBAAgB,
|
|
1
|
+
{"version":3,"file":"message-actions.d.ts","sourceRoot":"","sources":["../../src/actions/message-actions.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAYH,OAAO,EACL,KAAK,gBAAgB,EAGtB,MAAM,iBAAiB,CAAC;AA0GzB,eAAO,MAAM,WAAW,EAAE,gBAyHzB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,gBAsLzB,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,gBAgE/B,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,gBAuCjC,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,gBAwD/B,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,gBAuDlC,CAAC"}
|