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