@thoughtspot/visual-embed-sdk 1.23.0 → 1.23.2
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 -1
- package/cjs/src/auth.d.ts.map +1 -1
- package/cjs/src/auth.js +1 -3
- package/cjs/src/auth.js.map +1 -1
- package/cjs/src/embed/app.d.ts +9 -1
- package/cjs/src/embed/app.d.ts.map +1 -1
- package/cjs/src/embed/app.js +3 -2
- package/cjs/src/embed/app.js.map +1 -1
- package/cjs/src/embed/app.spec.js +10 -0
- package/cjs/src/embed/app.spec.js.map +1 -1
- package/cjs/src/embed/base.d.ts +8 -0
- package/cjs/src/embed/base.d.ts.map +1 -1
- package/cjs/src/embed/base.js +8 -0
- package/cjs/src/embed/base.js.map +1 -1
- package/cjs/src/embed/sage.d.ts +39 -2
- package/cjs/src/embed/sage.d.ts.map +1 -1
- package/cjs/src/embed/sage.js +17 -3
- package/cjs/src/embed/sage.js.map +1 -1
- package/cjs/src/embed/sage.spec.js +27 -1
- package/cjs/src/embed/sage.spec.js.map +1 -1
- package/cjs/src/embed/search-bar.d.ts +1 -1
- package/cjs/src/embed/search-bar.d.ts.map +1 -1
- package/cjs/src/embed/search.d.ts +8 -0
- package/cjs/src/embed/search.d.ts.map +1 -1
- package/cjs/src/embed/search.js +2 -1
- package/cjs/src/embed/search.js.map +1 -1
- package/cjs/src/embed/search.spec.js +11 -1
- package/cjs/src/embed/search.spec.js.map +1 -1
- package/cjs/src/react/index.spec.js +1 -1
- package/cjs/src/react/index.spec.js.map +1 -1
- package/cjs/src/types.d.ts +380 -248
- package/cjs/src/types.d.ts.map +1 -1
- package/cjs/src/types.js +357 -241
- package/cjs/src/types.js.map +1 -1
- package/dist/src/auth.d.ts.map +1 -1
- package/dist/src/embed/app.d.ts +9 -1
- package/dist/src/embed/app.d.ts.map +1 -1
- package/dist/src/embed/base.d.ts +8 -0
- package/dist/src/embed/base.d.ts.map +1 -1
- package/dist/src/embed/sage.d.ts +39 -2
- package/dist/src/embed/sage.d.ts.map +1 -1
- package/dist/src/embed/search-bar.d.ts +1 -1
- package/dist/src/embed/search-bar.d.ts.map +1 -1
- package/dist/src/embed/search.d.ts +8 -0
- package/dist/src/embed/search.d.ts.map +1 -1
- package/dist/src/types.d.ts +380 -248
- package/dist/src/types.d.ts.map +1 -1
- package/dist/tsembed-react.es.js +381 -17448
- package/dist/tsembed-react.js +380 -17447
- package/dist/tsembed.es.js +389 -17448
- package/dist/tsembed.js +388 -17447
- package/dist/visual-embed-sdk-react-full.d.ts +445 -252
- package/dist/visual-embed-sdk-react.d.ts +445 -252
- package/dist/visual-embed-sdk.d.ts +445 -252
- package/lib/package.json +1 -1
- package/lib/src/auth.d.ts.map +1 -1
- package/lib/src/auth.js +1 -2
- package/lib/src/auth.js.map +1 -1
- package/lib/src/embed/app.d.ts +9 -1
- package/lib/src/embed/app.d.ts.map +1 -1
- package/lib/src/embed/app.js +3 -2
- package/lib/src/embed/app.js.map +1 -1
- package/lib/src/embed/app.spec.js +10 -0
- package/lib/src/embed/app.spec.js.map +1 -1
- package/lib/src/embed/base.d.ts +8 -0
- package/lib/src/embed/base.d.ts.map +1 -1
- package/lib/src/embed/base.js +8 -0
- package/lib/src/embed/base.js.map +1 -1
- package/lib/src/embed/sage.d.ts +39 -2
- package/lib/src/embed/sage.d.ts.map +1 -1
- package/lib/src/embed/sage.js +17 -3
- package/lib/src/embed/sage.js.map +1 -1
- package/lib/src/embed/sage.spec.js +27 -1
- package/lib/src/embed/sage.spec.js.map +1 -1
- package/lib/src/embed/search-bar.d.ts +1 -1
- package/lib/src/embed/search-bar.d.ts.map +1 -1
- package/lib/src/embed/search.d.ts +8 -0
- package/lib/src/embed/search.d.ts.map +1 -1
- package/lib/src/embed/search.js +2 -1
- package/lib/src/embed/search.js.map +1 -1
- package/lib/src/embed/search.spec.js +11 -1
- package/lib/src/embed/search.spec.js.map +1 -1
- package/lib/src/react/index.spec.js +1 -1
- package/lib/src/react/index.spec.js.map +1 -1
- package/lib/src/types.d.ts +380 -248
- package/lib/src/types.d.ts.map +1 -1
- package/lib/src/types.js +357 -241
- package/lib/src/types.js.map +1 -1
- package/lib/src/visual-embed-sdk.d.ts +445 -252
- package/package.json +1 -1
- package/src/auth.ts +1 -2
- package/src/embed/app.spec.ts +15 -0
- package/src/embed/app.ts +11 -1
- package/src/embed/base.ts +8 -0
- package/src/embed/sage.spec.ts +33 -1
- package/src/embed/sage.ts +59 -4
- package/src/embed/search-bar.tsx +1 -1
- package/src/embed/search.spec.ts +15 -1
- package/src/embed/search.ts +10 -0
- package/src/react/index.spec.tsx +1 -1
- package/src/types.ts +366 -247
package/lib/src/types.js
CHANGED
|
@@ -669,6 +669,18 @@ export var EmbedEvent;
|
|
|
669
669
|
* @version SDK: 1.23.0 | ThoughtSpot: 9.4.0.cl
|
|
670
670
|
*/
|
|
671
671
|
EmbedEvent["FilterChanged"] = "filterChanged";
|
|
672
|
+
/**
|
|
673
|
+
* Emitted when a user click on Go button in Sage Embed
|
|
674
|
+
*
|
|
675
|
+
* @version SDK : 1.27.0 | Thoughtspot: 9.7.0.cl
|
|
676
|
+
*/
|
|
677
|
+
EmbedEvent["SageEmbedQuery"] = "sageEmbedQuery";
|
|
678
|
+
/**
|
|
679
|
+
* Emitten when a user select data source in Sage Embed
|
|
680
|
+
*
|
|
681
|
+
* @version SDK : 1.27.0 | Thoughtspot: 9.7.0.cl
|
|
682
|
+
*/
|
|
683
|
+
EmbedEvent["SageWorksheetUpdated"] = "sageWorksheetUpdated";
|
|
672
684
|
})(EmbedEvent || (EmbedEvent = {}));
|
|
673
685
|
/**
|
|
674
686
|
* Event types that can be triggered by the host application
|
|
@@ -699,6 +711,7 @@ export var HostEvent;
|
|
|
699
711
|
* Triggers a search query in AppEmbed and SearchEmbed
|
|
700
712
|
* deployments.
|
|
701
713
|
* Includes the following properties:
|
|
714
|
+
*
|
|
702
715
|
* @param - dataSourceIds - The data source GUID to Search on
|
|
703
716
|
* - Although an array, only a single source
|
|
704
717
|
* is supported.
|
|
@@ -717,6 +730,7 @@ export var HostEvent;
|
|
|
717
730
|
/**
|
|
718
731
|
* Triggers a drill on certain points of the specified column
|
|
719
732
|
* Includes the following properties:
|
|
733
|
+
*
|
|
720
734
|
* @param - points - an object containing selectedPoints/clickedPoints
|
|
721
735
|
* to drill to. For example, { selectedPoints: []}
|
|
722
736
|
* @param - columnGuid - Optional. GUID of the column to drill
|
|
@@ -781,18 +795,19 @@ export var HostEvent;
|
|
|
781
795
|
*/
|
|
782
796
|
HostEvent["SetActiveTab"] = "SetActiveTab";
|
|
783
797
|
/**
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
798
|
+
* Updates runtime filters applied on a Saved Answer or Liveboard. The
|
|
799
|
+
* runtime filters passed here are appended to the existing runtime
|
|
800
|
+
* filters.
|
|
801
|
+
* Pass an array of runtime filters with the following attributes:
|
|
802
|
+
* `columnName`
|
|
803
|
+
* _String_. The name of the column to filter on.
|
|
804
|
+
* `operator`
|
|
805
|
+
* Runtime filter operator to apply. For information,
|
|
806
|
+
* see [Runtime filter operators](https://developers.thoughtspot.com/docs/?pageid=runtime-filters#rtOperator).
|
|
807
|
+
* `values`
|
|
808
|
+
* List of operands. Some operators such as EQ, LE allow a single value, whereas
|
|
809
|
+
* operators such as BW and IN accept multiple operands.
|
|
810
|
+
*
|
|
796
811
|
* @param - {@link RuntimeFilter}[] an array of {@link RuntimeFilter} Types.
|
|
797
812
|
* @example
|
|
798
813
|
* ```js
|
|
@@ -808,6 +823,7 @@ export var HostEvent;
|
|
|
808
823
|
/**
|
|
809
824
|
* Navigate to a specific page in the embedded application without reloading the page.
|
|
810
825
|
* This is the same as calling `appEmbed.navigateToPage(path, true)`
|
|
826
|
+
*
|
|
811
827
|
* @param - path - the path to navigate to (can be a number[1/-1] to go forward/back)
|
|
812
828
|
* @example
|
|
813
829
|
* ```js
|
|
@@ -1131,6 +1147,7 @@ export var HostEvent;
|
|
|
1131
1147
|
/**
|
|
1132
1148
|
* Triggers the **SpotIQ analyze** action on visualization
|
|
1133
1149
|
* or search.
|
|
1150
|
+
*
|
|
1134
1151
|
* @param - Liveboard embed takes `vizId` as a
|
|
1135
1152
|
* key. Can be left undefined when embedding Search or
|
|
1136
1153
|
* visualization.
|
|
@@ -1170,6 +1187,7 @@ export var HostEvent;
|
|
|
1170
1187
|
/**
|
|
1171
1188
|
* Triggers the **Download** > **PNG** action on
|
|
1172
1189
|
* charts in the embedded view.
|
|
1190
|
+
*
|
|
1173
1191
|
* @example
|
|
1174
1192
|
* ```js
|
|
1175
1193
|
* liveboardEmbed.trigger(HostEvent.DownloadAsPng,
|
|
@@ -1203,6 +1221,7 @@ export var HostEvent;
|
|
|
1203
1221
|
/**
|
|
1204
1222
|
* Triggers the **Download** > **XLSX** action on tables
|
|
1205
1223
|
* in the embedded view.
|
|
1224
|
+
*
|
|
1206
1225
|
* @example
|
|
1207
1226
|
* ```js
|
|
1208
1227
|
* liveboardEmbed.trigger(HostEvent.DownloadAsXlsx, {vizId:
|
|
@@ -1234,6 +1253,7 @@ export var HostEvent;
|
|
|
1234
1253
|
/**
|
|
1235
1254
|
* Triggers the **Save** action on a Liveboard or Answer.
|
|
1236
1255
|
* Saves the changes.
|
|
1256
|
+
*
|
|
1237
1257
|
* @example
|
|
1238
1258
|
* ```js
|
|
1239
1259
|
* liveboardEmbed.trigger(HostEvent.Save)
|
|
@@ -1247,6 +1267,7 @@ export var HostEvent;
|
|
|
1247
1267
|
/**
|
|
1248
1268
|
* Triggers the **Sync to Sheets** action on an embedded visualization or Answer
|
|
1249
1269
|
* Sends data from an Answer or Liveboard visualization to a Google sheet.
|
|
1270
|
+
*
|
|
1250
1271
|
* @param - an object with `vizId` as a key
|
|
1251
1272
|
* @example
|
|
1252
1273
|
* ```js
|
|
@@ -1263,6 +1284,7 @@ export var HostEvent;
|
|
|
1263
1284
|
* Triggers the **Sync to Other Apps** action on an embedded visualization or Answer
|
|
1264
1285
|
* Sends data from an Answer or Liveboard visualization to third-party apps such
|
|
1265
1286
|
* as Slack, Salesforce, Microsoft Teams, ServiceNow and so on.
|
|
1287
|
+
*
|
|
1266
1288
|
* @param - an object with vizId as a key
|
|
1267
1289
|
* @example
|
|
1268
1290
|
* ```js
|
|
@@ -1279,6 +1301,7 @@ export var HostEvent;
|
|
|
1279
1301
|
* Triggers the **Manage pipelines** action on an embedded
|
|
1280
1302
|
* visualization or Answer.
|
|
1281
1303
|
* Allows users to manage ThoughtSpot Sync pipelines.
|
|
1304
|
+
*
|
|
1282
1305
|
* @param - an object with `vizId` as a key
|
|
1283
1306
|
* @example
|
|
1284
1307
|
* ```js
|
|
@@ -1323,7 +1346,7 @@ export var HostEvent;
|
|
|
1323
1346
|
* @version SDK: 1.23.0 | ThoughtSpot: 9.4.0.cl
|
|
1324
1347
|
*/
|
|
1325
1348
|
HostEvent["UpdateFilters"] = "updateFilters";
|
|
1326
|
-
|
|
1349
|
+
/**
|
|
1327
1350
|
* Get Tab for the current Liveboard.
|
|
1328
1351
|
*
|
|
1329
1352
|
* @example
|
|
@@ -1334,7 +1357,7 @@ export var HostEvent;
|
|
|
1334
1357
|
* );
|
|
1335
1358
|
* })
|
|
1336
1359
|
* ```
|
|
1337
|
-
* @version SDK: 1.
|
|
1360
|
+
* @version SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl
|
|
1338
1361
|
*/
|
|
1339
1362
|
HostEvent["GetTabs"] = "getTabs";
|
|
1340
1363
|
/**
|
|
@@ -1348,7 +1371,7 @@ export var HostEvent;
|
|
|
1348
1371
|
* '430496d6-6903-4601-937e-2c691821af3c',
|
|
1349
1372
|
* 'f547ec54-2a37-4516-a222-2b06719af726'])
|
|
1350
1373
|
* ```
|
|
1351
|
-
* @version SDK: 1.
|
|
1374
|
+
* @version SDK: 1.26.0 | Thoughtspot: 9.7.0.cl
|
|
1352
1375
|
*/
|
|
1353
1376
|
HostEvent["SetVisibleTabs"] = "SetPinboardVisibleTabs";
|
|
1354
1377
|
/**
|
|
@@ -1362,9 +1385,23 @@ export var HostEvent;
|
|
|
1362
1385
|
* '630496d6-6903-4601-937e-2c691821af3c',
|
|
1363
1386
|
* 'i547ec54-2a37-4516-a222-2b06719af726'])
|
|
1364
1387
|
* ```
|
|
1365
|
-
* @version SDK: 1.
|
|
1388
|
+
* @version SDK: 1.26.0 | Thoughtspot: 9.7.0.cl
|
|
1366
1389
|
*/
|
|
1367
1390
|
HostEvent["SetHiddenTabs"] = "SetPinboardHiddenTabs";
|
|
1391
|
+
/**
|
|
1392
|
+
* Updates the search query for sage embed.
|
|
1393
|
+
*
|
|
1394
|
+
* @param - searchOptions: an object queryString and option to execute the query.
|
|
1395
|
+
* @example
|
|
1396
|
+
* ```js
|
|
1397
|
+
* sageEmbed.trigger(HostEvent.UpdateSageQuery, {
|
|
1398
|
+
* queryString: 'revenue per year',
|
|
1399
|
+
* executeSearch: true,
|
|
1400
|
+
* })
|
|
1401
|
+
* ```
|
|
1402
|
+
* @version SDK: 1.26.0 | Thoughtspot: 9.7.0.cl
|
|
1403
|
+
*/
|
|
1404
|
+
HostEvent["UpdateSageQuery"] = "updateSageQuery";
|
|
1368
1405
|
})(HostEvent || (HostEvent = {}));
|
|
1369
1406
|
/**
|
|
1370
1407
|
* The different visual modes that the data sources panel within
|
|
@@ -1423,6 +1460,7 @@ export var Param;
|
|
|
1423
1460
|
Param["DisableLoginRedirect"] = "disableLoginRedirect";
|
|
1424
1461
|
Param["visibleVizs"] = "pinboardVisibleVizs";
|
|
1425
1462
|
Param["LiveboardV2Enabled"] = "isPinboardV2Enabled";
|
|
1463
|
+
Param["DataPanelV2Enabled"] = "enableDataPanelV2";
|
|
1426
1464
|
Param["ShowAlerts"] = "showAlerts";
|
|
1427
1465
|
Param["Locale"] = "locale";
|
|
1428
1466
|
Param["CustomStyle"] = "customStyle";
|
|
@@ -1450,6 +1488,9 @@ export var Param;
|
|
|
1450
1488
|
Param["HiddenTabs"] = "hideTabs";
|
|
1451
1489
|
Param["VisibleTabs"] = "visibleTabs";
|
|
1452
1490
|
Param["HideTabPanel"] = "hideTabPanel";
|
|
1491
|
+
Param["HideSampleQuestions"] = "hideSampleQuestions";
|
|
1492
|
+
Param["WorksheetId"] = "worksheet";
|
|
1493
|
+
Param["Query"] = "query";
|
|
1453
1494
|
})(Param || (Param = {}));
|
|
1454
1495
|
/**
|
|
1455
1496
|
* ThoughtSpot application pages include actions and menu commands
|
|
@@ -1458,6 +1499,7 @@ export var Param;
|
|
|
1458
1499
|
* specific actions in the embedded view, define the Action
|
|
1459
1500
|
* enumeration members in the `disabledActions`, `visibleActions`,
|
|
1460
1501
|
* or `hiddenActions` array.
|
|
1502
|
+
*
|
|
1461
1503
|
* @example
|
|
1462
1504
|
* ```js
|
|
1463
1505
|
* const embed = new LiveboardEmbed('#embed-container', {
|
|
@@ -1476,7 +1518,6 @@ export var Param;
|
|
|
1476
1518
|
* hiddenActions: [Action.Edit, ActionAction.Explore],
|
|
1477
1519
|
* })
|
|
1478
1520
|
* ```
|
|
1479
|
-
|
|
1480
1521
|
*/
|
|
1481
1522
|
// eslint-disable-next-line no-shadow
|
|
1482
1523
|
export var Action;
|
|
@@ -1484,6 +1525,7 @@ export var Action;
|
|
|
1484
1525
|
/**
|
|
1485
1526
|
* The **Save** action on an Answer or Liveboard.
|
|
1486
1527
|
* Allows users to save the changes.
|
|
1528
|
+
*
|
|
1487
1529
|
* @example
|
|
1488
1530
|
* ```js
|
|
1489
1531
|
* disabledActions: [Action.SaveAsView]
|
|
@@ -1499,136 +1541,146 @@ export var Action;
|
|
|
1499
1541
|
*/
|
|
1500
1542
|
Action["SaveUntitled"] = "saveUntitled";
|
|
1501
1543
|
/**
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1544
|
+
* The **Save as View** action on the Answer
|
|
1545
|
+
* page. Saves an Answer as a View object.
|
|
1546
|
+
*
|
|
1547
|
+
* @example
|
|
1548
|
+
* ```js
|
|
1549
|
+
* disabledActions: [Action.SaveAsView]
|
|
1550
|
+
* ```
|
|
1551
|
+
*/
|
|
1510
1552
|
Action["SaveAsView"] = "saveAsView";
|
|
1511
1553
|
/**
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1554
|
+
* The **Make a copy** action on a Liveboard or Answer
|
|
1555
|
+
* page.
|
|
1556
|
+
* Creates a copy of the Liveboard, visualization,
|
|
1557
|
+
* or Answer.
|
|
1558
|
+
*
|
|
1559
|
+
* @example
|
|
1560
|
+
* ```js
|
|
1561
|
+
* disabledActions: [Action.MakeACopy]
|
|
1562
|
+
* ```
|
|
1563
|
+
*/
|
|
1522
1564
|
Action["MakeACopy"] = "makeACopy";
|
|
1523
1565
|
/**
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1566
|
+
* The **Copy and Edit** action on a Liveboard.
|
|
1567
|
+
* This action is now replaced with `Action.MakeACopy`.
|
|
1568
|
+
*
|
|
1569
|
+
* @example
|
|
1570
|
+
* ```js
|
|
1571
|
+
* disabledActions: [Action.EditACopy]
|
|
1572
|
+
* ```
|
|
1573
|
+
*/
|
|
1532
1574
|
Action["EditACopy"] = "editACopy";
|
|
1533
1575
|
/**
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1576
|
+
* The **Copy link** menu action on a Liveboard visualization.
|
|
1577
|
+
* Copies the visualization URL
|
|
1578
|
+
*
|
|
1579
|
+
* @example
|
|
1580
|
+
* ```js
|
|
1581
|
+
* disabledActions: [Action.CopyLink]
|
|
1582
|
+
* ```
|
|
1583
|
+
*/
|
|
1541
1584
|
Action["CopyLink"] = "embedDocument";
|
|
1542
1585
|
/**
|
|
1543
1586
|
* @hidden
|
|
1544
1587
|
*/
|
|
1545
1588
|
Action["ResetLayout"] = "resetLayout";
|
|
1546
1589
|
/**
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1590
|
+
* The **Schedule** menu action on a Liveboard.
|
|
1591
|
+
* Allows scheduling a Liveboard notification.
|
|
1592
|
+
*
|
|
1593
|
+
* @example
|
|
1594
|
+
* ```js
|
|
1595
|
+
* disabledActions: [Action.Schedule]
|
|
1596
|
+
* ```
|
|
1597
|
+
*/
|
|
1554
1598
|
Action["Schedule"] = "subscription";
|
|
1555
1599
|
/**
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1600
|
+
* The **Manage schedules** menu action on a Liveboard.
|
|
1601
|
+
* Allows users to manage scheduled Liveboard jobs.
|
|
1602
|
+
*
|
|
1603
|
+
* @example
|
|
1604
|
+
* ```js
|
|
1605
|
+
* disabledActions: [Action.SchedulesList]
|
|
1606
|
+
* ```
|
|
1607
|
+
*/
|
|
1563
1608
|
Action["SchedulesList"] = "schedule-list";
|
|
1564
1609
|
/**
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1610
|
+
* The **Share** action on a Liveboard, Answer, or Worksheet.
|
|
1611
|
+
* Allows users to share an object with other users and groups.
|
|
1612
|
+
*
|
|
1613
|
+
* @example
|
|
1614
|
+
* ```js
|
|
1615
|
+
* disabledActions: [Action.Share]
|
|
1616
|
+
* ```
|
|
1617
|
+
*/
|
|
1572
1618
|
Action["Share"] = "share";
|
|
1573
1619
|
/**
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1620
|
+
* The **Add filter** action on a Liveboard and Search page.
|
|
1621
|
+
* Allows adding filters to Answers and visualizations on a Liveboard.
|
|
1622
|
+
*
|
|
1623
|
+
* @example
|
|
1624
|
+
* ```js
|
|
1625
|
+
* disabledActions: [Action.AddFilter]
|
|
1626
|
+
* ```
|
|
1627
|
+
*/
|
|
1581
1628
|
Action["AddFilter"] = "addFilter";
|
|
1582
1629
|
/**
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1630
|
+
* Filter configuration options on a Liveboard and Search page.
|
|
1631
|
+
* Allows configuring filter options when adding filters to a
|
|
1632
|
+
* Liveboard or Answer.
|
|
1633
|
+
*
|
|
1634
|
+
* @example
|
|
1635
|
+
* ```js
|
|
1636
|
+
* disabledActions: [Action.ConfigureFilter]
|
|
1637
|
+
* ```
|
|
1638
|
+
*/
|
|
1591
1639
|
Action["ConfigureFilter"] = "configureFilter";
|
|
1592
1640
|
Action["CollapseDataSources"] = "collapseDataSources";
|
|
1593
1641
|
/**
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1642
|
+
* The **Choose sources** button on Search page.
|
|
1643
|
+
* Allows selecting data sources for search queries.
|
|
1644
|
+
*
|
|
1645
|
+
* @example
|
|
1646
|
+
* ```js
|
|
1647
|
+
* disabledActions: [Action.ChooseDataSources]
|
|
1648
|
+
* ```
|
|
1649
|
+
*/
|
|
1601
1650
|
Action["ChooseDataSources"] = "chooseDataSources";
|
|
1602
1651
|
/**
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1652
|
+
* The **Create formula** action on a Search or Answer page.
|
|
1653
|
+
* Allows adding formulas to an Answer.
|
|
1654
|
+
*
|
|
1655
|
+
* @example
|
|
1656
|
+
* ```js
|
|
1657
|
+
* disabledActions: [Action.AddFormula]
|
|
1658
|
+
* ```
|
|
1659
|
+
*/
|
|
1610
1660
|
Action["AddFormula"] = "addFormula";
|
|
1611
1661
|
/**
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1662
|
+
* The **Add parameter** action on a Liveboard or Answer.
|
|
1663
|
+
* Allows adding Parameters to a Liveboard or Answer.
|
|
1664
|
+
*
|
|
1665
|
+
* @example
|
|
1666
|
+
* ```js
|
|
1667
|
+
* disabledActions: [Action.AddParameter]
|
|
1668
|
+
* ```
|
|
1669
|
+
*/
|
|
1619
1670
|
Action["AddParameter"] = "addParameter";
|
|
1620
1671
|
/**
|
|
1621
1672
|
* @hidden
|
|
1622
1673
|
*/
|
|
1623
1674
|
Action["SearchOnTop"] = "searchOnTop";
|
|
1624
1675
|
/**
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1676
|
+
* The **SpotIQ analyze** menu action on a visualization or
|
|
1677
|
+
* Answer page.
|
|
1678
|
+
*
|
|
1679
|
+
* @example
|
|
1680
|
+
* ```js
|
|
1681
|
+
* disabledActions: [Action.SpotIQAnalyze]
|
|
1682
|
+
* ```
|
|
1683
|
+
*/
|
|
1632
1684
|
Action["SpotIQAnalyze"] = "spotIQAnalyze";
|
|
1633
1685
|
/**
|
|
1634
1686
|
* @hidden
|
|
@@ -1644,89 +1696,98 @@ export var Action;
|
|
|
1644
1696
|
*/
|
|
1645
1697
|
Action["ReplaySearch"] = "replaySearch";
|
|
1646
1698
|
/**
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1699
|
+
* The **Show underlying data** menu action on a visualization or
|
|
1700
|
+
* Answer page.
|
|
1701
|
+
*
|
|
1702
|
+
* @example
|
|
1703
|
+
* ```js
|
|
1704
|
+
* disabledActions: [Action.ShowUnderlyingData]
|
|
1705
|
+
* ```
|
|
1706
|
+
*/
|
|
1654
1707
|
Action["ShowUnderlyingData"] = "showUnderlyingData";
|
|
1655
1708
|
/**
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1709
|
+
* The **Download** menu action on Liveboard visualizations
|
|
1710
|
+
* and Answers.
|
|
1711
|
+
* Allows downloading a visualization or Answer.
|
|
1712
|
+
*
|
|
1713
|
+
* @example
|
|
1714
|
+
* ```js
|
|
1715
|
+
* disabledActions: [Action.DownloadAsPng]
|
|
1716
|
+
* ```
|
|
1717
|
+
*/
|
|
1664
1718
|
Action["Download"] = "download";
|
|
1665
1719
|
/**
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1720
|
+
* The **Download** > **PNG** menu action for charts on a Liveboard
|
|
1721
|
+
* or Answer page.
|
|
1722
|
+
* Downloads a visualization or Answer as a PNG file.
|
|
1723
|
+
*
|
|
1724
|
+
* @example
|
|
1725
|
+
* ```js
|
|
1726
|
+
* disabledActions: [Action.DownloadAsPng]
|
|
1727
|
+
* ```
|
|
1728
|
+
*/
|
|
1674
1729
|
Action["DownloadAsPng"] = "downloadAsPng";
|
|
1675
1730
|
/**
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1731
|
+
* The **Download** > **PDF** menu action on a Liveboard.
|
|
1732
|
+
* Downloads a visualization or Answer as a PDF file.
|
|
1733
|
+
*
|
|
1734
|
+
* @example
|
|
1735
|
+
* ```js
|
|
1736
|
+
* disabledActions: [Action.DownloadAsPdf]
|
|
1737
|
+
* ```
|
|
1738
|
+
*/
|
|
1683
1739
|
Action["DownloadAsPdf"] = "downloadAsPdf";
|
|
1684
1740
|
/**
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1741
|
+
* The **Download** > **CSV** menu action for tables on a Liveboard
|
|
1742
|
+
* or Answer page.
|
|
1743
|
+
* Downloads a visualization or Answer in the XLSX format.
|
|
1744
|
+
*
|
|
1745
|
+
* @example
|
|
1746
|
+
* ```js
|
|
1747
|
+
* disabledActions: [Action.DownloadAsCsv]
|
|
1748
|
+
* ```
|
|
1749
|
+
*/
|
|
1693
1750
|
Action["DownloadAsCsv"] = "downloadAsCSV";
|
|
1694
1751
|
/**
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1752
|
+
* The **Download** > **XLSX** menu action for tables on a Liveboard
|
|
1753
|
+
* or Answer page.
|
|
1754
|
+
* Downloads a visualization or Answer in the XLSX format.
|
|
1755
|
+
*
|
|
1756
|
+
* @example
|
|
1757
|
+
* ```js
|
|
1758
|
+
* disabledActions: [Action.DownloadAsXlsx]
|
|
1759
|
+
* ```
|
|
1760
|
+
*/
|
|
1703
1761
|
Action["DownloadAsXlsx"] = "downloadAsXLSX";
|
|
1704
1762
|
/**
|
|
1705
1763
|
* @hidden
|
|
1706
1764
|
*/
|
|
1707
1765
|
Action["DownloadTrace"] = "downloadTrace";
|
|
1708
1766
|
/**
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1767
|
+
* The **Export TML** menu action on Liveboard, Answers
|
|
1768
|
+
* Worksheets and Data Connections page.
|
|
1769
|
+
* Exports an object as a TML file.
|
|
1770
|
+
*
|
|
1771
|
+
* @example
|
|
1772
|
+
* ```js
|
|
1773
|
+
* disabledActions: [Action.ExportTML]
|
|
1774
|
+
* ```
|
|
1775
|
+
*/
|
|
1717
1776
|
Action["ExportTML"] = "exportTSL";
|
|
1718
1777
|
/**
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1778
|
+
* The **Import TML** menu action for Liveboards and Answers.
|
|
1779
|
+
* Imports TML representation of ThoughtSpot objects.
|
|
1780
|
+
*
|
|
1781
|
+
* @example
|
|
1782
|
+
* ```js
|
|
1783
|
+
* disabledActions: [Action.ImportTML]
|
|
1784
|
+
* ```
|
|
1785
|
+
*/
|
|
1726
1786
|
Action["ImportTML"] = "importTSL";
|
|
1727
1787
|
/**
|
|
1728
1788
|
* The **Update TML** menu action for Liveboards and Answers.
|
|
1729
1789
|
* Update TML representation of ThoughtSpot objects.
|
|
1790
|
+
*
|
|
1730
1791
|
* @example
|
|
1731
1792
|
* ```js
|
|
1732
1793
|
* disabledActions: [Action.UpdateTML]
|
|
@@ -1736,6 +1797,7 @@ export var Action;
|
|
|
1736
1797
|
/**
|
|
1737
1798
|
* The **Edit TML** menu action for Liveboards and Answers.
|
|
1738
1799
|
* Opens the TML editor.
|
|
1800
|
+
*
|
|
1739
1801
|
* @example
|
|
1740
1802
|
* ```js
|
|
1741
1803
|
* disabledActions: [Action.EditTML]
|
|
@@ -1743,50 +1805,55 @@ export var Action;
|
|
|
1743
1805
|
*/
|
|
1744
1806
|
Action["EditTML"] = "editTSL";
|
|
1745
1807
|
/**
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1808
|
+
* The **Present** menu action for Liveboards and Answers.
|
|
1809
|
+
* Allows presenting a Liveboard or visualization in
|
|
1810
|
+
* slideshow mode.
|
|
1811
|
+
*
|
|
1812
|
+
* @example
|
|
1813
|
+
* ```js
|
|
1814
|
+
* disabledActions: [Action.Present]
|
|
1815
|
+
* ```
|
|
1816
|
+
*/
|
|
1754
1817
|
Action["Present"] = "present";
|
|
1755
1818
|
/**
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1819
|
+
* The tile resize options in the visualization menu.
|
|
1820
|
+
* Allows switching between different preset layouts.
|
|
1821
|
+
*
|
|
1822
|
+
* @example
|
|
1823
|
+
* ```js
|
|
1824
|
+
* disabledActions: [Action.ToggleSize]
|
|
1825
|
+
* ```
|
|
1826
|
+
*/
|
|
1763
1827
|
Action["ToggleSize"] = "toggleSize";
|
|
1764
1828
|
/**
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1829
|
+
* The *Edit* action on the Liveboard page and in the
|
|
1830
|
+
* visualization menu.
|
|
1831
|
+
* Opens a Liveboard or visualization in edit mode.
|
|
1832
|
+
*
|
|
1833
|
+
* @example
|
|
1834
|
+
* ```js
|
|
1835
|
+
* disabledActions: [Action.Edit]
|
|
1836
|
+
* ```
|
|
1837
|
+
*/
|
|
1773
1838
|
Action["Edit"] = "edit";
|
|
1774
1839
|
/**
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1840
|
+
* The text edit option for Liveboard and visualization titles.
|
|
1841
|
+
*
|
|
1842
|
+
* @example
|
|
1843
|
+
* ```js
|
|
1844
|
+
* disabledActions: [Action.EditTitle]
|
|
1845
|
+
* ```
|
|
1846
|
+
*/
|
|
1781
1847
|
Action["EditTitle"] = "editTitle";
|
|
1782
1848
|
/**
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1849
|
+
* The **Delete** menu action on Liveboards and visualizations.
|
|
1850
|
+
* Deletes a Liveboard or a visualization from a Liveboard.
|
|
1851
|
+
*
|
|
1852
|
+
* @example
|
|
1853
|
+
* ```js
|
|
1854
|
+
* disabledActions: [Action.Remove]
|
|
1855
|
+
* ```
|
|
1856
|
+
*/
|
|
1790
1857
|
Action["Remove"] = "delete";
|
|
1791
1858
|
/**
|
|
1792
1859
|
* @hidden
|
|
@@ -1809,15 +1876,16 @@ export var Action;
|
|
|
1809
1876
|
*/
|
|
1810
1877
|
Action["PinboardInfo"] = "pinboardInfo";
|
|
1811
1878
|
/**
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1879
|
+
* The **Show Liveboard details** menu action on a Liveboard.
|
|
1880
|
+
* Displays details such as the name, description, and
|
|
1881
|
+
* author of the Liveboard, and timestamp of Liveboard creation
|
|
1882
|
+
* and update.
|
|
1883
|
+
*
|
|
1884
|
+
* @example
|
|
1885
|
+
* ```js
|
|
1886
|
+
* disabledActions: [Action.LiveboardInfo]
|
|
1887
|
+
* ```
|
|
1888
|
+
*/
|
|
1821
1889
|
Action["LiveboardInfo"] = "pinboardInfo";
|
|
1822
1890
|
/**
|
|
1823
1891
|
* @hidden
|
|
@@ -1828,13 +1896,14 @@ export var Action;
|
|
|
1828
1896
|
*/
|
|
1829
1897
|
Action["DownloadEmbraceQueries"] = "downloadEmbraceQueries";
|
|
1830
1898
|
/**
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1899
|
+
* The **Pin** menu action on an Answer or
|
|
1900
|
+
* Search results page.
|
|
1901
|
+
*
|
|
1902
|
+
* @example
|
|
1903
|
+
* ```js
|
|
1904
|
+
* disabledActions: [Action.Pin]
|
|
1905
|
+
* ```
|
|
1906
|
+
*/
|
|
1838
1907
|
Action["Pin"] = "pin";
|
|
1839
1908
|
/**
|
|
1840
1909
|
* @hidden
|
|
@@ -1842,6 +1911,7 @@ export var Action;
|
|
|
1842
1911
|
Action["AnalysisInfo"] = "analysisInfo";
|
|
1843
1912
|
/**
|
|
1844
1913
|
* The **Schedule** menu action on a Liveboard.
|
|
1914
|
+
*
|
|
1845
1915
|
* @example
|
|
1846
1916
|
* ```js
|
|
1847
1917
|
* disabledActions: [Action.Subscription]
|
|
@@ -1849,25 +1919,28 @@ export var Action;
|
|
|
1849
1919
|
*/
|
|
1850
1920
|
Action["Subscription"] = "subscription";
|
|
1851
1921
|
/**
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1922
|
+
* The **Explore** action on Liveboard visualizations
|
|
1923
|
+
*
|
|
1924
|
+
* @example
|
|
1925
|
+
* ```js
|
|
1926
|
+
* disabledActions: [Action.Explore]
|
|
1927
|
+
* ```
|
|
1928
|
+
*/
|
|
1858
1929
|
Action["Explore"] = "explore";
|
|
1859
1930
|
/**
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1931
|
+
* The action to include data points on a drilled-down Answer
|
|
1932
|
+
* or visualization
|
|
1933
|
+
*
|
|
1934
|
+
* @example
|
|
1935
|
+
* ```js
|
|
1936
|
+
* disabledActions: [Action.DrillInclude]
|
|
1937
|
+
* ```
|
|
1938
|
+
*/
|
|
1867
1939
|
Action["DrillInclude"] = "context-menu-item-include";
|
|
1868
1940
|
/**
|
|
1869
1941
|
* The action to exclude data points on a drilled-down Answer
|
|
1870
1942
|
* or visualization
|
|
1943
|
+
*
|
|
1871
1944
|
* @example
|
|
1872
1945
|
* ```js
|
|
1873
1946
|
* disabledActions: [Action.DrillInclude]
|
|
@@ -1878,6 +1951,7 @@ export var Action;
|
|
|
1878
1951
|
* The **Copy to clipboard** menu action on tables in an Answer
|
|
1879
1952
|
* or Liveboard.
|
|
1880
1953
|
* Copies the selected data point.
|
|
1954
|
+
*
|
|
1881
1955
|
* @example
|
|
1882
1956
|
* ```js
|
|
1883
1957
|
* disabledActions: [Action.CopyToClipboard]
|
|
@@ -1895,6 +1969,7 @@ export var Action;
|
|
|
1895
1969
|
* The **Drill down** menu action on Answers and Liveboard
|
|
1896
1970
|
* visualizations.
|
|
1897
1971
|
* Allows drilling down to a specific data point on a chart or table.
|
|
1972
|
+
*
|
|
1898
1973
|
* @example
|
|
1899
1974
|
* ```js
|
|
1900
1975
|
* disabledActions: [Action.DrillDown]
|
|
@@ -1904,6 +1979,7 @@ export var Action;
|
|
|
1904
1979
|
/**
|
|
1905
1980
|
* The request access action on Liveboards.
|
|
1906
1981
|
* Allows users with view permissions to request edit access to a Liveboard.
|
|
1982
|
+
*
|
|
1907
1983
|
* @example
|
|
1908
1984
|
* ```js
|
|
1909
1985
|
* disabledActions: [Action.RequestAccess]
|
|
@@ -1913,6 +1989,7 @@ export var Action;
|
|
|
1913
1989
|
/**
|
|
1914
1990
|
* The **Query visualizer** and **Query SQL** buttons in Query details panel
|
|
1915
1991
|
* of the Answer page
|
|
1992
|
+
*
|
|
1916
1993
|
* @example
|
|
1917
1994
|
* ```js
|
|
1918
1995
|
* disabledActions: [Action.QueryDetailsButtons]
|
|
@@ -1921,6 +1998,7 @@ export var Action;
|
|
|
1921
1998
|
Action["QueryDetailsButtons"] = "QueryDetailsButtons";
|
|
1922
1999
|
/**
|
|
1923
2000
|
* The **Delete** action for Answers.
|
|
2001
|
+
*
|
|
1924
2002
|
* @example
|
|
1925
2003
|
* ```js
|
|
1926
2004
|
* disabledActions: [Action.AnswerDelete]
|
|
@@ -1930,6 +2008,7 @@ export var Action;
|
|
|
1930
2008
|
Action["AnswerDelete"] = "onDeleteAnswer";
|
|
1931
2009
|
/**
|
|
1932
2010
|
* The Chart switcher icon on Answer and visualization pages.
|
|
2011
|
+
*
|
|
1933
2012
|
* @example
|
|
1934
2013
|
* ```js
|
|
1935
2014
|
* disabledActions: [Action.AnswerChartSwitcher]
|
|
@@ -1939,6 +2018,7 @@ export var Action;
|
|
|
1939
2018
|
Action["AnswerChartSwitcher"] = "answerChartSwitcher";
|
|
1940
2019
|
/**
|
|
1941
2020
|
* Favorites icon (*) on Answers, Liveboard, and Data pages
|
|
2021
|
+
*
|
|
1942
2022
|
* @example
|
|
1943
2023
|
* ```js
|
|
1944
2024
|
* disabledActions: [Action.AddToFavorites]
|
|
@@ -1948,6 +2028,7 @@ export var Action;
|
|
|
1948
2028
|
Action["AddToFavorites"] = "addToFavorites";
|
|
1949
2029
|
/**
|
|
1950
2030
|
* The edit icon on Liveboards (Classic experience).
|
|
2031
|
+
*
|
|
1951
2032
|
* @example
|
|
1952
2033
|
* ```js
|
|
1953
2034
|
* disabledActions: [Action.EditDetails]
|
|
@@ -1957,6 +2038,7 @@ export var Action;
|
|
|
1957
2038
|
Action["EditDetails"] = "editDetails";
|
|
1958
2039
|
/**
|
|
1959
2040
|
* The Create alert action on KPI charts.
|
|
2041
|
+
*
|
|
1960
2042
|
* @example
|
|
1961
2043
|
* ```js
|
|
1962
2044
|
* disabledActions: [Action.CreateMonitor ]
|
|
@@ -1975,6 +2057,7 @@ export var Action;
|
|
|
1975
2057
|
/**
|
|
1976
2058
|
* The **Sync to sheets** action on Answers and Liveboard visualizations.
|
|
1977
2059
|
* Allows sending data to a Google Sheet.
|
|
2060
|
+
*
|
|
1978
2061
|
* @example
|
|
1979
2062
|
* ```js
|
|
1980
2063
|
* disabledActions: [Action.SyncToSheets]
|
|
@@ -1986,6 +2069,7 @@ export var Action;
|
|
|
1986
2069
|
* The **Sync to other apps** action on Answers and Liveboard visualizations.
|
|
1987
2070
|
* Allows sending data to third-party apps like Slack, Salesforce,
|
|
1988
2071
|
* Microsoft Teams, and so on.
|
|
2072
|
+
*
|
|
1989
2073
|
* @example
|
|
1990
2074
|
* ```js
|
|
1991
2075
|
* disabledActions: [Action.SyncToOtherApps]
|
|
@@ -1996,6 +2080,7 @@ export var Action;
|
|
|
1996
2080
|
/**
|
|
1997
2081
|
* The **Manage pipelines** action on Answers and Liveboard visualizations.
|
|
1998
2082
|
* Allows users to manage data sync pipelines to third-party apps.
|
|
2083
|
+
*
|
|
1999
2084
|
* @example
|
|
2000
2085
|
* ```js
|
|
2001
2086
|
* disabledActions: [Action.SyncToOtherApps]
|
|
@@ -2006,6 +2091,7 @@ export var Action;
|
|
|
2006
2091
|
/**
|
|
2007
2092
|
* The **Filter** action on Liveboard visualizations.
|
|
2008
2093
|
* Allows users to apply cross-filters on a Liveboard.
|
|
2094
|
+
*
|
|
2009
2095
|
* @example
|
|
2010
2096
|
* ```js
|
|
2011
2097
|
* disabledActions: [Action.CrossFilter]
|
|
@@ -2017,6 +2103,7 @@ export var Action;
|
|
|
2017
2103
|
* The **Remove** action that appears when cross filters are applied
|
|
2018
2104
|
* on a Liveboard.
|
|
2019
2105
|
* Removes filters applied o a visualization.
|
|
2106
|
+
*
|
|
2020
2107
|
* @example
|
|
2021
2108
|
* ```js
|
|
2022
2109
|
* disabledActions: [Action.RemoveCrossFilter]
|
|
@@ -2028,6 +2115,7 @@ export var Action;
|
|
|
2028
2115
|
* The **Aggregate** option in the chart axis or the
|
|
2029
2116
|
* table column customization menu.
|
|
2030
2117
|
* Provides aggregation options to analyze the data on a chart or table.
|
|
2118
|
+
*
|
|
2031
2119
|
* @example
|
|
2032
2120
|
* ```js
|
|
2033
2121
|
* disabledActions: [Action.AxisMenuAggregate]
|
|
@@ -2039,6 +2127,7 @@ export var Action;
|
|
|
2039
2127
|
* The **Time bucket** option in the chart axis or table column
|
|
2040
2128
|
* customization menu.
|
|
2041
2129
|
* Allows defining time metric for date comparison.
|
|
2130
|
+
*
|
|
2042
2131
|
* @example
|
|
2043
2132
|
* ```js
|
|
2044
2133
|
* disabledActions: [Action.AxisMenuTimeBucket]
|
|
@@ -2049,6 +2138,7 @@ export var Action;
|
|
|
2049
2138
|
/**
|
|
2050
2139
|
* The **Filter** action in the chart axis or table column
|
|
2051
2140
|
* customization menu.
|
|
2141
|
+
*
|
|
2052
2142
|
* @example
|
|
2053
2143
|
* ```js
|
|
2054
2144
|
* disabledActions: [Action.AxisMenuFilter]
|
|
@@ -2060,6 +2150,7 @@ export var Action;
|
|
|
2060
2150
|
* The **Conditional formatting** action on chart or table.
|
|
2061
2151
|
* Allows adding rules for conditional formatting of data
|
|
2062
2152
|
* points on a chart or table.
|
|
2153
|
+
*
|
|
2063
2154
|
* @example
|
|
2064
2155
|
* ```js
|
|
2065
2156
|
* disabledActions: [Action.AxisMenuConditionalFormat]
|
|
@@ -2071,6 +2162,7 @@ export var Action;
|
|
|
2071
2162
|
* The **Sort** menu action on a table or chart axis
|
|
2072
2163
|
* Sorts data in ascending or descending order.
|
|
2073
2164
|
* Allows adding, editing, or removing filters.
|
|
2165
|
+
*
|
|
2074
2166
|
* @example
|
|
2075
2167
|
* ```js
|
|
2076
2168
|
* disabledActions: [Action.AxisMenuConditionalFormat]
|
|
@@ -2083,6 +2175,7 @@ export var Action;
|
|
|
2083
2175
|
* customization menu.
|
|
2084
2176
|
* Allows grouping data points if the axes use the same
|
|
2085
2177
|
* unit of measurement and a similar scale.
|
|
2178
|
+
*
|
|
2086
2179
|
* @example
|
|
2087
2180
|
* ```js
|
|
2088
2181
|
* disabledActions: [Action.AxisMenuGroup]
|
|
@@ -2094,6 +2187,7 @@ export var Action;
|
|
|
2094
2187
|
* The **Position** option in the axis customization menu.
|
|
2095
2188
|
* Allows changing the position of the axis to the
|
|
2096
2189
|
* left or right side of the chart.
|
|
2190
|
+
*
|
|
2097
2191
|
* @example
|
|
2098
2192
|
* ```js
|
|
2099
2193
|
* disabledActions: [Action.AxisMenuPosition]
|
|
@@ -2104,6 +2198,7 @@ export var Action;
|
|
|
2104
2198
|
/**
|
|
2105
2199
|
* The **Rename** option in the chart axis or table column customization menu.
|
|
2106
2200
|
* Renames the axis label on a chart or the column header on a table.
|
|
2201
|
+
*
|
|
2107
2202
|
* @example
|
|
2108
2203
|
* ```js
|
|
2109
2204
|
* disabledActions: [Action.AxisMenuRename]
|
|
@@ -2115,6 +2210,7 @@ export var Action;
|
|
|
2115
2210
|
* The **Edit** action in the axis customization menu.
|
|
2116
2211
|
* Allows editing the axis name, position, minimum and maximum values,
|
|
2117
2212
|
* and format of a column.
|
|
2213
|
+
*
|
|
2118
2214
|
* @example
|
|
2119
2215
|
* ```js
|
|
2120
2216
|
* disabledActions: [Action.AxisMenuEdit]
|
|
@@ -2125,6 +2221,7 @@ export var Action;
|
|
|
2125
2221
|
/**
|
|
2126
2222
|
* The **Number format** action to customize the format of
|
|
2127
2223
|
* the data labels on a chart or table.
|
|
2224
|
+
*
|
|
2128
2225
|
* @example
|
|
2129
2226
|
* ```js
|
|
2130
2227
|
* disabledActions: [Action.AxisMenuNumberFormat]
|
|
@@ -2135,6 +2232,7 @@ export var Action;
|
|
|
2135
2232
|
/**
|
|
2136
2233
|
* The **Text wrapping** action on a table.
|
|
2137
2234
|
* Wraps or clips column text on a table.
|
|
2235
|
+
*
|
|
2138
2236
|
* @example
|
|
2139
2237
|
* ```js
|
|
2140
2238
|
* disabledActions: [Action.AxisMenuTextWrapping]
|
|
@@ -2147,6 +2245,7 @@ export var Action;
|
|
|
2147
2245
|
* customization menu.
|
|
2148
2246
|
* Removes the data labels from a chart or the column of a
|
|
2149
2247
|
* table visualization.
|
|
2248
|
+
*
|
|
2150
2249
|
* @example
|
|
2151
2250
|
* ```js
|
|
2152
2251
|
* disabledActions: [Action.AxisMenuRemove]
|
|
@@ -2161,6 +2260,7 @@ export var Action;
|
|
|
2161
2260
|
/**
|
|
2162
2261
|
* The **Rename** menu action on Liveboards and visualizations.
|
|
2163
2262
|
* Allows renaming a Liveboard or visualization.
|
|
2263
|
+
*
|
|
2164
2264
|
* @example
|
|
2165
2265
|
* ```js
|
|
2166
2266
|
* disabledActions: [Action.RenameModalTitleDescription]
|
|
@@ -2177,13 +2277,29 @@ export var Action;
|
|
|
2177
2277
|
*/
|
|
2178
2278
|
Action["MarkAsVerified"] = "markAsVerified";
|
|
2179
2279
|
/**
|
|
2180
|
-
* @version SDK: 1.
|
|
2280
|
+
* @version SDK: 1.26.0 | Thoughtspot: 9.7.0.cl
|
|
2181
2281
|
*/
|
|
2182
2282
|
Action["AddTab"] = "addTab";
|
|
2183
2283
|
/**
|
|
2184
2284
|
* @version SDK: 1.25.0 | Thoughtspot: 9.6.0.cl
|
|
2185
2285
|
*/
|
|
2186
2286
|
Action["EnableContextualChangeAnalysis"] = "enableContextualChangeAnalysis";
|
|
2287
|
+
/**
|
|
2288
|
+
* @version SDK: 1.26.0 | Thoughtspot: 9.7.0.cl
|
|
2289
|
+
*/
|
|
2290
|
+
Action["ShowSageQuery"] = "showSageQuery";
|
|
2291
|
+
/**
|
|
2292
|
+
* @version SDK: 1.26.0 | Thoughtspot: 9.7.0.cl
|
|
2293
|
+
*/
|
|
2294
|
+
Action["EditSageAnswer"] = "editSageAnswer";
|
|
2295
|
+
/**
|
|
2296
|
+
* @version SDK: 1.26.0 | Thoughtspot: 9.7.0.cl
|
|
2297
|
+
*/
|
|
2298
|
+
Action["SageAnswerFeedback"] = "sageAnswerFeedback";
|
|
2299
|
+
/**
|
|
2300
|
+
* @version SDK: 1.26.0 | Thoughtspot: 9.7.0.cl
|
|
2301
|
+
*/
|
|
2302
|
+
Action["ModifySageAnswer"] = "modifySageAnswer";
|
|
2187
2303
|
})(Action || (Action = {}));
|
|
2188
2304
|
// eslint-disable-next-line no-shadow
|
|
2189
2305
|
export var OperationType;
|