@thoughtspot/visual-embed-sdk 1.23.0 → 1.24.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/cjs/package.json +1 -8
- package/cjs/src/embed/sage.d.ts +14 -0
- package/cjs/src/embed/sage.d.ts.map +1 -1
- package/cjs/src/embed/sage.js +12 -3
- package/cjs/src/embed/sage.js.map +1 -1
- package/cjs/src/embed/sage.spec.js +1 -1
- package/cjs/src/embed/sage.spec.js.map +1 -1
- package/cjs/src/embed/search.d.ts +0 -4
- package/cjs/src/embed/search.d.ts.map +1 -1
- package/cjs/src/embed/search.js +1 -1
- package/cjs/src/embed/search.js.map +1 -1
- package/cjs/src/react/index.spec.js +0 -12
- package/cjs/src/react/index.spec.js.map +1 -1
- package/cjs/src/types.d.ts +340 -239
- package/cjs/src/types.d.ts.map +1 -1
- package/cjs/src/types.js +337 -236
- package/cjs/src/types.js.map +1 -1
- package/dist/src/embed/sage.d.ts +14 -0
- package/dist/src/embed/sage.d.ts.map +1 -1
- package/dist/src/embed/search.d.ts +0 -4
- package/dist/src/embed/search.d.ts.map +1 -1
- package/dist/src/types.d.ts +340 -239
- package/dist/src/types.d.ts.map +1 -1
- package/dist/tsembed-react.es.js +351 -241
- package/dist/tsembed-react.js +350 -240
- package/dist/tsembed.es.js +351 -241
- package/dist/tsembed.js +350 -240
- package/dist/visual-embed-sdk-react-full.d.ts +354 -243
- package/dist/visual-embed-sdk-react.d.ts +354 -243
- package/dist/visual-embed-sdk.d.ts +354 -243
- package/lib/package.json +1 -8
- package/lib/src/embed/sage.d.ts +14 -0
- package/lib/src/embed/sage.d.ts.map +1 -1
- package/lib/src/embed/sage.js +12 -3
- package/lib/src/embed/sage.js.map +1 -1
- package/lib/src/embed/sage.spec.js +1 -1
- package/lib/src/embed/sage.spec.js.map +1 -1
- package/lib/src/embed/search.d.ts +0 -4
- package/lib/src/embed/search.d.ts.map +1 -1
- package/lib/src/embed/search.js +1 -1
- package/lib/src/embed/search.js.map +1 -1
- package/lib/src/react/index.spec.js +0 -12
- package/lib/src/react/index.spec.js.map +1 -1
- package/lib/src/types.d.ts +340 -239
- package/lib/src/types.d.ts.map +1 -1
- package/lib/src/types.js +337 -236
- package/lib/src/types.js.map +1 -1
- package/lib/src/visual-embed-sdk.d.ts +354 -243
- package/package.json +1 -8
- package/src/embed/sage.spec.ts +1 -1
- package/src/embed/sage.ts +24 -2
- package/src/embed/search.ts +0 -5
- package/src/react/index.spec.tsx +0 -29
- package/src/types.ts +338 -238
package/dist/src/types.d.ts
CHANGED
|
@@ -1273,7 +1273,19 @@ export declare enum EmbedEvent {
|
|
|
1273
1273
|
*
|
|
1274
1274
|
* @version SDK: 1.23.0 | ThoughtSpot: 9.4.0.cl
|
|
1275
1275
|
*/
|
|
1276
|
-
FilterChanged = "filterChanged"
|
|
1276
|
+
FilterChanged = "filterChanged",
|
|
1277
|
+
/**
|
|
1278
|
+
* Emitted when a user click on Go button in Sage Embed
|
|
1279
|
+
*
|
|
1280
|
+
* @version SDK : 1.27.0 | Thoughtspot: 9.7.0.cl
|
|
1281
|
+
*/
|
|
1282
|
+
SageEmbedQuery = "sageEmbedQuery",
|
|
1283
|
+
/**
|
|
1284
|
+
* Emitten when a user select data source in Sage Embed
|
|
1285
|
+
*
|
|
1286
|
+
* @version SDK : 1.27.0 | Thoughtspot: 9.7.0.cl
|
|
1287
|
+
*/
|
|
1288
|
+
SageWorksheetUpdated = "sageWorksheetUpdated"
|
|
1277
1289
|
}
|
|
1278
1290
|
/**
|
|
1279
1291
|
* Event types that can be triggered by the host application
|
|
@@ -1302,6 +1314,7 @@ export declare enum HostEvent {
|
|
|
1302
1314
|
* Triggers a search query in AppEmbed and SearchEmbed
|
|
1303
1315
|
* deployments.
|
|
1304
1316
|
* Includes the following properties:
|
|
1317
|
+
*
|
|
1305
1318
|
* @param - dataSourceIds - The data source GUID to Search on
|
|
1306
1319
|
* - Although an array, only a single source
|
|
1307
1320
|
* is supported.
|
|
@@ -1320,6 +1333,7 @@ export declare enum HostEvent {
|
|
|
1320
1333
|
/**
|
|
1321
1334
|
* Triggers a drill on certain points of the specified column
|
|
1322
1335
|
* Includes the following properties:
|
|
1336
|
+
*
|
|
1323
1337
|
* @param - points - an object containing selectedPoints/clickedPoints
|
|
1324
1338
|
* to drill to. For example, { selectedPoints: []}
|
|
1325
1339
|
* @param - columnGuid - Optional. GUID of the column to drill
|
|
@@ -1384,18 +1398,19 @@ export declare enum HostEvent {
|
|
|
1384
1398
|
*/
|
|
1385
1399
|
SetActiveTab = "SetActiveTab",
|
|
1386
1400
|
/**
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1401
|
+
* Updates runtime filters applied on a Saved Answer or Liveboard. The
|
|
1402
|
+
* runtime filters passed here are appended to the existing runtime
|
|
1403
|
+
* filters.
|
|
1404
|
+
* Pass an array of runtime filters with the following attributes:
|
|
1405
|
+
* `columnName`
|
|
1406
|
+
* _String_. The name of the column to filter on.
|
|
1407
|
+
* `operator`
|
|
1408
|
+
* Runtime filter operator to apply. For information,
|
|
1409
|
+
* see [Runtime filter operators](https://developers.thoughtspot.com/docs/?pageid=runtime-filters#rtOperator).
|
|
1410
|
+
* `values`
|
|
1411
|
+
* List of operands. Some operators such as EQ, LE allow a single value, whereas
|
|
1412
|
+
* operators such as BW and IN accept multiple operands.
|
|
1413
|
+
*
|
|
1399
1414
|
* @param - {@link RuntimeFilter}[] an array of {@link RuntimeFilter} Types.
|
|
1400
1415
|
* @example
|
|
1401
1416
|
* ```js
|
|
@@ -1411,6 +1426,7 @@ export declare enum HostEvent {
|
|
|
1411
1426
|
/**
|
|
1412
1427
|
* Navigate to a specific page in the embedded application without reloading the page.
|
|
1413
1428
|
* This is the same as calling `appEmbed.navigateToPage(path, true)`
|
|
1429
|
+
*
|
|
1414
1430
|
* @param - path - the path to navigate to (can be a number[1/-1] to go forward/back)
|
|
1415
1431
|
* @example
|
|
1416
1432
|
* ```js
|
|
@@ -1734,6 +1750,7 @@ export declare enum HostEvent {
|
|
|
1734
1750
|
/**
|
|
1735
1751
|
* Triggers the **SpotIQ analyze** action on visualization
|
|
1736
1752
|
* or search.
|
|
1753
|
+
*
|
|
1737
1754
|
* @param - Liveboard embed takes `vizId` as a
|
|
1738
1755
|
* key. Can be left undefined when embedding Search or
|
|
1739
1756
|
* visualization.
|
|
@@ -1773,6 +1790,7 @@ export declare enum HostEvent {
|
|
|
1773
1790
|
/**
|
|
1774
1791
|
* Triggers the **Download** > **PNG** action on
|
|
1775
1792
|
* charts in the embedded view.
|
|
1793
|
+
*
|
|
1776
1794
|
* @example
|
|
1777
1795
|
* ```js
|
|
1778
1796
|
* liveboardEmbed.trigger(HostEvent.DownloadAsPng,
|
|
@@ -1806,6 +1824,7 @@ export declare enum HostEvent {
|
|
|
1806
1824
|
/**
|
|
1807
1825
|
* Triggers the **Download** > **XLSX** action on tables
|
|
1808
1826
|
* in the embedded view.
|
|
1827
|
+
*
|
|
1809
1828
|
* @example
|
|
1810
1829
|
* ```js
|
|
1811
1830
|
* liveboardEmbed.trigger(HostEvent.DownloadAsXlsx, {vizId:
|
|
@@ -1837,6 +1856,7 @@ export declare enum HostEvent {
|
|
|
1837
1856
|
/**
|
|
1838
1857
|
* Triggers the **Save** action on a Liveboard or Answer.
|
|
1839
1858
|
* Saves the changes.
|
|
1859
|
+
*
|
|
1840
1860
|
* @example
|
|
1841
1861
|
* ```js
|
|
1842
1862
|
* liveboardEmbed.trigger(HostEvent.Save)
|
|
@@ -1850,6 +1870,7 @@ export declare enum HostEvent {
|
|
|
1850
1870
|
/**
|
|
1851
1871
|
* Triggers the **Sync to Sheets** action on an embedded visualization or Answer
|
|
1852
1872
|
* Sends data from an Answer or Liveboard visualization to a Google sheet.
|
|
1873
|
+
*
|
|
1853
1874
|
* @param - an object with `vizId` as a key
|
|
1854
1875
|
* @example
|
|
1855
1876
|
* ```js
|
|
@@ -1866,6 +1887,7 @@ export declare enum HostEvent {
|
|
|
1866
1887
|
* Triggers the **Sync to Other Apps** action on an embedded visualization or Answer
|
|
1867
1888
|
* Sends data from an Answer or Liveboard visualization to third-party apps such
|
|
1868
1889
|
* as Slack, Salesforce, Microsoft Teams, ServiceNow and so on.
|
|
1890
|
+
*
|
|
1869
1891
|
* @param - an object with vizId as a key
|
|
1870
1892
|
* @example
|
|
1871
1893
|
* ```js
|
|
@@ -1882,6 +1904,7 @@ export declare enum HostEvent {
|
|
|
1882
1904
|
* Triggers the **Manage pipelines** action on an embedded
|
|
1883
1905
|
* visualization or Answer.
|
|
1884
1906
|
* Allows users to manage ThoughtSpot Sync pipelines.
|
|
1907
|
+
*
|
|
1885
1908
|
* @param - an object with `vizId` as a key
|
|
1886
1909
|
* @example
|
|
1887
1910
|
* ```js
|
|
@@ -2034,7 +2057,10 @@ export declare enum Param {
|
|
|
2034
2057
|
ShowLiveboardTitle = "showLiveboardTitle",
|
|
2035
2058
|
HiddenTabs = "hideTabs",
|
|
2036
2059
|
VisibleTabs = "visibleTabs",
|
|
2037
|
-
HideTabPanel = "hideTabPanel"
|
|
2060
|
+
HideTabPanel = "hideTabPanel",
|
|
2061
|
+
HideSampleQuestions = "hideSampleQuestions",
|
|
2062
|
+
WorksheetId = "worksheetId",
|
|
2063
|
+
Query = "query,"
|
|
2038
2064
|
}
|
|
2039
2065
|
/**
|
|
2040
2066
|
* ThoughtSpot application pages include actions and menu commands
|
|
@@ -2043,6 +2069,7 @@ export declare enum Param {
|
|
|
2043
2069
|
* specific actions in the embedded view, define the Action
|
|
2044
2070
|
* enumeration members in the `disabledActions`, `visibleActions`,
|
|
2045
2071
|
* or `hiddenActions` array.
|
|
2072
|
+
*
|
|
2046
2073
|
* @example
|
|
2047
2074
|
* ```js
|
|
2048
2075
|
* const embed = new LiveboardEmbed('#embed-container', {
|
|
@@ -2061,12 +2088,12 @@ export declare enum Param {
|
|
|
2061
2088
|
* hiddenActions: [Action.Edit, ActionAction.Explore],
|
|
2062
2089
|
* })
|
|
2063
2090
|
* ```
|
|
2064
|
-
|
|
2065
2091
|
*/
|
|
2066
2092
|
export declare enum Action {
|
|
2067
2093
|
/**
|
|
2068
2094
|
* The **Save** action on an Answer or Liveboard.
|
|
2069
2095
|
* Allows users to save the changes.
|
|
2096
|
+
*
|
|
2070
2097
|
* @example
|
|
2071
2098
|
* ```js
|
|
2072
2099
|
* disabledActions: [Action.SaveAsView]
|
|
@@ -2082,136 +2109,146 @@ export declare enum Action {
|
|
|
2082
2109
|
*/
|
|
2083
2110
|
SaveUntitled = "saveUntitled",
|
|
2084
2111
|
/**
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2112
|
+
* The **Save as View** action on the Answer
|
|
2113
|
+
* page. Saves an Answer as a View object.
|
|
2114
|
+
*
|
|
2115
|
+
* @example
|
|
2116
|
+
* ```js
|
|
2117
|
+
* disabledActions: [Action.SaveAsView]
|
|
2118
|
+
* ```
|
|
2119
|
+
*/
|
|
2093
2120
|
SaveAsView = "saveAsView",
|
|
2094
2121
|
/**
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2122
|
+
* The **Make a copy** action on a Liveboard or Answer
|
|
2123
|
+
* page.
|
|
2124
|
+
* Creates a copy of the Liveboard, visualization,
|
|
2125
|
+
* or Answer.
|
|
2126
|
+
*
|
|
2127
|
+
* @example
|
|
2128
|
+
* ```js
|
|
2129
|
+
* disabledActions: [Action.MakeACopy]
|
|
2130
|
+
* ```
|
|
2131
|
+
*/
|
|
2105
2132
|
MakeACopy = "makeACopy",
|
|
2106
2133
|
/**
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2134
|
+
* The **Copy and Edit** action on a Liveboard.
|
|
2135
|
+
* This action is now replaced with `Action.MakeACopy`.
|
|
2136
|
+
*
|
|
2137
|
+
* @example
|
|
2138
|
+
* ```js
|
|
2139
|
+
* disabledActions: [Action.EditACopy]
|
|
2140
|
+
* ```
|
|
2141
|
+
*/
|
|
2115
2142
|
EditACopy = "editACopy",
|
|
2116
2143
|
/**
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2144
|
+
* The **Copy link** menu action on a Liveboard visualization.
|
|
2145
|
+
* Copies the visualization URL
|
|
2146
|
+
*
|
|
2147
|
+
* @example
|
|
2148
|
+
* ```js
|
|
2149
|
+
* disabledActions: [Action.CopyLink]
|
|
2150
|
+
* ```
|
|
2151
|
+
*/
|
|
2124
2152
|
CopyLink = "embedDocument",
|
|
2125
2153
|
/**
|
|
2126
2154
|
* @hidden
|
|
2127
2155
|
*/
|
|
2128
2156
|
ResetLayout = "resetLayout",
|
|
2129
2157
|
/**
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
|
|
2158
|
+
* The **Schedule** menu action on a Liveboard.
|
|
2159
|
+
* Allows scheduling a Liveboard notification.
|
|
2160
|
+
*
|
|
2161
|
+
* @example
|
|
2162
|
+
* ```js
|
|
2163
|
+
* disabledActions: [Action.Schedule]
|
|
2164
|
+
* ```
|
|
2165
|
+
*/
|
|
2137
2166
|
Schedule = "subscription",
|
|
2138
2167
|
/**
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2168
|
+
* The **Manage schedules** menu action on a Liveboard.
|
|
2169
|
+
* Allows users to manage scheduled Liveboard jobs.
|
|
2170
|
+
*
|
|
2171
|
+
* @example
|
|
2172
|
+
* ```js
|
|
2173
|
+
* disabledActions: [Action.SchedulesList]
|
|
2174
|
+
* ```
|
|
2175
|
+
*/
|
|
2146
2176
|
SchedulesList = "schedule-list",
|
|
2147
2177
|
/**
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2178
|
+
* The **Share** action on a Liveboard, Answer, or Worksheet.
|
|
2179
|
+
* Allows users to share an object with other users and groups.
|
|
2180
|
+
*
|
|
2181
|
+
* @example
|
|
2182
|
+
* ```js
|
|
2183
|
+
* disabledActions: [Action.Share]
|
|
2184
|
+
* ```
|
|
2185
|
+
*/
|
|
2155
2186
|
Share = "share",
|
|
2156
2187
|
/**
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2188
|
+
* The **Add filter** action on a Liveboard and Search page.
|
|
2189
|
+
* Allows adding filters to Answers and visualizations on a Liveboard.
|
|
2190
|
+
*
|
|
2191
|
+
* @example
|
|
2192
|
+
* ```js
|
|
2193
|
+
* disabledActions: [Action.AddFilter]
|
|
2194
|
+
* ```
|
|
2195
|
+
*/
|
|
2164
2196
|
AddFilter = "addFilter",
|
|
2165
2197
|
/**
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2198
|
+
* Filter configuration options on a Liveboard and Search page.
|
|
2199
|
+
* Allows configuring filter options when adding filters to a
|
|
2200
|
+
* Liveboard or Answer.
|
|
2201
|
+
*
|
|
2202
|
+
* @example
|
|
2203
|
+
* ```js
|
|
2204
|
+
* disabledActions: [Action.ConfigureFilter]
|
|
2205
|
+
* ```
|
|
2206
|
+
*/
|
|
2174
2207
|
ConfigureFilter = "configureFilter",
|
|
2175
2208
|
CollapseDataSources = "collapseDataSources",
|
|
2176
2209
|
/**
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2210
|
+
* The **Choose sources** button on Search page.
|
|
2211
|
+
* Allows selecting data sources for search queries.
|
|
2212
|
+
*
|
|
2213
|
+
* @example
|
|
2214
|
+
* ```js
|
|
2215
|
+
* disabledActions: [Action.ChooseDataSources]
|
|
2216
|
+
* ```
|
|
2217
|
+
*/
|
|
2184
2218
|
ChooseDataSources = "chooseDataSources",
|
|
2185
2219
|
/**
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2220
|
+
* The **Create formula** action on a Search or Answer page.
|
|
2221
|
+
* Allows adding formulas to an Answer.
|
|
2222
|
+
*
|
|
2223
|
+
* @example
|
|
2224
|
+
* ```js
|
|
2225
|
+
* disabledActions: [Action.AddFormula]
|
|
2226
|
+
* ```
|
|
2227
|
+
*/
|
|
2193
2228
|
AddFormula = "addFormula",
|
|
2194
2229
|
/**
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2230
|
+
* The **Add parameter** action on a Liveboard or Answer.
|
|
2231
|
+
* Allows adding Parameters to a Liveboard or Answer.
|
|
2232
|
+
*
|
|
2233
|
+
* @example
|
|
2234
|
+
* ```js
|
|
2235
|
+
* disabledActions: [Action.AddParameter]
|
|
2236
|
+
* ```
|
|
2237
|
+
*/
|
|
2202
2238
|
AddParameter = "addParameter",
|
|
2203
2239
|
/**
|
|
2204
2240
|
* @hidden
|
|
2205
2241
|
*/
|
|
2206
2242
|
SearchOnTop = "searchOnTop",
|
|
2207
2243
|
/**
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2244
|
+
* The **SpotIQ analyze** menu action on a visualization or
|
|
2245
|
+
* Answer page.
|
|
2246
|
+
*
|
|
2247
|
+
* @example
|
|
2248
|
+
* ```js
|
|
2249
|
+
* disabledActions: [Action.SpotIQAnalyze]
|
|
2250
|
+
* ```
|
|
2251
|
+
*/
|
|
2215
2252
|
SpotIQAnalyze = "spotIQAnalyze",
|
|
2216
2253
|
/**
|
|
2217
2254
|
* @hidden
|
|
@@ -2227,89 +2264,98 @@ export declare enum Action {
|
|
|
2227
2264
|
*/
|
|
2228
2265
|
ReplaySearch = "replaySearch",
|
|
2229
2266
|
/**
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2267
|
+
* The **Show underlying data** menu action on a visualization or
|
|
2268
|
+
* Answer page.
|
|
2269
|
+
*
|
|
2270
|
+
* @example
|
|
2271
|
+
* ```js
|
|
2272
|
+
* disabledActions: [Action.ShowUnderlyingData]
|
|
2273
|
+
* ```
|
|
2274
|
+
*/
|
|
2237
2275
|
ShowUnderlyingData = "showUnderlyingData",
|
|
2238
2276
|
/**
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2277
|
+
* The **Download** menu action on Liveboard visualizations
|
|
2278
|
+
* and Answers.
|
|
2279
|
+
* Allows downloading a visualization or Answer.
|
|
2280
|
+
*
|
|
2281
|
+
* @example
|
|
2282
|
+
* ```js
|
|
2283
|
+
* disabledActions: [Action.DownloadAsPng]
|
|
2284
|
+
* ```
|
|
2285
|
+
*/
|
|
2247
2286
|
Download = "download",
|
|
2248
2287
|
/**
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2288
|
+
* The **Download** > **PNG** menu action for charts on a Liveboard
|
|
2289
|
+
* or Answer page.
|
|
2290
|
+
* Downloads a visualization or Answer as a PNG file.
|
|
2291
|
+
*
|
|
2292
|
+
* @example
|
|
2293
|
+
* ```js
|
|
2294
|
+
* disabledActions: [Action.DownloadAsPng]
|
|
2295
|
+
* ```
|
|
2296
|
+
*/
|
|
2257
2297
|
DownloadAsPng = "downloadAsPng",
|
|
2258
2298
|
/**
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2299
|
+
* The **Download** > **PDF** menu action on a Liveboard.
|
|
2300
|
+
* Downloads a visualization or Answer as a PDF file.
|
|
2301
|
+
*
|
|
2302
|
+
* @example
|
|
2303
|
+
* ```js
|
|
2304
|
+
* disabledActions: [Action.DownloadAsPdf]
|
|
2305
|
+
* ```
|
|
2306
|
+
*/
|
|
2266
2307
|
DownloadAsPdf = "downloadAsPdf",
|
|
2267
2308
|
/**
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2309
|
+
* The **Download** > **CSV** menu action for tables on a Liveboard
|
|
2310
|
+
* or Answer page.
|
|
2311
|
+
* Downloads a visualization or Answer in the XLSX format.
|
|
2312
|
+
*
|
|
2313
|
+
* @example
|
|
2314
|
+
* ```js
|
|
2315
|
+
* disabledActions: [Action.DownloadAsCsv]
|
|
2316
|
+
* ```
|
|
2317
|
+
*/
|
|
2276
2318
|
DownloadAsCsv = "downloadAsCSV",
|
|
2277
2319
|
/**
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2320
|
+
* The **Download** > **XLSX** menu action for tables on a Liveboard
|
|
2321
|
+
* or Answer page.
|
|
2322
|
+
* Downloads a visualization or Answer in the XLSX format.
|
|
2323
|
+
*
|
|
2324
|
+
* @example
|
|
2325
|
+
* ```js
|
|
2326
|
+
* disabledActions: [Action.DownloadAsXlsx]
|
|
2327
|
+
* ```
|
|
2328
|
+
*/
|
|
2286
2329
|
DownloadAsXlsx = "downloadAsXLSX",
|
|
2287
2330
|
/**
|
|
2288
2331
|
* @hidden
|
|
2289
2332
|
*/
|
|
2290
2333
|
DownloadTrace = "downloadTrace",
|
|
2291
2334
|
/**
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2335
|
+
* The **Export TML** menu action on Liveboard, Answers
|
|
2336
|
+
* Worksheets and Data Connections page.
|
|
2337
|
+
* Exports an object as a TML file.
|
|
2338
|
+
*
|
|
2339
|
+
* @example
|
|
2340
|
+
* ```js
|
|
2341
|
+
* disabledActions: [Action.ExportTML]
|
|
2342
|
+
* ```
|
|
2343
|
+
*/
|
|
2300
2344
|
ExportTML = "exportTSL",
|
|
2301
2345
|
/**
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2346
|
+
* The **Import TML** menu action for Liveboards and Answers.
|
|
2347
|
+
* Imports TML representation of ThoughtSpot objects.
|
|
2348
|
+
*
|
|
2349
|
+
* @example
|
|
2350
|
+
* ```js
|
|
2351
|
+
* disabledActions: [Action.ImportTML]
|
|
2352
|
+
* ```
|
|
2353
|
+
*/
|
|
2309
2354
|
ImportTML = "importTSL",
|
|
2310
2355
|
/**
|
|
2311
2356
|
* The **Update TML** menu action for Liveboards and Answers.
|
|
2312
2357
|
* Update TML representation of ThoughtSpot objects.
|
|
2358
|
+
*
|
|
2313
2359
|
* @example
|
|
2314
2360
|
* ```js
|
|
2315
2361
|
* disabledActions: [Action.UpdateTML]
|
|
@@ -2319,6 +2365,7 @@ export declare enum Action {
|
|
|
2319
2365
|
/**
|
|
2320
2366
|
* The **Edit TML** menu action for Liveboards and Answers.
|
|
2321
2367
|
* Opens the TML editor.
|
|
2368
|
+
*
|
|
2322
2369
|
* @example
|
|
2323
2370
|
* ```js
|
|
2324
2371
|
* disabledActions: [Action.EditTML]
|
|
@@ -2326,50 +2373,55 @@ export declare enum Action {
|
|
|
2326
2373
|
*/
|
|
2327
2374
|
EditTML = "editTSL",
|
|
2328
2375
|
/**
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2376
|
+
* The **Present** menu action for Liveboards and Answers.
|
|
2377
|
+
* Allows presenting a Liveboard or visualization in
|
|
2378
|
+
* slideshow mode.
|
|
2379
|
+
*
|
|
2380
|
+
* @example
|
|
2381
|
+
* ```js
|
|
2382
|
+
* disabledActions: [Action.Present]
|
|
2383
|
+
* ```
|
|
2384
|
+
*/
|
|
2337
2385
|
Present = "present",
|
|
2338
2386
|
/**
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2387
|
+
* The tile resize options in the visualization menu.
|
|
2388
|
+
* Allows switching between different preset layouts.
|
|
2389
|
+
*
|
|
2390
|
+
* @example
|
|
2391
|
+
* ```js
|
|
2392
|
+
* disabledActions: [Action.ToggleSize]
|
|
2393
|
+
* ```
|
|
2394
|
+
*/
|
|
2346
2395
|
ToggleSize = "toggleSize",
|
|
2347
2396
|
/**
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2397
|
+
* The *Edit* action on the Liveboard page and in the
|
|
2398
|
+
* visualization menu.
|
|
2399
|
+
* Opens a Liveboard or visualization in edit mode.
|
|
2400
|
+
*
|
|
2401
|
+
* @example
|
|
2402
|
+
* ```js
|
|
2403
|
+
* disabledActions: [Action.Edit]
|
|
2404
|
+
* ```
|
|
2405
|
+
*/
|
|
2356
2406
|
Edit = "edit",
|
|
2357
2407
|
/**
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2408
|
+
* The text edit option for Liveboard and visualization titles.
|
|
2409
|
+
*
|
|
2410
|
+
* @example
|
|
2411
|
+
* ```js
|
|
2412
|
+
* disabledActions: [Action.EditTitle]
|
|
2413
|
+
* ```
|
|
2414
|
+
*/
|
|
2364
2415
|
EditTitle = "editTitle",
|
|
2365
2416
|
/**
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2417
|
+
* The **Delete** menu action on Liveboards and visualizations.
|
|
2418
|
+
* Deletes a Liveboard or a visualization from a Liveboard.
|
|
2419
|
+
*
|
|
2420
|
+
* @example
|
|
2421
|
+
* ```js
|
|
2422
|
+
* disabledActions: [Action.Remove]
|
|
2423
|
+
* ```
|
|
2424
|
+
*/
|
|
2373
2425
|
Remove = "delete",
|
|
2374
2426
|
/**
|
|
2375
2427
|
* @hidden
|
|
@@ -2392,15 +2444,16 @@ export declare enum Action {
|
|
|
2392
2444
|
*/
|
|
2393
2445
|
PinboardInfo = "pinboardInfo",
|
|
2394
2446
|
/**
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2447
|
+
* The **Show Liveboard details** menu action on a Liveboard.
|
|
2448
|
+
* Displays details such as the name, description, and
|
|
2449
|
+
* author of the Liveboard, and timestamp of Liveboard creation
|
|
2450
|
+
* and update.
|
|
2451
|
+
*
|
|
2452
|
+
* @example
|
|
2453
|
+
* ```js
|
|
2454
|
+
* disabledActions: [Action.LiveboardInfo]
|
|
2455
|
+
* ```
|
|
2456
|
+
*/
|
|
2404
2457
|
LiveboardInfo = "pinboardInfo",
|
|
2405
2458
|
/**
|
|
2406
2459
|
* @hidden
|
|
@@ -2411,13 +2464,14 @@ export declare enum Action {
|
|
|
2411
2464
|
*/
|
|
2412
2465
|
DownloadEmbraceQueries = "downloadEmbraceQueries",
|
|
2413
2466
|
/**
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2467
|
+
* The **Pin** menu action on an Answer or
|
|
2468
|
+
* Search results page.
|
|
2469
|
+
*
|
|
2470
|
+
* @example
|
|
2471
|
+
* ```js
|
|
2472
|
+
* disabledActions: [Action.Pin]
|
|
2473
|
+
* ```
|
|
2474
|
+
*/
|
|
2421
2475
|
Pin = "pin",
|
|
2422
2476
|
/**
|
|
2423
2477
|
* @hidden
|
|
@@ -2425,6 +2479,7 @@ export declare enum Action {
|
|
|
2425
2479
|
AnalysisInfo = "analysisInfo",
|
|
2426
2480
|
/**
|
|
2427
2481
|
* The **Schedule** menu action on a Liveboard.
|
|
2482
|
+
*
|
|
2428
2483
|
* @example
|
|
2429
2484
|
* ```js
|
|
2430
2485
|
* disabledActions: [Action.Subscription]
|
|
@@ -2432,25 +2487,28 @@ export declare enum Action {
|
|
|
2432
2487
|
*/
|
|
2433
2488
|
Subscription = "subscription",
|
|
2434
2489
|
/**
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2490
|
+
* The **Explore** action on Liveboard visualizations
|
|
2491
|
+
*
|
|
2492
|
+
* @example
|
|
2493
|
+
* ```js
|
|
2494
|
+
* disabledActions: [Action.Explore]
|
|
2495
|
+
* ```
|
|
2496
|
+
*/
|
|
2441
2497
|
Explore = "explore",
|
|
2442
2498
|
/**
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2499
|
+
* The action to include data points on a drilled-down Answer
|
|
2500
|
+
* or visualization
|
|
2501
|
+
*
|
|
2502
|
+
* @example
|
|
2503
|
+
* ```js
|
|
2504
|
+
* disabledActions: [Action.DrillInclude]
|
|
2505
|
+
* ```
|
|
2506
|
+
*/
|
|
2450
2507
|
DrillInclude = "context-menu-item-include",
|
|
2451
2508
|
/**
|
|
2452
2509
|
* The action to exclude data points on a drilled-down Answer
|
|
2453
2510
|
* or visualization
|
|
2511
|
+
*
|
|
2454
2512
|
* @example
|
|
2455
2513
|
* ```js
|
|
2456
2514
|
* disabledActions: [Action.DrillInclude]
|
|
@@ -2461,6 +2519,7 @@ export declare enum Action {
|
|
|
2461
2519
|
* The **Copy to clipboard** menu action on tables in an Answer
|
|
2462
2520
|
* or Liveboard.
|
|
2463
2521
|
* Copies the selected data point.
|
|
2522
|
+
*
|
|
2464
2523
|
* @example
|
|
2465
2524
|
* ```js
|
|
2466
2525
|
* disabledActions: [Action.CopyToClipboard]
|
|
@@ -2478,6 +2537,7 @@ export declare enum Action {
|
|
|
2478
2537
|
* The **Drill down** menu action on Answers and Liveboard
|
|
2479
2538
|
* visualizations.
|
|
2480
2539
|
* Allows drilling down to a specific data point on a chart or table.
|
|
2540
|
+
*
|
|
2481
2541
|
* @example
|
|
2482
2542
|
* ```js
|
|
2483
2543
|
* disabledActions: [Action.DrillDown]
|
|
@@ -2487,6 +2547,7 @@ export declare enum Action {
|
|
|
2487
2547
|
/**
|
|
2488
2548
|
* The request access action on Liveboards.
|
|
2489
2549
|
* Allows users with view permissions to request edit access to a Liveboard.
|
|
2550
|
+
*
|
|
2490
2551
|
* @example
|
|
2491
2552
|
* ```js
|
|
2492
2553
|
* disabledActions: [Action.RequestAccess]
|
|
@@ -2496,6 +2557,7 @@ export declare enum Action {
|
|
|
2496
2557
|
/**
|
|
2497
2558
|
* The **Query visualizer** and **Query SQL** buttons in Query details panel
|
|
2498
2559
|
* of the Answer page
|
|
2560
|
+
*
|
|
2499
2561
|
* @example
|
|
2500
2562
|
* ```js
|
|
2501
2563
|
* disabledActions: [Action.QueryDetailsButtons]
|
|
@@ -2504,6 +2566,7 @@ export declare enum Action {
|
|
|
2504
2566
|
QueryDetailsButtons = "QueryDetailsButtons",
|
|
2505
2567
|
/**
|
|
2506
2568
|
* The **Delete** action for Answers.
|
|
2569
|
+
*
|
|
2507
2570
|
* @example
|
|
2508
2571
|
* ```js
|
|
2509
2572
|
* disabledActions: [Action.AnswerDelete]
|
|
@@ -2513,6 +2576,7 @@ export declare enum Action {
|
|
|
2513
2576
|
AnswerDelete = "onDeleteAnswer",
|
|
2514
2577
|
/**
|
|
2515
2578
|
* The Chart switcher icon on Answer and visualization pages.
|
|
2579
|
+
*
|
|
2516
2580
|
* @example
|
|
2517
2581
|
* ```js
|
|
2518
2582
|
* disabledActions: [Action.AnswerChartSwitcher]
|
|
@@ -2522,6 +2586,7 @@ export declare enum Action {
|
|
|
2522
2586
|
AnswerChartSwitcher = "answerChartSwitcher",
|
|
2523
2587
|
/**
|
|
2524
2588
|
* Favorites icon (*) on Answers, Liveboard, and Data pages
|
|
2589
|
+
*
|
|
2525
2590
|
* @example
|
|
2526
2591
|
* ```js
|
|
2527
2592
|
* disabledActions: [Action.AddToFavorites]
|
|
@@ -2531,6 +2596,7 @@ export declare enum Action {
|
|
|
2531
2596
|
AddToFavorites = "addToFavorites",
|
|
2532
2597
|
/**
|
|
2533
2598
|
* The edit icon on Liveboards (Classic experience).
|
|
2599
|
+
*
|
|
2534
2600
|
* @example
|
|
2535
2601
|
* ```js
|
|
2536
2602
|
* disabledActions: [Action.EditDetails]
|
|
@@ -2540,6 +2606,7 @@ export declare enum Action {
|
|
|
2540
2606
|
EditDetails = "editDetails",
|
|
2541
2607
|
/**
|
|
2542
2608
|
* The Create alert action on KPI charts.
|
|
2609
|
+
*
|
|
2543
2610
|
* @example
|
|
2544
2611
|
* ```js
|
|
2545
2612
|
* disabledActions: [Action.CreateMonitor ]
|
|
@@ -2558,6 +2625,7 @@ export declare enum Action {
|
|
|
2558
2625
|
/**
|
|
2559
2626
|
* The **Sync to sheets** action on Answers and Liveboard visualizations.
|
|
2560
2627
|
* Allows sending data to a Google Sheet.
|
|
2628
|
+
*
|
|
2561
2629
|
* @example
|
|
2562
2630
|
* ```js
|
|
2563
2631
|
* disabledActions: [Action.SyncToSheets]
|
|
@@ -2569,6 +2637,7 @@ export declare enum Action {
|
|
|
2569
2637
|
* The **Sync to other apps** action on Answers and Liveboard visualizations.
|
|
2570
2638
|
* Allows sending data to third-party apps like Slack, Salesforce,
|
|
2571
2639
|
* Microsoft Teams, and so on.
|
|
2640
|
+
*
|
|
2572
2641
|
* @example
|
|
2573
2642
|
* ```js
|
|
2574
2643
|
* disabledActions: [Action.SyncToOtherApps]
|
|
@@ -2579,6 +2648,7 @@ export declare enum Action {
|
|
|
2579
2648
|
/**
|
|
2580
2649
|
* The **Manage pipelines** action on Answers and Liveboard visualizations.
|
|
2581
2650
|
* Allows users to manage data sync pipelines to third-party apps.
|
|
2651
|
+
*
|
|
2582
2652
|
* @example
|
|
2583
2653
|
* ```js
|
|
2584
2654
|
* disabledActions: [Action.SyncToOtherApps]
|
|
@@ -2589,6 +2659,7 @@ export declare enum Action {
|
|
|
2589
2659
|
/**
|
|
2590
2660
|
* The **Filter** action on Liveboard visualizations.
|
|
2591
2661
|
* Allows users to apply cross-filters on a Liveboard.
|
|
2662
|
+
*
|
|
2592
2663
|
* @example
|
|
2593
2664
|
* ```js
|
|
2594
2665
|
* disabledActions: [Action.CrossFilter]
|
|
@@ -2600,6 +2671,7 @@ export declare enum Action {
|
|
|
2600
2671
|
* The **Remove** action that appears when cross filters are applied
|
|
2601
2672
|
* on a Liveboard.
|
|
2602
2673
|
* Removes filters applied o a visualization.
|
|
2674
|
+
*
|
|
2603
2675
|
* @example
|
|
2604
2676
|
* ```js
|
|
2605
2677
|
* disabledActions: [Action.RemoveCrossFilter]
|
|
@@ -2611,6 +2683,7 @@ export declare enum Action {
|
|
|
2611
2683
|
* The **Aggregate** option in the chart axis or the
|
|
2612
2684
|
* table column customization menu.
|
|
2613
2685
|
* Provides aggregation options to analyze the data on a chart or table.
|
|
2686
|
+
*
|
|
2614
2687
|
* @example
|
|
2615
2688
|
* ```js
|
|
2616
2689
|
* disabledActions: [Action.AxisMenuAggregate]
|
|
@@ -2622,6 +2695,7 @@ export declare enum Action {
|
|
|
2622
2695
|
* The **Time bucket** option in the chart axis or table column
|
|
2623
2696
|
* customization menu.
|
|
2624
2697
|
* Allows defining time metric for date comparison.
|
|
2698
|
+
*
|
|
2625
2699
|
* @example
|
|
2626
2700
|
* ```js
|
|
2627
2701
|
* disabledActions: [Action.AxisMenuTimeBucket]
|
|
@@ -2632,6 +2706,7 @@ export declare enum Action {
|
|
|
2632
2706
|
/**
|
|
2633
2707
|
* The **Filter** action in the chart axis or table column
|
|
2634
2708
|
* customization menu.
|
|
2709
|
+
*
|
|
2635
2710
|
* @example
|
|
2636
2711
|
* ```js
|
|
2637
2712
|
* disabledActions: [Action.AxisMenuFilter]
|
|
@@ -2643,6 +2718,7 @@ export declare enum Action {
|
|
|
2643
2718
|
* The **Conditional formatting** action on chart or table.
|
|
2644
2719
|
* Allows adding rules for conditional formatting of data
|
|
2645
2720
|
* points on a chart or table.
|
|
2721
|
+
*
|
|
2646
2722
|
* @example
|
|
2647
2723
|
* ```js
|
|
2648
2724
|
* disabledActions: [Action.AxisMenuConditionalFormat]
|
|
@@ -2654,6 +2730,7 @@ export declare enum Action {
|
|
|
2654
2730
|
* The **Sort** menu action on a table or chart axis
|
|
2655
2731
|
* Sorts data in ascending or descending order.
|
|
2656
2732
|
* Allows adding, editing, or removing filters.
|
|
2733
|
+
*
|
|
2657
2734
|
* @example
|
|
2658
2735
|
* ```js
|
|
2659
2736
|
* disabledActions: [Action.AxisMenuConditionalFormat]
|
|
@@ -2666,6 +2743,7 @@ export declare enum Action {
|
|
|
2666
2743
|
* customization menu.
|
|
2667
2744
|
* Allows grouping data points if the axes use the same
|
|
2668
2745
|
* unit of measurement and a similar scale.
|
|
2746
|
+
*
|
|
2669
2747
|
* @example
|
|
2670
2748
|
* ```js
|
|
2671
2749
|
* disabledActions: [Action.AxisMenuGroup]
|
|
@@ -2677,6 +2755,7 @@ export declare enum Action {
|
|
|
2677
2755
|
* The **Position** option in the axis customization menu.
|
|
2678
2756
|
* Allows changing the position of the axis to the
|
|
2679
2757
|
* left or right side of the chart.
|
|
2758
|
+
*
|
|
2680
2759
|
* @example
|
|
2681
2760
|
* ```js
|
|
2682
2761
|
* disabledActions: [Action.AxisMenuPosition]
|
|
@@ -2687,6 +2766,7 @@ export declare enum Action {
|
|
|
2687
2766
|
/**
|
|
2688
2767
|
* The **Rename** option in the chart axis or table column customization menu.
|
|
2689
2768
|
* Renames the axis label on a chart or the column header on a table.
|
|
2769
|
+
*
|
|
2690
2770
|
* @example
|
|
2691
2771
|
* ```js
|
|
2692
2772
|
* disabledActions: [Action.AxisMenuRename]
|
|
@@ -2698,6 +2778,7 @@ export declare enum Action {
|
|
|
2698
2778
|
* The **Edit** action in the axis customization menu.
|
|
2699
2779
|
* Allows editing the axis name, position, minimum and maximum values,
|
|
2700
2780
|
* and format of a column.
|
|
2781
|
+
*
|
|
2701
2782
|
* @example
|
|
2702
2783
|
* ```js
|
|
2703
2784
|
* disabledActions: [Action.AxisMenuEdit]
|
|
@@ -2708,6 +2789,7 @@ export declare enum Action {
|
|
|
2708
2789
|
/**
|
|
2709
2790
|
* The **Number format** action to customize the format of
|
|
2710
2791
|
* the data labels on a chart or table.
|
|
2792
|
+
*
|
|
2711
2793
|
* @example
|
|
2712
2794
|
* ```js
|
|
2713
2795
|
* disabledActions: [Action.AxisMenuNumberFormat]
|
|
@@ -2718,6 +2800,7 @@ export declare enum Action {
|
|
|
2718
2800
|
/**
|
|
2719
2801
|
* The **Text wrapping** action on a table.
|
|
2720
2802
|
* Wraps or clips column text on a table.
|
|
2803
|
+
*
|
|
2721
2804
|
* @example
|
|
2722
2805
|
* ```js
|
|
2723
2806
|
* disabledActions: [Action.AxisMenuTextWrapping]
|
|
@@ -2730,6 +2813,7 @@ export declare enum Action {
|
|
|
2730
2813
|
* customization menu.
|
|
2731
2814
|
* Removes the data labels from a chart or the column of a
|
|
2732
2815
|
* table visualization.
|
|
2816
|
+
*
|
|
2733
2817
|
* @example
|
|
2734
2818
|
* ```js
|
|
2735
2819
|
* disabledActions: [Action.AxisMenuRemove]
|
|
@@ -2744,6 +2828,7 @@ export declare enum Action {
|
|
|
2744
2828
|
/**
|
|
2745
2829
|
* The **Rename** menu action on Liveboards and visualizations.
|
|
2746
2830
|
* Allows renaming a Liveboard or visualization.
|
|
2831
|
+
*
|
|
2747
2832
|
* @example
|
|
2748
2833
|
* ```js
|
|
2749
2834
|
* disabledActions: [Action.RenameModalTitleDescription]
|
|
@@ -2766,7 +2851,23 @@ export declare enum Action {
|
|
|
2766
2851
|
/**
|
|
2767
2852
|
* @version SDK: 1.25.0 | Thoughtspot: 9.6.0.cl
|
|
2768
2853
|
*/
|
|
2769
|
-
EnableContextualChangeAnalysis = "enableContextualChangeAnalysis"
|
|
2854
|
+
EnableContextualChangeAnalysis = "enableContextualChangeAnalysis",
|
|
2855
|
+
/**
|
|
2856
|
+
* @version SDK: 1.26.0 | Thoughtspot: 9.7.0.cl
|
|
2857
|
+
*/
|
|
2858
|
+
ShowSageQuery = "showSageQuery",
|
|
2859
|
+
/**
|
|
2860
|
+
* @version SDK: 1.26.0 | Thoughtspot: 9.7.0.cl
|
|
2861
|
+
*/
|
|
2862
|
+
EditSageAnswer = "editSageAnswer",
|
|
2863
|
+
/**
|
|
2864
|
+
* @version SDK: 1.26.0 | Thoughtspot: 9.7.0.cl
|
|
2865
|
+
*/
|
|
2866
|
+
SageAnswerFeedback = "sageAnswerFeedback",
|
|
2867
|
+
/**
|
|
2868
|
+
* @version SDK: 1.26.0 | Thoughtspot: 9.7.0.cl
|
|
2869
|
+
*/
|
|
2870
|
+
ModifySageAnswer = "modifySageAnswer"
|
|
2770
2871
|
}
|
|
2771
2872
|
export interface SessionInterface {
|
|
2772
2873
|
sessionId: string;
|