Skip to content

Commit

Permalink
Add silentAuth to MessagingExtensionResultType (#4305)
Browse files Browse the repository at this point in the history
  • Loading branch information
ceciliaavila authored Aug 9, 2022
1 parent 5ee4dac commit 02b7b26
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,7 @@ export interface MessagingExtensionResult {
}

// @public
export type MessagingExtensionResultType = 'result' | 'auth' | 'config' | 'message' | 'botMessagePreview';
export type MessagingExtensionResultType = 'result' | 'auth' | 'config' | 'message' | 'botMessagePreview' | 'silentAuth';

// @public
export interface MessagingExtensionSuggestedAction {
Expand Down
10 changes: 8 additions & 2 deletions libraries/botframework-schema/src/teams/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1700,12 +1700,18 @@ export type AttachmentLayout = 'list' | 'grid';

/**
* Defines values for MessagingExtensionResultType.
* Possible values include: 'result', 'auth', 'config', 'message', 'botMessagePreview'
* Possible values include: 'result', 'auth', 'config', 'message', 'botMessagePreview', 'silentAuth'.
*
* @readonly
* @enum {string}
*/
export type MessagingExtensionResultType = 'result' | 'auth' | 'config' | 'message' | 'botMessagePreview';
export type MessagingExtensionResultType =
| 'result'
| 'auth'
| 'config'
| 'message'
| 'botMessagePreview'
| 'silentAuth';

/**
* @deprecated Use MessagingExtensionResultType instead
Expand Down

0 comments on commit 02b7b26

Please sign in to comment.