Skip to content
Open
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
49 changes: 49 additions & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5968,6 +5968,55 @@ export enum Action {
* @version SDK: 1.43.0 | ThoughtSpot Cloud: 10.15.0.cl
*/
LiveboardStylePanel = 'liveboardStylePanel',
/**
* The **Publish** action for Liveboards, Answers and Models.
* Opens the publishing modal. It's a parent action for the
* **Manage Publishing** and **Unpublish** actions if the object
* is already published, otherwise appears standalone.
* @example
* ```js
* hiddenActions: [Action.Publish]
* disabledActions: [Action.Publish]
* ```
* @version SDK: 1.44.0 | ThoughtSpot Cloud: 26.2.0.cl
*/
Publish = 'publish',
/**
* The **Manage Publishing** action for Liveboards, Answers and Models.
* Opens the same publishing modal as the **Publish** action.
* Appears as a child action to the **Publish** action if the
* object is already published.
* @example
* ```js
* hiddenActions: [Action.ManagePublishing]
* disabledActions: [Action.ManagePublishing]
* ```
* @version SDK: 1.44.0 | ThoughtSpot Cloud: 26.2.0.cl
*/
ManagePublishing = 'managePublishing',
/**
* The **Unpublish** action for Liveboards, Answers and Models.
* Opens the unpublishing modal. Appears as a child action to
* the **Publish** action if the object is already published.
* @example
* ```js
* hiddenActions: [Action.Unpublish]
* disabledActions: [Action.Unpublish]
* ```
* @version SDK: 1.44.0 | ThoughtSpot Cloud: 26.2.0.cl
*/
Unpublish = 'unpublish',
/**
* The **Parameterise** action for Tables and Connections.
* Opens the parameterisation modal.
* @example
* ```js
* hiddenActions: [Action.Parameterise]
* disabledActions: [Action.Parameterise]
* ```
* @version SDK: 1.44.0 | ThoughtSpot Cloud: 26.2.0.cl
*/
Parameterise = 'parameterise',
/**
* The **Move to Group** menu action on a Liveboard.
* Allows moving a visualization to a different group.
Expand Down
Loading
Loading