diff --git a/libraries/botframework-schema/etc/botframework-schema.api.md b/libraries/botframework-schema/etc/botframework-schema.api.md index 788a912daf..efb0d7dca9 100644 --- a/libraries/botframework-schema/etc/botframework-schema.api.md +++ b/libraries/botframework-schema/etc/botframework-schema.api.md @@ -2969,6 +2969,7 @@ export interface SearchInvokeResponse extends AdaptiveCardInvokeResponse { // @public export interface SearchInvokeValue { context: any; + dataset: string; kind: string; queryOptions: SearchInvokeOptions; queryText: string; diff --git a/libraries/botframework-schema/src/index.ts b/libraries/botframework-schema/src/index.ts index f98e101ec7..9198b6e170 100644 --- a/libraries/botframework-schema/src/index.ts +++ b/libraries/botframework-schema/src/index.ts @@ -2440,6 +2440,10 @@ export interface SearchInvokeValue { * For search and searchAnswers, there is no defined context value. */ context: any; // eslint-disable-line @typescript-eslint/no-explicit-any + /** + * The dataset to be queried to get the choices. + */ + dataset: string; } /**