-
Notifications
You must be signed in to change notification settings - Fork 662
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat (web-api): add support for teams.externalTeams.disconnect
API
#1837
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1837 +/- ##
==========================================
+ Coverage 81.83% 81.85% +0.01%
==========================================
Files 35 35
Lines 7774 7781 +7
Branches 318 318
==========================================
+ Hits 6362 6369 +7
Misses 1400 1400
Partials 12 12
Flags with carried forward coverage won't be shown. Click here to find out more. |
/** | ||
* @description Returns a list of all the external teams connected and details about the connection. | ||
* @see {@link https://api.slack.com/methods/team.externalTeams.list `team.externalTeams.list` API reference}. | ||
*/ | ||
lookup: bindApiCall<TeamExternalTeamsListArguments, TeamExternalTeamsListResponse>(this, 'team.externalTeams.list'), | ||
list: bindApiCall<TeamExternalTeamsListArguments, TeamExternalTeamsListResponse>(this, 'team.externalTeams.list'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I made a booboo here previously 😞 😢
@@ -37,10 +38,6 @@ interface Message extends Channel { | |||
/** @description Unique identifier of message. */ | |||
ts: string; | |||
} | |||
interface TargetTeam { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Factored this out into common.js
as it's also used for various team.*
APIs.
No description provided.