Skip to content

Commit

Permalink
update botbuilder api
Browse files Browse the repository at this point in the history
  • Loading branch information
bentsai committed Dec 6, 2024
1 parent 6d08f93 commit 5e8192c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions libraries/botbuilder/etc/botbuilder.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,13 @@ export class SharePointActivityHandler extends ActivityHandler {
protected onSharePointTaskGetQuickViewAsync(_context: TurnContext, _aceRequest: AceRequest): Promise<QuickViewResponse>;
protected onSharePointTaskHandleActionAsync(_context: TurnContext, _aceRequest: AceRequest): Promise<HandleActionResponse>;
protected onSharePointTaskSetPropertyPaneConfigurationAsync(_context: TurnContext, _aceRequest: AceRequest): Promise<SetPropertyPaneConfigurationResponse>;
protected onSignInInvoke(_context: TurnContext): Promise<void>;
}

// @public
export class SharePointSSOTokenExchangeMiddleware implements Middleware {
constructor(storage: Storage_2, oAuthConnectionName: string);
onTurn(context: TurnContext, next: () => Promise<void>): Promise<void>;
}

// @public @deprecated (undocumented)
Expand Down

0 comments on commit 5e8192c

Please sign in to comment.