-
Notifications
You must be signed in to change notification settings - Fork 662
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat (web-api): add support for
teams.externalTeams.disconnect
API (#…
- Loading branch information
Showing
8 changed files
with
57 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
packages/web-api/src/types/response/TeamExternalTeamsDisconnectResponse.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* eslint-disable */ | ||
///////////////////////////////////////////////////////////////////////////////////////// | ||
// // | ||
// !!! DO NOT EDIT THIS FILE !!! // | ||
// // | ||
// This file is auto-generated by scripts/generate-web-api-types.sh in the repository. // | ||
// Please refer to the script code to learn how to update the source data. // | ||
// // | ||
///////////////////////////////////////////////////////////////////////////////////////// | ||
|
||
import { WebAPICallResult } from '../../WebClient'; | ||
export type TeamExternalTeamsDisconnectResponse = WebAPICallResult & { | ||
error?: string; | ||
needed?: string; | ||
ok?: boolean; | ||
provided?: string; | ||
response_metadata?: ResponseMetadata; | ||
}; | ||
|
||
export interface ResponseMetadata { | ||
messages?: string[]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters