From 6b2656b7dd149c5f9869ddcb6dc53d1f7e022c37 Mon Sep 17 00:00:00 2001 From: Alex Terentiev Date: Fri, 19 Jan 2024 12:24:06 -0500 Subject: [PATCH] feat: Add isVisible property to AceData (#4606) * Add isVisible property to AceData * extra comment * updated md --------- Co-authored-by: aterentiev --- libraries/botframework-schema/etc/botframework-schema.api.md | 1 + libraries/botframework-schema/src/sharepoint/aceData.ts | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/libraries/botframework-schema/etc/botframework-schema.api.md b/libraries/botframework-schema/etc/botframework-schema.api.md index e392bafd51..f790bdef6c 100644 --- a/libraries/botframework-schema/etc/botframework-schema.api.md +++ b/libraries/botframework-schema/etc/botframework-schema.api.md @@ -17,6 +17,7 @@ export interface AceData { description: string; iconProperty: string; id: string; + isVisible?: boolean; properties: any; title: string; } diff --git a/libraries/botframework-schema/src/sharepoint/aceData.ts b/libraries/botframework-schema/src/sharepoint/aceData.ts index ec56b9c34d..395c467d42 100644 --- a/libraries/botframework-schema/src/sharepoint/aceData.ts +++ b/libraries/botframework-schema/src/sharepoint/aceData.ts @@ -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. */