File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -185,6 +185,9 @@ export abstract class Methods extends EventEmitter<WebClientEvent> {
185185
186186 public readonly auth = {
187187 revoke : bindApiCall < AuthRevokeArguments , WebAPICallResult > ( this , 'auth.revoke' ) ,
188+ teams : {
189+ list : bindApiCall < AuthTeamsListArguments , WebAPICallResult > ( this , 'auth.teams.list' ) ,
190+ } ,
188191 test : bindApiCall < AuthTestArguments , WebAPICallResult > ( this , 'auth.test' ) ,
189192 } ;
190193
@@ -796,6 +799,10 @@ export interface AppsUninstallArguments extends WebAPICallOptions {
796799export interface AuthRevokeArguments extends WebAPICallOptions , TokenOverridable {
797800 test : boolean ;
798801}
802+ export interface AuthTeamsListArguments extends WebAPICallOptions , TokenOverridable , CursorPaginationEnabled {
803+ include_icon ?: boolean ;
804+ }
805+ cursorPaginationEnabledMethods . add ( 'auth.teams.list' ) ;
799806export interface AuthTestArguments extends WebAPICallOptions , TokenOverridable { }
800807
801808/*
You can’t perform that action at this time.
0 commit comments