MCPcopy
hub / github.com/eigent-ai/eigent / SlackInputData

Interface SlackInputData

src/types/index.ts:95–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

93
94/** Slack event input data from slack_trigger execution */
95export interface SlackInputData {
96 event_type:
97 | 'app_mention'
98 | 'message'
99 | 'reaction_added'
100 | 'reaction_removed'
101 | string;
102 event_ts: string;
103 team_id: string;
104 user_id: string;
105 channel_id: string;
106 text: string | null;
107 message_ts: string;
108 thread_ts: string | null;
109 reaction: string | null;
110 files: any[] | null;
111 event_id: string;
112}
113
114export enum TriggerStatus {
115 PendingAuth = 'pending_verification',

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected