Skip to content

Commit

Permalink
feat: Add isVisible property to AceData (microsoft#4606)
Browse files Browse the repository at this point in the history
* Add isVisible property to AceData

* extra comment

* updated md

---------

Co-authored-by: aterentiev <[email protected]_odspmdb>
  • Loading branch information
AJIXuMuK and aterentiev authored Jan 19, 2024
1 parent 7675c41 commit 6b2656b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export interface AceData {
description: string;
iconProperty: string;
id: string;
isVisible?: boolean;
properties: any;
title: string;
}
Expand Down
5 changes: 5 additions & 0 deletions libraries/botframework-schema/src/sharepoint/aceData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ export interface AceData {
* The description of the ACE.
*/
description: string;
/**
* The visibility of the Adaptive Card Extension.
* true if not specified.
*/
isVisible?: boolean;
/**
* The properties of the ACE.
*/
Expand Down

0 comments on commit 6b2656b

Please sign in to comment.