Skip to content

Commit 1673fc0

Browse files
committed
fix(slack): add missing fields to SlackChannel interface
1 parent 2470f57 commit 1673fc0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

apps/sim/tools/slack/types.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -802,14 +802,20 @@ export interface SlackRemoveReactionResponse extends ToolResponse {
802802
export interface SlackChannel {
803803
id: string
804804
name: string
805+
is_channel?: boolean
805806
is_private: boolean
806807
is_archived: boolean
808+
is_general?: boolean
807809
is_member: boolean
810+
is_shared?: boolean
811+
is_ext_shared?: boolean
812+
is_org_shared?: boolean
808813
num_members?: number
809814
topic?: string
810815
purpose?: string
811816
created?: number
812817
creator?: string
818+
updated?: number
813819
}
814820

815821
export interface SlackListChannelsResponse extends ToolResponse {

0 commit comments

Comments
 (0)