Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2289,6 +2289,17 @@ export enum EmbedEvent {
*```
*/
AnswerDelete = 'answerDelete',
/**
* Emitted when the AI Highlights action is triggered on a Liveboard
* @version SDK: 1.44.0 | ThoughtSpot: 10.15.0.cl
* @example
*```js
* liveboardEmbed.on(EmbedEvent.AIHighlights, (payload) => {
* console.log('AI Highlights', payload);
* })
*```
*/
AIHighlights = 'AIHighlights',
/**
* Emitted when a user initiates the Pin action to
* add an Answer to a Liveboard.
Expand Down Expand Up @@ -3378,6 +3389,16 @@ export enum HostEvent {
* @version SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1.sw
*/
DownloadAsPdf = 'downloadAsPdf',
/**
* Trigger the **AI Highlights** action on an embedded Liveboard
*
* @example
* ```js
* liveboardEmbed.trigger(HostEvent.AIHighlights)
* ```
* @version SDK: 1.44.0 | ThoughtSpot: 10.15.0.cl
*/
AIHighlights = 'AIHighlights',
/**
* Trigger the **Make a copy** action on a Liveboard,
* visualization, or Answer page.
Expand Down
Loading
Loading