| 93 | |
| 94 | /** Slack event input data from slack_trigger execution */ |
| 95 | export 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 | |
| 114 | export enum TriggerStatus { |
| 115 | PendingAuth = 'pending_verification', |
nothing calls this directly
no outgoing calls
no test coverage detected