@@ -165,6 +165,7 @@ import type {
165
165
ConversationsRepliesArguments ,
166
166
ConversationsRequestSharedInviteApproveArguments ,
167
167
ConversationsRequestSharedInviteDenyArguments ,
168
+ ConversationsRequestSharedInviteListArguments ,
168
169
ConversationsSetPurposeArguments ,
169
170
ConversationsSetTopicArguments ,
170
171
ConversationsUnarchiveArguments ,
@@ -417,6 +418,7 @@ import type {
417
418
ConversationsRepliesResponse ,
418
419
ConversationsRequestSharedInviteApproveResponse ,
419
420
ConversationsRequestSharedInviteDenyResponse ,
421
+ ConversationsRequestSharedInviteListResponse ,
420
422
ConversationsSetPurposeResponse ,
421
423
ConversationsSetTopicResponse ,
422
424
ConversationsUnarchiveResponse ,
@@ -1772,6 +1774,14 @@ export abstract class Methods extends EventEmitter<WebClientEvent> {
1772
1774
this ,
1773
1775
'conversations.requestSharedInvite.deny' ,
1774
1776
) ,
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' ) ,
1775
1785
} ,
1776
1786
/**
1777
1787
* @description Sets the purpose for a conversation.
0 commit comments