Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
24 changes: 24 additions & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2289,6 +2289,20 @@ export enum EmbedEvent {
*```
*/
AnswerDelete = 'answerDelete',
/**
* Emitted when the AI Highlights action is triggered on a Liveboard
* @version SDK: 1.42.0 | ThoughtSpot: 10.15.0.cl
* @example
*```js
* //emit when action starts
* liveboardEmbed.on(EmbedEvent.AIHighlights, payload => {
* console.log('AI Highlights', payload)}, {start: true })
* //emit when action ends
* 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 +3392,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.42.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