Skip to content

Commit

Permalink
port: Add dataset to SearchInvokeValue (#4777)
Browse files Browse the repository at this point in the history
* Add SearchInvokeValue Dataset

* Fix compat

* Fix lint v2
  • Loading branch information
sw-joelmut authored Oct 29, 2024
1 parent 021429c commit 8dcda8d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2969,6 +2969,7 @@ export interface SearchInvokeResponse extends AdaptiveCardInvokeResponse {
// @public
export interface SearchInvokeValue {
context: any;
dataset: string;
kind: string;
queryOptions: SearchInvokeOptions;
queryText: string;
Expand Down
4 changes: 4 additions & 0 deletions libraries/botframework-schema/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down

0 comments on commit 8dcda8d

Please sign in to comment.