diff --git a/src/embed/app.ts b/src/embed/app.ts index ad3ae1a7..ac0ba863 100644 --- a/src/embed/app.ts +++ b/src/embed/app.ts @@ -366,7 +366,7 @@ export interface AppViewConfig extends Omit { */ dataPanelCustomGroupsAccordionInitialState?: DataPanelCustomColumnGroupsAccordionState; /** - * This flag is used to enable the 2 column layout in liveboard + * This attribute can be used to enable the two-column layout on an embedded Liveboard * @type {boolean} * @default false * @version SDK: 1.32.0 | ThoughtSpot:10.1.0.cl @@ -380,17 +380,17 @@ export interface AppViewConfig extends Omit { */ enable2ColumnLayout?: boolean; /** - * Flag to use OnBeforeSearchExecute embed event + * Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`. * @version SDK : 1.29.0 | Thoughtspot : 10.1.0.cl */ isOnBeforeGetVizDataInterceptEnabled?: boolean; /** * Flag to use home page search bar mode - * @version SDK : 1.33.0 | Thoughtspot : 10.2.0.cl + * @version SDK : 1.33.0 | Thoughtspot : 10.3.0.cl */ homePageSearchBarMode?: HomePageSearchBarMode; /** - * This flag is used to enable the compact header in liveboard + * This flag can be used to enable the compact header in Liveboard * @type {boolean} * @default false * @version SDK: 1.35.0 | ThoughtSpot:10.3.0.cl @@ -404,7 +404,7 @@ export interface AppViewConfig extends Omit { */ isLiveboardCompactHeaderEnabled?: boolean; /** - * This flag is used to show/hide verified Icon in liveboard compact header + * This flag can be used to show or hide the Liveboard verified icon in the compact header. * @type {boolean} * @default true * @version SDK: 1.35.0 | ThoughtSpot:10.4.0.cl @@ -418,7 +418,7 @@ export interface AppViewConfig extends Omit { */ showLiveboardVerifiedBadge?: boolean; /** - * This flag is used to show/hide re-verify banner in liveboard compact header + * This flag can be used to show or hide the re-verify banner on the Liveboard compact header * @type {boolean} * @default true * @version SDK: 1.35.0 | ThoughtSpot:10.4.0.cl diff --git a/src/embed/base.spec.ts b/src/embed/base.spec.ts index 0b93cf8e..bba31b27 100644 --- a/src/embed/base.spec.ts +++ b/src/embed/base.spec.ts @@ -56,7 +56,7 @@ describe('Base TS Embed', () => { authEE.on(auth.AuthStatus.FAILURE, (reason) => { expect(reason).toEqual(auth.AuthFailureType.NO_COOKIE_ACCESS); expect(window.alert).toBeCalledWith( - 'Third party cookie access is blocked on this browser, please allow third party cookies for this to work properly. \nYou can use `suppressNoCookieAccessAlert` to suppress this message.', + 'Third-party cookie access is blocked on this browser. Please allow third-party cookies for this to work properly. \nYou can use `suppressNoCookieAccessAlert` to suppress this message.', ); done(); }); diff --git a/src/embed/ts-embed.spec.ts b/src/embed/ts-embed.spec.ts index 1b78efa7..6f1ee014 100644 --- a/src/embed/ts-embed.spec.ts +++ b/src/embed/ts-embed.spec.ts @@ -1615,7 +1615,7 @@ describe('Unit test case for ts embed', () => { }); libEmbed.preRender(); - expect(logger.error).toHaveBeenCalledWith('PreRender id is required for preRender'); + expect(logger.error).toHaveBeenCalledWith('PreRender ID is required for preRender'); }); it('showPreRender should preRender if not available', async () => { diff --git a/src/errors.ts b/src/errors.ts index 4b4dc8d3..1a1cbc00 100644 --- a/src/errors.ts +++ b/src/errors.ts @@ -1,18 +1,18 @@ export const ERROR_MESSAGE = { INVALID_THOUGHTSPOT_HOST: 'Error parsing ThoughtSpot host. Please provide a valid URL.', - LIVEBOARD_VIZ_ID_VALIDATION: 'Please select a liveboard to embed.', - TRIGGER_TIMED_OUT: 'Trigger timedout in getting response', - SEARCHEMBED_BETA_WRANING_MESSAGE: 'Search Embed is in Beta in this release.', - SAGE_EMBED_BETA_WARNING_MESSAGE: 'Sage Embed is in Beta in this release.', - THIRD_PARTY_COOKIE_BLOCKED_ALERT: 'Third party cookie access is blocked on this browser, please allow third party cookies for this to work properly. \nYou can use `suppressNoCookieAccessAlert` to suppress this message.', - DUPLICATE_TOKEN_ERR: 'Duplicate token, please issue a new token every time getAuthToken callback is called. See https://developers.thoughtspot.com/docs/?pageid=embed-auth#trusted-auth-embed for more details.', + LIVEBOARD_VIZ_ID_VALIDATION: 'Please select a Liveboard to embed.', + TRIGGER_TIMED_OUT: 'Trigger timed-out in getting a response', + SEARCHEMBED_BETA_WRANING_MESSAGE: 'SearchEmbed is in Beta in this release.', + SAGE_EMBED_BETA_WARNING_MESSAGE: 'SageEmbed is in Beta in this release.', + THIRD_PARTY_COOKIE_BLOCKED_ALERT: 'Third-party cookie access is blocked on this browser. Please allow third-party cookies for this to work properly. \nYou can use `suppressNoCookieAccessAlert` to suppress this message.', + DUPLICATE_TOKEN_ERR: 'Duplicate token. Please issue a new token every time getAuthToken callback is called. See https://developers.thoughtspot.com/docs/?pageid=embed-auth#trusted-auth-embed for more details.', SDK_NOT_INITIALIZED: 'SDK not initialized', - SESSION_INFO_FAILED: 'Failed to get session info', + SESSION_INFO_FAILED: 'Failed to get session information', INVALID_TOKEN_ERROR: 'Received invalid token from getAuthToken callback or authToken endpoint.', MIXPANEL_TOKEN_NOT_FOUND: 'Mixpanel token not found in session info', - PRERENDER_ID_MISSING: 'PreRender id is required for preRender', + PRERENDER_ID_MISSING: 'PreRender ID is required for preRender', SYNC_STYLE_CALLED_BEFORE_RENDER: 'PreRender should be called before using syncPreRenderStyle', CSP_VIOLATION_ALERT: 'CSP violation detected. Please check the console errors for more details.', - CSP_FRAME_HOST_VIOLATION_LOG_MESSAGE: 'Please setup CSP Correctly for the Application to start working. You can know more about setting CSP Correctly here: https://developers.thoughtspot.com/docs/security-settings#csp-viz-embed-hosts. \n In case you are still facing error, please read: https://developers.thoughtspot.com/docs/security-settings#csp-viz-embed-hosts', + CSP_FRAME_HOST_VIOLATION_LOG_MESSAGE: 'Please set up CSP correctly for the application to start working. For more information, see https://developers.thoughtspot.com/docs/security-settings#csp-viz-embed-hosts. \n If the issue persists, refer to https://developers.thoughtspot.com/docs/security-settings#csp-viz-embed-hosts', MISSING_REPORTING_OBSERVER: 'ReportingObserver not supported', }; diff --git a/src/types.ts b/src/types.ts index fafb1ce8..883b92d0 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1017,7 +1017,7 @@ export interface ViewConfig { // eslint-disable-next-line camelcase enableV2Shell_experimental?: boolean; /** - * To set the initial state of the search bar in case of saved-answers. + * To set the initial state of the search bar in case of saved Answers. * @default true * @version SDK: 1.34.0 | Thoughtspot: 10.3.0.cl * @example @@ -1030,7 +1030,7 @@ export interface ViewConfig { collapseSearchBar?: boolean; /** * This flag can be used to disable links inside the embedded app, - * and disables redirection of links in a new tab. + * and disable redirection of links in a new tab. * @example * ```js * const embed = new LiveboardEmbed('#embed', { @@ -2167,22 +2167,26 @@ export enum EmbedEvent { */ Rename = 'rename', /** - * Emitted if the user wants to intercept the search execution - * and implement logic to decide whether to run the search or not * - * Prerequisite: Set isOnBeforeGetVizDataInterceptEnabled : true + * This event can be emitted to intercept search execution initiated by + * the users and implement the logic to allow or restrict search execution. + * You can can also show custom error text if the search query must be + * restricted due to your application or business requirements. + + * Prerequisite: Set `isOnBeforeGetVizDataInterceptEnabled` to `true` * for this embed event to get emitted. * @param: payload * @param: responder * Contains elements that lets developers define whether ThoughtSpot - * will run the search or not, and if not, which error message to provide. + * should run the search, and if not, what error message + * should be shown to the user. * - * execute: When execute returns true, the search will be run. - * When execute returns false, the search will not be executed. + * execute: When execute returns `true`, the search will be run. + * When execute returns `false`, the search will not be executed. * - * error: Developers can customize the user facing message when execute is - * set to false using the error parameter in responder - * @version SDK : 1.29.0 | Thoughtspot : 10.2.0.cl + * error: Developers can customize the error message text when `execute` + * returns `false` using the error parameter in responder. + * @version SDK : 1.29.0 | Thoughtspot : 10.3.0.cl * @example *```js * .on(EmbedEvent.OnBeforeGetVizDataIntercept, @@ -2222,15 +2226,15 @@ export enum EmbedEvent { */ OnBeforeGetVizDataIntercept = 'onBeforeGetVizDataIntercept', /** - * Emitted when parameter changes in an answer - * or liveboard + * Emitted when parameter changes in an Answer + * or Liveboard * * ```js * liveboardEmbed.on(EmbedEvent.ParameterChanged, (payload) => { * console.log('payload', payload); * }) *``` - * @version SDK : 1.29.0 | Thoughtspot : 10.2.0.cl + * @version SDK : 1.29.0 | Thoughtspot : 10.3.0.cl */ ParameterChanged = 'parameterChanged', } @@ -2962,7 +2966,8 @@ export enum HostEvent { * * `values` - An array of one or several values. The value definition on the * data type you choose to filter on. For a complete list of supported data types, see - * link:https://developers.thoughtspot.com/docs/runtime-filters#_supported_data_types[Supported data types] + * link:https://developers.thoughtspot.com/docs/runtime-filters#_supported_data_types[Supported data types]. + * * `type` - To update filters for date time, specify the date format type. * For more information and examples, see link:https://developers.thoughtspot.com/docs/embed-liveboard#_date_filters[Date filters]. * @@ -4237,7 +4242,7 @@ export enum Action { AIHighlights = 'AIHighlights', /** - * Action ID for edit schedule action on schedule on homepage + * Action ID for edit the schedule action on schedule on homepage * @example * ```js * disabledActions: [Action.EditScheduleHomepage] diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index de52a0a8..fd183f40 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 1205, + "id": 1475, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 1317, + "id": 1587, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -48,14 +48,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4253, + "line": 4242, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 1225, + "id": 1495, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -76,14 +76,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3454, + "line": 3451, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 1218, + "id": 1488, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -104,14 +104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3405, + "line": 3402, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 1217, + "id": 1487, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -128,14 +128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3394, + "line": 3391, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 1223, + "id": 1493, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -152,14 +152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3435, + "line": 3432, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 1224, + "id": 1494, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -176,14 +176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3444, + "line": 3441, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 1226, + "id": 1496, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -204,14 +204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3464, + "line": 3461, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 1300, + "id": 1570, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -232,14 +232,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4077, + "line": 4070, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 1273, + "id": 1543, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -260,14 +260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3800, + "line": 3797, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 1314, + "id": 1584, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -288,14 +288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4223, + "line": 4212, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 1272, + "id": 1542, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -316,14 +316,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3791, + "line": 3788, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1271, + "id": 1541, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -344,14 +344,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3782, + "line": 3779, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 1313, + "id": 1583, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -372,14 +372,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4213, + "line": 4202, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 1284, + "id": 1554, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -400,14 +400,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3912, + "line": 3908, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 1287, + "id": 1557, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -428,14 +428,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3944, + "line": 3940, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 1292, + "id": 1562, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -456,14 +456,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3999, + "line": 3995, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 1286, + "id": 1556, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -484,14 +484,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3933, + "line": 3929, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 1289, + "id": 1559, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -512,14 +512,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3967, + "line": 3963, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 1293, + "id": 1563, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -540,14 +540,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4009, + "line": 4005, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 1290, + "id": 1560, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -568,14 +568,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3978, + "line": 3974, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 1295, + "id": 1565, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -596,14 +596,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4031, + "line": 4027, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 1291, + "id": 1561, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -624,14 +624,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3988, + "line": 3984, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 1288, + "id": 1558, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -652,14 +652,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3955, + "line": 3951, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 1294, + "id": 1564, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -680,14 +680,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4019, + "line": 4015, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 1285, + "id": 1555, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -708,14 +708,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3923, + "line": 3919, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 1222, + "id": 1492, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -732,14 +732,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3426, + "line": 3423, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 1221, + "id": 1491, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -747,14 +747,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3417, + "line": 3414, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 1220, + "id": 1490, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -762,14 +762,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3416, + "line": 3413, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 1219, + "id": 1489, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -786,14 +786,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3415, + "line": 3412, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 1264, + "id": 1534, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -801,14 +801,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3738, + "line": 3735, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 1212, + "id": 1482, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -825,14 +825,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3354, + "line": 3351, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1263, + "id": 1533, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -849,14 +849,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3737, + "line": 3734, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1311, + "id": 1581, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -866,7 +866,7 @@ "tags": [ { "tag": "example", - "text": "\n```js\nhiddenAction: [Action.CreateLiveboard]\ndisabledActions: [Action.CreateLiveboard]\n```\n" + "text": "\n```js\nhiddenAction: [Action.CreateLiveboard]\ndisabledActions: [Action.CreateLiveboard]\n```" }, { "tag": "version", @@ -877,14 +877,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4193, + "line": 4182, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 1275, + "id": 1545, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -905,14 +905,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3818, + "line": 3815, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 1280, + "id": 1550, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -933,14 +933,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3870, + "line": 3866, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 1323, + "id": 1593, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -961,14 +961,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4314, + "line": 4302, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 1234, + "id": 1504, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -985,14 +985,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3509, + "line": 3506, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 1237, + "id": 1507, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1009,14 +1009,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3543, + "line": 3540, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1236, + "id": 1506, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1034,14 +1034,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3533, + "line": 3530, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1235, + "id": 1505, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1058,14 +1058,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3519, + "line": 3516, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1238, + "id": 1508, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1082,14 +1082,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3553, + "line": 3550, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1268, + "id": 1538, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1106,14 +1106,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3754, + "line": 3751, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 1262, + "id": 1532, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1130,14 +1130,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3727, + "line": 3724, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1261, + "id": 1531, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1154,14 +1154,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3718, + "line": 3715, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1246, + "id": 1516, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1178,14 +1178,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3623, + "line": 3620, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1211, + "id": 1481, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1202,14 +1202,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3345, + "line": 3342, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 1274, + "id": 1544, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1230,14 +1230,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3809, + "line": 3806, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 1266, + "id": 1536, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1245,14 +1245,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3743, + "line": 3740, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 1303, + "id": 1573, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1272,20 +1272,20 @@ "sources": [ { "fileName": "types.ts", - "line": 4107, + "line": 4098, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 1318, + "id": 1588, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Action ID for edit schedule action on schedule on homepage", + "shortText": "Action ID for edit the schedule action on schedule on homepage", "tags": [ { "tag": "example", @@ -1300,14 +1300,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4263, + "line": 4252, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 1243, + "id": 1513, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1324,14 +1324,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3594, + "line": 3591, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 1247, + "id": 1517, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1348,14 +1348,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3631, + "line": 3628, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 1301, + "id": 1571, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1376,14 +1376,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4088, + "line": 4080, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 1260, + "id": 1530, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1400,14 +1400,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3708, + "line": 3705, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1240, + "id": 1510, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1424,14 +1424,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3567, + "line": 3564, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1241, + "id": 1511, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1448,14 +1448,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3576, + "line": 3573, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 1324, + "id": 1594, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1476,14 +1476,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4324, + "line": 4312, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 1254, + "id": 1524, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1500,14 +1500,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3671, + "line": 3668, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1309, + "id": 1579, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1528,14 +1528,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4162, + "line": 4152, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 1210, + "id": 1480, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1552,14 +1552,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3336, + "line": 3333, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1307, + "id": 1577, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1576,14 +1576,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4144, + "line": 4134, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 1279, + "id": 1549, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1604,14 +1604,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3860, + "line": 3856, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 1322, + "id": 1592, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1632,14 +1632,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4304, + "line": 4292, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 1299, + "id": 1569, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1660,14 +1660,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4066, + "line": 4060, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 1305, + "id": 1575, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1687,14 +1687,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4127, + "line": 4117, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 1306, + "id": 1576, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -1711,14 +1711,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4136, + "line": 4126, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 1316, + "id": 1586, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -1739,14 +1739,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4243, + "line": 4232, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 1319, + "id": 1589, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1767,14 +1767,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4273, + "line": 4262, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 1308, + "id": 1578, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -1795,14 +1795,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4153, + "line": 4143, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 1257, + "id": 1527, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -1819,14 +1819,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3688, + "line": 3685, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1244, + "id": 1514, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -1843,14 +1843,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3604, + "line": 3601, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 1270, + "id": 1540, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -1867,14 +1867,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3772, + "line": 3769, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 1248, + "id": 1518, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -1891,14 +1891,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3640, + "line": 3637, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1283, + "id": 1553, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1919,14 +1919,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3901, + "line": 3897, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 1315, + "id": 1585, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -1947,14 +1947,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4233, + "line": 4222, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 1297, + "id": 1567, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -1975,14 +1975,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4045, + "line": 4041, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 1276, + "id": 1546, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -1991,7 +1991,7 @@ "tags": [ { "tag": "deprecated", - "text": "\nReports errors\n" + "text": "\nReports errors" }, { "tag": "example", @@ -2006,14 +2006,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3829, + "line": 3825, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 1269, + "id": 1539, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2030,14 +2030,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3763, + "line": 3760, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 1298, + "id": 1568, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2046,7 +2046,7 @@ "tags": [ { "tag": "example", - "text": "\n```js\ndisabledActions: [Action.RequestVerification]\n```\n" + "text": "\n```js\ndisabledActions: [Action.RequestVerification]\n```" }, { "tag": "version", @@ -2057,14 +2057,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4055, + "line": 4050, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 1304, + "id": 1574, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2085,14 +2085,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4118, + "line": 4108, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 1206, + "id": 1476, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2109,14 +2109,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3305, + "line": 3302, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1209, + "id": 1479, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2133,14 +2133,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3323, + "line": 3320, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 1214, + "id": 1484, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2157,14 +2157,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3367, + "line": 3364, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1215, + "id": 1485, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2181,14 +2181,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3376, + "line": 3373, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1267, + "id": 1537, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2196,14 +2196,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3744, + "line": 3741, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 1216, + "id": 1486, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2220,14 +2220,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3385, + "line": 3382, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1231, + "id": 1501, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2235,14 +2235,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3486, + "line": 3483, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 1302, + "id": 1572, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2251,7 +2251,7 @@ "tags": [ { "tag": "example", - "text": "\n```js\ndisabledActions: [Action.ShowSageQuery]\n```\n" + "text": "\n```js\ndisabledActions: [Action.ShowSageQuery]\n```" }, { "tag": "version", @@ -2262,14 +2262,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4098, + "line": 4089, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 1233, + "id": 1503, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2286,14 +2286,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3499, + "line": 3496, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1228, + "id": 1498, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2310,14 +2310,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3477, + "line": 3474, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1259, + "id": 1529, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2334,14 +2334,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3700, + "line": 3697, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1278, + "id": 1548, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2362,14 +2362,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3850, + "line": 3846, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1277, + "id": 1547, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2390,14 +2390,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3839, + "line": 3835, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1281, + "id": 1551, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2418,14 +2418,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3880, + "line": 3876, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 1282, + "id": 1552, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2446,14 +2446,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3890, + "line": 3886, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 1310, + "id": 1580, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -2478,14 +2478,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4181, + "line": 4171, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 1245, + "id": 1515, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -2502,14 +2502,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3613, + "line": 3610, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 1321, + "id": 1591, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2530,14 +2530,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4293, + "line": 4282, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 1242, + "id": 1512, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -2554,14 +2554,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3585, + "line": 3582, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1312, + "id": 1582, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -2582,14 +2582,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4203, + "line": 4192, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 1320, + "id": 1590, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2610,7 +2610,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4283, + "line": 4272, "character": 4 } ], @@ -2622,120 +2622,120 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1317, - 1225, - 1218, - 1217, - 1223, - 1224, - 1226, - 1300, - 1273, - 1314, - 1272, - 1271, - 1313, - 1284, - 1287, - 1292, - 1286, - 1289, - 1293, - 1290, - 1295, - 1291, - 1288, - 1294, - 1285, - 1222, - 1221, - 1220, - 1219, - 1264, - 1212, - 1263, - 1311, - 1275, - 1280, - 1323, - 1234, - 1237, - 1236, - 1235, - 1238, - 1268, - 1262, - 1261, - 1246, - 1211, - 1274, - 1266, - 1303, - 1318, - 1243, - 1247, - 1301, - 1260, - 1240, - 1241, - 1324, - 1254, - 1309, - 1210, - 1307, - 1279, - 1322, - 1299, - 1305, - 1306, - 1316, - 1319, - 1308, - 1257, - 1244, - 1270, - 1248, - 1283, - 1315, - 1297, - 1276, - 1269, - 1298, - 1304, - 1206, - 1209, - 1214, - 1215, - 1267, - 1216, - 1231, - 1302, - 1233, - 1228, - 1259, - 1278, - 1277, - 1281, - 1282, - 1310, - 1245, - 1321, - 1242, - 1312, - 1320 + 1587, + 1495, + 1488, + 1487, + 1493, + 1494, + 1496, + 1570, + 1543, + 1584, + 1542, + 1541, + 1583, + 1554, + 1557, + 1562, + 1556, + 1559, + 1563, + 1560, + 1565, + 1561, + 1558, + 1564, + 1555, + 1492, + 1491, + 1490, + 1489, + 1534, + 1482, + 1533, + 1581, + 1545, + 1550, + 1593, + 1504, + 1507, + 1506, + 1505, + 1508, + 1538, + 1532, + 1531, + 1516, + 1481, + 1544, + 1536, + 1573, + 1588, + 1513, + 1517, + 1571, + 1530, + 1510, + 1511, + 1594, + 1524, + 1579, + 1480, + 1577, + 1549, + 1592, + 1569, + 1575, + 1576, + 1586, + 1589, + 1578, + 1527, + 1514, + 1540, + 1518, + 1553, + 1585, + 1567, + 1546, + 1539, + 1568, + 1574, + 1476, + 1479, + 1484, + 1485, + 1537, + 1486, + 1501, + 1572, + 1503, + 1498, + 1529, + 1548, + 1547, + 1551, + 1552, + 1580, + 1515, + 1591, + 1512, + 1582, + 1590 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3296, + "line": 3293, "character": 12 } ] }, { - "id": 898, + "id": 1159, "name": "AuthEvent", "kind": 4, "kindString": "Enumeration", @@ -2751,7 +2751,7 @@ }, "children": [ { - "id": 899, + "id": 1160, "name": "TRIGGER_SSO_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -2774,7 +2774,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 899 + 1160 ] } ], @@ -2787,7 +2787,7 @@ ] }, { - "id": 887, + "id": 1148, "name": "AuthFailureType", "kind": 4, "kindString": "Enumeration", @@ -2803,7 +2803,7 @@ }, "children": [ { - "id": 890, + "id": 1151, "name": "EXPIRY", "kind": 16, "kindString": "Enumeration member", @@ -2818,7 +2818,7 @@ "defaultValue": "\"EXPIRY\"" }, { - "id": 889, + "id": 1150, "name": "NO_COOKIE_ACCESS", "kind": 16, "kindString": "Enumeration member", @@ -2833,7 +2833,7 @@ "defaultValue": "\"NO_COOKIE_ACCESS\"" }, { - "id": 891, + "id": 1152, "name": "OTHER", "kind": 16, "kindString": "Enumeration member", @@ -2848,7 +2848,7 @@ "defaultValue": "\"OTHER\"" }, { - "id": 888, + "id": 1149, "name": "SDK", "kind": 16, "kindString": "Enumeration member", @@ -2868,10 +2868,10 @@ "title": "Enumeration members", "kind": 16, "children": [ - 890, - 889, - 891, - 888 + 1151, + 1150, + 1152, + 1149 ] } ], @@ -2884,7 +2884,7 @@ ] }, { - "id": 892, + "id": 1153, "name": "AuthStatus", "kind": 4, "kindString": "Enumeration", @@ -2900,7 +2900,7 @@ }, "children": [ { - "id": 893, + "id": 1154, "name": "FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -2918,7 +2918,7 @@ "defaultValue": "\"FAILURE\"" }, { - "id": 896, + "id": 1157, "name": "LOGOUT", "kind": 16, "kindString": "Enumeration member", @@ -2936,7 +2936,7 @@ "defaultValue": "\"LOGOUT\"" }, { - "id": 894, + "id": 1155, "name": "SDK_SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -2954,7 +2954,7 @@ "defaultValue": "\"SDK_SUCCESS\"" }, { - "id": 895, + "id": 1156, "name": "SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -2972,7 +2972,7 @@ "defaultValue": "\"SUCCESS\"" }, { - "id": 897, + "id": 1158, "name": "WAITING_FOR_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3001,11 +3001,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 893, - 896, - 894, - 895, - 897 + 1154, + 1157, + 1155, + 1156, + 1158 ] } ], @@ -3018,7 +3018,7 @@ ] }, { - "id": 1036, + "id": 1306, "name": "AuthType", "kind": 4, "kindString": "Enumeration", @@ -3034,7 +3034,7 @@ }, "children": [ { - "id": 1047, + "id": 1317, "name": "Basic", "kind": 16, "kindString": "Enumeration member", @@ -3053,7 +3053,7 @@ "defaultValue": "\"Basic\"" }, { - "id": 1038, + "id": 1308, "name": "EmbeddedSSO", "kind": 16, "kindString": "Enumeration member", @@ -3082,7 +3082,7 @@ "defaultValue": "\"EmbeddedSSO\"" }, { - "id": 1037, + "id": 1307, "name": "None", "kind": 16, "kindString": "Enumeration member", @@ -3106,7 +3106,7 @@ "defaultValue": "\"None\"" }, { - "id": 1043, + "id": 1313, "name": "OIDCRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3124,7 +3124,7 @@ "defaultValue": "\"SSO_OIDC\"" }, { - "id": 1041, + "id": 1311, "name": "SAMLRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3157,7 +3157,7 @@ "defaultValue": "\"SSO_SAML\"" }, { - "id": 1045, + "id": 1315, "name": "TrustedAuthToken", "kind": 16, "kindString": "Enumeration member", @@ -3181,7 +3181,7 @@ "defaultValue": "\"AuthServer\"" }, { - "id": 1046, + "id": 1316, "name": "TrustedAuthTokenCookieless", "kind": 16, "kindString": "Enumeration member", @@ -3214,16 +3214,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1047, - 1038, - 1037, - 1043, - 1041, - 1045, - 1046 - ] - } - ], + 1317, + 1308, + 1307, + 1313, + 1311, + 1315, + 1316 + ] + } + ], "sources": [ { "fileName": "types.ts", @@ -3233,7 +3233,7 @@ ] }, { - "id": 1325, + "id": 1595, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3243,7 +3243,7 @@ }, "children": [ { - "id": 1326, + "id": 1596, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3251,14 +3251,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4342, + "line": 4330, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 1327, + "id": 1597, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3266,7 +3266,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4343, + "line": 4331, "character": 4 } ], @@ -3278,21 +3278,21 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1326, - 1327 + 1596, + 1597 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4341, + "line": 4329, "character": 12 } ] }, { - "id": 1201, + "id": 1471, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -3302,7 +3302,7 @@ }, "children": [ { - "id": 1203, + "id": 1473, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -3313,14 +3313,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3167, + "line": 3163, "character": 4 } ], "defaultValue": "\"collapse\"" }, { - "id": 1204, + "id": 1474, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -3331,14 +3331,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3171, + "line": 3167, "character": 4 } ], "defaultValue": "\"expand\"" }, { - "id": 1202, + "id": 1472, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -3349,7 +3349,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3163, + "line": 3159, "character": 4 } ], @@ -3361,22 +3361,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1203, - 1204, - 1202 + 1473, + 1474, + 1472 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3159, + "line": 3155, "character": 12 } ] }, { - "id": 1068, + "id": 1338, "name": "EmbedEvent", "kind": 4, "kindString": "Enumeration", @@ -3387,11 +3387,11 @@ "tags": [ { "tag": "example", - "text": "\n```js\nimport { EmbedEvent } from '@thoughtspot/visual-embed-sdk';\n// Or\n// const { EmbedEvent } = window.tsembed;\n\n// create the liveboard embed.\n\nliveboardEmbed.on(EmbedEvent.Drilldown, (drilldown) => {\n console.log('Drilldown event', drilldown);\n}));\n```\n\nIf you are using React components for embedding, you can register to any\nevents from the `EmbedEvent` list by using the `on` convention.\nFor example,`onAlert`, `onCopyToClipboard` and so on.\n" + "text": "\n```js\nimport { EmbedEvent } from '@thoughtspot/visual-embed-sdk';\n// Or\n// const { EmbedEvent } = window.tsembed;\n\n// create the liveboard embed.\n\nliveboardEmbed.on(EmbedEvent.Drilldown, (drilldown) => {\n console.log('Drilldown event', drilldown);\n}));\n```\n\nIf you are using React components for embedding, you can register to any\nevents from the `EmbedEvent` list by using the `on` convention.\nFor example,`onAlert`, `onCopyToClipboard` and so on." }, { "tag": "example", - "text": "\n```js\n// ...\nconst MyComponent = ({ dataSources }) => {\n const onLoad = () => {\n console.log(EmbedEvent.Load, {});\n };\n\n return (\n \n );\n};\n```\n" + "text": "\n```js\n// ...\nconst MyComponent = ({ dataSources }) => {\n const onLoad = () => {\n console.log(EmbedEvent.Load, {});\n };\n\n return (\n \n );\n};\n```" }, { "tag": "group", @@ -3401,7 +3401,7 @@ }, "children": [ { - "id": 1095, + "id": 1365, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -3422,14 +3422,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1643, + "line": 1653, "character": 4 } ], "defaultValue": "\"*\"" }, { - "id": 1076, + "id": 1346, "name": "AddRemoveColumns", "kind": 16, "kindString": "Enumeration member", @@ -3454,14 +3454,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1416, + "line": 1426, "character": 4 } ], "defaultValue": "\"addRemoveColumns\"" }, { - "id": 1118, + "id": 1388, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -3482,14 +3482,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1948, + "line": 1958, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 1081, + "id": 1351, "name": "Alert", "kind": 16, "kindString": "Enumeration member", @@ -3514,14 +3514,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1508, + "line": 1518, "character": 4 } ], "defaultValue": "\"alert\"" }, { - "id": 1115, + "id": 1385, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -3542,14 +3542,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1921, + "line": 1931, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1102, + "id": 1372, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -3570,14 +3570,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1747, + "line": 1757, "character": 4 } ], "defaultValue": "\"answerDelete\"" }, { - "id": 1141, + "id": 1411, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -3610,14 +3610,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2153, + "line": 2163, "character": 4 } ], "defaultValue": "\"AskSageInit\"" }, { - "id": 1082, + "id": 1352, "name": "AuthExpire", "kind": 16, "kindString": "Enumeration member", @@ -3638,14 +3638,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1521, + "line": 1531, "character": 4 } ], "defaultValue": "\"ThoughtspotAuthExpired\"" }, { - "id": 1070, + "id": 1340, "name": "AuthInit", "kind": 16, "kindString": "Enumeration member", @@ -3670,14 +3670,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1319, + "line": 1329, "character": 4 } ], "defaultValue": "\"authInit\"" }, { - "id": 1125, + "id": 1395, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -3698,14 +3698,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2024, + "line": 2034, "character": 4 } ], "defaultValue": "\"cancel\"" }, { - "id": 1113, + "id": 1383, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -3726,14 +3726,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1899, + "line": 1909, "character": 4 } ], "defaultValue": "\"copyAEdit\"" }, { - "id": 1127, + "id": 1397, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -3754,14 +3754,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2044, + "line": 2054, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1108, + "id": 1378, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -3782,14 +3782,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1836, + "line": 1846, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1135, + "id": 1405, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -3806,14 +3806,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2104, + "line": 2114, "character": 4 } ], "defaultValue": "\"createConnection\"" }, { - "id": 1140, + "id": 1410, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -3830,14 +3830,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2144, + "line": 2154, "character": 4 } ], "defaultValue": "\"createWorksheet\"" }, { - "id": 1128, + "id": 1398, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -3858,14 +3858,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2054, + "line": 2064, "character": 4 } ], "defaultValue": "\"cross-filter-changed\"" }, { - "id": 1077, + "id": 1347, "name": "CustomAction", "kind": 16, "kindString": "Enumeration member", @@ -3894,14 +3894,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1433, + "line": 1443, "character": 4 } ], "defaultValue": "\"customAction\"" }, { - "id": 1072, + "id": 1342, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -3930,14 +3930,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1346, + "line": 1356, "character": 4 } ], "defaultValue": "\"data\"" }, { - "id": 1075, + "id": 1345, "name": "DataSourceSelected", "kind": 16, "kindString": "Enumeration member", @@ -3962,14 +3962,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1404, + "line": 1414, "character": 4 } ], "defaultValue": "\"dataSourceSelected\"" }, { - "id": 1123, + "id": 1393, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -3990,14 +3990,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2006, + "line": 2016, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1139, + "id": 1409, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -4022,14 +4022,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2139, + "line": 2149, "character": 4 } ], "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 1093, + "id": 1363, "name": "DialogClose", "kind": 16, "kindString": "Enumeration member", @@ -4050,14 +4050,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1610, + "line": 1620, "character": 4 } ], "defaultValue": "\"dialog-close\"" }, { - "id": 1092, + "id": 1362, "name": "DialogOpen", "kind": 16, "kindString": "Enumeration member", @@ -4078,14 +4078,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1599, + "line": 1609, "character": 4 } ], "defaultValue": "\"dialog-open\"" }, { - "id": 1097, + "id": 1367, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -4107,14 +4107,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1677, + "line": 1687, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 1100, + "id": 1370, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -4135,14 +4135,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1719, + "line": 1729, "character": 4 } ], "defaultValue": "\"downloadAsCsv\"" }, { - "id": 1099, + "id": 1369, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -4163,14 +4163,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1705, + "line": 1715, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1098, + "id": 1368, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -4191,14 +4191,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1691, + "line": 1701, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1101, + "id": 1371, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -4219,14 +4219,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1733, + "line": 1743, "character": 4 } ], "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 1107, + "id": 1377, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -4247,14 +4247,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1825, + "line": 1835, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1106, + "id": 1376, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -4275,14 +4275,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1813, + "line": 1823, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1074, + "id": 1344, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -4319,14 +4319,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1392, + "line": 1402, "character": 4 } ], "defaultValue": "\"drillDown\"" }, { - "id": 1120, + "id": 1390, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -4347,14 +4347,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1970, + "line": 1980, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1110, + "id": 1380, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -4375,14 +4375,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1859, + "line": 1869, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 1080, + "id": 1350, "name": "Error", "kind": 16, "kindString": "Enumeration member", @@ -4412,14 +4412,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1498, + "line": 1508, "character": 4 } ], "defaultValue": "\"Error\"" }, { - "id": 1126, + "id": 1396, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -4440,14 +4440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2034, + "line": 2044, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1111, + "id": 1381, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -4468,14 +4468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1874, + "line": 1884, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1131, + "id": 1401, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4492,14 +4492,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2084, + "line": 2094, "character": 4 } ], "defaultValue": "\"filterChanged\"" }, { - "id": 1087, + "id": 1357, "name": "GetDataClick", "kind": 16, "kindString": "Enumeration member", @@ -4520,14 +4520,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1556, + "line": 1566, "character": 4 } ], "defaultValue": "\"getDataClick\"" }, { - "id": 1069, + "id": 1339, "name": "Init", "kind": 16, "kindString": "Enumeration member", @@ -4548,14 +4548,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1307, + "line": 1317, "character": 4 } ], "defaultValue": "\"init\"" }, { - "id": 1117, + "id": 1387, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -4576,14 +4576,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1937, + "line": 1947, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1094, + "id": 1364, "name": "LiveboardRendered", "kind": 16, "kindString": "Enumeration member", @@ -4608,14 +4608,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1632, + "line": 1642, "character": 4 } ], "defaultValue": "\"PinboardRendered\"" }, { - "id": 1071, + "id": 1341, "name": "Load", "kind": 16, "kindString": "Enumeration member", @@ -4640,14 +4640,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1333, + "line": 1343, "character": 4 } ], "defaultValue": "\"load\"" }, { - "id": 1121, + "id": 1391, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -4668,14 +4668,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1981, + "line": 1991, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1090, + "id": 1360, "name": "NoCookieAccess", "kind": 16, "kindString": "Enumeration member", @@ -4696,21 +4696,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1582, + "line": 1592, "character": 4 } ], "defaultValue": "\"noCookieAccess\"" }, { - "id": 1143, + "id": 1413, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Emitted if the user wants to intercept the search execution\nand implement logic to decide whether to run the search or not", - "text": "Prerequisite: Set isOnBeforeGetVizDataInterceptEnabled : true\nfor this embed event to get emitted.\n", + "shortText": "This event can be emitted to intercept search execution initiated by\nthe users and implement the logic to allow or restrict search execution.\nYou can can also show custom error text if the search query must be\nrestricted due to your application or business requirements.", + "text": "Prerequisite: Set `isOnBeforeGetVizDataInterceptEnabled` to `true`\nfor this embed event to get emitted.", "tags": [ { "tag": "param:", @@ -4718,11 +4718,11 @@ }, { "tag": "param:", - "text": "responder\nContains elements that lets developers define whether ThoughtSpot\nwill run the search or not, and if not, which error message to provide.\n\nexecute: When execute returns true, the search will be run.\nWhen execute returns false, the search will not be executed.\n\nerror: Developers can customize the user facing message when execute is\nset to false using the error parameter in responder\n" + "text": "responder\nContains elements that lets developers define whether ThoughtSpot\nshould run the search, and if not, what error message\nshould be shown to the user.\n\nexecute: When execute returns `true`, the search will be run.\nWhen execute returns `false`, the search will not be executed.\n\nerror: Developers can customize the error message text when `execute`\nreturns `false` using the error parameter in responder." }, { "tag": "version", - "text": "SDK : 1.29.0 | Thoughtspot : 10.2.0.cl\n" + "text": "SDK : 1.29.0 | Thoughtspot : 10.3.0.cl" }, { "tag": "example", @@ -4733,39 +4733,39 @@ "sources": [ { "fileName": "types.ts", - "line": 2216, + "line": 2227, "character": 4 } ], "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 1144, + "id": 1414, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Emitted when parameter changes in an answer\nor liveboard", + "shortText": "Emitted when parameter changes in an Answer\nor Liveboard", "text": "```js\nliveboardEmbed.on(EmbedEvent.ParameterChanged, (payload) => {\n console.log('payload', payload);\n})\n```", "tags": [ { "tag": "version", - "text": "SDK : 1.29.0 | Thoughtspot : 10.2.0.cl\n" + "text": "SDK : 1.29.0 | Thoughtspot : 10.3.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 2228, + "line": 2239, "character": 4 } ], "defaultValue": "\"parameterChanged\"" }, { - "id": 1103, + "id": 1373, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -4786,14 +4786,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1765, + "line": 1775, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1122, + "id": 1392, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -4818,14 +4818,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1996, + "line": 2006, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 1073, + "id": 1343, "name": "QueryChanged", "kind": 16, "kindString": "Enumeration member", @@ -4846,14 +4846,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1355, + "line": 1365, "character": 4 } ], "defaultValue": "\"queryChanged\"" }, { - "id": 1142, + "id": 1412, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -4870,14 +4870,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2158, + "line": 2168, "character": 4 } ], "defaultValue": "\"rename\"" }, { - "id": 1138, + "id": 1408, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -4910,14 +4910,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2132, + "line": 2142, "character": 4 } ], "defaultValue": "\"resetLiveboard\"" }, { - "id": 1088, + "id": 1358, "name": "RouteChange", "kind": 16, "kindString": "Enumeration member", @@ -4938,14 +4938,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1566, + "line": 1576, "character": 4 } ], "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 1132, + "id": 1402, "name": "SageEmbedQuery", "kind": 16, "kindString": "Enumeration member", @@ -4962,14 +4962,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2089, + "line": 2099, "character": 4 } ], "defaultValue": "\"sageEmbedQuery\"" }, { - "id": 1133, + "id": 1403, "name": "SageWorksheetUpdated", "kind": 16, "kindString": "Enumeration member", @@ -4986,14 +4986,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2094, + "line": 2104, "character": 4 } ], "defaultValue": "\"sageWorksheetUpdated\"" }, { - "id": 1096, + "id": 1366, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -5014,14 +5014,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1661, + "line": 1671, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1112, + "id": 1382, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -5042,14 +5042,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1885, + "line": 1895, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 1137, + "id": 1407, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -5082,14 +5082,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2123, + "line": 2133, "character": 4 } ], "defaultValue": "\"savePersonalisedView\"" }, { - "id": 1119, + "id": 1389, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -5110,14 +5110,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1959, + "line": 1969, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1124, + "id": 1394, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -5138,14 +5138,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2015, + "line": 2025, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1105, + "id": 1375, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -5166,14 +5166,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1801, + "line": 1811, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1114, + "id": 1384, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -5194,14 +5194,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1910, + "line": 1920, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1104, + "id": 1374, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -5222,14 +5222,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1783, + "line": 1793, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1134, + "id": 1404, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -5246,14 +5246,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2099, + "line": 2109, "character": 4 } ], "defaultValue": "\"updateConnection\"" }, { - "id": 1136, + "id": 1406, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -5286,14 +5286,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2114, + "line": 2124, "character": 4 } ], "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 1109, + "id": 1379, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -5314,14 +5314,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1847, + "line": 1857, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1079, + "id": 1349, "name": "VizPointClick", "kind": 16, "kindString": "Enumeration member", @@ -5350,14 +5350,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1464, + "line": 1474, "character": 4 } ], "defaultValue": "\"vizPointClick\"" }, { - "id": 1078, + "id": 1348, "name": "VizPointDoubleClick", "kind": 16, "kindString": "Enumeration member", @@ -5382,14 +5382,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1445, + "line": 1455, "character": 4 } ], "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 1129, + "id": 1399, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -5410,7 +5410,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2065, + "line": 2075, "character": 4 } ], @@ -5422,87 +5422,87 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1095, - 1076, - 1118, - 1081, - 1115, - 1102, - 1141, - 1082, - 1070, - 1125, - 1113, - 1127, - 1108, - 1135, - 1140, - 1128, - 1077, - 1072, - 1075, - 1123, - 1139, - 1093, - 1092, - 1097, - 1100, - 1099, - 1098, - 1101, - 1107, - 1106, - 1074, - 1120, - 1110, - 1080, - 1126, - 1111, - 1131, - 1087, - 1069, - 1117, - 1094, - 1071, - 1121, - 1090, - 1143, - 1144, - 1103, - 1122, - 1073, - 1142, - 1138, - 1088, - 1132, - 1133, - 1096, - 1112, - 1137, - 1119, - 1124, - 1105, - 1114, - 1104, - 1134, - 1136, - 1109, - 1079, - 1078, - 1129 + 1365, + 1346, + 1388, + 1351, + 1385, + 1372, + 1411, + 1352, + 1340, + 1395, + 1383, + 1397, + 1378, + 1405, + 1410, + 1398, + 1347, + 1342, + 1345, + 1393, + 1409, + 1363, + 1362, + 1367, + 1370, + 1369, + 1368, + 1371, + 1377, + 1376, + 1344, + 1390, + 1380, + 1350, + 1396, + 1381, + 1401, + 1357, + 1339, + 1387, + 1364, + 1341, + 1391, + 1360, + 1413, + 1414, + 1373, + 1392, + 1343, + 1412, + 1408, + 1358, + 1402, + 1403, + 1366, + 1382, + 1407, + 1389, + 1394, + 1375, + 1384, + 1374, + 1404, + 1406, + 1379, + 1349, + 1348, + 1399 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1294, + "line": 1304, "character": 12 } ] }, { - "id": 1626, + "id": 1899, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -5512,7 +5512,7 @@ }, "children": [ { - "id": 1630, + "id": 1903, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -5535,7 +5535,7 @@ "defaultValue": "\"answers\"" }, { - "id": 1628, + "id": 1901, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -5558,7 +5558,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 1633, + "id": 1906, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -5581,7 +5581,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 1629, + "id": 1902, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -5604,7 +5604,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 1631, + "id": 1904, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -5627,7 +5627,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 1627, + "id": 1900, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -5650,7 +5650,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 1632, + "id": 1905, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -5678,13 +5678,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1630, - 1628, - 1633, - 1629, - 1631, - 1627, - 1632 + 1903, + 1901, + 1906, + 1902, + 1904, + 1900, + 1905 ] } ], @@ -5697,7 +5697,7 @@ ] }, { - "id": 1634, + "id": 1907, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -5713,7 +5713,7 @@ }, "children": [ { - "id": 1637, + "id": 1910, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -5724,14 +5724,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1202, + "line": 1214, "character": 4 } ], "defaultValue": "\"FAVORITE\"" }, { - "id": 1640, + "id": 1913, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -5742,14 +5742,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1214, + "line": 1226, "character": 4 } ], "defaultValue": "\"LEARNING\"" }, { - "id": 1638, + "id": 1911, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -5760,14 +5760,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1206, + "line": 1218, "character": 4 } ], "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 1635, + "id": 1908, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -5778,14 +5778,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1194, + "line": 1206, "character": 4 } ], "defaultValue": "\"SEARCH\"" }, { - "id": 1639, + "id": 1912, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -5796,14 +5796,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1210, + "line": 1222, "character": 4 } ], "defaultValue": "\"TRENDING\"" }, { - "id": 1636, + "id": 1909, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -5814,7 +5814,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1198, + "line": 1210, "character": 4 } ], @@ -5826,25 +5826,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1637, - 1640, - 1638, - 1635, - 1639, - 1636 + 1910, + 1913, + 1911, + 1908, + 1912, + 1909 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1190, + "line": 1202, "character": 12 } ] }, { - "id": 1145, + "id": 1415, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -5859,11 +5859,11 @@ }, { "tag": "example", - "text": "\nIf using React components to embed, use the format shown in this example:\n\n```js\n const selectVizs = () => {\n embedRef.current.trigger(HostEvent.SetVisibleVizs, [\n \"715e4613-c891-4884-be44-aa8d13701c06\",\n \"3f84d633-e325-44b2-be25-c6650e5a49cf\"\n ]);\n };\n```\n\n\nYou can also attach an Embed event to a Host event to trigger\na specific action as shown in this example:\n" + "text": "\nIf using React components to embed, use the format shown in this example:\n\n```js\n const selectVizs = () => {\n embedRef.current.trigger(HostEvent.SetVisibleVizs, [\n \"715e4613-c891-4884-be44-aa8d13701c06\",\n \"3f84d633-e325-44b2-be25-c6650e5a49cf\"\n ]);\n };\n```\n\n\nYou can also attach an Embed event to a Host event to trigger\na specific action as shown in this example:" }, { "tag": "example", - "text": "\n```js\n const EmbeddedComponent = () => {\n const embedRef = useRef(null); // import { useRef } from react\n const onLiveboardRendered = () => {\n embedRef.current.trigger(HostEvent.SetVisibleVizs, ['viz1', 'viz2']);\n };\n\n return (\n \"\n onLiveboardRendered={onLiveboardRendered}\n />\n );\n }\n```\n" + "text": "\n```js\n const EmbeddedComponent = () => {\n const embedRef = useRef(null); // import { useRef } from react\n const onLiveboardRendered = () => {\n embedRef.current.trigger(HostEvent.SetVisibleVizs, ['viz1', 'viz2']);\n };\n\n return (\n \"\n onLiveboardRendered={onLiveboardRendered}\n />\n );\n }\n```" }, { "tag": "group", @@ -5873,7 +5873,7 @@ }, "children": [ { - "id": 1156, + "id": 1426, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -5899,14 +5899,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2472, + "line": 2481, "character": 4 } ], "defaultValue": "\"addColumns\"" }, { - "id": 1196, + "id": 1466, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -5927,14 +5927,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3105, + "line": 3101, "character": 4 } ], "defaultValue": "\"AskSage\"" }, { - "id": 1173, + "id": 1443, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -5960,14 +5960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2706, + "line": 2705, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1170, + "id": 1440, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -5982,7 +5982,7 @@ }, { "tag": "example", - "text": "\n```js\nliveboardEmbed.trigger(HostEvent.CreateMonitor {\n vizId: '730496d6-6903-4601-937e-2c691821af3c'\n})\n```\n" + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.CreateMonitor {\n vizId: '730496d6-6903-4601-937e-2c691821af3c'\n})\n```" }, { "tag": "example", @@ -5997,14 +5997,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2647, + "line": 2649, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 1177, + "id": 1447, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -6030,14 +6030,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2771, + "line": 2770, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 1179, + "id": 1449, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -6062,14 +6062,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2807, + "line": 2806, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1181, + "id": 1451, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -6090,14 +6090,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2839, + "line": 2838, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1166, + "id": 1436, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -6119,14 +6119,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2581, + "line": 2590, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1180, + "id": 1450, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -6147,14 +6147,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2822, + "line": 2821, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1182, + "id": 1452, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -6175,14 +6175,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2856, + "line": 2855, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1147, + "id": 1417, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -6227,14 +6227,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2357, + "line": 2366, "character": 4 } ], "defaultValue": "\"triggerDrillDown\"" }, { - "id": 1172, + "id": 1442, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -6261,14 +6261,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2689, + "line": 2688, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1164, + "id": 1434, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -6289,14 +6289,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2559, + "line": 2568, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 1169, + "id": 1439, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -6322,14 +6322,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2628, + "line": 2632, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1163, + "id": 1433, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -6350,14 +6350,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2549, + "line": 2558, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1195, + "id": 1465, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -6367,11 +6367,11 @@ "tags": [ { "tag": "example", - "text": "\n```js\nconst {session} = await embed.trigger(\n HostEvent.GetAnswerSession, {\n vizId: '123', // For Liveboard Visualization.\n })\n```\n" + "text": "\n```js\nconst {session} = await embed.trigger(\n HostEvent.GetAnswerSession, {\n vizId: '123', // For Liveboard Visualization.\n })\n```" }, { "tag": "example", - "text": "\n```js\nconst {session} = await embed.trigger( HostEvent.GetAnswerSession )\n```\n" + "text": "\n```js\nconst {session} = await embed.trigger( HostEvent.GetAnswerSession )\n```" }, { "tag": "version", @@ -6382,14 +6382,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3095, + "line": 3091, "character": 4 } ], "defaultValue": "\"getAnswerSession\"" }, { - "id": 1189, + "id": 1459, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -6410,14 +6410,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2952, + "line": 2951, "character": 4 } ], "defaultValue": "\"getFilters\"" }, { - "id": 1150, + "id": 1420, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -6438,14 +6438,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2376, + "line": 2385, "character": 4 } ], "defaultValue": "\"GetIframeUrl\"" }, { - "id": 1200, + "id": 1470, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -6462,14 +6462,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3151, + "line": 3147, "character": 4 } ], "defaultValue": "\"GetParameters\"" }, { - "id": 1175, + "id": 1445, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -6494,14 +6494,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2737, + "line": 2736, "character": 4 } ], "defaultValue": "\"getTML\"" }, { - "id": 1191, + "id": 1461, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -6522,14 +6522,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3035, + "line": 3034, "character": 4 } ], "defaultValue": "\"getTabs\"" }, { - "id": 1160, + "id": 1430, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -6550,14 +6550,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2521, + "line": 2530, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1167, + "id": 1437, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -6567,19 +6567,19 @@ "tags": [ { "tag": "example", - "text": "\n```js\nliveboardEmbed.trigger(HostEvent.MakeACopy)\n```\n" + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.MakeACopy)\n```" }, { "tag": "example", - "text": "\n```js\nliveboardEmbed.trigger(HostEvent.MakeACopy, {\nvizId: '730496d6-6903-4601-937e-2c691821af3c'})\n```\n" + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.MakeACopy, {\nvizId: '730496d6-6903-4601-937e-2c691821af3c'})\n```" }, { "tag": "example", - "text": "\n```js\nvizEmbed.trigger(HostEvent.MakeACopy)\n```\n" + "text": "\n```js\nvizEmbed.trigger(HostEvent.MakeACopy)\n```" }, { "tag": "example", - "text": "\n```js\nsearchEmbed.trigger(HostEvent.MakeACopy)\n```\n" + "text": "\n```js\nsearchEmbed.trigger(HostEvent.MakeACopy)\n```" }, { "tag": "version", @@ -6590,14 +6590,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2609, + "line": 2613, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1171, + "id": 1441, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -6612,11 +6612,11 @@ }, { "tag": "example", - "text": "\n```js\nliveboardEmbed.trigger(HostEvent.ManageMonitor, {\n vizId: '730496d6-6903-4601-937e-2c691821af3c'\n})\n```\n" + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.ManageMonitor, {\n vizId: '730496d6-6903-4601-937e-2c691821af3c'\n})\n```" }, { "tag": "example", - "text": "\n```js\nsearchEmbed.trigger(HostEvent.ManageMonitor)\n```\n" + "text": "\n```js\nsearchEmbed.trigger(HostEvent.ManageMonitor)\n```" }, { "tag": "example", @@ -6631,14 +6631,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2671, + "line": 2670, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 1187, + "id": 1457, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -6664,14 +6664,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2929, + "line": 2928, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 1154, + "id": 1424, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -6697,14 +6697,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2445, + "line": 2454, "character": 4 } ], "defaultValue": "\"Navigate\"" }, { - "id": 1155, + "id": 1425, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -6730,14 +6730,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2462, + "line": 2471, "character": 4 } ], "defaultValue": "\"openFilter\"" }, { - "id": 1159, + "id": 1429, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -6763,14 +6763,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2511, + "line": 2520, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1174, + "id": 1444, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -6796,14 +6796,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2723, + "line": 2722, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 1168, + "id": 1438, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -6824,14 +6824,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2618, + "line": 2622, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1157, + "id": 1427, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -6857,14 +6857,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2482, + "line": 2491, "character": 4 } ], "defaultValue": "\"removeColumn\"" }, { - "id": 1198, + "id": 1468, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6885,14 +6885,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3129, + "line": 3125, "character": 4 } ], "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 1188, + "id": 1458, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -6913,14 +6913,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2941, + "line": 2940, "character": 4 } ], "defaultValue": "\"resetSearch\"" }, { - "id": 1184, + "id": 1454, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -6941,14 +6941,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2882, + "line": 2881, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1161, + "id": 1431, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -6969,14 +6969,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2530, + "line": 2539, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1162, + "id": 1432, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -6997,14 +6997,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2539, + "line": 2548, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1146, + "id": 1416, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7036,14 +7036,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2307, + "line": 2316, "character": 4 } ], "defaultValue": "\"search\"" }, { - "id": 1152, + "id": 1422, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -7069,14 +7069,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2401, + "line": 2410, "character": 4 } ], "defaultValue": "\"SetActiveTab\"" }, { - "id": 1193, + "id": 1463, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -7102,14 +7102,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3061, + "line": 3060, "character": 4 } ], "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 1192, + "id": 1462, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -7135,14 +7135,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3048, + "line": 3047, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 1151, + "id": 1421, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -7168,14 +7168,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2389, + "line": 2398, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 1183, + "id": 1453, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -7196,14 +7196,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2869, + "line": 2868, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1176, + "id": 1446, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -7229,14 +7229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2754, + "line": 2753, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1178, + "id": 1448, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -7262,14 +7262,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2791, + "line": 2790, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1186, + "id": 1456, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -7295,14 +7295,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2913, + "line": 2912, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1185, + "id": 1455, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -7328,14 +7328,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2897, + "line": 2896, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1197, + "id": 1467, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -7356,14 +7356,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3120, + "line": 3116, "character": 4 } ], "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 1190, + "id": 1460, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -7378,7 +7378,7 @@ }, { "tag": "param", - "text": "`filters`: multiple filter objects with column name, filter operator,\nand values for each.\n\nEach filter object must include the following attributes:\n\n`column` - Name of the column to filter on.\n\n`oper` - Filter operator, for example, EQ, IN, CONTAINS.\n For information about the supported filter operators,\n see link:https://developers.thoughtspot.com/docs/runtime-filters#rtOperator[Developer Documentation].\n\n`values` - An array of one or several values. The value definition on the\n data type you choose to filter on. For a complete list of supported data types, see\n link:https://developers.thoughtspot.com/docs/runtime-filters#_supported_data_types[Supported data types]\n`type` - To update filters for date time, specify the date format type.\nFor more information and examples, see link:https://developers.thoughtspot.com/docs/embed-liveboard#_date_filters[Date filters].\n", + "text": "`filters`: multiple filter objects with column name, filter operator,\nand values for each.\n\nEach filter object must include the following attributes:\n\n`column` - Name of the column to filter on.\n\n`oper` - Filter operator, for example, EQ, IN, CONTAINS.\n For information about the supported filter operators,\n see link:https://developers.thoughtspot.com/docs/runtime-filters#rtOperator[Developer Documentation].\n\n`values` - An array of one or several values. The value definition on the\n data type you choose to filter on. For a complete list of supported data types, see\n link:https://developers.thoughtspot.com/docs/runtime-filters#_supported_data_types[Supported data types].\n\n`type` - To update filters for date time, specify the date format type.\nFor more information and examples, see link:https://developers.thoughtspot.com/docs/embed-liveboard#_date_filters[Date filters].\n", "param": "-" }, { @@ -7387,7 +7387,7 @@ }, { "tag": "example", - "text": "\n```js\n\nliveboardEmbed.trigger(HostEvent.UpdateFilters, {\n filter: {\n column: \"date\",\n oper: \"EQ\",\n values: [\"JULY\",\"2023\"],\n type: \"MONTH_YEAR\"\n }\n });\n```\n" + "text": "\n```js\n\nliveboardEmbed.trigger(HostEvent.UpdateFilters, {\n filter: {\n column: \"date\",\n oper: \"EQ\",\n values: [\"JULY\",\"2023\"],\n type: \"MONTH_YEAR\"\n }\n });\n```" }, { "tag": "example", @@ -7402,14 +7402,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3022, + "line": 3021, "character": 4 } ], "defaultValue": "\"updateFilters\"" }, { - "id": 1199, + "id": 1469, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -7426,14 +7426,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3141, + "line": 3137, "character": 4 } ], "defaultValue": "\"UpdateParameters\"" }, { - "id": 1153, + "id": 1423, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -7464,14 +7464,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2433, + "line": 2442, "character": 4 } ], "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 1194, + "id": 1464, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -7502,14 +7502,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3075, + "line": 3074, "character": 4 } ], "defaultValue": "\"updateSageQuery\"" }, { - "id": 1165, + "id": 1435, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -7530,14 +7530,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2568, + "line": 2577, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1158, + "id": 1428, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -7558,7 +7558,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2496, + "line": 2505, "character": 4 } ], @@ -7570,79 +7570,79 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1156, - 1196, - 1173, - 1170, - 1177, - 1179, - 1181, - 1166, - 1180, - 1182, - 1147, - 1172, - 1164, - 1169, - 1163, - 1195, - 1189, - 1150, - 1200, - 1175, - 1191, - 1160, - 1167, - 1171, - 1187, - 1154, - 1155, - 1159, - 1174, - 1168, - 1157, - 1198, - 1188, - 1184, - 1161, - 1162, - 1146, - 1152, - 1193, - 1192, - 1151, - 1183, - 1176, - 1178, - 1186, - 1185, - 1197, - 1190, - 1199, - 1153, - 1194, - 1165, - 1158 + 1426, + 1466, + 1443, + 1440, + 1447, + 1449, + 1451, + 1436, + 1450, + 1452, + 1417, + 1442, + 1434, + 1439, + 1433, + 1465, + 1459, + 1420, + 1470, + 1445, + 1461, + 1430, + 1437, + 1441, + 1457, + 1424, + 1425, + 1429, + 1444, + 1438, + 1427, + 1468, + 1458, + 1454, + 1431, + 1432, + 1416, + 1422, + 1463, + 1462, + 1421, + 1453, + 1446, + 1448, + 1456, + 1455, + 1467, + 1460, + 1469, + 1423, + 1464, + 1435, + 1428 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2287, + "line": 2296, "character": 12 } ] }, { - "id": 1772, + "id": 2045, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 1777, + "id": 2050, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -7663,14 +7663,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4455, + "line": 4443, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 1774, + "id": 2047, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -7691,14 +7691,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4418, + "line": 4406, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 1776, + "id": 2049, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -7719,14 +7719,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4442, + "line": 4430, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 1773, + "id": 2046, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -7747,14 +7747,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4406, + "line": 4394, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 1778, + "id": 2051, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -7775,14 +7775,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4467, + "line": 4455, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 1775, + "id": 2048, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -7803,7 +7803,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4430, + "line": 4418, "character": 4 } ], @@ -7815,25 +7815,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1777, - 1774, - 1776, - 1773, - 1778, - 1775 + 2050, + 2047, + 2049, + 2046, + 2051, + 2048 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4394, + "line": 4382, "character": 12 } ] }, { - "id": 1027, + "id": 1297, "name": "Page", "kind": 4, "kindString": "Enumeration", @@ -7843,7 +7843,7 @@ }, "children": [ { - "id": 1030, + "id": 1300, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -7861,7 +7861,7 @@ "defaultValue": "\"answers\"" }, { - "id": 1033, + "id": 1303, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -7879,7 +7879,7 @@ "defaultValue": "\"data\"" }, { - "id": 1028, + "id": 1298, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -7897,7 +7897,7 @@ "defaultValue": "\"home\"" }, { - "id": 1031, + "id": 1301, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -7915,7 +7915,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 1035, + "id": 1305, "name": "Monitor", "kind": 16, "kindString": "Enumeration member", @@ -7933,7 +7933,7 @@ "defaultValue": "\"monitor\"" }, { - "id": 1029, + "id": 1299, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7951,7 +7951,7 @@ "defaultValue": "\"search\"" }, { - "id": 1034, + "id": 1304, "name": "SpotIQ", "kind": 16, "kindString": "Enumeration member", @@ -7974,13 +7974,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1030, - 1033, - 1028, - 1031, - 1035, - 1029, - 1034 + 1300, + 1303, + 1298, + 1301, + 1305, + 1299, + 1304 ] } ], @@ -7993,14 +7993,14 @@ ] }, { - "id": 1615, + "id": 1888, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 1616, + "id": 1889, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -8008,14 +8008,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4332, + "line": 4320, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 1618, + "id": 1891, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8023,14 +8023,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4334, + "line": 4322, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 1617, + "id": 1890, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8038,14 +8038,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4333, + "line": 4321, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 1619, + "id": 1892, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8053,7 +8053,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4335, + "line": 4323, "character": 4 } ], @@ -8065,23 +8065,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1616, - 1618, - 1617, - 1619 + 1889, + 1891, + 1890, + 1892 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4331, + "line": 4319, "character": 12 } ] }, { - "id": 1052, + "id": 1322, "name": "RuntimeFilterOp", "kind": 4, "kindString": "Enumeration", @@ -8091,7 +8091,7 @@ }, "children": [ { - "id": 1060, + "id": 1330, "name": "BEGINS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -8102,14 +8102,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1151, + "line": 1163, "character": 4 } ], "defaultValue": "\"BEGINS_WITH\"" }, { - "id": 1065, + "id": 1335, "name": "BW", "kind": 16, "kindString": "Enumeration member", @@ -8120,14 +8120,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1171, + "line": 1183, "character": 4 } ], "defaultValue": "\"BW\"" }, { - "id": 1064, + "id": 1334, "name": "BW_INC", "kind": 16, "kindString": "Enumeration member", @@ -8138,14 +8138,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1167, + "line": 1179, "character": 4 } ], "defaultValue": "\"BW_INC\"" }, { - "id": 1062, + "id": 1332, "name": "BW_INC_MAX", "kind": 16, "kindString": "Enumeration member", @@ -8156,14 +8156,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1159, + "line": 1171, "character": 4 } ], "defaultValue": "\"BW_INC_MAX\"" }, { - "id": 1063, + "id": 1333, "name": "BW_INC_MIN", "kind": 16, "kindString": "Enumeration member", @@ -8174,14 +8174,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1163, + "line": 1175, "character": 4 } ], "defaultValue": "\"BW_INC_MIN\"" }, { - "id": 1059, + "id": 1329, "name": "CONTAINS", "kind": 16, "kindString": "Enumeration member", @@ -8192,14 +8192,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1147, + "line": 1159, "character": 4 } ], "defaultValue": "\"CONTAINS\"" }, { - "id": 1061, + "id": 1331, "name": "ENDS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -8210,14 +8210,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1155, + "line": 1167, "character": 4 } ], "defaultValue": "\"ENDS_WITH\"" }, { - "id": 1053, + "id": 1323, "name": "EQ", "kind": 16, "kindString": "Enumeration member", @@ -8228,14 +8228,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1123, + "line": 1135, "character": 4 } ], "defaultValue": "\"EQ\"" }, { - "id": 1058, + "id": 1328, "name": "GE", "kind": 16, "kindString": "Enumeration member", @@ -8246,14 +8246,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1143, + "line": 1155, "character": 4 } ], "defaultValue": "\"GE\"" }, { - "id": 1057, + "id": 1327, "name": "GT", "kind": 16, "kindString": "Enumeration member", @@ -8264,14 +8264,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1139, + "line": 1151, "character": 4 } ], "defaultValue": "\"GT\"" }, { - "id": 1066, + "id": 1336, "name": "IN", "kind": 16, "kindString": "Enumeration member", @@ -8282,14 +8282,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1175, + "line": 1187, "character": 4 } ], "defaultValue": "\"IN\"" }, { - "id": 1056, + "id": 1326, "name": "LE", "kind": 16, "kindString": "Enumeration member", @@ -8300,14 +8300,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1135, + "line": 1147, "character": 4 } ], "defaultValue": "\"LE\"" }, { - "id": 1055, + "id": 1325, "name": "LT", "kind": 16, "kindString": "Enumeration member", @@ -8318,14 +8318,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1131, + "line": 1143, "character": 4 } ], "defaultValue": "\"LT\"" }, { - "id": 1054, + "id": 1324, "name": "NE", "kind": 16, "kindString": "Enumeration member", @@ -8336,14 +8336,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1127, + "line": 1139, "character": 4 } ], "defaultValue": "\"NE\"" }, { - "id": 1067, + "id": 1337, "name": "NOT_IN", "kind": 16, "kindString": "Enumeration member", @@ -8354,7 +8354,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1179, + "line": 1191, "character": 4 } ], @@ -8366,34 +8366,34 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1060, - 1065, - 1064, - 1062, - 1063, - 1059, - 1061, - 1053, - 1058, - 1057, - 1066, - 1056, - 1055, - 1054, - 1067 + 1330, + 1335, + 1334, + 1332, + 1333, + 1329, + 1331, + 1323, + 1328, + 1327, + 1336, + 1326, + 1325, + 1324, + 1337 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1119, + "line": 1131, "character": 12 } ] }, { - "id": 953, + "id": 1214, "name": "AnswerService", "kind": 128, "kindString": "Class", @@ -8421,7 +8421,7 @@ }, "children": [ { - "id": 954, + "id": 1215, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -8432,13 +8432,13 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 64, + "line": 67, "character": 4 } ], "signatures": [ { - "id": 955, + "id": 1216, "name": "new AnswerService", "kind": 16384, "kindString": "Constructor signature", @@ -8448,7 +8448,7 @@ }, "parameters": [ { - "id": 956, + "id": 1217, "name": "session", "kind": 32768, "kindString": "Parameter", @@ -8456,12 +8456,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1017, + "id": 1287, "name": "SessionInterface" } }, { - "id": 957, + "id": 1218, "name": "answer", "kind": 32768, "kindString": "Parameter", @@ -8473,7 +8473,7 @@ } }, { - "id": 958, + "id": 1219, "name": "thoughtSpotHost", "kind": 32768, "kindString": "Parameter", @@ -8485,7 +8485,7 @@ } }, { - "id": 959, + "id": 1220, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -8499,7 +8499,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1795, + "id": 2068, "name": "VizPoint" } } @@ -8507,14 +8507,14 @@ ], "type": { "type": "reference", - "id": 953, + "id": 1214, "name": "AnswerService" } } ] }, { - "id": 966, + "id": 1229, "name": "addColumns", "kind": 2048, "kindString": "Method", @@ -8524,13 +8524,13 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 112, + "line": 108, "character": 17 } ], "signatures": [ { - "id": 967, + "id": 1230, "name": "addColumns", "kind": 4096, "kindString": "Call signature", @@ -8541,7 +8541,7 @@ }, "parameters": [ { - "id": 968, + "id": 1231, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -8570,7 +8570,7 @@ ] }, { - "id": 969, + "id": 1232, "name": "addColumnsByName", "kind": 2048, "kindString": "Method", @@ -8580,13 +8580,13 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 136, + "line": 132, "character": 17 } ], "signatures": [ { - "id": 970, + "id": 1233, "name": "addColumnsByName", "kind": 4096, "kindString": "Call signature", @@ -8602,7 +8602,7 @@ }, "parameters": [ { - "id": 971, + "id": 1234, "name": "columnNames", "kind": 32768, "kindString": "Parameter", @@ -8631,7 +8631,55 @@ ] }, { - "id": 972, + "id": 1281, + "name": "addDisplayedVizToLiveboard", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 385, + "character": 17 + } + ], + "signatures": [ + { + "id": 1282, + "name": "addDisplayedVizToLiveboard", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1283, + "name": "liveboardId", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + } + } + ] + }, + { + "id": 1235, "name": "addFilter", "kind": 2048, "kindString": "Method", @@ -8641,13 +8689,13 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 149, + "line": 145, "character": 17 } ], "signatures": [ { - "id": 973, + "id": 1236, "name": "addFilter", "kind": 4096, "kindString": "Call signature", @@ -8658,7 +8706,7 @@ }, "parameters": [ { - "id": 974, + "id": 1237, "name": "columnName", "kind": 32768, "kindString": "Parameter", @@ -8670,7 +8718,7 @@ } }, { - "id": 975, + "id": 1238, "name": "operator", "kind": 32768, "kindString": "Parameter", @@ -8678,12 +8726,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1052, + "id": 1322, "name": "RuntimeFilterOp" } }, { - "id": 976, + "id": 1239, "name": "values", "kind": 32768, "kindString": "Parameter", @@ -8729,7 +8777,7 @@ ] }, { - "id": 1009, + "id": 1271, "name": "executeQuery", "kind": 2048, "kindString": "Method", @@ -8745,7 +8793,7 @@ ], "signatures": [ { - "id": 1010, + "id": 1272, "name": "executeQuery", "kind": 4096, "kindString": "Call signature", @@ -8756,7 +8804,7 @@ }, "parameters": [ { - "id": 1011, + "id": 1273, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -8770,7 +8818,7 @@ } }, { - "id": 1012, + "id": 1274, "name": "variables", "kind": 32768, "kindString": "Parameter", @@ -8798,7 +8846,7 @@ ] }, { - "id": 986, + "id": 1249, "name": "fetchCSVBlob", "kind": 2048, "kindString": "Method", @@ -8808,13 +8856,13 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 218, + "line": 214, "character": 17 } ], "signatures": [ { - "id": 987, + "id": 1250, "name": "fetchCSVBlob", "kind": 4096, "kindString": "Call signature", @@ -8825,7 +8873,7 @@ }, "parameters": [ { - "id": 988, + "id": 1251, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -8838,7 +8886,7 @@ "defaultValue": "'en-us'" }, { - "id": 989, + "id": 1252, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -8867,7 +8915,7 @@ ] }, { - "id": 979, + "id": 1242, "name": "fetchData", "kind": 2048, "kindString": "Method", @@ -8877,13 +8925,13 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 190, + "line": 186, "character": 17 } ], "signatures": [ { - "id": 980, + "id": 1243, "name": "fetchData", "kind": 4096, "kindString": "Call signature", @@ -8894,7 +8942,7 @@ }, "parameters": [ { - "id": 981, + "id": 1244, "name": "offset", "kind": 32768, "kindString": "Parameter", @@ -8907,7 +8955,7 @@ "defaultValue": "0" }, { - "id": 982, + "id": 1245, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -8926,14 +8974,14 @@ { "type": "reflection", "declaration": { - "id": 983, + "id": 1246, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 984, + "id": 1247, "name": "columns", "kind": 1024, "kindString": "Property", @@ -8944,7 +8992,7 @@ } }, { - "id": 985, + "id": 1248, "name": "data", "kind": 1024, "kindString": "Property", @@ -8960,8 +9008,8 @@ "title": "Properties", "kind": 1024, "children": [ - 984, - 985 + 1247, + 1248 ] } ] @@ -8974,7 +9022,7 @@ ] }, { - "id": 990, + "id": 1253, "name": "fetchPNGBlob", "kind": 2048, "kindString": "Method", @@ -8984,13 +9032,13 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 233, + "line": 230, "character": 17 } ], "signatures": [ { - "id": 991, + "id": 1254, "name": "fetchPNGBlob", "kind": 4096, "kindString": "Call signature", @@ -9001,7 +9049,7 @@ }, "parameters": [ { - "id": 992, + "id": 1255, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -9014,19 +9062,7 @@ "defaultValue": "'en-us'" }, { - "id": 993, - "name": "includeInfo", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 994, + "id": 1256, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -9041,7 +9077,7 @@ "defaultValue": "false" }, { - "id": 995, + "id": 1257, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -9070,7 +9106,7 @@ ] }, { - "id": 1015, + "id": 1277, "name": "getAnswer", "kind": 2048, "kindString": "Method", @@ -9081,12 +9117,12 @@ { "fileName": "utils/graphql/answerService/answerService.ts", "line": 358, - "character": 11 + "character": 17 } ], "signatures": [ { - "id": 1016, + "id": 1278, "name": "getAnswer", "kind": 4096, "kindString": "Call signature", @@ -9105,7 +9141,7 @@ ] }, { - "id": 996, + "id": 1258, "name": "getFetchCSVBlobUrl", "kind": 2048, "kindString": "Method", @@ -9115,13 +9151,13 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 251, + "line": 248, "character": 11 } ], "signatures": [ { - "id": 997, + "id": 1259, "name": "getFetchCSVBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -9132,7 +9168,7 @@ }, "parameters": [ { - "id": 998, + "id": 1260, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -9145,7 +9181,7 @@ "defaultValue": "'en-us'" }, { - "id": 999, + "id": 1261, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -9166,7 +9202,7 @@ ] }, { - "id": 1000, + "id": 1262, "name": "getFetchPNGBlobUrl", "kind": 2048, "kindString": "Method", @@ -9182,7 +9218,7 @@ ], "signatures": [ { - "id": 1001, + "id": 1263, "name": "getFetchPNGBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -9192,11 +9228,12 @@ }, "parameters": [ { - "id": 1002, + "id": 1264, "name": "userLocale", "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "intrinsic", "name": "string" @@ -9204,11 +9241,12 @@ "defaultValue": "'en-us'" }, { - "id": 1003, + "id": 1265, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "intrinsic", "name": "boolean" @@ -9216,11 +9254,14 @@ "defaultValue": "false" }, { - "id": 1004, + "id": 1266, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "\n" + }, "type": { "type": "intrinsic", "name": "number" @@ -9236,7 +9277,7 @@ ] }, { - "id": 977, + "id": 1240, "name": "getSQLQuery", "kind": 2048, "kindString": "Method", @@ -9246,13 +9287,13 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 176, + "line": 172, "character": 17 } ], "signatures": [ { - "id": 978, + "id": 1241, "name": "getSQLQuery", "kind": 4096, "kindString": "Call signature", @@ -9271,7 +9312,7 @@ ] }, { - "id": 1013, + "id": 1275, "name": "getSession", "kind": 2048, "kindString": "Method", @@ -9287,7 +9328,7 @@ ], "signatures": [ { - "id": 1014, + "id": 1276, "name": "getSession", "kind": 4096, "kindString": "Call signature", @@ -9298,14 +9339,14 @@ }, "type": { "type": "reference", - "id": 1017, + "id": 1287, "name": "SessionInterface" } } ] }, { - "id": 961, + "id": 1224, "name": "getSourceDetail", "kind": 2048, "kindString": "Method", @@ -9315,13 +9356,13 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 85, + "line": 81, "character": 17 } ], "signatures": [ { - "id": 962, + "id": 1225, "name": "getSourceDetail", "kind": 4096, "kindString": "Call signature", @@ -9343,7 +9384,42 @@ ] }, { - "id": 1005, + "id": 1279, + "name": "getTML", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 369, + "character": 17 + } + ], + "signatures": [ + { + "id": 1280, + "name": "getTML", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + } + } + ] + }, + { + "id": 1267, "name": "getUnderlyingDataForPoint", "kind": 2048, "kindString": "Method", @@ -9359,7 +9435,7 @@ ], "signatures": [ { - "id": 1006, + "id": 1268, "name": "getUnderlyingDataForPoint", "kind": 4096, "kindString": "Call signature", @@ -9379,7 +9455,7 @@ }, "parameters": [ { - "id": 1007, + "id": 1269, "name": "outputColumnNames", "kind": 32768, "kindString": "Parameter", @@ -9394,7 +9470,7 @@ } }, { - "id": 1008, + "id": 1270, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -9406,7 +9482,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1024, + "id": 1294, "name": "UnderlyingDataPoint" } } @@ -9417,7 +9493,7 @@ "typeArguments": [ { "type": "reference", - "id": 953, + "id": 1214, "name": "AnswerService" } ], @@ -9427,7 +9503,7 @@ ] }, { - "id": 963, + "id": 1226, "name": "removeColumns", "kind": 2048, "kindString": "Method", @@ -9437,13 +9513,13 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 98, + "line": 94, "character": 17 } ], "signatures": [ { - "id": 964, + "id": 1227, "name": "removeColumns", "kind": 4096, "kindString": "Call signature", @@ -9454,7 +9530,7 @@ }, "parameters": [ { - "id": 965, + "id": 1228, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -9481,6 +9557,48 @@ } } ] + }, + { + "id": 1284, + "name": "setTMLOverride", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 397, + "character": 11 + } + ], + "signatures": [ + { + "id": 1285, + "name": "setTMLOverride", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1286, + "name": "override", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] } ], "groups": [ @@ -9488,41 +9606,44 @@ "title": "Constructors", "kind": 512, "children": [ - 954 + 1215 ] }, { "title": "Methods", "kind": 2048, "children": [ - 966, - 969, - 972, - 1009, - 986, - 979, - 990, - 1015, - 996, - 1000, - 977, - 1013, - 961, - 1005, - 963 + 1229, + 1232, + 1281, + 1235, + 1271, + 1249, + 1242, + 1253, + 1277, + 1258, + 1262, + 1240, + 1275, + 1224, + 1279, + 1267, + 1226, + 1284 ] } ], "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 54, + "line": 55, "character": 13 } ] }, { - "id": 730, + "id": 765, "name": "AppEmbed", "kind": 128, "kindString": "Class", @@ -9538,7 +9659,7 @@ }, "children": [ { - "id": 731, + "id": 766, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -9546,46 +9667,46 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 459, + "line": 446, "character": 4 } ], "signatures": [ { - "id": 732, + "id": 767, "name": "new AppEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 733, + "id": 768, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1641, + "id": 1914, "name": "DOMSelector" } }, { - "id": 734, + "id": 769, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1552, + "id": 1825, "name": "AppViewConfig" } } ], "type": { "type": "reference", - "id": 730, + "id": 765, "name": "AppEmbed" }, "overwrites": { @@ -9600,7 +9721,7 @@ } }, { - "id": 865, + "id": 904, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -9610,13 +9731,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1045, + "line": 1053, "character": 11 } ], "signatures": [ { - "id": 866, + "id": 905, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -9646,7 +9767,7 @@ } }, { - "id": 884, + "id": 923, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -9656,13 +9777,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1216, + "line": 1224, "character": 17 } ], "signatures": [ { - "id": 885, + "id": 924, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -9678,7 +9799,7 @@ }, "parameters": [ { - "id": 886, + "id": 925, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -9699,7 +9820,7 @@ "typeArguments": [ { "type": "reference", - "id": 953, + "id": 1214, "name": "AnswerService" } ], @@ -9717,7 +9838,7 @@ } }, { - "id": 739, + "id": 774, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -9727,13 +9848,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 586, + "line": 573, "character": 11 } ], "signatures": [ { - "id": 740, + "id": 775, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -9749,7 +9870,7 @@ ] }, { - "id": 856, + "id": 891, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -9759,13 +9880,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 989, + "line": 994, "character": 11 } ], "signatures": [ { - "id": 857, + "id": 892, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -9786,7 +9907,7 @@ } }, { - "id": 879, + "id": 918, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -9796,13 +9917,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1203, + "line": 1211, "character": 11 } ], "signatures": [ { - "id": 880, + "id": 919, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -9824,14 +9945,14 @@ "type": { "type": "reflection", "declaration": { - "id": 881, + "id": 920, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 883, + "id": 922, "name": "child", "kind": 1024, "kindString": "Property", @@ -9843,7 +9964,7 @@ "defaultValue": "..." }, { - "id": 882, + "id": 921, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -9860,8 +9981,8 @@ "title": "Properties", "kind": 1024, "children": [ - 883, - 882 + 922, + 921 ] } ] @@ -9879,7 +10000,7 @@ } }, { - "id": 863, + "id": 898, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -9889,13 +10010,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1018, + "line": 1023, "character": 11 } ], "signatures": [ { - "id": 864, + "id": 899, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -9909,6 +10030,58 @@ } ] }, + "parameters": [ + { + "id": 900, + "name": "additionalParams", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 901, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 902, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 903, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + } + }, + "defaultValue": "{}" + } + ], "type": { "type": "intrinsic", "name": "string" @@ -9925,7 +10098,7 @@ } }, { - "id": 867, + "id": 906, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -9935,13 +10108,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1054, + "line": 1062, "character": 11 } ], "signatures": [ { - "id": 868, + "id": 907, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -9962,7 +10135,7 @@ } }, { - "id": 877, + "id": 916, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -9972,13 +10145,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1175, + "line": 1183, "character": 11 } ], "signatures": [ { - "id": 878, + "id": 917, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -10002,7 +10175,7 @@ } }, { - "id": 758, + "id": 793, "name": "navigateToPage", "kind": 2048, "kindString": "Method", @@ -10012,13 +10185,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 674, + "line": 661, "character": 11 } ], "signatures": [ { - "id": 759, + "id": 794, "name": "navigateToPage", "kind": 4096, "kindString": "Call signature", @@ -10034,7 +10207,7 @@ }, "parameters": [ { - "id": 760, + "id": 795, "name": "path", "kind": 32768, "kindString": "Parameter", @@ -10057,7 +10230,7 @@ } }, { - "id": 761, + "id": 796, "name": "noReload", "kind": 32768, "kindString": "Parameter", @@ -10080,7 +10253,7 @@ ] }, { - "id": 848, + "id": 883, "name": "off", "kind": 2048, "kindString": "Method", @@ -10090,13 +10263,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 924, + "line": 929, "character": 11 } ], "signatures": [ { - "id": 849, + "id": 884, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -10112,7 +10285,7 @@ }, "parameters": [ { - "id": 850, + "id": 885, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -10122,12 +10295,12 @@ }, "type": { "type": "reference", - "id": 1068, + "id": 1338, "name": "EmbedEvent" } }, { - "id": 851, + "id": 886, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -10137,7 +10310,7 @@ }, "type": { "type": "reference", - "id": 1645, + "id": 1918, "name": "MessageCallback" } } @@ -10158,7 +10331,7 @@ } }, { - "id": 769, + "id": 804, "name": "on", "kind": 2048, "kindString": "Method", @@ -10168,13 +10341,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1283, + "line": 1291, "character": 11 } ], "signatures": [ { - "id": 770, + "id": 805, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -10197,38 +10370,38 @@ }, "parameters": [ { - "id": 771, + "id": 806, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1068, + "id": 1338, "name": "EmbedEvent" } }, { - "id": 772, + "id": 807, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1645, + "id": 1918, "name": "MessageCallback" } }, { - "id": 773, + "id": 808, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1642, + "id": 1915, "name": "MessageOptions" }, "defaultValue": "..." @@ -10250,7 +10423,7 @@ } }, { - "id": 860, + "id": 895, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -10260,13 +10433,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1001, + "line": 1006, "character": 11 } ], "signatures": [ { - "id": 861, + "id": 896, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -10276,7 +10449,7 @@ }, "parameters": [ { - "id": 862, + "id": 897, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -10307,7 +10480,7 @@ } }, { - "id": 869, + "id": 908, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -10317,13 +10490,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1065, + "line": 1073, "character": 17 } ], "signatures": [ { - "id": 870, + "id": 909, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -10360,7 +10533,7 @@ } }, { - "id": 762, + "id": 797, "name": "render", "kind": 2048, "kindString": "Method", @@ -10370,13 +10543,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 701, + "line": 688, "character": 17 } ], "signatures": [ { - "id": 763, + "id": 798, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -10389,7 +10562,7 @@ "typeArguments": [ { "type": "reference", - "id": 730, + "id": 765, "name": "AppEmbed" } ], @@ -10407,7 +10580,7 @@ } }, { - "id": 873, + "id": 912, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -10417,13 +10590,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1108, + "line": 1116, "character": 11 } ], "signatures": [ { - "id": 874, + "id": 913, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -10447,7 +10620,7 @@ } }, { - "id": 875, + "id": 914, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -10457,13 +10630,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1156, + "line": 1164, "character": 11 } ], "signatures": [ { - "id": 876, + "id": 915, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -10493,7 +10666,7 @@ } }, { - "id": 852, + "id": 887, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -10503,13 +10676,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 962, + "line": 967, "character": 11 } ], "signatures": [ { - "id": 853, + "id": 888, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -10519,7 +10692,7 @@ }, "parameters": [ { - "id": 854, + "id": 889, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -10529,12 +10702,12 @@ }, "type": { "type": "reference", - "id": 1145, + "id": 1415, "name": "HostEvent" } }, { - "id": 855, + "id": 890, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -10576,37 +10749,37 @@ "title": "Constructors", "kind": 512, "children": [ - 731 + 766 ] }, { "title": "Methods", "kind": 2048, "children": [ - 865, - 884, - 739, - 856, - 879, - 863, - 867, - 877, - 758, - 848, - 769, - 860, - 869, - 762, - 873, - 875, - 852 + 904, + 923, + 774, + 891, + 918, + 898, + 906, + 916, + 793, + 883, + 804, + 895, + 908, + 797, + 912, + 914, + 887 ] } ], "sources": [ { "fileName": "embed/app.ts", - "line": 453, + "line": 440, "character": 13 } ], @@ -10618,136 +10791,70 @@ ] }, { - "id": 432, - "name": "LiveboardEmbed", + "id": 926, + "name": "BodylessConversation", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed a ThoughtSpot Liveboard or visualization. When rendered it already\nwaits for the authentication to complete, so you need not wait for\n`AuthStatus.SUCCESS`.", + "shortText": "Create a conversation embed, which can be integrated inside\nchatbots or other conversational interfaces.", "tags": [ { - "tag": "example", - "text": "\n```js\nimport { .. } from '@thoughtspot/visual-embed-sdk';\ninit({ ... });\nconst embed = new LiveboardEmbed(\"#container\", {\n liveboardId: ,\n// .. other params here.\n})\n```" + "tag": "group", + "text": "Embed components" }, { - "tag": "group", - "text": "Embed components\n" + "tag": "version", + "text": "SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl\n" } ] }, "children": [ { - "id": 433, + "id": 927, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 352, + "fileName": "embed/bodyless-conversation.ts", + "line": 69, "character": 4 } ], "signatures": [ { - "id": 434, - "name": "new LiveboardEmbed", + "id": 928, + "name": "new BodylessConversation", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 435, - "name": "domSelector", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 1641, - "name": "DOMSelector" - } - }, - { - "id": 436, + "id": 929, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1453, - "name": "LiveboardViewConfig" + "id": 940, + "name": "BodylessConversationViewConfig" } } ], "type": { "type": "reference", - "id": 432, - "name": "LiveboardEmbed" - }, - "overwrites": { - "type": "reference", - "name": "V1Embed.constructor" - } - } - ], - "overwrites": { - "type": "reference", - "name": "V1Embed.constructor" - } - }, - { - "id": 575, - "name": "destroy", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "embed/ts-embed.ts", - "line": 1045, - "character": 11 - } - ], - "signatures": [ - { - "id": 576, - "name": "destroy", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Destroys the ThoughtSpot embed, and remove any nodes from the DOM.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.19.1 | ThoughtSpot: *\n" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "V1Embed.destroy" + "id": 926, + "name": "BodylessConversation" } } - ], - "inheritedFrom": { - "type": "reference", - "name": "V1Embed.destroy" - } + ] }, { - "id": 592, - "name": "getAnswerService", + "id": 931, + "name": "sendMessage", "kind": 2048, "kindString": "Method", "flags": { @@ -10755,39 +10862,25 @@ }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 1216, + "fileName": "embed/bodyless-conversation.ts", + "line": 78, "character": 17 } ], "signatures": [ { - "id": 593, - "name": "getAnswerService", + "id": 932, + "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Returns the answerService which can be used to make arbitrary graphql calls on top\nsession.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.25.0 / ThoughtSpot 9.10.0\n" - } - ] - }, "parameters": [ { - "id": 594, - "name": "vizId", + "id": 933, + "name": "userMessage", "kind": 32768, "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "comment": { - "text": "to get for a specific viz in case of a liveboard." - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" @@ -10798,64 +10891,217 @@ "type": "reference", "typeArguments": [ { - "type": "reference", - "id": 953, - "name": "AnswerService" - } - ], - "name": "Promise" - }, - "inheritedFrom": { - "type": "reference", - "name": "V1Embed.getAnswerService" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "V1Embed.getAnswerService" - } - }, - { - "id": 568, - "name": "getIframeSrc", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "embed/ts-embed.ts", - "line": 989, - "character": 11 - } + "type": "union", + "types": [ + { + "type": "reflection", + "declaration": { + "id": 934, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 936, + "name": "container", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "undefined" + } + }, + { + "id": 935, + "name": "error", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 936, + 935 + ] + } + ] + } + }, + { + "type": "reflection", + "declaration": { + "id": 937, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 938, + "name": "container", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "reference", + "name": "HTMLDivElement" + } + }, + { + "id": 939, + "name": "error", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "undefined" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 938, + 939 + ] + } + ] + } + } + ] + } + ], + "name": "Promise" + } + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 927 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 931 + ] + } + ], + "sources": [ + { + "fileName": "embed/bodyless-conversation.ts", + "line": 66, + "character": 13 + } + ] + }, + { + "id": 979, + "name": "ConversationEmbed", + "kind": 128, + "kindString": "Class", + "flags": {}, + "comment": { + "shortText": "Embed ThoughtSpot AI Conversation.", + "tags": [ + { + "tag": "group", + "text": "Embed components" + }, + { + "tag": "example", + "text": "\n```js\nconst conversation = new ConversationEmbed('#tsEmbed', {\n worksheetId: 'worksheetId',\n searchOptions: {\n searchQuery: 'searchQuery',\n },\n});\nconversation.render();\n```" + }, + { + "tag": "version", + "text": "SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl\n" + } + ] + }, + "children": [ + { + "id": 980, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 42, + "character": 4 + } ], "signatures": [ { - "id": 569, - "name": "getIframeSrc", - "kind": 4096, - "kindString": "Call signature", + "id": 981, + "name": "new ConversationEmbed", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, + "parameters": [ + { + "id": 982, + "name": "container", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "HTMLElement" + } + }, + { + "id": 983, + "name": "viewConfig", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1108, + "name": "ConversationViewConfig" + } + } + ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 979, + "name": "ConversationEmbed" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "V1Embed.getIframeSrc" + "name": "TsEmbed.constructor" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "V1Embed.getIframeSrc" + "name": "TsEmbed.constructor" } }, { - "id": 587, - "name": "getPreRenderIds", + "id": 1086, + "name": "destroy", "kind": 2048, "kindString": "Method", "flags": { @@ -10864,91 +11110,44 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1203, + "line": 1053, "character": 11 } ], "signatures": [ { - "id": 588, - "name": "getPreRenderIds", + "id": 1087, + "name": "destroy", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Retrieves unique HTML element IDs for PreRender-related elements.\nThese IDs are constructed based on the provided 'preRenderId' from 'viewConfig'.", - "returns": "An object containing the IDs for the PreRender elements.", + "shortText": "Destroys the ThoughtSpot embed, and remove any nodes from the DOM.", "tags": [ { - "tag": "property", - "text": "{string} wrapper - The HTML element ID for the PreRender wrapper." - }, - { - "tag": "property", - "text": "{string} child - The HTML element ID for the PreRender child.\n" + "tag": "version", + "text": "SDK: 1.19.1 | ThoughtSpot: *\n" } ] }, "type": { - "type": "reflection", - "declaration": { - "id": 589, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 591, - "name": "child", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - }, - "defaultValue": "..." - }, - { - "id": 590, - "name": "wrapper", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - }, - "defaultValue": "..." - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 591, - 590 - ] - } - ] - } + "type": "intrinsic", + "name": "void" }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getPreRenderIds" + "name": "TsEmbed.destroy" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getPreRenderIds" + "name": "TsEmbed.destroy" } }, { - "id": 573, - "name": "getThoughtSpotPostUrlParams", + "id": 1105, + "name": "getAnswerService", "kind": 2048, "kindString": "Method", "flags": { @@ -10957,44 +11156,69 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1018, - "character": 11 + "line": 1224, + "character": 17 } ], "signatures": [ { - "id": 574, - "name": "getThoughtSpotPostUrlParams", + "id": 1106, + "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Get the Post Url Params for THOUGHTSPOT from the current\nhost app URL.\nTHOUGHTSPOT URL params starts with a prefix \"ts-\"", + "shortText": "Returns the answerService which can be used to make arbitrary graphql calls on top\nsession.", "tags": [ { "tag": "version", - "text": "SDK: 1.14.0 | ThoughtSpot: 8.4.0.cl, 8.4.1-sw\n" + "text": "SDK: 1.25.0 / ThoughtSpot 9.10.0\n" } ] }, + "parameters": [ + { + "id": 1107, + "name": "vizId", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "comment": { + "text": "to get for a specific viz in case of a liveboard." + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "id": 1214, + "name": "AnswerService" + } + ], + "name": "Promise" }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getThoughtSpotPostUrlParams" + "name": "TsEmbed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getThoughtSpotPostUrlParams" + "name": "TsEmbed.getAnswerService" } }, { - "id": 577, - "name": "getUnderlyingFrameElement", + "id": 985, + "name": "getIframeSrc", "kind": 2048, "kindString": "Method", "flags": { @@ -11002,36 +11226,36 @@ }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 1054, + "fileName": "embed/conversation.ts", + "line": 46, "character": 11 } ], "signatures": [ { - "id": 578, - "name": "getUnderlyingFrameElement", + "id": 986, + "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", "flags": {}, "type": { - "type": "reference", - "name": "HTMLIFrameElement" + "type": "intrinsic", + "name": "string" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "V1Embed.getUnderlyingFrameElement" + "name": "TsEmbed.getIframeSrc" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "V1Embed.getUnderlyingFrameElement" + "name": "TsEmbed.getIframeSrc" } }, { - "id": 585, - "name": "hidePreRender", + "id": 1100, + "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", "flags": { @@ -11040,38 +11264,91 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1175, + "line": 1211, "character": 11 } ], "signatures": [ { - "id": 586, - "name": "hidePreRender", + "id": 1101, + "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Hides the PreRender component if it is available.\nIf the component is not preRendered, it issues a warning." + "shortText": "Retrieves unique HTML element IDs for PreRender-related elements.\nThese IDs are constructed based on the provided 'preRenderId' from 'viewConfig'.", + "returns": "An object containing the IDs for the PreRender elements.", + "tags": [ + { + "tag": "property", + "text": "{string} wrapper - The HTML element ID for the PreRender wrapper." + }, + { + "tag": "property", + "text": "{string} child - The HTML element ID for the PreRender child.\n" + } + ] }, "type": { - "type": "intrinsic", - "name": "void" + "type": "reflection", + "declaration": { + "id": 1102, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1104, + "name": "child", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "defaultValue": "..." + }, + { + "id": 1103, + "name": "wrapper", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1104, + 1103 + ] + } + ] + } }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.hidePreRender" + "name": "TsEmbed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.hidePreRender" + "name": "TsEmbed.getPreRenderIds" } }, { - "id": 475, - "name": "navigateToLiveboard", + "id": 1080, + "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", "flags": { @@ -11079,66 +11356,173 @@ }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 597, + "fileName": "embed/ts-embed.ts", + "line": 1023, "character": 11 } ], "signatures": [ { - "id": 476, - "name": "navigateToLiveboard", + "id": 1081, + "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Get the Post Url Params for THOUGHTSPOT from the current\nhost app URL.\nTHOUGHTSPOT URL params starts with a prefix \"ts-\"", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.14.0 | ThoughtSpot: 8.4.0.cl, 8.4.1-sw\n" + } + ] + }, "parameters": [ { - "id": 477, - "name": "liveboardId", + "id": 1082, + "name": "additionalParams", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 478, - "name": "vizId", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 479, - "name": "activeTabId", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true + "type": "reflection", + "declaration": { + "id": 1083, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 1084, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 1085, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + } }, - "type": { - "type": "intrinsic", - "name": "string" - } + "defaultValue": "{}" } ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.getThoughtSpotPostUrlParams" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.getThoughtSpotPostUrlParams" + } + }, + { + "id": 1088, + "name": "getUnderlyingFrameElement", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/ts-embed.ts", + "line": 1062, + "character": 11 + } + ], + "signatures": [ + { + "id": 1089, + "name": "getUnderlyingFrameElement", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "reference", + "name": "HTMLIFrameElement" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.getUnderlyingFrameElement" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.getUnderlyingFrameElement" + } + }, + { + "id": 1098, + "name": "hidePreRender", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/ts-embed.ts", + "line": 1183, + "character": 11 + } + ], + "signatures": [ + { + "id": 1099, + "name": "hidePreRender", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Hides the PreRender component if it is available.\nIf the component is not preRendered, it issues a warning." + }, "type": { "type": "intrinsic", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.hidePreRender" } } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.hidePreRender" + } }, { - "id": 564, + "id": 1067, "name": "off", "kind": 2048, "kindString": "Method", @@ -11148,13 +11532,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 924, + "line": 929, "character": 11 } ], "signatures": [ { - "id": 565, + "id": 1068, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -11170,7 +11554,7 @@ }, "parameters": [ { - "id": 566, + "id": 1069, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -11180,12 +11564,12 @@ }, "type": { "type": "reference", - "id": 1068, + "id": 1338, "name": "EmbedEvent" } }, { - "id": 567, + "id": 1070, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -11195,7 +11579,7 @@ }, "type": { "type": "reference", - "id": 1645, + "id": 1918, "name": "MessageCallback" } } @@ -11206,17 +11590,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.off" + "name": "TsEmbed.off" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.off" + "name": "TsEmbed.off" } }, { - "id": 485, + "id": 1061, "name": "on", "kind": 2048, "kindString": "Method", @@ -11226,23 +11610,20 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1283, + "line": 900, "character": 11 } ], "signatures": [ { - "id": 486, + "id": 1062, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { + "shortText": "Registers an event listener to trigger an alert when the ThoughtSpot app\nsends an event of a particular message type to the host application.", "tags": [ - { - "tag": "inheritdoc", - "text": "" - }, { "tag": "example", "text": "\n```js\ntsEmbed.on(EmbedEvent.Error, (data) => {\n console.error(data);\n});\n```" @@ -11255,41 +11636,63 @@ }, "parameters": [ { - "id": 487, + "id": 1063, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "The message type" + }, "type": { "type": "reference", - "id": 1068, + "id": 1338, "name": "EmbedEvent" } }, { - "id": 488, + "id": 1064, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "A callback as a function" + }, "type": { "type": "reference", - "id": 1645, + "id": 1918, "name": "MessageCallback" } }, { - "id": 489, + "id": 1065, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "The message options" + }, "type": { "type": "reference", - "id": 1642, + "id": 1915, "name": "MessageOptions" }, "defaultValue": "..." + }, + { + "id": 1066, + "name": "isRegisteredBySDK", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "defaultValue": "false" } ], "type": { @@ -11298,17 +11701,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.on" + "name": "TsEmbed.on" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.on" + "name": "TsEmbed.on" } }, { - "id": 570, + "id": 1077, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -11318,13 +11721,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1001, + "line": 1006, "character": 11 } ], "signatures": [ { - "id": 571, + "id": 1078, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -11334,7 +11737,7 @@ }, "parameters": [ { - "id": 572, + "id": 1079, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -11355,17 +11758,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.preRender" + "name": "TsEmbed.preRender" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.preRender" + "name": "TsEmbed.preRender" } }, { - "id": 579, + "id": 1090, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -11375,13 +11778,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1065, + "line": 1073, "character": 17 } ], "signatures": [ { - "id": 580, + "id": 1091, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -11408,17 +11811,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.prerenderGeneric" + "name": "TsEmbed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.prerenderGeneric" + "name": "TsEmbed.prerenderGeneric" } }, { - "id": 473, + "id": 987, "name": "render", "kind": 2048, "kindString": "Method", @@ -11427,45 +11830,42 @@ }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 587, + "fileName": "embed/conversation.ts", + "line": 68, "character": 17 } ], "signatures": [ { - "id": 474, + "id": 988, "name": "render", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Render an embedded ThoughtSpot Liveboard or visualization" - }, "type": { "type": "reference", "typeArguments": [ { "type": "reference", - "id": 432, - "name": "LiveboardEmbed" + "id": 979, + "name": "ConversationEmbed" } ], "name": "Promise" }, "overwrites": { "type": "reference", - "name": "V1Embed.render" + "name": "TsEmbed.render" } } ], "overwrites": { "type": "reference", - "name": "V1Embed.render" + "name": "TsEmbed.render" } }, { - "id": 581, + "id": 1094, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -11475,13 +11875,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1108, + "line": 1116, "character": 11 } ], "signatures": [ { - "id": 582, + "id": 1095, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -11495,17 +11895,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.showPreRender" + "name": "TsEmbed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.showPreRender" + "name": "TsEmbed.showPreRender" } }, { - "id": 583, + "id": 1096, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -11515,13 +11915,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1156, + "line": 1164, "character": 11 } ], "signatures": [ { - "id": 584, + "id": 1097, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -11541,17 +11941,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.syncPreRenderStyle" + "name": "TsEmbed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.syncPreRenderStyle" + "name": "TsEmbed.syncPreRenderStyle" } }, { - "id": 469, + "id": 1071, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -11560,14 +11960,14 @@ }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 570, + "fileName": "embed/ts-embed.ts", + "line": 967, "character": 11 } ], "signatures": [ { - "id": 470, + "id": 1072, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -11577,7 +11977,7 @@ }, "parameters": [ { - "id": 471, + "id": 1073, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -11587,12 +11987,12 @@ }, "type": { "type": "reference", - "id": 1145, + "id": 1415, "name": "HostEvent" } }, { - "id": 472, + "id": 1074, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -11617,15 +12017,15 @@ ], "name": "Promise" }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "name": "V1Embed.trigger" + "name": "TsEmbed.trigger" } } ], - "overwrites": { + "inheritedFrom": { "type": "reference", - "name": "V1Embed.trigger" + "name": "TsEmbed.trigger" } } ], @@ -11634,58 +12034,57 @@ "title": "Constructors", "kind": 512, "children": [ - 433 + 980 ] }, { "title": "Methods", "kind": 2048, "children": [ - 575, - 592, - 568, - 587, - 573, - 577, - 585, - 475, - 564, - 485, - 570, - 579, - 473, - 581, - 583, - 469 + 1086, + 1105, + 985, + 1100, + 1080, + 1088, + 1098, + 1067, + 1061, + 1077, + 1090, + 987, + 1094, + 1096, + 1071 ] } ], "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 346, + "fileName": "embed/conversation.ts", + "line": 41, "character": 13 } ], "extendedTypes": [ { "type": "reference", - "name": "V1Embed" + "name": "TsEmbed" } ] }, { - "id": 595, - "name": "SageEmbed", + "id": 457, + "name": "LiveboardEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed ThoughtSpot LLM and GPT-based Natural Language Search component.", + "shortText": "Embed a ThoughtSpot Liveboard or visualization. When rendered it already\nwaits for the authentication to complete, so you need not wait for\n`AuthStatus.SUCCESS`.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.23.0 | ThoughtSpot: 9.4.0.cl, 9.5.1-sw" + "tag": "example", + "text": "\n```js\nimport { .. } from '@thoughtspot/visual-embed-sdk';\ninit({ ... });\nconst embed = new LiveboardEmbed(\"#container\", {\n liveboardId: ,\n// .. other params here.\n})\n```" }, { "tag": "group", @@ -11695,55 +12094,55 @@ }, "children": [ { - "id": 596, + "id": 458, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/sage.ts", - "line": 139, + "fileName": "embed/liveboard.ts", + "line": 350, "character": 4 } ], "signatures": [ { - "id": 597, - "name": "new SageEmbed", + "id": 459, + "name": "new LiveboardEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 598, + "id": 460, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1641, + "id": 1914, "name": "DOMSelector" } }, { - "id": 599, + "id": 461, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1509, - "name": "SageViewConfig" + "id": 1724, + "name": "LiveboardViewConfig" } } ], "type": { "type": "reference", - "id": 595, - "name": "SageEmbed" + "id": 457, + "name": "LiveboardEmbed" }, "overwrites": { "type": "reference", @@ -11757,7 +12156,7 @@ } }, { - "id": 708, + "id": 606, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -11767,13 +12166,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1045, + "line": 1053, "character": 11 } ], "signatures": [ { - "id": 709, + "id": 607, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -11803,7 +12202,7 @@ } }, { - "id": 727, + "id": 623, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -11813,13 +12212,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1216, + "line": 1224, "character": 17 } ], "signatures": [ { - "id": 728, + "id": 624, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -11835,7 +12234,7 @@ }, "parameters": [ { - "id": 729, + "id": 625, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -11856,7 +12255,7 @@ "typeArguments": [ { "type": "reference", - "id": 953, + "id": 1214, "name": "AnswerService" } ], @@ -11874,8 +12273,8 @@ } }, { - "id": 603, - "name": "getIFrameSrc", + "id": 595, + "name": "getIframeSrc", "kind": 2048, "kindString": "Method", "flags": { @@ -11883,32 +12282,36 @@ }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 182, + "fileName": "embed/ts-embed.ts", + "line": 994, "character": 11 } ], "signatures": [ { - "id": 604, - "name": "getIFrameSrc", + "id": 596, + "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Construct the URL of the embedded ThoughtSpot sage to be\nloaded in the iframe", - "returns": "iframe url\n" - }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "V1Embed.getIframeSrc" } } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "V1Embed.getIframeSrc" + } }, { - "id": 699, - "name": "getIframeSrc", + "id": 505, + "name": "getLiveboardUrl", "kind": 2048, "kindString": "Method", "flags": { @@ -11916,35 +12319,31 @@ }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 989, + "fileName": "embed/liveboard.ts", + "line": 616, "character": 11 } ], "signatures": [ { - "id": 700, - "name": "getIframeSrc", + "id": 506, + "name": "getLiveboardUrl", "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Returns the full url of the liveboard/viz which can be used to open\nthis liveboard inside the full Thoughtspot application in a new tab.", + "returns": "url string\n" + }, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "V1Embed.getIframeSrc" } } - ], - "inheritedFrom": { - "type": "reference", - "name": "V1Embed.getIframeSrc" - } + ] }, { - "id": 722, + "id": 618, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -11954,13 +12353,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1203, + "line": 1211, "character": 11 } ], "signatures": [ { - "id": 723, + "id": 619, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -11982,14 +12381,14 @@ "type": { "type": "reflection", "declaration": { - "id": 724, + "id": 620, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 726, + "id": 622, "name": "child", "kind": 1024, "kindString": "Property", @@ -12001,7 +12400,7 @@ "defaultValue": "..." }, { - "id": 725, + "id": 621, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -12018,8 +12417,8 @@ "title": "Properties", "kind": 1024, "children": [ - 726, - 725 + 622, + 621 ] } ] @@ -12037,7 +12436,7 @@ } }, { - "id": 706, + "id": 600, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -12047,13 +12446,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1018, + "line": 1023, "character": 11 } ], "signatures": [ { - "id": 707, + "id": 601, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -12067,6 +12466,58 @@ } ] }, + "parameters": [ + { + "id": 602, + "name": "additionalParams", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 603, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 604, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 605, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + } + }, + "defaultValue": "{}" + } + ], "type": { "type": "intrinsic", "name": "string" @@ -12083,7 +12534,7 @@ } }, { - "id": 710, + "id": 608, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -12093,13 +12544,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1054, + "line": 1062, "character": 11 } ], "signatures": [ { - "id": 711, + "id": 609, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -12120,7 +12571,7 @@ } }, { - "id": 720, + "id": 616, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -12130,13 +12581,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1175, + "line": 1183, "character": 11 } ], "signatures": [ { - "id": 721, + "id": 617, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -12160,7 +12611,75 @@ } }, { - "id": 691, + "id": 500, + "name": "navigateToLiveboard", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 597, + "character": 11 + } + ], + "signatures": [ + { + "id": 501, + "name": "navigateToLiveboard", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 502, + "name": "liveboardId", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 503, + "name": "vizId", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 504, + "name": "activeTabId", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + }, + { + "id": 591, "name": "off", "kind": 2048, "kindString": "Method", @@ -12170,13 +12689,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 924, + "line": 929, "character": 11 } ], "signatures": [ { - "id": 692, + "id": 592, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -12192,7 +12711,7 @@ }, "parameters": [ { - "id": 693, + "id": 593, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12202,12 +12721,12 @@ }, "type": { "type": "reference", - "id": 1068, + "id": 1338, "name": "EmbedEvent" } }, { - "id": 694, + "id": 594, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -12217,7 +12736,7 @@ }, "type": { "type": "reference", - "id": 1645, + "id": 1918, "name": "MessageCallback" } } @@ -12238,7 +12757,7 @@ } }, { - "id": 612, + "id": 512, "name": "on", "kind": 2048, "kindString": "Method", @@ -12248,13 +12767,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1283, + "line": 1291, "character": 11 } ], "signatures": [ { - "id": 613, + "id": 513, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -12277,38 +12796,38 @@ }, "parameters": [ { - "id": 614, + "id": 514, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1068, + "id": 1338, "name": "EmbedEvent" } }, { - "id": 615, + "id": 515, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1645, + "id": 1918, "name": "MessageCallback" } }, { - "id": 616, + "id": 516, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1642, + "id": 1915, "name": "MessageOptions" }, "defaultValue": "..." @@ -12330,7 +12849,7 @@ } }, { - "id": 703, + "id": 597, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -12340,13 +12859,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1001, + "line": 1006, "character": 11 } ], "signatures": [ { - "id": 704, + "id": 598, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -12356,7 +12875,7 @@ }, "parameters": [ { - "id": 705, + "id": 599, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -12387,7 +12906,7 @@ } }, { - "id": 712, + "id": 610, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -12397,13 +12916,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1065, + "line": 1073, "character": 17 } ], "signatures": [ { - "id": 713, + "id": 611, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -12440,7 +12959,7 @@ } }, { - "id": 605, + "id": 498, "name": "render", "kind": 2048, "kindString": "Method", @@ -12449,29 +12968,28 @@ }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 207, + "fileName": "embed/liveboard.ts", + "line": 587, "character": 17 } ], "signatures": [ { - "id": 606, + "id": 499, "name": "render", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Render the embedded ThoughtSpot Sage", - "returns": "Eureka/Sage embed\n" + "shortText": "Render an embedded ThoughtSpot Liveboard or visualization" }, "type": { "type": "reference", "typeArguments": [ { "type": "reference", - "id": 595, - "name": "SageEmbed" + "id": 457, + "name": "LiveboardEmbed" } ], "name": "Promise" @@ -12488,7 +13006,7 @@ } }, { - "id": 716, + "id": 612, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -12498,13 +13016,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1108, + "line": 1116, "character": 11 } ], "signatures": [ { - "id": 717, + "id": 613, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -12528,7 +13046,7 @@ } }, { - "id": 718, + "id": 614, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -12538,13 +13056,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1156, + "line": 1164, "character": 11 } ], "signatures": [ { - "id": 719, + "id": 615, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -12574,7 +13092,7 @@ } }, { - "id": 695, + "id": 494, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -12583,14 +13101,14 @@ }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 962, + "fileName": "embed/liveboard.ts", + "line": 570, "character": 11 } ], "signatures": [ { - "id": 696, + "id": 495, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -12600,7 +13118,7 @@ }, "parameters": [ { - "id": 697, + "id": 496, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12610,12 +13128,12 @@ }, "type": { "type": "reference", - "id": 1145, + "id": 1415, "name": "HostEvent" } }, { - "id": 698, + "id": 497, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -12640,13 +13158,13 @@ ], "name": "Promise" }, - "inheritedFrom": { + "overwrites": { "type": "reference", "name": "V1Embed.trigger" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", "name": "V1Embed.trigger" } @@ -12657,36 +13175,37 @@ "title": "Constructors", "kind": 512, "children": [ - 596 + 458 ] }, { "title": "Methods", "kind": 2048, "children": [ - 708, - 727, - 603, - 699, - 722, - 706, - 710, - 720, - 691, + 606, + 623, + 595, + 505, + 618, + 600, + 608, + 616, + 500, + 591, + 512, + 597, + 610, + 498, 612, - 703, - 712, - 605, - 716, - 718, - 695 + 614, + 494 ] } ], "sources": [ { - "fileName": "embed/sage.ts", - "line": 131, + "fileName": "embed/liveboard.ts", + "line": 344, "character": 13 } ], @@ -12698,17 +13217,17 @@ ] }, { - "id": 166, - "name": "SearchBarEmbed", + "id": 626, + "name": "SageEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed ThoughtSpot search bar", + "shortText": "Embed ThoughtSpot LLM and GPT-based Natural Language Search component.", "tags": [ { "tag": "version:", - "text": "SDK: 1.18.0 | ThoughtSpot: 8.10.0.cl, 9.0.1-sw" + "text": "SDK: 1.23.0 | ThoughtSpot: 9.4.0.cl, 9.5.1-sw" }, { "tag": "group", @@ -12718,68 +13237,69 @@ }, "children": [ { - "id": 167, + "id": 627, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 97, + "fileName": "embed/sage.ts", + "line": 139, "character": 4 } ], "signatures": [ { - "id": 168, - "name": "new SearchBarEmbed", + "id": 628, + "name": "new SageEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 169, + "id": 629, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 1914, + "name": "DOMSelector" } }, { - "id": 170, + "id": 630, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1420, - "name": "SearchBarViewConfig" + "id": 1781, + "name": "SageViewConfig" } } ], "type": { "type": "reference", - "id": 166, - "name": "SearchBarEmbed" + "id": 626, + "name": "SageEmbed" }, "overwrites": { "type": "reference", - "name": "TsEmbed.constructor" + "name": "V1Embed.constructor" } } ], "overwrites": { "type": "reference", - "name": "TsEmbed.constructor" + "name": "V1Embed.constructor" } }, { - "id": 272, + "id": 743, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -12789,13 +13309,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1045, + "line": 1053, "character": 11 } ], "signatures": [ { - "id": 273, + "id": 744, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -12815,17 +13335,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.destroy" + "name": "V1Embed.destroy" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.destroy" + "name": "V1Embed.destroy" } }, { - "id": 291, + "id": 762, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -12835,13 +13355,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1216, + "line": 1224, "character": 17 } ], "signatures": [ { - "id": 292, + "id": 763, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -12857,7 +13377,7 @@ }, "parameters": [ { - "id": 293, + "id": 764, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -12878,7 +13398,7 @@ "typeArguments": [ { "type": "reference", - "id": 953, + "id": 1214, "name": "AnswerService" } ], @@ -12886,17 +13406,50 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getAnswerService" + "name": "V1Embed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getAnswerService" + "name": "V1Embed.getAnswerService" } }, { - "id": 263, + "id": 634, + "name": "getIFrameSrc", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/sage.ts", + "line": 182, + "character": 11 + } + ], + "signatures": [ + { + "id": 635, + "name": "getIFrameSrc", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Construct the URL of the embedded ThoughtSpot sage to be\nloaded in the iframe", + "returns": "iframe url\n" + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 730, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -12906,13 +13459,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 989, + "line": 994, "character": 11 } ], "signatures": [ { - "id": 264, + "id": 731, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -12923,17 +13476,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getIframeSrc" + "name": "V1Embed.getIframeSrc" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getIframeSrc" + "name": "V1Embed.getIframeSrc" } }, { - "id": 286, + "id": 757, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -12943,13 +13496,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1203, + "line": 1211, "character": 11 } ], "signatures": [ { - "id": 287, + "id": 758, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -12971,14 +13524,14 @@ "type": { "type": "reflection", "declaration": { - "id": 288, + "id": 759, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 290, + "id": 761, "name": "child", "kind": 1024, "kindString": "Property", @@ -12990,7 +13543,7 @@ "defaultValue": "..." }, { - "id": 289, + "id": 760, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -13007,8 +13560,8 @@ "title": "Properties", "kind": 1024, "children": [ - 290, - 289 + 761, + 760 ] } ] @@ -13016,17 +13569,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getPreRenderIds" + "name": "V1Embed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getPreRenderIds" + "name": "V1Embed.getPreRenderIds" } }, { - "id": 270, + "id": 737, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -13036,13 +13589,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1018, + "line": 1023, "character": 11 } ], "signatures": [ { - "id": 271, + "id": 738, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -13056,23 +13609,75 @@ } ] }, + "parameters": [ + { + "id": 739, + "name": "additionalParams", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 740, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 741, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 742, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + } + }, + "defaultValue": "{}" + } + ], "type": { "type": "intrinsic", "name": "string" }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getThoughtSpotPostUrlParams" + "name": "V1Embed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getThoughtSpotPostUrlParams" + "name": "V1Embed.getThoughtSpotPostUrlParams" } }, { - "id": 274, + "id": 745, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -13082,13 +13687,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1054, + "line": 1062, "character": 11 } ], "signatures": [ { - "id": 275, + "id": 746, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -13099,17 +13704,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getUnderlyingFrameElement" + "name": "V1Embed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getUnderlyingFrameElement" + "name": "V1Embed.getUnderlyingFrameElement" } }, { - "id": 284, + "id": 755, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -13119,13 +13724,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1175, + "line": 1183, "character": 11 } ], "signatures": [ { - "id": 285, + "id": 756, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -13139,17 +13744,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.hidePreRender" + "name": "V1Embed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.hidePreRender" + "name": "V1Embed.hidePreRender" } }, { - "id": 255, + "id": 722, "name": "off", "kind": 2048, "kindString": "Method", @@ -13159,13 +13764,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 924, + "line": 929, "character": 11 } ], "signatures": [ { - "id": 256, + "id": 723, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -13181,7 +13786,7 @@ }, "parameters": [ { - "id": 257, + "id": 724, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -13191,12 +13796,12 @@ }, "type": { "type": "reference", - "id": 1068, + "id": 1338, "name": "EmbedEvent" } }, { - "id": 258, + "id": 725, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -13206,7 +13811,7 @@ }, "type": { "type": "reference", - "id": 1645, + "id": 1918, "name": "MessageCallback" } } @@ -13217,17 +13822,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.off" + "name": "V1Embed.off" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.off" + "name": "V1Embed.off" } }, { - "id": 249, + "id": 643, "name": "on", "kind": 2048, "kindString": "Method", @@ -13237,20 +13842,23 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 895, + "line": 1291, "character": 11 } ], "signatures": [ { - "id": 250, + "id": 644, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Registers an event listener to trigger an alert when the ThoughtSpot app\nsends an event of a particular message type to the host application.", "tags": [ + { + "tag": "inheritdoc", + "text": "" + }, { "tag": "example", "text": "\n```js\ntsEmbed.on(EmbedEvent.Error, (data) => {\n console.error(data);\n});\n```" @@ -13263,63 +13871,41 @@ }, "parameters": [ { - "id": 251, + "id": 645, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "The message type" - }, "type": { "type": "reference", - "id": 1068, + "id": 1338, "name": "EmbedEvent" } }, { - "id": 252, + "id": 646, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "A callback as a function" - }, "type": { "type": "reference", - "id": 1645, + "id": 1918, "name": "MessageCallback" } }, { - "id": 253, + "id": 647, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "The message options" - }, "type": { "type": "reference", - "id": 1642, + "id": 1915, "name": "MessageOptions" }, "defaultValue": "..." - }, - { - "id": 254, - "name": "isRegisteredBySDK", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "defaultValue": "false" } ], "type": { @@ -13328,17 +13914,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.on" + "name": "V1Embed.on" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.on" + "name": "V1Embed.on" } }, { - "id": 267, + "id": 734, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -13348,13 +13934,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1001, + "line": 1006, "character": 11 } ], "signatures": [ { - "id": 268, + "id": 735, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -13364,7 +13950,7 @@ }, "parameters": [ { - "id": 269, + "id": 736, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -13385,17 +13971,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.preRender" + "name": "V1Embed.preRender" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.preRender" + "name": "V1Embed.preRender" } }, { - "id": 276, + "id": 747, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -13405,13 +13991,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1065, + "line": 1073, "character": 17 } ], "signatures": [ { - "id": 277, + "id": 748, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -13438,17 +14024,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.prerenderGeneric" + "name": "V1Embed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.prerenderGeneric" + "name": "V1Embed.prerenderGeneric" } }, { - "id": 175, + "id": 636, "name": "render", "kind": 2048, "kindString": "Method", @@ -13457,45 +14043,46 @@ }, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 153, + "fileName": "embed/sage.ts", + "line": 207, "character": 17 } ], "signatures": [ { - "id": 176, + "id": 637, "name": "render", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Render the embedded ThoughtSpot search" + "shortText": "Render the embedded ThoughtSpot Sage", + "returns": "Eureka/Sage embed\n" }, "type": { "type": "reference", "typeArguments": [ { "type": "reference", - "id": 166, - "name": "SearchBarEmbed" + "id": 626, + "name": "SageEmbed" } ], "name": "Promise" }, "overwrites": { "type": "reference", - "name": "TsEmbed.render" + "name": "V1Embed.render" } } ], "overwrites": { "type": "reference", - "name": "TsEmbed.render" + "name": "V1Embed.render" } }, { - "id": 280, + "id": 751, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -13505,13 +14092,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1108, + "line": 1116, "character": 11 } ], "signatures": [ { - "id": 281, + "id": 752, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -13525,17 +14112,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.showPreRender" + "name": "V1Embed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.showPreRender" + "name": "V1Embed.showPreRender" } }, { - "id": 282, + "id": 753, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -13545,13 +14132,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1156, + "line": 1164, "character": 11 } ], "signatures": [ { - "id": 283, + "id": 754, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -13571,17 +14158,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.syncPreRenderStyle" + "name": "V1Embed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.syncPreRenderStyle" + "name": "V1Embed.syncPreRenderStyle" } }, { - "id": 259, + "id": 726, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -13591,13 +14178,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 962, + "line": 967, "character": 11 } ], "signatures": [ { - "id": 260, + "id": 727, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -13607,7 +14194,7 @@ }, "parameters": [ { - "id": 261, + "id": 728, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -13617,12 +14204,12 @@ }, "type": { "type": "reference", - "id": 1145, + "id": 1415, "name": "HostEvent" } }, { - "id": 262, + "id": 729, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -13649,13 +14236,13 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.trigger" + "name": "V1Embed.trigger" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.trigger" + "name": "V1Embed.trigger" } } ], @@ -13664,54 +14251,59 @@ "title": "Constructors", "kind": 512, "children": [ - 167 + 627 ] }, { "title": "Methods", "kind": 2048, "children": [ - 272, - 291, - 263, - 286, - 270, - 274, - 284, - 255, - 249, - 267, - 276, - 175, - 280, - 282, - 259 + 743, + 762, + 634, + 730, + 757, + 737, + 745, + 755, + 722, + 643, + 734, + 747, + 636, + 751, + 753, + 726 ] } ], "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 89, + "fileName": "embed/sage.ts", + "line": 131, "character": 13 } ], "extendedTypes": [ { "type": "reference", - "name": "TsEmbed" + "name": "V1Embed" } ] }, { - "id": 37, - "name": "SearchEmbed", + "id": 181, + "name": "SearchBarEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed ThoughtSpot search", + "shortText": "Embed ThoughtSpot search bar", "tags": [ + { + "tag": "version:", + "text": "SDK: 1.18.0 | ThoughtSpot: 8.10.0.cl, 9.0.1-sw" + }, { "tag": "group", "text": "Embed components\n" @@ -13720,55 +14312,54 @@ }, "children": [ { - "id": 38, + "id": 182, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/search.ts", - "line": 313, + "fileName": "embed/search-bar.tsx", + "line": 97, "character": 4 } ], "signatures": [ { - "id": 39, - "name": "new SearchEmbed", + "id": 183, + "name": "new SearchBarEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 40, + "id": 184, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "reference", - "id": 1641, - "name": "DOMSelector" + "type": "intrinsic", + "name": "string" } }, { - "id": 41, + "id": 185, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1370, - "name": "SearchViewConfig" + "id": 1690, + "name": "SearchBarViewConfig" } } ], "type": { "type": "reference", - "id": 37, - "name": "SearchEmbed" + "id": 181, + "name": "SearchBarEmbed" }, "overwrites": { "type": "reference", @@ -13782,7 +14373,7 @@ } }, { - "id": 144, + "id": 291, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -13792,13 +14383,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1045, + "line": 1053, "character": 11 } ], "signatures": [ { - "id": 145, + "id": 292, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -13828,7 +14419,7 @@ } }, { - "id": 163, + "id": 310, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -13838,13 +14429,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1216, + "line": 1224, "character": 17 } ], "signatures": [ { - "id": 164, + "id": 311, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -13860,7 +14451,7 @@ }, "parameters": [ { - "id": 165, + "id": 312, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -13881,7 +14472,7 @@ "typeArguments": [ { "type": "reference", - "id": 953, + "id": 1214, "name": "AnswerService" } ], @@ -13899,39 +14490,7 @@ } }, { - "id": 47, - "name": "getIFrameSrc", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 448, - "character": 11 - } - ], - "signatures": [ - { - "id": 48, - "name": "getIFrameSrc", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Construct the URL of the embedded ThoughtSpot search to be\nloaded in the iframe" - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ] - }, - { - "id": 135, + "id": 278, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -13941,13 +14500,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 989, + "line": 994, "character": 11 } ], "signatures": [ { - "id": 136, + "id": 279, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -13968,7 +14527,7 @@ } }, { - "id": 158, + "id": 305, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -13978,13 +14537,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1203, + "line": 1211, "character": 11 } ], "signatures": [ { - "id": 159, + "id": 306, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -14006,14 +14565,14 @@ "type": { "type": "reflection", "declaration": { - "id": 160, + "id": 307, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 162, + "id": 309, "name": "child", "kind": 1024, "kindString": "Property", @@ -14025,7 +14584,7 @@ "defaultValue": "..." }, { - "id": 161, + "id": 308, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -14042,8 +14601,8 @@ "title": "Properties", "kind": 1024, "children": [ - 162, - 161 + 309, + 308 ] } ] @@ -14061,7 +14620,7 @@ } }, { - "id": 142, + "id": 285, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -14071,13 +14630,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1018, + "line": 1023, "character": 11 } ], "signatures": [ { - "id": 143, + "id": 286, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -14091,24 +14650,76 @@ } ] }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "TsEmbed.getThoughtSpotPostUrlParams" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "TsEmbed.getThoughtSpotPostUrlParams" - } - }, - { - "id": 146, - "name": "getUnderlyingFrameElement", + "parameters": [ + { + "id": 287, + "name": "additionalParams", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 288, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 289, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 290, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + } + }, + "defaultValue": "{}" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.getThoughtSpotPostUrlParams" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.getThoughtSpotPostUrlParams" + } + }, + { + "id": 293, + "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", "flags": { @@ -14117,13 +14728,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1054, + "line": 1062, "character": 11 } ], "signatures": [ { - "id": 147, + "id": 294, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -14144,7 +14755,7 @@ } }, { - "id": 156, + "id": 303, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -14154,13 +14765,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1175, + "line": 1183, "character": 11 } ], "signatures": [ { - "id": 157, + "id": 304, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -14184,7 +14795,7 @@ } }, { - "id": 127, + "id": 270, "name": "off", "kind": 2048, "kindString": "Method", @@ -14194,13 +14805,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 924, + "line": 929, "character": 11 } ], "signatures": [ { - "id": 128, + "id": 271, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -14216,7 +14827,7 @@ }, "parameters": [ { - "id": 129, + "id": 272, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14226,12 +14837,12 @@ }, "type": { "type": "reference", - "id": 1068, + "id": 1338, "name": "EmbedEvent" } }, { - "id": 130, + "id": 273, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14241,7 +14852,7 @@ }, "type": { "type": "reference", - "id": 1645, + "id": 1918, "name": "MessageCallback" } } @@ -14262,7 +14873,7 @@ } }, { - "id": 121, + "id": 264, "name": "on", "kind": 2048, "kindString": "Method", @@ -14272,13 +14883,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 895, + "line": 900, "character": 11 } ], "signatures": [ { - "id": 122, + "id": 265, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -14298,7 +14909,7 @@ }, "parameters": [ { - "id": 123, + "id": 266, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14308,12 +14919,12 @@ }, "type": { "type": "reference", - "id": 1068, + "id": 1338, "name": "EmbedEvent" } }, { - "id": 124, + "id": 267, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14323,12 +14934,12 @@ }, "type": { "type": "reference", - "id": 1645, + "id": 1918, "name": "MessageCallback" } }, { - "id": 125, + "id": 268, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -14338,13 +14949,13 @@ }, "type": { "type": "reference", - "id": 1642, + "id": 1915, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 126, + "id": 269, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -14373,7 +14984,7 @@ } }, { - "id": 139, + "id": 282, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -14383,13 +14994,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1001, + "line": 1006, "character": 11 } ], "signatures": [ { - "id": 140, + "id": 283, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -14399,7 +15010,7 @@ }, "parameters": [ { - "id": 141, + "id": 284, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -14430,7 +15041,7 @@ } }, { - "id": 148, + "id": 295, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -14440,13 +15051,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1065, + "line": 1073, "character": 17 } ], "signatures": [ { - "id": 149, + "id": 296, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -14483,7 +15094,7 @@ } }, { - "id": 49, + "id": 190, "name": "render", "kind": 2048, "kindString": "Method", @@ -14492,14 +15103,14 @@ }, "sources": [ { - "fileName": "embed/search.ts", - "line": 459, + "fileName": "embed/search-bar.tsx", + "line": 153, "character": 17 } ], "signatures": [ { - "id": 50, + "id": 191, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -14512,8 +15123,8 @@ "typeArguments": [ { "type": "reference", - "id": 37, - "name": "SearchEmbed" + "id": 181, + "name": "SearchBarEmbed" } ], "name": "Promise" @@ -14530,7 +15141,7 @@ } }, { - "id": 152, + "id": 299, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -14540,13 +15151,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1108, + "line": 1116, "character": 11 } ], "signatures": [ { - "id": 153, + "id": 300, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -14570,7 +15181,7 @@ } }, { - "id": 154, + "id": 301, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -14580,13 +15191,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1156, + "line": 1164, "character": 11 } ], "signatures": [ { - "id": 155, + "id": 302, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -14616,7 +15227,7 @@ } }, { - "id": 131, + "id": 274, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -14626,13 +15237,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 962, + "line": 967, "character": 11 } ], "signatures": [ { - "id": 132, + "id": 275, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -14642,7 +15253,7 @@ }, "parameters": [ { - "id": 133, + "id": 276, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14652,12 +15263,12 @@ }, "type": { "type": "reference", - "id": 1145, + "id": 1415, "name": "HostEvent" } }, { - "id": 134, + "id": 277, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -14699,36 +15310,35 @@ "title": "Constructors", "kind": 512, "children": [ - 38 + 182 ] }, { "title": "Methods", "kind": 2048, "children": [ - 144, - 163, - 47, - 135, - 158, - 142, - 146, - 156, - 127, - 121, - 139, - 148, - 49, - 152, - 154, - 131 + 291, + 310, + 278, + 305, + 285, + 293, + 303, + 270, + 264, + 282, + 295, + 190, + 299, + 301, + 274 ] } ], "sources": [ { - "fileName": "embed/search.ts", - "line": 307, + "fileName": "embed/search-bar.tsx", + "line": 89, "character": 13 } ], @@ -14740,13 +15350,13 @@ ] }, { - "id": 1552, - "name": "AppViewConfig", - "kind": 256, - "kindString": "Interface", + "id": 48, + "name": "SearchEmbed", + "kind": 128, + "kindString": "Class", "flags": {}, "comment": { - "shortText": "The view configuration for full app embedding.", + "shortText": "Embed ThoughtSpot search", "tags": [ { "tag": "group", @@ -14756,1184 +15366,1242 @@ }, "children": [ { - "id": 1587, - "name": "additionalFlags", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" - } - ] - }, + "id": 49, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, "sources": [ { - "fileName": "types.ts", - "line": 798, + "fileName": "embed/search.ts", + "line": 300, "character": 4 } ], - "type": { - "type": "reflection", - "declaration": { - "id": 1588, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", + "signatures": [ + { + "id": 50, + "name": "new SearchEmbed", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "indexSignature": { - "id": 1589, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 1590, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } + "parameters": [ + { + "id": 51, + "name": "domSelector", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1914, + "name": "DOMSelector" + } + }, + { + "id": 52, + "name": "viewConfig", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1640, + "name": "SearchViewConfig" } - ], - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] } + ], + "type": { + "type": "reference", + "id": 48, + "name": "SearchEmbed" + }, + "overwrites": { + "type": "reference", + "name": "TsEmbed.constructor" } } - }, - "inheritedFrom": { + ], + "overwrites": { "type": "reference", - "name": "Omit.additionalFlags" + "name": "TsEmbed.constructor" } }, { - "id": 1613, - "name": "collapseSearchBar", - "kind": 1024, - "kindString": "Property", + "id": 159, + "name": "destroy", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true + "isPublic": true }, - "comment": { - "shortText": "To set the initial state of the search bar in case of saved-answers.", - "tags": [ - { - "tag": "default", - "text": "true" + "sources": [ + { + "fileName": "embed/ts-embed.ts", + "line": 1053, + "character": 11 + } + ], + "signatures": [ + { + "id": 160, + "name": "destroy", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Destroys the ThoughtSpot embed, and remove any nodes from the DOM.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.19.1 | ThoughtSpot: *\n" + } + ] }, - { - "tag": "version", - "text": "SDK: 1.34.0 | Thoughtspot: 10.3.0.cl" + "type": { + "type": "intrinsic", + "name": "void" }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.destroy" } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1031, - "character": 4 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, "inheritedFrom": { "type": "reference", - "name": "Omit.collapseSearchBar" + "name": "TsEmbed.destroy" } }, { - "id": 1571, - "name": "collapseSearchBarInitially", - "kind": 1024, - "kindString": "Property", + "id": 178, + "name": "getAnswerService", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "To set the initial state of the search bar in case of saved-answers.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" - }, - { - "tag": "default", - "text": "false" - }, - { - "tag": "deprecated", - "text": "Use {@link collapseSearchBar} instead\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "embed/app.ts", - "line": 348, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1224, + "character": 17 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1592, - "name": "contextMenuTrigger", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "flag to set ContextMenu Trigger to either left or right click.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" + "signatures": [ + { + "id": 179, + "name": "getAnswerService", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Returns the answerService which can be used to make arbitrary graphql calls on top\nsession.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.25.0 / ThoughtSpot 9.10.0\n" + } + ] }, - { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" + "parameters": [ + { + "id": 180, + "name": "vizId", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "comment": { + "text": "to get for a specific viz in case of a liveboard." + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "id": 1214, + "name": "AnswerService" + } + ], + "name": "Promise" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.getAnswerService" } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 830, - "character": 4 } ], - "type": { - "type": "reference", - "id": 1325, - "name": "ContextMenuTriggerOptions" - }, "inheritedFrom": { "type": "reference", - "name": "Omit.contextMenuTrigger" + "name": "TsEmbed.getAnswerService" } }, { - "id": 1580, - "name": "customizations", - "kind": 1024, - "kindString": "Property", + "id": 58, + "name": "getIFrameSrc", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" - }, - { - "tag": "default", - "text": "''\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 805, - "character": 4 + "fileName": "embed/search.ts", + "line": 435, + "character": 11 } ], - "type": { - "type": "reference", - "id": 1658, - "name": "CustomisationsInterface" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.customizations" - } + "signatures": [ + { + "id": 59, + "name": "getIFrameSrc", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Construct the URL of the embedded ThoughtSpot search to be\nloaded in the iframe" + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] }, { - "id": 1573, - "name": "dataPanelCustomGroupsAccordionInitialState", - "kind": 1024, - "kindString": "Property", + "id": 146, + "name": "getIframeSrc", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This controls the initial behaviour of custom column groups accordion.\nIt takes DataPanelCustomColumnGroupsAccordionState enum values as input.\nList of different enum values:-\n- EXPAND_ALL: Expand all the accordion initially in data panel v2.\n- COLLAPSE_ALL: Collapse all the accordions initially in data panel v2.\n- EXPAND_FIRST: Expand the first accordion and collapse the rest.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" - }, - { - "tag": "default", - "text": "DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed', {\n ... // other app view config\n dataPanelCustomGroupsAccordionInitialState:\n DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL,\n});\n```\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "embed/app.ts", - "line": 380, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 994, + "character": 11 } ], - "type": { - "type": "reference", - "name": "DataPanelCustomColumnGroupsAccordionState" - } - }, - { - "id": 1614, - "name": "dataPanelV2", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag to control Data panel experience", - "tags": [ - { - "tag": "default", - "text": "true" - }, - { - "tag": "version", - "text": "SDK: 1.34.0 | Thoughtspot: 10.3.0.cl" + "signatures": [ + { + "id": 147, + "name": "getIframeSrc", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.getIframeSrc" } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1056, - "character": 4 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, "inheritedFrom": { "type": "reference", - "name": "Omit.dataPanelV2" + "name": "TsEmbed.getIframeSrc" } }, { - "id": 1555, - "name": "disableProfileAndHelp", - "kind": 1024, - "kindString": "Property", + "id": 173, + "name": "getPreRenderIds", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Control the visibility of the help (?) and profile buttons on the\nGlobal nav-bar. By default, these buttons are visible on the nav-bar.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.2.0 | Thoughtspot: 8.4.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n disableProfileAndHelp: true,\n})\n```\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "embed/app.ts", - "line": 139, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1211, + "character": 11 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1595, - "name": "disableRedirectionLinksInNewTab", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disables redirection of links in a new tab.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + "signatures": [ + { + "id": 174, + "name": "getPreRenderIds", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Retrieves unique HTML element IDs for PreRender-related elements.\nThese IDs are constructed based on the provided 'preRenderId' from 'viewConfig'.", + "returns": "An object containing the IDs for the PreRender elements.", + "tags": [ + { + "tag": "property", + "text": "{string} wrapper - The HTML element ID for the PreRender wrapper." + }, + { + "tag": "property", + "text": "{string} child - The HTML element ID for the PreRender child.\n" + } + ] }, - { - "tag": "version", - "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" + "type": { + "type": "reflection", + "declaration": { + "id": 175, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 177, + "name": "child", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "defaultValue": "..." + }, + { + "id": 176, + "name": "wrapper", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 177, + 176 + ] + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.getPreRenderIds" } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1043, - "character": 4 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, "inheritedFrom": { "type": "reference", - "name": "Omit.disableRedirectionLinksInNewTab" + "name": "TsEmbed.getPreRenderIds" } }, { - "id": 1582, - "name": "disabledActionReason", - "kind": 1024, - "kindString": "Property", + "id": 153, + "name": "getThoughtSpotPostUrlParams", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The tooltip to display for disabled actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 683, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1023, + "character": 11 + } + ], + "signatures": [ + { + "id": 154, + "name": "getThoughtSpotPostUrlParams", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Get the Post Url Params for THOUGHTSPOT from the current\nhost app URL.\nTHOUGHTSPOT URL params starts with a prefix \"ts-\"", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.14.0 | ThoughtSpot: 8.4.0.cl, 8.4.1-sw\n" + } + ] + }, + "parameters": [ + { + "id": 155, + "name": "additionalParams", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 156, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 157, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 158, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + } + }, + "defaultValue": "{}" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.getThoughtSpotPostUrlParams" + } } ], - "type": { - "type": "intrinsic", - "name": "string" - }, "inheritedFrom": { "type": "reference", - "name": "Omit.disabledActionReason" + "name": "TsEmbed.getThoughtSpotPostUrlParams" } }, { - "id": 1581, - "name": "disabledActions", - "kind": 1024, - "kindString": "Property", + "id": 161, + "name": "getUnderlyingFrameElement", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 670, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1062, + "character": 11 } ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1205, - "name": "Action" + "signatures": [ + { + "id": 162, + "name": "getUnderlyingFrameElement", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "reference", + "name": "HTMLIFrameElement" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.getUnderlyingFrameElement" + } } - }, + ], "inheritedFrom": { "type": "reference", - "name": "Omit.disabledActions" + "name": "TsEmbed.getUnderlyingFrameElement" } }, { - "id": 1609, - "name": "doNotTrackPreRenderSize", - "kind": 1024, - "kindString": "Property", + "id": 171, + "name": "hidePreRender", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Determines whether the PreRender component should not dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" - }, - { - "tag": "example", - "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 990, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1183, + "character": 11 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.doNotTrackPreRenderSize" - } - }, - { - "id": 1574, - "name": "enable2ColumnLayout", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag is used to enable the 2 column layout in liveboard", - "tags": [ - { - "tag": "default", - "text": "false" + "signatures": [ + { + "id": 172, + "name": "hidePreRender", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Hides the PreRender component if it is available.\nIf the component is not preRendered, it issues a warning." }, - { - "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot:10.1.0.cl" + "type": { + "type": "intrinsic", + "name": "void" }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n enable2ColumnLayout: true,\n})\n```\n" + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.hidePreRender" } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 394, - "character": 4 } ], - "type": { - "type": "intrinsic", - "name": "boolean" + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.hidePreRender" } }, { - "id": 1570, - "name": "enableAskSage", - "kind": 1024, - "kindString": "Property", + "id": 138, + "name": "off", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "enable or disable ask sage", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.29.0 | Thoughtspot: 9.12.0.cl" - }, - { - "tag": "default", - "text": "false\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "embed/app.ts", - "line": 341, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 929, + "character": 11 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1572, - "name": "enableCustomColumnGroups", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "To enable custom column groups in data panel v2.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" - }, - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed', {\n ... // other app view config\n enableCustomColumnGroups: true,\n});\n```\n" - } - ] - }, - "sources": [ + "signatures": [ { - "fileName": "embed/app.ts", - "line": 361, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1563, - "name": "enableSearchAssist", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "If set to true, the Search Assist feature is enabled.", - "tags": [ - { - "tag": "default", - "text": "true" - }, - { - "tag": "version", - "text": "SDK: 1.13.0 | ThoughtSpot: 8.5.0.cl, 8.8.1-sw" + "id": 139, + "name": "off", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Removes an event listener for a particular event type.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst errorHandler = (data) => { console.error(data); };\ntsEmbed.on(EmbedEvent.Error, errorHandler);\ntsEmbed.off(EmbedEvent.Error, errorHandler);\n```\n" + } + ] }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n enableSearchAssist: true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 258, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1612, - "name": "enableV2Shell_experimental", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" + "parameters": [ + { + "id": 140, + "name": "messageType", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "The message type" + }, + "type": { + "type": "reference", + "id": 1338, + "name": "EmbedEvent" + } + }, + { + "id": 141, + "name": "callback", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "The callback to remove" + }, + "type": { + "type": "reference", + "id": 1918, + "name": "MessageCallback" + } + } + ], + "type": { + "type": "reference", + "name": "TsEmbed" }, - { - "tag": "version", - "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.off" } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1019, - "character": 4 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, "inheritedFrom": { "type": "reference", - "name": "Omit.enableV2Shell_experimental" + "name": "TsEmbed.off" } }, { - "id": 1605, - "name": "excludeRuntimeFiltersfromURL", - "kind": 1024, - "kindString": "Property", + "id": 132, + "name": "on", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 868, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 900, + "character": 11 + } + ], + "signatures": [ + { + "id": 133, + "name": "on", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Registers an event listener to trigger an alert when the ThoughtSpot app\nsends an event of a particular message type to the host application.", + "tags": [ + { + "tag": "example", + "text": "\n```js\ntsEmbed.on(EmbedEvent.Error, (data) => {\n console.error(data);\n});\n```" + }, + { + "tag": "example", + "text": "\n```js\ntsEmbed.on(EmbedEvent.Save, (data) => {\n console.log(\"Answer save clicked\", data);\n}, {\n start: true // This will trigger the callback on start of save\n});\n```\n" + } + ] + }, + "parameters": [ + { + "id": 134, + "name": "messageType", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "The message type" + }, + "type": { + "type": "reference", + "id": 1338, + "name": "EmbedEvent" + } + }, + { + "id": 135, + "name": "callback", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "A callback as a function" + }, + "type": { + "type": "reference", + "id": 1918, + "name": "MessageCallback" + } + }, + { + "id": 136, + "name": "options", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "The message options" + }, + "type": { + "type": "reference", + "id": 1915, + "name": "MessageOptions" + }, + "defaultValue": "..." + }, + { + "id": 137, + "name": "isRegisteredBySDK", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "defaultValue": "false" + } + ], + "type": { + "type": "reference", + "name": "TsEmbed" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.on" + } } ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeFiltersfromURL" + "name": "TsEmbed.on" } }, { - "id": 1611, - "name": "excludeRuntimeParametersfromURL", - "kind": 1024, - "kindString": "Property", + "id": 150, + "name": "preRender", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 1005, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1006, + "character": 11 + } + ], + "signatures": [ + { + "id": 151, + "name": "preRender", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Creates the preRender shell" + }, + "parameters": [ + { + "id": 152, + "name": "showPreRenderByDefault", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "Show the preRender after render, hidden by default\n" + }, + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "defaultValue": "false" + } + ], + "type": { + "type": "reference", + "name": "TsEmbed" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.preRender" + } } ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeParametersfromURL" + "name": "TsEmbed.preRender" } }, { - "id": 1598, - "name": "frameParams", - "kind": 1024, - "kindString": "Property", + "id": 163, + "name": "prerenderGeneric", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 646, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1073, + "character": 17 + } + ], + "signatures": [ + { + "id": 164, + "name": "prerenderGeneric", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Prerenders a generic instance of the TS component.\nThis means without the path but with the flags already applied.\nThis is useful for prerendering the component in the background.", + "returns": "\n", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.22.0" + } + ] + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.prerenderGeneric" + } } ], - "type": { - "type": "reference", - "id": 1620, - "name": "FrameParams" - }, "inheritedFrom": { "type": "reference", - "name": "Omit.frameParams" + "name": "TsEmbed.prerenderGeneric" } }, { - "id": 1564, - "name": "fullHeight", - "kind": 1024, - "kindString": "Property", + "id": 60, + "name": "render", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "If set to true, the embedded object container dynamically resizes\naccording to the height of the pages which support fullHeight mode.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.4.0.cl, 9.4.0-sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n fullHeight: true,\n})\n```\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "embed/app.ts", - "line": 271, - "character": 4 + "fileName": "embed/search.ts", + "line": 446, + "character": 17 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1583, - "name": "hiddenActions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + "signatures": [ + { + "id": 61, + "name": "render", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Render the embedded ThoughtSpot search" }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "id": 48, + "name": "SearchEmbed" + } + ], + "name": "Promise" }, - { - "tag": "important", - "text": "\n" + "overwrites": { + "type": "reference", + "name": "TsEmbed.render" } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 698, - "character": 4 } ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1205, - "name": "Action" - } - }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "Omit.hiddenActions" + "name": "TsEmbed.render" } }, { - "id": 1608, - "name": "hiddenHomeLeftNavItems", - "kind": 1024, - "kindString": "Property", + "id": 167, + "name": "showPreRender", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." - }, - { - "tag": "version", - "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 954, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1116, + "character": 11 } ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1626, - "name": "HomeLeftNavItem" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.hiddenHomeLeftNavItems" - } - }, - { - "id": 1606, - "name": "hiddenHomepageModules", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" + "signatures": [ + { + "id": 168, + "name": "showPreRender", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Displays the PreRender component.\nIf the component is not preRendered, it attempts to create and render it.\nAlso, synchronizes the style of the PreRender component with the embedding\nelement." }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" + "type": { + "type": "intrinsic", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.showPreRender" } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 901, - "character": 4 } ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1634, - "name": "HomepageModule" - } - }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenHomepageModules" + "name": "TsEmbed.showPreRender" } }, { - "id": 1585, - "name": "hiddenTabs", - "kind": 1024, - "kindString": "Property", + "id": 169, + "name": "syncPreRenderStyle", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 884, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1164, + "character": 11 } ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" + "signatures": [ + { + "id": 170, + "name": "syncPreRenderStyle", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Synchronizes the style properties of the PreRender component with the embedding\nelement. This function adjusts the position, width, and height of the PreRender\ncomponent\nto match the dimensions and position of the embedding element.", + "tags": [ + { + "tag": "throws", + "text": "{Error} Throws an error if the embedding element (passed as domSelector)\nis not defined or not found.\n" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.syncPreRenderStyle" + } } - }, + ], "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenTabs" + "name": "TsEmbed.syncPreRenderStyle" } }, { - "id": 1556, - "name": "hideApplicationSwitcher", - "kind": 1024, - "kindString": "Property", + "id": 142, + "name": "trigger", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Control the visibility of the application switcher button on the nav-bar.\nBy default, the application switcher is shown.", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" - }, - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideApplicationSwitcher : true,\n})\n```\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "embed/app.ts", - "line": 157, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 967, + "character": 11 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1554, - "name": "hideHomepageLeftNav", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Control the visibility of the left navigation bar on the Homepage.\nIf showPrimaryNavbar is true, that is, if the Global and Homepage\nnav-bars are visible, this flag will only hide the homepage left nav-bar.\nThe showPrimaryNavbar flag takes precedence over the hideHomepageLeftNav.", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", - "tags": [ - { - "tag": "default", - "text": "false" + "signatures": [ + { + "id": 143, + "name": "trigger", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Triggers an event to the embedded app" }, - { - "tag": "version", - "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" + "parameters": [ + { + "id": 144, + "name": "messageType", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "The event type" + }, + "type": { + "type": "reference", + "id": 1415, + "name": "HostEvent" + } + }, + { + "id": 145, + "name": "data", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "The payload to send with the message\n" + }, + "type": { + "type": "intrinsic", + "name": "any" + }, + "defaultValue": "{}" + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideHomepageLeftNav : true,\n})\n```\n" + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.trigger" } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 125, - "character": 4 } ], - "type": { - "type": "intrinsic", - "name": "boolean" + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.trigger" } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 49 + ] }, { - "id": 1565, - "name": "hideLiveboardHeader", + "title": "Methods", + "kind": 2048, + "children": [ + 159, + 178, + 58, + 146, + 173, + 153, + 161, + 171, + 138, + 132, + 150, + 163, + 60, + 167, + 169, + 142 + ] + } + ], + "sources": [ + { + "fileName": "embed/search.ts", + "line": 294, + "character": 13 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "TsEmbed" + } + ] + }, + { + "id": 1825, + "name": "AppViewConfig", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "The view configuration for full app embedding.", + "tags": [ + { + "tag": "group", + "text": "Embed components\n" + } + ] + }, + "children": [ + { + "id": 1859, + "name": "additionalFlags", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide Liveboard header", + "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", "tags": [ { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl" - }, - { - "tag": "default", - "text": "false" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideLiveboardHeader : true,\n})\n```\n" + "tag": "version", + "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" } ] }, "sources": [ { - "fileName": "embed/app.ts", - "line": 284, + "fileName": "types.ts", + "line": 797, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reflection", + "declaration": { + "id": 1860, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 1861, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 1862, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.additionalFlags" } }, { - "id": 1561, - "name": "hideObjects", + "id": 1885, + "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The array of GUIDs to be hidden", + "shortText": "To set the initial state of the search bar in case of saved Answers.", "tags": [ + { + "tag": "default", + "text": "true" + }, { "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1-sw" + "text": "SDK: 1.34.0 | Thoughtspot: 10.3.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideObjects: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" } ] }, "sources": [ { - "fileName": "embed/app.ts", - "line": 238, + "fileName": "types.ts", + "line": 1030, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.collapseSearchBar" } }, { - "id": 1557, - "name": "hideOrgSwitcher", + "id": 1844, + "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Control the visibility of the Org switcher button on the nav-bar.\nBy default, the Org switcher button is shown.", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "shortText": "To set the initial state of the search bar in case of saved-answers.", "tags": [ { "tag": "version", - "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" + "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" }, { "tag": "default", - "text": "true" + "text": "false" }, { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideOrgSwitcher : true,\n})\n```\n" + "tag": "deprecated", + "text": "Use {@link collapseSearchBar} instead\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 175, + "line": 348, "character": 4 } ], @@ -15943,162 +16611,188 @@ } }, { - "id": 1576, - "name": "homePageSearchBarMode", + "id": 1864, + "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to use home page search bar mode", + "shortText": "flag to set ContextMenu Trigger to either left or right click.", "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" + }, { "tag": "version", - "text": "SDK : 1.33.0 | Thoughtspot : 10.2.0.cl\n" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/app.ts", - "line": 404, + "fileName": "types.ts", + "line": 829, "character": 4 } ], "type": { "type": "reference", - "name": "HomePageSearchBarMode" + "id": 1595, + "name": "ContextMenuTriggerOptions" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.contextMenuTrigger" } }, { - "id": 1603, - "name": "insertAsSibling", + "id": 1852, + "name": "customizations", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", "tags": [ { "tag": "version", - "text": "SDK: 1.2.0 | Thoughtspot: 9.0.0.cl, 9.0.0.sw" + "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" + "tag": "default", + "text": "''\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 818, + "line": 804, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "id": 1931, + "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "name": "Omit.insertAsSibling" + "name": "Omit.customizations" } }, { - "id": 1577, - "name": "isLiveboardCompactHeaderEnabled", + "id": 1845, + "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to enable the compact header in liveboard", + "shortText": "This controls the initial behaviour of custom column groups accordion.\nIt takes DataPanelCustomColumnGroupsAccordionState enum values as input.\nList of different enum values:-\n- EXPAND_ALL: Expand all the accordion initially in data panel v2.\n- COLLAPSE_ALL: Collapse all the accordions initially in data panel v2.\n- EXPAND_FIRST: Expand the first accordion and collapse the rest.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "version", + "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" }, { - "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot:10.3.0.cl" + "tag": "default", + "text": "DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n isLiveboardCompactHeaderEnabled: true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#embed', {\n ... // other app view config\n dataPanelCustomGroupsAccordionInitialState:\n DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL,\n});\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 418, + "line": 367, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 1569, - "name": "isLiveboardHeaderSticky", + "id": 1886, + "name": "dataPanelV2", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to control if Liveboard header is sticky or not.", + "shortText": "Flag to control Data panel experience", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed', {\n ... // other app view config\n isLiveboardHeaderSticky: true,\n});\n```" + "tag": "default", + "text": "false" }, { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl\n" + "text": "SDK: 1.34.0 | Thoughtspot: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/app.ts", - "line": 335, + "fileName": "types.ts", + "line": 1055, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.dataPanelV2" } }, { - "id": 1575, - "name": "isOnBeforeGetVizDataInterceptEnabled", + "id": 1828, + "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to use OnBeforeSearchExecute embed event", + "shortText": "Control the visibility of the help (?) and profile buttons on the\nGlobal nav-bar. By default, these buttons are visible on the nav-bar.", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK : 1.29.0 | Thoughtspot : 10.1.0.cl\n" + "text": "SDK: 1.2.0 | Thoughtspot: 8.4.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n disableProfileAndHelp: true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 399, + "line": 139, "character": 4 } ], @@ -16108,30 +16802,30 @@ } }, { - "id": 1593, - "name": "linkOverride", + "id": 1867, + "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to override openNew tab context menu link", + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", "tags": [ { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" + "tag": "version", + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 842, + "line": 1042, "character": 4 } ], @@ -16141,34 +16835,34 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.linkOverride" + "name": "Omit.disableRedirectionLinksInNewTab" } }, { - "id": 1591, - "name": "locale", + "id": 1854, + "name": "disabledActionReason", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The locale/language to use for the embedded view.", + "shortText": "The tooltip to display for disabled actions.", "tags": [ { "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 778, + "line": 682, "character": 4 } ], @@ -16178,301 +16872,302 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.locale" + "name": "Omit.disabledActionReason" } }, { - "id": 1568, - "name": "modularHomeExperience", + "id": 1853, + "name": "disabledActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to control new Modular Home experience.", + "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", "tags": [ - { - "tag": "default", - "text": "false" - }, { "tag": "version", - "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n modularHomeExperience : true,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" } ] }, "sources": [ { - "fileName": "embed/app.ts", - "line": 323, + "fileName": "types.ts", + "line": 669, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 1475, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.disabledActions" } }, { - "id": 1559, - "name": "pageId", + "id": 1881, + "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The application page to set as the start page\nin the embedded view.", - "text": "Use this to open to particular page in the app. To open to a specific\npath within the app, use the `path` attribute which is more flexible.", + "shortText": "Determines whether the PreRender component should not dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK: 1.1.0 | Thoughtspot: 9.4.0.cl" + "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n pageId : Page.Answers | Page.Data\n})\n```\n" + "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" } ] }, "sources": [ { - "fileName": "embed/app.ts", - "line": 209, + "fileName": "types.ts", + "line": 989, "character": 4 } ], "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { "type": "reference", - "id": 1027, - "name": "Page" + "name": "Omit.doNotTrackPreRenderSize" } }, { - "id": 1558, - "name": "path", + "id": 1846, + "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "A URL path to the embedded application page\nIf both path and pageId attributes are defined, the path definition\ntakes precedence. This is the path post the `#/` in the URL of the standalone\nThoughtSpot app. Use this to open the embedded view to a specific path.", - "text": "For eg, if you want the component to open to a specific Liveboard\nyou could set the path to `pinboard//tab/`.", + "shortText": "This attribute can be used to enable the two-column layout on an embedded Liveboard", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK: 1.1.0 | Thoughtspot: 9.4.0.cl" + "text": "SDK: 1.32.0 | ThoughtSpot:10.1.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n path:\"pinboard/1234/tab/7464\"\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n enable2ColumnLayout: true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 193, + "line": 381, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 1596, - "name": "preRenderId", + "id": 1843, + "name": "enableAskSage", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", + "shortText": "enable or disable ask sage", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" + "tag": "version", + "text": "SDK: 1.29.0 | Thoughtspot: 9.12.0.cl" }, { - "tag": "version", - "text": "SDK: 1.25.0 | Thoughtspot: 9.6.0.cl, 9.8.0.sw\n" + "tag": "default", + "text": "false\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 969, + "fileName": "embed/app.ts", + "line": 341, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.preRenderId" + "name": "boolean" } }, { - "id": 1607, - "name": "reorderedHomepageModules", + "id": 1887, + "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "shortText": "To enable custom column groups in data panel v2", "tags": [ { "tag": "version", - "text": "SDK: 1.28.0| Thoughtspot: 9.12.5.cl" + "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" + }, + { + "tag": "default", + "text": "false" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 918, + "line": 1068, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1634, - "name": "HomepageModule" - } + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.reorderedHomepageModules" + "name": "Omit.enableCustomColumnGroups" } }, { - "id": 1601, - "name": "runtimeFilters", + "id": 1836, + "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of runtime filters to apply to a search answer,\nvisualization, or Liveboard.", + "shortText": "If set to true, the Search Assist feature is enabled.", "tags": [ + { + "tag": "default", + "text": "true" + }, { "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + "text": "SDK: 1.13.0 | ThoughtSpot: 8.5.0.cl, 8.8.1-sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n enableSearchAssist: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 748, + "fileName": "embed/app.ts", + "line": 258, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1048, - "name": "RuntimeFilter" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.runtimeFilters" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1602, - "name": "runtimeParameters", + "id": 1884, + "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of parameter override to apply to a search answer,\nvisualization, or Liveboard.", + "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", "tags": [ { - "tag": "version", - "text": "SDK : 1.25.0 | Thoughtspot: 9.2.0.cl, 9.5.0.sw" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" + "tag": "version", + "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 766, + "line": 1018, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1769, - "name": "RuntimeParameter" - } + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.runtimeParameters" + "name": "Omit.enableV2Shell_experimental" } }, { - "id": 1586, - "name": "showAlerts", + "id": 1877, + "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", "tags": [ { - "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" + "tag": "default", + "text": "false" }, { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 729, + "line": 867, "character": 4 } ], @@ -16482,75 +17177,110 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.showAlerts" + "name": "Omit.excludeRuntimeFiltersfromURL" } }, { - "id": 1567, - "name": "showLiveboardDescription", + "id": 1883, + "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide Liveboard description", + "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", "tags": [ - { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl" - }, { "tag": "default", "text": "false" }, { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n showLiveboardDescription:true,\n})\n```\n" + "tag": "version", + "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/app.ts", - "line": 310, + "fileName": "types.ts", + "line": 1004, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.excludeRuntimeParametersfromURL" } }, { - "id": 1579, - "name": "showLiveboardReverifyBanner", + "id": 1870, + "name": "frameParams", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to show/hide re-verify banner in liveboard compact header", + "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", "tags": [ { - "tag": "default", - "text": "true" + "tag": "version", + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 645, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 1893, + "name": "FrameParams" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.frameParams" + } + }, + { + "id": 1837, + "name": "fullHeight", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "If set to true, the embedded object container dynamically resizes\naccording to the height of the pages which support fullHeight mode.", + "tags": [ { "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.4.0.cl, 9.4.0-sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showLiveboardReverifyBanner: true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n fullHeight: true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 446, + "line": 271, "character": 4 } ], @@ -16560,108 +17290,203 @@ } }, { - "id": 1566, - "name": "showLiveboardTitle", + "id": 1855, + "name": "hiddenActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide Liveboard title", + "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", "tags": [ { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { - "tag": "default", - "text": "false" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n showLiveboardTitle:true,\n})\n```\n" + "tag": "important", + "text": "\n" } ] }, "sources": [ { - "fileName": "embed/app.ts", - "line": 297, + "fileName": "types.ts", + "line": 697, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 1475, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.hiddenActions" } }, { - "id": 1578, - "name": "showLiveboardVerifiedBadge", + "id": 1880, + "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to show/hide verified Icon in liveboard compact header", + "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", "tags": [ { - "tag": "default", - "text": "true" + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." }, { "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" + "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 953, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1899, + "name": "HomeLeftNavItem" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.hiddenHomeLeftNavItems" + } + }, + { + "id": 1878, + "name": "hiddenHomepageModules", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showLiveboardVerifiedBadge: true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/app.ts", - "line": 432, + "fileName": "types.ts", + "line": 900, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 1907, + "name": "HomepageModule" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.hiddenHomepageModules" } }, { - "id": 1553, - "name": "showPrimaryNavbar", + "id": 1857, + "name": "hiddenTabs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If true, the top navigation bar within the ThoughtSpot app\nis displayed. By default, the navigation bar is hidden.\nThis flag also controls the homepage left navigation bar.", + "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", "tags": [ { - "tag": "default", - "text": "true" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" }, { "tag": "version", - "text": "SDK: 1.2.0 | Thoughtspot: 8.4.0.cl" + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 883, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.hiddenTabs" + } + }, + { + "id": 1829, + "name": "hideApplicationSwitcher", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Control the visibility of the application switcher button on the nav-bar.\nBy default, the application switcher is shown.", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" + }, + { + "tag": "default", + "text": "false" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n showPrimaryNavbar:true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideApplicationSwitcher : true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 105, + "line": 157, "character": 4 } ], @@ -16671,498 +17496,1663 @@ } }, { - "id": 1560, - "name": "tag", + "id": 1827, + "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This puts a filter tag on the application. All metadata lists in the\napplication, such as Liveboards and answers, would be filtered by this\ntag.", + "shortText": "Control the visibility of the left navigation bar on the Homepage.\nIf showPrimaryNavbar is true, that is, if the Global and Homepage\nnav-bars are visible, this flag will only hide the homepage left nav-bar.\nThe showPrimaryNavbar flag takes precedence over the hideHomepageLeftNav.", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK: 1.1.0 | Thoughtspot: 9.4.0.cl" + "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n tag:'value',\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideHomepageLeftNav : true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 223, + "line": 125, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 1584, - "name": "visibleActions", + "id": 1838, + "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", - "text": "Use either this or hiddenActions.", + "shortText": "Show or hide Liveboard header", "tags": [ { "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl" }, { - "tag": "important", - "text": "" + "tag": "default", + "text": "false" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideLiveboardHeader : true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 716, + "fileName": "embed/app.ts", + "line": 284, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1205, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.visibleActions" + "type": "intrinsic", + "name": "boolean" } - } - ], - "groups": [ + }, { - "title": "Properties", + "id": 1834, + "name": "hideObjects", "kind": 1024, - "children": [ - 1587, - 1613, - 1571, - 1592, - 1580, - 1573, - 1614, - 1555, - 1595, - 1582, - 1581, - 1609, - 1574, - 1570, - 1572, - 1563, - 1612, - 1605, - 1611, - 1598, - 1564, - 1583, - 1608, - 1606, - 1585, - 1556, - 1554, - 1565, - 1561, - 1557, - 1576, - 1603, - 1577, - 1569, - 1575, - 1593, - 1591, - 1568, - 1559, - 1558, - 1596, - 1607, - 1601, - 1602, - 1586, - 1567, - 1579, - 1566, - 1578, - 1553, - 1560, - 1584 - ] - } - ], - "sources": [ - { - "fileName": "embed/app.ts", - "line": 90, - "character": 17 - } - ], - "extendedTypes": [ - { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "ViewConfig" - }, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The array of GUIDs to be hidden", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1-sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideObjects: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" + } + ] + }, + "sources": [ { - "type": "literal", - "value": "visibleTabs" + "fileName": "embed/app.ts", + "line": 238, + "character": 4 } ], - "name": "Omit" - } - ] - }, - { - "id": 900, - "name": "AuthEventEmitter", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "Event emitter returned from {@link init}.", - "tags": [ - { - "tag": "group", - "text": "Authentication / Init\n" + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } - ] - }, - "children": [ + }, { - "id": 937, - "name": "emit", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "signatures": [ - { - "id": 938, - "name": "emit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Trigger an event on the emitter returned from init." + "id": 1830, + "name": "hideOrgSwitcher", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Control the visibility of the Org switcher button on the nav-bar.\nBy default, the Org switcher button is shown.", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" }, - "parameters": [ - { - "id": 939, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 899, - "name": "TRIGGER_SSO_POPUP" - } - }, - { - "id": 940, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" + { + "tag": "default", + "text": "true" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideOrgSwitcher : true,\n})\n```\n" } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 175, + "character": 4 } - ] + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } }, { - "id": 941, - "name": "off", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "signatures": [ + "id": 1848, + "name": "homePageSearchBarMode", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to use home page search bar mode", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.33.0 | Thoughtspot : 10.3.0.cl\n" + } + ] + }, + "sources": [ { - "id": 942, - "name": "off", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Remove listener from the emitter returned from init." + "fileName": "embed/app.ts", + "line": 391, + "character": 4 + } + ], + "type": { + "type": "reference", + "name": "HomePageSearchBarMode" + } + }, + { + "id": 1875, + "name": "insertAsSibling", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.2.0 | Thoughtspot: 9.0.0.cl, 9.0.0.sw" }, - "parameters": [ - { - "id": 943, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "reference", - "id": 892, - "name": "AuthStatus" - } - }, - { - "id": 944, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 945, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 946, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 947, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - }, - { - "id": 948, - "name": "context", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - }, - { - "id": 949, - "name": "once", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "\n" - }, - "type": { - "type": "intrinsic", - "name": "boolean" - } - } - ], - "type": { - "type": "reference", - "id": 900, - "name": "AuthEventEmitter" + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 817, + "character": 4 } - ] + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.insertAsSibling" + } }, { - "id": 901, - "name": "on", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "signatures": [ - { - "id": 902, - "name": "on", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Register a listener on Auth failure." + "id": 1849, + "name": "isLiveboardCompactHeaderEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag can be used to enable the compact header in Liveboard", + "tags": [ + { + "tag": "default", + "text": "false" }, - "parameters": [ - { - "id": 903, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "reference", - "id": 893, - "name": "FAILURE" - } - }, - { - "id": 904, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "\n" - }, - "type": { - "type": "reflection", - "declaration": { - "id": 905, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 906, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 907, - "name": "failureType", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 887, - "name": "AuthFailureType" - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 900, - "name": "AuthEventEmitter" + { + "tag": "version", + "text": "SDK: 1.35.0 | ThoughtSpot:10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n isLiveboardCompactHeaderEnabled: true,\n})\n```\n" } - }, + ] + }, + "sources": [ { - "id": 908, - "name": "on", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Register a listener on Auth SDK success." + "fileName": "embed/app.ts", + "line": 405, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1842, + "name": "isLiveboardHeaderSticky", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Boolean to control if Liveboard header is sticky or not.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed', {\n ... // other app view config\n isLiveboardHeaderSticky: true,\n});\n```" }, - "parameters": [ - { - "id": 909, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "id": 894, - "name": "SDK_SUCCESS" - }, - { - "type": "reference", - "id": 896, - "name": "LOGOUT" - }, - { - "type": "reference", - "id": 897, - "name": "WAITING_FOR_POPUP" - } - ] - } - }, - { - "id": 910, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "\n" - }, - "type": { - "type": "reflection", - "declaration": { - "id": 911, + { + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 335, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1847, + "name": "isOnBeforeGetVizDataInterceptEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.29.0 | Thoughtspot : 10.1.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 386, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1865, + "name": "linkOverride", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to override openNew tab context menu link", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 841, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.linkOverride" + } + }, + { + "id": 1863, + "name": "locale", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The locale/language to use for the embedded view.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 777, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.locale" + } + }, + { + "id": 1841, + "name": "modularHomeExperience", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to control new Modular Home experience.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n modularHomeExperience : true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 323, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1832, + "name": "pageId", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The application page to set as the start page\nin the embedded view.", + "text": "Use this to open to particular page in the app. To open to a specific\npath within the app, use the `path` attribute which is more flexible.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.1.0 | Thoughtspot: 9.4.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n pageId : Page.Answers | Page.Data\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 209, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 1297, + "name": "Page" + } + }, + { + "id": 1831, + "name": "path", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "A URL path to the embedded application page\nIf both path and pageId attributes are defined, the path definition\ntakes precedence. This is the path post the `#/` in the URL of the standalone\nThoughtSpot app. Use this to open the embedded view to a specific path.", + "text": "For eg, if you want the component to open to a specific Liveboard\nyou could set the path to `pinboard//tab/`.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.1.0 | Thoughtspot: 9.4.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n path:\"pinboard/1234/tab/7464\"\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 193, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1868, + "name": "preRenderId", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" + }, + { + "tag": "version", + "text": "SDK: 1.25.0 | Thoughtspot: 9.6.0.cl, 9.8.0.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 968, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.preRenderId" + } + }, + { + "id": 1879, + "name": "reorderedHomepageModules", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.0| Thoughtspot: 9.12.5.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 917, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1907, + "name": "HomepageModule" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.reorderedHomepageModules" + } + }, + { + "id": 1873, + "name": "runtimeFilters", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of runtime filters to apply to a search answer,\nvisualization, or Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 747, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1318, + "name": "RuntimeFilter" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.runtimeFilters" + } + }, + { + "id": 1874, + "name": "runtimeParameters", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of parameter override to apply to a search answer,\nvisualization, or Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.25.0 | Thoughtspot: 9.2.0.cl, 9.5.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 765, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2042, + "name": "RuntimeParameter" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.runtimeParameters" + } + }, + { + "id": 1858, + "name": "showAlerts", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 728, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.showAlerts" + } + }, + { + "id": 1840, + "name": "showLiveboardDescription", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Show or hide Liveboard description", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n showLiveboardDescription:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 310, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1851, + "name": "showLiveboardReverifyBanner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag can be used to show or hide the re-verify banner on the Liveboard compact header", + "tags": [ + { + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showLiveboardReverifyBanner: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 433, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1839, + "name": "showLiveboardTitle", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Show or hide Liveboard title", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n showLiveboardTitle:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 297, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1850, + "name": "showLiveboardVerifiedBadge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag can be used to show or hide the Liveboard verified icon in the compact header.", + "tags": [ + { + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showLiveboardVerifiedBadge: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 419, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1826, + "name": "showPrimaryNavbar", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "If true, the top navigation bar within the ThoughtSpot app\nis displayed. By default, the navigation bar is hidden.\nThis flag also controls the homepage left navigation bar.", + "tags": [ + { + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.2.0 | Thoughtspot: 8.4.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n showPrimaryNavbar:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 105, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1833, + "name": "tag", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This puts a filter tag on the application. All metadata lists in the\napplication, such as Liveboards and answers, would be filtered by this\ntag.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.1.0 | Thoughtspot: 9.4.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n tag:'value',\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 223, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1856, + "name": "visibleActions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", + "text": "Use either this or hiddenActions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "important", + "text": "" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 715, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1475, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.visibleActions" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1859, + 1885, + 1844, + 1864, + 1852, + 1845, + 1886, + 1828, + 1867, + 1854, + 1853, + 1881, + 1846, + 1843, + 1887, + 1836, + 1884, + 1877, + 1883, + 1870, + 1837, + 1855, + 1880, + 1878, + 1857, + 1829, + 1827, + 1838, + 1834, + 1830, + 1848, + 1875, + 1849, + 1842, + 1847, + 1865, + 1863, + 1841, + 1832, + 1831, + 1868, + 1879, + 1873, + 1874, + 1858, + 1840, + 1851, + 1839, + 1850, + 1826, + 1833, + 1856 + ] + } + ], + "sources": [ + { + "fileName": "embed/app.ts", + "line": 90, + "character": 17 + } + ], + "extendedTypes": [ + { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ViewConfig" + }, + { + "type": "literal", + "value": "visibleTabs" + } + ], + "name": "Omit" + } + ] + }, + { + "id": 1161, + "name": "AuthEventEmitter", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "Event emitter returned from {@link init}.", + "tags": [ + { + "tag": "group", + "text": "Authentication / Init\n" + } + ] + }, + "children": [ + { + "id": 1198, + "name": "emit", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "signatures": [ + { + "id": 1199, + "name": "emit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Trigger an event on the emitter returned from init." + }, + "parameters": [ + { + "id": 1200, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1160, + "name": "TRIGGER_SSO_POPUP" + } + }, + { + "id": 1201, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ] + }, + { + "id": 1202, + "name": "off", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "signatures": [ + { + "id": 1203, + "name": "off", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Remove listener from the emitter returned from init." + }, + "parameters": [ + { + "id": 1204, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "reference", + "id": 1153, + "name": "AuthStatus" + } + }, + { + "id": 1205, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1206, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ + { + "id": 1207, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1208, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + }, + { + "id": 1209, + "name": "context", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + }, + { + "id": 1210, + "name": "once", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "\n" + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "type": { + "type": "reference", + "id": 1161, + "name": "AuthEventEmitter" + } + } + ] + }, + { + "id": 1162, + "name": "on", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "signatures": [ + { + "id": 1163, + "name": "on", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Register a listener on Auth failure." + }, + "parameters": [ + { + "id": 1164, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "reference", + "id": 1154, + "name": "FAILURE" + } + }, + { + "id": 1165, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "\n" + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1166, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ + { + "id": 1167, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1168, + "name": "failureType", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1148, + "name": "AuthFailureType" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1161, + "name": "AuthEventEmitter" + } + }, + { + "id": 1169, + "name": "on", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Register a listener on Auth SDK success." + }, + "parameters": [ + { + "id": 1170, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "union", + "types": [ + { + "type": "reference", + "id": 1155, + "name": "SDK_SUCCESS" + }, + { + "type": "reference", + "id": 1157, + "name": "LOGOUT" + }, + { + "type": "reference", + "id": 1158, + "name": "WAITING_FOR_POPUP" + } + ] + } + }, + { + "id": 1171, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "\n" + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1172, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ + { + "id": 1173, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1161, + "name": "AuthEventEmitter" + } + }, + { + "id": 1174, + "name": "on", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1175, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1156, + "name": "SUCCESS" + } + }, + { + "id": 1176, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1177, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ + { + "id": 1178, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1179, + "name": "sessionInfo", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1161, + "name": "AuthEventEmitter" + } + } + ] + }, + { + "id": 1180, + "name": "once", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "signatures": [ + { + "id": 1181, + "name": "once", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1182, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1154, + "name": "FAILURE" + } + }, + { + "id": 1183, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1184, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ + { + "id": 1185, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1186, + "name": "failureType", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1148, + "name": "AuthFailureType" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1161, + "name": "AuthEventEmitter" + } + }, + { + "id": 1187, + "name": "once", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1188, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "reference", + "id": 1155, + "name": "SDK_SUCCESS" + }, + { + "type": "reference", + "id": 1157, + "name": "LOGOUT" + }, + { + "type": "reference", + "id": 1158, + "name": "WAITING_FOR_POPUP" + } + ] + } + }, + { + "id": 1189, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1190, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ + { + "id": 1191, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1161, + "name": "AuthEventEmitter" + } + }, + { + "id": 1192, + "name": "once", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1193, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1156, + "name": "SUCCESS" + } + }, + { + "id": 1194, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1195, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 912, + "id": 1196, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, + "parameters": [ + { + "id": 1197, + "name": "sessionInfo", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + } + ], "type": { "type": "intrinsic", "name": "void" @@ -17172,368 +19162,2562 @@ } } } - ], - "type": { - "type": "reference", - "id": 900, - "name": "AuthEventEmitter" + ], + "type": { + "type": "reference", + "id": 1161, + "name": "AuthEventEmitter" + } + } + ] + }, + { + "id": 1211, + "name": "removeAllListeners", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "signatures": [ + { + "id": 1212, + "name": "removeAllListeners", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Remove all the event listeners" + }, + "parameters": [ + { + "id": 1213, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "\n" + }, + "type": { + "type": "reference", + "id": 1153, + "name": "AuthStatus" + } + } + ], + "type": { + "type": "reference", + "id": 1161, + "name": "AuthEventEmitter" + } + } + ] + } + ], + "groups": [ + { + "title": "Methods", + "kind": 2048, + "children": [ + 1198, + 1202, + 1162, + 1180, + 1211 + ] + } + ], + "sources": [ + { + "fileName": "auth.ts", + "line": 78, + "character": 17 + } + ] + }, + { + "id": 940, + "name": "BodylessConversationViewConfig", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 954, + "name": "additionalFlags", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 797, + "character": 4 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 955, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 956, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 957, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.additionalFlags" + } + }, + { + "id": 975, + "name": "collapseSearchBar", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "To set the initial state of the search bar in case of saved Answers.", + "tags": [ + { + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.34.0 | Thoughtspot: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1030, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.collapseSearchBar" + } + }, + { + "id": 960, + "name": "contextMenuTrigger", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "flag to set ContextMenu Trigger to either left or right click.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 829, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 1595, + "name": "ContextMenuTriggerOptions" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.contextMenuTrigger" + } + }, + { + "id": 958, + "name": "customizations", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" + }, + { + "tag": "default", + "text": "''\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 804, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 1931, + "name": "CustomisationsInterface" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.customizations" + } + }, + { + "id": 977, + "name": "dataPanelV2", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to control Data panel experience", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.34.0 | Thoughtspot: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1055, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.dataPanelV2" + } + }, + { + "id": 976, + "name": "disableRedirectionLinksInNewTab", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1042, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.disableRedirectionLinksInNewTab" + } + }, + { + "id": 947, + "name": "disabledActionReason", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The tooltip to display for disabled actions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 682, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.disabledActionReason" + } + }, + { + "id": 946, + "name": "disabledActions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 669, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1475, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.disabledActions" + } + }, + { + "id": 971, + "name": "doNotTrackPreRenderSize", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Determines whether the PreRender component should not dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" + }, + { + "tag": "example", + "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 989, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.doNotTrackPreRenderSize" + } + }, + { + "id": 978, + "name": "enableCustomColumnGroups", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "To enable custom column groups in data panel v2", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1068, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.enableCustomColumnGroups" + } + }, + { + "id": 974, + "name": "enableV2Shell_experimental", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1018, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.enableV2Shell_experimental" + } + }, + { + "id": 964, + "name": "excludeRuntimeFiltersfromURL", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 867, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.excludeRuntimeFiltersfromURL" + } + }, + { + "id": 973, + "name": "excludeRuntimeParametersfromURL", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1004, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.excludeRuntimeParametersfromURL" + } + }, + { + "id": 943, + "name": "frameParams", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 645, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 1893, + "name": "FrameParams" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.frameParams" + } + }, + { + "id": 948, + "name": "hiddenActions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" + }, + { + "tag": "important", + "text": "\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 697, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1475, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenActions" + } + }, + { + "id": 969, + "name": "hiddenHomeLeftNavItems", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." + }, + { + "tag": "version", + "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 953, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1899, + "name": "HomeLeftNavItem" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenHomeLeftNavItems" + } + }, + { + "id": 966, + "name": "hiddenHomepageModules", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 900, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1907, + "name": "HomepageModule" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenHomepageModules" + } + }, + { + "id": 965, + "name": "hiddenTabs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 883, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenTabs" + } + }, + { + "id": 959, + "name": "insertAsSibling", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.2.0 | Thoughtspot: 9.0.0.cl, 9.0.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 817, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.insertAsSibling" + } + }, + { + "id": 961, + "name": "linkOverride", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to override openNew tab context menu link", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 841, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.linkOverride" + } + }, + { + "id": 953, + "name": "locale", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The locale/language to use for the embedded view.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 777, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.locale" + } + }, + { + "id": 970, + "name": "preRenderId", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" + }, + { + "tag": "version", + "text": "SDK: 1.25.0 | Thoughtspot: 9.6.0.cl, 9.8.0.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 968, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.preRenderId" + } + }, + { + "id": 967, + "name": "reorderedHomepageModules", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.0| Thoughtspot: 9.12.5.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 917, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1907, + "name": "HomepageModule" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.reorderedHomepageModules" + } + }, + { + "id": 951, + "name": "runtimeFilters", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of runtime filters to apply to a search answer,\nvisualization, or Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 747, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1318, + "name": "RuntimeFilter" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.runtimeFilters" + } + }, + { + "id": 952, + "name": "runtimeParameters", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of parameter override to apply to a search answer,\nvisualization, or Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.25.0 | Thoughtspot: 9.2.0.cl, 9.5.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 765, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2042, + "name": "RuntimeParameter" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.runtimeParameters" + } + }, + { + "id": 950, + "name": "showAlerts", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 728, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.showAlerts" + } + }, + { + "id": 949, + "name": "visibleActions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", + "text": "Use either this or hiddenActions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "important", + "text": "" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 715, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1475, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.visibleActions" + } + }, + { + "id": 968, + "name": "visibleTabs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", + "text": "Use either `visibleTabs` or `hiddenTabs`.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 935, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.visibleTabs" + } + }, + { + "id": 941, + "name": "worksheetId", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "comment": { + "shortText": "The ID of the worksheet to use for the conversation." + }, + "sources": [ + { + "fileName": "embed/bodyless-conversation.ts", + "line": 11, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 954, + 975, + 960, + 958, + 977, + 976, + 947, + 946, + 971, + 978, + 974, + 964, + 973, + 943, + 948, + 969, + 966, + 965, + 959, + 961, + 953, + 970, + 967, + 951, + 952, + 950, + 949, + 968, + 941 + ] + } + ], + "sources": [ + { + "fileName": "embed/bodyless-conversation.ts", + "line": 7, + "character": 17 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "ViewConfig" + } + ] + }, + { + "id": 1108, + "name": "ConversationViewConfig", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 1123, + "name": "additionalFlags", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 797, + "character": 4 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1124, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 1125, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 1126, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.additionalFlags" + } + }, + { + "id": 1144, + "name": "collapseSearchBar", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "To set the initial state of the search bar in case of saved Answers.", + "tags": [ + { + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.34.0 | Thoughtspot: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1030, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.collapseSearchBar" + } + }, + { + "id": 1129, + "name": "contextMenuTrigger", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "flag to set ContextMenu Trigger to either left or right click.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 829, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 1595, + "name": "ContextMenuTriggerOptions" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.contextMenuTrigger" + } + }, + { + "id": 1127, + "name": "customizations", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" + }, + { + "tag": "default", + "text": "''\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 804, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 1931, + "name": "CustomisationsInterface" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.customizations" + } + }, + { + "id": 1146, + "name": "dataPanelV2", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to control Data panel experience", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.34.0 | Thoughtspot: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1055, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.dataPanelV2" + } + }, + { + "id": 1145, + "name": "disableRedirectionLinksInNewTab", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1042, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.disableRedirectionLinksInNewTab" + } + }, + { + "id": 1116, + "name": "disabledActionReason", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The tooltip to display for disabled actions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 682, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.disabledActionReason" + } + }, + { + "id": 1115, + "name": "disabledActions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 669, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1475, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.disabledActions" + } + }, + { + "id": 1140, + "name": "doNotTrackPreRenderSize", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Determines whether the PreRender component should not dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" + }, + { + "tag": "example", + "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 989, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.doNotTrackPreRenderSize" + } + }, + { + "id": 1147, + "name": "enableCustomColumnGroups", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "To enable custom column groups in data panel v2", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1068, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.enableCustomColumnGroups" + } + }, + { + "id": 1143, + "name": "enableV2Shell_experimental", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1018, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.enableV2Shell_experimental" + } + }, + { + "id": 1133, + "name": "excludeRuntimeFiltersfromURL", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 867, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.excludeRuntimeFiltersfromURL" + } + }, + { + "id": 1142, + "name": "excludeRuntimeParametersfromURL", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1004, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.excludeRuntimeParametersfromURL" + } + }, + { + "id": 1112, + "name": "frameParams", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 645, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 1893, + "name": "FrameParams" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.frameParams" + } + }, + { + "id": 1117, + "name": "hiddenActions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" + }, + { + "tag": "important", + "text": "\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 697, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1475, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenActions" + } + }, + { + "id": 1138, + "name": "hiddenHomeLeftNavItems", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." + }, + { + "tag": "version", + "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 953, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1899, + "name": "HomeLeftNavItem" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenHomeLeftNavItems" + } + }, + { + "id": 1135, + "name": "hiddenHomepageModules", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 900, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1907, + "name": "HomepageModule" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenHomepageModules" + } + }, + { + "id": 1134, + "name": "hiddenTabs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 883, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenTabs" + } + }, + { + "id": 1128, + "name": "insertAsSibling", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.2.0 | Thoughtspot: 9.0.0.cl, 9.0.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 817, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.insertAsSibling" + } + }, + { + "id": 1130, + "name": "linkOverride", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to override openNew tab context menu link", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 841, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.linkOverride" + } + }, + { + "id": 1122, + "name": "locale", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The locale/language to use for the embedded view.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 777, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.locale" + } + }, + { + "id": 1139, + "name": "preRenderId", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" + }, + { + "tag": "version", + "text": "SDK: 1.25.0 | Thoughtspot: 9.6.0.cl, 9.8.0.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 968, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.preRenderId" + } + }, + { + "id": 1136, + "name": "reorderedHomepageModules", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.0| Thoughtspot: 9.12.5.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 917, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1907, + "name": "HomepageModule" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.reorderedHomepageModules" + } + }, + { + "id": 1120, + "name": "runtimeFilters", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of runtime filters to apply to a search answer,\nvisualization, or Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" } - }, + ] + }, + "sources": [ { - "id": 913, - "name": "on", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 914, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 895, - "name": "SUCCESS" - } - }, - { - "id": 915, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 916, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 917, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 918, - "name": "sessionInfo", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 900, - "name": "AuthEventEmitter" + "fileName": "types.ts", + "line": 747, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1318, + "name": "RuntimeFilter" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.runtimeFilters" + } + }, + { + "id": 1121, + "name": "runtimeParameters", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of parameter override to apply to a search answer,\nvisualization, or Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.25.0 | Thoughtspot: 9.2.0.cl, 9.5.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 765, + "character": 4 } - ] + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2042, + "name": "RuntimeParameter" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.runtimeParameters" + } }, { - "id": 919, - "name": "once", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "signatures": [ + "id": 1110, + "name": "searchOptions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Ability to pass a starting search query to the conversation." + }, + "sources": [ { - "id": 920, - "name": "once", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 921, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 893, - "name": "FAILURE" - } - }, - { - "id": 922, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 923, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 924, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 925, - "name": "failureType", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 887, - "name": "AuthFailureType" - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 900, - "name": "AuthEventEmitter" + "fileName": "embed/conversation.ts", + "line": 23, + "character": 4 + } + ], + "type": { + "type": "reference", + "name": "SearchOptions" + } + }, + { + "id": 1119, + "name": "showAlerts", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 728, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.showAlerts" + } + }, + { + "id": 1118, + "name": "visibleActions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", + "text": "Use either this or hiddenActions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "important", + "text": "" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" } - }, + ] + }, + "sources": [ { - "id": 926, - "name": "once", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 927, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "id": 894, - "name": "SDK_SUCCESS" - }, - { - "type": "reference", - "id": 896, - "name": "LOGOUT" - }, - { - "type": "reference", - "id": 897, - "name": "WAITING_FOR_POPUP" - } - ] - } - }, - { - "id": 928, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 929, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 930, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 900, - "name": "AuthEventEmitter" + "fileName": "types.ts", + "line": 715, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1475, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.visibleActions" + } + }, + { + "id": 1137, + "name": "visibleTabs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", + "text": "Use either `visibleTabs` or `hiddenTabs`.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" } - }, + ] + }, + "sources": [ { - "id": 931, - "name": "once", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 932, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 895, - "name": "SUCCESS" - } - }, - { - "id": 933, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 934, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 935, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 936, - "name": "sessionInfo", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 900, - "name": "AuthEventEmitter" - } + "fileName": "types.ts", + "line": 935, + "character": 4 } - ] + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.visibleTabs" + } }, { - "id": 950, - "name": "removeAllListeners", - "kind": 2048, - "kindString": "Method", + "id": 1109, + "name": "worksheetId", + "kind": 1024, + "kindString": "Property", "flags": {}, - "signatures": [ + "comment": { + "shortText": "The ID of the worksheet to use for the conversation." + }, + "sources": [ { - "id": 951, - "name": "removeAllListeners", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Remove all the event listeners" - }, - "parameters": [ - { - "id": 952, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "\n" - }, - "type": { - "type": "reference", - "id": 892, - "name": "AuthStatus" - } - } - ], - "type": { - "type": "reference", - "id": 900, - "name": "AuthEventEmitter" - } + "fileName": "embed/conversation.ts", + "line": 19, + "character": 4 } - ] + ], + "type": { + "type": "intrinsic", + "name": "string" + } } ], "groups": [ { - "title": "Methods", - "kind": 2048, + "title": "Properties", + "kind": 1024, "children": [ - 937, - 941, - 901, - 919, - 950 + 1123, + 1144, + 1129, + 1127, + 1146, + 1145, + 1116, + 1115, + 1140, + 1147, + 1143, + 1133, + 1142, + 1112, + 1117, + 1138, + 1135, + 1134, + 1128, + 1130, + 1122, + 1139, + 1136, + 1120, + 1121, + 1110, + 1119, + 1118, + 1137, + 1109 ] } ], - "sources": [ + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 15, + "character": 17 + } + ], + "extendedTypes": [ { - "fileName": "auth.ts", - "line": 78, - "character": 17 + "type": "reference", + "name": "ViewConfig" } ] }, { - "id": 1798, + "id": 2071, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -17548,7 +21732,7 @@ }, "children": [ { - "id": 1799, + "id": 2072, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -17558,21 +21742,21 @@ "sources": [ { "fileName": "types.ts", - "line": 4374, + "line": 4362, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1800, + "id": 2073, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1801, + "id": 2074, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -17580,18 +21764,18 @@ "sources": [ { "fileName": "types.ts", - "line": 4375, + "line": 4363, "character": 8 } ], "type": { "type": "reference", - "id": 1795, + "id": 2068, "name": "VizPoint" } }, { - "id": 1802, + "id": 2075, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -17599,7 +21783,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4376, + "line": 4364, "character": 8 } ], @@ -17607,7 +21791,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1795, + "id": 2068, "name": "VizPoint" } } @@ -17618,8 +21802,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1801, - 1802 + 2074, + 2075 ] } ] @@ -17627,7 +21811,7 @@ } }, { - "id": 1803, + "id": 2076, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -17635,21 +21819,21 @@ "sources": [ { "fileName": "types.ts", - "line": 4378, + "line": 4366, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1804, + "id": 2077, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1812, + "id": 2085, "name": "columns", "kind": 1024, "kindString": "Property", @@ -17657,7 +21841,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4386, + "line": 4374, "character": 8 } ], @@ -17670,7 +21854,7 @@ } }, { - "id": 1813, + "id": 2086, "name": "data", "kind": 1024, "kindString": "Property", @@ -17678,7 +21862,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4387, + "line": 4375, "character": 8 } ], @@ -17691,7 +21875,7 @@ } }, { - "id": 1806, + "id": 2079, "name": "id", "kind": 1024, "kindString": "Property", @@ -17699,7 +21883,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4380, + "line": 4368, "character": 8 } ], @@ -17709,7 +21893,7 @@ } }, { - "id": 1805, + "id": 2078, "name": "name", "kind": 1024, "kindString": "Property", @@ -17717,7 +21901,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4379, + "line": 4367, "character": 8 } ], @@ -17727,7 +21911,7 @@ } }, { - "id": 1807, + "id": 2080, "name": "sources", "kind": 1024, "kindString": "Property", @@ -17735,21 +21919,21 @@ "sources": [ { "fileName": "types.ts", - "line": 4381, + "line": 4369, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 1808, + "id": 2081, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1809, + "id": 2082, "name": "header", "kind": 1024, "kindString": "Property", @@ -17757,21 +21941,21 @@ "sources": [ { "fileName": "types.ts", - "line": 4382, + "line": 4370, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1810, + "id": 2083, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1811, + "id": 2084, "name": "guid", "kind": 1024, "kindString": "Property", @@ -17779,7 +21963,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4383, + "line": 4371, "character": 16 } ], @@ -17794,7 +21978,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1811 + 2084 ] } ] @@ -17807,7 +21991,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1809 + 2082 ] } ] @@ -17820,23 +22004,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1812, - 1813, - 1806, - 1805, - 1807 + 2085, + 2086, + 2079, + 2078, + 2080 ] } ], "indexSignature": { - "id": 1814, + "id": 2087, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1815, + "id": 2088, "name": "key", "kind": 32768, "flags": {}, @@ -17855,7 +22039,7 @@ } }, { - "id": 1816, + "id": 2089, "name": "session", "kind": 1024, "kindString": "Property", @@ -17863,18 +22047,18 @@ "sources": [ { "fileName": "types.ts", - "line": 4390, + "line": 4378, "character": 4 } ], "type": { "type": "reference", - "id": 1017, + "id": 1287, "name": "SessionInterface" } }, { - "id": 1817, + "id": 2090, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -17884,7 +22068,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4391, + "line": 4379, "character": 4 } ], @@ -17899,23 +22083,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1799, - 1803, - 1816, - 1817 + 2072, + 2076, + 2089, + 2090 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4373, + "line": 4361, "character": 17 } ] }, { - "id": 1678, + "id": 1951, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -17925,7 +22109,7 @@ }, "children": [ { - "id": 1730, + "id": 2003, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -17948,7 +22132,7 @@ } }, { - "id": 1729, + "id": 2002, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -17971,7 +22155,7 @@ } }, { - "id": 1699, + "id": 1972, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -17994,7 +22178,7 @@ } }, { - "id": 1700, + "id": 1973, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -18017,7 +22201,7 @@ } }, { - "id": 1702, + "id": 1975, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -18040,7 +22224,7 @@ } }, { - "id": 1701, + "id": 1974, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -18063,7 +22247,7 @@ } }, { - "id": 1683, + "id": 1956, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -18071,7 +22255,7 @@ "isOptional": true }, "comment": { - "shortText": "Font color of the text on toggle buttons such as\n**All**, **Answers**, and **Liveboards** on the Home page (Classic experience),\nthe text color of the chart and table tiles on Home page (New modular Homepage experience),\nand title text on the AI-generated charts and tables.\nThe default color code is #2770EF." + "shortText": "Font color of the text on toggle buttons such as\n**All**, **Answers**, and **Liveboards** on the Home page (Classic experience),\nthe text color of the chart and table tiles on Home page (New modular Homepage\nexperience), and title text on the AI-generated charts and tables.\nThe default color code is #2770EF." }, "sources": [ { @@ -18086,7 +22270,7 @@ } }, { - "id": 1742, + "id": 2015, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -18109,7 +22293,7 @@ } }, { - "id": 1743, + "id": 2016, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -18132,7 +22316,7 @@ } }, { - "id": 1740, + "id": 2013, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -18155,7 +22339,7 @@ } }, { - "id": 1741, + "id": 2014, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -18178,7 +22362,7 @@ } }, { - "id": 1704, + "id": 1977, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -18201,7 +22385,7 @@ } }, { - "id": 1709, + "id": 1982, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -18224,7 +22408,7 @@ } }, { - "id": 1706, + "id": 1979, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -18247,7 +22431,7 @@ } }, { - "id": 1708, + "id": 1981, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -18270,7 +22454,7 @@ } }, { - "id": 1707, + "id": 1980, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -18293,7 +22477,7 @@ } }, { - "id": 1705, + "id": 1978, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -18316,7 +22500,7 @@ } }, { - "id": 1714, + "id": 1987, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -18339,7 +22523,7 @@ } }, { - "id": 1711, + "id": 1984, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -18362,7 +22546,7 @@ } }, { - "id": 1713, + "id": 1986, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -18385,7 +22569,7 @@ } }, { - "id": 1712, + "id": 1985, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -18408,7 +22592,7 @@ } }, { - "id": 1710, + "id": 1983, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -18431,7 +22615,7 @@ } }, { - "id": 1718, + "id": 1991, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -18454,7 +22638,7 @@ } }, { - "id": 1717, + "id": 1990, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -18477,7 +22661,7 @@ } }, { - "id": 1716, + "id": 1989, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -18500,7 +22684,7 @@ } }, { - "id": 1715, + "id": 1988, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -18523,7 +22707,7 @@ } }, { - "id": 1703, + "id": 1976, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -18546,7 +22730,7 @@ } }, { - "id": 1765, + "id": 2038, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -18569,7 +22753,7 @@ } }, { - "id": 1768, + "id": 2041, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -18592,7 +22776,7 @@ } }, { - "id": 1763, + "id": 2036, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -18615,7 +22799,7 @@ } }, { - "id": 1766, + "id": 2039, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -18638,7 +22822,7 @@ } }, { - "id": 1767, + "id": 2040, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -18661,7 +22845,7 @@ } }, { - "id": 1762, + "id": 2035, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -18684,7 +22868,7 @@ } }, { - "id": 1764, + "id": 2037, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -18707,7 +22891,7 @@ } }, { - "id": 1735, + "id": 2008, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -18730,7 +22914,7 @@ } }, { - "id": 1734, + "id": 2007, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -18753,7 +22937,7 @@ } }, { - "id": 1737, + "id": 2010, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -18776,7 +22960,7 @@ } }, { - "id": 1736, + "id": 2009, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -18799,7 +22983,7 @@ } }, { - "id": 1733, + "id": 2006, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -18822,7 +23006,7 @@ } }, { - "id": 1731, + "id": 2004, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -18845,7 +23029,7 @@ } }, { - "id": 1732, + "id": 2005, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -18868,7 +23052,7 @@ } }, { - "id": 1738, + "id": 2011, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -18891,7 +23075,7 @@ } }, { - "id": 1739, + "id": 2012, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -18914,7 +23098,7 @@ } }, { - "id": 1750, + "id": 2023, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -18937,7 +23121,7 @@ } }, { - "id": 1751, + "id": 2024, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -18960,7 +23144,7 @@ } }, { - "id": 1754, + "id": 2027, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -18983,7 +23167,7 @@ } }, { - "id": 1752, + "id": 2025, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -19006,7 +23190,7 @@ } }, { - "id": 1753, + "id": 2026, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -19029,7 +23213,7 @@ } }, { - "id": 1761, + "id": 2034, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -19052,7 +23236,7 @@ } }, { - "id": 1760, + "id": 2033, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -19075,7 +23259,7 @@ } }, { - "id": 1759, + "id": 2032, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -19098,7 +23282,7 @@ } }, { - "id": 1758, + "id": 2031, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -19121,7 +23305,7 @@ } }, { - "id": 1756, + "id": 2029, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -19144,7 +23328,7 @@ } }, { - "id": 1755, + "id": 2028, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -19167,7 +23351,7 @@ } }, { - "id": 1748, + "id": 2021, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -19190,7 +23374,7 @@ } }, { - "id": 1745, + "id": 2018, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -19213,7 +23397,7 @@ } }, { - "id": 1744, + "id": 2017, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -19236,7 +23420,7 @@ } }, { - "id": 1746, + "id": 2019, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -19259,7 +23443,7 @@ } }, { - "id": 1749, + "id": 2022, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -19282,7 +23466,7 @@ } }, { - "id": 1747, + "id": 2020, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -19305,7 +23489,7 @@ } }, { - "id": 1684, + "id": 1957, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -19328,7 +23512,7 @@ } }, { - "id": 1685, + "id": 1958, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -19351,7 +23535,7 @@ } }, { - "id": 1679, + "id": 1952, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -19374,7 +23558,7 @@ } }, { - "id": 1680, + "id": 1953, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -19397,7 +23581,7 @@ } }, { - "id": 1681, + "id": 1954, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -19420,7 +23604,7 @@ } }, { - "id": 1682, + "id": 1955, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -19443,7 +23627,7 @@ } }, { - "id": 1693, + "id": 1966, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -19466,7 +23650,7 @@ } }, { - "id": 1697, + "id": 1970, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -19489,7 +23673,7 @@ } }, { - "id": 1698, + "id": 1971, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -19512,7 +23696,7 @@ } }, { - "id": 1696, + "id": 1969, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -19535,7 +23719,7 @@ } }, { - "id": 1692, + "id": 1965, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -19558,7 +23742,7 @@ } }, { - "id": 1695, + "id": 1968, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -19581,7 +23765,7 @@ } }, { - "id": 1689, + "id": 1962, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -19604,7 +23788,7 @@ } }, { - "id": 1690, + "id": 1963, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -19627,7 +23811,7 @@ } }, { - "id": 1691, + "id": 1964, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -19650,7 +23834,7 @@ } }, { - "id": 1686, + "id": 1959, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -19673,7 +23857,7 @@ } }, { - "id": 1687, + "id": 1960, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -19696,7 +23880,7 @@ } }, { - "id": 1688, + "id": 1961, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -19719,7 +23903,7 @@ } }, { - "id": 1694, + "id": 1967, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -19742,7 +23926,7 @@ } }, { - "id": 1757, + "id": 2030, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -19765,7 +23949,7 @@ } }, { - "id": 1727, + "id": 2000, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -19788,7 +23972,7 @@ } }, { - "id": 1725, + "id": 1998, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -19811,7 +23995,7 @@ } }, { - "id": 1726, + "id": 1999, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -19834,7 +24018,7 @@ } }, { - "id": 1722, + "id": 1995, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -19857,7 +24041,7 @@ } }, { - "id": 1723, + "id": 1996, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -19880,7 +24064,7 @@ } }, { - "id": 1724, + "id": 1997, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -19903,7 +24087,7 @@ } }, { - "id": 1728, + "id": 2001, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -19926,7 +24110,7 @@ } }, { - "id": 1719, + "id": 1992, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -19949,7 +24133,7 @@ } }, { - "id": 1720, + "id": 1993, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -19972,7 +24156,7 @@ } }, { - "id": 1721, + "id": 1994, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -20000,96 +24184,96 @@ "title": "Properties", "kind": 1024, "children": [ - 1730, - 1729, - 1699, - 1700, - 1702, - 1701, - 1683, - 1742, - 1743, - 1740, - 1741, - 1704, - 1709, - 1706, - 1708, - 1707, - 1705, - 1714, - 1711, - 1713, - 1712, - 1710, - 1718, - 1717, - 1716, - 1715, - 1703, - 1765, - 1768, - 1763, - 1766, - 1767, - 1762, - 1764, - 1735, - 1734, - 1737, - 1736, - 1733, - 1731, - 1732, - 1738, - 1739, - 1750, - 1751, - 1754, - 1752, - 1753, - 1761, - 1760, - 1759, - 1758, - 1756, - 1755, - 1748, - 1745, - 1744, - 1746, - 1749, - 1747, - 1684, - 1685, - 1679, - 1680, - 1681, - 1682, - 1693, - 1697, - 1698, - 1696, - 1692, - 1695, - 1689, - 1690, - 1691, - 1686, - 1687, - 1688, - 1694, - 1757, - 1727, - 1725, - 1726, - 1722, - 1723, - 1724, - 1728, - 1719, - 1720, - 1721 + 2003, + 2002, + 1972, + 1973, + 1975, + 1974, + 1956, + 2015, + 2016, + 2013, + 2014, + 1977, + 1982, + 1979, + 1981, + 1980, + 1978, + 1987, + 1984, + 1986, + 1985, + 1983, + 1991, + 1990, + 1989, + 1988, + 1976, + 2038, + 2041, + 2036, + 2039, + 2040, + 2035, + 2037, + 2008, + 2007, + 2010, + 2009, + 2006, + 2004, + 2005, + 2011, + 2012, + 2023, + 2024, + 2027, + 2025, + 2026, + 2034, + 2033, + 2032, + 2031, + 2029, + 2028, + 2021, + 2018, + 2017, + 2019, + 2022, + 2020, + 1957, + 1958, + 1952, + 1953, + 1954, + 1955, + 1966, + 1970, + 1971, + 1969, + 1965, + 1968, + 1962, + 1963, + 1964, + 1959, + 1960, + 1961, + 1967, + 2030, + 2000, + 1998, + 1999, + 1995, + 1996, + 1997, + 2001, + 1992, + 1993, + 1994 ] } ], @@ -20102,7 +24286,7 @@ ] }, { - "id": 1666, + "id": 1939, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -20112,7 +24296,7 @@ }, "children": [ { - "id": 1668, + "id": 1941, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -20128,12 +24312,12 @@ ], "type": { "type": "reference", - "id": 1669, + "id": 1942, "name": "customCssInterface" } }, { - "id": 1667, + "id": 1940, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -20158,8 +24342,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1668, - 1667 + 1941, + 1940 ] } ], @@ -20172,7 +24356,7 @@ ] }, { - "id": 1658, + "id": 1931, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -20188,7 +24372,7 @@ }, "children": [ { - "id": 1660, + "id": 1933, "name": "content", "kind": 1024, "kindString": "Property", @@ -20205,14 +24389,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1661, + "id": 1934, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1662, + "id": 1935, "name": "strings", "kind": 1024, "kindString": "Property", @@ -20255,19 +24439,19 @@ "title": "Properties", "kind": 1024, "children": [ - 1662 + 1935 ] } ], "indexSignature": { - "id": 1663, + "id": 1936, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1664, + "id": 1937, "name": "key", "kind": 32768, "flags": {}, @@ -20286,7 +24470,7 @@ } }, { - "id": 1665, + "id": 1938, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -20306,7 +24490,7 @@ } }, { - "id": 1659, + "id": 1932, "name": "style", "kind": 1024, "kindString": "Property", @@ -20322,7 +24506,7 @@ ], "type": { "type": "reference", - "id": 1666, + "id": 1939, "name": "CustomStyles" } } @@ -20332,9 +24516,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1660, - 1665, - 1659 + 1933, + 1938, + 1932 ] } ], @@ -20347,7 +24531,7 @@ ] }, { - "id": 1328, + "id": 1598, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -20363,7 +24547,7 @@ }, "children": [ { - "id": 1331, + "id": 1601, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -20386,7 +24570,7 @@ } }, { - "id": 1352, + "id": 1622, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -20428,7 +24612,7 @@ } }, { - "id": 1354, + "id": 1624, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -20457,7 +24641,7 @@ } }, { - "id": 1330, + "id": 1600, "name": "authType", "kind": 1024, "kindString": "Property", @@ -20474,12 +24658,12 @@ ], "type": { "type": "reference", - "id": 1036, + "id": 1306, "name": "AuthType" } }, { - "id": 1343, + "id": 1613, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -20508,7 +24692,7 @@ } }, { - "id": 1355, + "id": 1625, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -20541,7 +24725,7 @@ } }, { - "id": 1346, + "id": 1616, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -20570,7 +24754,7 @@ } }, { - "id": 1367, + "id": 1637, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -20599,7 +24783,7 @@ } }, { - "id": 1351, + "id": 1621, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -20624,12 +24808,12 @@ ], "type": { "type": "reference", - "id": 1658, + "id": 1931, "name": "CustomisationsInterface" } }, { - "id": 1365, + "id": 1635, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -20658,7 +24842,7 @@ } }, { - "id": 1348, + "id": 1618, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -20688,7 +24872,7 @@ } }, { - "id": 1369, + "id": 1639, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -20707,7 +24891,7 @@ "sources": [ { "fileName": "types.ts", - "line": 591, + "line": 590, "character": 4 } ], @@ -20717,7 +24901,7 @@ } }, { - "id": 1344, + "id": 1614, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -20750,7 +24934,7 @@ } }, { - "id": 1364, + "id": 1634, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -20779,7 +24963,7 @@ } }, { - "id": 1342, + "id": 1612, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -20808,7 +24992,7 @@ } }, { - "id": 1337, + "id": 1607, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -20842,7 +25026,7 @@ } }, { - "id": 1363, + "id": 1633, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -20875,12 +25059,12 @@ ], "type": { "type": "reference", - "id": 1772, + "id": 2045, "name": "LogLevel" } }, { - "id": 1345, + "id": 1615, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -20909,7 +25093,7 @@ } }, { - "id": 1336, + "id": 1606, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -20942,7 +25126,7 @@ } }, { - "id": 1366, + "id": 1636, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -20971,7 +25155,7 @@ } }, { - "id": 1335, + "id": 1605, "name": "password", "kind": 1024, "kindString": "Property", @@ -20995,7 +25179,7 @@ } }, { - "id": 1361, + "id": 1631, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -21024,7 +25208,7 @@ } }, { - "id": 1347, + "id": 1617, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -21057,7 +25241,7 @@ } }, { - "id": 1338, + "id": 1608, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -21087,7 +25271,7 @@ } }, { - "id": 1340, + "id": 1610, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -21116,7 +25300,7 @@ } }, { - "id": 1362, + "id": 1632, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -21145,7 +25329,7 @@ } }, { - "id": 1341, + "id": 1611, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -21174,7 +25358,7 @@ } }, { - "id": 1350, + "id": 1620, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -21197,7 +25381,7 @@ } }, { - "id": 1349, + "id": 1619, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -21226,7 +25410,7 @@ } }, { - "id": 1329, + "id": 1599, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -21247,7 +25431,7 @@ } }, { - "id": 1353, + "id": 1623, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -21270,7 +25454,7 @@ } }, { - "id": 1334, + "id": 1604, "name": "username", "kind": 1024, "kindString": "Property", @@ -21293,7 +25477,7 @@ } }, { - "id": 1332, + "id": 1602, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -21309,7 +25493,7 @@ ], "signatures": [ { - "id": 1333, + "id": 1603, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -21337,45 +25521,45 @@ "title": "Properties", "kind": 1024, "children": [ - 1331, - 1352, - 1354, - 1330, - 1343, - 1355, - 1346, - 1367, - 1351, - 1365, - 1348, - 1369, - 1344, - 1364, - 1342, - 1337, - 1363, - 1345, - 1336, - 1366, - 1335, - 1361, - 1347, - 1338, - 1340, - 1362, - 1341, - 1350, - 1349, - 1329, - 1353, - 1334 + 1601, + 1622, + 1624, + 1600, + 1613, + 1625, + 1616, + 1637, + 1621, + 1635, + 1618, + 1639, + 1614, + 1634, + 1612, + 1607, + 1633, + 1615, + 1606, + 1636, + 1605, + 1631, + 1617, + 1608, + 1610, + 1632, + 1611, + 1620, + 1619, + 1599, + 1623, + 1604 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1332 + 1602 ] } ], @@ -21388,7 +25572,7 @@ ] }, { - "id": 1620, + "id": 1893, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -21404,7 +25588,7 @@ }, "children": [ { - "id": 1622, + "id": 1895, "name": "height", "kind": 1024, "kindString": "Property", @@ -21417,7 +25601,7 @@ "sources": [ { "fileName": "types.ts", - "line": 609, + "line": 608, "character": 4 } ], @@ -21436,7 +25620,7 @@ } }, { - "id": 1623, + "id": 1896, "name": "loading", "kind": 1024, "kindString": "Property", @@ -21449,7 +25633,7 @@ "sources": [ { "fileName": "types.ts", - "line": 615, + "line": 614, "character": 4 } ], @@ -21472,7 +25656,7 @@ } }, { - "id": 1621, + "id": 1894, "name": "width", "kind": 1024, "kindString": "Property", @@ -21485,7 +25669,7 @@ "sources": [ { "fileName": "types.ts", - "line": 605, + "line": 604, "character": 4 } ], @@ -21509,21 +25693,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1622, - 1623, - 1621 + 1895, + 1896, + 1894 ] } ], "sources": [ { "fileName": "types.ts", - "line": 601, + "line": 600, "character": 17 } ], "indexSignature": { - "id": 1624, + "id": 1897, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -21533,7 +25717,7 @@ }, "parameters": [ { - "id": 1625, + "id": 1898, "name": "key", "kind": 32768, "flags": {}, @@ -21567,7 +25751,7 @@ } }, { - "id": 1453, + "id": 1724, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -21583,7 +25767,7 @@ }, "children": [ { - "id": 1464, + "id": 1735, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -21616,7 +25800,7 @@ } }, { - "id": 1484, + "id": 1755, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -21639,27 +25823,27 @@ "sources": [ { "fileName": "types.ts", - "line": 798, + "line": 797, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1485, + "id": 1756, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1486, + "id": 1757, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1487, + "id": 1758, "name": "key", "kind": 32768, "flags": {}, @@ -21695,7 +25879,7 @@ } }, { - "id": 1507, + "id": 1778, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -21703,7 +25887,7 @@ "isOptional": true }, "comment": { - "shortText": "To set the initial state of the search bar in case of saved-answers.", + "shortText": "To set the initial state of the search bar in case of saved Answers.", "tags": [ { "tag": "default", @@ -21722,7 +25906,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1031, + "line": 1030, "character": 4 } ], @@ -21736,7 +25920,7 @@ } }, { - "id": 1489, + "id": 1760, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -21759,13 +25943,13 @@ "sources": [ { "fileName": "types.ts", - "line": 830, + "line": 829, "character": 4 } ], "type": { "type": "reference", - "id": 1325, + "id": 1595, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -21774,7 +25958,7 @@ } }, { - "id": 1476, + "id": 1747, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -21797,13 +25981,13 @@ "sources": [ { "fileName": "types.ts", - "line": 805, + "line": 804, "character": 4 } ], "type": { "type": "reference", - "id": 1658, + "id": 1931, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -21812,7 +25996,7 @@ } }, { - "id": 1508, + "id": 1779, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -21824,7 +26008,7 @@ "tags": [ { "tag": "default", - "text": "true" + "text": "false" }, { "tag": "version", @@ -21839,7 +26023,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1056, + "line": 1055, "character": 4 } ], @@ -21853,7 +26037,7 @@ } }, { - "id": 1455, + "id": 1726, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -21890,7 +26074,7 @@ } }, { - "id": 1492, + "id": 1763, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -21898,7 +26082,7 @@ "isOptional": true }, "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disables redirection of links in a new tab.", + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", "tags": [ { "tag": "example", @@ -21913,7 +26097,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1043, + "line": 1042, "character": 4 } ], @@ -21927,7 +26111,7 @@ } }, { - "id": 1478, + "id": 1749, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -21950,7 +26134,7 @@ "sources": [ { "fileName": "types.ts", - "line": 683, + "line": 682, "character": 4 } ], @@ -21964,7 +26148,7 @@ } }, { - "id": 1477, + "id": 1748, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -21987,7 +26171,7 @@ "sources": [ { "fileName": "types.ts", - "line": 670, + "line": 669, "character": 4 } ], @@ -21995,7 +26179,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1205, + "id": 1475, "name": "Action" } }, @@ -22005,7 +26189,7 @@ } }, { - "id": 1503, + "id": 1774, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -22032,7 +26216,7 @@ "sources": [ { "fileName": "types.ts", - "line": 990, + "line": 989, "character": 4 } ], @@ -22046,7 +26230,7 @@ } }, { - "id": 1471, + "id": 1742, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -22083,7 +26267,7 @@ } }, { - "id": 1470, + "id": 1741, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -22120,7 +26304,48 @@ } }, { - "id": 1506, + "id": 1780, + "name": "enableCustomColumnGroups", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "To enable custom column groups in data panel v2", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1068, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.enableCustomColumnGroups" + } + }, + { + "id": 1777, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -22143,7 +26368,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1019, + "line": 1018, "character": 4 } ], @@ -22157,7 +26382,7 @@ } }, { - "id": 1456, + "id": 1727, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -22193,7 +26418,7 @@ } }, { - "id": 1502, + "id": 1773, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -22217,7 +26442,7 @@ "sources": [ { "fileName": "types.ts", - "line": 868, + "line": 867, "character": 4 } ], @@ -22231,7 +26456,7 @@ } }, { - "id": 1505, + "id": 1776, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -22255,7 +26480,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1005, + "line": 1004, "character": 4 } ], @@ -22269,7 +26494,7 @@ } }, { - "id": 1495, + "id": 1766, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -22292,13 +26517,13 @@ "sources": [ { "fileName": "types.ts", - "line": 646, + "line": 645, "character": 4 } ], "type": { "type": "reference", - "id": 1620, + "id": 1893, "name": "FrameParams" }, "inheritedFrom": { @@ -22307,7 +26532,7 @@ } }, { - "id": 1454, + "id": 1725, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -22340,7 +26565,7 @@ } }, { - "id": 1479, + "id": 1750, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -22367,7 +26592,7 @@ "sources": [ { "fileName": "types.ts", - "line": 698, + "line": 697, "character": 4 } ], @@ -22375,7 +26600,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1205, + "id": 1475, "name": "Action" } }, @@ -22385,7 +26610,7 @@ } }, { - "id": 1481, + "id": 1752, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -22408,7 +26633,7 @@ "sources": [ { "fileName": "types.ts", - "line": 884, + "line": 883, "character": 4 } ], @@ -22425,7 +26650,7 @@ } }, { - "id": 1466, + "id": 1737, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -22462,7 +26687,7 @@ } }, { - "id": 1465, + "id": 1736, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -22495,7 +26720,7 @@ } }, { - "id": 1500, + "id": 1771, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -22518,7 +26743,7 @@ "sources": [ { "fileName": "types.ts", - "line": 818, + "line": 817, "character": 4 } ], @@ -22532,7 +26757,7 @@ } }, { - "id": 1473, + "id": 1744, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -22559,7 +26784,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 300, + "line": 298, "character": 4 } ], @@ -22569,7 +26794,7 @@ } }, { - "id": 1469, + "id": 1740, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -22602,7 +26827,7 @@ } }, { - "id": 1490, + "id": 1761, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -22625,7 +26850,7 @@ "sources": [ { "fileName": "types.ts", - "line": 842, + "line": 841, "character": 4 } ], @@ -22639,7 +26864,7 @@ } }, { - "id": 1457, + "id": 1728, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -22672,7 +26897,7 @@ } }, { - "id": 1463, + "id": 1734, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -22705,7 +26930,7 @@ } }, { - "id": 1488, + "id": 1759, "name": "locale", "kind": 1024, "kindString": "Property", @@ -22728,7 +26953,7 @@ "sources": [ { "fileName": "types.ts", - "line": 778, + "line": 777, "character": 4 } ], @@ -22742,7 +26967,7 @@ } }, { - "id": 1493, + "id": 1764, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -22765,7 +26990,7 @@ "sources": [ { "fileName": "types.ts", - "line": 969, + "line": 968, "character": 4 } ], @@ -22779,7 +27004,7 @@ } }, { - "id": 1460, + "id": 1731, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -22812,7 +27037,7 @@ } }, { - "id": 1498, + "id": 1769, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -22835,7 +27060,7 @@ "sources": [ { "fileName": "types.ts", - "line": 748, + "line": 747, "character": 4 } ], @@ -22843,7 +27068,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1048, + "id": 1318, "name": "RuntimeFilter" } }, @@ -22853,7 +27078,7 @@ } }, { - "id": 1499, + "id": 1770, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -22876,7 +27101,7 @@ "sources": [ { "fileName": "types.ts", - "line": 766, + "line": 765, "character": 4 } ], @@ -22884,7 +27109,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1769, + "id": 2042, "name": "RuntimeParameter" } }, @@ -22894,7 +27119,7 @@ } }, { - "id": 1483, + "id": 1754, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -22917,7 +27142,7 @@ "sources": [ { "fileName": "types.ts", - "line": 729, + "line": 728, "character": 4 } ], @@ -22931,7 +27156,7 @@ } }, { - "id": 1468, + "id": 1739, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -22968,7 +27193,7 @@ } }, { - "id": 1475, + "id": 1746, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -22995,7 +27220,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 328, + "line": 326, "character": 4 } ], @@ -23005,7 +27230,7 @@ } }, { - "id": 1467, + "id": 1738, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -23042,7 +27267,7 @@ } }, { - "id": 1474, + "id": 1745, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -23069,7 +27294,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 314, + "line": 312, "character": 4 } ], @@ -23079,7 +27304,7 @@ } }, { - "id": 1472, + "id": 1743, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -23088,11 +27313,11 @@ }, "comment": { "shortText": "Show a preview image of the visualization before the visualization loads.\nOnly works for visualizations embeds with a viz id.", - "text": "Also, viz snashot should be enabled in the ThoughtSpot instance.\nContact ThoughtSpot support to enable this feature.\n\nSince, this will show preview images, be careful that it may show\nundesired data to the user when using row level security.\n", + "text": "Also, viz snashot should be enabled in the ThoughtSpot instance.\nContact ThoughtSpot support to enable this feature.\n\nSince, this will show preview images, be careful that it may show\nundesired data to the user when using row level security.", "tags": [ { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n liveboardId: 'liveboard-id',\n vizId: 'viz-id',\n showPreviewLoader: true,\n});\nembed.render();\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n liveboardId: 'liveboard-id',\n vizId: 'viz-id',\n showPreviewLoader: true,\n});\nembed.render();\n```" }, { "tag": "version", @@ -23103,7 +27328,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 286, + "line": 284, "character": 4 } ], @@ -23113,7 +27338,7 @@ } }, { - "id": 1480, + "id": 1751, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -23141,7 +27366,7 @@ "sources": [ { "fileName": "types.ts", - "line": 716, + "line": 715, "character": 4 } ], @@ -23149,7 +27374,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1205, + "id": 1475, "name": "Action" } }, @@ -23159,7 +27384,7 @@ } }, { - "id": 1482, + "id": 1753, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -23183,7 +27408,7 @@ "sources": [ { "fileName": "types.ts", - "line": 936, + "line": 935, "character": 4 } ], @@ -23200,7 +27425,7 @@ } }, { - "id": 1461, + "id": 1732, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -23236,7 +27461,7 @@ } }, { - "id": 1459, + "id": 1730, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -23274,50 +27499,51 @@ "title": "Properties", "kind": 1024, "children": [ - 1464, - 1484, - 1507, - 1489, - 1476, - 1508, - 1455, - 1492, - 1478, - 1477, - 1503, - 1471, - 1470, - 1506, - 1456, - 1502, - 1505, - 1495, - 1454, - 1479, - 1481, - 1466, - 1465, - 1500, - 1473, - 1469, - 1490, - 1457, - 1463, - 1488, - 1493, - 1460, - 1498, - 1499, - 1483, - 1468, - 1475, - 1467, - 1474, - 1472, - 1480, - 1482, - 1461, - 1459 + 1735, + 1755, + 1778, + 1760, + 1747, + 1779, + 1726, + 1763, + 1749, + 1748, + 1774, + 1742, + 1741, + 1780, + 1777, + 1727, + 1773, + 1776, + 1766, + 1725, + 1750, + 1752, + 1737, + 1736, + 1771, + 1744, + 1740, + 1761, + 1728, + 1734, + 1759, + 1764, + 1731, + 1769, + 1770, + 1754, + 1739, + 1746, + 1738, + 1745, + 1743, + 1751, + 1753, + 1732, + 1730 ] } ], @@ -23359,7 +27585,7 @@ ] }, { - "id": 1048, + "id": 1318, "name": "RuntimeFilter", "kind": 256, "kindString": "Interface", @@ -23369,7 +27595,7 @@ }, "children": [ { - "id": 1049, + "id": 1319, "name": "columnName", "kind": 1024, "kindString": "Property", @@ -23380,7 +27606,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1225, + "line": 1237, "character": 4 } ], @@ -23390,7 +27616,7 @@ } }, { - "id": 1050, + "id": 1320, "name": "operator", "kind": 1024, "kindString": "Property", @@ -23401,18 +27627,18 @@ "sources": [ { "fileName": "types.ts", - "line": 1229, + "line": 1241, "character": 4 } ], "type": { "type": "reference", - "id": 1052, + "id": 1322, "name": "RuntimeFilterOp" } }, { - "id": 1051, + "id": 1321, "name": "values", "kind": 1024, "kindString": "Property", @@ -23423,7 +27649,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1235, + "line": 1247, "character": 4 } ], @@ -23458,22 +27684,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1049, - 1050, - 1051 + 1319, + 1320, + 1321 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1221, + "line": 1233, "character": 17 } ] }, { - "id": 1769, + "id": 2042, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -23483,7 +27709,7 @@ }, "children": [ { - "id": 1770, + "id": 2043, "name": "name", "kind": 1024, "kindString": "Property", @@ -23494,7 +27720,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1245, + "line": 1257, "character": 4 } ], @@ -23504,7 +27730,7 @@ } }, { - "id": 1771, + "id": 2044, "name": "value", "kind": 1024, "kindString": "Property", @@ -23515,7 +27741,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1249, + "line": 1261, "character": 4 } ], @@ -23543,21 +27769,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1770, - 1771 + 2043, + 2044 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1241, + "line": 1253, "character": 17 } ] }, { - "id": 1509, + "id": 1781, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -23577,7 +27803,7 @@ }, "children": [ { - "id": 1527, + "id": 1799, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -23600,27 +27826,27 @@ "sources": [ { "fileName": "types.ts", - "line": 798, + "line": 797, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1528, + "id": 1800, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1529, + "id": 1801, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1530, + "id": 1802, "name": "key", "kind": 32768, "flags": {}, @@ -23656,7 +27882,7 @@ } }, { - "id": 1550, + "id": 1822, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -23664,7 +27890,7 @@ "isOptional": true }, "comment": { - "shortText": "To set the initial state of the search bar in case of saved-answers.", + "shortText": "To set the initial state of the search bar in case of saved Answers.", "tags": [ { "tag": "default", @@ -23683,7 +27909,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1031, + "line": 1030, "character": 4 } ], @@ -23697,7 +27923,7 @@ } }, { - "id": 1532, + "id": 1804, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -23720,13 +27946,13 @@ "sources": [ { "fileName": "types.ts", - "line": 830, + "line": 829, "character": 4 } ], "type": { "type": "reference", - "id": 1325, + "id": 1595, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -23735,7 +27961,7 @@ } }, { - "id": 1521, + "id": 1793, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -23758,13 +27984,13 @@ "sources": [ { "fileName": "types.ts", - "line": 805, + "line": 804, "character": 4 } ], "type": { "type": "reference", - "id": 1658, + "id": 1931, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -23773,7 +27999,7 @@ } }, { - "id": 1551, + "id": 1823, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -23785,7 +28011,7 @@ "tags": [ { "tag": "default", - "text": "true" + "text": "false" }, { "tag": "version", @@ -23800,7 +28026,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1056, + "line": 1055, "character": 4 } ], @@ -23814,7 +28040,7 @@ } }, { - "id": 1519, + "id": 1791, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -23837,7 +28063,7 @@ } }, { - "id": 1535, + "id": 1807, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -23845,7 +28071,7 @@ "isOptional": true }, "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disables redirection of links in a new tab.", + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", "tags": [ { "tag": "example", @@ -23860,7 +28086,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1043, + "line": 1042, "character": 4 } ], @@ -23874,7 +28100,7 @@ } }, { - "id": 1514, + "id": 1786, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -23903,7 +28129,7 @@ } }, { - "id": 1523, + "id": 1795, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -23926,7 +28152,7 @@ "sources": [ { "fileName": "types.ts", - "line": 683, + "line": 682, "character": 4 } ], @@ -23940,7 +28166,7 @@ } }, { - "id": 1522, + "id": 1794, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -23963,7 +28189,7 @@ "sources": [ { "fileName": "types.ts", - "line": 670, + "line": 669, "character": 4 } ], @@ -23971,44 +28197,85 @@ "type": "array", "elementType": { "type": "reference", - "id": 1205, + "id": 1475, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.disabledActions" + "name": "Omit.disabledActions" + } + }, + { + "id": 1818, + "name": "doNotTrackPreRenderSize", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Determines whether the PreRender component should not dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" + }, + { + "tag": "example", + "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 989, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.doNotTrackPreRenderSize" } }, { - "id": 1546, - "name": "doNotTrackPreRenderSize", + "id": 1824, + "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Determines whether the PreRender component should not dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", + "shortText": "To enable custom column groups in data panel v2", "tags": [ { - "tag": "default", - "text": "false" + "tag": "version", + "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" }, { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" + "tag": "default", + "text": "false" }, { "tag": "example", - "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 990, + "line": 1068, "character": 4 } ], @@ -24018,11 +28285,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.doNotTrackPreRenderSize" + "name": "Omit.enableCustomColumnGroups" } }, { - "id": 1549, + "id": 1821, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -24045,7 +28312,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1019, + "line": 1018, "character": 4 } ], @@ -24059,7 +28326,7 @@ } }, { - "id": 1545, + "id": 1817, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -24083,7 +28350,7 @@ "sources": [ { "fileName": "types.ts", - "line": 868, + "line": 867, "character": 4 } ], @@ -24097,7 +28364,7 @@ } }, { - "id": 1548, + "id": 1820, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -24121,7 +28388,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1005, + "line": 1004, "character": 4 } ], @@ -24135,7 +28402,7 @@ } }, { - "id": 1538, + "id": 1810, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -24158,13 +28425,13 @@ "sources": [ { "fileName": "types.ts", - "line": 646, + "line": 645, "character": 4 } ], "type": { "type": "reference", - "id": 1620, + "id": 1893, "name": "FrameParams" }, "inheritedFrom": { @@ -24173,7 +28440,7 @@ } }, { - "id": 1524, + "id": 1796, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -24200,7 +28467,7 @@ "sources": [ { "fileName": "types.ts", - "line": 698, + "line": 697, "character": 4 } ], @@ -24208,7 +28475,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1205, + "id": 1475, "name": "Action" } }, @@ -24218,7 +28485,7 @@ } }, { - "id": 1516, + "id": 1788, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -24247,7 +28514,7 @@ } }, { - "id": 1513, + "id": 1785, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -24276,7 +28543,7 @@ } }, { - "id": 1518, + "id": 1790, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -24305,7 +28572,7 @@ } }, { - "id": 1512, + "id": 1784, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -24338,7 +28605,7 @@ } }, { - "id": 1515, + "id": 1787, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -24367,7 +28634,7 @@ } }, { - "id": 1543, + "id": 1815, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -24390,7 +28657,7 @@ "sources": [ { "fileName": "types.ts", - "line": 818, + "line": 817, "character": 4 } ], @@ -24404,7 +28671,7 @@ } }, { - "id": 1533, + "id": 1805, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -24427,7 +28694,7 @@ "sources": [ { "fileName": "types.ts", - "line": 842, + "line": 841, "character": 4 } ], @@ -24441,7 +28708,7 @@ } }, { - "id": 1531, + "id": 1803, "name": "locale", "kind": 1024, "kindString": "Property", @@ -24464,7 +28731,7 @@ "sources": [ { "fileName": "types.ts", - "line": 778, + "line": 777, "character": 4 } ], @@ -24478,7 +28745,7 @@ } }, { - "id": 1536, + "id": 1808, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -24501,7 +28768,7 @@ "sources": [ { "fileName": "types.ts", - "line": 969, + "line": 968, "character": 4 } ], @@ -24515,7 +28782,7 @@ } }, { - "id": 1541, + "id": 1813, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -24538,7 +28805,7 @@ "sources": [ { "fileName": "types.ts", - "line": 748, + "line": 747, "character": 4 } ], @@ -24546,7 +28813,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1048, + "id": 1318, "name": "RuntimeFilter" } }, @@ -24556,7 +28823,7 @@ } }, { - "id": 1542, + "id": 1814, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -24579,7 +28846,7 @@ "sources": [ { "fileName": "types.ts", - "line": 766, + "line": 765, "character": 4 } ], @@ -24587,7 +28854,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1769, + "id": 2042, "name": "RuntimeParameter" } }, @@ -24597,7 +28864,7 @@ } }, { - "id": 1520, + "id": 1792, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -24631,7 +28898,7 @@ } }, { - "id": 1526, + "id": 1798, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -24654,7 +28921,7 @@ "sources": [ { "fileName": "types.ts", - "line": 729, + "line": 728, "character": 4 } ], @@ -24668,7 +28935,7 @@ } }, { - "id": 1510, + "id": 1782, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -24697,7 +28964,7 @@ } }, { - "id": 1517, + "id": 1789, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -24726,7 +28993,7 @@ } }, { - "id": 1525, + "id": 1797, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -24754,7 +29021,7 @@ "sources": [ { "fileName": "types.ts", - "line": 716, + "line": 715, "character": 4 } ], @@ -24762,7 +29029,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1205, + "id": 1475, "name": "Action" } }, @@ -24777,38 +29044,39 @@ "title": "Properties", "kind": 1024, "children": [ - 1527, - 1550, - 1532, - 1521, - 1551, - 1519, - 1535, - 1514, - 1523, - 1522, - 1546, - 1549, - 1545, - 1548, - 1538, - 1524, - 1516, - 1513, - 1518, - 1512, - 1515, - 1543, - 1533, - 1531, - 1536, - 1541, - 1542, - 1520, - 1526, - 1510, - 1517, - 1525 + 1799, + 1822, + 1804, + 1793, + 1823, + 1791, + 1807, + 1786, + 1795, + 1794, + 1818, + 1824, + 1821, + 1817, + 1820, + 1810, + 1796, + 1788, + 1785, + 1790, + 1784, + 1787, + 1815, + 1805, + 1803, + 1808, + 1813, + 1814, + 1792, + 1798, + 1782, + 1789, + 1797 ] } ], @@ -24858,7 +29126,7 @@ ] }, { - "id": 1420, + "id": 1690, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -24873,7 +29141,7 @@ }, "children": [ { - "id": 1430, + "id": 1700, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -24896,27 +29164,27 @@ "sources": [ { "fileName": "types.ts", - "line": 798, + "line": 797, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1431, + "id": 1701, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1432, + "id": 1702, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1433, + "id": 1703, "name": "key", "kind": 32768, "flags": {}, @@ -24952,7 +29220,7 @@ } }, { - "id": 1452, + "id": 1722, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -24960,7 +29228,7 @@ "isOptional": true }, "comment": { - "shortText": "To set the initial state of the search bar in case of saved-answers.", + "shortText": "To set the initial state of the search bar in case of saved Answers.", "tags": [ { "tag": "default", @@ -24979,7 +29247,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1031, + "line": 1030, "character": 4 } ], @@ -24993,7 +29261,7 @@ } }, { - "id": 1435, + "id": 1705, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -25016,13 +29284,13 @@ "sources": [ { "fileName": "types.ts", - "line": 830, + "line": 829, "character": 4 } ], "type": { "type": "reference", - "id": 1325, + "id": 1595, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -25031,7 +29299,7 @@ } }, { - "id": 1425, + "id": 1695, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -25054,13 +29322,13 @@ "sources": [ { "fileName": "types.ts", - "line": 805, + "line": 804, "character": 4 } ], "type": { "type": "reference", - "id": 1658, + "id": 1931, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -25069,7 +29337,7 @@ } }, { - "id": 1422, + "id": 1692, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -25102,7 +29370,7 @@ } }, { - "id": 1421, + "id": 1691, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -25142,7 +29410,7 @@ } }, { - "id": 1438, + "id": 1708, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -25150,7 +29418,7 @@ "isOptional": true }, "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disables redirection of links in a new tab.", + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", "tags": [ { "tag": "example", @@ -25165,7 +29433,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1043, + "line": 1042, "character": 4 } ], @@ -25179,7 +29447,7 @@ } }, { - "id": 1427, + "id": 1697, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -25202,7 +29470,7 @@ "sources": [ { "fileName": "types.ts", - "line": 683, + "line": 682, "character": 4 } ], @@ -25216,7 +29484,7 @@ } }, { - "id": 1426, + "id": 1696, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -25239,7 +29507,7 @@ "sources": [ { "fileName": "types.ts", - "line": 670, + "line": 669, "character": 4 } ], @@ -25247,7 +29515,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1205, + "id": 1475, "name": "Action" } }, @@ -25257,7 +29525,7 @@ } }, { - "id": 1448, + "id": 1718, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -25284,7 +29552,7 @@ "sources": [ { "fileName": "types.ts", - "line": 990, + "line": 989, "character": 4 } ], @@ -25298,7 +29566,48 @@ } }, { - "id": 1451, + "id": 1723, + "name": "enableCustomColumnGroups", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "To enable custom column groups in data panel v2", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1068, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.enableCustomColumnGroups" + } + }, + { + "id": 1721, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -25321,7 +29630,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1019, + "line": 1018, "character": 4 } ], @@ -25335,7 +29644,7 @@ } }, { - "id": 1447, + "id": 1717, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -25359,7 +29668,7 @@ "sources": [ { "fileName": "types.ts", - "line": 868, + "line": 867, "character": 4 } ], @@ -25373,7 +29682,7 @@ } }, { - "id": 1450, + "id": 1720, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -25397,7 +29706,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1005, + "line": 1004, "character": 4 } ], @@ -25411,7 +29720,7 @@ } }, { - "id": 1441, + "id": 1711, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -25434,13 +29743,13 @@ "sources": [ { "fileName": "types.ts", - "line": 646, + "line": 645, "character": 4 } ], "type": { "type": "reference", - "id": 1620, + "id": 1893, "name": "FrameParams" }, "inheritedFrom": { @@ -25449,7 +29758,7 @@ } }, { - "id": 1428, + "id": 1698, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -25476,7 +29785,7 @@ "sources": [ { "fileName": "types.ts", - "line": 698, + "line": 697, "character": 4 } ], @@ -25484,7 +29793,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1205, + "id": 1475, "name": "Action" } }, @@ -25494,7 +29803,7 @@ } }, { - "id": 1445, + "id": 1715, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -25517,7 +29826,7 @@ "sources": [ { "fileName": "types.ts", - "line": 818, + "line": 817, "character": 4 } ], @@ -25531,7 +29840,7 @@ } }, { - "id": 1436, + "id": 1706, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -25554,7 +29863,7 @@ "sources": [ { "fileName": "types.ts", - "line": 842, + "line": 841, "character": 4 } ], @@ -25568,7 +29877,7 @@ } }, { - "id": 1434, + "id": 1704, "name": "locale", "kind": 1024, "kindString": "Property", @@ -25591,7 +29900,7 @@ "sources": [ { "fileName": "types.ts", - "line": 778, + "line": 777, "character": 4 } ], @@ -25605,7 +29914,7 @@ } }, { - "id": 1439, + "id": 1709, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -25628,7 +29937,7 @@ "sources": [ { "fileName": "types.ts", - "line": 969, + "line": 968, "character": 4 } ], @@ -25642,7 +29951,7 @@ } }, { - "id": 1444, + "id": 1714, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -25665,7 +29974,7 @@ "sources": [ { "fileName": "types.ts", - "line": 766, + "line": 765, "character": 4 } ], @@ -25673,7 +29982,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1769, + "id": 2042, "name": "RuntimeParameter" } }, @@ -25683,7 +29992,7 @@ } }, { - "id": 1424, + "id": 1694, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -25717,7 +30026,7 @@ } }, { - "id": 1423, + "id": 1693, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -25750,7 +30059,7 @@ } }, { - "id": 1429, + "id": 1699, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -25778,7 +30087,7 @@ "sources": [ { "fileName": "types.ts", - "line": 716, + "line": 715, "character": 4 } ], @@ -25786,7 +30095,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1205, + "id": 1475, "name": "Action" } }, @@ -25801,29 +30110,30 @@ "title": "Properties", "kind": 1024, "children": [ - 1430, - 1452, - 1435, - 1425, - 1422, - 1421, - 1438, - 1427, - 1426, - 1448, - 1451, - 1447, - 1450, - 1441, - 1428, - 1445, - 1436, - 1434, - 1439, - 1444, - 1424, - 1423, - 1429 + 1700, + 1722, + 1705, + 1695, + 1692, + 1691, + 1708, + 1697, + 1696, + 1718, + 1723, + 1721, + 1717, + 1720, + 1711, + 1698, + 1715, + 1706, + 1704, + 1709, + 1714, + 1694, + 1693, + 1699 ] } ], @@ -25885,7 +30195,7 @@ ] }, { - "id": 1370, + "id": 1640, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -25901,7 +30211,7 @@ }, "children": [ { - "id": 1395, + "id": 1664, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -25924,27 +30234,27 @@ "sources": [ { "fileName": "types.ts", - "line": 798, + "line": 797, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1396, + "id": 1665, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1397, + "id": 1666, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1398, + "id": 1667, "name": "key", "kind": 32768, "flags": {}, @@ -25980,7 +30290,7 @@ } }, { - "id": 1381, + "id": 1651, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -26013,7 +30323,7 @@ } }, { - "id": 1372, + "id": 1642, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -26046,7 +30356,7 @@ } }, { - "id": 1371, + "id": 1641, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -26079,7 +30389,7 @@ } }, { - "id": 1418, + "id": 1687, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -26087,7 +30397,7 @@ "isOptional": true }, "comment": { - "shortText": "To set the initial state of the search bar in case of saved-answers.", + "shortText": "To set the initial state of the search bar in case of saved Answers.", "tags": [ { "tag": "default", @@ -26106,7 +30416,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1031, + "line": 1030, "character": 4 } ], @@ -26120,7 +30430,7 @@ } }, { - "id": 1384, + "id": 1654, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -26157,7 +30467,7 @@ } }, { - "id": 1400, + "id": 1669, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -26180,13 +30490,13 @@ "sources": [ { "fileName": "types.ts", - "line": 830, + "line": 829, "character": 4 } ], "type": { "type": "reference", - "id": 1325, + "id": 1595, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -26195,7 +30505,7 @@ } }, { - "id": 1389, + "id": 1658, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -26218,13 +30528,13 @@ "sources": [ { "fileName": "types.ts", - "line": 805, + "line": 804, "character": 4 } ], "type": { "type": "reference", - "id": 1658, + "id": 1931, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -26233,7 +30543,7 @@ } }, { - "id": 1387, + "id": 1656, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -26260,7 +30570,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 278, + "line": 265, "character": 4 } ], @@ -26270,7 +30580,7 @@ } }, { - "id": 1419, + "id": 1688, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -26282,7 +30592,7 @@ "tags": [ { "tag": "default", - "text": "true" + "text": "false" }, { "tag": "version", @@ -26297,7 +30607,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1056, + "line": 1055, "character": 4 } ], @@ -26311,7 +30621,7 @@ } }, { - "id": 1378, + "id": 1648, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -26344,7 +30654,7 @@ } }, { - "id": 1377, + "id": 1647, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -26380,7 +30690,7 @@ } }, { - "id": 1403, + "id": 1672, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -26388,7 +30698,7 @@ "isOptional": true }, "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disables redirection of links in a new tab.", + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", "tags": [ { "tag": "example", @@ -26403,7 +30713,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1043, + "line": 1042, "character": 4 } ], @@ -26417,7 +30727,7 @@ } }, { - "id": 1391, + "id": 1660, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -26440,7 +30750,7 @@ "sources": [ { "fileName": "types.ts", - "line": 683, + "line": 682, "character": 4 } ], @@ -26454,7 +30764,7 @@ } }, { - "id": 1390, + "id": 1659, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -26477,7 +30787,7 @@ "sources": [ { "fileName": "types.ts", - "line": 670, + "line": 669, "character": 4 } ], @@ -26485,7 +30795,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1205, + "id": 1475, "name": "Action" } }, @@ -26495,7 +30805,7 @@ } }, { - "id": 1414, + "id": 1683, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -26522,7 +30832,7 @@ "sources": [ { "fileName": "types.ts", - "line": 990, + "line": 989, "character": 4 } ], @@ -26536,7 +30846,7 @@ } }, { - "id": 1385, + "id": 1689, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -26562,18 +30872,22 @@ }, "sources": [ { - "fileName": "embed/search.ts", - "line": 254, + "fileName": "types.ts", + "line": 1068, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.enableCustomColumnGroups" } }, { - "id": 1375, + "id": 1645, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -26606,7 +30920,7 @@ } }, { - "id": 1417, + "id": 1686, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -26629,7 +30943,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1019, + "line": 1018, "character": 4 } ], @@ -26643,7 +30957,7 @@ } }, { - "id": 1413, + "id": 1682, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -26667,7 +30981,7 @@ "sources": [ { "fileName": "types.ts", - "line": 868, + "line": 867, "character": 4 } ], @@ -26681,7 +30995,7 @@ } }, { - "id": 1416, + "id": 1685, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -26705,7 +31019,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1005, + "line": 1004, "character": 4 } ], @@ -26719,7 +31033,7 @@ } }, { - "id": 1388, + "id": 1657, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -26746,7 +31060,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 292, + "line": 279, "character": 4 } ], @@ -26756,7 +31070,7 @@ } }, { - "id": 1376, + "id": 1646, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -26789,7 +31103,7 @@ } }, { - "id": 1406, + "id": 1675, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -26812,13 +31126,13 @@ "sources": [ { "fileName": "types.ts", - "line": 646, + "line": 645, "character": 4 } ], "type": { "type": "reference", - "id": 1620, + "id": 1893, "name": "FrameParams" }, "inheritedFrom": { @@ -26827,7 +31141,7 @@ } }, { - "id": 1392, + "id": 1661, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -26854,7 +31168,7 @@ "sources": [ { "fileName": "types.ts", - "line": 698, + "line": 697, "character": 4 } ], @@ -26862,7 +31176,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1205, + "id": 1475, "name": "Action" } }, @@ -26872,7 +31186,7 @@ } }, { - "id": 1373, + "id": 1643, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -26905,7 +31219,7 @@ } }, { - "id": 1374, + "id": 1644, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -26938,7 +31252,7 @@ } }, { - "id": 1382, + "id": 1652, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -26971,7 +31285,7 @@ } }, { - "id": 1411, + "id": 1680, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -26994,7 +31308,7 @@ "sources": [ { "fileName": "types.ts", - "line": 818, + "line": 817, "character": 4 } ], @@ -27008,7 +31322,7 @@ } }, { - "id": 1386, + "id": 1655, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -27027,7 +31341,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 259, + "line": 246, "character": 4 } ], @@ -27037,7 +31351,7 @@ } }, { - "id": 1401, + "id": 1670, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -27060,7 +31374,7 @@ "sources": [ { "fileName": "types.ts", - "line": 842, + "line": 841, "character": 4 } ], @@ -27074,7 +31388,7 @@ } }, { - "id": 1399, + "id": 1668, "name": "locale", "kind": 1024, "kindString": "Property", @@ -27097,7 +31411,7 @@ "sources": [ { "fileName": "types.ts", - "line": 778, + "line": 777, "character": 4 } ], @@ -27111,7 +31425,7 @@ } }, { - "id": 1404, + "id": 1673, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -27134,7 +31448,7 @@ "sources": [ { "fileName": "types.ts", - "line": 969, + "line": 968, "character": 4 } ], @@ -27148,7 +31462,7 @@ } }, { - "id": 1409, + "id": 1678, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -27171,7 +31485,7 @@ "sources": [ { "fileName": "types.ts", - "line": 748, + "line": 747, "character": 4 } ], @@ -27179,7 +31493,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1048, + "id": 1318, "name": "RuntimeFilter" } }, @@ -27189,7 +31503,7 @@ } }, { - "id": 1410, + "id": 1679, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -27212,7 +31526,7 @@ "sources": [ { "fileName": "types.ts", - "line": 766, + "line": 765, "character": 4 } ], @@ -27220,7 +31534,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1769, + "id": 2042, "name": "RuntimeParameter" } }, @@ -27230,7 +31544,7 @@ } }, { - "id": 1380, + "id": 1650, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -27260,7 +31574,7 @@ } }, { - "id": 1379, + "id": 1649, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -27289,7 +31603,7 @@ } }, { - "id": 1394, + "id": 1663, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -27312,7 +31626,7 @@ "sources": [ { "fileName": "types.ts", - "line": 729, + "line": 728, "character": 4 } ], @@ -27326,7 +31640,7 @@ } }, { - "id": 1383, + "id": 1653, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -27355,7 +31669,7 @@ } }, { - "id": 1393, + "id": 1662, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -27383,7 +31697,7 @@ "sources": [ { "fileName": "types.ts", - "line": 716, + "line": 715, "character": 4 } ], @@ -27391,7 +31705,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1205, + "id": 1475, "name": "Action" } }, @@ -27406,46 +31720,46 @@ "title": "Properties", "kind": 1024, "children": [ - 1395, - 1381, - 1372, - 1371, - 1418, - 1384, - 1400, - 1389, - 1387, - 1419, - 1378, - 1377, - 1403, - 1391, - 1390, - 1414, - 1385, - 1375, - 1417, - 1413, - 1416, - 1388, - 1376, - 1406, - 1392, - 1373, - 1374, - 1382, - 1411, - 1386, - 1401, - 1399, - 1404, - 1409, - 1410, - 1380, - 1379, - 1394, - 1383, - 1393 + 1664, + 1651, + 1642, + 1641, + 1687, + 1654, + 1669, + 1658, + 1656, + 1688, + 1648, + 1647, + 1672, + 1660, + 1659, + 1683, + 1689, + 1645, + 1686, + 1682, + 1685, + 1657, + 1646, + 1675, + 1661, + 1643, + 1644, + 1652, + 1680, + 1655, + 1670, + 1668, + 1673, + 1678, + 1679, + 1650, + 1649, + 1663, + 1653, + 1662 ] } ], @@ -27495,14 +31809,14 @@ ] }, { - "id": 1017, + "id": 1287, "name": "SessionInterface", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1020, + "id": 1290, "name": "acSession", "kind": 1024, "kindString": "Property", @@ -27510,21 +31824,21 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 13, + "line": 14, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1021, + "id": 1291, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1023, + "id": 1293, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -27532,7 +31846,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 13, + "line": 14, "character": 36 } ], @@ -27542,7 +31856,7 @@ } }, { - "id": 1022, + "id": 1292, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -27550,7 +31864,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 13, + "line": 14, "character": 17 } ], @@ -27565,8 +31879,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1023, - 1022 + 1293, + 1292 ] } ] @@ -27574,7 +31888,7 @@ } }, { - "id": 1019, + "id": 1289, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -27582,7 +31896,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 12, + "line": 13, "character": 4 } ], @@ -27592,7 +31906,7 @@ } }, { - "id": 1018, + "id": 1288, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -27600,7 +31914,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 11, + "line": 12, "character": 4 } ], @@ -27615,29 +31929,29 @@ "title": "Properties", "kind": 1024, "children": [ - 1020, - 1019, - 1018 + 1290, + 1289, + 1288 ] } ], "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 10, + "line": 11, "character": 17 } ] }, { - "id": 1024, + "id": 1294, "name": "UnderlyingDataPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1025, + "id": 1295, "name": "columnId", "kind": 1024, "kindString": "Property", @@ -27645,7 +31959,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 23, + "line": 24, "character": 4 } ], @@ -27655,7 +31969,7 @@ } }, { - "id": 1026, + "id": 1296, "name": "dataValue", "kind": 1024, "kindString": "Property", @@ -27663,7 +31977,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 24, + "line": 25, "character": 4 } ], @@ -27678,28 +31992,28 @@ "title": "Properties", "kind": 1024, "children": [ - 1025, - 1026 + 1295, + 1296 ] } ], "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 22, + "line": 23, "character": 17 } ] }, { - "id": 1795, + "id": 2068, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1796, + "id": 2069, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -27707,7 +32021,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4366, + "line": 4354, "character": 4 } ], @@ -27720,7 +32034,7 @@ } }, { - "id": 1797, + "id": 2070, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -27728,7 +32042,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4367, + "line": 4355, "character": 4 } ], @@ -27746,21 +32060,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1796, - 1797 + 2069, + 2070 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4365, + "line": 4353, "character": 17 } ] }, { - "id": 1669, + "id": 1942, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -27770,7 +32084,7 @@ }, "children": [ { - "id": 1671, + "id": 1944, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -27800,20 +32114,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1672, + "id": 1945, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1673, + "id": 1946, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1674, + "id": 1947, "name": "selector", "kind": 32768, "flags": {}, @@ -27826,7 +32140,7 @@ "type": { "type": "reflection", "declaration": { - "id": 1675, + "id": 1948, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -27839,14 +32153,14 @@ } ], "indexSignature": { - "id": 1676, + "id": 1949, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1677, + "id": 1950, "name": "declaration", "kind": 32768, "flags": {}, @@ -27868,7 +32182,7 @@ } }, { - "id": 1670, + "id": 1943, "name": "variables", "kind": 1024, "kindString": "Property", @@ -27887,7 +32201,7 @@ ], "type": { "type": "reference", - "id": 1678, + "id": 1951, "name": "CustomCssVariables" } } @@ -27897,8 +32211,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1671, - 1670 + 1944, + 1943 ] } ], @@ -28203,7 +32517,7 @@ ] }, { - "id": 1641, + "id": 1914, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -28230,7 +32544,7 @@ } }, { - "id": 1645, + "id": 1918, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -28238,14 +32552,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1087, + "line": 1099, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1646, + "id": 1919, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -28262,13 +32576,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1087, + "line": 1099, "character": 30 } ], "signatures": [ { - "id": 1647, + "id": 1920, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -28278,19 +32592,19 @@ }, "parameters": [ { - "id": 1648, + "id": 1921, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1653, + "id": 1926, "name": "MessagePayload" } }, { - "id": 1649, + "id": 1922, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -28300,7 +32614,7 @@ "type": { "type": "reflection", "declaration": { - "id": 1650, + "id": 1923, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -28308,13 +32622,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1094, + "line": 1106, "character": 16 } ], "signatures": [ { - "id": 1651, + "id": 1924, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -28324,7 +32638,7 @@ }, "parameters": [ { - "id": 1652, + "id": 1925, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -28355,7 +32669,7 @@ } }, { - "id": 1642, + "id": 1915, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -28372,21 +32686,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1076, + "line": 1088, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1643, + "id": 1916, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1644, + "id": 1917, "name": "start", "kind": 1024, "kindString": "Property", @@ -28399,7 +32713,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1081, + "line": 1093, "character": 4 } ], @@ -28414,14 +32728,14 @@ "title": "Properties", "kind": 1024, "children": [ - 1644 + 1917 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1076, + "line": 1088, "character": 29 } ] @@ -28429,7 +32743,7 @@ } }, { - "id": 1653, + "id": 1926, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -28446,21 +32760,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1063, + "line": 1075, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1654, + "id": 1927, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1656, + "id": 1929, "name": "data", "kind": 1024, "kindString": "Property", @@ -28468,7 +32782,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1067, + "line": 1079, "character": 4 } ], @@ -28478,7 +32792,7 @@ } }, { - "id": 1657, + "id": 1930, "name": "status", "kind": 1024, "kindString": "Property", @@ -28488,7 +32802,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1069, + "line": 1081, "character": 4 } ], @@ -28498,7 +32812,7 @@ } }, { - "id": 1655, + "id": 1928, "name": "type", "kind": 1024, "kindString": "Property", @@ -28506,7 +32820,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1065, + "line": 1077, "character": 4 } ], @@ -28521,22 +32835,105 @@ "title": "Properties", "kind": 1024, "children": [ - 1656, - 1657, - 1655 + 1929, + 1930, + 1928 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1063, + "line": 1075, "character": 29 } ] } } }, + { + "id": 44, + "name": "createLiveboardWithAnswers", + "kind": 64, + "kindString": "Function", + "flags": { + "isConst": true + }, + "sources": [ + { + "fileName": "utils/liveboardService/liveboardService.ts", + "line": 19, + "character": 13 + } + ], + "signatures": [ + { + "id": 45, + "name": "createLiveboardWithAnswers", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Create a liveboard with the given answers", + "returns": "result Promise", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.33.1 | ThoughtSpot: *" + }, + { + "tag": "example", + "text": "\n```js\n const lb = createLiveboardWithAnswers([\n new AnswerService(session, null, 'tshost'),\n ], \"my-liveboard\");\n```\n" + } + ] + }, + "parameters": [ + { + "id": 46, + "name": "answers", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "AnswerService[]" + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1214, + "name": "AnswerService" + } + } + }, + { + "id": 47, + "name": "name", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "string" + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + } + } + ] + }, { "id": 11, "name": "executeTML", @@ -28673,6 +33070,140 @@ } ] }, + { + "id": 37, + "name": "getAnswerFromQuery", + "kind": 64, + "kindString": "Function", + "flags": { + "isConst": true + }, + "sources": [ + { + "fileName": "utils/graphql/nlsService/nls-answer-service.ts", + "line": 17, + "character": 13 + } + ], + "signatures": [ + { + "id": 38, + "name": "getAnswerFromQuery", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Get answer from natural language query", + "returns": "AnswerService and the suggestion response.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.33.1 | ThoughtSpot: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst { answer } = await getAnswerFromQuery('revenue', 'worksheetId');\n```\n" + } + ] + }, + "parameters": [ + { + "id": 39, + "name": "query", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "string" + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 40, + "name": "worksheetId", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "string" + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 41, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 42, + "name": "answer", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "utils/graphql/nlsService/nls-answer-service.ts", + "line": 20, + "character": 13 + } + ], + "type": { + "type": "reference", + "id": 1214, + "name": "AnswerService" + } + }, + { + "id": 43, + "name": "suggestion", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "utils/graphql/nlsService/nls-answer-service.ts", + "line": 20, + "character": 36 + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 42, + 43 + ] + } + ] + } + } + ], + "name": "Promise" + } + } + ] + }, { "id": 29, "name": "getInitConfig", @@ -28711,7 +33242,7 @@ }, "type": { "type": "reference", - "id": 1328, + "id": 1598, "name": "EmbedConfig" } } @@ -28726,7 +33257,7 @@ "sources": [ { "fileName": "utils/sessionInfoService.ts", - "line": 30, + "line": 29, "character": 22 } ], @@ -28811,14 +33342,14 @@ }, "type": { "type": "reference", - "id": 1328, + "id": 1598, "name": "EmbedConfig" } } ], "type": { "type": "reference", - "id": 900, + "id": 1161, "name": "AuthEventEmitter" } } @@ -28958,7 +33489,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1615, + "id": 1888, "name": "PrefetchFeatures" } } @@ -28972,7 +33503,7 @@ ] }, { - "id": 1818, + "id": 2091, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -28982,13 +33513,13 @@ "sources": [ { "fileName": "authToken.ts", - "line": 81, + "line": 85, "character": 13 } ], "signatures": [ { - "id": 1819, + "id": 2092, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -29028,7 +33559,7 @@ "sources": [ { "fileName": "tokenizedFetch.ts", - "line": 22, + "line": 21, "character": 13 } ], @@ -29107,7 +33638,7 @@ ] }, { - "id": 1779, + "id": 2052, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -29121,7 +33652,7 @@ ], "signatures": [ { - "id": 1780, + "id": 2053, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -29131,7 +33662,7 @@ }, "parameters": [ { - "id": 1781, + "id": 2054, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -29143,7 +33674,7 @@ } }, { - "id": 1782, + "id": 2055, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -29154,7 +33685,7 @@ "type": { "type": "reflection", "declaration": { - "id": 1783, + "id": 2056, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -29177,57 +33708,61 @@ "title": "Enumerations", "kind": 4, "children": [ - 1205, - 898, - 887, - 892, - 1036, - 1325, - 1201, - 1068, - 1626, - 1634, - 1145, - 1772, - 1027, - 1615, - 1052 + 1475, + 1159, + 1148, + 1153, + 1306, + 1595, + 1471, + 1338, + 1899, + 1907, + 1415, + 2045, + 1297, + 1888, + 1322 ] }, { "title": "Classes", "kind": 128, "children": [ - 953, - 730, - 432, - 595, - 166, - 37 + 1214, + 765, + 926, + 979, + 457, + 626, + 181, + 48 ] }, { "title": "Interfaces", "kind": 256, "children": [ - 1552, - 900, - 1798, - 1678, - 1666, - 1658, - 1328, - 1620, - 1453, - 1048, - 1769, - 1509, - 1420, - 1370, - 1017, - 1024, - 1795, - 1669, + 1825, + 1161, + 940, + 1108, + 2071, + 1951, + 1939, + 1931, + 1598, + 1893, + 1724, + 1318, + 2042, + 1781, + 1690, + 1640, + 1287, + 1294, + 2068, + 1942, 17, 21 ] @@ -29236,26 +33771,28 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 1641, - 1645, - 1642, - 1653 + 1914, + 1918, + 1915, + 1926 ] }, { "title": "Functions", "kind": 64, "children": [ + 44, 11, 14, + 37, 29, 31, 1, 4, 7, - 1818, + 2091, 33, - 1779 + 2052 ] } ],