@@ -165,6 +165,7 @@ import type {
165165 ConversationsRepliesArguments ,
166166 ConversationsRequestSharedInviteApproveArguments ,
167167 ConversationsRequestSharedInviteDenyArguments ,
168+ ConversationsRequestSharedInviteListArguments ,
168169 ConversationsSetPurposeArguments ,
169170 ConversationsSetTopicArguments ,
170171 ConversationsUnarchiveArguments ,
@@ -417,6 +418,7 @@ import type {
417418 ConversationsRepliesResponse ,
418419 ConversationsRequestSharedInviteApproveResponse ,
419420 ConversationsRequestSharedInviteDenyResponse ,
421+ ConversationsRequestSharedInviteListResponse ,
420422 ConversationsSetPurposeResponse ,
421423 ConversationsSetTopicResponse ,
422424 ConversationsUnarchiveResponse ,
@@ -1772,6 +1774,14 @@ export abstract class Methods extends EventEmitter<WebClientEvent> {
17721774 this ,
17731775 'conversations.requestSharedInvite.deny' ,
17741776 ) ,
1777+ /**
1778+ * @description Lists requests to add external users to channels with ability to filter.
1779+ * @see {@link https://api.slack.com/methods/conversations.requestSharedInvite.list `conversations.requestSharedInvite.list` API reference }.
1780+ */
1781+ list : bindApiCallWithOptionalArgument <
1782+ ConversationsRequestSharedInviteListArguments ,
1783+ ConversationsRequestSharedInviteListResponse
1784+ > ( this , 'conversations.requestSharedInvite.list' ) ,
17751785 } ,
17761786 /**
17771787 * @description Sets the purpose for a conversation.
0 commit comments