MCPcopy Index your code
hub / github.com/CopilotKit/OpenTag / threadReplies

Function threadReplies

e2e/slack-api.ts:64–73  ·  view source on GitHub ↗
(
  channel: string,
  ts: string,
  includeMetadata = false,
)

Source from the content-addressed store, hash-verified

62}
63
64export async function threadReplies(
65 channel: string,
66 ts: string,
67 includeMetadata = false,
68) {
69 const params: Record<string, string | boolean> = { channel, ts };
70 if (includeMetadata) params.include_all_metadata = true;
71 const r = await slack("conversations.replies", params);
72 return r.messages as SlackMessage[];
73}
74
75export interface SlackMessage {
76 ts: string;

Callers 6

runCaseFunction · 0.85
watchForReplyFunction · 0.85
watchForNextReplyFunction · 0.85
waitForPickerFunction · 0.85
waitForAgentReplyFunction · 0.85
runScenarioFunction · 0.85

Calls 1

slackFunction · 0.85

Tested by

no test coverage detected