From 985409a6a250182ed43f848cc7b9950ddca24240 Mon Sep 17 00:00:00 2001 From: shivam-kumar Date: Fri, 7 Nov 2025 10:50:15 +0530 Subject: [PATCH 01/18] SCAL-239528 Implement restricting navigation for blocked embed routes --- src/embed/ts-embed.spec.ts | 2 + src/embed/ts-embed.ts | 2 + src/types.ts | 42 + static/typedoc/typedoc.json | 9081 ++++++++++++++--------------------- 4 files changed, 3710 insertions(+), 5417 deletions(-) diff --git a/src/embed/ts-embed.spec.ts b/src/embed/ts-embed.spec.ts index a2ea29dd..5d567362 100644 --- a/src/embed/ts-embed.spec.ts +++ b/src/embed/ts-embed.spec.ts @@ -130,6 +130,8 @@ const getMockAppInitPayload = (data: any) => { customVariablesForThirdPartyTools, interceptTimeout: undefined, interceptUrls: [], + allowedRoutes: [], + accessDeniedMessage: '', }; return { type: EmbedEvent.APP_INIT, diff --git a/src/embed/ts-embed.ts b/src/embed/ts-embed.ts index f634c6b4..96849b49 100644 --- a/src/embed/ts-embed.ts +++ b/src/embed/ts-embed.ts @@ -479,6 +479,8 @@ export class TsEmbed { this.embedConfig.customVariablesForThirdPartyTools || {}, hiddenListColumns: this.viewConfig.hiddenListColumns || [], customActions: customActionsResult.actions, + allowedRoutes: this.viewConfig.allowedRoutes || [], + accessDeniedMessage: this.viewConfig.accessDeniedMessage || '', ...getInterceptInitData(this.viewConfig), }; diff --git a/src/types.ts b/src/types.ts index 06f9cd20..a55e97dc 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1106,6 +1106,46 @@ export interface BaseViewConfig extends ApiInterceptFlags { * ``` */ customActions?: CustomAction[]; + + /** + * Array of routes that are allowed to be accessed in the embedded app. + * When specified, navigation will be restricted to only these routes. + * Use Path.All to allow all routes without restrictions. + * + * Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SageEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed` + * @example + * + * + * // Replace with embed component name. For example, AppEmbed, SearchEmbed, or LiveboardEmbed + * const embed = new AppEmbed('#tsEmbed', { + * ... // other embed view config + * allowedRoutes: [Path.Home, Path.Search, Path.Liveboards], + * accessDeniedMessage: 'You do not have access to this page' + * }) + * * + * + * // Allow all routes + * const embed = new AppEmbed('#tsEmbed', { + * allowedRoutes: [Path.All] + * }) + * */ + allowedRoutes?: Path[]; + /** + * Custom message to display when a user tries to access a route + * that is not in the allowedRoutes list. + * + * Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SageEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed` + * @default 'Access Denied' + * @example + * + * const embed = new AppEmbed('#tsEmbed', { + * allowedRoutes: [Path.Home, Path.Liveboards], + * accessDeniedMessage: 'You do not have permission to access this page. + * Please contact your administrator.' + * }) + * */ + accessDeniedMessage?: string; + } /** @@ -6376,6 +6416,8 @@ export interface DefaultAppInitData { customActions: CustomAction[]; interceptTimeout: number | undefined; interceptUrls: (string | InterceptedApiType)[]; + allowedRoutes: Path[]; + accessDeniedMessage: string; } /** diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 334e973c..e16432e5 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 2173, + "id": 2097, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 2286, + "id": 2210, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -48,14 +48,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5704, + "line": 5560, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2193, + "id": 2117, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -76,14 +76,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4850, + "line": 4706, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 2186, + "id": 2110, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -104,14 +104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4779, + "line": 4635, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 2185, + "id": 2109, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -128,14 +128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4768, + "line": 4624, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 2191, + "id": 2115, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -152,14 +152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4831, + "line": 4687, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 2192, + "id": 2116, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -176,14 +176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4840, + "line": 4696, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 2194, + "id": 2118, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -204,14 +204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4860, + "line": 4716, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 2268, + "id": 2192, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -232,14 +232,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5498, + "line": 5354, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 2241, + "id": 2165, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -260,14 +260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5220, + "line": 5076, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 2283, + "id": 2207, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -288,14 +288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5671, + "line": 5527, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 2240, + "id": 2164, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -316,14 +316,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5208, + "line": 5064, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2239, + "id": 2163, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -344,14 +344,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5196, + "line": 5052, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2282, + "id": 2206, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -373,14 +373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5660, + "line": 5516, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 2252, + "id": 2176, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -401,14 +401,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5333, + "line": 5189, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 2255, + "id": 2179, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -429,14 +429,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5367, + "line": 5223, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 2260, + "id": 2184, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -457,14 +457,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5422, + "line": 5278, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 2254, + "id": 2178, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -485,14 +485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5356, + "line": 5212, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 2257, + "id": 2181, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -513,14 +513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5390, + "line": 5246, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 2261, + "id": 2185, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -541,14 +541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5432, + "line": 5288, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 2258, + "id": 2182, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -569,14 +569,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5401, + "line": 5257, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 2263, + "id": 2187, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -597,14 +597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5454, + "line": 5310, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 2259, + "id": 2183, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -625,14 +625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5411, + "line": 5267, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 2256, + "id": 2180, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -653,14 +653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5378, + "line": 5234, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 2262, + "id": 2186, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -681,14 +681,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5442, + "line": 5298, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 2253, + "id": 2177, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -709,14 +709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5344, + "line": 5200, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 2295, + "id": 2219, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -737,14 +737,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5802, + "line": 5658, "character": 4 } ], "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 2190, + "id": 2114, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -761,14 +761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4822, + "line": 4678, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 2189, + "id": 2113, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -789,14 +789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4813, + "line": 4669, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 2188, + "id": 2112, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -817,14 +817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4801, + "line": 4657, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 2302, + "id": 2226, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -845,14 +845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5878, + "line": 5734, "character": 4 } ], "defaultValue": "\"columnRename\"" }, { - "id": 2187, + "id": 2111, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -869,14 +869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4790, + "line": 4646, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 2232, + "id": 2156, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -884,14 +884,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5147, + "line": 5003, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 2180, + "id": 2104, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -908,14 +908,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4727, + "line": 4583, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2231, + "id": 2155, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -932,14 +932,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5146, + "line": 5002, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2303, + "id": 2227, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -960,42 +960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5888, + "line": 5744, "character": 4 } ], "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 2313, - "name": "CreateGroup", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "The **Create Group** menu action on a Liveboard.\nAllows creating a new group.", - "tags": [ - { - "tag": "example", - "text": "\n```js\ndisabledActions: [Action.CreateGroup]\n```" - }, - { - "tag": "version", - "text": "SDK: 1.44.0 | ThoughtSpot Cloud: 26.2.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6000, - "character": 4 - } - ], - "defaultValue": "\"createGroup\"" - }, - { - "id": 2280, + "id": 2204, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -1016,14 +988,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5635, + "line": 5491, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 2243, + "id": 2167, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1044,14 +1016,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5240, + "line": 5096, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2248, + "id": 2172, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1072,14 +1044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5291, + "line": 5147, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 2300, + "id": 2224, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1100,14 +1072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5859, + "line": 5715, "character": 4 } ], "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 2292, + "id": 2216, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1128,14 +1100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5771, + "line": 5627, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 2294, + "id": 2218, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1156,14 +1128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5790, + "line": 5646, "character": 4 } ], "defaultValue": "\"disableChipReorder\"" }, { - "id": 2202, + "id": 2126, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1180,14 +1152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4910, + "line": 4766, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 2205, + "id": 2129, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1204,14 +1176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4943, + "line": 4799, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2204, + "id": 2128, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1229,14 +1201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4933, + "line": 4789, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2203, + "id": 2127, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1253,14 +1225,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4920, + "line": 4776, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2206, + "id": 2130, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1277,14 +1249,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4953, + "line": 4809, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2236, + "id": 2160, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1301,14 +1273,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5163, + "line": 5019, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 2230, + "id": 2154, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1325,14 +1297,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5136, + "line": 4992, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 2229, + "id": 2153, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1349,14 +1321,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5127, + "line": 4983, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 2214, + "id": 2138, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1373,14 +1345,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5029, + "line": 4885, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2179, + "id": 2103, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1397,14 +1369,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4718, + "line": 4574, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 2242, + "id": 2166, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1425,14 +1397,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5229, + "line": 5085, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 2234, + "id": 2158, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1440,14 +1412,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5152, + "line": 5008, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 2299, + "id": 2223, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1468,14 +1440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5848, + "line": 5704, "character": 4 } ], "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 2272, + "id": 2196, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1496,14 +1468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5542, + "line": 5398, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 2287, + "id": 2211, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1524,14 +1496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5717, + "line": 5573, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 2211, + "id": 2135, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1548,14 +1520,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4997, + "line": 4853, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2215, + "id": 2139, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1572,14 +1544,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5037, + "line": 4893, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 2301, + "id": 2225, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1600,14 +1572,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5869, + "line": 5725, "character": 4 } ], "defaultValue": "\"editTokens\"" }, { - "id": 2269, + "id": 2193, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1628,14 +1600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5508, + "line": 5364, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 2270, + "id": 2194, "name": "EnableIterativeChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1656,14 +1628,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5519, + "line": 5375, "character": 4 } ], "defaultValue": "\"enableIterativeChangeAnalysis\"" }, { - "id": 2228, + "id": 2152, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1680,14 +1652,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5116, + "line": 4972, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2208, + "id": 2132, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1705,14 +1677,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4969, + "line": 4825, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2209, + "id": 2133, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1729,14 +1701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4979, + "line": 4835, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 2304, + "id": 2228, "name": "InConversationTraining", "kind": 16, "kindString": "Enumeration member", @@ -1757,14 +1729,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5904, + "line": 5760, "character": 4 } ], "defaultValue": "\"InConversationTraining\"" }, { - "id": 2293, + "id": 2217, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1785,14 +1757,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5781, + "line": 5637, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 2222, + "id": 2146, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1809,14 +1781,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5078, + "line": 4934, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2310, + "id": 2234, "name": "LiveboardStylePanel", "kind": 16, "kindString": "Enumeration member", @@ -1837,14 +1809,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5970, + "line": 5826, "character": 4 } ], "defaultValue": "\"liveboardStylePanel\"" }, { - "id": 2278, + "id": 2202, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1865,14 +1837,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5603, + "line": 5459, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 2178, + "id": 2102, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1889,14 +1861,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4709, + "line": 4565, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2276, + "id": 2200, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1913,14 +1885,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5583, + "line": 5439, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2247, + "id": 2171, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1941,14 +1913,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5281, + "line": 5137, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2291, + "id": 2215, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1969,14 +1941,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5760, + "line": 5616, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 2267, + "id": 2191, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1997,14 +1969,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5488, + "line": 5344, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 2274, + "id": 2198, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -2024,70 +1996,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5563, + "line": 5419, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 2312, - "name": "MoveOutOfGroup", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "The **Move out of Group** menu action on a Liveboard.\nAllows moving a visualization out of a group.", - "tags": [ - { - "tag": "example", - "text": "\n```js\ndisabledActions: [Action.MoveOutOfGroup]\n```" - }, - { - "tag": "version", - "text": "SDK: 1.44.0 | ThoughtSpot Cloud: 26.2.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 5990, - "character": 4 - } - ], - "defaultValue": "\"moveOutOfGroup\"" - }, - { - "id": 2311, - "name": "MoveToGroup", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "The **Move to Group** menu action on a Liveboard.\nAllows moving a visualization to a different group.", - "tags": [ - { - "tag": "example", - "text": "\n```js\ndisabledActions: [Action.MoveToGroup]\n```" - }, - { - "tag": "version", - "text": "SDK: 1.44.0 | ThoughtSpot Cloud: 26.2.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 5980, - "character": 4 - } - ], - "defaultValue": "\"moveToGroup\"" - }, - { - "id": 2275, + "id": 2199, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -2104,14 +2020,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5572, + "line": 5428, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 2285, + "id": 2209, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -2132,14 +2048,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5693, + "line": 5549, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 2288, + "id": 2212, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2160,14 +2076,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5728, + "line": 5584, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 2277, + "id": 2201, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2188,14 +2104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5593, + "line": 5449, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 2225, + "id": 2149, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2212,14 +2128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5095, + "line": 4951, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2308, + "id": 2232, "name": "PngScreenshotInEmail", "kind": 16, "kindString": "Enumeration member", @@ -2236,14 +2152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5948, + "line": 5804, "character": 4 } ], "defaultValue": "\"pngScreenshotInEmail\"" }, { - "id": 2212, + "id": 2136, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2260,14 +2176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5007, + "line": 4863, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2296, + "id": 2220, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2288,14 +2204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5814, + "line": 5670, "character": 4 } ], "defaultValue": "\"previewDataSpotter\"" }, { - "id": 2238, + "id": 2162, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2313,14 +2229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5186, + "line": 5042, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 2216, + "id": 2140, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2337,14 +2253,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5047, + "line": 4903, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2309, + "id": 2233, "name": "RemoveAttachment", "kind": 16, "kindString": "Enumeration member", @@ -2365,14 +2281,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5960, + "line": 5816, "character": 4 } ], "defaultValue": "\"removeAttachment\"" }, { - "id": 2251, + "id": 2175, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2393,14 +2309,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5322, + "line": 5178, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 2284, + "id": 2208, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2421,14 +2337,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5682, + "line": 5538, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 2265, + "id": 2189, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2449,14 +2365,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5468, + "line": 5324, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 2244, + "id": 2168, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2480,14 +2396,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5250, + "line": 5106, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 2237, + "id": 2161, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2504,14 +2420,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5172, + "line": 5028, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 2266, + "id": 2190, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2532,14 +2448,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5478, + "line": 5334, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 2297, + "id": 2221, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2560,14 +2476,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5826, + "line": 5682, "character": 4 } ], "defaultValue": "\"resetSpotterChat\"" }, { - "id": 2273, + "id": 2197, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2588,14 +2504,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5554, + "line": 5410, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 2174, + "id": 2098, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2612,14 +2528,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4678, + "line": 4534, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2177, + "id": 2101, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2636,14 +2552,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4696, + "line": 4552, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 2182, + "id": 2106, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2660,14 +2576,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4741, + "line": 4597, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2183, + "id": 2107, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2684,14 +2600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4750, + "line": 4606, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2235, + "id": 2159, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2699,14 +2615,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5153, + "line": 5009, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 2184, + "id": 2108, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2723,14 +2639,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4759, + "line": 4615, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2199, + "id": 2123, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2741,14 +2657,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4885, + "line": 4741, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 2271, + "id": 2195, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2769,14 +2685,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5529, + "line": 5385, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 2201, + "id": 2125, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2793,14 +2709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4900, + "line": 4756, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2196, + "id": 2120, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2817,14 +2733,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4873, + "line": 4729, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2298, + "id": 2222, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2845,14 +2761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5837, + "line": 5693, "character": 4 } ], "defaultValue": "\"spotterFeedback\"" }, { - "id": 2307, + "id": 2231, "name": "SpotterTokenQuickEdit", "kind": 16, "kindString": "Enumeration member", @@ -2873,14 +2789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5937, + "line": 5793, "character": 4 } ], "defaultValue": "\"SpotterTokenQuickEdit\"" }, { - "id": 2305, + "id": 2229, "name": "SpotterWarningsBanner", "kind": 16, "kindString": "Enumeration member", @@ -2901,14 +2817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5915, + "line": 5771, "character": 4 } ], "defaultValue": "\"SpotterWarningsBanner\"" }, { - "id": 2306, + "id": 2230, "name": "SpotterWarningsOnTokens", "kind": 16, "kindString": "Enumeration member", @@ -2929,14 +2845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5926, + "line": 5782, "character": 4 } ], "defaultValue": "\"SpotterWarningsOnTokens\"" }, { - "id": 2227, + "id": 2151, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2953,14 +2869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5108, + "line": 4964, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2246, + "id": 2170, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2981,14 +2897,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5271, + "line": 5127, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2245, + "id": 2169, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -3009,14 +2925,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5260, + "line": 5116, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2249, + "id": 2173, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -3037,14 +2953,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5301, + "line": 5157, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 2250, + "id": 2174, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -3065,14 +2981,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5311, + "line": 5167, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 2279, + "id": 2203, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -3097,14 +3013,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5622, + "line": 5478, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 2213, + "id": 2137, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -3121,42 +3037,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5019, + "line": 4875, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 2314, - "name": "UngroupLiveboardGroup", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "The **Ungroup Liveboard Group** menu action on a Liveboard.\nAllows ungrouping a liveboard group.", - "tags": [ - { - "tag": "example", - "text": "\n```js\ndisabledActions: [Action.UngroupLiveboardGroup]\n```" - }, - { - "tag": "version", - "text": "SDK: 1.44.0 | ThoughtSpot Cloud: 26.2.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6010, - "character": 4 - } - ], - "defaultValue": "\"ungroupLiveboardGroup\"" - }, - { - "id": 2290, + "id": 2214, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3177,14 +3065,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5750, + "line": 5606, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 2210, + "id": 2134, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -3201,14 +3089,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4988, + "line": 4844, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2281, + "id": 2205, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -3229,14 +3117,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5646, + "line": 5502, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 2289, + "id": 2213, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3257,7 +3145,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5739, + "line": 5595, "character": 4 } ], @@ -3269,142 +3157,138 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2286, - 2193, - 2186, - 2185, - 2191, + 2210, + 2117, + 2110, + 2109, + 2115, + 2116, + 2118, 2192, - 2194, - 2268, - 2241, - 2283, - 2240, - 2239, - 2282, - 2252, - 2255, - 2260, - 2254, - 2257, - 2261, - 2258, - 2263, - 2259, - 2256, - 2262, - 2253, - 2295, - 2190, - 2189, - 2188, - 2302, + 2165, + 2207, + 2164, + 2163, + 2206, + 2176, + 2179, + 2184, + 2178, + 2181, + 2185, + 2182, 2187, - 2232, + 2183, 2180, - 2231, - 2303, - 2313, - 2280, - 2243, - 2248, - 2300, - 2292, - 2294, - 2202, - 2205, + 2186, + 2177, + 2219, + 2114, + 2113, + 2112, + 2226, + 2111, + 2156, + 2104, + 2155, + 2227, 2204, - 2203, - 2206, - 2236, - 2230, - 2229, - 2214, - 2179, - 2242, - 2234, - 2299, - 2272, - 2287, + 2167, + 2172, + 2224, + 2216, + 2218, + 2126, + 2129, + 2128, + 2127, + 2130, + 2160, + 2154, + 2153, + 2138, + 2103, + 2166, + 2158, + 2223, + 2196, 2211, - 2215, - 2301, - 2269, - 2270, + 2135, + 2139, + 2225, + 2193, + 2194, + 2152, + 2132, + 2133, 2228, - 2208, + 2217, + 2146, + 2234, + 2202, + 2102, + 2200, + 2171, + 2215, + 2191, + 2198, + 2199, 2209, - 2304, - 2293, - 2222, - 2310, - 2278, - 2178, - 2276, - 2247, - 2291, - 2267, - 2274, - 2312, - 2311, - 2275, - 2285, - 2288, - 2277, - 2225, - 2308, 2212, - 2296, - 2238, - 2216, - 2309, - 2251, - 2284, - 2265, - 2244, - 2237, - 2266, - 2297, - 2273, - 2174, - 2177, - 2182, - 2183, - 2235, - 2184, - 2199, - 2271, 2201, - 2196, - 2298, - 2307, - 2305, - 2306, - 2227, - 2246, - 2245, - 2249, - 2250, - 2279, - 2213, - 2314, - 2290, - 2210, - 2281, - 2289 + 2149, + 2232, + 2136, + 2220, + 2162, + 2140, + 2233, + 2175, + 2208, + 2189, + 2168, + 2161, + 2190, + 2221, + 2197, + 2098, + 2101, + 2106, + 2107, + 2159, + 2108, + 2123, + 2195, + 2125, + 2120, + 2222, + 2231, + 2229, + 2230, + 2151, + 2170, + 2169, + 2173, + 2174, + 2203, + 2137, + 2214, + 2134, + 2205, + 2213 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4669, + "line": 4525, "character": 12 } ] }, { - "id": 1820, + "id": 1747, "name": "AuthEvent", "kind": 4, "kindString": "Enumeration", @@ -3420,7 +3304,7 @@ }, "children": [ { - "id": 1821, + "id": 1748, "name": "TRIGGER_SSO_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3443,7 +3327,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1821 + 1748 ] } ], @@ -3456,7 +3340,7 @@ ] }, { - "id": 1805, + "id": 1732, "name": "AuthFailureType", "kind": 4, "kindString": "Enumeration", @@ -3472,7 +3356,7 @@ }, "children": [ { - "id": 1808, + "id": 1735, "name": "EXPIRY", "kind": 16, "kindString": "Enumeration member", @@ -3487,7 +3371,7 @@ "defaultValue": "\"EXPIRY\"" }, { - "id": 1810, + "id": 1737, "name": "IDLE_SESSION_TIMEOUT", "kind": 16, "kindString": "Enumeration member", @@ -3502,7 +3386,7 @@ "defaultValue": "\"IDLE_SESSION_TIMEOUT\"" }, { - "id": 1807, + "id": 1734, "name": "NO_COOKIE_ACCESS", "kind": 16, "kindString": "Enumeration member", @@ -3517,7 +3401,7 @@ "defaultValue": "\"NO_COOKIE_ACCESS\"" }, { - "id": 1809, + "id": 1736, "name": "OTHER", "kind": 16, "kindString": "Enumeration member", @@ -3532,7 +3416,7 @@ "defaultValue": "\"OTHER\"" }, { - "id": 1806, + "id": 1733, "name": "SDK", "kind": 16, "kindString": "Enumeration member", @@ -3547,7 +3431,7 @@ "defaultValue": "\"SDK\"" }, { - "id": 1811, + "id": 1738, "name": "UNAUTHENTICATED_FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3567,12 +3451,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1808, - 1810, - 1807, - 1809, - 1806, - 1811 + 1735, + 1737, + 1734, + 1736, + 1733, + 1738 ] } ], @@ -3585,7 +3469,7 @@ ] }, { - "id": 1812, + "id": 1739, "name": "AuthStatus", "kind": 4, "kindString": "Enumeration", @@ -3601,7 +3485,7 @@ }, "children": [ { - "id": 1813, + "id": 1740, "name": "FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3619,7 +3503,7 @@ "defaultValue": "\"FAILURE\"" }, { - "id": 1817, + "id": 1744, "name": "LOGOUT", "kind": 16, "kindString": "Enumeration member", @@ -3637,7 +3521,7 @@ "defaultValue": "\"LOGOUT\"" }, { - "id": 1819, + "id": 1746, "name": "SAML_POPUP_CLOSED_NO_AUTH", "kind": 16, "kindString": "Enumeration member", @@ -3655,7 +3539,7 @@ "defaultValue": "\"SAML_POPUP_CLOSED_NO_AUTH\"" }, { - "id": 1814, + "id": 1741, "name": "SDK_SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3673,7 +3557,7 @@ "defaultValue": "\"SDK_SUCCESS\"" }, { - "id": 1816, + "id": 1743, "name": "SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3691,7 +3575,7 @@ "defaultValue": "\"SUCCESS\"" }, { - "id": 1818, + "id": 1745, "name": "WAITING_FOR_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3720,12 +3604,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1813, - 1817, - 1819, - 1814, - 1816, - 1818 + 1740, + 1744, + 1746, + 1741, + 1743, + 1745 ] } ], @@ -3738,7 +3622,7 @@ ] }, { - "id": 1967, + "id": 1894, "name": "AuthType", "kind": 4, "kindString": "Enumeration", @@ -3754,7 +3638,7 @@ }, "children": [ { - "id": 1978, + "id": 1905, "name": "Basic", "kind": 16, "kindString": "Enumeration member", @@ -3773,7 +3657,7 @@ "defaultValue": "\"Basic\"" }, { - "id": 1969, + "id": 1896, "name": "EmbeddedSSO", "kind": 16, "kindString": "Enumeration member", @@ -3802,7 +3686,7 @@ "defaultValue": "\"EmbeddedSSO\"" }, { - "id": 1968, + "id": 1895, "name": "None", "kind": 16, "kindString": "Enumeration member", @@ -3826,7 +3710,7 @@ "defaultValue": "\"None\"" }, { - "id": 1974, + "id": 1901, "name": "OIDCRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3844,7 +3728,7 @@ "defaultValue": "\"SSO_OIDC\"" }, { - "id": 1972, + "id": 1899, "name": "SAMLRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3877,7 +3761,7 @@ "defaultValue": "\"SSO_SAML\"" }, { - "id": 1976, + "id": 1903, "name": "TrustedAuthToken", "kind": 16, "kindString": "Enumeration member", @@ -3901,7 +3785,7 @@ "defaultValue": "\"AuthServer\"" }, { - "id": 1977, + "id": 1904, "name": "TrustedAuthTokenCookieless", "kind": 16, "kindString": "Enumeration member", @@ -3934,13 +3818,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1978, - 1969, - 1968, - 1974, - 1972, - 1976, - 1977 + 1905, + 1896, + 1895, + 1901, + 1899, + 1903, + 1904 ] } ], @@ -3953,7 +3837,7 @@ ] }, { - "id": 2315, + "id": 2235, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3963,7 +3847,7 @@ }, "children": [ { - "id": 2318, + "id": 2238, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3971,14 +3855,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6030, + "line": 5847, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 2316, + "id": 2236, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3986,14 +3870,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6028, + "line": 5845, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 2317, + "id": 2237, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -4001,7 +3885,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6029, + "line": 5846, "character": 4 } ], @@ -4013,22 +3897,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2318, - 2316, - 2317 + 2238, + 2236, + 2237 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6027, + "line": 5844, "character": 12 } ] }, { - "id": 3007, + "id": 2904, "name": "CustomActionTarget", "kind": 4, "kindString": "Enumeration", @@ -4038,7 +3922,7 @@ }, "children": [ { - "id": 3010, + "id": 2907, "name": "ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -4046,14 +3930,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6115, + "line": 5932, "character": 4 } ], "defaultValue": "\"ANSWER\"" }, { - "id": 3008, + "id": 2905, "name": "LIVEBOARD", "kind": 16, "kindString": "Enumeration member", @@ -4061,14 +3945,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6113, + "line": 5930, "character": 4 } ], "defaultValue": "\"LIVEBOARD\"" }, { - "id": 3011, + "id": 2908, "name": "SPOTTER", "kind": 16, "kindString": "Enumeration member", @@ -4076,14 +3960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6116, + "line": 5933, "character": 4 } ], "defaultValue": "\"SPOTTER\"" }, { - "id": 3009, + "id": 2906, "name": "VIZ", "kind": 16, "kindString": "Enumeration member", @@ -4091,7 +3975,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6114, + "line": 5931, "character": 4 } ], @@ -4103,23 +3987,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3010, - 3008, - 3011, - 3009 + 2907, + 2905, + 2908, + 2906 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6112, + "line": 5929, "character": 12 } ] }, { - "id": 3003, + "id": 2900, "name": "CustomActionsPosition", "kind": 4, "kindString": "Enumeration", @@ -4129,7 +4013,7 @@ }, "children": [ { - "id": 3006, + "id": 2903, "name": "CONTEXTMENU", "kind": 16, "kindString": "Enumeration member", @@ -4137,14 +4021,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6106, + "line": 5923, "character": 4 } ], "defaultValue": "\"CONTEXTMENU\"" }, { - "id": 3005, + "id": 2902, "name": "MENU", "kind": 16, "kindString": "Enumeration member", @@ -4152,14 +4036,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6105, + "line": 5922, "character": 4 } ], "defaultValue": "\"MENU\"" }, { - "id": 3004, + "id": 2901, "name": "PRIMARY", "kind": 16, "kindString": "Enumeration member", @@ -4167,7 +4051,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6104, + "line": 5921, "character": 4 } ], @@ -4179,22 +4063,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3006, - 3005, - 3004 + 2903, + 2902, + 2901 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6103, + "line": 5920, "character": 12 } ] }, { - "id": 2999, + "id": 2896, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -4204,7 +4088,7 @@ }, "children": [ { - "id": 3001, + "id": 2898, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4222,7 +4106,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 3000, + "id": 2897, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4240,7 +4124,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 3002, + "id": 2899, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -4263,9 +4147,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3001, - 3000, - 3002 + 2898, + 2897, + 2899 ] } ], @@ -4278,7 +4162,7 @@ ] }, { - "id": 2169, + "id": 2093, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -4288,7 +4172,7 @@ }, "children": [ { - "id": 2171, + "id": 2095, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -4299,14 +4183,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4497, + "line": 4356, "character": 4 } ], "defaultValue": "\"collapse\"" }, { - "id": 2172, + "id": 2096, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -4317,14 +4201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4501, + "line": 4360, "character": 4 } ], "defaultValue": "\"expand\"" }, { - "id": 2170, + "id": 2094, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -4335,7 +4219,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4493, + "line": 4352, "character": 4 } ], @@ -4347,22 +4231,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2171, - 2172, - 2170 + 2095, + 2096, + 2094 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4489, + "line": 4348, "character": 12 } ] }, { - "id": 1999, + "id": 1926, "name": "EmbedEvent", "kind": 4, "kindString": "Enumeration", @@ -4387,7 +4271,7 @@ }, "children": [ { - "id": 2035, + "id": 1962, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -4408,14 +4292,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2363, + "line": 2315, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2027, + "id": 1954, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -4436,14 +4320,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2248, + "line": 2200, "character": 4 } ], "defaultValue": "\"*\"" }, { - "id": 2007, + "id": 1934, "name": "AddRemoveColumns", "kind": 16, "kindString": "Enumeration member", @@ -4468,14 +4352,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2012, + "line": 1966, "character": 4 } ], "defaultValue": "\"addRemoveColumns\"" }, { - "id": 2052, + "id": 1979, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -4496,14 +4380,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2570, + "line": 2522, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 2012, + "id": 1939, "name": "Alert", "kind": 16, "kindString": "Enumeration member", @@ -4528,14 +4412,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2106, + "line": 2058, "character": 4 } ], "defaultValue": "\"alert\"" }, { - "id": 2048, + "id": 1975, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -4556,14 +4440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2538, + "line": 2490, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2034, + "id": 1961, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -4584,43 +4468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2352, + "line": 2304, "character": 4 } ], "defaultValue": "\"answerDelete\"" }, { - "id": 2094, - "name": "ApiIntercept", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "Emitted when the user intercepts a URL.", - "text": "Supported on all embed types.\n", - "tags": [ - { - "tag": "example", - "text": "\n\n```js\nembed.on(EmbedEvent.ApiIntercept, (payload, responder) => {\n console.log('payload', payload);\n responder({\n data: {\n execute: false,\n error: {\n errorText: 'Error Occurred',\n }\n }\n })\n})\n```\n\n```js\n// We can also send a response for the intercepted api\nembed.on(EmbedEvent.ApiIntercept, (payload, responder) => {\n console.log('payload', payload);\n responder({\n data: {\n execute: false,\n response: {\n body: {\n data: {\n // Some api response\n },\n }\n }\n }\n })\n})\n\n// here embed will use the response from the responder as the response for the api\n```\n\n```js\n// We can also send error in response for the intercepted api\nembed.on(EmbedEvent.ApiIntercept, (payload, responder) => {\n console.log('payload', payload);\n responder({\n data: {\n execute: false,\n response: {\n body: {\n errors: [{\n title: 'Error Occurred',\n description: 'Error Description',\n isUserError: true,\n }],\n data: {},\n },\n }\n }\n })\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 3108, - "character": 4 - } - ], - "defaultValue": "\"ApiIntercept\"" - }, - { - "id": 2075, + "id": 2002, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -4653,14 +4508,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2779, + "line": 2731, "character": 4 } ], "defaultValue": "\"AskSageInit\"" }, { - "id": 2013, + "id": 1940, "name": "AuthExpire", "kind": 16, "kindString": "Enumeration member", @@ -4681,14 +4536,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2119, + "line": 2071, "character": 4 } ], "defaultValue": "\"ThoughtspotAuthExpired\"" }, { - "id": 2001, + "id": 1928, "name": "AuthInit", "kind": 16, "kindString": "Enumeration member", @@ -4713,14 +4568,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1914, + "line": 1868, "character": 4 } ], "defaultValue": "\"authInit\"" }, { - "id": 2059, + "id": 1986, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -4741,14 +4596,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2646, + "line": 2598, "character": 4 } ], "defaultValue": "\"cancel\"" }, { - "id": 2046, + "id": 1973, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -4769,14 +4624,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2516, + "line": 2468, "character": 4 } ], "defaultValue": "\"copyAEdit\"" }, { - "id": 2061, + "id": 1988, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -4797,14 +4652,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2666, + "line": 2618, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2041, + "id": 1968, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -4825,14 +4680,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2453, + "line": 2405, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2069, + "id": 1996, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -4849,14 +4704,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2730, + "line": 2682, "character": 4 } ], "defaultValue": "\"createConnection\"" }, { - "id": 2080, + "id": 2007, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -4874,14 +4729,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2914, + "line": 2862, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 2081, + "id": 2008, "name": "CreateModel", "kind": 16, "kindString": "Enumeration member", @@ -4898,14 +4753,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2919, + "line": 2867, "character": 4 } ], "defaultValue": "\"createModel\"" }, { - "id": 2074, + "id": 2001, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -4922,14 +4777,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2770, + "line": 2722, "character": 4 } ], "defaultValue": "\"createWorksheet\"" }, { - "id": 2062, + "id": 1989, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4950,14 +4805,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2677, + "line": 2629, "character": 4 } ], "defaultValue": "\"cross-filter-changed\"" }, { - "id": 2008, + "id": 1935, "name": "CustomAction", "kind": 16, "kindString": "Enumeration member", @@ -4986,14 +4841,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2029, + "line": 1983, "character": 4 } ], "defaultValue": "\"customAction\"" }, { - "id": 2003, + "id": 1930, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -5022,14 +4877,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1942, + "line": 1896, "character": 4 } ], "defaultValue": "\"data\"" }, { - "id": 2006, + "id": 1933, "name": "DataSourceSelected", "kind": 16, "kindString": "Enumeration member", @@ -5054,14 +4909,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2000, + "line": 1954, "character": 4 } ], "defaultValue": "\"dataSourceSelected\"" }, { - "id": 2057, + "id": 1984, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -5082,14 +4937,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2628, + "line": 2580, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2073, + "id": 2000, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -5114,14 +4969,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2765, + "line": 2717, "character": 4 } ], "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 2025, + "id": 1952, "name": "DialogClose", "kind": 16, "kindString": "Enumeration member", @@ -5142,14 +4997,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2215, + "line": 2167, "character": 4 } ], "defaultValue": "\"dialog-close\"" }, { - "id": 2024, + "id": 1951, "name": "DialogOpen", "kind": 16, "kindString": "Enumeration member", @@ -5170,14 +5025,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2204, + "line": 2156, "character": 4 } ], "defaultValue": "\"dialog-open\"" }, { - "id": 2029, + "id": 1956, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -5199,14 +5054,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2282, + "line": 2234, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 2032, + "id": 1959, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -5227,14 +5082,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2324, + "line": 2276, "character": 4 } ], "defaultValue": "\"downloadAsCsv\"" }, { - "id": 2031, + "id": 1958, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -5255,14 +5110,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2310, + "line": 2262, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2030, + "id": 1957, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -5283,14 +5138,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2296, + "line": 2248, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2033, + "id": 1960, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -5311,14 +5166,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2338, + "line": 2290, "character": 4 } ], "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 2040, + "id": 1967, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -5339,14 +5194,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2442, + "line": 2394, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 2039, + "id": 1966, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -5367,14 +5222,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2430, + "line": 2382, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 2005, + "id": 1932, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -5411,14 +5266,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1988, + "line": 1942, "character": 4 } ], "defaultValue": "\"drillDown\"" }, { - "id": 2054, + "id": 1981, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -5439,14 +5294,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2592, + "line": 2544, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2043, + "id": 1970, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -5467,14 +5322,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2476, + "line": 2428, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2011, + "id": 1938, "name": "Error", "kind": 16, "kindString": "Enumeration member", @@ -5504,14 +5359,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2096, + "line": 2048, "character": 4 } ], "defaultValue": "\"Error\"" }, { - "id": 2060, + "id": 1987, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -5532,14 +5387,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2656, + "line": 2608, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2044, + "id": 1971, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -5560,14 +5415,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2491, + "line": 2443, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2065, + "id": 1992, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5584,14 +5439,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2707, + "line": 2659, "character": 4 } ], "defaultValue": "\"filterChanged\"" }, { - "id": 2019, + "id": 1946, "name": "GetDataClick", "kind": 16, "kindString": "Enumeration member", @@ -5612,14 +5467,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2161, + "line": 2113, "character": 4 } ], "defaultValue": "\"getDataClick\"" }, { - "id": 2000, + "id": 1927, "name": "Init", "kind": 16, "kindString": "Enumeration member", @@ -5640,14 +5495,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1902, + "line": 1856, "character": 4 } ], "defaultValue": "\"init\"" }, { - "id": 2088, + "id": 2015, "name": "LastPromptDeleted", "kind": 16, "kindString": "Enumeration member", @@ -5668,14 +5523,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2986, + "line": 2934, "character": 4 } ], "defaultValue": "\"LastPromptDeleted\"" }, { - "id": 2087, + "id": 2014, "name": "LastPromptEdited", "kind": 16, "kindString": "Enumeration member", @@ -5696,14 +5551,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2975, + "line": 2923, "character": 4 } ], "defaultValue": "\"LastPromptEdited\"" }, { - "id": 2051, + "id": 1978, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -5724,14 +5579,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2559, + "line": 2511, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2026, + "id": 1953, "name": "LiveboardRendered", "kind": 16, "kindString": "Enumeration member", @@ -5756,14 +5611,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2237, + "line": 2189, "character": 4 } ], "defaultValue": "\"PinboardRendered\"" }, { - "id": 2002, + "id": 1929, "name": "Load", "kind": 16, "kindString": "Enumeration member", @@ -5788,14 +5643,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1928, + "line": 1882, "character": 4 } ], "defaultValue": "\"load\"" }, { - "id": 2055, + "id": 1982, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -5816,14 +5671,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2603, + "line": 2555, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2022, + "id": 1949, "name": "NoCookieAccess", "kind": 16, "kindString": "Enumeration member", @@ -5844,14 +5699,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2187, + "line": 2139, "character": 4 } ], "defaultValue": "\"noCookieAccess\"" }, { - "id": 2077, + "id": 2004, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", @@ -5881,14 +5736,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2847, + "line": 2795, "character": 4 } ], "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 2093, + "id": 2019, "name": "OrgSwitched", "kind": 16, "kindString": "Enumeration member", @@ -5909,14 +5764,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3042, + "line": 2979, "character": 4 } ], "defaultValue": "\"orgSwitched\"" }, { - "id": 2078, + "id": 2005, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5933,14 +5788,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2858, + "line": 2806, "character": 4 } ], "defaultValue": "\"parameterChanged\"" }, { - "id": 2036, + "id": 1963, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -5961,14 +5816,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2382, + "line": 2334, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2056, + "id": 1983, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -5993,14 +5848,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2618, + "line": 2570, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2085, + "id": 2012, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -6021,14 +5876,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2953, + "line": 2901, "character": 4 } ], "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 2004, + "id": 1931, "name": "QueryChanged", "kind": 16, "kindString": "Enumeration member", @@ -6049,14 +5904,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1951, + "line": 1905, "character": 4 } ], "defaultValue": "\"queryChanged\"" }, { - "id": 2076, + "id": 2003, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -6073,14 +5928,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2784, + "line": 2736, "character": 4 } ], "defaultValue": "\"rename\"" }, { - "id": 2072, + "id": 1999, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -6113,14 +5968,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2758, + "line": 2710, "character": 4 } ], "defaultValue": "\"resetLiveboard\"" }, { - "id": 2089, + "id": 2016, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -6141,14 +5996,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2997, + "line": 2945, "character": 4 } ], "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 2020, + "id": 1947, "name": "RouteChange", "kind": 16, "kindString": "Enumeration member", @@ -6169,14 +6024,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2171, + "line": 2123, "character": 4 } ], "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 2066, + "id": 1993, "name": "SageEmbedQuery", "kind": 16, "kindString": "Enumeration member", @@ -6193,14 +6048,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2713, + "line": 2665, "character": 4 } ], "defaultValue": "\"sageEmbedQuery\"" }, { - "id": 2067, + "id": 1994, "name": "SageWorksheetUpdated", "kind": 16, "kindString": "Enumeration member", @@ -6217,14 +6072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2720, + "line": 2672, "character": 4 } ], "defaultValue": "\"sageWorksheetUpdated\"" }, { - "id": 2028, + "id": 1955, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -6245,14 +6100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2266, + "line": 2218, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2045, + "id": 1972, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -6273,14 +6128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2502, + "line": 2454, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 2071, + "id": 1998, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6313,14 +6168,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2749, + "line": 2701, "character": 4 } ], "defaultValue": "\"savePersonalisedView\"" }, { - "id": 2053, + "id": 1980, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -6341,14 +6196,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2581, + "line": 2533, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2058, + "id": 1985, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -6369,14 +6224,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2637, + "line": 2589, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2038, + "id": 1965, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -6397,14 +6252,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2418, + "line": 2370, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2047, + "id": 1974, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -6425,14 +6280,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2527, + "line": 2479, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2037, + "id": 1964, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -6453,14 +6308,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2400, + "line": 2352, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2084, + "id": 2011, "name": "SpotterData", "kind": 16, "kindString": "Enumeration member", @@ -6481,14 +6336,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2942, + "line": 2890, "character": 4 } ], "defaultValue": "\"SpotterData\"" }, { - "id": 2090, + "id": 2017, "name": "SpotterInit", "kind": 16, "kindString": "Enumeration member", @@ -6509,42 +6364,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3008, + "line": 2956, "character": 4 } ], "defaultValue": "\"spotterInit\"" }, { - "id": 2091, - "name": "SpotterLoadComplete", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "Emitted when a *Spotter* conversation has been successfully created.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nspotterEmbed.on(EmbedEvent.SpotterLoadComplete, (payload) => {\n console.log('payload', payload);\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.44.0 | ThoughtSpot: 26.2.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 3019, - "character": 4 - } - ], - "defaultValue": "\"spotterLoadComplete\"" - }, - { - "id": 2086, + "id": 2013, "name": "SpotterQueryTriggered", "kind": 16, "kindString": "Enumeration member", @@ -6565,14 +6392,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2964, + "line": 2912, "character": 4 } ], "defaultValue": "\"SpotterQueryTriggered\"" }, { - "id": 2079, + "id": 2006, "name": "TableVizRendered", "kind": 16, "kindString": "Enumeration member", @@ -6594,14 +6421,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2901, + "line": 2849, "character": 4 } ], "defaultValue": "\"TableVizRendered\"" }, { - "id": 2068, + "id": 1995, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -6618,14 +6445,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2725, + "line": 2677, "character": 4 } ], "defaultValue": "\"updateConnection\"" }, { - "id": 2070, + "id": 1997, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6658,14 +6485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2740, + "line": 2692, "character": 4 } ], "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 2042, + "id": 1969, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -6686,14 +6513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2464, + "line": 2416, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2010, + "id": 1937, "name": "VizPointClick", "kind": 16, "kindString": "Enumeration member", @@ -6722,14 +6549,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2060, + "line": 2014, "character": 4 } ], "defaultValue": "\"vizPointClick\"" }, { - "id": 2009, + "id": 1936, "name": "VizPointDoubleClick", "kind": 16, "kindString": "Enumeration member", @@ -6754,14 +6581,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2041, + "line": 1995, "character": 4 } ], "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 2063, + "id": 1990, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -6782,7 +6609,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2688, + "line": 2640, "character": 4 } ], @@ -6794,101 +6621,99 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2035, - 2027, + 1962, + 1954, + 1934, + 1979, + 1939, + 1975, + 1961, + 2002, + 1940, + 1928, + 1986, + 1973, + 1988, + 1968, + 1996, 2007, - 2052, - 2012, - 2048, - 2034, - 2094, - 2075, - 2013, - 2001, - 2059, - 2046, - 2061, - 2041, - 2069, - 2080, - 2081, - 2074, - 2062, 2008, - 2003, - 2006, - 2057, - 2073, - 2025, - 2024, - 2029, - 2032, - 2031, - 2030, - 2033, - 2040, - 2039, - 2005, - 2054, - 2043, - 2011, - 2060, - 2044, - 2065, - 2019, + 2001, + 1989, + 1935, + 1930, + 1933, + 1984, 2000, - 2088, - 2087, - 2051, - 2026, - 2002, - 2055, - 2022, - 2077, - 2093, - 2078, - 2036, - 2056, - 2085, + 1952, + 1951, + 1956, + 1959, + 1958, + 1957, + 1960, + 1967, + 1966, + 1932, + 1981, + 1970, + 1938, + 1987, + 1971, + 1992, + 1946, + 1927, + 2015, + 2014, + 1978, + 1953, + 1929, + 1982, + 1949, 2004, - 2076, - 2072, - 2089, - 2020, - 2066, - 2067, - 2028, - 2045, - 2071, - 2053, - 2058, - 2038, - 2047, - 2037, - 2084, - 2090, - 2091, - 2086, - 2079, - 2068, - 2070, - 2042, - 2010, - 2009, - 2063 + 2019, + 2005, + 1963, + 1983, + 2012, + 1931, + 2003, + 1999, + 2016, + 1947, + 1993, + 1994, + 1955, + 1972, + 1998, + 1980, + 1985, + 1965, + 1974, + 1964, + 2011, + 2017, + 2013, + 2006, + 1995, + 1997, + 1969, + 1937, + 1936, + 1990 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1889, + "line": 1843, "character": 12 } ] }, { - "id": 2705, + "id": 2604, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -6898,7 +6723,7 @@ }, "children": [ { - "id": 2709, + "id": 2608, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -6921,7 +6746,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2713, + "id": 2612, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6945,7 +6770,7 @@ "defaultValue": "\"create\"" }, { - "id": 2715, + "id": 2614, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -6969,7 +6794,7 @@ "defaultValue": "\"favorites\"" }, { - "id": 2707, + "id": 2606, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6992,7 +6817,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2712, + "id": 2611, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -7015,7 +6840,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2708, + "id": 2607, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -7038,7 +6863,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2710, + "id": 2609, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -7061,7 +6886,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2706, + "id": 2605, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -7084,7 +6909,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2711, + "id": 2610, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -7107,7 +6932,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2714, + "id": 2613, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -7136,16 +6961,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2709, - 2713, - 2715, - 2707, - 2712, - 2708, - 2710, - 2706, - 2711, - 2714 + 2608, + 2612, + 2614, + 2606, + 2611, + 2607, + 2609, + 2605, + 2610, + 2613 ] } ], @@ -7158,7 +6983,7 @@ ] }, { - "id": 2956, + "id": 2854, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -7174,7 +6999,7 @@ }, "children": [ { - "id": 2957, + "id": 2855, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -7192,7 +7017,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2958, + "id": 2856, "name": "ModularWithStylingChanges", "kind": 16, "kindString": "Enumeration member", @@ -7215,8 +7040,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2957, - 2958 + 2855, + 2856 ] } ], @@ -7229,14 +7054,14 @@ ] }, { - "id": 2950, + "id": 2848, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2952, + "id": 2850, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -7251,7 +7076,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2953, + "id": 2851, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -7266,7 +7091,7 @@ "defaultValue": "\"none\"" }, { - "id": 2951, + "id": 2849, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -7286,9 +7111,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2952, - 2953, - 2951 + 2850, + 2851, + 2849 ] } ], @@ -7301,7 +7126,7 @@ ] }, { - "id": 2716, + "id": 2615, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -7317,7 +7142,7 @@ }, "children": [ { - "id": 2719, + "id": 2618, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -7328,14 +7153,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1770, + "line": 1724, "character": 4 } ], "defaultValue": "\"FAVORITE\"" }, { - "id": 2722, + "id": 2621, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -7346,14 +7171,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1782, + "line": 1736, "character": 4 } ], "defaultValue": "\"LEARNING\"" }, { - "id": 2720, + "id": 2619, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -7364,14 +7189,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1774, + "line": 1728, "character": 4 } ], "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2717, + "id": 2616, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7382,14 +7207,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1762, + "line": 1716, "character": 4 } ], "defaultValue": "\"SEARCH\"" }, { - "id": 2721, + "id": 2620, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -7400,14 +7225,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1778, + "line": 1732, "character": 4 } ], "defaultValue": "\"TRENDING\"" }, { - "id": 2718, + "id": 2617, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -7418,7 +7243,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1766, + "line": 1720, "character": 4 } ], @@ -7430,25 +7255,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2719, - 2722, - 2720, - 2717, - 2721, - 2718 + 2618, + 2621, + 2619, + 2616, + 2620, + 2617 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1758, + "line": 1712, "character": 12 } ] }, { - "id": 2095, + "id": 2020, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -7477,7 +7302,7 @@ }, "children": [ { - "id": 2117, + "id": 2042, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -7498,14 +7323,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3554, + "line": 3425, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2106, + "id": 2031, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -7531,14 +7356,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3359, + "line": 3230, "character": 4 } ], "defaultValue": "\"addColumns\"" }, { - "id": 2162, + "id": 2087, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -7564,14 +7389,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4411, + "line": 4282, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2147, + "id": 2072, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -7592,14 +7417,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4204, + "line": 4075, "character": 4 } ], "defaultValue": "\"AskSage\"" }, { - "id": 2165, + "id": 2090, "name": "AskSpotter", "kind": 16, "kindString": "Enumeration member", @@ -7625,14 +7450,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4449, + "line": 4320, "character": 4 } ], "defaultValue": "\"AskSpotter\"" }, { - "id": 2124, + "id": 2049, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -7658,14 +7483,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3690, + "line": 3561, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2121, + "id": 2046, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -7695,14 +7520,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3628, + "line": 3499, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2128, + "id": 2053, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -7728,14 +7553,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3774, + "line": 3645, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2161, + "id": 2086, "name": "DeleteLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -7756,14 +7581,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4396, + "line": 4267, "character": 4 } ], "defaultValue": "\"DeleteLastPrompt\"" }, { - "id": 2167, + "id": 2092, "name": "DestroyEmbed", "kind": 16, "kindString": "Enumeration member", @@ -7784,14 +7609,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4469, + "line": 4340, "character": 4 } ], "defaultValue": "\"EmbedDestroyed\"" }, { - "id": 2130, + "id": 2055, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -7821,14 +7646,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3820, + "line": 3691, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2132, + "id": 2057, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -7854,14 +7679,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3871, + "line": 3742, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2116, + "id": 2041, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -7891,14 +7716,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3544, + "line": 3415, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2131, + "id": 2056, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -7919,14 +7744,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3844, + "line": 3715, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2133, + "id": 2058, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -7952,14 +7777,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3898, + "line": 3769, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2097, + "id": 2022, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -8009,14 +7834,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3236, + "line": 3107, "character": 4 } ], "defaultValue": "\"triggerDrillDown\"" }, { - "id": 2123, + "id": 2048, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -8052,14 +7877,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3673, + "line": 3544, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2158, + "id": 2083, "name": "EditLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -8085,14 +7910,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4369, + "line": 4240, "character": 4 } ], "defaultValue": "\"EditLastPrompt\"" }, { - "id": 2114, + "id": 2039, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -8113,14 +7938,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3508, + "line": 3379, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2120, + "id": 2045, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -8146,14 +7971,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3611, + "line": 3482, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2113, + "id": 2038, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -8174,14 +7999,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3498, + "line": 3369, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2146, + "id": 2071, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -8207,14 +8032,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4194, + "line": 4065, "character": 4 } ], "defaultValue": "\"getAnswerSession\"" }, { - "id": 2140, + "id": 2065, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -8235,14 +8060,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4021, + "line": 3892, "character": 4 } ], "defaultValue": "\"getFilters\"" }, { - "id": 2100, + "id": 2025, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -8263,14 +8088,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3256, + "line": 3127, "character": 4 } ], "defaultValue": "\"GetIframeUrl\"" }, { - "id": 2151, + "id": 2076, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -8292,14 +8117,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4269, + "line": 4140, "character": 4 } ], "defaultValue": "\"GetParameters\"" }, { - "id": 2126, + "id": 2051, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -8324,14 +8149,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3738, + "line": 3609, "character": 4 } ], "defaultValue": "\"getTML\"" }, { - "id": 2142, + "id": 2067, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -8352,14 +8177,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4124, + "line": 3995, "character": 4 } ], "defaultValue": "\"getTabs\"" }, { - "id": 2110, + "id": 2035, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -8380,14 +8205,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3470, + "line": 3341, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2118, + "id": 2043, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -8424,14 +8249,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3587, + "line": 3458, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2122, + "id": 2047, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -8465,14 +8290,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3649, + "line": 3520, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2138, + "id": 2063, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -8498,14 +8323,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3998, + "line": 3869, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2104, + "id": 2029, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -8531,14 +8356,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3329, + "line": 3200, "character": 4 } ], "defaultValue": "\"Navigate\"" }, { - "id": 2105, + "id": 2030, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -8568,14 +8393,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3349, + "line": 3220, "character": 4 } ], "defaultValue": "\"openFilter\"" }, { - "id": 2109, + "id": 2034, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -8636,14 +8461,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3460, + "line": 3331, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2125, + "id": 2050, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -8669,14 +8494,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3707, + "line": 3578, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2159, + "id": 2084, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -8697,14 +8522,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4378, + "line": 4249, "character": 4 } ], "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 2119, + "id": 2044, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -8729,14 +8554,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3601, + "line": 3472, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2107, + "id": 2032, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -8762,14 +8587,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3369, + "line": 3240, "character": 4 } ], "defaultValue": "\"removeColumn\"" }, { - "id": 2149, + "id": 2074, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8790,14 +8615,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4229, + "line": 4100, "character": 4 } ], "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 2139, + "id": 2064, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -8818,14 +8643,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4010, + "line": 3881, "character": 4 } ], "defaultValue": "\"resetSearch\"" }, { - "id": 2160, + "id": 2085, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -8846,14 +8671,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4387, + "line": 4258, "character": 4 } ], "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 2135, + "id": 2060, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -8879,14 +8704,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3951, + "line": 3822, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2154, + "id": 2079, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -8926,14 +8751,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4319, + "line": 4190, "character": 4 } ], "defaultValue": "\"saveAnswer\"" }, { - "id": 2111, + "id": 2036, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -8954,14 +8779,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3479, + "line": 3350, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2112, + "id": 2037, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -8982,14 +8807,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3488, + "line": 3359, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2096, + "id": 2021, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -9021,14 +8846,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3185, + "line": 3056, "character": 4 } ], "defaultValue": "\"search\"" }, { - "id": 2102, + "id": 2027, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -9054,14 +8879,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3281, + "line": 3152, "character": 4 } ], "defaultValue": "\"SetActiveTab\"" }, { - "id": 2144, + "id": 2069, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -9087,14 +8912,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4150, + "line": 4021, "character": 4 } ], "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 2143, + "id": 2068, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -9120,14 +8945,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4137, + "line": 4008, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 2101, + "id": 2026, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -9153,14 +8978,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3269, + "line": 3140, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 2134, + "id": 2059, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -9181,14 +9006,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3911, + "line": 3782, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2127, + "id": 2052, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -9214,14 +9039,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3757, + "line": 3628, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2129, + "id": 2054, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -9247,14 +9072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3794, + "line": 3665, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2157, + "id": 2082, "name": "SpotterSearch", "kind": 16, "kindString": "Enumeration member", @@ -9285,38 +9110,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4359, + "line": 4230, "character": 4 } ], "defaultValue": "\"SpotterSearch\"" }, { - "id": 2168, - "name": "StartNewSpotterConversation", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "Triggers a create new conversation operation in spotter embed.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nThis feature is available only when chat history is enabled on your ThoughtSpot instance.\nContact your admin or ThoughtSpot Support to enable chat history on your instance.\n@example\n```js\nspotterEmbed.trigger(HostEvent.StartNewSpotterConversation);\n```\n@version SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 4481, - "character": 4 - } - ], - "defaultValue": "\"StartNewSpotterConversation\"" - }, - { - "id": 2137, + "id": 2062, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -9342,14 +9143,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3982, + "line": 3853, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2136, + "id": 2061, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -9375,14 +9176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3966, + "line": 3837, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2156, + "id": 2081, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -9408,14 +9209,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4344, + "line": 4215, "character": 4 } ], "defaultValue": "\"TransformTableVizData\"" }, { - "id": 2148, + "id": 2073, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -9436,14 +9237,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4220, + "line": 4091, "character": 4 } ], "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 2141, + "id": 2066, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -9486,14 +9287,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4111, + "line": 3982, "character": 4 } ], "defaultValue": "\"updateFilters\"" }, { - "id": 2150, + "id": 2075, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -9524,14 +9325,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4249, + "line": 4120, "character": 4 } ], "defaultValue": "\"UpdateParameters\"" }, { - "id": 2152, + "id": 2077, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -9548,14 +9349,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4277, + "line": 4148, "character": 4 } ], "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 2103, + "id": 2028, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -9586,14 +9387,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3317, + "line": 3188, "character": 4 } ], "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 2145, + "id": 2070, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -9624,14 +9425,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4164, + "line": 4035, "character": 4 } ], "defaultValue": "\"updateSageQuery\"" }, { - "id": 2115, + "id": 2040, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -9652,14 +9453,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3517, + "line": 3388, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2108, + "id": 2033, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -9680,7 +9481,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3385, + "line": 3256, "character": 4 } ], @@ -9692,169 +9493,84 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2117, - 2106, - 2162, - 2147, - 2165, - 2124, - 2121, - 2128, - 2161, - 2167, - 2130, - 2132, - 2116, - 2131, - 2133, - 2097, - 2123, - 2158, - 2114, - 2120, - 2113, - 2146, - 2140, - 2100, - 2151, - 2126, - 2142, - 2110, - 2118, - 2122, - 2138, - 2104, - 2105, - 2109, - 2125, - 2159, - 2119, - 2107, - 2149, - 2139, - 2160, - 2135, - 2154, - 2111, - 2112, - 2096, - 2102, - 2144, - 2143, - 2101, - 2134, - 2127, - 2129, - 2157, - 2168, - 2137, - 2136, - 2156, - 2148, - 2141, - 2150, - 2152, - 2103, - 2145, - 2115, - 2108 - ] - } - ], - "sources": [ - { - "fileName": "types.ts", - "line": 3165, - "character": 12 - } - ] - }, - { - "id": 3012, - "name": "InterceptedApiType", - "kind": 4, - "kindString": "Enumeration", - "flags": {}, - "comment": { - "shortText": "Enum for the type of API intercepted" - }, - "children": [ - { - "id": 3014, - "name": "ALL", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "This will intercept all the apis" - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6392, - "character": 4 - } - ], - "defaultValue": "\"ALL\"" - }, - { - "id": 3013, - "name": "AnswerData", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "The apis that are use to get the data for the embed" - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6388, - "character": 4 - } - ], - "defaultValue": "\"AnswerData\"" - }, - { - "id": 3015, - "name": "LiveboardData", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "The apis that are use to get the data for the liveboard" - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6396, - "character": 4 - } - ], - "defaultValue": "\"LiveboardData\"" - } - ], - "groups": [ - { - "title": "Enumeration members", - "kind": 16, - "children": [ - 3014, - 3013, - 3015 + 2042, + 2031, + 2087, + 2072, + 2090, + 2049, + 2046, + 2053, + 2086, + 2092, + 2055, + 2057, + 2041, + 2056, + 2058, + 2022, + 2048, + 2083, + 2039, + 2045, + 2038, + 2071, + 2065, + 2025, + 2076, + 2051, + 2067, + 2035, + 2043, + 2047, + 2063, + 2029, + 2030, + 2034, + 2050, + 2084, + 2044, + 2032, + 2074, + 2064, + 2085, + 2060, + 2079, + 2036, + 2037, + 2021, + 2027, + 2069, + 2068, + 2026, + 2059, + 2052, + 2054, + 2082, + 2062, + 2061, + 2081, + 2073, + 2066, + 2075, + 2077, + 2028, + 2070, + 2040, + 2033 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6384, + "line": 3036, "character": 12 } ] }, { - "id": 2959, + "id": 2857, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -9870,7 +9586,7 @@ }, "children": [ { - "id": 2960, + "id": 2858, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -9888,7 +9604,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2961, + "id": 2859, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -9911,8 +9627,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2960, - 2961 + 2858, + 2859 ] } ], @@ -9925,7 +9641,7 @@ ] }, { - "id": 2993, + "id": 2890, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -9941,7 +9657,7 @@ }, "children": [ { - "id": 2996, + "id": 2893, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -9952,14 +9668,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1803, + "line": 1757, "character": 4 } ], "defaultValue": "\"AUTHOR\"" }, { - "id": 2997, + "id": 2894, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -9970,14 +9686,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1807, + "line": 1761, "character": 4 } ], "defaultValue": "\"DATE_SORT\"" }, { - "id": 2994, + "id": 2891, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -9988,14 +9704,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1795, + "line": 1749, "character": 4 } ], "defaultValue": "\"FAVOURITE\"" }, { - "id": 2998, + "id": 2895, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -10006,14 +9722,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1811, + "line": 1765, "character": 4 } ], "defaultValue": "\"SHARE\"" }, { - "id": 2995, + "id": 2892, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -10024,7 +9740,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1799, + "line": 1753, "character": 4 } ], @@ -10036,24 +9752,24 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2996, - 2997, - 2994, - 2998, - 2995 + 2893, + 2894, + 2891, + 2895, + 2892 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1791, + "line": 1745, "character": 12 } ] }, { - "id": 2927, + "id": 2825, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -10063,7 +9779,7 @@ }, "children": [ { - "id": 2932, + "id": 2830, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -10084,14 +9800,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6190, + "line": 6007, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2929, + "id": 2827, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -10112,14 +9828,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6151, + "line": 5968, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2931, + "id": 2829, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -10140,14 +9856,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6176, + "line": 5993, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2928, + "id": 2826, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -10168,14 +9884,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6139, + "line": 5956, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2933, + "id": 2831, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -10196,14 +9912,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6202, + "line": 6019, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2930, + "id": 2828, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -10224,7 +9940,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6163, + "line": 5980, "character": 4 } ], @@ -10236,25 +9952,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2932, - 2929, - 2931, - 2928, - 2933, - 2930 + 2830, + 2827, + 2829, + 2826, + 2831, + 2828 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6126, + "line": 5943, "character": 12 } ] }, { - "id": 1958, + "id": 1885, "name": "Page", "kind": 4, "kindString": "Enumeration", @@ -10264,7 +9980,7 @@ }, "children": [ { - "id": 1961, + "id": 1888, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -10282,7 +9998,7 @@ "defaultValue": "\"answers\"" }, { - "id": 1964, + "id": 1891, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -10300,7 +10016,7 @@ "defaultValue": "\"data\"" }, { - "id": 1959, + "id": 1886, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -10318,7 +10034,7 @@ "defaultValue": "\"home\"" }, { - "id": 1962, + "id": 1889, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -10336,7 +10052,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 1966, + "id": 1893, "name": "Monitor", "kind": 16, "kindString": "Enumeration member", @@ -10354,7 +10070,7 @@ "defaultValue": "\"monitor\"" }, { - "id": 1960, + "id": 1887, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -10372,7 +10088,7 @@ "defaultValue": "\"search\"" }, { - "id": 1965, + "id": 1892, "name": "SpotIQ", "kind": 16, "kindString": "Enumeration member", @@ -10395,13 +10111,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1961, - 1964, - 1959, - 1962, - 1966, - 1960, - 1965 + 1888, + 1891, + 1886, + 1889, + 1893, + 1887, + 1892 ] } ], @@ -10414,14 +10130,14 @@ ] }, { - "id": 2694, + "id": 2593, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2695, + "id": 2594, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -10429,14 +10145,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6017, + "line": 5834, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2697, + "id": 2596, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10444,14 +10160,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6019, + "line": 5836, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2696, + "id": 2595, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10459,14 +10175,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6018, + "line": 5835, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2698, + "id": 2597, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10474,7 +10190,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6020, + "line": 5837, "character": 4 } ], @@ -10486,23 +10202,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2695, - 2697, - 2696, - 2698 + 2594, + 2596, + 2595, + 2597 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6016, + "line": 5833, "character": 12 } ] }, { - "id": 2954, + "id": 2852, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -10518,7 +10234,7 @@ }, "children": [ { - "id": 2955, + "id": 2853, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -10541,7 +10257,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2955 + 2853 ] } ], @@ -10554,7 +10270,7 @@ ] }, { - "id": 1983, + "id": 1910, "name": "RuntimeFilterOp", "kind": 4, "kindString": "Enumeration", @@ -10564,7 +10280,7 @@ }, "children": [ { - "id": 1991, + "id": 1918, "name": "BEGINS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -10575,14 +10291,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1719, + "line": 1673, "character": 4 } ], "defaultValue": "\"BEGINS_WITH\"" }, { - "id": 1996, + "id": 1923, "name": "BW", "kind": 16, "kindString": "Enumeration member", @@ -10593,14 +10309,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1739, + "line": 1693, "character": 4 } ], "defaultValue": "\"BW\"" }, { - "id": 1995, + "id": 1922, "name": "BW_INC", "kind": 16, "kindString": "Enumeration member", @@ -10611,14 +10327,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1735, + "line": 1689, "character": 4 } ], "defaultValue": "\"BW_INC\"" }, { - "id": 1993, + "id": 1920, "name": "BW_INC_MAX", "kind": 16, "kindString": "Enumeration member", @@ -10629,14 +10345,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1727, + "line": 1681, "character": 4 } ], "defaultValue": "\"BW_INC_MAX\"" }, { - "id": 1994, + "id": 1921, "name": "BW_INC_MIN", "kind": 16, "kindString": "Enumeration member", @@ -10647,14 +10363,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1731, + "line": 1685, "character": 4 } ], "defaultValue": "\"BW_INC_MIN\"" }, { - "id": 1990, + "id": 1917, "name": "CONTAINS", "kind": 16, "kindString": "Enumeration member", @@ -10665,14 +10381,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1715, + "line": 1669, "character": 4 } ], "defaultValue": "\"CONTAINS\"" }, { - "id": 1992, + "id": 1919, "name": "ENDS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -10683,14 +10399,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1723, + "line": 1677, "character": 4 } ], "defaultValue": "\"ENDS_WITH\"" }, { - "id": 1984, + "id": 1911, "name": "EQ", "kind": 16, "kindString": "Enumeration member", @@ -10701,14 +10417,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1691, + "line": 1645, "character": 4 } ], "defaultValue": "\"EQ\"" }, { - "id": 1989, + "id": 1916, "name": "GE", "kind": 16, "kindString": "Enumeration member", @@ -10719,14 +10435,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1711, + "line": 1665, "character": 4 } ], "defaultValue": "\"GE\"" }, { - "id": 1988, + "id": 1915, "name": "GT", "kind": 16, "kindString": "Enumeration member", @@ -10737,14 +10453,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1707, + "line": 1661, "character": 4 } ], "defaultValue": "\"GT\"" }, { - "id": 1997, + "id": 1924, "name": "IN", "kind": 16, "kindString": "Enumeration member", @@ -10755,14 +10471,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1743, + "line": 1697, "character": 4 } ], "defaultValue": "\"IN\"" }, { - "id": 1987, + "id": 1914, "name": "LE", "kind": 16, "kindString": "Enumeration member", @@ -10773,14 +10489,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1703, + "line": 1657, "character": 4 } ], "defaultValue": "\"LE\"" }, { - "id": 1986, + "id": 1913, "name": "LT", "kind": 16, "kindString": "Enumeration member", @@ -10791,14 +10507,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1699, + "line": 1653, "character": 4 } ], "defaultValue": "\"LT\"" }, { - "id": 1985, + "id": 1912, "name": "NE", "kind": 16, "kindString": "Enumeration member", @@ -10809,14 +10525,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1695, + "line": 1649, "character": 4 } ], "defaultValue": "\"NE\"" }, { - "id": 1998, + "id": 1925, "name": "NOT_IN", "kind": 16, "kindString": "Enumeration member", @@ -10827,7 +10543,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1747, + "line": 1701, "character": 4 } ], @@ -10839,41 +10555,41 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1991, - 1996, - 1995, - 1993, - 1994, - 1990, - 1992, - 1984, - 1989, - 1988, - 1997, - 1987, - 1986, - 1985, - 1998 + 1918, + 1923, + 1922, + 1920, + 1921, + 1917, + 1919, + 1911, + 1916, + 1915, + 1924, + 1914, + 1913, + 1912, + 1925 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1687, + "line": 1641, "character": 12 } ] }, { - "id": 2985, + "id": 2883, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2990, + "id": 2888, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -10888,7 +10604,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2989, + "id": 2887, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -10903,7 +10619,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2988, + "id": 2886, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -10918,7 +10634,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2991, + "id": 2889, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -10933,22 +10649,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2992, - "name": "GetUnsavedAnswerTML", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "embed/hostEventClient/contracts.ts", - "line": 10, - "character": 2 - } - ], - "defaultValue": "\"getUnsavedAnswerTML\"" - }, - { - "id": 2986, + "id": 2884, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -10963,7 +10664,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2987, + "id": 2885, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -10983,13 +10684,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2990, - 2989, - 2988, - 2991, - 2992, - 2986, - 2987 + 2888, + 2887, + 2886, + 2889, + 2884, + 2885 ] } ], @@ -11002,7 +10702,7 @@ ] }, { - "id": 1875, + "id": 1802, "name": "AnswerService", "kind": 128, "kindString": "Class", @@ -11031,7 +10731,7 @@ }, "children": [ { - "id": 1876, + "id": 1803, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -11048,7 +10748,7 @@ ], "signatures": [ { - "id": 1877, + "id": 1804, "name": "new AnswerService", "kind": 16384, "kindString": "Constructor signature", @@ -11058,7 +10758,7 @@ }, "parameters": [ { - "id": 1878, + "id": 1805, "name": "session", "kind": 32768, "kindString": "Parameter", @@ -11066,12 +10766,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1948, + "id": 1875, "name": "SessionInterface" } }, { - "id": 1879, + "id": 1806, "name": "answer", "kind": 32768, "kindString": "Parameter", @@ -11083,7 +10783,7 @@ } }, { - "id": 1880, + "id": 1807, "name": "thoughtSpotHost", "kind": 32768, "kindString": "Parameter", @@ -11095,7 +10795,7 @@ } }, { - "id": 1881, + "id": 1808, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -11109,7 +10809,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2962, + "id": 2860, "name": "VizPoint" } } @@ -11117,14 +10817,14 @@ ], "type": { "type": "reference", - "id": 1875, + "id": 1802, "name": "AnswerService" } } ] }, { - "id": 1890, + "id": 1817, "name": "addColumns", "kind": 2048, "kindString": "Method", @@ -11140,7 +10840,7 @@ ], "signatures": [ { - "id": 1891, + "id": 1818, "name": "addColumns", "kind": 4096, "kindString": "Call signature", @@ -11151,7 +10851,7 @@ }, "parameters": [ { - "id": 1892, + "id": 1819, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -11180,7 +10880,7 @@ ] }, { - "id": 1893, + "id": 1820, "name": "addColumnsByName", "kind": 2048, "kindString": "Method", @@ -11196,7 +10896,7 @@ ], "signatures": [ { - "id": 1894, + "id": 1821, "name": "addColumnsByName", "kind": 4096, "kindString": "Call signature", @@ -11212,7 +10912,7 @@ }, "parameters": [ { - "id": 1895, + "id": 1822, "name": "columnNames", "kind": 32768, "kindString": "Parameter", @@ -11241,7 +10941,7 @@ ] }, { - "id": 1942, + "id": 1869, "name": "addDisplayedVizToLiveboard", "kind": 2048, "kindString": "Method", @@ -11257,14 +10957,14 @@ ], "signatures": [ { - "id": 1943, + "id": 1870, "name": "addDisplayedVizToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1944, + "id": 1871, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -11289,7 +10989,7 @@ ] }, { - "id": 1896, + "id": 1823, "name": "addFilter", "kind": 2048, "kindString": "Method", @@ -11305,7 +11005,7 @@ ], "signatures": [ { - "id": 1897, + "id": 1824, "name": "addFilter", "kind": 4096, "kindString": "Call signature", @@ -11316,7 +11016,7 @@ }, "parameters": [ { - "id": 1898, + "id": 1825, "name": "columnName", "kind": 32768, "kindString": "Parameter", @@ -11328,7 +11028,7 @@ } }, { - "id": 1899, + "id": 1826, "name": "operator", "kind": 32768, "kindString": "Parameter", @@ -11336,12 +11036,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1983, + "id": 1910, "name": "RuntimeFilterOp" } }, { - "id": 1900, + "id": 1827, "name": "values", "kind": 32768, "kindString": "Parameter", @@ -11387,7 +11087,7 @@ ] }, { - "id": 1932, + "id": 1859, "name": "executeQuery", "kind": 2048, "kindString": "Method", @@ -11403,7 +11103,7 @@ ], "signatures": [ { - "id": 1933, + "id": 1860, "name": "executeQuery", "kind": 4096, "kindString": "Call signature", @@ -11414,7 +11114,7 @@ }, "parameters": [ { - "id": 1934, + "id": 1861, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -11428,7 +11128,7 @@ } }, { - "id": 1935, + "id": 1862, "name": "variables", "kind": 32768, "kindString": "Parameter", @@ -11456,7 +11156,7 @@ ] }, { - "id": 1910, + "id": 1837, "name": "fetchCSVBlob", "kind": 2048, "kindString": "Method", @@ -11472,7 +11172,7 @@ ], "signatures": [ { - "id": 1911, + "id": 1838, "name": "fetchCSVBlob", "kind": 4096, "kindString": "Call signature", @@ -11483,7 +11183,7 @@ }, "parameters": [ { - "id": 1912, + "id": 1839, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11496,7 +11196,7 @@ "defaultValue": "'en-us'" }, { - "id": 1913, + "id": 1840, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -11525,7 +11225,7 @@ ] }, { - "id": 1903, + "id": 1830, "name": "fetchData", "kind": 2048, "kindString": "Method", @@ -11541,7 +11241,7 @@ ], "signatures": [ { - "id": 1904, + "id": 1831, "name": "fetchData", "kind": 4096, "kindString": "Call signature", @@ -11552,7 +11252,7 @@ }, "parameters": [ { - "id": 1905, + "id": 1832, "name": "offset", "kind": 32768, "kindString": "Parameter", @@ -11565,7 +11265,7 @@ "defaultValue": "0" }, { - "id": 1906, + "id": 1833, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -11584,14 +11284,14 @@ { "type": "reflection", "declaration": { - "id": 1907, + "id": 1834, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1908, + "id": 1835, "name": "columns", "kind": 1024, "kindString": "Property", @@ -11602,7 +11302,7 @@ } }, { - "id": 1909, + "id": 1836, "name": "data", "kind": 1024, "kindString": "Property", @@ -11618,8 +11318,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1908, - 1909 + 1835, + 1836 ] } ] @@ -11632,7 +11332,7 @@ ] }, { - "id": 1914, + "id": 1841, "name": "fetchPNGBlob", "kind": 2048, "kindString": "Method", @@ -11648,7 +11348,7 @@ ], "signatures": [ { - "id": 1915, + "id": 1842, "name": "fetchPNGBlob", "kind": 4096, "kindString": "Call signature", @@ -11659,7 +11359,7 @@ }, "parameters": [ { - "id": 1916, + "id": 1843, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11672,7 +11372,7 @@ "defaultValue": "'en-us'" }, { - "id": 1917, + "id": 1844, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -11687,7 +11387,7 @@ "defaultValue": "false" }, { - "id": 1918, + "id": 1845, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -11716,7 +11416,7 @@ ] }, { - "id": 1938, + "id": 1865, "name": "getAnswer", "kind": 2048, "kindString": "Method", @@ -11732,7 +11432,7 @@ ], "signatures": [ { - "id": 1939, + "id": 1866, "name": "getAnswer", "kind": 4096, "kindString": "Call signature", @@ -11751,7 +11451,7 @@ ] }, { - "id": 1919, + "id": 1846, "name": "getFetchCSVBlobUrl", "kind": 2048, "kindString": "Method", @@ -11767,7 +11467,7 @@ ], "signatures": [ { - "id": 1920, + "id": 1847, "name": "getFetchCSVBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -11778,7 +11478,7 @@ }, "parameters": [ { - "id": 1921, + "id": 1848, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11791,7 +11491,7 @@ "defaultValue": "'en-us'" }, { - "id": 1922, + "id": 1849, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -11812,7 +11512,7 @@ ] }, { - "id": 1923, + "id": 1850, "name": "getFetchPNGBlobUrl", "kind": 2048, "kindString": "Method", @@ -11828,7 +11528,7 @@ ], "signatures": [ { - "id": 1924, + "id": 1851, "name": "getFetchPNGBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -11838,7 +11538,7 @@ }, "parameters": [ { - "id": 1925, + "id": 1852, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11851,7 +11551,7 @@ "defaultValue": "'en-us'" }, { - "id": 1926, + "id": 1853, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -11864,7 +11564,7 @@ "defaultValue": "false" }, { - "id": 1927, + "id": 1854, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -11887,7 +11587,7 @@ ] }, { - "id": 1901, + "id": 1828, "name": "getSQLQuery", "kind": 2048, "kindString": "Method", @@ -11903,7 +11603,7 @@ ], "signatures": [ { - "id": 1902, + "id": 1829, "name": "getSQLQuery", "kind": 4096, "kindString": "Call signature", @@ -11922,7 +11622,7 @@ ] }, { - "id": 1936, + "id": 1863, "name": "getSession", "kind": 2048, "kindString": "Method", @@ -11938,7 +11638,7 @@ ], "signatures": [ { - "id": 1937, + "id": 1864, "name": "getSession", "kind": 4096, "kindString": "Call signature", @@ -11949,14 +11649,14 @@ }, "type": { "type": "reference", - "id": 1948, + "id": 1875, "name": "SessionInterface" } } ] }, { - "id": 1885, + "id": 1812, "name": "getSourceDetail", "kind": 2048, "kindString": "Method", @@ -11972,7 +11672,7 @@ ], "signatures": [ { - "id": 1886, + "id": 1813, "name": "getSourceDetail", "kind": 4096, "kindString": "Call signature", @@ -11994,7 +11694,7 @@ ] }, { - "id": 1940, + "id": 1867, "name": "getTML", "kind": 2048, "kindString": "Method", @@ -12010,7 +11710,7 @@ ], "signatures": [ { - "id": 1941, + "id": 1868, "name": "getTML", "kind": 4096, "kindString": "Call signature", @@ -12029,7 +11729,7 @@ ] }, { - "id": 1928, + "id": 1855, "name": "getUnderlyingDataForPoint", "kind": 2048, "kindString": "Method", @@ -12045,7 +11745,7 @@ ], "signatures": [ { - "id": 1929, + "id": 1856, "name": "getUnderlyingDataForPoint", "kind": 4096, "kindString": "Call signature", @@ -12065,7 +11765,7 @@ }, "parameters": [ { - "id": 1930, + "id": 1857, "name": "outputColumnNames", "kind": 32768, "kindString": "Parameter", @@ -12080,7 +11780,7 @@ } }, { - "id": 1931, + "id": 1858, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -12092,7 +11792,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1955, + "id": 1882, "name": "UnderlyingDataPoint" } } @@ -12103,7 +11803,7 @@ "typeArguments": [ { "type": "reference", - "id": 1875, + "id": 1802, "name": "AnswerService" } ], @@ -12113,7 +11813,7 @@ ] }, { - "id": 1887, + "id": 1814, "name": "removeColumns", "kind": 2048, "kindString": "Method", @@ -12129,7 +11829,7 @@ ], "signatures": [ { - "id": 1888, + "id": 1815, "name": "removeColumns", "kind": 4096, "kindString": "Call signature", @@ -12140,7 +11840,7 @@ }, "parameters": [ { - "id": 1889, + "id": 1816, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -12169,7 +11869,7 @@ ] }, { - "id": 1945, + "id": 1872, "name": "setTMLOverride", "kind": 2048, "kindString": "Method", @@ -12185,14 +11885,14 @@ ], "signatures": [ { - "id": 1946, + "id": 1873, "name": "setTMLOverride", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1947, + "id": 1874, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -12216,31 +11916,31 @@ "title": "Constructors", "kind": 512, "children": [ - 1876 + 1803 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1890, - 1893, - 1942, - 1896, - 1932, - 1910, - 1903, - 1914, - 1938, - 1919, - 1923, - 1901, - 1936, - 1885, - 1940, - 1928, - 1887, - 1945 + 1817, + 1820, + 1869, + 1823, + 1859, + 1837, + 1830, + 1841, + 1865, + 1846, + 1850, + 1828, + 1863, + 1812, + 1867, + 1855, + 1814, + 1872 ] } ], @@ -12253,7 +11953,7 @@ ] }, { - "id": 1027, + "id": 989, "name": "AppEmbed", "kind": 128, "kindString": "Class", @@ -12269,7 +11969,7 @@ }, "children": [ { - "id": 1028, + "id": 990, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -12277,46 +11977,46 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 658, + "line": 630, "character": 4 } ], "signatures": [ { - "id": 1029, + "id": 991, "name": "new AppEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1030, + "id": 992, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2723, + "id": 2622, "name": "DOMSelector" } }, { - "id": 1031, + "id": 993, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2604, + "id": 2509, "name": "AppViewConfig" } } ], "type": { "type": "reference", - "id": 1027, + "id": 989, "name": "AppEmbed" }, "overwrites": { @@ -12331,7 +12031,7 @@ } }, { - "id": 1065, + "id": 1027, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -12341,13 +12041,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1041, + "line": 1007, "character": 11 } ], "signatures": [ { - "id": 1066, + "id": 1028, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -12377,7 +12077,7 @@ } }, { - "id": 1241, + "id": 1196, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -12387,13 +12087,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1681, + "line": 1596, "character": 17 } ], "signatures": [ { - "id": 1242, + "id": 1197, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -12409,7 +12109,7 @@ }, "parameters": [ { - "id": 1243, + "id": 1198, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -12430,7 +12130,7 @@ "typeArguments": [ { "type": "reference", - "id": 1875, + "id": 1802, "name": "AnswerService" } ], @@ -12448,7 +12148,7 @@ } }, { - "id": 1042, + "id": 1004, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -12458,13 +12158,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 910, + "line": 876, "character": 11 } ], "signatures": [ { - "id": 1043, + "id": 1005, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -12480,7 +12180,7 @@ ] }, { - "id": 1210, + "id": 1165, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -12490,13 +12190,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1416, + "line": 1331, "character": 11 } ], "signatures": [ { - "id": 1211, + "id": 1166, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -12517,7 +12217,7 @@ } }, { - "id": 1236, + "id": 1191, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -12527,13 +12227,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1668, + "line": 1583, "character": 11 } ], "signatures": [ { - "id": 1237, + "id": 1192, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -12555,14 +12255,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1238, + "id": 1193, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1240, + "id": 1195, "name": "child", "kind": 1024, "kindString": "Property", @@ -12574,7 +12274,7 @@ "defaultValue": "..." }, { - "id": 1239, + "id": 1194, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -12591,8 +12291,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1240, - 1239 + 1195, + 1194 ] } ] @@ -12610,7 +12310,7 @@ } }, { - "id": 1218, + "id": 1173, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -12620,13 +12320,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1451, + "line": 1366, "character": 11 } ], "signatures": [ { - "id": 1219, + "id": 1174, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -12642,7 +12342,7 @@ }, "parameters": [ { - "id": 1220, + "id": 1175, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -12650,20 +12350,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1221, + "id": 1176, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1222, + "id": 1177, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1223, + "id": 1178, "name": "key", "kind": 32768, "flags": {}, @@ -12708,7 +12408,7 @@ } }, { - "id": 1224, + "id": 1179, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -12718,13 +12418,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1504, + "line": 1419, "character": 11 } ], "signatures": [ { - "id": 1225, + "id": 1180, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -12745,7 +12445,7 @@ } }, { - "id": 1234, + "id": 1189, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -12755,13 +12455,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1640, + "line": 1555, "character": 11 } ], "signatures": [ { - "id": 1235, + "id": 1190, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -12785,7 +12485,7 @@ } }, { - "id": 1061, + "id": 1023, "name": "navigateToPage", "kind": 2048, "kindString": "Method", @@ -12795,13 +12495,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1015, + "line": 981, "character": 11 } ], "signatures": [ { - "id": 1062, + "id": 1024, "name": "navigateToPage", "kind": 4096, "kindString": "Call signature", @@ -12817,7 +12517,7 @@ }, "parameters": [ { - "id": 1063, + "id": 1025, "name": "path", "kind": 32768, "kindString": "Parameter", @@ -12840,7 +12540,7 @@ } }, { - "id": 1064, + "id": 1026, "name": "noReload", "kind": 32768, "kindString": "Parameter", @@ -12863,7 +12563,7 @@ ] }, { - "id": 1181, + "id": 1136, "name": "off", "kind": 2048, "kindString": "Method", @@ -12873,13 +12573,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1236, + "line": 1161, "character": 11 } ], "signatures": [ { - "id": 1182, + "id": 1137, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -12895,7 +12595,7 @@ }, "parameters": [ { - "id": 1183, + "id": 1138, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12905,12 +12605,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 1184, + "id": 1139, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -12920,7 +12620,7 @@ }, "type": { "type": "reference", - "id": 2727, + "id": 2626, "name": "MessageCallback" } } @@ -12941,7 +12641,7 @@ } }, { - "id": 1080, + "id": 1042, "name": "on", "kind": 2048, "kindString": "Method", @@ -12951,13 +12651,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1790, + "line": 1705, "character": 11 } ], "signatures": [ { - "id": 1081, + "id": 1043, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -12980,38 +12680,38 @@ }, "parameters": [ { - "id": 1082, + "id": 1044, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1999, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 1083, + "id": 1045, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2727, + "id": 2626, "name": "MessageCallback" } }, { - "id": 1084, + "id": 1046, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2724, + "id": 2623, "name": "MessageOptions" }, "defaultValue": "..." @@ -13033,7 +12733,7 @@ } }, { - "id": 1214, + "id": 1169, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -13043,13 +12743,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1429, + "line": 1344, "character": 17 } ], "signatures": [ { - "id": 1215, + "id": 1170, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -13059,7 +12759,7 @@ }, "parameters": [ { - "id": 1216, + "id": 1171, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -13074,7 +12774,7 @@ "defaultValue": "false" }, { - "id": 1217, + "id": 1172, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -13108,7 +12808,7 @@ } }, { - "id": 1226, + "id": 1181, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -13118,13 +12818,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1515, + "line": 1430, "character": 17 } ], "signatures": [ { - "id": 1227, + "id": 1182, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -13161,7 +12861,7 @@ } }, { - "id": 1073, + "id": 1035, "name": "render", "kind": 2048, "kindString": "Method", @@ -13171,13 +12871,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1070, + "line": 1036, "character": 17 } ], "signatures": [ { - "id": 1074, + "id": 1036, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -13190,7 +12890,7 @@ "typeArguments": [ { "type": "reference", - "id": 1027, + "id": 989, "name": "AppEmbed" } ], @@ -13208,7 +12908,7 @@ } }, { - "id": 1230, + "id": 1185, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -13218,13 +12918,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1563, + "line": 1478, "character": 17 } ], "signatures": [ { - "id": 1231, + "id": 1186, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -13254,7 +12954,7 @@ } }, { - "id": 1232, + "id": 1187, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -13264,13 +12964,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1621, + "line": 1536, "character": 11 } ], "signatures": [ { - "id": 1233, + "id": 1188, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -13300,7 +13000,7 @@ } }, { - "id": 1199, + "id": 1154, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -13310,13 +13010,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1346, + "line": 1271, "character": 17 } ], "signatures": [ { - "id": 1200, + "id": 1155, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -13327,19 +13027,19 @@ }, "typeParameter": [ { - "id": 1201, + "id": 1156, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2095, + "id": 2020, "name": "HostEvent" } }, { - "id": 1202, + "id": 1157, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -13348,7 +13048,7 @@ ], "parameters": [ { - "id": 1203, + "id": 1158, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -13362,7 +13062,7 @@ } }, { - "id": 1204, + "id": 1159, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -13419,7 +13119,7 @@ } }, { - "id": 1205, + "id": 1160, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -13429,13 +13129,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1392, + "line": 1307, "character": 17 } ], "signatures": [ { - "id": 1206, + "id": 1161, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -13446,21 +13146,21 @@ }, "typeParameter": [ { - "id": 1207, + "id": 1162, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2985, + "id": 2883, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1208, + "id": 1163, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -13474,7 +13174,7 @@ } }, { - "id": 1209, + "id": 1164, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -13527,38 +13227,38 @@ "title": "Constructors", "kind": 512, "children": [ - 1028 + 990 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1065, - 1241, + 1027, + 1196, + 1004, + 1165, + 1191, + 1173, + 1179, + 1189, + 1023, + 1136, 1042, - 1210, - 1236, - 1218, - 1224, - 1234, - 1061, + 1169, 1181, - 1080, - 1214, - 1226, - 1073, - 1230, - 1232, - 1199, - 1205 + 1035, + 1185, + 1187, + 1154, + 1160 ] } ], "sources": [ { "fileName": "embed/app.ts", - "line": 652, + "line": 624, "character": 13 } ], @@ -13570,7 +13270,7 @@ ] }, { - "id": 1340, + "id": 1289, "name": "BodylessConversation", "kind": 128, "kindString": "Class", @@ -13594,7 +13294,7 @@ }, "children": [ { - "id": 1341, + "id": 1290, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -13608,45 +13308,45 @@ ], "signatures": [ { - "id": 1342, + "id": 1291, "name": "new BodylessConversation", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1343, + "id": 1292, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1308, + "id": 1260, "name": "BodylessConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1340, + "id": 1289, "name": "BodylessConversation" }, "overwrites": { "type": "reference", - "id": 1246, + "id": 1201, "name": "SpotterAgentEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1245, + "id": 1200, "name": "SpotterAgentEmbed.constructor" } }, { - "id": 1344, + "id": 1293, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -13662,14 +13362,14 @@ ], "signatures": [ { - "id": 1345, + "id": 1294, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1346, + "id": 1295, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -13689,14 +13389,14 @@ { "type": "reflection", "declaration": { - "id": 1347, + "id": 1296, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1349, + "id": 1298, "name": "container", "kind": 1024, "kindString": "Property", @@ -13707,7 +13407,7 @@ } }, { - "id": 1348, + "id": 1297, "name": "error", "kind": 1024, "kindString": "Property", @@ -13718,7 +13418,7 @@ } }, { - "id": 1350, + "id": 1299, "name": "viz", "kind": 1024, "kindString": "Property", @@ -13735,9 +13435,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1349, - 1348, - 1350 + 1298, + 1297, + 1299 ] } ] @@ -13746,14 +13446,14 @@ { "type": "reflection", "declaration": { - "id": 1351, + "id": 1300, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1352, + "id": 1301, "name": "container", "kind": 1024, "kindString": "Property", @@ -13764,7 +13464,7 @@ } }, { - "id": 1354, + "id": 1303, "name": "error", "kind": 1024, "kindString": "Property", @@ -13775,7 +13475,7 @@ } }, { - "id": 1353, + "id": 1302, "name": "viz", "kind": 1024, "kindString": "Property", @@ -13792,9 +13492,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1352, - 1354, - 1353 + 1301, + 1303, + 1302 ] } ] @@ -13807,19 +13507,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1250, + "id": 1205, "name": "SpotterAgentEmbed.sendMessage" } } ], "inheritedFrom": { "type": "reference", - "id": 1249, + "id": 1204, "name": "SpotterAgentEmbed.sendMessage" } }, { - "id": 1355, + "id": 1304, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -13835,7 +13535,7 @@ ], "signatures": [ { - "id": 1356, + "id": 1305, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -13846,7 +13546,7 @@ }, "parameters": [ { - "id": 1357, + "id": 1306, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -13869,14 +13569,14 @@ { "type": "reflection", "declaration": { - "id": 1358, + "id": 1307, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1360, + "id": 1309, "name": "data", "kind": 1024, "kindString": "Property", @@ -13888,7 +13588,7 @@ "defaultValue": "..." }, { - "id": 1359, + "id": 1308, "name": "error", "kind": 1024, "kindString": "Property", @@ -13904,8 +13604,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1360, - 1359 + 1309, + 1308 ] } ] @@ -13914,14 +13614,14 @@ { "type": "reflection", "declaration": { - "id": 1361, + "id": 1310, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1362, + "id": 1311, "name": "data", "kind": 1024, "kindString": "Property", @@ -13929,14 +13629,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1363, + "id": 1312, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1369, + "id": 1318, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -13948,7 +13648,7 @@ "defaultValue": "..." }, { - "id": 1368, + "id": 1317, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -13960,7 +13660,7 @@ "defaultValue": "..." }, { - "id": 1364, + "id": 1313, "name": "convId", "kind": 1024, "kindString": "Property", @@ -13972,7 +13672,7 @@ "defaultValue": "..." }, { - "id": 1367, + "id": 1316, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -13984,7 +13684,7 @@ "defaultValue": "..." }, { - "id": 1365, + "id": 1314, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -13996,7 +13696,7 @@ "defaultValue": "..." }, { - "id": 1366, + "id": 1315, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -14013,12 +13713,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1369, - 1368, - 1364, - 1367, - 1365, - 1366 + 1318, + 1317, + 1313, + 1316, + 1314, + 1315 ] } ] @@ -14027,7 +13727,7 @@ "defaultValue": "..." }, { - "id": 1370, + "id": 1319, "name": "error", "kind": 1024, "kindString": "Property", @@ -14043,8 +13743,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1362, - 1370 + 1311, + 1319 ] } ] @@ -14057,14 +13757,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1261, + "id": 1216, "name": "SpotterAgentEmbed.sendMessageData" } } ], "inheritedFrom": { "type": "reference", - "id": 1260, + "id": 1215, "name": "SpotterAgentEmbed.sendMessageData" } } @@ -14074,15 +13774,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1341 + 1290 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1344, - 1355 + 1293, + 1304 ] } ], @@ -14096,13 +13796,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1244, + "id": 1199, "name": "SpotterAgentEmbed" } ] }, { - "id": 1632, + "id": 1566, "name": "ConversationEmbed", "kind": 128, "kindString": "Class", @@ -14130,7 +13830,7 @@ }, "children": [ { - "id": 1633, + "id": 1567, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -14144,14 +13844,14 @@ ], "signatures": [ { - "id": 1634, + "id": 1568, "name": "new ConversationEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1635, + "id": 1569, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -14162,38 +13862,38 @@ } }, { - "id": 1636, + "id": 1570, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1588, + "id": 1526, "name": "ConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1632, + "id": 1566, "name": "ConversationEmbed" }, "overwrites": { "type": "reference", - "id": 1373, + "id": 1322, "name": "SpotterEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1372, + "id": 1321, "name": "SpotterEmbed.constructor" } }, { - "id": 1783, + "id": 1710, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -14203,13 +13903,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1481, + "line": 1396, "character": 11 } ], "signatures": [ { - "id": 1784, + "id": 1711, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -14229,19 +13929,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1523, + "id": 1465, "name": "SpotterEmbed.destroy" } } ], "inheritedFrom": { "type": "reference", - "id": 1522, + "id": 1464, "name": "SpotterEmbed.destroy" } }, { - "id": 1802, + "id": 1729, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -14251,13 +13951,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1681, + "line": 1596, "character": 17 } ], "signatures": [ { - "id": 1803, + "id": 1730, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -14273,7 +13973,7 @@ }, "parameters": [ { - "id": 1804, + "id": 1731, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -14294,7 +13994,7 @@ "typeArguments": [ { "type": "reference", - "id": 1875, + "id": 1802, "name": "AnswerService" } ], @@ -14302,19 +14002,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1542, + "id": 1484, "name": "SpotterEmbed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "id": 1541, + "id": 1483, "name": "SpotterEmbed.getAnswerService" } }, { - "id": 1640, + "id": 1574, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -14330,7 +14030,7 @@ ], "signatures": [ { - "id": 1641, + "id": 1575, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -14341,19 +14041,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1380, + "id": 1329, "name": "SpotterEmbed.getIframeSrc" } } ], "inheritedFrom": { "type": "reference", - "id": 1379, + "id": 1328, "name": "SpotterEmbed.getIframeSrc" } }, { - "id": 1797, + "id": 1724, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -14363,13 +14063,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1668, + "line": 1583, "character": 11 } ], "signatures": [ { - "id": 1798, + "id": 1725, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -14391,14 +14091,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1799, + "id": 1726, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1801, + "id": 1728, "name": "child", "kind": 1024, "kindString": "Property", @@ -14410,7 +14110,7 @@ "defaultValue": "..." }, { - "id": 1800, + "id": 1727, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -14427,8 +14127,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1801, - 1800 + 1728, + 1727 ] } ] @@ -14436,19 +14136,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1537, + "id": 1479, "name": "SpotterEmbed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "id": 1536, + "id": 1478, "name": "SpotterEmbed.getPreRenderIds" } }, { - "id": 1777, + "id": 1704, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -14458,13 +14158,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1451, + "line": 1366, "character": 11 } ], "signatures": [ { - "id": 1778, + "id": 1705, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -14480,7 +14180,7 @@ }, "parameters": [ { - "id": 1779, + "id": 1706, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -14488,20 +14188,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1780, + "id": 1707, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1781, + "id": 1708, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1782, + "id": 1709, "name": "key", "kind": 32768, "flags": {}, @@ -14536,19 +14236,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1517, + "id": 1459, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "id": 1516, + "id": 1458, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } }, { - "id": 1785, + "id": 1712, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -14558,13 +14258,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1504, + "line": 1419, "character": 11 } ], "signatures": [ { - "id": 1786, + "id": 1713, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -14575,19 +14275,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1525, + "id": 1467, "name": "SpotterEmbed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "id": 1524, + "id": 1466, "name": "SpotterEmbed.getUnderlyingFrameElement" } }, { - "id": 1795, + "id": 1722, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -14597,13 +14297,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1640, + "line": 1555, "character": 11 } ], "signatures": [ { - "id": 1796, + "id": 1723, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -14617,19 +14317,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1535, + "id": 1477, "name": "SpotterEmbed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1534, + "id": 1476, "name": "SpotterEmbed.hidePreRender" } }, { - "id": 1742, + "id": 1669, "name": "off", "kind": 2048, "kindString": "Method", @@ -14639,13 +14339,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1236, + "line": 1161, "character": 11 } ], "signatures": [ { - "id": 1743, + "id": 1670, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -14661,7 +14361,7 @@ }, "parameters": [ { - "id": 1744, + "id": 1671, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14671,12 +14371,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 1745, + "id": 1672, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14686,7 +14386,7 @@ }, "type": { "type": "reference", - "id": 2727, + "id": 2626, "name": "MessageCallback" } } @@ -14697,19 +14397,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1482, + "id": 1424, "name": "SpotterEmbed.off" } } ], "inheritedFrom": { "type": "reference", - "id": 1481, + "id": 1423, "name": "SpotterEmbed.off" } }, { - "id": 1736, + "id": 1663, "name": "on", "kind": 2048, "kindString": "Method", @@ -14719,13 +14419,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1207, + "line": 1132, "character": 11 } ], "signatures": [ { - "id": 1737, + "id": 1664, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -14745,7 +14445,7 @@ }, "parameters": [ { - "id": 1738, + "id": 1665, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14755,12 +14455,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 1739, + "id": 1666, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14770,12 +14470,12 @@ }, "type": { "type": "reference", - "id": 2727, + "id": 2626, "name": "MessageCallback" } }, { - "id": 1740, + "id": 1667, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -14785,13 +14485,13 @@ }, "type": { "type": "reference", - "id": 2724, + "id": 2623, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1741, + "id": 1668, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -14810,19 +14510,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1476, + "id": 1418, "name": "SpotterEmbed.on" } } ], "inheritedFrom": { "type": "reference", - "id": 1475, + "id": 1417, "name": "SpotterEmbed.on" } }, { - "id": 1773, + "id": 1700, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -14832,13 +14532,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1429, + "line": 1344, "character": 17 } ], "signatures": [ { - "id": 1774, + "id": 1701, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -14848,7 +14548,7 @@ }, "parameters": [ { - "id": 1775, + "id": 1702, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -14863,7 +14563,7 @@ "defaultValue": "false" }, { - "id": 1776, + "id": 1703, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -14887,19 +14587,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1513, + "id": 1455, "name": "SpotterEmbed.preRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1512, + "id": 1454, "name": "SpotterEmbed.preRender" } }, { - "id": 1787, + "id": 1714, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -14909,13 +14609,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1515, + "line": 1430, "character": 17 } ], "signatures": [ { - "id": 1788, + "id": 1715, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -14942,19 +14642,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1527, + "id": 1469, "name": "SpotterEmbed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "id": 1526, + "id": 1468, "name": "SpotterEmbed.prerenderGeneric" } }, { - "id": 1642, + "id": 1576, "name": "render", "kind": 2048, "kindString": "Method", @@ -14970,7 +14670,7 @@ ], "signatures": [ { - "id": 1643, + "id": 1577, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -14980,7 +14680,7 @@ "typeArguments": [ { "type": "reference", - "id": 1371, + "id": 1320, "name": "SpotterEmbed" } ], @@ -14988,19 +14688,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1382, + "id": 1331, "name": "SpotterEmbed.render" } } ], "inheritedFrom": { "type": "reference", - "id": 1381, + "id": 1330, "name": "SpotterEmbed.render" } }, { - "id": 1791, + "id": 1718, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -15010,13 +14710,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1563, + "line": 1478, "character": 17 } ], "signatures": [ { - "id": 1792, + "id": 1719, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -15036,19 +14736,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1531, + "id": 1473, "name": "SpotterEmbed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1530, + "id": 1472, "name": "SpotterEmbed.showPreRender" } }, { - "id": 1793, + "id": 1720, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -15058,13 +14758,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1621, + "line": 1536, "character": 11 } ], "signatures": [ { - "id": 1794, + "id": 1721, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -15084,19 +14784,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1533, + "id": 1475, "name": "SpotterEmbed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "id": 1532, + "id": 1474, "name": "SpotterEmbed.syncPreRenderStyle" } }, { - "id": 1760, + "id": 1687, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -15106,13 +14806,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1346, + "line": 1271, "character": 17 } ], "signatures": [ { - "id": 1761, + "id": 1688, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -15123,19 +14823,19 @@ }, "typeParameter": [ { - "id": 1762, + "id": 1689, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2095, + "id": 2020, "name": "HostEvent" } }, { - "id": 1763, + "id": 1690, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -15144,7 +14844,7 @@ ], "parameters": [ { - "id": 1764, + "id": 1691, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15158,7 +14858,7 @@ } }, { - "id": 1765, + "id": 1692, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -15205,19 +14905,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1500, + "id": 1442, "name": "SpotterEmbed.trigger" } } ], "inheritedFrom": { "type": "reference", - "id": 1499, + "id": 1441, "name": "SpotterEmbed.trigger" } }, { - "id": 1766, + "id": 1693, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -15227,13 +14927,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1392, + "line": 1307, "character": 17 } ], "signatures": [ { - "id": 1767, + "id": 1694, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -15244,21 +14944,21 @@ }, "typeParameter": [ { - "id": 1768, + "id": 1695, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2985, + "id": 2883, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1769, + "id": 1696, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -15272,7 +14972,7 @@ } }, { - "id": 1770, + "id": 1697, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -15310,14 +15010,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1506, + "id": 1448, "name": "SpotterEmbed.triggerUIPassThrough" } } ], "inheritedFrom": { "type": "reference", - "id": 1505, + "id": 1447, "name": "SpotterEmbed.triggerUIPassThrough" } } @@ -15327,29 +15027,29 @@ "title": "Constructors", "kind": 512, "children": [ - 1633 + 1567 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1783, - 1802, - 1640, - 1797, - 1777, - 1785, - 1795, - 1742, - 1736, - 1773, - 1787, - 1642, - 1791, - 1793, - 1760, - 1766 + 1710, + 1729, + 1574, + 1724, + 1704, + 1712, + 1722, + 1669, + 1663, + 1700, + 1714, + 1576, + 1718, + 1720, + 1687, + 1693 ] } ], @@ -15363,13 +15063,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1371, + "id": 1320, "name": "SpotterEmbed" } ] }, { - "id": 614, + "id": 590, "name": "LiveboardEmbed", "kind": 128, "kindString": "Class", @@ -15389,7 +15089,7 @@ }, "children": [ { - "id": 615, + "id": 591, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -15403,40 +15103,40 @@ ], "signatures": [ { - "id": 616, + "id": 592, "name": "new LiveboardEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 617, + "id": 593, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2723, + "id": 2622, "name": "DOMSelector" } }, { - "id": 618, + "id": 594, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2472, + "id": 2387, "name": "LiveboardViewConfig" } } ], "type": { "type": "reference", - "id": 614, + "id": 590, "name": "LiveboardEmbed" }, "overwrites": { @@ -15451,7 +15151,7 @@ } }, { - "id": 670, + "id": 646, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -15467,7 +15167,7 @@ ], "signatures": [ { - "id": 671, + "id": 647, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -15497,7 +15197,7 @@ } }, { - "id": 841, + "id": 810, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -15507,13 +15207,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1681, + "line": 1596, "character": 17 } ], "signatures": [ { - "id": 842, + "id": 811, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -15529,7 +15229,7 @@ }, "parameters": [ { - "id": 843, + "id": 812, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15550,7 +15250,7 @@ "typeArguments": [ { "type": "reference", - "id": 1875, + "id": 1802, "name": "AnswerService" } ], @@ -15568,7 +15268,7 @@ } }, { - "id": 814, + "id": 783, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -15578,13 +15278,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1416, + "line": 1331, "character": 11 } ], "signatures": [ { - "id": 815, + "id": 784, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -15605,7 +15305,7 @@ } }, { - "id": 685, + "id": 661, "name": "getLiveboardUrl", "kind": 2048, "kindString": "Method", @@ -15621,7 +15321,7 @@ ], "signatures": [ { - "id": 686, + "id": 662, "name": "getLiveboardUrl", "kind": 4096, "kindString": "Call signature", @@ -15638,7 +15338,7 @@ ] }, { - "id": 836, + "id": 805, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -15648,13 +15348,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1668, + "line": 1583, "character": 11 } ], "signatures": [ { - "id": 837, + "id": 806, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -15676,14 +15376,14 @@ "type": { "type": "reflection", "declaration": { - "id": 838, + "id": 807, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 840, + "id": 809, "name": "child", "kind": 1024, "kindString": "Property", @@ -15695,7 +15395,7 @@ "defaultValue": "..." }, { - "id": 839, + "id": 808, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -15712,8 +15412,8 @@ "title": "Properties", "kind": 1024, "children": [ - 840, - 839 + 809, + 808 ] } ] @@ -15731,7 +15431,7 @@ } }, { - "id": 820, + "id": 789, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -15741,13 +15441,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1451, + "line": 1366, "character": 11 } ], "signatures": [ { - "id": 821, + "id": 790, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -15763,7 +15463,7 @@ }, "parameters": [ { - "id": 822, + "id": 791, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -15771,20 +15471,20 @@ "type": { "type": "reflection", "declaration": { - "id": 823, + "id": 792, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 824, + "id": 793, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 825, + "id": 794, "name": "key", "kind": 32768, "flags": {}, @@ -15829,7 +15529,7 @@ } }, { - "id": 826, + "id": 795, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -15839,13 +15539,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1504, + "line": 1419, "character": 11 } ], "signatures": [ { - "id": 827, + "id": 796, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -15866,7 +15566,7 @@ } }, { - "id": 834, + "id": 803, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -15876,13 +15576,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1640, + "line": 1555, "character": 11 } ], "signatures": [ { - "id": 835, + "id": 804, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -15906,7 +15606,7 @@ } }, { - "id": 680, + "id": 656, "name": "navigateToLiveboard", "kind": 2048, "kindString": "Method", @@ -15922,14 +15622,14 @@ ], "signatures": [ { - "id": 681, + "id": 657, "name": "navigateToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 682, + "id": 658, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -15940,7 +15640,7 @@ } }, { - "id": 683, + "id": 659, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15953,7 +15653,7 @@ } }, { - "id": 684, + "id": 660, "name": "activeTabId", "kind": 32768, "kindString": "Parameter", @@ -15974,7 +15674,7 @@ ] }, { - "id": 791, + "id": 760, "name": "off", "kind": 2048, "kindString": "Method", @@ -15984,13 +15684,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1236, + "line": 1161, "character": 11 } ], "signatures": [ { - "id": 792, + "id": 761, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -16006,7 +15706,7 @@ }, "parameters": [ { - "id": 793, + "id": 762, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16016,12 +15716,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 794, + "id": 763, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -16031,7 +15731,7 @@ }, "type": { "type": "reference", - "id": 2727, + "id": 2626, "name": "MessageCallback" } } @@ -16052,7 +15752,7 @@ } }, { - "id": 692, + "id": 668, "name": "on", "kind": 2048, "kindString": "Method", @@ -16062,13 +15762,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1790, + "line": 1705, "character": 11 } ], "signatures": [ { - "id": 693, + "id": 669, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -16091,38 +15791,38 @@ }, "parameters": [ { - "id": 694, + "id": 670, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1999, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 695, + "id": 671, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2727, + "id": 2626, "name": "MessageCallback" } }, { - "id": 696, + "id": 672, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2724, + "id": 2623, "name": "MessageOptions" }, "defaultValue": "..." @@ -16144,7 +15844,7 @@ } }, { - "id": 816, + "id": 785, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -16154,13 +15854,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1429, + "line": 1344, "character": 17 } ], "signatures": [ { - "id": 817, + "id": 786, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -16170,7 +15870,7 @@ }, "parameters": [ { - "id": 818, + "id": 787, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -16185,7 +15885,7 @@ "defaultValue": "false" }, { - "id": 819, + "id": 788, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -16219,7 +15919,7 @@ } }, { - "id": 828, + "id": 797, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -16229,13 +15929,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1515, + "line": 1430, "character": 17 } ], "signatures": [ { - "id": 829, + "id": 798, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -16272,7 +15972,7 @@ } }, { - "id": 678, + "id": 654, "name": "render", "kind": 2048, "kindString": "Method", @@ -16288,7 +15988,7 @@ ], "signatures": [ { - "id": 679, + "id": 655, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -16301,7 +16001,7 @@ "typeArguments": [ { "type": "reference", - "id": 614, + "id": 590, "name": "LiveboardEmbed" } ], @@ -16319,7 +16019,7 @@ } }, { - "id": 830, + "id": 799, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -16329,13 +16029,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1563, + "line": 1478, "character": 17 } ], "signatures": [ { - "id": 831, + "id": 800, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -16365,7 +16065,7 @@ } }, { - "id": 832, + "id": 801, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -16375,13 +16075,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1621, + "line": 1536, "character": 11 } ], "signatures": [ { - "id": 833, + "id": 802, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -16411,7 +16111,7 @@ } }, { - "id": 664, + "id": 640, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -16427,7 +16127,7 @@ ], "signatures": [ { - "id": 665, + "id": 641, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -16438,19 +16138,19 @@ }, "typeParameter": [ { - "id": 666, + "id": 642, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2095, + "id": 2020, "name": "HostEvent" } }, { - "id": 667, + "id": 643, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -16459,7 +16159,7 @@ ], "parameters": [ { - "id": 668, + "id": 644, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16473,7 +16173,7 @@ } }, { - "id": 669, + "id": 645, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -16530,7 +16230,7 @@ } }, { - "id": 809, + "id": 778, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -16540,13 +16240,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1392, + "line": 1307, "character": 17 } ], "signatures": [ { - "id": 810, + "id": 779, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -16557,21 +16257,21 @@ }, "typeParameter": [ { - "id": 811, + "id": 780, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2985, + "id": 2883, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 812, + "id": 781, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -16585,7 +16285,7 @@ } }, { - "id": 813, + "id": 782, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -16638,31 +16338,31 @@ "title": "Constructors", "kind": 512, "children": [ - 615 + 591 ] }, { "title": "Methods", "kind": 2048, "children": [ - 670, - 841, - 814, - 685, - 836, - 820, - 826, - 834, - 680, - 791, - 692, - 816, - 828, - 678, - 830, - 832, - 664, - 809 + 646, + 810, + 783, + 661, + 805, + 789, + 795, + 803, + 656, + 760, + 668, + 785, + 797, + 654, + 799, + 801, + 640, + 778 ] } ], @@ -16681,7 +16381,7 @@ ] }, { - "id": 844, + "id": 813, "name": "SageEmbed", "kind": 128, "kindString": "Class", @@ -16701,7 +16401,7 @@ }, "children": [ { - "id": 845, + "id": 814, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -16715,40 +16415,40 @@ ], "signatures": [ { - "id": 846, + "id": 815, "name": "new SageEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 847, + "id": 816, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2723, + "id": 2622, "name": "DOMSelector" } }, { - "id": 848, + "id": 817, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2554, + "id": 2462, "name": "SageViewConfig" } } ], "type": { "type": "reference", - "id": 844, + "id": 813, "name": "SageEmbed" }, "overwrites": { @@ -16763,7 +16463,7 @@ } }, { - "id": 1005, + "id": 967, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -16773,13 +16473,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1481, + "line": 1396, "character": 11 } ], "signatures": [ { - "id": 1006, + "id": 968, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -16809,7 +16509,7 @@ } }, { - "id": 1024, + "id": 986, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -16819,13 +16519,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1681, + "line": 1596, "character": 17 } ], "signatures": [ { - "id": 1025, + "id": 987, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -16841,7 +16541,7 @@ }, "parameters": [ { - "id": 1026, + "id": 988, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -16862,7 +16562,7 @@ "typeArguments": [ { "type": "reference", - "id": 1875, + "id": 1802, "name": "AnswerService" } ], @@ -16880,7 +16580,7 @@ } }, { - "id": 854, + "id": 823, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -16896,7 +16596,7 @@ ], "signatures": [ { - "id": 855, + "id": 824, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -16913,7 +16613,7 @@ ] }, { - "id": 991, + "id": 953, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -16923,13 +16623,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1416, + "line": 1331, "character": 11 } ], "signatures": [ { - "id": 992, + "id": 954, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -16950,7 +16650,7 @@ } }, { - "id": 1019, + "id": 981, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -16960,13 +16660,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1668, + "line": 1583, "character": 11 } ], "signatures": [ { - "id": 1020, + "id": 982, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -16988,14 +16688,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1021, + "id": 983, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1023, + "id": 985, "name": "child", "kind": 1024, "kindString": "Property", @@ -17007,7 +16707,7 @@ "defaultValue": "..." }, { - "id": 1022, + "id": 984, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -17024,8 +16724,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1023, - 1022 + 985, + 984 ] } ] @@ -17043,7 +16743,7 @@ } }, { - "id": 999, + "id": 961, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -17053,13 +16753,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1451, + "line": 1366, "character": 11 } ], "signatures": [ { - "id": 1000, + "id": 962, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -17075,7 +16775,7 @@ }, "parameters": [ { - "id": 1001, + "id": 963, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -17083,20 +16783,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1002, + "id": 964, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1003, + "id": 965, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1004, + "id": 966, "name": "key", "kind": 32768, "flags": {}, @@ -17141,7 +16841,7 @@ } }, { - "id": 1007, + "id": 969, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -17151,13 +16851,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1504, + "line": 1419, "character": 11 } ], "signatures": [ { - "id": 1008, + "id": 970, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -17178,7 +16878,7 @@ } }, { - "id": 1017, + "id": 979, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -17188,13 +16888,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1640, + "line": 1555, "character": 11 } ], "signatures": [ { - "id": 1018, + "id": 980, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -17218,7 +16918,7 @@ } }, { - "id": 962, + "id": 924, "name": "off", "kind": 2048, "kindString": "Method", @@ -17228,13 +16928,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1236, + "line": 1161, "character": 11 } ], "signatures": [ { - "id": 963, + "id": 925, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -17250,7 +16950,7 @@ }, "parameters": [ { - "id": 964, + "id": 926, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17260,12 +16960,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 965, + "id": 927, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -17275,7 +16975,7 @@ }, "type": { "type": "reference", - "id": 2727, + "id": 2626, "name": "MessageCallback" } } @@ -17296,7 +16996,7 @@ } }, { - "id": 863, + "id": 832, "name": "on", "kind": 2048, "kindString": "Method", @@ -17306,13 +17006,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1790, + "line": 1705, "character": 11 } ], "signatures": [ { - "id": 864, + "id": 833, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -17335,38 +17035,38 @@ }, "parameters": [ { - "id": 865, + "id": 834, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1999, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 866, + "id": 835, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2727, + "id": 2626, "name": "MessageCallback" } }, { - "id": 867, + "id": 836, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2724, + "id": 2623, "name": "MessageOptions" }, "defaultValue": "..." @@ -17388,7 +17088,7 @@ } }, { - "id": 995, + "id": 957, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -17398,13 +17098,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1429, + "line": 1344, "character": 17 } ], "signatures": [ { - "id": 996, + "id": 958, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -17414,7 +17114,7 @@ }, "parameters": [ { - "id": 997, + "id": 959, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -17429,7 +17129,7 @@ "defaultValue": "false" }, { - "id": 998, + "id": 960, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -17463,7 +17163,7 @@ } }, { - "id": 1009, + "id": 971, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -17473,13 +17173,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1515, + "line": 1430, "character": 17 } ], "signatures": [ { - "id": 1010, + "id": 972, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -17516,7 +17216,7 @@ } }, { - "id": 856, + "id": 825, "name": "render", "kind": 2048, "kindString": "Method", @@ -17532,7 +17232,7 @@ ], "signatures": [ { - "id": 857, + "id": 826, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -17546,7 +17246,7 @@ "typeArguments": [ { "type": "reference", - "id": 844, + "id": 813, "name": "SageEmbed" } ], @@ -17564,7 +17264,7 @@ } }, { - "id": 1013, + "id": 975, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -17574,13 +17274,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1563, + "line": 1478, "character": 17 } ], "signatures": [ { - "id": 1014, + "id": 976, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -17610,7 +17310,7 @@ } }, { - "id": 1015, + "id": 977, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -17620,13 +17320,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1621, + "line": 1536, "character": 11 } ], "signatures": [ { - "id": 1016, + "id": 978, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -17656,7 +17356,7 @@ } }, { - "id": 980, + "id": 942, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -17666,13 +17366,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1346, + "line": 1271, "character": 17 } ], "signatures": [ { - "id": 981, + "id": 943, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -17683,19 +17383,19 @@ }, "typeParameter": [ { - "id": 982, + "id": 944, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2095, + "id": 2020, "name": "HostEvent" } }, { - "id": 983, + "id": 945, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -17704,7 +17404,7 @@ ], "parameters": [ { - "id": 984, + "id": 946, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17718,7 +17418,7 @@ } }, { - "id": 985, + "id": 947, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -17775,7 +17475,7 @@ } }, { - "id": 986, + "id": 948, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -17785,13 +17485,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1392, + "line": 1307, "character": 17 } ], "signatures": [ { - "id": 987, + "id": 949, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -17802,21 +17502,21 @@ }, "typeParameter": [ { - "id": 988, + "id": 950, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2985, + "id": 2883, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 989, + "id": 951, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -17830,7 +17530,7 @@ } }, { - "id": 990, + "id": 952, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -17883,30 +17583,30 @@ "title": "Constructors", "kind": 512, "children": [ - 845 + 814 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1005, - 1024, - 854, - 991, - 1019, - 999, - 1007, - 1017, - 962, - 863, - 995, - 1009, - 856, - 1013, - 1015, - 980, - 986 + 967, + 986, + 823, + 953, + 981, + 961, + 969, + 979, + 924, + 832, + 957, + 971, + 825, + 975, + 977, + 942, + 948 ] } ], @@ -17925,7 +17625,7 @@ ] }, { - "id": 241, + "id": 231, "name": "SearchBarEmbed", "kind": 128, "kindString": "Class", @@ -17945,7 +17645,7 @@ }, "children": [ { - "id": 242, + "id": 232, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -17959,14 +17659,14 @@ ], "signatures": [ { - "id": 243, + "id": 233, "name": "new SearchBarEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 244, + "id": 234, "name": "domSelector", "kind": 32768, "kindString": "Parameter", @@ -17977,21 +17677,21 @@ } }, { - "id": 245, + "id": 235, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2427, + "id": 2345, "name": "SearchBarViewConfig" } } ], "type": { "type": "reference", - "id": 241, + "id": 231, "name": "SearchBarEmbed" }, "overwrites": { @@ -18006,7 +17706,7 @@ } }, { - "id": 399, + "id": 382, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -18016,13 +17716,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1481, + "line": 1396, "character": 11 } ], "signatures": [ { - "id": 400, + "id": 383, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -18052,7 +17752,7 @@ } }, { - "id": 418, + "id": 401, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -18062,13 +17762,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1681, + "line": 1596, "character": 17 } ], "signatures": [ { - "id": 419, + "id": 402, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -18084,7 +17784,7 @@ }, "parameters": [ { - "id": 420, + "id": 403, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -18105,7 +17805,7 @@ "typeArguments": [ { "type": "reference", - "id": 1875, + "id": 1802, "name": "AnswerService" } ], @@ -18123,7 +17823,7 @@ } }, { - "id": 385, + "id": 368, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -18133,13 +17833,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1416, + "line": 1331, "character": 11 } ], "signatures": [ { - "id": 386, + "id": 369, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -18160,7 +17860,7 @@ } }, { - "id": 413, + "id": 396, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -18170,13 +17870,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1668, + "line": 1583, "character": 11 } ], "signatures": [ { - "id": 414, + "id": 397, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -18198,14 +17898,14 @@ "type": { "type": "reflection", "declaration": { - "id": 415, + "id": 398, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 417, + "id": 400, "name": "child", "kind": 1024, "kindString": "Property", @@ -18217,7 +17917,7 @@ "defaultValue": "..." }, { - "id": 416, + "id": 399, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -18234,8 +17934,8 @@ "title": "Properties", "kind": 1024, "children": [ - 417, - 416 + 400, + 399 ] } ] @@ -18253,7 +17953,7 @@ } }, { - "id": 393, + "id": 376, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -18263,13 +17963,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1451, + "line": 1366, "character": 11 } ], "signatures": [ { - "id": 394, + "id": 377, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -18285,7 +17985,7 @@ }, "parameters": [ { - "id": 395, + "id": 378, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -18293,20 +17993,20 @@ "type": { "type": "reflection", "declaration": { - "id": 396, + "id": 379, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 397, + "id": 380, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 398, + "id": 381, "name": "key", "kind": 32768, "flags": {}, @@ -18351,7 +18051,7 @@ } }, { - "id": 401, + "id": 384, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -18361,13 +18061,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1504, + "line": 1419, "character": 11 } ], "signatures": [ { - "id": 402, + "id": 385, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -18388,7 +18088,7 @@ } }, { - "id": 411, + "id": 394, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -18398,13 +18098,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1640, + "line": 1555, "character": 11 } ], "signatures": [ { - "id": 412, + "id": 395, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -18428,7 +18128,7 @@ } }, { - "id": 356, + "id": 339, "name": "off", "kind": 2048, "kindString": "Method", @@ -18438,13 +18138,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1236, + "line": 1161, "character": 11 } ], "signatures": [ { - "id": 357, + "id": 340, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -18460,7 +18160,7 @@ }, "parameters": [ { - "id": 358, + "id": 341, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18470,12 +18170,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 359, + "id": 342, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18485,7 +18185,7 @@ }, "type": { "type": "reference", - "id": 2727, + "id": 2626, "name": "MessageCallback" } } @@ -18506,7 +18206,7 @@ } }, { - "id": 350, + "id": 333, "name": "on", "kind": 2048, "kindString": "Method", @@ -18516,13 +18216,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1207, + "line": 1132, "character": 11 } ], "signatures": [ { - "id": 351, + "id": 334, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -18542,7 +18242,7 @@ }, "parameters": [ { - "id": 352, + "id": 335, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18552,12 +18252,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 353, + "id": 336, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18567,12 +18267,12 @@ }, "type": { "type": "reference", - "id": 2727, + "id": 2626, "name": "MessageCallback" } }, { - "id": 354, + "id": 337, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -18582,13 +18282,13 @@ }, "type": { "type": "reference", - "id": 2724, + "id": 2623, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 355, + "id": 338, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -18617,7 +18317,7 @@ } }, { - "id": 389, + "id": 372, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -18627,13 +18327,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1429, + "line": 1344, "character": 17 } ], "signatures": [ { - "id": 390, + "id": 373, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -18643,7 +18343,7 @@ }, "parameters": [ { - "id": 391, + "id": 374, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -18658,7 +18358,7 @@ "defaultValue": "false" }, { - "id": 392, + "id": 375, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -18692,7 +18392,7 @@ } }, { - "id": 403, + "id": 386, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -18702,13 +18402,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1515, + "line": 1430, "character": 17 } ], "signatures": [ { - "id": 404, + "id": 387, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -18745,7 +18445,7 @@ } }, { - "id": 252, + "id": 242, "name": "render", "kind": 2048, "kindString": "Method", @@ -18761,7 +18461,7 @@ ], "signatures": [ { - "id": 253, + "id": 243, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -18774,7 +18474,7 @@ "typeArguments": [ { "type": "reference", - "id": 241, + "id": 231, "name": "SearchBarEmbed" } ], @@ -18792,7 +18492,7 @@ } }, { - "id": 407, + "id": 390, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -18802,13 +18502,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1563, + "line": 1478, "character": 17 } ], "signatures": [ { - "id": 408, + "id": 391, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -18838,7 +18538,7 @@ } }, { - "id": 409, + "id": 392, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -18848,13 +18548,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1621, + "line": 1536, "character": 11 } ], "signatures": [ { - "id": 410, + "id": 393, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -18884,7 +18584,7 @@ } }, { - "id": 374, + "id": 357, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -18894,13 +18594,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1346, + "line": 1271, "character": 17 } ], "signatures": [ { - "id": 375, + "id": 358, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -18911,19 +18611,19 @@ }, "typeParameter": [ { - "id": 376, + "id": 359, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2095, + "id": 2020, "name": "HostEvent" } }, { - "id": 377, + "id": 360, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -18932,7 +18632,7 @@ ], "parameters": [ { - "id": 378, + "id": 361, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18946,7 +18646,7 @@ } }, { - "id": 379, + "id": 362, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -19003,7 +18703,7 @@ } }, { - "id": 380, + "id": 363, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -19013,13 +18713,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1392, + "line": 1307, "character": 17 } ], "signatures": [ { - "id": 381, + "id": 364, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -19030,21 +18730,21 @@ }, "typeParameter": [ { - "id": 382, + "id": 365, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2985, + "id": 2883, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 383, + "id": 366, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -19058,7 +18758,7 @@ } }, { - "id": 384, + "id": 367, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -19111,29 +18811,29 @@ "title": "Constructors", "kind": 512, "children": [ - 242 + 232 ] }, { "title": "Methods", "kind": 2048, "children": [ - 399, - 418, - 385, - 413, - 393, + 382, 401, - 411, - 356, - 350, - 389, - 403, - 252, - 407, - 409, - 374, - 380 + 368, + 396, + 376, + 384, + 394, + 339, + 333, + 372, + 386, + 242, + 390, + 392, + 357, + 363 ] } ], @@ -19196,7 +18896,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2723, + "id": 2622, "name": "DOMSelector" } }, @@ -19208,7 +18908,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2371, + "id": 2291, "name": "SearchViewConfig" } } @@ -19230,7 +18930,7 @@ } }, { - "id": 219, + "id": 209, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -19240,13 +18940,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1481, + "line": 1396, "character": 11 } ], "signatures": [ { - "id": 220, + "id": 210, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -19276,7 +18976,7 @@ } }, { - "id": 238, + "id": 228, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -19286,13 +18986,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1681, + "line": 1596, "character": 17 } ], "signatures": [ { - "id": 239, + "id": 229, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -19308,7 +19008,7 @@ }, "parameters": [ { - "id": 240, + "id": 230, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -19329,7 +19029,7 @@ "typeArguments": [ { "type": "reference", - "id": 1875, + "id": 1802, "name": "AnswerService" } ], @@ -19379,7 +19079,7 @@ ] }, { - "id": 205, + "id": 195, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -19389,13 +19089,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1416, + "line": 1331, "character": 11 } ], "signatures": [ { - "id": 206, + "id": 196, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -19416,7 +19116,7 @@ } }, { - "id": 233, + "id": 223, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -19426,13 +19126,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1668, + "line": 1583, "character": 11 } ], "signatures": [ { - "id": 234, + "id": 224, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -19454,14 +19154,14 @@ "type": { "type": "reflection", "declaration": { - "id": 235, + "id": 225, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 237, + "id": 227, "name": "child", "kind": 1024, "kindString": "Property", @@ -19473,7 +19173,7 @@ "defaultValue": "..." }, { - "id": 236, + "id": 226, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -19490,8 +19190,8 @@ "title": "Properties", "kind": 1024, "children": [ - 237, - 236 + 227, + 226 ] } ] @@ -19509,7 +19209,7 @@ } }, { - "id": 213, + "id": 203, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -19519,13 +19219,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1451, + "line": 1366, "character": 11 } ], "signatures": [ { - "id": 214, + "id": 204, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -19541,7 +19241,7 @@ }, "parameters": [ { - "id": 215, + "id": 205, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -19549,20 +19249,20 @@ "type": { "type": "reflection", "declaration": { - "id": 216, + "id": 206, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 217, + "id": 207, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 218, + "id": 208, "name": "key", "kind": 32768, "flags": {}, @@ -19607,7 +19307,7 @@ } }, { - "id": 221, + "id": 211, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -19617,13 +19317,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1504, + "line": 1419, "character": 11 } ], "signatures": [ { - "id": 222, + "id": 212, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -19644,7 +19344,7 @@ } }, { - "id": 231, + "id": 221, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -19654,13 +19354,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1640, + "line": 1555, "character": 11 } ], "signatures": [ { - "id": 232, + "id": 222, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -19684,7 +19384,7 @@ } }, { - "id": 176, + "id": 166, "name": "off", "kind": 2048, "kindString": "Method", @@ -19694,13 +19394,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1236, + "line": 1161, "character": 11 } ], "signatures": [ { - "id": 177, + "id": 167, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -19716,7 +19416,7 @@ }, "parameters": [ { - "id": 178, + "id": 168, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19726,12 +19426,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 179, + "id": 169, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19741,7 +19441,7 @@ }, "type": { "type": "reference", - "id": 2727, + "id": 2626, "name": "MessageCallback" } } @@ -19762,7 +19462,7 @@ } }, { - "id": 170, + "id": 160, "name": "on", "kind": 2048, "kindString": "Method", @@ -19772,13 +19472,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1207, + "line": 1132, "character": 11 } ], "signatures": [ { - "id": 171, + "id": 161, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -19798,7 +19498,7 @@ }, "parameters": [ { - "id": 172, + "id": 162, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19808,12 +19508,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 173, + "id": 163, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19823,12 +19523,12 @@ }, "type": { "type": "reference", - "id": 2727, + "id": 2626, "name": "MessageCallback" } }, { - "id": 174, + "id": 164, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -19838,13 +19538,13 @@ }, "type": { "type": "reference", - "id": 2724, + "id": 2623, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 175, + "id": 165, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -19873,7 +19573,7 @@ } }, { - "id": 209, + "id": 199, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -19883,13 +19583,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1429, + "line": 1344, "character": 17 } ], "signatures": [ { - "id": 210, + "id": 200, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -19899,7 +19599,7 @@ }, "parameters": [ { - "id": 211, + "id": 201, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -19914,7 +19614,7 @@ "defaultValue": "false" }, { - "id": 212, + "id": 202, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -19948,7 +19648,7 @@ } }, { - "id": 223, + "id": 213, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -19958,13 +19658,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1515, + "line": 1430, "character": 17 } ], "signatures": [ { - "id": 224, + "id": 214, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -20048,7 +19748,7 @@ } }, { - "id": 227, + "id": 217, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -20058,13 +19758,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1563, + "line": 1478, "character": 17 } ], "signatures": [ { - "id": 228, + "id": 218, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -20094,7 +19794,7 @@ } }, { - "id": 229, + "id": 219, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -20104,13 +19804,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1621, + "line": 1536, "character": 11 } ], "signatures": [ { - "id": 230, + "id": 220, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -20140,7 +19840,7 @@ } }, { - "id": 194, + "id": 184, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -20150,13 +19850,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1346, + "line": 1271, "character": 17 } ], "signatures": [ { - "id": 195, + "id": 185, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -20167,19 +19867,19 @@ }, "typeParameter": [ { - "id": 196, + "id": 186, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2095, + "id": 2020, "name": "HostEvent" } }, { - "id": 197, + "id": 187, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -20188,7 +19888,7 @@ ], "parameters": [ { - "id": 198, + "id": 188, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -20202,7 +19902,7 @@ } }, { - "id": 199, + "id": 189, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -20259,7 +19959,7 @@ } }, { - "id": 200, + "id": 190, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -20269,13 +19969,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1392, + "line": 1307, "character": 17 } ], "signatures": [ { - "id": 201, + "id": 191, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -20286,21 +19986,21 @@ }, "typeParameter": [ { - "id": 202, + "id": 192, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2985, + "id": 2883, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 203, + "id": 193, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -20314,7 +20014,7 @@ } }, { - "id": 204, + "id": 194, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -20374,23 +20074,23 @@ "title": "Methods", "kind": 2048, "children": [ - 219, - 238, - 78, - 205, - 233, - 213, - 221, - 231, - 176, - 170, 209, + 228, + 75, + 195, 223, - 80, - 227, - 229, - 194, - 200 + 203, + 211, + 221, + 166, + 160, + 199, + 213, + 77, + 217, + 219, + 184, + 190 ] } ], @@ -20409,7 +20109,7 @@ ] }, { - "id": 1244, + "id": 1199, "name": "SpotterAgentEmbed", "kind": 128, "kindString": "Class", @@ -20433,7 +20133,7 @@ }, "children": [ { - "id": 1245, + "id": 1200, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -20447,35 +20147,35 @@ ], "signatures": [ { - "id": 1246, + "id": 1201, "name": "new SpotterAgentEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1247, + "id": 1202, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1276, + "id": 1231, "name": "SpotterAgentEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1244, + "id": 1199, "name": "SpotterAgentEmbed" } } ] }, { - "id": 1249, + "id": 1204, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -20491,14 +20191,14 @@ ], "signatures": [ { - "id": 1250, + "id": 1205, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1251, + "id": 1206, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -20518,14 +20218,14 @@ { "type": "reflection", "declaration": { - "id": 1252, + "id": 1207, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1254, + "id": 1209, "name": "container", "kind": 1024, "kindString": "Property", @@ -20536,7 +20236,7 @@ } }, { - "id": 1253, + "id": 1208, "name": "error", "kind": 1024, "kindString": "Property", @@ -20547,7 +20247,7 @@ } }, { - "id": 1255, + "id": 1210, "name": "viz", "kind": 1024, "kindString": "Property", @@ -20564,9 +20264,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1254, - 1253, - 1255 + 1209, + 1208, + 1210 ] } ] @@ -20575,14 +20275,14 @@ { "type": "reflection", "declaration": { - "id": 1256, + "id": 1211, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1257, + "id": 1212, "name": "container", "kind": 1024, "kindString": "Property", @@ -20593,7 +20293,7 @@ } }, { - "id": 1259, + "id": 1214, "name": "error", "kind": 1024, "kindString": "Property", @@ -20604,7 +20304,7 @@ } }, { - "id": 1258, + "id": 1213, "name": "viz", "kind": 1024, "kindString": "Property", @@ -20621,9 +20321,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1257, - 1259, - 1258 + 1212, + 1214, + 1213 ] } ] @@ -20638,7 +20338,7 @@ ] }, { - "id": 1260, + "id": 1215, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -20654,7 +20354,7 @@ ], "signatures": [ { - "id": 1261, + "id": 1216, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -20665,7 +20365,7 @@ }, "parameters": [ { - "id": 1262, + "id": 1217, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -20688,14 +20388,14 @@ { "type": "reflection", "declaration": { - "id": 1263, + "id": 1218, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1265, + "id": 1220, "name": "data", "kind": 1024, "kindString": "Property", @@ -20707,7 +20407,7 @@ "defaultValue": "..." }, { - "id": 1264, + "id": 1219, "name": "error", "kind": 1024, "kindString": "Property", @@ -20723,8 +20423,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1265, - 1264 + 1220, + 1219 ] } ] @@ -20733,14 +20433,14 @@ { "type": "reflection", "declaration": { - "id": 1266, + "id": 1221, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1267, + "id": 1222, "name": "data", "kind": 1024, "kindString": "Property", @@ -20748,14 +20448,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1268, + "id": 1223, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1274, + "id": 1229, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -20767,7 +20467,7 @@ "defaultValue": "..." }, { - "id": 1273, + "id": 1228, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -20779,7 +20479,7 @@ "defaultValue": "..." }, { - "id": 1269, + "id": 1224, "name": "convId", "kind": 1024, "kindString": "Property", @@ -20791,7 +20491,7 @@ "defaultValue": "..." }, { - "id": 1272, + "id": 1227, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -20803,7 +20503,7 @@ "defaultValue": "..." }, { - "id": 1270, + "id": 1225, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -20815,7 +20515,7 @@ "defaultValue": "..." }, { - "id": 1271, + "id": 1226, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -20832,12 +20532,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1274, - 1273, - 1269, - 1272, - 1270, - 1271 + 1229, + 1228, + 1224, + 1227, + 1225, + 1226 ] } ] @@ -20846,7 +20546,7 @@ "defaultValue": "..." }, { - "id": 1275, + "id": 1230, "name": "error", "kind": 1024, "kindString": "Property", @@ -20862,8 +20562,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1267, - 1275 + 1222, + 1230 ] } ] @@ -20883,15 +20583,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1245 + 1200 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1249, - 1260 + 1204, + 1215 ] } ], @@ -20905,13 +20605,13 @@ "extendedBy": [ { "type": "reference", - "id": 1340, + "id": 1289, "name": "BodylessConversation" } ] }, { - "id": 1371, + "id": 1320, "name": "SpotterEmbed", "kind": 128, "kindString": "Class", @@ -20935,7 +20635,7 @@ }, "children": [ { - "id": 1372, + "id": 1321, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -20949,14 +20649,14 @@ ], "signatures": [ { - "id": 1373, + "id": 1322, "name": "new SpotterEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1374, + "id": 1323, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -20967,21 +20667,21 @@ } }, { - "id": 1375, + "id": 1324, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1544, + "id": 1486, "name": "SpotterEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1371, + "id": 1320, "name": "SpotterEmbed" }, "overwrites": { @@ -20996,7 +20696,7 @@ } }, { - "id": 1522, + "id": 1464, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -21006,13 +20706,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1481, + "line": 1396, "character": 11 } ], "signatures": [ { - "id": 1523, + "id": 1465, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -21042,7 +20742,7 @@ } }, { - "id": 1541, + "id": 1483, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -21052,13 +20752,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1681, + "line": 1596, "character": 17 } ], "signatures": [ { - "id": 1542, + "id": 1484, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -21074,7 +20774,7 @@ }, "parameters": [ { - "id": 1543, + "id": 1485, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -21095,7 +20795,7 @@ "typeArguments": [ { "type": "reference", - "id": 1875, + "id": 1802, "name": "AnswerService" } ], @@ -21113,7 +20813,7 @@ } }, { - "id": 1379, + "id": 1328, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -21129,7 +20829,7 @@ ], "signatures": [ { - "id": 1380, + "id": 1329, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -21150,7 +20850,7 @@ } }, { - "id": 1536, + "id": 1478, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -21160,13 +20860,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1668, + "line": 1583, "character": 11 } ], "signatures": [ { - "id": 1537, + "id": 1479, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -21188,14 +20888,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1538, + "id": 1480, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1540, + "id": 1482, "name": "child", "kind": 1024, "kindString": "Property", @@ -21207,7 +20907,7 @@ "defaultValue": "..." }, { - "id": 1539, + "id": 1481, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -21224,8 +20924,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1540, - 1539 + 1482, + 1481 ] } ] @@ -21243,7 +20943,7 @@ } }, { - "id": 1516, + "id": 1458, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -21253,13 +20953,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1451, + "line": 1366, "character": 11 } ], "signatures": [ { - "id": 1517, + "id": 1459, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -21275,7 +20975,7 @@ }, "parameters": [ { - "id": 1518, + "id": 1460, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -21283,20 +20983,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1519, + "id": 1461, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1520, + "id": 1462, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1521, + "id": 1463, "name": "key", "kind": 32768, "flags": {}, @@ -21341,7 +21041,7 @@ } }, { - "id": 1524, + "id": 1466, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -21351,13 +21051,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1504, + "line": 1419, "character": 11 } ], "signatures": [ { - "id": 1525, + "id": 1467, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -21378,7 +21078,7 @@ } }, { - "id": 1534, + "id": 1476, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -21388,13 +21088,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1640, + "line": 1555, "character": 11 } ], "signatures": [ { - "id": 1535, + "id": 1477, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -21418,7 +21118,7 @@ } }, { - "id": 1481, + "id": 1423, "name": "off", "kind": 2048, "kindString": "Method", @@ -21428,13 +21128,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1236, + "line": 1161, "character": 11 } ], "signatures": [ { - "id": 1482, + "id": 1424, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -21450,7 +21150,7 @@ }, "parameters": [ { - "id": 1483, + "id": 1425, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21460,12 +21160,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 1484, + "id": 1426, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -21475,7 +21175,7 @@ }, "type": { "type": "reference", - "id": 2727, + "id": 2626, "name": "MessageCallback" } } @@ -21496,7 +21196,7 @@ } }, { - "id": 1475, + "id": 1417, "name": "on", "kind": 2048, "kindString": "Method", @@ -21506,13 +21206,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1207, + "line": 1132, "character": 11 } ], "signatures": [ { - "id": 1476, + "id": 1418, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -21532,7 +21232,7 @@ }, "parameters": [ { - "id": 1477, + "id": 1419, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21542,12 +21242,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 1478, + "id": 1420, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -21557,12 +21257,12 @@ }, "type": { "type": "reference", - "id": 2727, + "id": 2626, "name": "MessageCallback" } }, { - "id": 1479, + "id": 1421, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -21572,13 +21272,13 @@ }, "type": { "type": "reference", - "id": 2724, + "id": 2623, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1480, + "id": 1422, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -21607,7 +21307,7 @@ } }, { - "id": 1512, + "id": 1454, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -21617,13 +21317,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1429, + "line": 1344, "character": 17 } ], "signatures": [ { - "id": 1513, + "id": 1455, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -21633,7 +21333,7 @@ }, "parameters": [ { - "id": 1514, + "id": 1456, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -21648,7 +21348,7 @@ "defaultValue": "false" }, { - "id": 1515, + "id": 1457, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -21682,7 +21382,7 @@ } }, { - "id": 1526, + "id": 1468, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -21692,13 +21392,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1515, + "line": 1430, "character": 17 } ], "signatures": [ { - "id": 1527, + "id": 1469, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -21735,7 +21435,7 @@ } }, { - "id": 1381, + "id": 1330, "name": "render", "kind": 2048, "kindString": "Method", @@ -21751,7 +21451,7 @@ ], "signatures": [ { - "id": 1382, + "id": 1331, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -21761,7 +21461,7 @@ "typeArguments": [ { "type": "reference", - "id": 1371, + "id": 1320, "name": "SpotterEmbed" } ], @@ -21779,7 +21479,7 @@ } }, { - "id": 1530, + "id": 1472, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -21789,13 +21489,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1563, + "line": 1478, "character": 17 } ], "signatures": [ { - "id": 1531, + "id": 1473, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -21825,7 +21525,7 @@ } }, { - "id": 1532, + "id": 1474, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -21835,13 +21535,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1621, + "line": 1536, "character": 11 } ], "signatures": [ { - "id": 1533, + "id": 1475, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -21871,7 +21571,7 @@ } }, { - "id": 1499, + "id": 1441, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -21881,13 +21581,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1346, + "line": 1271, "character": 17 } ], "signatures": [ { - "id": 1500, + "id": 1442, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -21898,19 +21598,19 @@ }, "typeParameter": [ { - "id": 1501, + "id": 1443, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2095, + "id": 2020, "name": "HostEvent" } }, { - "id": 1502, + "id": 1444, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -21919,7 +21619,7 @@ ], "parameters": [ { - "id": 1503, + "id": 1445, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21933,7 +21633,7 @@ } }, { - "id": 1504, + "id": 1446, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -21990,7 +21690,7 @@ } }, { - "id": 1505, + "id": 1447, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -22000,13 +21700,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1392, + "line": 1307, "character": 17 } ], "signatures": [ { - "id": 1506, + "id": 1448, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -22017,21 +21717,21 @@ }, "typeParameter": [ { - "id": 1507, + "id": 1449, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2985, + "id": 2883, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1508, + "id": 1450, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -22045,7 +21745,7 @@ } }, { - "id": 1509, + "id": 1451, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -22098,29 +21798,29 @@ "title": "Constructors", "kind": 512, "children": [ - 1372 + 1321 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1522, - 1541, - 1379, - 1536, - 1516, - 1524, - 1534, - 1481, - 1475, - 1512, - 1526, - 1381, - 1530, - 1532, - 1499, - 1505 + 1464, + 1483, + 1328, + 1478, + 1458, + 1466, + 1476, + 1423, + 1417, + 1454, + 1468, + 1330, + 1472, + 1474, + 1441, + 1447 ] } ], @@ -22140,13 +21840,13 @@ "extendedBy": [ { "type": "reference", - "id": 1632, + "id": 1566, "name": "ConversationEmbed" } ] }, { - "id": 2604, + "id": 2509, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -22162,7 +21862,7 @@ }, "children": [ { - "id": 2643, + "id": 2547, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -22193,20 +21893,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2644, + "id": 2548, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2645, + "id": 2549, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2646, + "id": 2550, "name": "key", "kind": 32768, "flags": {}, @@ -22242,7 +21942,7 @@ } }, { - "id": 2670, + "id": 2571, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -22270,7 +21970,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1301, + "line": 1292, "character": 4 } ], @@ -22284,7 +21984,7 @@ } }, { - "id": 2624, + "id": 2529, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -22321,7 +22021,7 @@ } }, { - "id": 2667, + "id": 2568, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -22345,13 +22045,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1265, + "line": 1256, "character": 4 } ], "type": { "type": "reference", - "id": 2315, + "id": 2235, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -22360,7 +22060,7 @@ } }, { - "id": 2687, + "id": 2588, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -22384,7 +22084,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1521, + "line": 1512, "character": 4 } ], @@ -22398,7 +22098,7 @@ } }, { - "id": 2661, + "id": 2565, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -22439,7 +22139,7 @@ } }, { - "id": 2647, + "id": 2551, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -22468,7 +22168,7 @@ ], "type": { "type": "reference", - "id": 2740, + "id": 2639, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -22477,7 +22177,7 @@ } }, { - "id": 2625, + "id": 2530, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -22511,12 +22211,12 @@ ], "type": { "type": "reference", - "id": 2999, + "id": 2896, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2671, + "id": 2572, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -22544,7 +22244,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1317, + "line": 1308, "character": 4 } ], @@ -22558,7 +22258,7 @@ } }, { - "id": 2607, + "id": 2512, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -22596,7 +22296,7 @@ } }, { - "id": 2655, + "id": 2559, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -22634,7 +22334,7 @@ } }, { - "id": 2639, + "id": 2543, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -22672,7 +22372,7 @@ } }, { - "id": 2638, + "id": 2542, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -22704,7 +22404,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -22714,7 +22414,7 @@ } }, { - "id": 2623, + "id": 2528, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -22752,7 +22452,7 @@ } }, { - "id": 2651, + "id": 2555, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -22793,7 +22493,7 @@ } }, { - "id": 2681, + "id": 2582, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -22821,7 +22521,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1419, + "line": 1410, "character": 4 } ], @@ -22835,7 +22535,7 @@ } }, { - "id": 2686, + "id": 2587, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -22863,7 +22563,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1505, + "line": 1496, "character": 4 } ], @@ -22877,7 +22577,7 @@ } }, { - "id": 2672, + "id": 2573, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -22905,7 +22605,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1333, + "line": 1324, "character": 4 } ], @@ -22919,7 +22619,7 @@ } }, { - "id": 2608, + "id": 2513, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -22955,7 +22655,7 @@ } }, { - "id": 2620, + "id": 2525, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -22993,7 +22693,7 @@ } }, { - "id": 2652, + "id": 2556, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -23031,7 +22731,7 @@ } }, { - "id": 2668, + "id": 2569, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -23055,7 +22755,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1276, + "line": 1267, "character": 4 } ], @@ -23069,7 +22769,7 @@ } }, { - "id": 2669, + "id": 2570, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -23093,7 +22793,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1286, + "line": 1277, "character": 4 } ], @@ -23107,7 +22807,7 @@ } }, { - "id": 2654, + "id": 2558, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -23144,7 +22844,7 @@ } }, { - "id": 2635, + "id": 2539, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -23174,7 +22874,7 @@ ], "type": { "type": "reference", - "id": 2699, + "id": 2598, "name": "FrameParams" }, "inheritedFrom": { @@ -23183,7 +22883,7 @@ } }, { - "id": 2621, + "id": 2526, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -23217,7 +22917,7 @@ } }, { - "id": 2640, + "id": 2544, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -23253,7 +22953,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -23263,7 +22963,7 @@ } }, { - "id": 2676, + "id": 2577, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -23287,7 +22987,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1201, + "line": 1192, "character": 4 } ], @@ -23295,7 +22995,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2705, + "id": 2604, "name": "HomeLeftNavItem" } }, @@ -23305,7 +23005,7 @@ } }, { - "id": 2674, + "id": 2575, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -23329,7 +23029,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1156, + "line": 1147, "character": 4 } ], @@ -23337,7 +23037,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2716, + "id": 2615, "name": "HomepageModule" } }, @@ -23347,7 +23047,7 @@ } }, { - "id": 2673, + "id": 2574, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -23371,7 +23071,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1134, + "line": 1125, "character": 4 } ], @@ -23379,7 +23079,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2993, + "id": 2890, "name": "ListPageColumns" } }, @@ -23389,7 +23089,7 @@ } }, { - "id": 2612, + "id": 2517, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -23427,7 +23127,7 @@ } }, { - "id": 2609, + "id": 2514, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -23465,7 +23165,7 @@ } }, { - "id": 2606, + "id": 2511, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -23503,7 +23203,7 @@ } }, { - "id": 2684, + "id": 2585, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -23531,7 +23231,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1472, + "line": 1463, "character": 4 } ], @@ -23545,7 +23245,7 @@ } }, { - "id": 2677, + "id": 2578, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -23573,7 +23273,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1355, + "line": 1346, "character": 4 } ], @@ -23587,7 +23287,7 @@ } }, { - "id": 2611, + "id": 2516, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -23625,7 +23325,7 @@ } }, { - "id": 2610, + "id": 2515, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -23663,7 +23363,7 @@ } }, { - "id": 2618, + "id": 2523, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -23700,7 +23400,7 @@ } }, { - "id": 2613, + "id": 2518, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -23738,7 +23438,7 @@ } }, { - "id": 2617, + "id": 2522, "name": "hideTagFilterChips", "kind": 1024, "kindString": "Property", @@ -23772,7 +23472,7 @@ } }, { - "id": 2626, + "id": 2532, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -23798,12 +23498,12 @@ ], "type": { "type": "reference", - "id": 2950, + "id": 2848, "name": "HomePageSearchBarMode" } }, { - "id": 2648, + "id": 2552, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -23841,84 +23541,7 @@ } }, { - "id": 2664, - "name": "interceptTimeout", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" - }, - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6440, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "name": "AllEmbedViewConfig.interceptTimeout" - } - }, - { - "id": 2663, - "name": "interceptUrls", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" - }, - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6423, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "AllEmbedViewConfig.interceptUrls" - } - }, - { - "id": 2689, + "id": 2590, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -23942,7 +23565,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1555, + "line": 1545, "character": 4 } ], @@ -23956,7 +23579,7 @@ } }, { - "id": 2691, + "id": 2592, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -23980,7 +23603,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1586, + "line": 1576, "character": 4 } ], @@ -23994,7 +23617,7 @@ } }, { - "id": 2690, + "id": 2591, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -24018,7 +23641,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1570, + "line": 1560, "character": 4 } ], @@ -24032,7 +23655,7 @@ } }, { - "id": 2682, + "id": 2583, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -24060,7 +23683,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1436, + "line": 1427, "character": 4 } ], @@ -24074,7 +23697,7 @@ } }, { - "id": 2680, + "id": 2581, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -24098,7 +23721,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1402, + "line": 1393, "character": 4 } ], @@ -24112,49 +23735,7 @@ } }, { - "id": 2693, - "name": "isLiveboardMasterpiecesEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Enable or disable Liveboard styling and grouping", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.45.0 | Thoughtspot: 26.2.0.cl" - }, - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\n// Replace with embed component name. For example, AppEmbed or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n isLiveboardMasterpiecesEnabled: true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1618, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "AllEmbedViewConfig.isLiveboardMasterpiecesEnabled" - } - }, - { - "id": 2628, + "id": 2534, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -24188,7 +23769,7 @@ } }, { - "id": 2662, + "id": 2531, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -24207,8 +23788,8 @@ }, "sources": [ { - "fileName": "types.ts", - "line": 6407, + "fileName": "embed/app.ts", + "line": 519, "character": 4 } ], @@ -24222,7 +23803,7 @@ } }, { - "id": 2629, + "id": 2535, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -24256,7 +23837,7 @@ } }, { - "id": 2627, + "id": 2533, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -24294,7 +23875,7 @@ } }, { - "id": 2630, + "id": 2536, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -24331,7 +23912,7 @@ } }, { - "id": 2631, + "id": 2537, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -24365,7 +23946,7 @@ } }, { - "id": 2657, + "id": 2561, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -24403,7 +23984,7 @@ } }, { - "id": 2688, + "id": 2589, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -24427,7 +24008,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1537, + "line": 1527, "character": 4 } ], @@ -24441,7 +24022,7 @@ } }, { - "id": 2642, + "id": 2546, "name": "locale", "kind": 1024, "kindString": "Property", @@ -24479,44 +24060,7 @@ } }, { - "id": 2633, - "name": "minimumHeight", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This is the minimum height (in pixels) for a full-height App.\nSetting this height helps resolve issues with empty Apps and\nother screens navigable from an App.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.44.2 | ThoughtSpot: 26.0.2.cl" - }, - { - "tag": "default", - "text": "500" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed', {\n ... // other app view config\n fullHeight: true,\n minimumHeight: 600,\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 645, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 2622, + "id": 2527, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -24554,7 +24098,7 @@ } }, { - "id": 2656, + "id": 2560, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -24592,7 +24136,7 @@ } }, { - "id": 2615, + "id": 2520, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -24622,12 +24166,12 @@ ], "type": { "type": "reference", - "id": 1958, + "id": 1885, "name": "Page" } }, { - "id": 2614, + "id": 2519, "name": "path", "kind": 1024, "kindString": "Property", @@ -24661,7 +24205,7 @@ } }, { - "id": 2650, + "id": 2554, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -24699,7 +24243,7 @@ } }, { - "id": 2658, + "id": 2562, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -24737,7 +24281,7 @@ } }, { - "id": 2675, + "id": 2576, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -24761,7 +24305,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1178, + "line": 1169, "character": 4 } ], @@ -24769,7 +24313,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2716, + "id": 2615, "name": "HomepageModule" } }, @@ -24779,7 +24323,7 @@ } }, { - "id": 2665, + "id": 2566, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -24803,7 +24347,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1229, + "line": 1220, "character": 4 } ], @@ -24811,7 +24355,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1979, + "id": 1906, "name": "RuntimeFilter" } }, @@ -24821,7 +24365,7 @@ } }, { - "id": 2666, + "id": 2567, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -24845,7 +24389,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1250, + "line": 1241, "character": 4 } ], @@ -24853,7 +24397,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2924, + "id": 2822, "name": "RuntimeParameter" } }, @@ -24863,7 +24407,7 @@ } }, { - "id": 2660, + "id": 2564, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -24900,7 +24444,7 @@ } }, { - "id": 2679, + "id": 2580, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -24928,7 +24472,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1387, + "line": 1378, "character": 4 } ], @@ -24942,7 +24486,7 @@ } }, { - "id": 2685, + "id": 2586, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -24970,7 +24514,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1489, + "line": 1480, "character": 4 } ], @@ -24984,7 +24528,7 @@ } }, { - "id": 2678, + "id": 2579, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -25012,7 +24556,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1371, + "line": 1362, "character": 4 } ], @@ -25026,7 +24570,7 @@ } }, { - "id": 2683, + "id": 2584, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -25054,7 +24598,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1453, + "line": 1444, "character": 4 } ], @@ -25068,49 +24612,7 @@ } }, { - "id": 2692, - "name": "showMaskedFilterChip", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Show or hide masked filter chips", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.45.0 | Thoughtspot: 26.2.0.cl" - }, - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\n// Replace with embed component name. For example, AppEmbed or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n showMaskedFilterChip: true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1602, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "AllEmbedViewConfig.showMaskedFilterChip" - } - }, - { - "id": 2605, + "id": 2510, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -25148,7 +24650,7 @@ } }, { - "id": 2616, + "id": 2521, "name": "tag", "kind": 1024, "kindString": "Property", @@ -25182,45 +24684,7 @@ } }, { - "id": 2632, - "name": "updatedSpotterChatPrompt", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "updatedSpotterChatPrompt : Controls the updated spotter chat prompt.", - "text": "Supported embed types: `AppEmbed`", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... //other embed view config\n updatedSpotterChatPrompt : true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 628, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2641, + "id": 2545, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -25256,7 +24720,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -25271,85 +24735,79 @@ "title": "Properties", "kind": 1024, "children": [ - 2643, - 2670, - 2624, - 2667, - 2687, - 2661, - 2647, - 2625, - 2671, - 2607, - 2655, - 2639, - 2638, - 2623, - 2651, - 2681, - 2686, - 2672, - 2608, - 2620, - 2652, - 2668, - 2669, - 2654, - 2635, - 2621, - 2640, - 2676, - 2674, - 2673, - 2612, - 2609, - 2606, - 2684, - 2677, - 2611, - 2610, - 2618, - 2613, - 2617, - 2626, - 2648, - 2664, - 2663, - 2689, - 2691, - 2690, - 2682, - 2680, - 2693, - 2628, - 2662, - 2629, - 2627, - 2630, - 2631, - 2657, - 2688, - 2642, - 2633, - 2622, - 2656, - 2615, - 2614, - 2650, - 2658, - 2675, - 2665, - 2666, - 2660, - 2679, - 2685, - 2678, - 2683, - 2692, - 2605, - 2616, - 2632, - 2641 + 2547, + 2571, + 2529, + 2568, + 2588, + 2565, + 2551, + 2530, + 2572, + 2512, + 2559, + 2543, + 2542, + 2528, + 2555, + 2582, + 2587, + 2573, + 2513, + 2525, + 2556, + 2569, + 2570, + 2558, + 2539, + 2526, + 2544, + 2577, + 2575, + 2574, + 2517, + 2514, + 2511, + 2585, + 2578, + 2516, + 2515, + 2523, + 2518, + 2522, + 2532, + 2552, + 2590, + 2592, + 2591, + 2583, + 2581, + 2534, + 2531, + 2535, + 2533, + 2536, + 2537, + 2561, + 2589, + 2546, + 2527, + 2560, + 2520, + 2519, + 2554, + 2562, + 2576, + 2566, + 2567, + 2564, + 2580, + 2586, + 2579, + 2584, + 2510, + 2521, + 2545 ] } ], @@ -25368,7 +24826,7 @@ ] }, { - "id": 1822, + "id": 1749, "name": "AuthEventEmitter", "kind": 256, "kindString": "Interface", @@ -25384,14 +24842,14 @@ }, "children": [ { - "id": 1859, + "id": 1786, "name": "emit", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1860, + "id": 1787, "name": "emit", "kind": 4096, "kindString": "Call signature", @@ -25401,19 +24859,19 @@ }, "parameters": [ { - "id": 1861, + "id": 1788, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1821, + "id": 1748, "name": "TRIGGER_SSO_POPUP" } }, { - "id": 1862, + "id": 1789, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -25437,14 +24895,14 @@ ] }, { - "id": 1863, + "id": 1790, "name": "off", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1864, + "id": 1791, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -25454,7 +24912,7 @@ }, "parameters": [ { - "id": 1865, + "id": 1792, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25462,12 +24920,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1812, + "id": 1739, "name": "AuthStatus" } }, { - "id": 1866, + "id": 1793, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25476,21 +24934,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1867, + "id": 1794, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1868, + "id": 1795, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1869, + "id": 1796, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -25516,7 +24974,7 @@ } }, { - "id": 1870, + "id": 1797, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -25528,7 +24986,7 @@ } }, { - "id": 1871, + "id": 1798, "name": "once", "kind": 32768, "kindString": "Parameter", @@ -25544,21 +25002,21 @@ ], "type": { "type": "reference", - "id": 1822, + "id": 1749, "name": "AuthEventEmitter" } } ] }, { - "id": 1823, + "id": 1750, "name": "on", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1824, + "id": 1751, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -25568,7 +25026,7 @@ }, "parameters": [ { - "id": 1825, + "id": 1752, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25576,12 +25034,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1813, + "id": 1740, "name": "FAILURE" } }, { - "id": 1826, + "id": 1753, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25592,28 +25050,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1827, + "id": 1754, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1828, + "id": 1755, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1829, + "id": 1756, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1805, + "id": 1732, "name": "AuthFailureType" } } @@ -25630,12 +25088,12 @@ ], "type": { "type": "reference", - "id": 1822, + "id": 1749, "name": "AuthEventEmitter" } }, { - "id": 1830, + "id": 1757, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -25645,7 +25103,7 @@ }, "parameters": [ { - "id": 1831, + "id": 1758, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25656,29 +25114,29 @@ "types": [ { "type": "reference", - "id": 1814, + "id": 1741, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1817, + "id": 1744, "name": "LOGOUT" }, { "type": "reference", - "id": 1818, + "id": 1745, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1819, + "id": 1746, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1832, + "id": 1759, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25689,14 +25147,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1833, + "id": 1760, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1834, + "id": 1761, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -25713,31 +25171,31 @@ ], "type": { "type": "reference", - "id": 1822, + "id": 1749, "name": "AuthEventEmitter" } }, { - "id": 1835, + "id": 1762, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1836, + "id": 1763, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1816, + "id": 1743, "name": "SUCCESS" } }, { - "id": 1837, + "id": 1764, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25745,21 +25203,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1838, + "id": 1765, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1839, + "id": 1766, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1840, + "id": 1767, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -25782,40 +25240,40 @@ ], "type": { "type": "reference", - "id": 1822, + "id": 1749, "name": "AuthEventEmitter" } } ] }, { - "id": 1841, + "id": 1768, "name": "once", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1842, + "id": 1769, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1843, + "id": 1770, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1813, + "id": 1740, "name": "FAILURE" } }, { - "id": 1844, + "id": 1771, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25823,28 +25281,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1845, + "id": 1772, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1846, + "id": 1773, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1847, + "id": 1774, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1805, + "id": 1732, "name": "AuthFailureType" } } @@ -25861,19 +25319,19 @@ ], "type": { "type": "reference", - "id": 1822, + "id": 1749, "name": "AuthEventEmitter" } }, { - "id": 1848, + "id": 1775, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1849, + "id": 1776, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25883,29 +25341,29 @@ "types": [ { "type": "reference", - "id": 1814, + "id": 1741, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1817, + "id": 1744, "name": "LOGOUT" }, { "type": "reference", - "id": 1818, + "id": 1745, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1819, + "id": 1746, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1850, + "id": 1777, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25913,14 +25371,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1851, + "id": 1778, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1852, + "id": 1779, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -25937,31 +25395,31 @@ ], "type": { "type": "reference", - "id": 1822, + "id": 1749, "name": "AuthEventEmitter" } }, { - "id": 1853, + "id": 1780, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1854, + "id": 1781, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1816, + "id": 1743, "name": "SUCCESS" } }, { - "id": 1855, + "id": 1782, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25969,21 +25427,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1856, + "id": 1783, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1857, + "id": 1784, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1858, + "id": 1785, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -26006,21 +25464,21 @@ ], "type": { "type": "reference", - "id": 1822, + "id": 1749, "name": "AuthEventEmitter" } } ] }, { - "id": 1872, + "id": 1799, "name": "removeAllListeners", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1873, + "id": 1800, "name": "removeAllListeners", "kind": 4096, "kindString": "Call signature", @@ -26030,7 +25488,7 @@ }, "parameters": [ { - "id": 1874, + "id": 1801, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -26040,14 +25498,14 @@ }, "type": { "type": "reference", - "id": 1812, + "id": 1739, "name": "AuthStatus" } } ], "type": { "type": "reference", - "id": 1822, + "id": 1749, "name": "AuthEventEmitter" } } @@ -26059,11 +25517,11 @@ "title": "Methods", "kind": 2048, "children": [ - 1859, - 1863, - 1823, - 1841, - 1872 + 1786, + 1790, + 1750, + 1768, + 1799 ] } ], @@ -26076,7 +25534,7 @@ ] }, { - "id": 1308, + "id": 1260, "name": "BodylessConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -26096,7 +25554,7 @@ }, "children": [ { - "id": 1319, + "id": 1271, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -26127,20 +25585,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1320, + "id": 1272, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1321, + "id": 1273, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1322, + "id": 1274, "name": "key", "kind": 32768, "flags": {}, @@ -26172,12 +25630,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1287, + "id": 1242, "name": "SpotterAgentEmbedViewConfig.additionalFlags" } }, { - "id": 1336, + "id": 1288, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -26214,12 +25672,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1304, + "id": 1259, "name": "SpotterAgentEmbedViewConfig.customActions" } }, { - "id": 1323, + "id": 1275, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -26248,17 +25706,17 @@ ], "type": { "type": "reference", - "id": 2740, + "id": 2639, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1291, + "id": 1246, "name": "SpotterAgentEmbedViewConfig.customizations" } }, { - "id": 1331, + "id": 1283, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -26292,12 +25750,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1299, + "id": 1254, "name": "SpotterAgentEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1315, + "id": 1267, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -26331,12 +25789,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1283, + "id": 1238, "name": "SpotterAgentEmbedViewConfig.disabledActionReason" } }, { - "id": 1314, + "id": 1266, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -26368,18 +25826,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1282, + "id": 1237, "name": "SpotterAgentEmbedViewConfig.disabledActions" } }, { - "id": 1327, + "id": 1279, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -26416,12 +25874,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1295, + "id": 1250, "name": "SpotterAgentEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1328, + "id": 1280, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -26455,12 +25913,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1296, + "id": 1251, "name": "SpotterAgentEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1330, + "id": 1282, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -26493,12 +25951,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1298, + "id": 1253, "name": "SpotterAgentEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1311, + "id": 1263, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -26528,17 +25986,17 @@ ], "type": { "type": "reference", - "id": 2699, + "id": 2598, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1279, + "id": 1234, "name": "SpotterAgentEmbedViewConfig.frameParams" } }, { - "id": 1316, + "id": 1268, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -26574,18 +26032,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1284, + "id": 1239, "name": "SpotterAgentEmbedViewConfig.hiddenActions" } }, { - "id": 1324, + "id": 1276, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -26619,126 +26077,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1292, + "id": 1247, "name": "SpotterAgentEmbedViewConfig.insertAsSibling" } }, { - "id": 1339, - "name": "interceptTimeout", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" - }, - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6440, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "id": 1307, - "name": "SpotterAgentEmbedViewConfig.interceptTimeout" - } - }, - { - "id": 1338, - "name": "interceptUrls", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" - }, - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6423, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "id": 1306, - "name": "SpotterAgentEmbedViewConfig.interceptUrls" - } - }, - { - "id": 1337, - "name": "isOnBeforeGetVizDataInterceptEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", - "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", - "tags": [ - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6407, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1305, - "name": "SpotterAgentEmbedViewConfig.isOnBeforeGetVizDataInterceptEnabled" - } - }, - { - "id": 1333, + "id": 1285, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -26772,12 +26116,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1301, + "id": 1256, "name": "SpotterAgentEmbedViewConfig.linkOverride" } }, { - "id": 1318, + "id": 1270, "name": "locale", "kind": 1024, "kindString": "Property", @@ -26811,12 +26155,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1286, + "id": 1241, "name": "SpotterAgentEmbedViewConfig.locale" } }, { - "id": 1332, + "id": 1284, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -26850,12 +26194,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1300, + "id": 1255, "name": "SpotterAgentEmbedViewConfig.overrideOrgId" } }, { - "id": 1326, + "id": 1278, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -26889,12 +26233,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1294, + "id": 1249, "name": "SpotterAgentEmbedViewConfig.preRenderId" } }, { - "id": 1335, + "id": 1287, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -26927,12 +26271,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1303, + "id": 1258, "name": "SpotterAgentEmbedViewConfig.showAlerts" } }, { - "id": 1317, + "id": 1269, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -26968,18 +26312,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1285, + "id": 1240, "name": "SpotterAgentEmbedViewConfig.visibleActions" } }, { - "id": 1309, + "id": 1261, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -27000,7 +26344,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1277, + "id": 1232, "name": "SpotterAgentEmbedViewConfig.worksheetId" } } @@ -27010,28 +26354,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1319, - 1336, - 1323, - 1331, - 1315, - 1314, - 1327, - 1328, - 1330, - 1311, - 1316, - 1324, - 1339, - 1338, - 1337, - 1333, - 1318, - 1332, - 1326, - 1335, - 1317, - 1309 + 1271, + 1288, + 1275, + 1283, + 1267, + 1266, + 1279, + 1280, + 1282, + 1263, + 1268, + 1276, + 1285, + 1270, + 1284, + 1278, + 1287, + 1269, + 1261 ] } ], @@ -27045,13 +26386,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1276, + "id": 1231, "name": "SpotterAgentEmbedViewConfig" } ] }, { - "id": 1588, + "id": 1526, "name": "ConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -27071,7 +26412,7 @@ }, "children": [ { - "id": 1611, + "id": 1548, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -27102,20 +26443,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1612, + "id": 1549, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1613, + "id": 1550, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1614, + "id": 1551, "name": "key", "kind": 32768, "flags": {}, @@ -27152,7 +26493,7 @@ } }, { - "id": 1628, + "id": 1565, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -27194,7 +26535,7 @@ } }, { - "id": 1615, + "id": 1552, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -27223,7 +26564,7 @@ ], "type": { "type": "reference", - "id": 2740, + "id": 2639, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -27233,7 +26574,7 @@ } }, { - "id": 1593, + "id": 1531, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -27271,12 +26612,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1549, + "id": 1491, "name": "SpotterEmbedViewConfig.dataPanelV2" } }, { - "id": 1623, + "id": 1560, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -27315,7 +26656,7 @@ } }, { - "id": 1591, + "id": 1529, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -27349,12 +26690,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1547, + "id": 1489, "name": "SpotterEmbedViewConfig.disableSourceSelection" } }, { - "id": 1607, + "id": 1544, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -27393,7 +26734,7 @@ } }, { - "id": 1606, + "id": 1543, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -27425,7 +26766,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -27436,7 +26777,7 @@ } }, { - "id": 1619, + "id": 1556, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -27478,7 +26819,7 @@ } }, { - "id": 1600, + "id": 1538, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -27516,12 +26857,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1556, + "id": 1498, "name": "SpotterEmbedViewConfig.enablePastConversationsSidebar" } }, { - "id": 1620, + "id": 1557, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -27560,7 +26901,7 @@ } }, { - "id": 1597, + "id": 1535, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -27594,12 +26935,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1553, + "id": 1495, "name": "SpotterEmbedViewConfig.excludeRuntimeFiltersfromURL" } }, { - "id": 1599, + "id": 1537, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -27633,12 +26974,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1555, + "id": 1497, "name": "SpotterEmbedViewConfig.excludeRuntimeParametersfromURL" } }, { - "id": 1622, + "id": 1559, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -27676,7 +27017,7 @@ } }, { - "id": 1603, + "id": 1540, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -27706,7 +27047,7 @@ ], "type": { "type": "reference", - "id": 2699, + "id": 2598, "name": "FrameParams" }, "inheritedFrom": { @@ -27716,7 +27057,7 @@ } }, { - "id": 1608, + "id": 1545, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -27752,7 +27093,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -27763,7 +27104,7 @@ } }, { - "id": 1595, + "id": 1533, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -27797,12 +27138,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1551, + "id": 1493, "name": "SpotterEmbedViewConfig.hideSampleQuestions" } }, { - "id": 1592, + "id": 1530, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -27836,12 +27177,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1548, + "id": 1490, "name": "SpotterEmbedViewConfig.hideSourceSelection" } }, { - "id": 1616, + "id": 1553, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -27880,121 +27221,7 @@ } }, { - "id": 1631, - "name": "interceptTimeout", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" - }, - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6440, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "id": 1587, - "name": "SpotterEmbedViewConfig.interceptTimeout" - } - }, - { - "id": 1630, - "name": "interceptUrls", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" - }, - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6423, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "id": 1586, - "name": "SpotterEmbedViewConfig.interceptUrls" - } - }, - { - "id": 1629, - "name": "isOnBeforeGetVizDataInterceptEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", - "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", - "tags": [ - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6407, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1585, - "name": "SpotterEmbedViewConfig.isOnBeforeGetVizDataInterceptEnabled" - } - }, - { - "id": 1625, + "id": 1562, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -28033,7 +27260,7 @@ } }, { - "id": 1610, + "id": 1547, "name": "locale", "kind": 1024, "kindString": "Property", @@ -28072,7 +27299,7 @@ } }, { - "id": 1624, + "id": 1561, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -28111,7 +27338,7 @@ } }, { - "id": 1618, + "id": 1555, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -28150,7 +27377,7 @@ } }, { - "id": 1596, + "id": 1534, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -28182,18 +27409,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 1979, + "id": 1906, "name": "RuntimeFilter" } }, "inheritedFrom": { "type": "reference", - "id": 1552, + "id": 1494, "name": "SpotterEmbedViewConfig.runtimeFilters" } }, { - "id": 1598, + "id": 1536, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -28225,18 +27452,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2924, + "id": 2822, "name": "RuntimeParameter" } }, "inheritedFrom": { "type": "reference", - "id": 1554, + "id": 1496, "name": "SpotterEmbedViewConfig.runtimeParameters" } }, { - "id": 1590, + "id": 1528, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -28259,12 +27486,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1546, + "id": 1488, "name": "SpotterEmbedViewConfig.searchOptions" } }, { - "id": 1627, + "id": 1564, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -28302,7 +27529,7 @@ } }, { - "id": 1594, + "id": 1532, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -28336,55 +27563,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1550, + "id": 1492, "name": "SpotterEmbedViewConfig.showSpotterLimitations" } }, { - "id": 1601, - "name": "updatedSpotterChatPrompt", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "updatedSpotterChatPrompt : Controls the updated spotter chat prompt.", - "text": "Supported embed types: `SpotterEmbed`", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... //other embed view config\n updatedSpotterChatPrompt : true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 198, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1557, - "name": "SpotterEmbedViewConfig.updatedSpotterChatPrompt" - } - }, - { - "id": 1609, + "id": 1546, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -28420,7 +27604,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -28431,7 +27615,7 @@ } }, { - "id": 1589, + "id": 1527, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -28452,7 +27636,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1545, + "id": 1487, "name": "SpotterEmbedViewConfig.worksheetId" } } @@ -28462,40 +27646,36 @@ "title": "Properties", "kind": 1024, "children": [ - 1611, - 1628, - 1615, - 1593, - 1623, - 1591, - 1607, - 1606, - 1619, - 1600, - 1620, - 1597, - 1599, - 1622, - 1603, - 1608, - 1595, - 1592, - 1616, - 1631, - 1630, - 1629, - 1625, - 1610, - 1624, - 1618, - 1596, - 1598, - 1590, - 1627, - 1594, - 1601, - 1609, - 1589 + 1548, + 1565, + 1552, + 1531, + 1560, + 1529, + 1544, + 1543, + 1556, + 1538, + 1557, + 1535, + 1537, + 1559, + 1540, + 1545, + 1533, + 1530, + 1553, + 1562, + 1547, + 1561, + 1555, + 1534, + 1536, + 1528, + 1564, + 1532, + 1546, + 1527 ] } ], @@ -28509,13 +27689,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1544, + "id": 1486, "name": "SpotterEmbedViewConfig" } ] }, { - "id": 2965, + "id": 2863, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -28530,7 +27710,7 @@ }, "children": [ { - "id": 2966, + "id": 2864, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -28540,21 +27720,21 @@ "sources": [ { "fileName": "types.ts", - "line": 6061, + "line": 5878, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2967, + "id": 2865, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2968, + "id": 2866, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -28562,18 +27742,18 @@ "sources": [ { "fileName": "types.ts", - "line": 6062, + "line": 5879, "character": 8 } ], "type": { "type": "reference", - "id": 2962, + "id": 2860, "name": "VizPoint" } }, { - "id": 2969, + "id": 2867, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -28581,7 +27761,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6063, + "line": 5880, "character": 8 } ], @@ -28589,7 +27769,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2962, + "id": 2860, "name": "VizPoint" } } @@ -28600,8 +27780,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2968, - 2969 + 2866, + 2867 ] } ] @@ -28609,7 +27789,7 @@ } }, { - "id": 2970, + "id": 2868, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -28617,21 +27797,21 @@ "sources": [ { "fileName": "types.ts", - "line": 6065, + "line": 5882, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2971, + "id": 2869, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2979, + "id": 2877, "name": "columns", "kind": 1024, "kindString": "Property", @@ -28639,7 +27819,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6073, + "line": 5890, "character": 8 } ], @@ -28652,7 +27832,7 @@ } }, { - "id": 2980, + "id": 2878, "name": "data", "kind": 1024, "kindString": "Property", @@ -28660,7 +27840,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6074, + "line": 5891, "character": 8 } ], @@ -28673,7 +27853,7 @@ } }, { - "id": 2973, + "id": 2871, "name": "id", "kind": 1024, "kindString": "Property", @@ -28681,7 +27861,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6067, + "line": 5884, "character": 8 } ], @@ -28691,7 +27871,7 @@ } }, { - "id": 2972, + "id": 2870, "name": "name", "kind": 1024, "kindString": "Property", @@ -28699,7 +27879,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6066, + "line": 5883, "character": 8 } ], @@ -28709,7 +27889,7 @@ } }, { - "id": 2974, + "id": 2872, "name": "sources", "kind": 1024, "kindString": "Property", @@ -28717,21 +27897,21 @@ "sources": [ { "fileName": "types.ts", - "line": 6068, + "line": 5885, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2975, + "id": 2873, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2976, + "id": 2874, "name": "header", "kind": 1024, "kindString": "Property", @@ -28739,21 +27919,21 @@ "sources": [ { "fileName": "types.ts", - "line": 6069, + "line": 5886, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2977, + "id": 2875, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2978, + "id": 2876, "name": "guid", "kind": 1024, "kindString": "Property", @@ -28761,7 +27941,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6070, + "line": 5887, "character": 16 } ], @@ -28776,7 +27956,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2978 + 2876 ] } ] @@ -28789,7 +27969,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2976 + 2874 ] } ] @@ -28802,23 +27982,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2979, - 2980, - 2973, - 2972, - 2974 + 2877, + 2878, + 2871, + 2870, + 2872 ] } ], "indexSignature": { - "id": 2981, + "id": 2879, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2982, + "id": 2880, "name": "key", "kind": 32768, "flags": {}, @@ -28837,7 +28017,7 @@ } }, { - "id": 2983, + "id": 2881, "name": "session", "kind": 1024, "kindString": "Property", @@ -28845,18 +28025,18 @@ "sources": [ { "fileName": "types.ts", - "line": 6077, + "line": 5894, "character": 4 } ], "type": { "type": "reference", - "id": 1948, + "id": 1875, "name": "SessionInterface" } }, { - "id": 2984, + "id": 2882, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -28866,7 +28046,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6078, + "line": 5895, "character": 4 } ], @@ -28881,23 +28061,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2966, - 2970, - 2983, - 2984 + 2864, + 2868, + 2881, + 2882 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6060, + "line": 5877, "character": 17 } ] }, { - "id": 2762, + "id": 2661, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -28907,7 +28087,7 @@ }, "children": [ { - "id": 2816, + "id": 2715, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -28930,7 +28110,7 @@ } }, { - "id": 2815, + "id": 2714, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -28953,7 +28133,7 @@ } }, { - "id": 2785, + "id": 2684, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -28976,7 +28156,7 @@ } }, { - "id": 2786, + "id": 2685, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -28999,7 +28179,7 @@ } }, { - "id": 2788, + "id": 2687, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -29022,7 +28202,7 @@ } }, { - "id": 2787, + "id": 2686, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -29045,7 +28225,7 @@ } }, { - "id": 2767, + "id": 2666, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -29068,7 +28248,7 @@ } }, { - "id": 2828, + "id": 2727, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -29091,7 +28271,7 @@ } }, { - "id": 2829, + "id": 2728, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -29114,7 +28294,7 @@ } }, { - "id": 2826, + "id": 2725, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -29137,7 +28317,7 @@ } }, { - "id": 2827, + "id": 2726, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -29160,7 +28340,7 @@ } }, { - "id": 2790, + "id": 2689, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -29183,7 +28363,7 @@ } }, { - "id": 2795, + "id": 2694, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -29206,7 +28386,7 @@ } }, { - "id": 2792, + "id": 2691, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -29229,7 +28409,7 @@ } }, { - "id": 2794, + "id": 2693, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -29252,7 +28432,7 @@ } }, { - "id": 2793, + "id": 2692, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -29275,7 +28455,7 @@ } }, { - "id": 2791, + "id": 2690, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -29298,7 +28478,7 @@ } }, { - "id": 2800, + "id": 2699, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -29321,7 +28501,7 @@ } }, { - "id": 2797, + "id": 2696, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -29344,7 +28524,7 @@ } }, { - "id": 2799, + "id": 2698, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -29367,7 +28547,7 @@ } }, { - "id": 2798, + "id": 2697, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -29390,7 +28570,7 @@ } }, { - "id": 2796, + "id": 2695, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -29413,7 +28593,7 @@ } }, { - "id": 2804, + "id": 2703, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -29436,7 +28616,7 @@ } }, { - "id": 2803, + "id": 2702, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -29459,7 +28639,7 @@ } }, { - "id": 2802, + "id": 2701, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -29482,7 +28662,7 @@ } }, { - "id": 2801, + "id": 2700, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -29505,7 +28685,7 @@ } }, { - "id": 2789, + "id": 2688, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -29528,7 +28708,7 @@ } }, { - "id": 2922, + "id": 2821, "name": "--ts-var-cca-modal-summary-header-background", "kind": 1024, "kindString": "Property", @@ -29551,7 +28731,7 @@ } }, { - "id": 2917, + "id": 2816, "name": "--ts-var-change-analysis-insights-background", "kind": 1024, "kindString": "Property", @@ -29574,7 +28754,7 @@ } }, { - "id": 2912, + "id": 2811, "name": "--ts-var-chart-heatmap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -29597,7 +28777,7 @@ } }, { - "id": 2911, + "id": 2810, "name": "--ts-var-chart-heatmap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -29620,7 +28800,7 @@ } }, { - "id": 2914, + "id": 2813, "name": "--ts-var-chart-treemap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -29643,7 +28823,7 @@ } }, { - "id": 2913, + "id": 2812, "name": "--ts-var-chart-treemap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -29666,7 +28846,7 @@ } }, { - "id": 2851, + "id": 2750, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -29689,7 +28869,7 @@ } }, { - "id": 2854, + "id": 2753, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -29712,7 +28892,7 @@ } }, { - "id": 2849, + "id": 2748, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -29735,7 +28915,7 @@ } }, { - "id": 2852, + "id": 2751, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -29758,7 +28938,7 @@ } }, { - "id": 2853, + "id": 2752, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -29781,7 +28961,7 @@ } }, { - "id": 2848, + "id": 2747, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -29804,7 +28984,7 @@ } }, { - "id": 2850, + "id": 2749, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -29827,7 +29007,7 @@ } }, { - "id": 2821, + "id": 2720, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -29850,7 +29030,7 @@ } }, { - "id": 2820, + "id": 2719, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -29873,7 +29053,7 @@ } }, { - "id": 2823, + "id": 2722, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -29896,7 +29076,7 @@ } }, { - "id": 2822, + "id": 2721, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -29919,7 +29099,7 @@ } }, { - "id": 2819, + "id": 2718, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -29942,7 +29122,7 @@ } }, { - "id": 2817, + "id": 2716, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -29965,7 +29145,7 @@ } }, { - "id": 2818, + "id": 2717, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -29988,7 +29168,7 @@ } }, { - "id": 2824, + "id": 2723, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -30011,7 +29191,7 @@ } }, { - "id": 2825, + "id": 2724, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -30034,7 +29214,7 @@ } }, { - "id": 2836, + "id": 2735, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -30057,7 +29237,7 @@ } }, { - "id": 2837, + "id": 2736, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -30080,7 +29260,7 @@ } }, { - "id": 2840, + "id": 2739, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -30103,7 +29283,7 @@ } }, { - "id": 2838, + "id": 2737, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -30126,7 +29306,7 @@ } }, { - "id": 2839, + "id": 2738, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -30149,7 +29329,7 @@ } }, { - "id": 2847, + "id": 2746, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -30172,7 +29352,7 @@ } }, { - "id": 2846, + "id": 2745, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -30195,7 +29375,7 @@ } }, { - "id": 2845, + "id": 2744, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -30218,7 +29398,7 @@ } }, { - "id": 2844, + "id": 2743, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -30241,7 +29421,7 @@ } }, { - "id": 2910, + "id": 2809, "name": "--ts-var-kpi-analyze-text-color", "kind": 1024, "kindString": "Property", @@ -30264,7 +29444,7 @@ } }, { - "id": 2909, + "id": 2808, "name": "--ts-var-kpi-comparison-color", "kind": 1024, "kindString": "Property", @@ -30287,7 +29467,7 @@ } }, { - "id": 2908, + "id": 2807, "name": "--ts-var-kpi-hero-color", "kind": 1024, "kindString": "Property", @@ -30310,7 +29490,7 @@ } }, { - "id": 2916, + "id": 2815, "name": "--ts-var-kpi-negative-change-color", "kind": 1024, "kindString": "Property", @@ -30333,7 +29513,7 @@ } }, { - "id": 2915, + "id": 2814, "name": "--ts-var-kpi-positive-change-color", "kind": 1024, "kindString": "Property", @@ -30356,7 +29536,7 @@ } }, { - "id": 2842, + "id": 2741, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -30379,7 +29559,7 @@ } }, { - "id": 2841, + "id": 2740, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -30402,7 +29582,7 @@ } }, { - "id": 2869, + "id": 2768, "name": "--ts-var-liveboard-answer-viz-padding", "kind": 1024, "kindString": "Property", @@ -30425,7 +29605,7 @@ } }, { - "id": 2882, + "id": 2781, "name": "--ts-var-liveboard-chip--active-background", "kind": 1024, "kindString": "Property", @@ -30449,7 +29629,7 @@ } }, { - "id": 2881, + "id": 2780, "name": "--ts-var-liveboard-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -30473,7 +29653,7 @@ } }, { - "id": 2879, + "id": 2778, "name": "--ts-var-liveboard-chip-background", "kind": 1024, "kindString": "Property", @@ -30497,7 +29677,7 @@ } }, { - "id": 2880, + "id": 2779, "name": "--ts-var-liveboard-chip-color", "kind": 1024, "kindString": "Property", @@ -30521,7 +29701,7 @@ } }, { - "id": 2887, + "id": 2786, "name": "--ts-var-liveboard-cross-filter-layout-background", "kind": 1024, "kindString": "Property", @@ -30544,7 +29724,7 @@ } }, { - "id": 2885, + "id": 2784, "name": "--ts-var-liveboard-dual-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -30567,7 +29747,7 @@ } }, { - "id": 2884, + "id": 2783, "name": "--ts-var-liveboard-edit-bar-background", "kind": 1024, "kindString": "Property", @@ -30590,7 +29770,7 @@ } }, { - "id": 2870, + "id": 2769, "name": "--ts-var-liveboard-group-background", "kind": 1024, "kindString": "Property", @@ -30614,7 +29794,7 @@ } }, { - "id": 2871, + "id": 2770, "name": "--ts-var-liveboard-group-border-color", "kind": 1024, "kindString": "Property", @@ -30638,7 +29818,7 @@ } }, { - "id": 2875, + "id": 2774, "name": "--ts-var-liveboard-group-description-font-color", "kind": 1024, "kindString": "Property", @@ -30662,7 +29842,7 @@ } }, { - "id": 2863, + "id": 2762, "name": "--ts-var-liveboard-group-padding", "kind": 1024, "kindString": "Property", @@ -30686,7 +29866,7 @@ } }, { - "id": 2878, + "id": 2777, "name": "--ts-var-liveboard-group-tile-background", "kind": 1024, "kindString": "Property", @@ -30710,7 +29890,7 @@ } }, { - "id": 2877, + "id": 2776, "name": "--ts-var-liveboard-group-tile-description-font-color", "kind": 1024, "kindString": "Property", @@ -30734,7 +29914,7 @@ } }, { - "id": 2868, + "id": 2767, "name": "--ts-var-liveboard-group-tile-padding", "kind": 1024, "kindString": "Property", @@ -30758,7 +29938,7 @@ } }, { - "id": 2876, + "id": 2775, "name": "--ts-var-liveboard-group-tile-title-font-color", "kind": 1024, "kindString": "Property", @@ -30782,7 +29962,7 @@ } }, { - "id": 2866, + "id": 2765, "name": "--ts-var-liveboard-group-tile-title-font-size", "kind": 1024, "kindString": "Property", @@ -30806,7 +29986,7 @@ } }, { - "id": 2867, + "id": 2766, "name": "--ts-var-liveboard-group-tile-title-font-weight", "kind": 1024, "kindString": "Property", @@ -30830,7 +30010,7 @@ } }, { - "id": 2874, + "id": 2773, "name": "--ts-var-liveboard-group-title-font-color", "kind": 1024, "kindString": "Property", @@ -30854,7 +30034,7 @@ } }, { - "id": 2864, + "id": 2763, "name": "--ts-var-liveboard-group-title-font-size", "kind": 1024, "kindString": "Property", @@ -30878,7 +30058,7 @@ } }, { - "id": 2865, + "id": 2764, "name": "--ts-var-liveboard-group-title-font-weight", "kind": 1024, "kindString": "Property", @@ -30902,7 +30082,7 @@ } }, { - "id": 2901, + "id": 2800, "name": "--ts-var-liveboard-header-action-button-active-color", "kind": 1024, "kindString": "Property", @@ -30925,7 +30105,7 @@ } }, { - "id": 2898, + "id": 2797, "name": "--ts-var-liveboard-header-action-button-background", "kind": 1024, "kindString": "Property", @@ -30948,7 +30128,7 @@ } }, { - "id": 2899, + "id": 2798, "name": "--ts-var-liveboard-header-action-button-font-color", "kind": 1024, "kindString": "Property", @@ -30971,7 +30151,7 @@ } }, { - "id": 2900, + "id": 2799, "name": "--ts-var-liveboard-header-action-button-hover-color", "kind": 1024, "kindString": "Property", @@ -30994,7 +30174,7 @@ } }, { - "id": 2856, + "id": 2755, "name": "--ts-var-liveboard-header-background", "kind": 1024, "kindString": "Property", @@ -31017,7 +30197,7 @@ } }, { - "id": 2907, + "id": 2806, "name": "--ts-var-liveboard-header-badge-active-color", "kind": 1024, "kindString": "Property", @@ -31040,7 +30220,7 @@ } }, { - "id": 2902, + "id": 2801, "name": "--ts-var-liveboard-header-badge-background", "kind": 1024, "kindString": "Property", @@ -31063,7 +30243,7 @@ } }, { - "id": 2903, + "id": 2802, "name": "--ts-var-liveboard-header-badge-font-color", "kind": 1024, "kindString": "Property", @@ -31086,7 +30266,7 @@ } }, { - "id": 2906, + "id": 2805, "name": "--ts-var-liveboard-header-badge-hover-color", "kind": 1024, "kindString": "Property", @@ -31109,7 +30289,7 @@ } }, { - "id": 2904, + "id": 2803, "name": "--ts-var-liveboard-header-badge-modified-background", "kind": 1024, "kindString": "Property", @@ -31132,7 +30312,7 @@ } }, { - "id": 2905, + "id": 2804, "name": "--ts-var-liveboard-header-badge-modified-font-color", "kind": 1024, "kindString": "Property", @@ -31155,7 +30335,7 @@ } }, { - "id": 2857, + "id": 2756, "name": "--ts-var-liveboard-header-font-color", "kind": 1024, "kindString": "Property", @@ -31178,7 +30358,7 @@ } }, { - "id": 2855, + "id": 2754, "name": "--ts-var-liveboard-layout-background", "kind": 1024, "kindString": "Property", @@ -31201,7 +30381,7 @@ } }, { - "id": 2873, + "id": 2772, "name": "--ts-var-liveboard-notetitle-body-font-color", "kind": 1024, "kindString": "Property", @@ -31224,7 +30404,7 @@ } }, { - "id": 2872, + "id": 2771, "name": "--ts-var-liveboard-notetitle-heading-font-color", "kind": 1024, "kindString": "Property", @@ -31247,7 +30427,7 @@ } }, { - "id": 2886, + "id": 2785, "name": "--ts-var-liveboard-single-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -31270,7 +30450,7 @@ } }, { - "id": 2888, + "id": 2787, "name": "--ts-var-liveboard-tab-active-border-color", "kind": 1024, "kindString": "Property", @@ -31293,7 +30473,7 @@ } }, { - "id": 2889, + "id": 2788, "name": "--ts-var-liveboard-tab-hover-color", "kind": 1024, "kindString": "Property", @@ -31316,7 +30496,7 @@ } }, { - "id": 2859, + "id": 2758, "name": "--ts-var-liveboard-tile-background", "kind": 1024, "kindString": "Property", @@ -31339,7 +30519,7 @@ } }, { - "id": 2858, + "id": 2757, "name": "--ts-var-liveboard-tile-border-color", "kind": 1024, "kindString": "Property", @@ -31362,7 +30542,7 @@ } }, { - "id": 2860, + "id": 2759, "name": "--ts-var-liveboard-tile-border-radius", "kind": 1024, "kindString": "Property", @@ -31385,7 +30565,7 @@ } }, { - "id": 2861, + "id": 2760, "name": "--ts-var-liveboard-tile-padding", "kind": 1024, "kindString": "Property", @@ -31408,7 +30588,7 @@ } }, { - "id": 2862, + "id": 2761, "name": "--ts-var-liveboard-tile-table-header-background", "kind": 1024, "kindString": "Property", @@ -31431,7 +30611,7 @@ } }, { - "id": 2890, + "id": 2789, "name": "--ts-var-liveboard-tile-title-fontsize", "kind": 1024, "kindString": "Property", @@ -31454,7 +30634,7 @@ } }, { - "id": 2891, + "id": 2790, "name": "--ts-var-liveboard-tile-title-fontweight", "kind": 1024, "kindString": "Property", @@ -31477,7 +30657,7 @@ } }, { - "id": 2834, + "id": 2733, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -31500,7 +30680,7 @@ } }, { - "id": 2831, + "id": 2730, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -31523,7 +30703,7 @@ } }, { - "id": 2830, + "id": 2729, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -31546,7 +30726,7 @@ } }, { - "id": 2832, + "id": 2731, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -31569,7 +30749,7 @@ } }, { - "id": 2835, + "id": 2734, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -31592,7 +30772,7 @@ } }, { - "id": 2833, + "id": 2732, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -31615,7 +30795,7 @@ } }, { - "id": 2768, + "id": 2667, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -31638,7 +30818,7 @@ } }, { - "id": 2769, + "id": 2668, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -31661,7 +30841,7 @@ } }, { - "id": 2896, + "id": 2795, "name": "--ts-var-parameter-chip-active-background", "kind": 1024, "kindString": "Property", @@ -31684,7 +30864,7 @@ } }, { - "id": 2897, + "id": 2796, "name": "--ts-var-parameter-chip-active-text-color", "kind": 1024, "kindString": "Property", @@ -31707,7 +30887,7 @@ } }, { - "id": 2892, + "id": 2791, "name": "--ts-var-parameter-chip-background", "kind": 1024, "kindString": "Property", @@ -31730,7 +30910,7 @@ } }, { - "id": 2894, + "id": 2793, "name": "--ts-var-parameter-chip-hover-background", "kind": 1024, "kindString": "Property", @@ -31753,7 +30933,7 @@ } }, { - "id": 2895, + "id": 2794, "name": "--ts-var-parameter-chip-hover-text-color", "kind": 1024, "kindString": "Property", @@ -31776,7 +30956,7 @@ } }, { - "id": 2893, + "id": 2792, "name": "--ts-var-parameter-chip-text-color", "kind": 1024, "kindString": "Property", @@ -31799,7 +30979,7 @@ } }, { - "id": 2763, + "id": 2662, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -31822,7 +31002,7 @@ } }, { - "id": 2764, + "id": 2663, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -31845,7 +31025,7 @@ } }, { - "id": 2765, + "id": 2664, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -31868,7 +31048,7 @@ } }, { - "id": 2766, + "id": 2665, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -31891,7 +31071,7 @@ } }, { - "id": 2777, + "id": 2676, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -31914,7 +31094,7 @@ } }, { - "id": 2781, + "id": 2680, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -31937,7 +31117,7 @@ } }, { - "id": 2782, + "id": 2681, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -31960,7 +31140,7 @@ } }, { - "id": 2780, + "id": 2679, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -31983,7 +31163,7 @@ } }, { - "id": 2776, + "id": 2675, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -32006,7 +31186,7 @@ } }, { - "id": 2779, + "id": 2678, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -32029,7 +31209,7 @@ } }, { - "id": 2773, + "id": 2672, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -32052,7 +31232,7 @@ } }, { - "id": 2774, + "id": 2673, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -32075,7 +31255,7 @@ } }, { - "id": 2775, + "id": 2674, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -32098,7 +31278,7 @@ } }, { - "id": 2770, + "id": 2669, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -32121,7 +31301,7 @@ } }, { - "id": 2771, + "id": 2670, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -32144,7 +31324,7 @@ } }, { - "id": 2772, + "id": 2671, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -32167,7 +31347,7 @@ } }, { - "id": 2778, + "id": 2677, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -32190,7 +31370,7 @@ } }, { - "id": 2843, + "id": 2742, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -32213,7 +31393,7 @@ } }, { - "id": 2883, + "id": 2782, "name": "--ts-var-side-panel-width", "kind": 1024, "kindString": "Property", @@ -32236,7 +31416,7 @@ } }, { - "id": 2921, + "id": 2820, "name": "--ts-var-spotiq-analyze-crosscorrelation-card-background", "kind": 1024, "kindString": "Property", @@ -32259,7 +31439,7 @@ } }, { - "id": 2918, + "id": 2817, "name": "--ts-var-spotiq-analyze-forecasting-card-background", "kind": 1024, "kindString": "Property", @@ -32282,7 +31462,7 @@ } }, { - "id": 2919, + "id": 2818, "name": "--ts-var-spotiq-analyze-outlier-card-background", "kind": 1024, "kindString": "Property", @@ -32305,7 +31485,7 @@ } }, { - "id": 2920, + "id": 2819, "name": "--ts-var-spotiq-analyze-trend-card-background", "kind": 1024, "kindString": "Property", @@ -32328,30 +31508,7 @@ } }, { - "id": 2923, - "name": "--ts-var-spotter-chat-width", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Width of the Spotter chat window." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 854, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2783, + "id": 2682, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -32374,7 +31531,7 @@ } }, { - "id": 2784, + "id": 2683, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -32397,7 +31554,7 @@ } }, { - "id": 2813, + "id": 2712, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -32420,7 +31577,7 @@ } }, { - "id": 2811, + "id": 2710, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -32443,7 +31600,7 @@ } }, { - "id": 2812, + "id": 2711, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -32466,7 +31623,7 @@ } }, { - "id": 2808, + "id": 2707, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -32489,7 +31646,7 @@ } }, { - "id": 2809, + "id": 2708, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -32512,7 +31669,7 @@ } }, { - "id": 2810, + "id": 2709, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -32535,7 +31692,7 @@ } }, { - "id": 2814, + "id": 2713, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -32558,7 +31715,7 @@ } }, { - "id": 2805, + "id": 2704, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -32581,7 +31738,7 @@ } }, { - "id": 2806, + "id": 2705, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -32604,7 +31761,7 @@ } }, { - "id": 2807, + "id": 2706, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -32632,167 +31789,166 @@ "title": "Properties", "kind": 1024, "children": [ + 2715, + 2714, + 2684, + 2685, + 2687, + 2686, + 2666, + 2727, + 2728, + 2725, + 2726, + 2689, + 2694, + 2691, + 2693, + 2692, + 2690, + 2699, + 2696, + 2698, + 2697, + 2695, + 2703, + 2702, + 2701, + 2700, + 2688, + 2821, 2816, + 2811, + 2810, + 2813, + 2812, + 2750, + 2753, + 2748, + 2751, + 2752, + 2747, + 2749, + 2720, + 2719, + 2722, + 2721, + 2718, + 2716, + 2717, + 2723, + 2724, + 2735, + 2736, + 2739, + 2737, + 2738, + 2746, + 2745, + 2744, + 2743, + 2809, + 2808, + 2807, 2815, - 2785, + 2814, + 2741, + 2740, + 2768, + 2781, + 2780, + 2778, + 2779, 2786, - 2788, - 2787, + 2784, + 2783, + 2769, + 2770, + 2774, + 2762, + 2777, + 2776, 2767, - 2828, - 2829, - 2826, - 2827, - 2790, - 2795, - 2792, - 2794, - 2793, - 2791, + 2775, + 2765, + 2766, + 2773, + 2763, + 2764, 2800, 2797, - 2799, 2798, - 2796, - 2804, - 2803, - 2802, + 2799, + 2755, + 2806, 2801, + 2802, + 2805, + 2803, + 2804, + 2756, + 2754, + 2772, + 2771, + 2785, + 2787, + 2788, + 2758, + 2757, + 2759, + 2760, + 2761, 2789, - 2922, - 2917, - 2912, - 2911, - 2914, - 2913, - 2851, - 2854, - 2849, - 2852, - 2853, - 2848, - 2850, - 2821, + 2790, + 2733, + 2730, + 2729, + 2731, + 2734, + 2732, + 2667, + 2668, + 2795, + 2796, + 2791, + 2793, + 2794, + 2792, + 2662, + 2663, + 2664, + 2665, + 2676, + 2680, + 2681, + 2679, + 2675, + 2678, + 2672, + 2673, + 2674, + 2669, + 2670, + 2671, + 2677, + 2742, + 2782, 2820, - 2823, - 2822, - 2819, 2817, 2818, - 2824, - 2825, - 2836, - 2837, - 2840, - 2838, - 2839, - 2847, - 2846, - 2845, - 2844, - 2910, - 2909, - 2908, - 2916, - 2915, - 2842, - 2841, - 2869, - 2882, - 2881, - 2879, - 2880, - 2887, - 2885, - 2884, - 2870, - 2871, - 2875, - 2863, - 2878, - 2877, - 2868, - 2876, - 2866, - 2867, - 2874, - 2864, - 2865, - 2901, - 2898, - 2899, - 2900, - 2856, - 2907, - 2902, - 2903, - 2906, - 2904, - 2905, - 2857, - 2855, - 2873, - 2872, - 2886, - 2888, - 2889, - 2859, - 2858, - 2860, - 2861, - 2862, - 2890, - 2891, - 2834, - 2831, - 2830, - 2832, - 2835, - 2833, - 2768, - 2769, - 2896, - 2897, - 2892, - 2894, - 2895, - 2893, - 2763, - 2764, - 2765, - 2766, - 2777, - 2781, - 2782, - 2780, - 2776, - 2779, - 2773, - 2774, - 2775, - 2770, - 2771, - 2772, - 2778, - 2843, - 2883, - 2921, - 2918, - 2919, - 2920, - 2923, - 2783, - 2784, - 2813, - 2811, - 2812, - 2808, - 2809, - 2810, - 2814, - 2805, - 2806, - 2807 + 2819, + 2682, + 2683, + 2712, + 2710, + 2711, + 2707, + 2708, + 2709, + 2713, + 2704, + 2705, + 2706 ] } ], @@ -32805,7 +31961,7 @@ ] }, { - "id": 2750, + "id": 2649, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -32815,7 +31971,7 @@ }, "children": [ { - "id": 2752, + "id": 2651, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -32831,12 +31987,12 @@ ], "type": { "type": "reference", - "id": 2753, + "id": 2652, "name": "customCssInterface" } }, { - "id": 2751, + "id": 2650, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -32861,8 +32017,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2752, - 2751 + 2651, + 2650 ] } ], @@ -32875,7 +32031,7 @@ ] }, { - "id": 2740, + "id": 2639, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -32891,7 +32047,7 @@ }, "children": [ { - "id": 2742, + "id": 2641, "name": "content", "kind": 1024, "kindString": "Property", @@ -32908,14 +32064,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2743, + "id": 2642, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2745, + "id": 2644, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -32945,7 +32101,7 @@ } }, { - "id": 2746, + "id": 2645, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -32965,7 +32121,7 @@ } }, { - "id": 2744, + "id": 2643, "name": "strings", "kind": 1024, "kindString": "Property", @@ -33008,21 +32164,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2745, - 2746, - 2744 + 2644, + 2645, + 2643 ] } ], "indexSignature": { - "id": 2747, + "id": 2646, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2748, + "id": 2647, "name": "key", "kind": 32768, "flags": {}, @@ -33041,7 +32197,7 @@ } }, { - "id": 2749, + "id": 2648, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -33061,7 +32217,7 @@ } }, { - "id": 2741, + "id": 2640, "name": "style", "kind": 1024, "kindString": "Property", @@ -33077,7 +32233,7 @@ ], "type": { "type": "reference", - "id": 2750, + "id": 2649, "name": "CustomStyles" } } @@ -33087,9 +32243,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2742, - 2749, - 2741 + 2641, + 2648, + 2640 ] } ], @@ -33102,7 +32258,7 @@ ] }, { - "id": 2319, + "id": 2239, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -33118,7 +32274,7 @@ }, "children": [ { - "id": 2361, + "id": 2281, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -33148,20 +32304,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2362, + "id": 2282, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2363, + "id": 2283, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2364, + "id": 2284, "name": "key", "kind": 32768, "flags": {}, @@ -33193,7 +32349,7 @@ } }, { - "id": 2322, + "id": 2242, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -33216,7 +32372,7 @@ } }, { - "id": 2343, + "id": 2263, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -33258,7 +32414,7 @@ } }, { - "id": 2345, + "id": 2265, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -33287,7 +32443,7 @@ } }, { - "id": 2321, + "id": 2241, "name": "authType", "kind": 1024, "kindString": "Property", @@ -33304,12 +32460,12 @@ ], "type": { "type": "reference", - "id": 1967, + "id": 1894, "name": "AuthType" } }, { - "id": 2334, + "id": 2254, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -33338,7 +32494,7 @@ } }, { - "id": 2346, + "id": 2266, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -33371,7 +32527,7 @@ } }, { - "id": 2337, + "id": 2257, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -33400,7 +32556,7 @@ } }, { - "id": 2370, + "id": 2290, "name": "cleanupTimeout", "kind": 1024, "kindString": "Property", @@ -33433,7 +32589,7 @@ } }, { - "id": 2358, + "id": 2278, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -33462,7 +32618,7 @@ } }, { - "id": 2368, + "id": 2288, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -33498,7 +32654,7 @@ } }, { - "id": 2365, + "id": 2285, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -33541,7 +32697,7 @@ } }, { - "id": 2342, + "id": 2262, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -33566,12 +32722,12 @@ ], "type": { "type": "reference", - "id": 2740, + "id": 2639, "name": "CustomisationsInterface" } }, { - "id": 2356, + "id": 2276, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -33600,7 +32756,7 @@ } }, { - "id": 2339, + "id": 2259, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -33630,7 +32786,7 @@ } }, { - "id": 2367, + "id": 2287, "name": "disableFullscreenPresentation", "kind": 1024, "kindString": "Property", @@ -33667,7 +32823,7 @@ } }, { - "id": 2360, + "id": 2280, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -33696,7 +32852,7 @@ } }, { - "id": 2335, + "id": 2255, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -33729,7 +32885,7 @@ } }, { - "id": 2366, + "id": 2286, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -33749,7 +32905,7 @@ } }, { - "id": 2355, + "id": 2275, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -33778,7 +32934,7 @@ } }, { - "id": 2333, + "id": 2253, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -33807,7 +32963,7 @@ } }, { - "id": 2328, + "id": 2248, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -33841,7 +32997,7 @@ } }, { - "id": 2354, + "id": 2274, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -33874,12 +33030,12 @@ ], "type": { "type": "reference", - "id": 2927, + "id": 2825, "name": "LogLevel" } }, { - "id": 2336, + "id": 2256, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -33908,7 +33064,7 @@ } }, { - "id": 2327, + "id": 2247, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -33941,7 +33097,7 @@ } }, { - "id": 2357, + "id": 2277, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -33970,7 +33126,7 @@ } }, { - "id": 2326, + "id": 2246, "name": "password", "kind": 1024, "kindString": "Property", @@ -33994,7 +33150,7 @@ } }, { - "id": 2352, + "id": 2272, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -34023,7 +33179,7 @@ } }, { - "id": 2338, + "id": 2258, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -34056,7 +33212,7 @@ } }, { - "id": 2329, + "id": 2249, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -34086,7 +33242,7 @@ } }, { - "id": 2331, + "id": 2251, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -34115,7 +33271,7 @@ } }, { - "id": 2353, + "id": 2273, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -34144,7 +33300,7 @@ } }, { - "id": 2332, + "id": 2252, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -34173,7 +33329,7 @@ } }, { - "id": 2341, + "id": 2261, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -34196,7 +33352,7 @@ } }, { - "id": 2340, + "id": 2260, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -34225,7 +33381,7 @@ } }, { - "id": 2320, + "id": 2240, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -34246,7 +33402,7 @@ } }, { - "id": 2344, + "id": 2264, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -34269,7 +33425,7 @@ } }, { - "id": 2325, + "id": 2245, "name": "username", "kind": 1024, "kindString": "Property", @@ -34292,7 +33448,7 @@ } }, { - "id": 2369, + "id": 2289, "name": "waitForCleanupOnDestroy", "kind": 1024, "kindString": "Property", @@ -34325,7 +33481,7 @@ } }, { - "id": 2323, + "id": 2243, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -34341,7 +33497,7 @@ ], "signatures": [ { - "id": 2324, + "id": 2244, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -34369,52 +33525,52 @@ "title": "Properties", "kind": 1024, "children": [ - 2361, - 2322, - 2343, - 2345, - 2321, - 2334, - 2346, - 2337, - 2370, - 2358, - 2368, - 2365, - 2342, - 2356, - 2339, - 2367, - 2360, - 2335, - 2366, - 2355, - 2333, - 2328, - 2354, - 2336, - 2327, - 2357, - 2326, - 2352, - 2338, - 2329, - 2331, - 2353, - 2332, - 2341, - 2340, - 2320, - 2344, - 2325, - 2369 + 2281, + 2242, + 2263, + 2265, + 2241, + 2254, + 2266, + 2257, + 2290, + 2278, + 2288, + 2285, + 2262, + 2276, + 2259, + 2287, + 2280, + 2255, + 2286, + 2275, + 2253, + 2248, + 2274, + 2256, + 2247, + 2277, + 2246, + 2272, + 2258, + 2249, + 2251, + 2273, + 2252, + 2261, + 2260, + 2240, + 2264, + 2245, + 2289 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2323 + 2243 ] } ], @@ -34427,7 +33583,7 @@ ] }, { - "id": 2699, + "id": 2598, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -34443,7 +33599,7 @@ }, "children": [ { - "id": 2701, + "id": 2600, "name": "height", "kind": 1024, "kindString": "Property", @@ -34475,7 +33631,7 @@ } }, { - "id": 2702, + "id": 2601, "name": "loading", "kind": 1024, "kindString": "Property", @@ -34511,7 +33667,7 @@ } }, { - "id": 2700, + "id": 2599, "name": "width", "kind": 1024, "kindString": "Property", @@ -34548,9 +33704,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2701, - 2702, - 2700 + 2600, + 2601, + 2599 ] } ], @@ -34562,7 +33718,7 @@ } ], "indexSignature": { - "id": 2703, + "id": 2602, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -34572,7 +33728,7 @@ }, "parameters": [ { - "id": 2704, + "id": 2603, "name": "key", "kind": 32768, "flags": {}, @@ -34606,7 +33762,7 @@ } }, { - "id": 2472, + "id": 2387, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -34622,7 +33778,7 @@ }, "children": [ { - "id": 2484, + "id": 2398, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -34656,7 +33812,7 @@ } }, { - "id": 2507, + "id": 2420, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -34687,20 +33843,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2508, + "id": 2421, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2509, + "id": 2422, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2510, + "id": 2423, "name": "key", "kind": 32768, "flags": {}, @@ -34736,7 +33892,7 @@ } }, { - "id": 2534, + "id": 2444, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -34764,7 +33920,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1301, + "line": 1292, "character": 4 } ], @@ -34778,7 +33934,7 @@ } }, { - "id": 2531, + "id": 2441, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -34802,13 +33958,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1265, + "line": 1256, "character": 4 } ], "type": { "type": "reference", - "id": 2315, + "id": 2235, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -34817,7 +33973,7 @@ } }, { - "id": 2547, + "id": 2457, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -34841,7 +33997,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1521, + "line": 1512, "character": 4 } ], @@ -34855,7 +34011,7 @@ } }, { - "id": 2525, + "id": 2438, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -34896,7 +34052,7 @@ } }, { - "id": 2511, + "id": 2424, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -34925,7 +34081,7 @@ ], "type": { "type": "reference", - "id": 2740, + "id": 2639, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -34934,7 +34090,7 @@ } }, { - "id": 2535, + "id": 2445, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -34962,7 +34118,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1317, + "line": 1308, "character": 4 } ], @@ -34976,7 +34132,7 @@ } }, { - "id": 2474, + "id": 2389, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -35018,7 +34174,7 @@ } }, { - "id": 2519, + "id": 2432, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -35056,7 +34212,7 @@ } }, { - "id": 2503, + "id": 2416, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -35094,7 +34250,7 @@ } }, { - "id": 2502, + "id": 2415, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -35126,7 +34282,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -35136,7 +34292,7 @@ } }, { - "id": 2515, + "id": 2428, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -35177,7 +34333,7 @@ } }, { - "id": 2541, + "id": 2451, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -35205,7 +34361,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1419, + "line": 1410, "character": 4 } ], @@ -35219,7 +34375,7 @@ } }, { - "id": 2546, + "id": 2456, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -35247,7 +34403,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1505, + "line": 1496, "character": 4 } ], @@ -35261,7 +34417,7 @@ } }, { - "id": 2536, + "id": 2446, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -35289,7 +34445,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1333, + "line": 1324, "character": 4 } ], @@ -35303,7 +34459,7 @@ } }, { - "id": 2516, + "id": 2429, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -35377,7 +34533,7 @@ } }, { - "id": 2532, + "id": 2442, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -35401,7 +34557,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1276, + "line": 1267, "character": 4 } ], @@ -35415,7 +34571,7 @@ } }, { - "id": 2533, + "id": 2443, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -35439,7 +34595,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1286, + "line": 1277, "character": 4 } ], @@ -35453,7 +34609,7 @@ } }, { - "id": 2518, + "id": 2431, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -35490,7 +34646,7 @@ } }, { - "id": 2499, + "id": 2412, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -35520,7 +34676,7 @@ ], "type": { "type": "reference", - "id": 2699, + "id": 2598, "name": "FrameParams" }, "inheritedFrom": { @@ -35529,7 +34685,7 @@ } }, { - "id": 2473, + "id": 2388, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -35563,7 +34719,7 @@ } }, { - "id": 2504, + "id": 2417, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -35599,7 +34755,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -35646,7 +34802,7 @@ } }, { - "id": 2544, + "id": 2454, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -35674,7 +34830,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1472, + "line": 1463, "character": 4 } ], @@ -35688,7 +34844,7 @@ } }, { - "id": 2537, + "id": 2447, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -35716,7 +34872,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1355, + "line": 1346, "character": 4 } ], @@ -35764,7 +34920,7 @@ } }, { - "id": 2512, + "id": 2425, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -35802,84 +34958,7 @@ } }, { - "id": 2528, - "name": "interceptTimeout", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" - }, - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6440, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseViewConfig.interceptTimeout" - } - }, - { - "id": 2527, - "name": "interceptUrls", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" - }, - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6423, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseViewConfig.interceptUrls" - } - }, - { - "id": 2549, + "id": 2459, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -35903,7 +34982,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1555, + "line": 1545, "character": 4 } ], @@ -35917,7 +34996,7 @@ } }, { - "id": 2551, + "id": 2461, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -35941,7 +35020,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1586, + "line": 1576, "character": 4 } ], @@ -35955,7 +35034,7 @@ } }, { - "id": 2550, + "id": 2460, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -35979,7 +35058,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1570, + "line": 1560, "character": 4 } ], @@ -35993,7 +35072,7 @@ } }, { - "id": 2542, + "id": 2452, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -36021,7 +35100,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1436, + "line": 1427, "character": 4 } ], @@ -36035,7 +35114,7 @@ } }, { - "id": 2540, + "id": 2450, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -36059,7 +35138,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1402, + "line": 1393, "character": 4 } ], @@ -36073,49 +35152,7 @@ } }, { - "id": 2553, - "name": "isLiveboardMasterpiecesEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Enable or disable Liveboard styling and grouping", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.45.0 | Thoughtspot: 26.2.0.cl" - }, - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\n// Replace with embed component name. For example, AppEmbed or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n isLiveboardMasterpiecesEnabled: true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1618, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "LiveboardAppEmbedViewConfig.isLiveboardMasterpiecesEnabled" - } - }, - { - "id": 2492, + "id": 2406, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -36149,41 +35186,7 @@ } }, { - "id": 2526, - "name": "isOnBeforeGetVizDataInterceptEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", - "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", - "tags": [ - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6407, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseViewConfig.isOnBeforeGetVizDataInterceptEnabled" - } - }, - { - "id": 2493, + "id": 2407, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -36288,7 +35291,7 @@ } }, { - "id": 2521, + "id": 2434, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -36394,7 +35397,7 @@ } }, { - "id": 2548, + "id": 2458, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -36418,7 +35421,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1537, + "line": 1527, "character": 4 } ], @@ -36432,7 +35435,7 @@ } }, { - "id": 2506, + "id": 2419, "name": "locale", "kind": 1024, "kindString": "Property", @@ -36470,44 +35473,7 @@ } }, { - "id": 2475, - "name": "minimumHeight", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This is the minimum height (in pixels) for a full-height Liveboard.\nSetting this height helps resolve issues with empty Liveboards and\nother screens navigable from a Liveboard.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.44.2 | ThoughtSpot: 26.0.2.cl" - }, - { - "tag": "default", - "text": "500" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n fullHeight: true,\n minimumHeight: 600,\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/liveboard.ts", - "line": 97, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 2520, + "id": 2433, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -36545,7 +35511,7 @@ } }, { - "id": 2514, + "id": 2427, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -36617,7 +35583,7 @@ } }, { - "id": 2522, + "id": 2435, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -36655,7 +35621,7 @@ } }, { - "id": 2529, + "id": 2439, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -36679,7 +35645,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1229, + "line": 1220, "character": 4 } ], @@ -36687,7 +35653,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1979, + "id": 1906, "name": "RuntimeFilter" } }, @@ -36697,7 +35663,7 @@ } }, { - "id": 2530, + "id": 2440, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -36721,7 +35687,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1250, + "line": 1241, "character": 4 } ], @@ -36729,7 +35695,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2924, + "id": 2822, "name": "RuntimeParameter" } }, @@ -36739,7 +35705,7 @@ } }, { - "id": 2524, + "id": 2437, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -36776,7 +35742,7 @@ } }, { - "id": 2539, + "id": 2449, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -36804,7 +35770,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1387, + "line": 1378, "character": 4 } ], @@ -36818,7 +35784,7 @@ } }, { - "id": 2545, + "id": 2455, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -36846,7 +35812,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1489, + "line": 1480, "character": 4 } ], @@ -36860,7 +35826,7 @@ } }, { - "id": 2538, + "id": 2448, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -36888,7 +35854,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1371, + "line": 1362, "character": 4 } ], @@ -36902,7 +35868,7 @@ } }, { - "id": 2543, + "id": 2453, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -36930,7 +35896,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1453, + "line": 1444, "character": 4 } ], @@ -36944,49 +35910,7 @@ } }, { - "id": 2552, - "name": "showMaskedFilterChip", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Show or hide masked filter chips", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.45.0 | Thoughtspot: 26.2.0.cl" - }, - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\n// Replace with embed component name. For example, AppEmbed or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n showMaskedFilterChip: true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1602, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "LiveboardAppEmbedViewConfig.showMaskedFilterChip" - } - }, - { - "id": 2486, + "id": 2400, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -37053,45 +35977,7 @@ } }, { - "id": 2497, - "name": "updatedSpotterChatPrompt", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "updatedSpotterChatPrompt : Controls the updated spotter chat prompt.", - "text": "Supported embed types: `LiveboardEmbed`", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... //other embed view config\n updatedSpotterChatPrompt : true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/liveboard.ts", - "line": 433, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2505, + "id": 2418, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -37127,7 +36013,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -37250,73 +36136,66 @@ "title": "Properties", "kind": 1024, "children": [ - 2484, - 2507, - 2534, - 2531, - 2547, - 2525, - 2511, - 2535, - 2474, - 2519, - 2503, - 2502, - 2515, - 2541, - 2546, - 2536, - 2516, - 2476, - 2532, - 2533, - 2518, - 2499, - 2473, - 2504, - 2490, - 2544, - 2537, - 2485, - 2512, - 2528, - 2527, - 2549, - 2551, - 2550, - 2542, - 2540, - 2553, - 2492, - 2526, - 2493, - 2494, - 2495, - 2521, - 2477, - 2483, - 2548, - 2506, - 2475, - 2520, - 2514, - 2480, - 2522, - 2529, - 2530, - 2524, - 2539, - 2545, - 2538, - 2543, - 2552, - 2486, - 2496, - 2497, - 2505, - 2491, - 2481, - 2479 + 2398, + 2420, + 2444, + 2441, + 2457, + 2438, + 2424, + 2445, + 2389, + 2432, + 2416, + 2415, + 2428, + 2451, + 2456, + 2446, + 2429, + 2390, + 2442, + 2443, + 2431, + 2412, + 2388, + 2417, + 2404, + 2454, + 2447, + 2399, + 2425, + 2459, + 2461, + 2460, + 2452, + 2450, + 2406, + 2407, + 2408, + 2409, + 2434, + 2391, + 2397, + 2458, + 2419, + 2433, + 2427, + 2394, + 2435, + 2439, + 2440, + 2437, + 2449, + 2455, + 2448, + 2453, + 2400, + 2410, + 2418, + 2405, + 2395, + 2393 ] } ], @@ -37343,7 +36222,7 @@ ] }, { - "id": 1979, + "id": 1906, "name": "RuntimeFilter", "kind": 256, "kindString": "Interface", @@ -37353,7 +36232,7 @@ }, "children": [ { - "id": 1980, + "id": 1907, "name": "columnName", "kind": 1024, "kindString": "Property", @@ -37364,7 +36243,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1822, + "line": 1776, "character": 4 } ], @@ -37374,7 +36253,7 @@ } }, { - "id": 1981, + "id": 1908, "name": "operator", "kind": 1024, "kindString": "Property", @@ -37385,18 +36264,18 @@ "sources": [ { "fileName": "types.ts", - "line": 1826, + "line": 1780, "character": 4 } ], "type": { "type": "reference", - "id": 1983, + "id": 1910, "name": "RuntimeFilterOp" } }, { - "id": 1982, + "id": 1909, "name": "values", "kind": 1024, "kindString": "Property", @@ -37407,7 +36286,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1832, + "line": 1786, "character": 4 } ], @@ -37442,22 +36321,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1980, - 1981, - 1982 + 1907, + 1908, + 1909 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1818, + "line": 1772, "character": 17 } ] }, { - "id": 2924, + "id": 2822, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -37467,7 +36346,7 @@ }, "children": [ { - "id": 2925, + "id": 2823, "name": "name", "kind": 1024, "kindString": "Property", @@ -37478,7 +36357,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1842, + "line": 1796, "character": 4 } ], @@ -37488,7 +36367,7 @@ } }, { - "id": 2926, + "id": 2824, "name": "value", "kind": 1024, "kindString": "Property", @@ -37499,7 +36378,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1846, + "line": 1800, "character": 4 } ], @@ -37527,21 +36406,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2925, - 2926 + 2823, + 2824 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1838, + "line": 1792, "character": 17 } ] }, { - "id": 2554, + "id": 2462, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -37561,7 +36440,7 @@ }, "children": [ { - "id": 2583, + "id": 2491, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -37592,20 +36471,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2584, + "id": 2492, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2585, + "id": 2493, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2586, + "id": 2494, "name": "key", "kind": 32768, "flags": {}, @@ -37641,7 +36520,7 @@ } }, { - "id": 2571, + "id": 2479, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -37669,7 +36548,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1301, + "line": 1292, "character": 4 } ], @@ -37683,7 +36562,7 @@ } }, { - "id": 2568, + "id": 2476, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -37707,13 +36586,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1265, + "line": 1256, "character": 4 } ], "type": { "type": "reference", - "id": 2315, + "id": 2235, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -37722,7 +36601,7 @@ } }, { - "id": 2600, + "id": 2508, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -37763,7 +36642,7 @@ } }, { - "id": 2587, + "id": 2495, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -37792,7 +36671,7 @@ ], "type": { "type": "reference", - "id": 2740, + "id": 2639, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -37801,7 +36680,7 @@ } }, { - "id": 2572, + "id": 2480, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -37829,7 +36708,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1317, + "line": 1308, "character": 4 } ], @@ -37843,7 +36722,7 @@ } }, { - "id": 2564, + "id": 2472, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -37866,7 +36745,7 @@ } }, { - "id": 2595, + "id": 2503, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -37904,7 +36783,7 @@ } }, { - "id": 2559, + "id": 2467, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -37933,7 +36812,7 @@ } }, { - "id": 2579, + "id": 2487, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -37971,7 +36850,7 @@ } }, { - "id": 2578, + "id": 2486, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -38003,7 +36882,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -38013,7 +36892,7 @@ } }, { - "id": 2591, + "id": 2499, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -38054,7 +36933,7 @@ } }, { - "id": 2573, + "id": 2481, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -38082,7 +36961,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1333, + "line": 1324, "character": 4 } ], @@ -38096,7 +36975,7 @@ } }, { - "id": 2592, + "id": 2500, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -38134,7 +37013,7 @@ } }, { - "id": 2569, + "id": 2477, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -38158,7 +37037,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1276, + "line": 1267, "character": 4 } ], @@ -38172,7 +37051,7 @@ } }, { - "id": 2570, + "id": 2478, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -38196,7 +37075,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1286, + "line": 1277, "character": 4 } ], @@ -38210,7 +37089,7 @@ } }, { - "id": 2594, + "id": 2502, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -38247,7 +37126,7 @@ } }, { - "id": 2575, + "id": 2483, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -38277,7 +37156,7 @@ ], "type": { "type": "reference", - "id": 2699, + "id": 2598, "name": "FrameParams" }, "inheritedFrom": { @@ -38286,7 +37165,7 @@ } }, { - "id": 2580, + "id": 2488, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -38322,7 +37201,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -38332,7 +37211,7 @@ } }, { - "id": 2561, + "id": 2469, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -38361,7 +37240,7 @@ } }, { - "id": 2558, + "id": 2466, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -38390,7 +37269,7 @@ } }, { - "id": 2563, + "id": 2471, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -38424,7 +37303,7 @@ } }, { - "id": 2557, + "id": 2465, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -38457,7 +37336,7 @@ } }, { - "id": 2560, + "id": 2468, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -38486,7 +37365,7 @@ } }, { - "id": 2588, + "id": 2496, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -38524,118 +37403,7 @@ } }, { - "id": 2603, - "name": "interceptTimeout", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" - }, - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6440, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.interceptTimeout" - } - }, - { - "id": 2602, - "name": "interceptUrls", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" - }, - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6423, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.interceptUrls" - } - }, - { - "id": 2601, - "name": "isOnBeforeGetVizDataInterceptEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", - "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", - "tags": [ - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6407, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.isOnBeforeGetVizDataInterceptEnabled" - } - }, - { - "id": 2597, + "id": 2505, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -38673,7 +37441,7 @@ } }, { - "id": 2582, + "id": 2490, "name": "locale", "kind": 1024, "kindString": "Property", @@ -38711,7 +37479,7 @@ } }, { - "id": 2596, + "id": 2504, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -38749,7 +37517,7 @@ } }, { - "id": 2590, + "id": 2498, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -38787,7 +37555,7 @@ } }, { - "id": 2566, + "id": 2474, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -38811,7 +37579,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1229, + "line": 1220, "character": 4 } ], @@ -38819,7 +37587,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1979, + "id": 1906, "name": "RuntimeFilter" } }, @@ -38829,7 +37597,7 @@ } }, { - "id": 2567, + "id": 2475, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -38853,7 +37621,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1250, + "line": 1241, "character": 4 } ], @@ -38861,7 +37629,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2924, + "id": 2822, "name": "RuntimeParameter" } }, @@ -38871,7 +37639,7 @@ } }, { - "id": 2565, + "id": 2473, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -38905,7 +37673,7 @@ } }, { - "id": 2599, + "id": 2507, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -38942,7 +37710,7 @@ } }, { - "id": 2555, + "id": 2463, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -38971,7 +37739,7 @@ } }, { - "id": 2562, + "id": 2470, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -39000,7 +37768,7 @@ } }, { - "id": 2581, + "id": 2489, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -39036,7 +37804,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -39051,45 +37819,42 @@ "title": "Properties", "kind": 1024, "children": [ - 2583, - 2571, - 2568, - 2600, - 2587, - 2572, - 2564, - 2595, - 2559, - 2579, - 2578, - 2591, - 2573, - 2592, - 2569, - 2570, - 2594, - 2575, - 2580, - 2561, - 2558, - 2563, - 2557, - 2560, - 2588, - 2603, - 2602, - 2601, - 2597, - 2582, - 2596, - 2590, - 2566, - 2567, - 2565, - 2599, - 2555, - 2562, - 2581 + 2491, + 2479, + 2476, + 2508, + 2495, + 2480, + 2472, + 2503, + 2467, + 2487, + 2486, + 2499, + 2481, + 2500, + 2477, + 2478, + 2502, + 2483, + 2488, + 2469, + 2466, + 2471, + 2465, + 2468, + 2496, + 2505, + 2490, + 2504, + 2498, + 2474, + 2475, + 2473, + 2507, + 2463, + 2470, + 2489 ] } ], @@ -39143,7 +37908,7 @@ ] }, { - "id": 2427, + "id": 2345, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -39158,7 +37923,7 @@ }, "children": [ { - "id": 2442, + "id": 2360, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -39189,20 +37954,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2443, + "id": 2361, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2444, + "id": 2362, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2445, + "id": 2363, "name": "key", "kind": 32768, "flags": {}, @@ -39238,7 +38003,7 @@ } }, { - "id": 2469, + "id": 2384, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -39266,7 +38031,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1301, + "line": 1292, "character": 4 } ], @@ -39280,7 +38045,7 @@ } }, { - "id": 2466, + "id": 2381, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -39304,13 +38069,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1265, + "line": 1256, "character": 4 } ], "type": { "type": "reference", - "id": 2315, + "id": 2235, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -39319,7 +38084,7 @@ } }, { - "id": 2460, + "id": 2378, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -39360,7 +38125,7 @@ } }, { - "id": 2446, + "id": 2364, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -39389,7 +38154,7 @@ ], "type": { "type": "reference", - "id": 2740, + "id": 2639, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -39398,7 +38163,7 @@ } }, { - "id": 2470, + "id": 2385, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -39426,7 +38191,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1317, + "line": 1308, "character": 4 } ], @@ -39440,7 +38205,7 @@ } }, { - "id": 2429, + "id": 2347, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -39474,7 +38239,7 @@ } }, { - "id": 2428, + "id": 2346, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -39515,7 +38280,7 @@ } }, { - "id": 2454, + "id": 2372, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -39553,7 +38318,7 @@ } }, { - "id": 2438, + "id": 2356, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -39591,7 +38356,7 @@ } }, { - "id": 2437, + "id": 2355, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -39623,7 +38388,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -39633,7 +38398,7 @@ } }, { - "id": 2450, + "id": 2368, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -39674,7 +38439,7 @@ } }, { - "id": 2471, + "id": 2386, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -39702,7 +38467,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1333, + "line": 1324, "character": 4 } ], @@ -39716,7 +38481,7 @@ } }, { - "id": 2451, + "id": 2369, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -39754,7 +38519,7 @@ } }, { - "id": 2467, + "id": 2382, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -39778,7 +38543,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1276, + "line": 1267, "character": 4 } ], @@ -39792,7 +38557,7 @@ } }, { - "id": 2468, + "id": 2383, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -39816,7 +38581,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1286, + "line": 1277, "character": 4 } ], @@ -39830,7 +38595,7 @@ } }, { - "id": 2432, + "id": 2350, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -39864,7 +38629,7 @@ } }, { - "id": 2453, + "id": 2371, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -39901,7 +38666,7 @@ } }, { - "id": 2434, + "id": 2352, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -39931,7 +38696,7 @@ ], "type": { "type": "reference", - "id": 2699, + "id": 2598, "name": "FrameParams" }, "inheritedFrom": { @@ -39940,7 +38705,7 @@ } }, { - "id": 2439, + "id": 2357, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -39976,7 +38741,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -39986,7 +38751,7 @@ } }, { - "id": 2447, + "id": 2365, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -40024,118 +38789,7 @@ } }, { - "id": 2463, - "name": "interceptTimeout", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" - }, - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6440, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseViewConfig.interceptTimeout" - } - }, - { - "id": 2462, - "name": "interceptUrls", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" - }, - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6423, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseViewConfig.interceptUrls" - } - }, - { - "id": 2461, - "name": "isOnBeforeGetVizDataInterceptEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", - "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", - "tags": [ - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6407, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseViewConfig.isOnBeforeGetVizDataInterceptEnabled" - } - }, - { - "id": 2456, + "id": 2374, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -40173,7 +38827,7 @@ } }, { - "id": 2441, + "id": 2359, "name": "locale", "kind": 1024, "kindString": "Property", @@ -40211,7 +38865,7 @@ } }, { - "id": 2455, + "id": 2373, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -40249,7 +38903,7 @@ } }, { - "id": 2449, + "id": 2367, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -40287,7 +38941,7 @@ } }, { - "id": 2457, + "id": 2375, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -40325,7 +38979,7 @@ } }, { - "id": 2464, + "id": 2379, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -40349,7 +39003,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1229, + "line": 1220, "character": 4 } ], @@ -40357,7 +39011,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1979, + "id": 1906, "name": "RuntimeFilter" } }, @@ -40367,7 +39021,7 @@ } }, { - "id": 2465, + "id": 2380, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -40391,7 +39045,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1250, + "line": 1241, "character": 4 } ], @@ -40399,7 +39053,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2924, + "id": 2822, "name": "RuntimeParameter" } }, @@ -40409,7 +39063,7 @@ } }, { - "id": 2431, + "id": 2349, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -40443,7 +39097,7 @@ } }, { - "id": 2459, + "id": 2377, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -40480,7 +39134,7 @@ } }, { - "id": 2430, + "id": 2348, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -40514,7 +39168,7 @@ } }, { - "id": 2440, + "id": 2358, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -40550,7 +39204,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -40565,41 +39219,38 @@ "title": "Properties", "kind": 1024, "children": [ - 2442, - 2469, - 2466, - 2460, - 2446, - 2470, - 2429, - 2428, - 2454, - 2438, - 2437, - 2450, - 2471, - 2451, - 2467, - 2468, - 2432, - 2453, - 2434, - 2439, - 2447, - 2463, - 2462, - 2461, - 2456, - 2441, - 2455, - 2449, - 2457, - 2464, - 2465, - 2431, - 2459, - 2430, - 2440 + 2360, + 2384, + 2381, + 2378, + 2364, + 2385, + 2347, + 2346, + 2372, + 2356, + 2355, + 2368, + 2386, + 2369, + 2382, + 2383, + 2350, + 2371, + 2352, + 2357, + 2365, + 2374, + 2359, + 2373, + 2367, + 2375, + 2379, + 2380, + 2349, + 2377, + 2348, + 2358 ] } ], @@ -40622,7 +39273,7 @@ ] }, { - "id": 2371, + "id": 2291, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -40638,7 +39289,7 @@ }, "children": [ { - "id": 2406, + "id": 2327, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -40669,20 +39320,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2407, + "id": 2328, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2408, + "id": 2329, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2409, + "id": 2330, "name": "key", "kind": 32768, "flags": {}, @@ -40718,7 +39369,7 @@ } }, { - "id": 2383, + "id": 2303, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -40752,7 +39403,7 @@ } }, { - "id": 2373, + "id": 2293, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -40786,7 +39437,7 @@ } }, { - "id": 2372, + "id": 2292, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -40820,7 +39471,7 @@ } }, { - "id": 2394, + "id": 2315, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -40848,7 +39499,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1301, + "line": 1292, "character": 4 } ], @@ -40862,7 +39513,7 @@ } }, { - "id": 2386, + "id": 2306, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -40899,7 +39550,7 @@ } }, { - "id": 2391, + "id": 2312, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -40923,13 +39574,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1265, + "line": 1256, "character": 4 } ], "type": { "type": "reference", - "id": 2315, + "id": 2235, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -40938,7 +39589,7 @@ } }, { - "id": 2423, + "id": 2344, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -40979,7 +39630,7 @@ } }, { - "id": 2410, + "id": 2331, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -41008,7 +39659,7 @@ ], "type": { "type": "reference", - "id": 2740, + "id": 2639, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -41017,7 +39668,7 @@ } }, { - "id": 2387, + "id": 2308, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -41055,7 +39706,7 @@ } }, { - "id": 2395, + "id": 2316, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -41083,7 +39734,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1317, + "line": 1308, "character": 4 } ], @@ -41097,7 +39748,7 @@ } }, { - "id": 2379, + "id": 2299, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -41131,7 +39782,7 @@ } }, { - "id": 2378, + "id": 2298, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -41167,7 +39818,7 @@ } }, { - "id": 2418, + "id": 2339, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -41205,7 +39856,7 @@ } }, { - "id": 2402, + "id": 2323, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -41243,7 +39894,7 @@ } }, { - "id": 2401, + "id": 2322, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -41275,7 +39926,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -41285,7 +39936,7 @@ } }, { - "id": 2414, + "id": 2335, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -41326,7 +39977,7 @@ } }, { - "id": 2396, + "id": 2317, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -41354,7 +40005,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1333, + "line": 1324, "character": 4 } ], @@ -41368,7 +40019,7 @@ } }, { - "id": 2376, + "id": 2296, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -41402,7 +40053,7 @@ } }, { - "id": 2415, + "id": 2336, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -41440,7 +40091,7 @@ } }, { - "id": 2392, + "id": 2313, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -41464,7 +40115,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1276, + "line": 1267, "character": 4 } ], @@ -41478,7 +40129,7 @@ } }, { - "id": 2393, + "id": 2314, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -41502,7 +40153,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1286, + "line": 1277, "character": 4 } ], @@ -41516,7 +40167,7 @@ } }, { - "id": 2382, + "id": 2302, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -41550,7 +40201,7 @@ } }, { - "id": 2417, + "id": 2338, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -41587,7 +40238,7 @@ } }, { - "id": 2388, + "id": 2309, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -41625,7 +40276,7 @@ } }, { - "id": 2377, + "id": 2297, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -41659,7 +40310,7 @@ } }, { - "id": 2398, + "id": 2319, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -41689,7 +40340,7 @@ ], "type": { "type": "reference", - "id": 2699, + "id": 2598, "name": "FrameParams" }, "inheritedFrom": { @@ -41698,7 +40349,7 @@ } }, { - "id": 2403, + "id": 2324, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -41734,7 +40385,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -41744,7 +40395,7 @@ } }, { - "id": 2374, + "id": 2294, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -41778,7 +40429,7 @@ } }, { - "id": 2375, + "id": 2295, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -41812,7 +40463,7 @@ } }, { - "id": 2384, + "id": 2304, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -41846,7 +40497,7 @@ } }, { - "id": 2411, + "id": 2332, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -41884,84 +40535,7 @@ } }, { - "id": 2426, - "name": "interceptTimeout", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" - }, - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6440, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.interceptTimeout" - } - }, - { - "id": 2425, - "name": "interceptUrls", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" - }, - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6423, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.interceptUrls" - } - }, - { - "id": 2424, + "id": 2307, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -41980,8 +40554,8 @@ }, "sources": [ { - "fileName": "types.ts", - "line": 6407, + "fileName": "embed/search.ts", + "line": 285, "character": 4 } ], @@ -41995,7 +40569,7 @@ } }, { - "id": 2420, + "id": 2341, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -42033,7 +40607,7 @@ } }, { - "id": 2405, + "id": 2326, "name": "locale", "kind": 1024, "kindString": "Property", @@ -42071,7 +40645,7 @@ } }, { - "id": 2419, + "id": 2340, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -42109,7 +40683,7 @@ } }, { - "id": 2413, + "id": 2334, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -42147,7 +40721,7 @@ } }, { - "id": 2389, + "id": 2310, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -42171,7 +40745,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1229, + "line": 1220, "character": 4 } ], @@ -42179,7 +40753,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1979, + "id": 1906, "name": "RuntimeFilter" } }, @@ -42189,7 +40763,7 @@ } }, { - "id": 2390, + "id": 2311, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -42213,7 +40787,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1250, + "line": 1241, "character": 4 } ], @@ -42221,7 +40795,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2924, + "id": 2822, "name": "RuntimeParameter" } }, @@ -42231,7 +40805,7 @@ } }, { - "id": 2381, + "id": 2301, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -42261,7 +40835,7 @@ } }, { - "id": 2380, + "id": 2300, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -42290,7 +40864,7 @@ } }, { - "id": 2422, + "id": 2343, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -42327,7 +40901,7 @@ } }, { - "id": 2385, + "id": 2305, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -42357,7 +40931,7 @@ } }, { - "id": 2404, + "id": 2325, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -42393,7 +40967,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -42408,52 +40982,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2406, - 2383, - 2373, - 2372, - 2394, - 2386, - 2391, - 2423, - 2410, - 2387, - 2395, - 2379, - 2378, - 2418, - 2402, - 2401, - 2414, - 2396, - 2376, - 2415, - 2392, - 2393, - 2382, - 2417, - 2388, - 2377, - 2398, - 2403, - 2374, - 2375, - 2384, - 2411, - 2426, - 2425, - 2424, - 2420, - 2405, - 2419, - 2413, - 2389, - 2390, - 2381, - 2380, - 2422, - 2385, - 2404 + 2327, + 2303, + 2293, + 2292, + 2315, + 2306, + 2312, + 2344, + 2331, + 2308, + 2316, + 2299, + 2298, + 2339, + 2323, + 2322, + 2335, + 2317, + 2296, + 2336, + 2313, + 2314, + 2302, + 2338, + 2309, + 2297, + 2319, + 2324, + 2294, + 2295, + 2304, + 2332, + 2307, + 2341, + 2326, + 2340, + 2334, + 2310, + 2311, + 2301, + 2300, + 2343, + 2305, + 2325 ] } ], @@ -42486,14 +41058,14 @@ ] }, { - "id": 1948, + "id": 1875, "name": "SessionInterface", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1951, + "id": 1878, "name": "acSession", "kind": 1024, "kindString": "Property", @@ -42508,14 +41080,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1952, + "id": 1879, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1954, + "id": 1881, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -42533,7 +41105,7 @@ } }, { - "id": 1953, + "id": 1880, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -42556,8 +41128,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1954, - 1953 + 1881, + 1880 ] } ] @@ -42565,7 +41137,7 @@ } }, { - "id": 1950, + "id": 1877, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -42583,7 +41155,7 @@ } }, { - "id": 1949, + "id": 1876, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -42606,9 +41178,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1951, - 1950, - 1949 + 1878, + 1877, + 1876 ] } ], @@ -42621,7 +41193,7 @@ ] }, { - "id": 1276, + "id": 1231, "name": "SpotterAgentEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -42637,7 +41209,7 @@ }, "children": [ { - "id": 1287, + "id": 1242, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -42668,20 +41240,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1288, + "id": 1243, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1289, + "id": 1244, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1290, + "id": 1245, "name": "key", "kind": 32768, "flags": {}, @@ -42717,7 +41289,7 @@ } }, { - "id": 1304, + "id": 1259, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -42758,7 +41330,7 @@ } }, { - "id": 1291, + "id": 1246, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -42787,7 +41359,7 @@ ], "type": { "type": "reference", - "id": 2740, + "id": 2639, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -42796,7 +41368,7 @@ } }, { - "id": 1299, + "id": 1254, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -42834,7 +41406,7 @@ } }, { - "id": 1283, + "id": 1238, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -42872,7 +41444,7 @@ } }, { - "id": 1282, + "id": 1237, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -42904,7 +41476,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -42914,7 +41486,7 @@ } }, { - "id": 1295, + "id": 1250, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -42955,7 +41527,7 @@ } }, { - "id": 1296, + "id": 1251, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -42993,7 +41565,7 @@ } }, { - "id": 1298, + "id": 1253, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -43030,7 +41602,7 @@ } }, { - "id": 1279, + "id": 1234, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -43060,7 +41632,7 @@ ], "type": { "type": "reference", - "id": 2699, + "id": 2598, "name": "FrameParams" }, "inheritedFrom": { @@ -43069,7 +41641,7 @@ } }, { - "id": 1284, + "id": 1239, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -43105,7 +41677,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -43115,7 +41687,7 @@ } }, { - "id": 1292, + "id": 1247, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -43153,118 +41725,7 @@ } }, { - "id": 1307, - "name": "interceptTimeout", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" - }, - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6440, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.interceptTimeout" - } - }, - { - "id": 1306, - "name": "interceptUrls", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" - }, - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6423, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.interceptUrls" - } - }, - { - "id": 1305, - "name": "isOnBeforeGetVizDataInterceptEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", - "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", - "tags": [ - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6407, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.isOnBeforeGetVizDataInterceptEnabled" - } - }, - { - "id": 1301, + "id": 1256, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -43302,7 +41763,7 @@ } }, { - "id": 1286, + "id": 1241, "name": "locale", "kind": 1024, "kindString": "Property", @@ -43340,7 +41801,7 @@ } }, { - "id": 1300, + "id": 1255, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -43378,7 +41839,7 @@ } }, { - "id": 1294, + "id": 1249, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -43416,7 +41877,7 @@ } }, { - "id": 1303, + "id": 1258, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -43453,7 +41914,7 @@ } }, { - "id": 1285, + "id": 1240, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -43489,7 +41950,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -43499,7 +41960,7 @@ } }, { - "id": 1277, + "id": 1232, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -43525,28 +41986,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1287, - 1304, - 1291, - 1299, - 1283, - 1282, - 1295, - 1296, - 1298, - 1279, - 1284, - 1292, - 1307, - 1306, - 1305, - 1301, - 1286, - 1300, - 1294, - 1303, - 1285, - 1277 + 1242, + 1259, + 1246, + 1254, + 1238, + 1237, + 1250, + 1251, + 1253, + 1234, + 1239, + 1247, + 1256, + 1241, + 1255, + 1249, + 1258, + 1240, + 1232 ] } ], @@ -43576,13 +42034,13 @@ "extendedBy": [ { "type": "reference", - "id": 1308, + "id": 1260, "name": "BodylessConversationViewConfig" } ] }, { - "id": 1544, + "id": 1486, "name": "SpotterEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -43598,7 +42056,7 @@ }, "children": [ { - "id": 1567, + "id": 1508, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -43678,7 +42136,7 @@ } }, { - "id": 1584, + "id": 1525, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -43748,7 +42206,7 @@ ], "type": { "type": "reference", - "id": 2740, + "id": 2639, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -43757,7 +42215,7 @@ } }, { - "id": 1549, + "id": 1491, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -43833,7 +42291,7 @@ } }, { - "id": 1547, + "id": 1489, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -43937,7 +42395,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -43988,7 +42446,7 @@ } }, { - "id": 1556, + "id": 1498, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -44064,7 +42522,7 @@ } }, { - "id": 1553, + "id": 1495, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -44098,7 +42556,7 @@ } }, { - "id": 1555, + "id": 1497, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -44199,7 +42657,7 @@ ], "type": { "type": "reference", - "id": 2699, + "id": 2598, "name": "FrameParams" }, "inheritedFrom": { @@ -44244,7 +42702,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -44254,7 +42712,7 @@ } }, { - "id": 1551, + "id": 1493, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -44288,7 +42746,7 @@ } }, { - "id": 1548, + "id": 1490, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -44360,118 +42818,7 @@ } }, { - "id": 1587, - "name": "interceptTimeout", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" - }, - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6440, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.interceptTimeout" - } - }, - { - "id": 1586, - "name": "interceptUrls", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" - }, - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6423, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.interceptUrls" - } - }, - { - "id": 1585, - "name": "isOnBeforeGetVizDataInterceptEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", - "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", - "tags": [ - { - "tag": "version", - "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6407, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.isOnBeforeGetVizDataInterceptEnabled" - } - }, - { - "id": 1581, + "id": 1522, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -44623,7 +42970,7 @@ } }, { - "id": 1552, + "id": 1494, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -44655,13 +43002,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1979, + "id": 1906, "name": "RuntimeFilter" } } }, { - "id": 1554, + "id": 1496, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -44693,13 +43040,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2924, + "id": 2822, "name": "RuntimeParameter" } } }, { - "id": 1546, + "id": 1488, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -44759,7 +43106,7 @@ } }, { - "id": 1550, + "id": 1492, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -44793,45 +43140,7 @@ } }, { - "id": 1557, - "name": "updatedSpotterChatPrompt", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "updatedSpotterChatPrompt : Controls the updated spotter chat prompt.", - "text": "Supported embed types: `SpotterEmbed`", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... //other embed view config\n updatedSpotterChatPrompt : true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 198, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1565, + "id": 1506, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -44867,7 +43176,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2173, + "id": 2097, "name": "Action" } }, @@ -44877,7 +43186,7 @@ } }, { - "id": 1545, + "id": 1487, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -44903,40 +43212,36 @@ "title": "Properties", "kind": 1024, "children": [ - 1567, - 1584, - 1571, - 1549, - 1579, - 1547, - 1563, - 1562, - 1575, - 1556, - 1576, - 1553, - 1555, - 1578, - 1559, - 1564, - 1551, - 1548, - 1572, - 1587, - 1586, - 1585, - 1581, - 1566, - 1580, - 1574, - 1552, - 1554, - 1546, - 1583, - 1550, - 1557, - 1565, - 1545 + 1508, + 1525, + 1512, + 1491, + 1520, + 1489, + 1504, + 1503, + 1516, + 1498, + 1517, + 1495, + 1497, + 1519, + 1500, + 1505, + 1493, + 1490, + 1513, + 1522, + 1507, + 1521, + 1515, + 1494, + 1496, + 1488, + 1524, + 1492, + 1506, + 1487 ] } ], @@ -44966,20 +43271,20 @@ "extendedBy": [ { "type": "reference", - "id": 1588, + "id": 1526, "name": "ConversationViewConfig" } ] }, { - "id": 1955, + "id": 1882, "name": "UnderlyingDataPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1956, + "id": 1883, "name": "columnId", "kind": 1024, "kindString": "Property", @@ -44997,7 +43302,7 @@ } }, { - "id": 1957, + "id": 1884, "name": "dataValue", "kind": 1024, "kindString": "Property", @@ -45020,8 +43325,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1956, - 1957 + 1883, + 1884 ] } ], @@ -45034,14 +43339,14 @@ ] }, { - "id": 2962, + "id": 2860, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2963, + "id": 2861, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -45049,7 +43354,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6053, + "line": 5870, "character": 4 } ], @@ -45062,7 +43367,7 @@ } }, { - "id": 2964, + "id": 2862, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -45070,7 +43375,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6054, + "line": 5871, "character": 4 } ], @@ -45088,21 +43393,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2963, - 2964 + 2861, + 2862 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6052, + "line": 5869, "character": 17 } ] }, { - "id": 2753, + "id": 2652, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -45112,7 +43417,7 @@ }, "children": [ { - "id": 2755, + "id": 2654, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -45142,20 +43447,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2756, + "id": 2655, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2757, + "id": 2656, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2758, + "id": 2657, "name": "selector", "kind": 32768, "flags": {}, @@ -45168,7 +43473,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2759, + "id": 2658, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -45181,14 +43486,14 @@ } ], "indexSignature": { - "id": 2760, + "id": 2659, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2761, + "id": 2660, "name": "declaration", "kind": 32768, "flags": {}, @@ -45210,7 +43515,7 @@ } }, { - "id": 2754, + "id": 2653, "name": "variables", "kind": 1024, "kindString": "Property", @@ -45229,7 +43534,7 @@ ], "type": { "type": "reference", - "id": 2762, + "id": 2661, "name": "CustomCssVariables" } } @@ -45239,8 +43544,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2755, - 2754 + 2654, + 2653 ] } ], @@ -45545,7 +43850,7 @@ ] }, { - "id": 2723, + "id": 2622, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -45572,7 +43877,7 @@ } }, { - "id": 2727, + "id": 2626, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -45580,14 +43885,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1655, + "line": 1609, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2728, + "id": 2627, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -45604,13 +43909,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1655, + "line": 1609, "character": 30 } ], "signatures": [ { - "id": 2729, + "id": 2628, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -45620,19 +43925,19 @@ }, "parameters": [ { - "id": 2730, + "id": 2629, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2735, + "id": 2634, "name": "MessagePayload" } }, { - "id": 2731, + "id": 2630, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -45642,7 +43947,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2732, + "id": 2631, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -45650,13 +43955,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1662, + "line": 1616, "character": 16 } ], "signatures": [ { - "id": 2733, + "id": 2632, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -45666,7 +43971,7 @@ }, "parameters": [ { - "id": 2734, + "id": 2633, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -45697,7 +44002,7 @@ } }, { - "id": 2724, + "id": 2623, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -45714,21 +44019,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1644, + "line": 1598, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2725, + "id": 2624, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2726, + "id": 2625, "name": "start", "kind": 1024, "kindString": "Property", @@ -45741,7 +44046,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1649, + "line": 1603, "character": 4 } ], @@ -45756,14 +44061,14 @@ "title": "Properties", "kind": 1024, "children": [ - 2726 + 2625 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1644, + "line": 1598, "character": 29 } ] @@ -45771,7 +44076,7 @@ } }, { - "id": 2735, + "id": 2634, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -45788,21 +44093,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1631, + "line": 1585, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2736, + "id": 2635, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2738, + "id": 2637, "name": "data", "kind": 1024, "kindString": "Property", @@ -45810,7 +44115,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1635, + "line": 1589, "character": 4 } ], @@ -45820,7 +44125,7 @@ } }, { - "id": 2739, + "id": 2638, "name": "status", "kind": 1024, "kindString": "Property", @@ -45830,7 +44135,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1637, + "line": 1591, "character": 4 } ], @@ -45840,7 +44145,7 @@ } }, { - "id": 2737, + "id": 2636, "name": "type", "kind": 1024, "kindString": "Property", @@ -45848,7 +44153,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1633, + "line": 1587, "character": 4 } ], @@ -45863,16 +44168,16 @@ "title": "Properties", "kind": 1024, "children": [ - 2738, - 2739, - 2737 + 2637, + 2638, + 2636 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1631, + "line": 1585, "character": 29 } ] @@ -45930,7 +44235,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1875, + "id": 1802, "name": "AnswerService" } } @@ -46192,7 +44497,7 @@ ], "type": { "type": "reference", - "id": 1875, + "id": 1802, "name": "AnswerService" } }, @@ -46279,7 +44584,7 @@ }, "type": { "type": "reference", - "id": 2319, + "id": 2239, "name": "EmbedConfig" } } @@ -46379,14 +44684,14 @@ }, "type": { "type": "reference", - "id": 2319, + "id": 2239, "name": "EmbedConfig" } } ], "type": { "type": "reference", - "id": 1822, + "id": 1749, "name": "AuthEventEmitter" } } @@ -46526,7 +44831,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2694, + "id": 2593, "name": "PrefetchFeatures" } } @@ -46598,63 +44903,7 @@ ] }, { - "id": 25, - "name": "reloadIframe", - "kind": 64, - "kindString": "Function", - "flags": { - "isConst": true - }, - "sources": [ - { - "fileName": "embed/base.ts", - "line": 470, - "character": 13 - } - ], - "signatures": [ - { - "id": 26, - "name": "reloadIframe", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Reloads the ThoughtSpot iframe.", - "tags": [ - { - "tag": "group", - "text": "Global methods" - }, - { - "tag": "version", - "text": "SDK: 1.43.1\n" - } - ] - }, - "parameters": [ - { - "id": 27, - "name": "iFrame", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "reference", - "name": "HTMLIFrameElement" - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - }, - { - "id": 3016, + "id": 2909, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -46670,7 +44919,7 @@ ], "signatures": [ { - "id": 3017, + "id": 2910, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -46864,7 +45113,7 @@ ] }, { - "id": 2934, + "id": 2832, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -46878,7 +45127,7 @@ ], "signatures": [ { - "id": 2935, + "id": 2833, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -46888,7 +45137,7 @@ }, "parameters": [ { - "id": 2936, + "id": 2834, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -46900,7 +45149,7 @@ } }, { - "id": 2937, + "id": 2835, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -46911,7 +45160,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2938, + "id": 2836, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -46934,75 +45183,74 @@ "title": "Enumerations", "kind": 4, "children": [ - 2173, - 1820, - 1805, - 1812, - 1967, - 2315, - 3007, - 3003, - 2999, - 2169, - 1999, - 2705, - 2956, - 2950, - 2716, - 2095, - 3012, - 2959, - 2993, - 2927, - 1958, - 2694, - 2954, - 1983, - 2985 + 2097, + 1747, + 1732, + 1739, + 1894, + 2235, + 2904, + 2900, + 2896, + 2093, + 1926, + 2604, + 2854, + 2848, + 2615, + 2020, + 2857, + 2890, + 2825, + 1885, + 2593, + 2852, + 1910, + 2883 ] }, { "title": "Classes", "kind": 128, "children": [ - 1875, - 1027, - 1340, - 1632, - 614, - 844, - 241, - 58, - 1244, - 1371 + 1802, + 989, + 1289, + 1566, + 590, + 813, + 231, + 55, + 1199, + 1320 ] }, { "title": "Interfaces", "kind": 256, "children": [ - 2604, - 1822, - 1308, - 1588, - 2965, - 2762, - 2750, - 2740, - 2319, - 2699, - 2472, - 1979, - 2924, - 2554, - 2427, - 2371, - 1948, - 1276, - 1544, - 1955, - 2962, - 2753, + 2509, + 1749, + 1260, + 1526, + 2863, + 2661, + 2649, + 2639, + 2239, + 2598, + 2387, + 1906, + 2822, + 2462, + 2345, + 2291, + 1875, + 1231, + 1486, + 1882, + 2860, + 2652, 21, 28 ] @@ -47011,10 +45259,10 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2723, - 2727, - 2724, - 2735 + 2622, + 2626, + 2623, + 2634 ] }, { @@ -47030,10 +45278,9 @@ 1, 4, 7, - 25, - 3016, - 40, - 2934 + 2909, + 37, + 2832 ] } ], From 1866d6cfa11af92fa7219064528473869e77c167 Mon Sep 17 00:00:00 2001 From: shivam-kumar Date: Fri, 7 Nov 2025 11:04:39 +0530 Subject: [PATCH 02/18] SCAL-239528 added exported types from sdk --- src/index.ts | 2 ++ src/types.ts | 43 +++++++++++++++++++++++-------------------- 2 files changed, 25 insertions(+), 20 deletions(-) diff --git a/src/index.ts b/src/index.ts index 10fa08ff..1c396c65 100644 --- a/src/index.ts +++ b/src/index.ts @@ -66,6 +66,7 @@ import { CustomActionsPosition, CustomActionTarget, InterceptedApiType, + Path, } from './types'; import { CustomCssVariables } from './css-variables'; import { SageEmbed, SageViewConfig } from './embed/sage'; @@ -156,6 +157,7 @@ export { CustomActionsPosition, CustomActionTarget, InterceptedApiType, + Path, }; export { resetCachedAuthToken } from './authToken'; diff --git a/src/types.ts b/src/types.ts index a55e97dc..bb1e6277 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1115,36 +1115,39 @@ export interface BaseViewConfig extends ApiInterceptFlags { * Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SageEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed` * @example * - * * // Replace with embed component name. For example, AppEmbed, SearchEmbed, or LiveboardEmbed + * ```js * const embed = new AppEmbed('#tsEmbed', { * ... // other embed view config * allowedRoutes: [Path.Home, Path.Search, Path.Liveboards], * accessDeniedMessage: 'You do not have access to this page' - * }) - * * + * })``` * * // Allow all routes + * ```js * const embed = new AppEmbed('#tsEmbed', { * allowedRoutes: [Path.All] * }) - * */ - allowedRoutes?: Path[]; - /** - * Custom message to display when a user tries to access a route - * that is not in the allowedRoutes list. - * - * Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SageEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed` - * @default 'Access Denied' - * @example - * - * const embed = new AppEmbed('#tsEmbed', { - * allowedRoutes: [Path.Home, Path.Liveboards], - * accessDeniedMessage: 'You do not have permission to access this page. - * Please contact your administrator.' - * }) - * */ - accessDeniedMessage?: string; + * ``` + */ + allowedRoutes?: Path[]; + /** + * Custom message to display when a user tries to access a route + * that is not in the allowedRoutes list. + * + * Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SageEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed` + * @default 'Access Denied' + * @example + * + * ```js + * const embed = new AppEmbed('#tsEmbed', { + * allowedRoutes: [Path.Home, Path.Liveboards], + * accessDeniedMessage: 'You do not have permission to access this page. + * Please contact your administrator.' + * }) + * ``` + */ + accessDeniedMessage?: string; } From b17b828dfa848b7e68928e6da3d116ff772b2cba Mon Sep 17 00:00:00 2001 From: shivam-kumar Date: Sat, 8 Nov 2025 09:50:34 +0530 Subject: [PATCH 03/18] SCAL-239528 added blockedRoutes also --- src/embed/ts-embed.spec.ts | 1 + src/embed/ts-embed.ts | 8 ++- src/types.ts | 25 +++++++ src/utils/allowed-or-blocked-routes.ts | 33 +++++++++ static/typedoc/typedoc.json | 94 +++++++++++++------------- 5 files changed, 113 insertions(+), 48 deletions(-) create mode 100644 src/utils/allowed-or-blocked-routes.ts diff --git a/src/embed/ts-embed.spec.ts b/src/embed/ts-embed.spec.ts index 5d567362..eac893a7 100644 --- a/src/embed/ts-embed.spec.ts +++ b/src/embed/ts-embed.spec.ts @@ -131,6 +131,7 @@ const getMockAppInitPayload = (data: any) => { interceptTimeout: undefined, interceptUrls: [], allowedRoutes: [], + blockedRoutes: [], accessDeniedMessage: '', }; return { diff --git a/src/embed/ts-embed.ts b/src/embed/ts-embed.ts index 96849b49..2f9d59da 100644 --- a/src/embed/ts-embed.ts +++ b/src/embed/ts-embed.ts @@ -36,6 +36,7 @@ import { isUndefined, } from '../utils'; import { getCustomActions } from '../utils/custom-actions'; +import { getBlockedAndAllowedRoutesError } from '../utils/allowed-or-blocked-routes'; import { getThoughtSpotHost, URL_MAX_LENGTH, @@ -460,6 +461,10 @@ export class TsEmbed { error : { type: EmbedErrorCodes.CUSTOM_ACTION_VALIDATION, message: customActionsResult.errors } }); } + const blockedAndAllowedRoutesResult = getBlockedAndAllowedRoutesError(this.viewConfig.blockedRoutes, this.viewConfig.allowedRoutes); + if(blockedAndAllowedRoutesResult.error) { + this.handleError('You cannot have both blockedRoutes and allowedRoutes set at the same time'); + } const baseInitData = { customisations: getCustomisations(this.embedConfig, this.viewConfig), authToken, @@ -479,7 +484,8 @@ export class TsEmbed { this.embedConfig.customVariablesForThirdPartyTools || {}, hiddenListColumns: this.viewConfig.hiddenListColumns || [], customActions: customActionsResult.actions, - allowedRoutes: this.viewConfig.allowedRoutes || [], + allowedRoutes: blockedAndAllowedRoutesResult.allowedRoutes, + blockedRoutes: blockedAndAllowedRoutesResult.blockedRoutes, accessDeniedMessage: this.viewConfig.accessDeniedMessage || '', ...getInterceptInitData(this.viewConfig), }; diff --git a/src/types.ts b/src/types.ts index bb1e6277..fb1c7aee 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1113,6 +1113,7 @@ export interface BaseViewConfig extends ApiInterceptFlags { * Use Path.All to allow all routes without restrictions. * * Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SageEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed` + * @version SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl * @example * * // Replace with embed component name. For example, AppEmbed, SearchEmbed, or LiveboardEmbed @@ -1131,12 +1132,35 @@ export interface BaseViewConfig extends ApiInterceptFlags { * ``` */ allowedRoutes?: Path[]; + + /** + * Array of routes that are blocked from being accessed in the embedded app. + * When specified, navigation will be restricted to only these routes. + * Use Path.All to block all routes without restrictions. + * + * Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SageEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed` + * @version SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl + * @example + * ```js + * const embed = new AppEmbed('#tsEmbed', { + * blockedRoutes: [Path.Home, Path.Search, Path.Liveboards], + * }) + * ``` + * // Block all routes + * ```js + * const embed = new AppEmbed('#tsEmbed', { + * blockedRoutes: [Path.All] + * }) + * ``` + */ + blockedRoutes?: Path[]; /** * Custom message to display when a user tries to access a route * that is not in the allowedRoutes list. * * Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SageEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed` * @default 'Access Denied' + * @version SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl * @example * * ```js @@ -6420,6 +6444,7 @@ export interface DefaultAppInitData { interceptTimeout: number | undefined; interceptUrls: (string | InterceptedApiType)[]; allowedRoutes: Path[]; + blockedRoutes: Path[]; accessDeniedMessage: string; } diff --git a/src/utils/allowed-or-blocked-routes.ts b/src/utils/allowed-or-blocked-routes.ts new file mode 100644 index 00000000..bee56e6b --- /dev/null +++ b/src/utils/allowed-or-blocked-routes.ts @@ -0,0 +1,33 @@ +import { Path } from "src/types"; + +export const getBlockedAndAllowedRoutesError = ( + blockedRoutes: Path[], + allowedRoutes: Path[], +): { allowedRoutes: Path[]; blockedRoutes: Path[]; error: boolean } => { + if (blockedRoutes && allowedRoutes) { + return { + allowedRoutes: [], + blockedRoutes: [], + error: true, + }; + } + if(allowedRoutes){ + return { + allowedRoutes: allowedRoutes, + blockedRoutes: [], + error: false, + }; + } + if(blockedRoutes){ + return { + allowedRoutes: [], + blockedRoutes: blockedRoutes, + error: false, + }; + } + return { + allowedRoutes: [], + blockedRoutes: [], + error: false, + }; +}; \ No newline at end of file diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index e16432e5..7dd754e3 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -26488,7 +26488,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1567, + "id": 1569, "name": "SpotterEmbedViewConfig.additionalFlags" } }, @@ -26530,7 +26530,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1584, + "id": 1586, "name": "SpotterEmbedViewConfig.customActions" } }, @@ -26569,7 +26569,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1571, + "id": 1573, "name": "SpotterEmbedViewConfig.customizations" } }, @@ -26651,7 +26651,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1579, + "id": 1581, "name": "SpotterEmbedViewConfig.disableRedirectionLinksInNewTab" } }, @@ -26729,7 +26729,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1563, + "id": 1565, "name": "SpotterEmbedViewConfig.disabledActionReason" } }, @@ -26772,7 +26772,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1562, + "id": 1564, "name": "SpotterEmbedViewConfig.disabledActions" } }, @@ -26814,7 +26814,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1575, + "id": 1577, "name": "SpotterEmbedViewConfig.doNotTrackPreRenderSize" } }, @@ -26896,7 +26896,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1576, + "id": 1578, "name": "SpotterEmbedViewConfig.enableV2Shell_experimental" } }, @@ -27012,7 +27012,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1578, + "id": 1580, "name": "SpotterEmbedViewConfig.exposeTranslationIDs" } }, @@ -27052,7 +27052,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1559, + "id": 1561, "name": "SpotterEmbedViewConfig.frameParams" } }, @@ -27099,7 +27099,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1564, + "id": 1566, "name": "SpotterEmbedViewConfig.hiddenActions" } }, @@ -27216,7 +27216,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1572, + "id": 1574, "name": "SpotterEmbedViewConfig.insertAsSibling" } }, @@ -27255,7 +27255,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1581, + "id": 1583, "name": "SpotterEmbedViewConfig.linkOverride" } }, @@ -27294,7 +27294,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1566, + "id": 1568, "name": "SpotterEmbedViewConfig.locale" } }, @@ -27333,7 +27333,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1580, + "id": 1582, "name": "SpotterEmbedViewConfig.overrideOrgId" } }, @@ -27372,7 +27372,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1574, + "id": 1576, "name": "SpotterEmbedViewConfig.preRenderId" } }, @@ -27524,7 +27524,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1583, + "id": 1585, "name": "SpotterEmbedViewConfig.showAlerts" } }, @@ -27610,7 +27610,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1565, + "id": 1567, "name": "SpotterEmbedViewConfig.visibleActions" } }, @@ -34497,7 +34497,7 @@ } }, { - "id": 2476, + "id": 2482, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -34765,7 +34765,7 @@ } }, { - "id": 2490, + "id": 2496, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -34886,7 +34886,7 @@ } }, { - "id": 2485, + "id": 2491, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -35220,7 +35220,7 @@ } }, { - "id": 2494, + "id": 2500, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -35257,7 +35257,7 @@ } }, { - "id": 2495, + "id": 2501, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -35329,7 +35329,7 @@ } }, { - "id": 2477, + "id": 2483, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -35363,7 +35363,7 @@ } }, { - "id": 2483, + "id": 2489, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -35549,7 +35549,7 @@ } }, { - "id": 2480, + "id": 2486, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -35944,7 +35944,7 @@ } }, { - "id": 2496, + "id": 2502, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -36023,7 +36023,7 @@ } }, { - "id": 2491, + "id": 2497, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -36060,7 +36060,7 @@ } }, { - "id": 2481, + "id": 2487, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -36097,7 +36097,7 @@ } }, { - "id": 2479, + "id": 2485, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -42087,20 +42087,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1568, + "id": 1570, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1569, + "id": 1571, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1570, + "id": 1572, "name": "key", "kind": 32768, "flags": {}, @@ -42177,7 +42177,7 @@ } }, { - "id": 1571, + "id": 1573, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -42253,7 +42253,7 @@ } }, { - "id": 1579, + "id": 1581, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -42325,7 +42325,7 @@ } }, { - "id": 1563, + "id": 1565, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -42363,7 +42363,7 @@ } }, { - "id": 1562, + "id": 1564, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -42405,7 +42405,7 @@ } }, { - "id": 1575, + "id": 1577, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -42484,7 +42484,7 @@ } }, { - "id": 1576, + "id": 1578, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -42590,7 +42590,7 @@ } }, { - "id": 1578, + "id": 1580, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -42627,7 +42627,7 @@ } }, { - "id": 1559, + "id": 1561, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -42666,7 +42666,7 @@ } }, { - "id": 1564, + "id": 1566, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -42780,7 +42780,7 @@ } }, { - "id": 1572, + "id": 1574, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -42856,7 +42856,7 @@ } }, { - "id": 1566, + "id": 1568, "name": "locale", "kind": 1024, "kindString": "Property", @@ -42894,7 +42894,7 @@ } }, { - "id": 1580, + "id": 1582, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -42932,7 +42932,7 @@ } }, { - "id": 1574, + "id": 1576, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -43069,7 +43069,7 @@ } }, { - "id": 1583, + "id": 1585, "name": "showAlerts", "kind": 1024, "kindString": "Property", From 6e82f26474c5d208aa8e9299fa34270051daae05 Mon Sep 17 00:00:00 2001 From: shivam-kumar Date: Sat, 8 Nov 2025 11:20:11 +0530 Subject: [PATCH 04/18] SCAL-239528 Refactor getBlockedAndAllowedRoutes to remove error suffix and update --- src/embed/ts-embed.ts | 6 +++--- src/utils/allowed-or-blocked-routes.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/embed/ts-embed.ts b/src/embed/ts-embed.ts index 2f9d59da..6e267e00 100644 --- a/src/embed/ts-embed.ts +++ b/src/embed/ts-embed.ts @@ -36,7 +36,7 @@ import { isUndefined, } from '../utils'; import { getCustomActions } from '../utils/custom-actions'; -import { getBlockedAndAllowedRoutesError } from '../utils/allowed-or-blocked-routes'; +import { getBlockedAndAllowedRoutes } from '../utils/allowed-or-blocked-routes'; import { getThoughtSpotHost, URL_MAX_LENGTH, @@ -461,7 +461,7 @@ export class TsEmbed { error : { type: EmbedErrorCodes.CUSTOM_ACTION_VALIDATION, message: customActionsResult.errors } }); } - const blockedAndAllowedRoutesResult = getBlockedAndAllowedRoutesError(this.viewConfig.blockedRoutes, this.viewConfig.allowedRoutes); + const blockedAndAllowedRoutesResult = getBlockedAndAllowedRoutes(this.viewConfig.blockedRoutes, this.viewConfig.allowedRoutes); if(blockedAndAllowedRoutesResult.error) { this.handleError('You cannot have both blockedRoutes and allowedRoutes set at the same time'); } @@ -486,7 +486,7 @@ export class TsEmbed { customActions: customActionsResult.actions, allowedRoutes: blockedAndAllowedRoutesResult.allowedRoutes, blockedRoutes: blockedAndAllowedRoutesResult.blockedRoutes, - accessDeniedMessage: this.viewConfig.accessDeniedMessage || '', + accessDeniedMessage: this.viewConfig.accessDeniedMessage, ...getInterceptInitData(this.viewConfig), }; diff --git a/src/utils/allowed-or-blocked-routes.ts b/src/utils/allowed-or-blocked-routes.ts index bee56e6b..3175c3e9 100644 --- a/src/utils/allowed-or-blocked-routes.ts +++ b/src/utils/allowed-or-blocked-routes.ts @@ -1,6 +1,6 @@ import { Path } from "src/types"; -export const getBlockedAndAllowedRoutesError = ( +export const getBlockedAndAllowedRoutes = ( blockedRoutes: Path[], allowedRoutes: Path[], ): { allowedRoutes: Path[]; blockedRoutes: Path[]; error: boolean } => { From db0287146c5801727345234417b98ae78fa3053a Mon Sep 17 00:00:00 2001 From: shivam-kumar Date: Sat, 8 Nov 2025 11:39:10 +0530 Subject: [PATCH 05/18] SCAL-239528 Refactor Path enum to NavigationPath and app paths --- src/index.ts | 4 +- src/types.ts | 8 +- src/utils/allowed-or-blocked-routes.ts | 8 +- static/typedoc/typedoc.json | 202 +++++++++++++++++++------ 4 files changed, 165 insertions(+), 57 deletions(-) diff --git a/src/index.ts b/src/index.ts index 1c396c65..6dbea3e8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -66,7 +66,7 @@ import { CustomActionsPosition, CustomActionTarget, InterceptedApiType, - Path, + NavigationPath, } from './types'; import { CustomCssVariables } from './css-variables'; import { SageEmbed, SageViewConfig } from './embed/sage'; @@ -157,7 +157,7 @@ export { CustomActionsPosition, CustomActionTarget, InterceptedApiType, - Path, + NavigationPath, }; export { resetCachedAuthToken } from './authToken'; diff --git a/src/types.ts b/src/types.ts index fb1c7aee..f09587b8 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1131,7 +1131,7 @@ export interface BaseViewConfig extends ApiInterceptFlags { * }) * ``` */ - allowedRoutes?: Path[]; + allowedRoutes?: NavigationPath[]; /** * Array of routes that are blocked from being accessed in the embedded app. @@ -1153,7 +1153,7 @@ export interface BaseViewConfig extends ApiInterceptFlags { * }) * ``` */ - blockedRoutes?: Path[]; + blockedRoutes?: NavigationPath[]; /** * Custom message to display when a user tries to access a route * that is not in the allowedRoutes list. @@ -6443,8 +6443,8 @@ export interface DefaultAppInitData { customActions: CustomAction[]; interceptTimeout: number | undefined; interceptUrls: (string | InterceptedApiType)[]; - allowedRoutes: Path[]; - blockedRoutes: Path[]; + allowedRoutes: NavigationPath[]; + blockedRoutes: NavigationPath[]; accessDeniedMessage: string; } diff --git a/src/utils/allowed-or-blocked-routes.ts b/src/utils/allowed-or-blocked-routes.ts index 3175c3e9..8b739132 100644 --- a/src/utils/allowed-or-blocked-routes.ts +++ b/src/utils/allowed-or-blocked-routes.ts @@ -1,9 +1,9 @@ -import { Path } from "src/types"; +import { NavigationPath } from "src/types"; export const getBlockedAndAllowedRoutes = ( - blockedRoutes: Path[], - allowedRoutes: Path[], -): { allowedRoutes: Path[]; blockedRoutes: Path[]; error: boolean } => { + blockedRoutes: NavigationPath[], + allowedRoutes: NavigationPath[], +): { allowedRoutes: NavigationPath[]; blockedRoutes: NavigationPath[]; error: boolean } => { if (blockedRoutes && allowedRoutes) { return { allowedRoutes: [], diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 7dd754e3..356dd7c4 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -9976,7 +9976,17 @@ "kindString": "Enumeration", "flags": {}, "comment": { - "shortText": "Pages within the ThoughtSpot app that can be embedded." + "shortText": "Routes/paths within the ThoughtSpot embedded application that can be controlled\nfor access restrictions.\nUse this enum with the `allowedRoutes` configuration\nand `blockedRoutes` configuration to restrict navigation\nwhich routes users can access in the embedded view.", + "tags": [ + { + "tag": "example", + "text": "\n\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n allowedRoutes: [Path.Home, Path.Search, Path.Liveboard],\n accessDeniedMessage: 'You do not have access to this page'\n});\n```\n\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n blockedRoutes: [Path.Home, Path.Search, Path.Liveboard],\n accessDeniedMessage: 'You do not have access to this page'\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl\n" + } + ] }, "children": [ { @@ -9985,17 +9995,29 @@ "kind": 16, "kindString": "Enumeration member", "flags": {}, - "comment": { - "shortText": "Saved answers listing page" - }, "sources": [ { - "fileName": "embed/app.ts", - "line": 39, + "fileName": "types.ts", + "line": 6225, "character": 4 } ], - "defaultValue": "\"answers\"" + "defaultValue": "\"/insights?/answers\"" + }, + { + "id": 3067, + "name": "AppConnections", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6281, + "character": 4 + } + ], + "defaultValue": "\"/data/app-connections\"" }, { "id": 1891, @@ -10003,17 +10025,29 @@ "kind": 16, "kindString": "Enumeration member", "flags": {}, - "comment": { - "shortText": "Data management page" - }, "sources": [ { - "fileName": "embed/app.ts", - "line": 51, + "fileName": "types.ts", + "line": 6338, "character": 4 } ], - "defaultValue": "\"data\"" + "defaultValue": "\"/answer/create/auto/:dataSourceId\"" + }, + { + "id": 3069, + "name": "AutoWorksheetWithConnectionId", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6283, + "character": 4 + } + ], + "defaultValue": "\"/data/worksheet/create/auto\"" }, { "id": 1886, @@ -10021,17 +10055,29 @@ "kind": 16, "kindString": "Enumeration member", "flags": {}, - "comment": { - "shortText": "Home page" - }, "sources": [ { - "fileName": "embed/app.ts", - "line": 31, + "fileName": "types.ts", + "line": 6228, "character": 4 } ], - "defaultValue": "\"home\"" + "defaultValue": "\"/insights?/conv-assist\"" + }, + { + "id": 3028, + "name": "Copilot", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6226, + "character": 4 + } + ], + "defaultValue": "\"/copilot\"" }, { "id": 1889, @@ -10039,17 +10085,29 @@ "kind": 16, "kindString": "Enumeration member", "flags": {}, - "comment": { - "shortText": "Liveboards listing page" - }, "sources": [ { - "fileName": "embed/app.ts", - "line": 43, + "fileName": "types.ts", + "line": 6227, "character": 4 } ], - "defaultValue": "\"liveboards\"" + "defaultValue": "\"/copilot/chat\"" + }, + { + "id": 3045, + "name": "CreateAiAnswerWithQueryParams", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6249, + "character": 4 + } + ], + "defaultValue": "\"/insights?/create-ai-answer\"" }, { "id": 1893, @@ -10057,17 +10115,29 @@ "kind": 16, "kindString": "Enumeration member", "flags": {}, - "comment": { - "shortText": " Monitor Alerts Page" - }, "sources": [ { - "fileName": "embed/app.ts", - "line": 59, + "fileName": "types.ts", + "line": 6317, "character": 4 } ], - "defaultValue": "\"monitor\"" + "defaultValue": "\"/custom-calendar-test\"" + }, + { + "id": 3094, + "name": "CustomCalendarWizard", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6316, + "character": 4 + } + ], + "defaultValue": "\"/custom-calendar\"" }, { "id": 1887, @@ -10075,17 +10145,29 @@ "kind": 16, "kindString": "Enumeration member", "flags": {}, - "comment": { - "shortText": "Search page" - }, "sources": [ { - "fileName": "embed/app.ts", - "line": 35, + "fileName": "types.ts", + "line": 6277, "character": 4 } ], - "defaultValue": "\"search\"" + "defaultValue": "\"/data/data-governance\"" + }, + { + "id": 3024, + "name": "DataModelPage", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6222, + "character": 4 + } + ], + "defaultValue": "\"/data/*\"" }, { "id": 1892, @@ -10093,22 +10175,48 @@ "kind": 16, "kindString": "Enumeration member", "flags": {}, - "comment": { - "shortText": "SpotIQ listing page" - }, "sources": [ { - "fileName": "embed/app.ts", - "line": 55, + "fileName": "types.ts", + "line": 6271, "character": 4 } ], - "defaultValue": "\"insights\"" - } - ], - "groups": [ + "defaultValue": "\"/data/dataset\"" + }, { - "title": "Enumeration members", + "id": 3060, + "name": "Dbt", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6274, + "character": 4 + } + ], + "defaultValue": "\"/data/dbt\"" + }, + { + "id": 3105, + "name": "DbtIntegration", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6333, + "character": 4 + } + ], + "defaultValue": "\"/data/dbt-integration\"" + }, + { + "id": 3053, + "name": "DeepLinkPage", "kind": 16, "children": [ 1888, From 54f03400c488c22fbcdd8e1e5aaf1395cf0103c6 Mon Sep 17 00:00:00 2001 From: shivam-kumar Date: Sat, 8 Nov 2025 11:55:51 +0530 Subject: [PATCH 06/18] SCAL-239528 added test for routes --- src/embed/ts-embed.ts | 4 +- src/utils/allowed-or-blocked-routes.spec.ts | 137 ++++++++++++++++++++ src/utils/allowed-or-blocked-routes.ts | 6 +- 3 files changed, 144 insertions(+), 3 deletions(-) create mode 100644 src/utils/allowed-or-blocked-routes.spec.ts diff --git a/src/embed/ts-embed.ts b/src/embed/ts-embed.ts index 6e267e00..6af27f94 100644 --- a/src/embed/ts-embed.ts +++ b/src/embed/ts-embed.ts @@ -463,7 +463,7 @@ export class TsEmbed { } const blockedAndAllowedRoutesResult = getBlockedAndAllowedRoutes(this.viewConfig.blockedRoutes, this.viewConfig.allowedRoutes); if(blockedAndAllowedRoutesResult.error) { - this.handleError('You cannot have both blockedRoutes and allowedRoutes set at the same time'); + this.handleError(blockedAndAllowedRoutesResult.message); } const baseInitData = { customisations: getCustomisations(this.embedConfig, this.viewConfig), @@ -486,7 +486,7 @@ export class TsEmbed { customActions: customActionsResult.actions, allowedRoutes: blockedAndAllowedRoutesResult.allowedRoutes, blockedRoutes: blockedAndAllowedRoutesResult.blockedRoutes, - accessDeniedMessage: this.viewConfig.accessDeniedMessage, + accessDeniedMessage: this.viewConfig.accessDeniedMessage || '', ...getInterceptInitData(this.viewConfig), }; diff --git a/src/utils/allowed-or-blocked-routes.spec.ts b/src/utils/allowed-or-blocked-routes.spec.ts new file mode 100644 index 00000000..714718c0 --- /dev/null +++ b/src/utils/allowed-or-blocked-routes.spec.ts @@ -0,0 +1,137 @@ +import { NavigationPath } from '../types'; +import { getBlockedAndAllowedRoutes } from './allowed-or-blocked-routes'; + +describe('getBlockedAndAllowedRoutes', () => { + describe('when both blockedRoutes and allowedRoutes are provided', () => { + it('should return an error', () => { + const blockedRoutes = [NavigationPath.AdminPage]; + const allowedRoutes = [NavigationPath.Home]; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, allowedRoutes); + + expect(result).toEqual({ + allowedRoutes: [], + blockedRoutes: [], + error: true, + message: + 'You cannot have both blockedRoutes and allowedRoutes set at the same time', + }); + }); + }); + + describe('when only allowedRoutes is provided', () => { + it('should return allowedRoutes and empty blockedRoutes', () => { + const allowedRoutes = [NavigationPath.Home, NavigationPath.Answers]; + + const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes); + + expect(result).toEqual({ + allowedRoutes: [NavigationPath.Home, NavigationPath.Answers], + blockedRoutes: [], + error: false, + message: '', + }); + }); + + it('should handle single allowedRoute', () => { + const allowedRoutes = [NavigationPath.Copilot]; + + const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes); + + expect(result).toEqual({ + allowedRoutes: [NavigationPath.Copilot], + blockedRoutes: [], + error: false, + message: '', + }); + }); + + it('should handle multiple allowedRoutes', () => { + const allowedRoutes = [ + NavigationPath.Home, + NavigationPath.Answers, + NavigationPath.Copilot, + NavigationPath.Documents, + ]; + + const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes); + + expect(result).toEqual({ + allowedRoutes: allowedRoutes, + blockedRoutes: [], + error: false, + message: '', + }); + }); + }); + + describe('when only blockedRoutes is provided', () => { + it('should return blockedRoutes and empty allowedRoutes', () => { + const blockedRoutes = [NavigationPath.AdminPage, NavigationPath.Login]; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any); + + expect(result).toEqual({ + allowedRoutes: [], + blockedRoutes: [NavigationPath.AdminPage, NavigationPath.Login], + error: false, + message: '', + }); + }); + + it('should handle single blockedRoute', () => { + const blockedRoutes = [NavigationPath.AdminPage]; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any); + + expect(result).toEqual({ + allowedRoutes: [], + blockedRoutes: [NavigationPath.AdminPage], + error: false, + message: '', + }); + }); + + it('should handle multiple blockedRoutes', () => { + const blockedRoutes = [ + NavigationPath.AdminPage, + NavigationPath.Login, + NavigationPath.ResetPassword, + NavigationPath.DataModelPage, + ]; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any); + + expect(result).toEqual({ + allowedRoutes: [], + blockedRoutes: blockedRoutes, + error: false, + message: '', + }); + }); + }); + + describe('when neither blockedRoutes nor allowedRoutes is provided', () => { + it('should return empty arrays with no error', () => { + const result = getBlockedAndAllowedRoutes(undefined as any, undefined as any); + + expect(result).toEqual({ + allowedRoutes: [], + blockedRoutes: [], + error: false, + message: '', + }); + }); + + it('should return empty arrays when both are null', () => { + const result = getBlockedAndAllowedRoutes(null as any, null as any); + + expect(result).toEqual({ + allowedRoutes: [], + blockedRoutes: [], + error: false, + message: '', + }); + }); + }); +}); diff --git a/src/utils/allowed-or-blocked-routes.ts b/src/utils/allowed-or-blocked-routes.ts index 8b739132..9f86de31 100644 --- a/src/utils/allowed-or-blocked-routes.ts +++ b/src/utils/allowed-or-blocked-routes.ts @@ -3,12 +3,13 @@ import { NavigationPath } from "src/types"; export const getBlockedAndAllowedRoutes = ( blockedRoutes: NavigationPath[], allowedRoutes: NavigationPath[], -): { allowedRoutes: NavigationPath[]; blockedRoutes: NavigationPath[]; error: boolean } => { +): { allowedRoutes: NavigationPath[]; blockedRoutes: NavigationPath[]; error: boolean; message: string } => { if (blockedRoutes && allowedRoutes) { return { allowedRoutes: [], blockedRoutes: [], error: true, + message: 'You cannot have both blockedRoutes and allowedRoutes set at the same time', }; } if(allowedRoutes){ @@ -16,6 +17,7 @@ export const getBlockedAndAllowedRoutes = ( allowedRoutes: allowedRoutes, blockedRoutes: [], error: false, + message: '', }; } if(blockedRoutes){ @@ -23,11 +25,13 @@ export const getBlockedAndAllowedRoutes = ( allowedRoutes: [], blockedRoutes: blockedRoutes, error: false, + message: '', }; } return { allowedRoutes: [], blockedRoutes: [], error: false, + message: '', }; }; \ No newline at end of file From a5c0c53173e2e9e9facbd1ffd720bba1a93f3164 Mon Sep 17 00:00:00 2001 From: shivam-kumar Date: Sat, 8 Nov 2025 12:14:02 +0530 Subject: [PATCH 07/18] SCAL-239528 added embedComponentType in app --- src/embed/ts-embed.ts | 2 +- src/types.ts | 8 +-- src/utils/allowed-or-blocked-routes.spec.ts | 18 +++---- src/utils/allowed-or-blocked-routes.ts | 35 ++++++++++--- static/typedoc/typedoc.json | 54 ++++++++++----------- 5 files changed, 68 insertions(+), 49 deletions(-) diff --git a/src/embed/ts-embed.ts b/src/embed/ts-embed.ts index 6af27f94..716f3881 100644 --- a/src/embed/ts-embed.ts +++ b/src/embed/ts-embed.ts @@ -461,7 +461,7 @@ export class TsEmbed { error : { type: EmbedErrorCodes.CUSTOM_ACTION_VALIDATION, message: customActionsResult.errors } }); } - const blockedAndAllowedRoutesResult = getBlockedAndAllowedRoutes(this.viewConfig.blockedRoutes, this.viewConfig.allowedRoutes); + const blockedAndAllowedRoutesResult = getBlockedAndAllowedRoutes(this.viewConfig.blockedRoutes, this.viewConfig.allowedRoutes, this.viewConfig.embedComponentType || ''); if(blockedAndAllowedRoutesResult.error) { this.handleError(blockedAndAllowedRoutesResult.message); } diff --git a/src/types.ts b/src/types.ts index f09587b8..06fd9b3b 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1131,7 +1131,7 @@ export interface BaseViewConfig extends ApiInterceptFlags { * }) * ``` */ - allowedRoutes?: NavigationPath[]; + allowedRoutes?: (NavigationPath | string)[]; /** * Array of routes that are blocked from being accessed in the embedded app. @@ -1153,7 +1153,7 @@ export interface BaseViewConfig extends ApiInterceptFlags { * }) * ``` */ - blockedRoutes?: NavigationPath[]; + blockedRoutes?: (NavigationPath | string)[]; /** * Custom message to display when a user tries to access a route * that is not in the allowedRoutes list. @@ -6443,8 +6443,8 @@ export interface DefaultAppInitData { customActions: CustomAction[]; interceptTimeout: number | undefined; interceptUrls: (string | InterceptedApiType)[]; - allowedRoutes: NavigationPath[]; - blockedRoutes: NavigationPath[]; + allowedRoutes: ( NavigationPath | string)[]; + blockedRoutes: (NavigationPath | string)[]; accessDeniedMessage: string; } diff --git a/src/utils/allowed-or-blocked-routes.spec.ts b/src/utils/allowed-or-blocked-routes.spec.ts index 714718c0..6e071792 100644 --- a/src/utils/allowed-or-blocked-routes.spec.ts +++ b/src/utils/allowed-or-blocked-routes.spec.ts @@ -7,7 +7,7 @@ describe('getBlockedAndAllowedRoutes', () => { const blockedRoutes = [NavigationPath.AdminPage]; const allowedRoutes = [NavigationPath.Home]; - const result = getBlockedAndAllowedRoutes(blockedRoutes, allowedRoutes); + const result = getBlockedAndAllowedRoutes(blockedRoutes, allowedRoutes, ''); expect(result).toEqual({ allowedRoutes: [], @@ -23,7 +23,7 @@ describe('getBlockedAndAllowedRoutes', () => { it('should return allowedRoutes and empty blockedRoutes', () => { const allowedRoutes = [NavigationPath.Home, NavigationPath.Answers]; - const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes); + const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes, ''); expect(result).toEqual({ allowedRoutes: [NavigationPath.Home, NavigationPath.Answers], @@ -36,7 +36,7 @@ describe('getBlockedAndAllowedRoutes', () => { it('should handle single allowedRoute', () => { const allowedRoutes = [NavigationPath.Copilot]; - const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes); + const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes, ''); expect(result).toEqual({ allowedRoutes: [NavigationPath.Copilot], @@ -54,7 +54,7 @@ describe('getBlockedAndAllowedRoutes', () => { NavigationPath.Documents, ]; - const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes); + const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes, ''); expect(result).toEqual({ allowedRoutes: allowedRoutes, @@ -69,7 +69,7 @@ describe('getBlockedAndAllowedRoutes', () => { it('should return blockedRoutes and empty allowedRoutes', () => { const blockedRoutes = [NavigationPath.AdminPage, NavigationPath.Login]; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any); + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, ''); expect(result).toEqual({ allowedRoutes: [], @@ -82,7 +82,7 @@ describe('getBlockedAndAllowedRoutes', () => { it('should handle single blockedRoute', () => { const blockedRoutes = [NavigationPath.AdminPage]; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any); + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, ''); expect(result).toEqual({ allowedRoutes: [], @@ -100,7 +100,7 @@ describe('getBlockedAndAllowedRoutes', () => { NavigationPath.DataModelPage, ]; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any); + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, ''); expect(result).toEqual({ allowedRoutes: [], @@ -113,7 +113,7 @@ describe('getBlockedAndAllowedRoutes', () => { describe('when neither blockedRoutes nor allowedRoutes is provided', () => { it('should return empty arrays with no error', () => { - const result = getBlockedAndAllowedRoutes(undefined as any, undefined as any); + const result = getBlockedAndAllowedRoutes(undefined as any, undefined as any, ''); expect(result).toEqual({ allowedRoutes: [], @@ -124,7 +124,7 @@ describe('getBlockedAndAllowedRoutes', () => { }); it('should return empty arrays when both are null', () => { - const result = getBlockedAndAllowedRoutes(null as any, null as any); + const result = getBlockedAndAllowedRoutes(null as any, null as any, ''); expect(result).toEqual({ allowedRoutes: [], diff --git a/src/utils/allowed-or-blocked-routes.ts b/src/utils/allowed-or-blocked-routes.ts index 9f86de31..862cec46 100644 --- a/src/utils/allowed-or-blocked-routes.ts +++ b/src/utils/allowed-or-blocked-routes.ts @@ -1,9 +1,28 @@ -import { NavigationPath } from "src/types"; +import { NavigationPath } from 'src/types'; + +const EMBED_COMPONENT_PATHS: Record = { + AppEmbed: [], // app embed - matches all paths + 'bodyless-conversation': ['/embed/conv-assist-answer', '/conv-assist-answer'], // bodyless conversation embed + conversation: ['/embed/insights/conv-assist', '/insights/conv-assist'], // spotter embed + LiveboardEmbed: ['/embed/viz/*', '/insights/pinboard/*'], // liveboard embed - matches all paths + SageEmbed: ['/embed/eureka', '/eureka'], // sage embed + SearchBarEmbed: ['/embed/search-bar-embed', '/search-bar-embed'], // search bar embed + SearchEmbed: ['/embed/answer', '/insights/answer'], // search embed +}; export const getBlockedAndAllowedRoutes = ( - blockedRoutes: NavigationPath[], - allowedRoutes: NavigationPath[], -): { allowedRoutes: NavigationPath[]; blockedRoutes: NavigationPath[]; error: boolean; message: string } => { + blockedRoutes: (NavigationPath | string)[], + allowedRoutes: (NavigationPath | string)[], + embedComponentType: string, +): { + allowedRoutes: (NavigationPath | string)[]; + blockedRoutes: (NavigationPath | string)[]; + error: boolean; + message: string; +} => { + const embedComponentPath = EMBED_COMPONENT_PATHS[embedComponentType]; + const embedAllowedRoutes: string[] = embedComponentPath ? embedComponentPath : []; + if (blockedRoutes && allowedRoutes) { return { allowedRoutes: [], @@ -12,15 +31,15 @@ export const getBlockedAndAllowedRoutes = ( message: 'You cannot have both blockedRoutes and allowedRoutes set at the same time', }; } - if(allowedRoutes){ + if (allowedRoutes) { return { - allowedRoutes: allowedRoutes, + allowedRoutes: [...embedAllowedRoutes, ...allowedRoutes], blockedRoutes: [], error: false, message: '', }; } - if(blockedRoutes){ + if (blockedRoutes) { return { allowedRoutes: [], blockedRoutes: blockedRoutes, @@ -34,4 +53,4 @@ export const getBlockedAndAllowedRoutes = ( error: false, message: '', }; -}; \ No newline at end of file +}; diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 356dd7c4..da7152a2 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -9998,14 +9998,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6225, + "line": 6226, "character": 4 } ], - "defaultValue": "\"/insights?/answers\"" + "defaultValue": "\"/insights/answers\"" }, { - "id": 3067, + "id": 3069, "name": "AppConnections", "kind": 16, "kindString": "Enumeration member", @@ -10013,7 +10013,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6281, + "line": 6283, "character": 4 } ], @@ -10028,14 +10028,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6338, + "line": 6340, "character": 4 } ], "defaultValue": "\"/answer/create/auto/:dataSourceId\"" }, { - "id": 3069, + "id": 3071, "name": "AutoWorksheetWithConnectionId", "kind": 16, "kindString": "Enumeration member", @@ -10043,7 +10043,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6283, + "line": 6285, "character": 4 } ], @@ -10058,14 +10058,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6228, + "line": 6229, "character": 4 } ], - "defaultValue": "\"/insights?/conv-assist\"" + "defaultValue": "\"/insights/conv-assist\"" }, { - "id": 3028, + "id": 3029, "name": "Copilot", "kind": 16, "kindString": "Enumeration member", @@ -10073,7 +10073,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6226, + "line": 6227, "character": 4 } ], @@ -10088,14 +10088,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6227, + "line": 6228, "character": 4 } ], "defaultValue": "\"/copilot/chat\"" }, { - "id": 3045, + "id": 3046, "name": "CreateAiAnswerWithQueryParams", "kind": 16, "kindString": "Enumeration member", @@ -10103,11 +10103,11 @@ "sources": [ { "fileName": "types.ts", - "line": 6249, + "line": 6250, "character": 4 } ], - "defaultValue": "\"/insights?/create-ai-answer\"" + "defaultValue": "\"/insights/create-ai-answer\"" }, { "id": 1893, @@ -10118,14 +10118,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6317, + "line": 6319, "character": 4 } ], "defaultValue": "\"/custom-calendar-test\"" }, { - "id": 3094, + "id": 3096, "name": "CustomCalendarWizard", "kind": 16, "kindString": "Enumeration member", @@ -10133,7 +10133,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6316, + "line": 6318, "character": 4 } ], @@ -10148,14 +10148,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6277, + "line": 6279, "character": 4 } ], "defaultValue": "\"/data/data-governance\"" }, { - "id": 3024, + "id": 3025, "name": "DataModelPage", "kind": 16, "kindString": "Enumeration member", @@ -10163,7 +10163,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6222, + "line": 6223, "character": 4 } ], @@ -10178,14 +10178,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6271, + "line": 6273, "character": 4 } ], "defaultValue": "\"/data/dataset\"" }, { - "id": 3060, + "id": 3062, "name": "Dbt", "kind": 16, "kindString": "Enumeration member", @@ -10193,14 +10193,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6274, + "line": 6276, "character": 4 } ], "defaultValue": "\"/data/dbt\"" }, { - "id": 3105, + "id": 3107, "name": "DbtIntegration", "kind": 16, "kindString": "Enumeration member", @@ -10208,14 +10208,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6333, + "line": 6335, "character": 4 } ], "defaultValue": "\"/data/dbt-integration\"" }, { - "id": 3053, + "id": 3055, "name": "DeepLinkPage", "kind": 16, "children": [ From 2ae76f3a2d92f19ca2a320314d75aa6b86578c2e Mon Sep 17 00:00:00 2001 From: shivam-kumar Date: Mon, 10 Nov 2025 15:30:39 +0530 Subject: [PATCH 08/18] SCAL-239528 implement auto-generation of allowed routes and conflict detection for blocked routes --- src/embed/ts-embed.spec.ts | 210 +++++++ src/embed/ts-embed.ts | 2 +- src/utils/allowed-or-blocked-routes.spec.ts | 595 +++++++++++++++++--- src/utils/allowed-or-blocked-routes.ts | 133 ++++- 4 files changed, 858 insertions(+), 82 deletions(-) diff --git a/src/embed/ts-embed.spec.ts b/src/embed/ts-embed.spec.ts index eac893a7..280e30cf 100644 --- a/src/embed/ts-embed.spec.ts +++ b/src/embed/ts-embed.spec.ts @@ -3848,6 +3848,216 @@ describe('Unit test case for ts embed', () => { }); }); }); + + describe('getDefaultAppInitData with BlockedAndAllowedRoutes', () => { + beforeEach(() => { + jest.spyOn(authInstance, 'doCookielessTokenAuth').mockResolvedValueOnce(true); + jest.spyOn(authService, 'verifyTokenService').mockResolvedValue(true); + init({ + thoughtSpotHost: 'tshost', + authType: AuthType.TrustedAuthTokenCookieless, + getAuthToken: () => Promise.resolve('test_auth_token1'), + }); + }); + + afterEach(() => { + baseInstance.reset(); + jest.clearAllMocks(); + }); + + test('should auto-generate allowedRoutes for LiveboardEmbed when user provides additional allowedRoutes', async () => { + const mockEmbedEventPayload = { + type: EmbedEvent.APP_INIT, + data: {}, + }; + + const liveboardEmbed = new LiveboardEmbed(getRootEl(), { + ...defaultViewConfig, + liveboardId: '33248a57-cc70-4e39-9199-fb5092283381', + allowedRoutes: ['/custom/route'], + }); + + liveboardEmbed.render(); + const mockPort: any = { + postMessage: jest.fn(), + }; + + await executeAfterWait(() => { + const iframe = getIFrameEl(); + postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); + }); + + await executeAfterWait(() => { + const appInitData = mockPort.postMessage.mock.calls[0][0].data; + + expect(appInitData.allowedRoutes).toContain( + '/embed/viz/33248a57-cc70-4e39-9199-fb5092283381', + ); + expect(appInitData.allowedRoutes).toContain( + '/insights/pinboard/33248a57-cc70-4e39-9199-fb5092283381', + ); + + expect(appInitData.allowedRoutes).toContain('/custom/route'); + + expect(appInitData.blockedRoutes).toEqual([]); + }); + }); + + test('should return empty allowedRoutes when only blockedRoutes are provided', async () => { + const mockEmbedEventPayload = { + type: EmbedEvent.APP_INIT, + data: {}, + }; + + const liveboardEmbed = new LiveboardEmbed(getRootEl(), { + ...defaultViewConfig, + liveboardId: '33248a57-cc70-4e39-9199-fb5092283381', + blockedRoutes: ['/admin', '/settings'], + }); + + liveboardEmbed.render(); + const mockPort: any = { + postMessage: jest.fn(), + }; + + await executeAfterWait(() => { + const iframe = getIFrameEl(); + postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); + }); + + await executeAfterWait(() => { + const appInitData = mockPort.postMessage.mock.calls[0][0].data; + + expect(appInitData.allowedRoutes).toEqual([]); + expect(appInitData.blockedRoutes).toEqual(['/admin', '/settings']); + }); + }); + + test('should handle error when both blockedRoutes and allowedRoutes are provided', async () => { + const mockHandleError = jest.fn(); + const mockEmbedEventPayload = { + type: EmbedEvent.APP_INIT, + data: {}, + }; + + const liveboardEmbed = new LiveboardEmbed(getRootEl(), { + ...defaultViewConfig, + liveboardId: '33248a57-cc70-4e39-9199-fb5092283381', + allowedRoutes: ['/home'], + blockedRoutes: ['/admin'], + }); + + jest.spyOn(liveboardEmbed as any, 'handleError').mockImplementation(mockHandleError); + + liveboardEmbed.render(); + const mockPort: any = { + postMessage: jest.fn(), + }; + + await executeAfterWait(() => { + const iframe = getIFrameEl(); + postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); + }); + + await executeAfterWait(() => { + expect(mockHandleError).toHaveBeenCalledWith( + 'You cannot have both blockedRoutes and allowedRoutes set at the same time', + ); + }); + }); + + test('should return empty arrays when no routes are configured', async () => { + const mockEmbedEventPayload = { + type: EmbedEvent.APP_INIT, + data: {}, + }; + + const liveboardEmbed = new LiveboardEmbed(getRootEl(), { + ...defaultViewConfig, + liveboardId: '33248a57-cc70-4e39-9199-fb5092283381', + }); + + liveboardEmbed.render(); + const mockPort: any = { + postMessage: jest.fn(), + }; + + await executeAfterWait(() => { + const iframe = getIFrameEl(); + postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); + }); + + await executeAfterWait(() => { + const appInitData = mockPort.postMessage.mock.calls[0][0].data; + + expect(appInitData.allowedRoutes).toEqual([]); + expect(appInitData.blockedRoutes).toEqual([]); + }); + }); + + test('should auto-generate routes for AppEmbed with pageId and merge with user allowedRoutes', async () => { + const mockEmbedEventPayload = { + type: EmbedEvent.APP_INIT, + data: {}, + }; + + const appEmbed = new AppEmbed(getRootEl(), { + ...defaultViewConfig, + pageId: 'home' as any, + allowedRoutes: ['/custom/app/route'], + }); + + appEmbed.render(); + const mockPort: any = { + postMessage: jest.fn(), + }; + + await executeAfterWait(() => { + const iframe = getIFrameEl(); + postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); + }); + + await executeAfterWait(() => { + const appInitData = mockPort.postMessage.mock.calls[0][0].data; + + expect(appInitData.allowedRoutes).toContain('/home'); + expect(appInitData.allowedRoutes).toContain('/custom/app/route'); + }); + }); + + test('should include accessDeniedMessage in app init data when provided', async () => { + const mockEmbedEventPayload = { + type: EmbedEvent.APP_INIT, + data: {}, + }; + + const customMessage = + 'You do not have permission to access this page. Please contact your administrator.'; + + const liveboardEmbed = new LiveboardEmbed(getRootEl(), { + ...defaultViewConfig, + liveboardId: '33248a57-cc70-4e39-9199-fb5092283381', + accessDeniedMessage: customMessage, + allowedRoutes: ['/dashboard'], + }); + + liveboardEmbed.render(); + const mockPort: any = { + postMessage: jest.fn(), + }; + + await executeAfterWait(() => { + const iframe = getIFrameEl(); + postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); + }); + + await executeAfterWait(() => { + const appInitData = mockPort.postMessage.mock.calls[0][0].data; + expect(appInitData.accessDeniedMessage).toBe(customMessage); + expect(appInitData.allowedRoutes.length).toBeGreaterThan(0); + }); + }); + }); }); diff --git a/src/embed/ts-embed.ts b/src/embed/ts-embed.ts index 716f3881..cba3b961 100644 --- a/src/embed/ts-embed.ts +++ b/src/embed/ts-embed.ts @@ -461,7 +461,7 @@ export class TsEmbed { error : { type: EmbedErrorCodes.CUSTOM_ACTION_VALIDATION, message: customActionsResult.errors } }); } - const blockedAndAllowedRoutesResult = getBlockedAndAllowedRoutes(this.viewConfig.blockedRoutes, this.viewConfig.allowedRoutes, this.viewConfig.embedComponentType || ''); + const blockedAndAllowedRoutesResult = getBlockedAndAllowedRoutes( this.viewConfig.blockedRoutes, this.viewConfig.allowedRoutes, { embedComponentType: (this.viewConfig as any).embedComponentType || '', liveboardId: (this.viewConfig as any).liveboardId, vizId: (this.viewConfig as any).vizId, activeTabId: (this.viewConfig as any).activeTabId, pageId: (this.viewConfig as any).pageId, path: (this.viewConfig as any).path }); if(blockedAndAllowedRoutesResult.error) { this.handleError(blockedAndAllowedRoutesResult.message); } diff --git a/src/utils/allowed-or-blocked-routes.spec.ts b/src/utils/allowed-or-blocked-routes.spec.ts index 6e071792..e07e2220 100644 --- a/src/utils/allowed-or-blocked-routes.spec.ts +++ b/src/utils/allowed-or-blocked-routes.spec.ts @@ -1,13 +1,133 @@ import { NavigationPath } from '../types'; -import { getBlockedAndAllowedRoutes } from './allowed-or-blocked-routes'; +import { + getBlockedAndAllowedRoutes, + generateAutoAllowedRoutes, + RouteGenerationConfig, +} from './allowed-or-blocked-routes'; + +describe('generateAutoAllowedRoutes', () => { + describe('LiveboardEmbed', () => { + it('should generate routes for liveboard with vizId', () => { + const config: RouteGenerationConfig = { + embedComponentType: 'LiveboardEmbed', + liveboardId: '123-abc-456', + vizId: '789-def-012', + }; + + const result = generateAutoAllowedRoutes(config); + + expect(result).toContain('/embed/viz/123-abc-456/789-def-012'); + expect(result).toContain('/embed/viz/123-abc-456'); + expect(result).toContain('/insights/pinboard/123-abc-456'); + }); + + it('should generate routes for liveboard with activeTabId', () => { + const config: RouteGenerationConfig = { + embedComponentType: 'LiveboardEmbed', + liveboardId: '123-abc-456', + activeTabId: 'tab-1', + }; + + const result = generateAutoAllowedRoutes(config); + + expect(result).toContain('/embed/viz/123-abc-456/tab/tab-1'); + expect(result).toContain('/embed/viz/123-abc-456'); + }); + + it('should return empty array when no liveboardId is provided', () => { + const config: RouteGenerationConfig = { + embedComponentType: 'LiveboardEmbed', + }; + + const result = generateAutoAllowedRoutes(config); + + expect(result).toEqual([]); + }); + }); + + describe('AppEmbed', () => { + it('should generate routes for app with specific path', () => { + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + path: 'pinboard/123-abc-456', + }; + + const result = generateAutoAllowedRoutes(config); + + expect(result).toContain('/pinboard/123-abc-456'); + expect(result).toContain('/pinboard/123-abc-456/*'); + }); + + it('should handle path with leading slash', () => { + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + path: '/pinboard/123-abc-456', + }; + + const result = generateAutoAllowedRoutes(config); + + expect(result).toContain('/pinboard/123-abc-456'); + expect(result).toContain('/pinboard/123-abc-456/*'); + }); + + it('should generate routes for home page', () => { + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + pageId: 'home', + }; + + const result = generateAutoAllowedRoutes(config); + + expect(result).toContain('/home'); + }); + + it('should generate routes for search page', () => { + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + pageId: 'search', + }; + + const result = generateAutoAllowedRoutes(config); + + expect(result).toContain('/insights/answer'); + }); + }); + + describe('Other embed types', () => { + it('should return generic paths for SageEmbed', () => { + const config: RouteGenerationConfig = { + embedComponentType: 'SageEmbed', + }; + + const result = generateAutoAllowedRoutes(config); + + expect(result).toContain('/embed/eureka'); + expect(result).toContain('/eureka'); + }); + + it('should return generic paths for SearchEmbed', () => { + const config: RouteGenerationConfig = { + embedComponentType: 'SearchEmbed', + }; + + const result = generateAutoAllowedRoutes(config); + + expect(result).toContain('/embed/answer'); + expect(result).toContain('/insights/answer'); + }); + }); +}); describe('getBlockedAndAllowedRoutes', () => { describe('when both blockedRoutes and allowedRoutes are provided', () => { it('should return an error', () => { const blockedRoutes = [NavigationPath.AdminPage]; const allowedRoutes = [NavigationPath.Home]; + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, allowedRoutes, ''); + const result = getBlockedAndAllowedRoutes(blockedRoutes, allowedRoutes, config); expect(result).toEqual({ allowedRoutes: [], @@ -20,76 +140,84 @@ describe('getBlockedAndAllowedRoutes', () => { }); describe('when only allowedRoutes is provided', () => { - it('should return allowedRoutes and empty blockedRoutes', () => { + it('should return auto-generated routes merged with user allowedRoutes', () => { const allowedRoutes = [NavigationPath.Home, NavigationPath.Answers]; + const config: RouteGenerationConfig = { + embedComponentType: 'LiveboardEmbed', + liveboardId: '123-abc-456', + }; - const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes, ''); + const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes, config); - expect(result).toEqual({ - allowedRoutes: [NavigationPath.Home, NavigationPath.Answers], - blockedRoutes: [], - error: false, - message: '', - }); + expect(result.allowedRoutes).toContain(NavigationPath.Home); + expect(result.allowedRoutes).toContain(NavigationPath.Answers); + expect(result.allowedRoutes).toContain('/embed/viz/123-abc-456'); + expect(result.allowedRoutes).toContain('/insights/pinboard/123-abc-456'); + expect(result.blockedRoutes).toEqual([]); + expect(result.error).toBe(false); + expect(result.message).toBe(''); }); - it('should handle single allowedRoute', () => { + it('should handle single allowedRoute with auto-generation', () => { const allowedRoutes = [NavigationPath.Copilot]; + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + pageId: 'home', + }; - const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes, ''); + const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes, config); - expect(result).toEqual({ - allowedRoutes: [NavigationPath.Copilot], - blockedRoutes: [], - error: false, - message: '', - }); + expect(result.allowedRoutes).toContain(NavigationPath.Copilot); + expect(result.allowedRoutes).toContain('/home'); + expect(result.blockedRoutes).toEqual([]); + expect(result.error).toBe(false); }); - it('should handle multiple allowedRoutes', () => { - const allowedRoutes = [ - NavigationPath.Home, - NavigationPath.Answers, - NavigationPath.Copilot, - NavigationPath.Documents, - ]; + it('should only use user allowedRoutes when no auto-routes are generated', () => { + const allowedRoutes = [NavigationPath.Home, NavigationPath.Answers]; + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + }; - const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes, ''); + const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes, config); - expect(result).toEqual({ - allowedRoutes: allowedRoutes, - blockedRoutes: [], - error: false, - message: '', - }); + expect(result.allowedRoutes).toEqual([ + NavigationPath.Home, + NavigationPath.Answers, + NavigationPath.Login, + ]); + expect(result.blockedRoutes).toEqual([]); + expect(result.error).toBe(false); }); }); describe('when only blockedRoutes is provided', () => { - it('should return blockedRoutes and empty allowedRoutes', () => { + it('should return empty allowedRoutes and blockedRoutes as-is when no conflicts', () => { const blockedRoutes = [NavigationPath.AdminPage, NavigationPath.Login]; + const config: RouteGenerationConfig = { + embedComponentType: 'LiveboardEmbed', + liveboardId: '123-abc-456', + }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, ''); + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); - expect(result).toEqual({ - allowedRoutes: [], - blockedRoutes: [NavigationPath.AdminPage, NavigationPath.Login], - error: false, - message: '', - }); + expect(result.allowedRoutes).toEqual([]); + expect(result.blockedRoutes).toEqual([NavigationPath.AdminPage, NavigationPath.Login]); + expect(result.error).toBe(false); + expect(result.message).toBe(''); }); it('should handle single blockedRoute', () => { const blockedRoutes = [NavigationPath.AdminPage]; + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, ''); + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); - expect(result).toEqual({ - allowedRoutes: [], - blockedRoutes: [NavigationPath.AdminPage], - error: false, - message: '', - }); + expect(result.allowedRoutes).toEqual([]); + expect(result.blockedRoutes).toEqual([NavigationPath.AdminPage]); + expect(result.error).toBe(false); }); it('should handle multiple blockedRoutes', () => { @@ -99,39 +227,370 @@ describe('getBlockedAndAllowedRoutes', () => { NavigationPath.ResetPassword, NavigationPath.DataModelPage, ]; + const config: RouteGenerationConfig = { + embedComponentType: 'LiveboardEmbed', + liveboardId: '123-abc-456', + }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, ''); + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); - expect(result).toEqual({ - allowedRoutes: [], - blockedRoutes: blockedRoutes, - error: false, - message: '', + expect(result.allowedRoutes).toEqual([]); + expect(result.blockedRoutes).toEqual(blockedRoutes); + expect(result.error).toBe(false); + }); + + describe('conflict detection with AppEmbed path', () => { + it('should return error when blockedRoute exactly matches auto-generated route', () => { + const blockedRoutes = ['/pinboard/123-abc-456']; + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + path: 'pinboard/123-abc-456', + }; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + + expect(result.error).toBe(true); + expect(result.message).toBe( + 'You cannot block a route that is being embedded. The path specified in AppEmbed configuration conflicts with blockedRoutes.', + ); + expect(result.allowedRoutes).toEqual([]); + expect(result.blockedRoutes).toEqual([]); + }); + + it('should return error when blockedRoute matches wildcard auto-generated route', () => { + const blockedRoutes = ['/pinboard/123-abc-456/*']; + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + path: 'pinboard/123-abc-456', + }; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + + expect(result.error).toBe(true); + expect(result.message).toBe( + 'You cannot block a route that is being embedded. The path specified in AppEmbed configuration conflicts with blockedRoutes.', + ); + }); + + it('should NOT return error when blockedRoute does not conflict with path', () => { + const blockedRoutes = [NavigationPath.AdminPage, '/different/route']; + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + path: 'pinboard/123-abc-456', + }; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + + expect(result.error).toBe(false); + expect(result.blockedRoutes).toEqual(blockedRoutes); + expect(result.allowedRoutes).toEqual([]); + }); + }); + + describe('conflict detection with AppEmbed pageId', () => { + it('should return error when blockedRoute conflicts with pageId home', () => { + const blockedRoutes = [NavigationPath.Home]; + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + pageId: 'home', + }; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + + expect(result.error).toBe(true); + expect(result.message).toBe( + 'You cannot block a route that is being embedded. The path specified in AppEmbed configuration conflicts with blockedRoutes.', + ); + }); + + it('should return error when blockedRoute conflicts with pageId answers', () => { + const blockedRoutes = [NavigationPath.Answers]; + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + pageId: 'answers', + }; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + + expect(result.error).toBe(true); + }); + + it('should return error when blockedRoute conflicts with any of multiple pageId routes', () => { + const blockedRoutes = [NavigationPath.HomeAnswers]; + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + pageId: 'answers', + }; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + + expect(result.error).toBe(true); + }); + + it('should NOT return error when blockedRoute does not conflict with pageId', () => { + const blockedRoutes = [NavigationPath.AdminPage, NavigationPath.DataModelPage]; + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + pageId: 'home', + }; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + + expect(result.error).toBe(false); + expect(result.blockedRoutes).toEqual(blockedRoutes); + }); + }); + + describe('conflict detection with AppEmbed without config', () => { + it('should NOT return error when AppEmbed has no path or pageId', () => { + const blockedRoutes = [NavigationPath.AdminPage, NavigationPath.Home]; + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + }; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + + expect(result.error).toBe(false); + expect(result.blockedRoutes).toEqual(blockedRoutes); + expect(result.allowedRoutes).toEqual([]); + }); + }); + + describe('conflict detection with LiveboardEmbed', () => { + it('should return error when blockedRoute matches liveboard route', () => { + const blockedRoutes = ['/embed/viz/123-abc-456']; + const config: RouteGenerationConfig = { + embedComponentType: 'LiveboardEmbed', + liveboardId: '123-abc-456', + }; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + + expect(result.error).toBe(true); + expect(result.message).toBe( + 'You cannot block a route that is being embedded. The path specified in AppEmbed configuration conflicts with blockedRoutes.', + ); + }); + + it('should return error when blockedRoute matches pinboard route', () => { + const blockedRoutes = ['/insights/pinboard/123-abc-456']; + const config: RouteGenerationConfig = { + embedComponentType: 'LiveboardEmbed', + liveboardId: '123-abc-456', + }; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + + expect(result.error).toBe(true); + }); + + it('should return error when blockedRoute matches viz with activeTabId', () => { + const blockedRoutes = ['/embed/viz/123-abc-456/tab/tab-1']; + const config: RouteGenerationConfig = { + embedComponentType: 'LiveboardEmbed', + liveboardId: '123-abc-456', + activeTabId: 'tab-1', + }; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + + expect(result.error).toBe(true); + }); + + it('should return error when blockedRoute matches specific vizId route', () => { + const blockedRoutes = ['/embed/viz/123-abc-456/789-def-012']; + const config: RouteGenerationConfig = { + embedComponentType: 'LiveboardEmbed', + liveboardId: '123-abc-456', + vizId: '789-def-012', + }; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + + expect(result.error).toBe(true); + }); + + it('should NOT return error when blockedRoute does not conflict with liveboard', () => { + const blockedRoutes = [NavigationPath.AdminPage, '/embed/viz/different-id']; + const config: RouteGenerationConfig = { + embedComponentType: 'LiveboardEmbed', + liveboardId: '123-abc-456', + }; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + + expect(result.error).toBe(false); + expect(result.blockedRoutes).toEqual(blockedRoutes); + }); + + it('should NOT return error when LiveboardEmbed has no liveboardId', () => { + const blockedRoutes = ['/embed/viz/123-abc-456']; + const config: RouteGenerationConfig = { + embedComponentType: 'LiveboardEmbed', + }; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + + expect(result.error).toBe(false); + expect(result.blockedRoutes).toEqual(blockedRoutes); + }); + }); + + describe('conflict detection with other embed types', () => { + it('should NOT return error for SageEmbed with blockedRoutes', () => { + const blockedRoutes = [NavigationPath.AdminPage]; + const config: RouteGenerationConfig = { + embedComponentType: 'SageEmbed', + }; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + + expect(result.error).toBe(false); + expect(result.blockedRoutes).toEqual(blockedRoutes); + }); + + it('should NOT return error for SearchEmbed with blockedRoutes', () => { + const blockedRoutes = [NavigationPath.AdminPage]; + const config: RouteGenerationConfig = { + embedComponentType: 'SearchEmbed', + }; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + + expect(result.error).toBe(false); + expect(result.blockedRoutes).toEqual(blockedRoutes); + }); + }); + + describe('conflict detection edge cases', () => { + it('should handle multiple blockedRoutes where only one conflicts', () => { + const blockedRoutes = [ + NavigationPath.AdminPage, + '/pinboard/123-abc-456', + NavigationPath.Login, + ]; + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + path: 'pinboard/123-abc-456', + }; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + + expect(result.error).toBe(true); + }); + + it('should handle empty blockedRoutes array', () => { + const blockedRoutes: string[] = []; + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + path: 'pinboard/123', + }; + + const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + + expect(result.error).toBe(false); + expect(result.blockedRoutes).toEqual([]); }); }); }); describe('when neither blockedRoutes nor allowedRoutes is provided', () => { - it('should return empty arrays with no error', () => { - const result = getBlockedAndAllowedRoutes(undefined as any, undefined as any, ''); + it('should return empty arrays', () => { + const config: RouteGenerationConfig = { + embedComponentType: 'LiveboardEmbed', + liveboardId: '123-abc-456', + }; - expect(result).toEqual({ - allowedRoutes: [], - blockedRoutes: [], - error: false, - message: '', - }); + const result = getBlockedAndAllowedRoutes(undefined as any, undefined as any, config); + + expect(result.allowedRoutes).toEqual([]); + expect(result.blockedRoutes).toEqual([]); + expect(result.error).toBe(false); + expect(result.message).toBe(''); }); it('should return empty arrays when both are null', () => { - const result = getBlockedAndAllowedRoutes(null as any, null as any, ''); + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + pageId: 'home', + }; - expect(result).toEqual({ - allowedRoutes: [], - blockedRoutes: [], - error: false, - message: '', - }); + const result = getBlockedAndAllowedRoutes(null as any, null as any, config); + + expect(result.allowedRoutes).toEqual([]); + expect(result.blockedRoutes).toEqual([]); + expect(result.error).toBe(false); + expect(result.message).toBe(''); + }); + + it('should return empty arrays for AppEmbed without config', () => { + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + }; + + const result = getBlockedAndAllowedRoutes(undefined as any, undefined as any, config); + + expect(result.allowedRoutes).toEqual([]); + expect(result.blockedRoutes).toEqual([]); + expect(result.error).toBe(false); + }); + }); + + describe('real-world usage scenarios', () => { + it('should handle LiveboardEmbed with user-provided allowedRoutes', () => { + const allowedRoutes = ['/custom/route']; + const config: RouteGenerationConfig = { + embedComponentType: 'LiveboardEmbed', + liveboardId: '33248a57-cc70-4e39-9199-fb5092283381', + }; + + const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes, config); + + expect(result.allowedRoutes[0]).toBe('/embed/viz/33248a57-cc70-4e39-9199-fb5092283381'); + expect(result.allowedRoutes).toContain('/custom/route'); + expect(result.error).toBe(false); + }); + + it('should handle viz embed with specific vizId', () => { + const allowedRoutes = ['/custom/page']; + const config: RouteGenerationConfig = { + embedComponentType: 'LiveboardEmbed', + liveboardId: '33248a57-cc70-4e39-9199-fb5092283381', + vizId: '730496d6-6903-4601-937e-2c691821af3c', + }; + + const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes, config); + + expect(result.allowedRoutes).toContain( + '/embed/viz/33248a57-cc70-4e39-9199-fb5092283381/730496d6-6903-4601-937e-2c691821af3c', + ); + expect(result.allowedRoutes).toContain('/custom/page'); + }); + + it('should handle AppEmbed with pageId', () => { + const allowedRoutes = [NavigationPath.Copilot]; + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + pageId: 'home', + }; + + const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes, config); + + expect(result.allowedRoutes).toContain('/home'); + expect(result.allowedRoutes).toContain(NavigationPath.Copilot); + }); + + it('should test auto-route generation is working but not used without user routes', () => { + const config: RouteGenerationConfig = { + embedComponentType: 'LiveboardEmbed', + liveboardId: '123-abc', + }; + + const autoRoutes = generateAutoAllowedRoutes(config); + expect(autoRoutes.length).toBeGreaterThan(0); + + const result = getBlockedAndAllowedRoutes(undefined as any, undefined as any, config); + expect(result.allowedRoutes).toEqual([]); }); }); }); diff --git a/src/utils/allowed-or-blocked-routes.ts b/src/utils/allowed-or-blocked-routes.ts index 862cec46..b94ebb58 100644 --- a/src/utils/allowed-or-blocked-routes.ts +++ b/src/utils/allowed-or-blocked-routes.ts @@ -1,28 +1,124 @@ -import { NavigationPath } from 'src/types'; +import { NavigationPath } from '../types'; -const EMBED_COMPONENT_PATHS: Record = { +export interface RouteGenerationConfig { + embedComponentType: string; + liveboardId?: string; + vizId?: string; + activeTabId?: string; + pageId?: string; + path?: string; +} + +const EMBED_COMPONENT_GENERIC_PATHS: Record = { AppEmbed: [], // app embed - matches all paths - 'bodyless-conversation': ['/embed/conv-assist-answer', '/conv-assist-answer'], // bodyless conversation embed - conversation: ['/embed/insights/conv-assist', '/insights/conv-assist'], // spotter embed - LiveboardEmbed: ['/embed/viz/*', '/insights/pinboard/*'], // liveboard embed - matches all paths - SageEmbed: ['/embed/eureka', '/eureka'], // sage embed - SearchBarEmbed: ['/embed/search-bar-embed', '/search-bar-embed'], // search bar embed - SearchEmbed: ['/embed/answer', '/insights/answer'], // search embed + 'bodyless-conversation': ['/embed/conv-assist-answer', '/conv-assist-answer'], + conversation: ['/embed/insights/conv-assist', '/insights/conv-assist'], + LiveboardEmbed: [], // will be dynamically generated + SageEmbed: ['/embed/eureka', '/eureka'], + SearchBarEmbed: ['/embed/search-bar-embed', '/search-bar-embed'], + SearchEmbed: ['/embed/answer', '/insights/answer'], +}; + +/** + * Generate specific allowed routes based on the embed configuration + */ +export const generateAutoAllowedRoutes = (config: RouteGenerationConfig): string[] => { + const { embedComponentType, liveboardId, vizId, activeTabId, pageId, path } = config; + + switch (embedComponentType) { + case 'LiveboardEmbed': { + const routes: string[] = []; + + if (liveboardId) { + routes.push(`/embed/viz/${liveboardId}`); + routes.push(`/insights/pinboard/${liveboardId}`); + routes.push(`/embed/insights/viz/${liveboardId}`); + + if (vizId) { + if (activeTabId) { + routes.push(`/embed/viz/${liveboardId}/tab/${activeTabId}/${vizId}`); + } else { + routes.push(`/embed/viz/${liveboardId}/${vizId}`); + } + } + if (activeTabId && !vizId) { + routes.push(`/embed/viz/${liveboardId}/tab/${activeTabId}`); + } + } + return routes; + } + + case 'AppEmbed': { + const routes: string[] = []; + + if (path) { + const cleanPath = path.startsWith('/') ? path.substring(1) : path; + routes.push(`/${cleanPath}`); + routes.push(`/${cleanPath}/*`); + } else if (pageId) { + const pageRoutes = getPageRoutes(pageId); + routes.push(...pageRoutes); + } + return routes; + } + + default: { + return EMBED_COMPONENT_GENERIC_PATHS[embedComponentType] || []; + } + } +}; + +/** + * Get routes for a specific page ID + */ +const getPageRoutes = (pageId: string): string[] => { + const pageRouteMap: Record = { + answers: [NavigationPath.Answers, NavigationPath.HomeAnswers], + data: [NavigationPath.DataModelPage], + home: [NavigationPath.Home], + liveboards: [NavigationPath.HomeLiveboards], + monitor: [NavigationPath.HomeMonitorAlerts], + pinboards: [NavigationPath.HomeLiveboards], + search: [NavigationPath.Answer], + spotiq: [NavigationPath.HomeSpotIQAnalysis, NavigationPath.Insights], + }; + + return pageRouteMap[pageId] || []; +}; + +/** + * Check if a blocked route conflicts with the auto-generated routes for AppEmbed + */ +const hasConflictingBlockedRoute = ( + blockedRoutes: (NavigationPath | string)[], + autoAllowedRoutes: string[], +): boolean => { + for (const blockedRoute of blockedRoutes) { + for (const autoRoute of autoAllowedRoutes) { + const cleanAutoRoute = autoRoute.replace(/\/\*$/, ''); + const cleanBlockedRoute = blockedRoute.replace(/\/\*$/, ''); + if ( + cleanAutoRoute === cleanBlockedRoute || + cleanAutoRoute.startsWith(cleanBlockedRoute + '/') || + cleanBlockedRoute.startsWith(cleanAutoRoute + '/') + ) { + return true; + } + } + } + return false; }; export const getBlockedAndAllowedRoutes = ( blockedRoutes: (NavigationPath | string)[], allowedRoutes: (NavigationPath | string)[], - embedComponentType: string, + config: RouteGenerationConfig, ): { allowedRoutes: (NavigationPath | string)[]; blockedRoutes: (NavigationPath | string)[]; error: boolean; message: string; } => { - const embedComponentPath = EMBED_COMPONENT_PATHS[embedComponentType]; - const embedAllowedRoutes: string[] = embedComponentPath ? embedComponentPath : []; - if (blockedRoutes && allowedRoutes) { return { allowedRoutes: [], @@ -31,15 +127,26 @@ export const getBlockedAndAllowedRoutes = ( message: 'You cannot have both blockedRoutes and allowedRoutes set at the same time', }; } + const autoAllowedRoutes = generateAutoAllowedRoutes(config); if (allowedRoutes) { return { - allowedRoutes: [...embedAllowedRoutes, ...allowedRoutes], + allowedRoutes: [...autoAllowedRoutes, ...allowedRoutes, NavigationPath.Login], blockedRoutes: [], error: false, message: '', }; } if (blockedRoutes) { + const autoAllowedRoutesForBlockedRoutes = generateAutoAllowedRoutes(config); + if (hasConflictingBlockedRoute(blockedRoutes, autoAllowedRoutesForBlockedRoutes)) { + return { + allowedRoutes: [], + blockedRoutes: [], + error: true, + message: + 'You cannot block a route that is being embedded. The path specified in AppEmbed configuration conflicts with blockedRoutes.', + }; + } return { allowedRoutes: [], blockedRoutes: blockedRoutes, From 8d72b9fcfb577d69dd7b69507134d6077221606d Mon Sep 17 00:00:00 2001 From: shivam-kumar Date: Mon, 10 Nov 2025 20:38:00 +0530 Subject: [PATCH 09/18] SCAL-239528 add test and refactor hasConflictingBlockedRoute to improve blocked route conflict detection --- src/embed/ts-embed.spec.ts | 32 ++++++++++++++++++++++++++ src/utils/allowed-or-blocked-routes.ts | 28 +++++++++++----------- 2 files changed, 46 insertions(+), 14 deletions(-) diff --git a/src/embed/ts-embed.spec.ts b/src/embed/ts-embed.spec.ts index 280e30cf..7375402a 100644 --- a/src/embed/ts-embed.spec.ts +++ b/src/embed/ts-embed.spec.ts @@ -4057,6 +4057,38 @@ describe('Unit test case for ts embed', () => { expect(appInitData.allowedRoutes.length).toBeGreaterThan(0); }); }); + + test('should return error when blockedRoute conflicts with auto-generated route', async () => { + const mockHandleError = jest.fn(); + const mockEmbedEventPayload = { + type: EmbedEvent.APP_INIT, + data: {}, + }; + + const appEmbed = new AppEmbed(getRootEl(), { + ...defaultViewConfig, + pageId: 'home' as any, + blockedRoutes: ['/home'], + }); + + jest.spyOn(appEmbed as any, 'handleError').mockImplementation(mockHandleError); + + appEmbed.render(); + const mockPort: any = { + postMessage: jest.fn(), + }; + + await executeAfterWait(() => { + const iframe = getIFrameEl(); + postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); + }); + + await executeAfterWait(() => { + expect(mockHandleError).toHaveBeenCalledWith( + 'You cannot block a route that is being embedded. The path specified in AppEmbed configuration conflicts with blockedRoutes.', + ); + }); + }); }); }); diff --git a/src/utils/allowed-or-blocked-routes.ts b/src/utils/allowed-or-blocked-routes.ts index b94ebb58..3766b02a 100644 --- a/src/utils/allowed-or-blocked-routes.ts +++ b/src/utils/allowed-or-blocked-routes.ts @@ -93,22 +93,22 @@ const hasConflictingBlockedRoute = ( blockedRoutes: (NavigationPath | string)[], autoAllowedRoutes: string[], ): boolean => { - for (const blockedRoute of blockedRoutes) { - for (const autoRoute of autoAllowedRoutes) { - const cleanAutoRoute = autoRoute.replace(/\/\*$/, ''); - const cleanBlockedRoute = blockedRoute.replace(/\/\*$/, ''); - if ( - cleanAutoRoute === cleanBlockedRoute || - cleanAutoRoute.startsWith(cleanBlockedRoute + '/') || - cleanBlockedRoute.startsWith(cleanAutoRoute + '/') - ) { - return true; - } - } - } - return false; + return blockedRoutes.some((blockedRoute) => { + const cleanBlocked = blockedRoute.replace(/\/\*$/, ''); + return autoAllowedRoutes.some((autoRoute) => { + const cleanAuto = autoRoute.replace(/\/\*$/, ''); + return ( + cleanAuto === cleanBlocked || + cleanAuto.startsWith(cleanBlocked + '/') || + cleanBlocked.startsWith(cleanAuto + '/') + ); + }); + }); }; +/** + * Get blocked and allowed routes + */ export const getBlockedAndAllowedRoutes = ( blockedRoutes: (NavigationPath | string)[], allowedRoutes: (NavigationPath | string)[], From 152cb18dfb86419d82104efcef639fa622780549 Mon Sep 17 00:00:00 2001 From: shivam-kumar Date: Mon, 10 Nov 2025 22:16:24 +0530 Subject: [PATCH 10/18] SCAL-239528 updated the embed types to routeBlocking object --- src/embed/ts-embed.spec.ts | 61 ++--- src/embed/ts-embed.ts | 4 +- src/index.ts | 2 + src/types.ts | 82 +++--- src/utils/allowed-or-blocked-routes.spec.ts | 265 ++++++++++++++------ src/utils/allowed-or-blocked-routes.ts | 16 +- static/typedoc/typedoc.json | 142 +++++------ 7 files changed, 335 insertions(+), 237 deletions(-) diff --git a/src/embed/ts-embed.spec.ts b/src/embed/ts-embed.spec.ts index 7375402a..0edd5b5e 100644 --- a/src/embed/ts-embed.spec.ts +++ b/src/embed/ts-embed.spec.ts @@ -3874,7 +3874,9 @@ describe('Unit test case for ts embed', () => { const liveboardEmbed = new LiveboardEmbed(getRootEl(), { ...defaultViewConfig, liveboardId: '33248a57-cc70-4e39-9199-fb5092283381', - allowedRoutes: ['/custom/route'], + routeBlocking: { + allowedRoutes: ['/custom/route'], + }, }); liveboardEmbed.render(); @@ -3898,6 +3900,7 @@ describe('Unit test case for ts embed', () => { ); expect(appInitData.allowedRoutes).toContain('/custom/route'); + expect(appInitData.allowedRoutes).toContain(NavigationPath.Login); expect(appInitData.blockedRoutes).toEqual([]); }); @@ -3912,7 +3915,9 @@ describe('Unit test case for ts embed', () => { const liveboardEmbed = new LiveboardEmbed(getRootEl(), { ...defaultViewConfig, liveboardId: '33248a57-cc70-4e39-9199-fb5092283381', - blockedRoutes: ['/admin', '/settings'], + routeBlocking: { + blockedRoutes: ['/admin', '/settings'], + }, }); liveboardEmbed.render(); @@ -3943,8 +3948,10 @@ describe('Unit test case for ts embed', () => { const liveboardEmbed = new LiveboardEmbed(getRootEl(), { ...defaultViewConfig, liveboardId: '33248a57-cc70-4e39-9199-fb5092283381', - allowedRoutes: ['/home'], - blockedRoutes: ['/admin'], + routeBlocking: { + allowedRoutes: ['/home'], + blockedRoutes: ['/admin'], + }, }); jest.spyOn(liveboardEmbed as any, 'handleError').mockImplementation(mockHandleError); @@ -3966,35 +3973,6 @@ describe('Unit test case for ts embed', () => { }); }); - test('should return empty arrays when no routes are configured', async () => { - const mockEmbedEventPayload = { - type: EmbedEvent.APP_INIT, - data: {}, - }; - - const liveboardEmbed = new LiveboardEmbed(getRootEl(), { - ...defaultViewConfig, - liveboardId: '33248a57-cc70-4e39-9199-fb5092283381', - }); - - liveboardEmbed.render(); - const mockPort: any = { - postMessage: jest.fn(), - }; - - await executeAfterWait(() => { - const iframe = getIFrameEl(); - postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); - }); - - await executeAfterWait(() => { - const appInitData = mockPort.postMessage.mock.calls[0][0].data; - - expect(appInitData.allowedRoutes).toEqual([]); - expect(appInitData.blockedRoutes).toEqual([]); - }); - }); - test('should auto-generate routes for AppEmbed with pageId and merge with user allowedRoutes', async () => { const mockEmbedEventPayload = { type: EmbedEvent.APP_INIT, @@ -4004,7 +3982,9 @@ describe('Unit test case for ts embed', () => { const appEmbed = new AppEmbed(getRootEl(), { ...defaultViewConfig, pageId: 'home' as any, - allowedRoutes: ['/custom/app/route'], + routeBlocking: { + allowedRoutes: ['/custom/app/route'], + }, }); appEmbed.render(); @@ -4022,6 +4002,7 @@ describe('Unit test case for ts embed', () => { expect(appInitData.allowedRoutes).toContain('/home'); expect(appInitData.allowedRoutes).toContain('/custom/app/route'); + expect(appInitData.allowedRoutes).toContain(NavigationPath.Login); }); }); @@ -4037,8 +4018,10 @@ describe('Unit test case for ts embed', () => { const liveboardEmbed = new LiveboardEmbed(getRootEl(), { ...defaultViewConfig, liveboardId: '33248a57-cc70-4e39-9199-fb5092283381', - accessDeniedMessage: customMessage, - allowedRoutes: ['/dashboard'], + routeBlocking: { + accessDeniedMessage: customMessage, + allowedRoutes: ['/dashboard'], + }, }); liveboardEmbed.render(); @@ -4057,7 +4040,7 @@ describe('Unit test case for ts embed', () => { expect(appInitData.allowedRoutes.length).toBeGreaterThan(0); }); }); - + test('should return error when blockedRoute conflicts with auto-generated route', async () => { const mockHandleError = jest.fn(); const mockEmbedEventPayload = { @@ -4068,7 +4051,9 @@ describe('Unit test case for ts embed', () => { const appEmbed = new AppEmbed(getRootEl(), { ...defaultViewConfig, pageId: 'home' as any, - blockedRoutes: ['/home'], + routeBlocking: { + blockedRoutes: ['/home'], + }, }); jest.spyOn(appEmbed as any, 'handleError').mockImplementation(mockHandleError); diff --git a/src/embed/ts-embed.ts b/src/embed/ts-embed.ts index cba3b961..ab65a535 100644 --- a/src/embed/ts-embed.ts +++ b/src/embed/ts-embed.ts @@ -461,7 +461,7 @@ export class TsEmbed { error : { type: EmbedErrorCodes.CUSTOM_ACTION_VALIDATION, message: customActionsResult.errors } }); } - const blockedAndAllowedRoutesResult = getBlockedAndAllowedRoutes( this.viewConfig.blockedRoutes, this.viewConfig.allowedRoutes, { embedComponentType: (this.viewConfig as any).embedComponentType || '', liveboardId: (this.viewConfig as any).liveboardId, vizId: (this.viewConfig as any).vizId, activeTabId: (this.viewConfig as any).activeTabId, pageId: (this.viewConfig as any).pageId, path: (this.viewConfig as any).path }); + const blockedAndAllowedRoutesResult = getBlockedAndAllowedRoutes( this.viewConfig?.routeBlocking, { embedComponentType: (this.viewConfig as any).embedComponentType || '', liveboardId: (this.viewConfig as any).liveboardId, vizId: (this.viewConfig as any).vizId, activeTabId: (this.viewConfig as any).activeTabId, pageId: (this.viewConfig as any).pageId, path: (this.viewConfig as any).path }); if(blockedAndAllowedRoutesResult.error) { this.handleError(blockedAndAllowedRoutesResult.message); } @@ -486,7 +486,7 @@ export class TsEmbed { customActions: customActionsResult.actions, allowedRoutes: blockedAndAllowedRoutesResult.allowedRoutes, blockedRoutes: blockedAndAllowedRoutesResult.blockedRoutes, - accessDeniedMessage: this.viewConfig.accessDeniedMessage || '', + accessDeniedMessage: blockedAndAllowedRoutesResult.message || '', ...getInterceptInitData(this.viewConfig), }; diff --git a/src/index.ts b/src/index.ts index 6dbea3e8..a90620e4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -67,6 +67,7 @@ import { CustomActionTarget, InterceptedApiType, NavigationPath, + RouteBlocking, } from './types'; import { CustomCssVariables } from './css-variables'; import { SageEmbed, SageViewConfig } from './embed/sage'; @@ -158,6 +159,7 @@ export { CustomActionTarget, InterceptedApiType, NavigationPath, + RouteBlocking, }; export { resetCachedAuthToken } from './authToken'; diff --git a/src/types.ts b/src/types.ts index 06fd9b3b..b01c2598 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1133,46 +1133,48 @@ export interface BaseViewConfig extends ApiInterceptFlags { */ allowedRoutes?: (NavigationPath | string)[]; - /** - * Array of routes that are blocked from being accessed in the embedded app. - * When specified, navigation will be restricted to only these routes. - * Use Path.All to block all routes without restrictions. - * - * Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SageEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed` - * @version SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl - * @example - * ```js - * const embed = new AppEmbed('#tsEmbed', { - * blockedRoutes: [Path.Home, Path.Search, Path.Liveboards], - * }) - * ``` - * // Block all routes - * ```js - * const embed = new AppEmbed('#tsEmbed', { - * blockedRoutes: [Path.All] - * }) - * ``` - */ - blockedRoutes?: (NavigationPath | string)[]; - /** - * Custom message to display when a user tries to access a route - * that is not in the allowedRoutes list. - * - * Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SageEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed` - * @default 'Access Denied' - * @version SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl - * @example - * - * ```js - * const embed = new AppEmbed('#tsEmbed', { - * allowedRoutes: [Path.Home, Path.Liveboards], - * accessDeniedMessage: 'You do not have permission to access this page. - * Please contact your administrator.' - * }) - * ``` - */ - accessDeniedMessage?: string; - + /** + * Array of routes that are blocked from being accessed in the embedded app. + * When specified, all routes except these will be accessible. + * Use Path.All to block all routes. + * + * **Important:** The path that the user initially embeds is always unblocked + * and accessible, regardless of the + * `allowedRoutes` or `blockedRoutes` configuration. + * + * Note: `allowedRoutes` and `blockedRoutes` are mutually exclusive. + * Use only one at a time. + * + * Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SageEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed` + * @version SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl + * @example + * + * // Block specific routes + *```js + * const embed = new AppEmbed('#tsEmbed', { + * blockedRoutes: [Path.Home, Path.Search, Path.Liveboards], + * }) + *``` + **/ + blockedRoutes?: (NavigationPath | string)[]; + + /** + * Custom message to display when a user tries to access a blocked route + * or a route that is not in the allowedRoutes list. + * + * Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SageEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed` + * @default 'Access Denied' + * @version SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl + * @example + * + * + * const embed = new AppEmbed('#tsEmbed', { + * allowedRoutes: [Path.Home, Path.Liveboards], + * accessDeniedMessage: 'You do not have permission to access this page.' + * }) + **/ + accessDeniedMessage?: string; + }; } /** diff --git a/src/utils/allowed-or-blocked-routes.spec.ts b/src/utils/allowed-or-blocked-routes.spec.ts index e07e2220..9dd43032 100644 --- a/src/utils/allowed-or-blocked-routes.spec.ts +++ b/src/utils/allowed-or-blocked-routes.spec.ts @@ -121,13 +121,15 @@ describe('generateAutoAllowedRoutes', () => { describe('getBlockedAndAllowedRoutes', () => { describe('when both blockedRoutes and allowedRoutes are provided', () => { it('should return an error', () => { - const blockedRoutes = [NavigationPath.AdminPage]; - const allowedRoutes = [NavigationPath.Home]; + const routeBlocking = { + blockedRoutes: [NavigationPath.AdminPage], + allowedRoutes: [NavigationPath.Home], + }; const config: RouteGenerationConfig = { embedComponentType: 'AppEmbed', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, allowedRoutes, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result).toEqual({ allowedRoutes: [], @@ -141,45 +143,53 @@ describe('getBlockedAndAllowedRoutes', () => { describe('when only allowedRoutes is provided', () => { it('should return auto-generated routes merged with user allowedRoutes', () => { - const allowedRoutes = [NavigationPath.Home, NavigationPath.Answers]; + const routeBlocking = { + allowedRoutes: [NavigationPath.Home, NavigationPath.Answers], + }; const config: RouteGenerationConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc-456', }; - const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.allowedRoutes).toContain(NavigationPath.Home); expect(result.allowedRoutes).toContain(NavigationPath.Answers); expect(result.allowedRoutes).toContain('/embed/viz/123-abc-456'); expect(result.allowedRoutes).toContain('/insights/pinboard/123-abc-456'); + expect(result.allowedRoutes).toContain(NavigationPath.Login); expect(result.blockedRoutes).toEqual([]); expect(result.error).toBe(false); expect(result.message).toBe(''); }); it('should handle single allowedRoute with auto-generation', () => { - const allowedRoutes = [NavigationPath.Copilot]; + const routeBlocking = { + allowedRoutes: [NavigationPath.Copilot], + }; const config: RouteGenerationConfig = { embedComponentType: 'AppEmbed', pageId: 'home', }; - const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.allowedRoutes).toContain(NavigationPath.Copilot); expect(result.allowedRoutes).toContain('/home'); + expect(result.allowedRoutes).toContain(NavigationPath.Login); expect(result.blockedRoutes).toEqual([]); expect(result.error).toBe(false); }); it('should only use user allowedRoutes when no auto-routes are generated', () => { - const allowedRoutes = [NavigationPath.Home, NavigationPath.Answers]; + const routeBlocking = { + allowedRoutes: [NavigationPath.Home, NavigationPath.Answers], + }; const config: RouteGenerationConfig = { embedComponentType: 'AppEmbed', }; - const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.allowedRoutes).toEqual([ NavigationPath.Home, @@ -189,17 +199,34 @@ describe('getBlockedAndAllowedRoutes', () => { expect(result.blockedRoutes).toEqual([]); expect(result.error).toBe(false); }); + + it('should handle accessDeniedMessage with allowedRoutes', () => { + const routeBlocking = { + allowedRoutes: [NavigationPath.Home], + accessDeniedMessage: 'Custom access denied message', + }; + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + }; + + const result = getBlockedAndAllowedRoutes(routeBlocking, config); + + expect(result.message).toBe('Custom access denied message'); + expect(result.error).toBe(false); + }); }); describe('when only blockedRoutes is provided', () => { it('should return empty allowedRoutes and blockedRoutes as-is when no conflicts', () => { - const blockedRoutes = [NavigationPath.AdminPage, NavigationPath.Login]; + const routeBlocking = { + blockedRoutes: [NavigationPath.AdminPage, NavigationPath.Login], + }; const config: RouteGenerationConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc-456', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.allowedRoutes).toEqual([]); expect(result.blockedRoutes).toEqual([NavigationPath.AdminPage, NavigationPath.Login]); @@ -208,12 +235,14 @@ describe('getBlockedAndAllowedRoutes', () => { }); it('should handle single blockedRoute', () => { - const blockedRoutes = [NavigationPath.AdminPage]; + const routeBlocking = { + blockedRoutes: [NavigationPath.AdminPage], + }; const config: RouteGenerationConfig = { embedComponentType: 'AppEmbed', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.allowedRoutes).toEqual([]); expect(result.blockedRoutes).toEqual([NavigationPath.AdminPage]); @@ -221,33 +250,52 @@ describe('getBlockedAndAllowedRoutes', () => { }); it('should handle multiple blockedRoutes', () => { - const blockedRoutes = [ - NavigationPath.AdminPage, - NavigationPath.Login, - NavigationPath.ResetPassword, - NavigationPath.DataModelPage, - ]; + const routeBlocking = { + blockedRoutes: [ + NavigationPath.AdminPage, + NavigationPath.Login, + NavigationPath.ResetPassword, + NavigationPath.DataModelPage, + ], + }; const config: RouteGenerationConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc-456', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.allowedRoutes).toEqual([]); - expect(result.blockedRoutes).toEqual(blockedRoutes); + expect(result.blockedRoutes).toEqual(routeBlocking.blockedRoutes); + expect(result.error).toBe(false); + }); + + it('should handle accessDeniedMessage with blockedRoutes', () => { + const routeBlocking = { + blockedRoutes: [NavigationPath.AdminPage], + accessDeniedMessage: 'You do not have access to this route', + }; + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + }; + + const result = getBlockedAndAllowedRoutes(routeBlocking, config); + + expect(result.message).toBe('You do not have access to this route'); expect(result.error).toBe(false); }); describe('conflict detection with AppEmbed path', () => { it('should return error when blockedRoute exactly matches auto-generated route', () => { - const blockedRoutes = ['/pinboard/123-abc-456']; + const routeBlocking = { + blockedRoutes: ['/pinboard/123-abc-456'], + }; const config: RouteGenerationConfig = { embedComponentType: 'AppEmbed', path: 'pinboard/123-abc-456', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.error).toBe(true); expect(result.message).toBe( @@ -258,13 +306,15 @@ describe('getBlockedAndAllowedRoutes', () => { }); it('should return error when blockedRoute matches wildcard auto-generated route', () => { - const blockedRoutes = ['/pinboard/123-abc-456/*']; + const routeBlocking = { + blockedRoutes: ['/pinboard/123-abc-456/*'], + }; const config: RouteGenerationConfig = { embedComponentType: 'AppEmbed', path: 'pinboard/123-abc-456', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.error).toBe(true); expect(result.message).toBe( @@ -273,29 +323,33 @@ describe('getBlockedAndAllowedRoutes', () => { }); it('should NOT return error when blockedRoute does not conflict with path', () => { - const blockedRoutes = [NavigationPath.AdminPage, '/different/route']; + const routeBlocking = { + blockedRoutes: [NavigationPath.AdminPage, '/different/route'], + }; const config: RouteGenerationConfig = { embedComponentType: 'AppEmbed', path: 'pinboard/123-abc-456', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.error).toBe(false); - expect(result.blockedRoutes).toEqual(blockedRoutes); + expect(result.blockedRoutes).toEqual(routeBlocking.blockedRoutes); expect(result.allowedRoutes).toEqual([]); }); }); describe('conflict detection with AppEmbed pageId', () => { it('should return error when blockedRoute conflicts with pageId home', () => { - const blockedRoutes = [NavigationPath.Home]; + const routeBlocking = { + blockedRoutes: [NavigationPath.Home], + }; const config: RouteGenerationConfig = { embedComponentType: 'AppEmbed', pageId: 'home', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.error).toBe(true); expect(result.message).toBe( @@ -304,67 +358,77 @@ describe('getBlockedAndAllowedRoutes', () => { }); it('should return error when blockedRoute conflicts with pageId answers', () => { - const blockedRoutes = [NavigationPath.Answers]; + const routeBlocking = { + blockedRoutes: [NavigationPath.Answers], + }; const config: RouteGenerationConfig = { embedComponentType: 'AppEmbed', pageId: 'answers', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.error).toBe(true); }); it('should return error when blockedRoute conflicts with any of multiple pageId routes', () => { - const blockedRoutes = [NavigationPath.HomeAnswers]; + const routeBlocking = { + blockedRoutes: [NavigationPath.HomeAnswers], + }; const config: RouteGenerationConfig = { embedComponentType: 'AppEmbed', pageId: 'answers', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.error).toBe(true); }); it('should NOT return error when blockedRoute does not conflict with pageId', () => { - const blockedRoutes = [NavigationPath.AdminPage, NavigationPath.DataModelPage]; + const routeBlocking = { + blockedRoutes: [NavigationPath.AdminPage, NavigationPath.DataModelPage], + }; const config: RouteGenerationConfig = { embedComponentType: 'AppEmbed', pageId: 'home', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.error).toBe(false); - expect(result.blockedRoutes).toEqual(blockedRoutes); + expect(result.blockedRoutes).toEqual(routeBlocking.blockedRoutes); }); }); describe('conflict detection with AppEmbed without config', () => { it('should NOT return error when AppEmbed has no path or pageId', () => { - const blockedRoutes = [NavigationPath.AdminPage, NavigationPath.Home]; + const routeBlocking = { + blockedRoutes: [NavigationPath.AdminPage, NavigationPath.Home], + }; const config: RouteGenerationConfig = { embedComponentType: 'AppEmbed', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.error).toBe(false); - expect(result.blockedRoutes).toEqual(blockedRoutes); + expect(result.blockedRoutes).toEqual(routeBlocking.blockedRoutes); expect(result.allowedRoutes).toEqual([]); }); }); describe('conflict detection with LiveboardEmbed', () => { it('should return error when blockedRoute matches liveboard route', () => { - const blockedRoutes = ['/embed/viz/123-abc-456']; + const routeBlocking = { + blockedRoutes: ['/embed/viz/123-abc-456'], + }; const config: RouteGenerationConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc-456', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.error).toBe(true); expect(result.message).toBe( @@ -373,120 +437,138 @@ describe('getBlockedAndAllowedRoutes', () => { }); it('should return error when blockedRoute matches pinboard route', () => { - const blockedRoutes = ['/insights/pinboard/123-abc-456']; + const routeBlocking = { + blockedRoutes: ['/insights/pinboard/123-abc-456'], + }; const config: RouteGenerationConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc-456', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.error).toBe(true); }); it('should return error when blockedRoute matches viz with activeTabId', () => { - const blockedRoutes = ['/embed/viz/123-abc-456/tab/tab-1']; + const routeBlocking = { + blockedRoutes: ['/embed/viz/123-abc-456/tab/tab-1'], + }; const config: RouteGenerationConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc-456', activeTabId: 'tab-1', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.error).toBe(true); }); it('should return error when blockedRoute matches specific vizId route', () => { - const blockedRoutes = ['/embed/viz/123-abc-456/789-def-012']; + const routeBlocking = { + blockedRoutes: ['/embed/viz/123-abc-456/789-def-012'], + }; const config: RouteGenerationConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc-456', vizId: '789-def-012', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.error).toBe(true); }); it('should NOT return error when blockedRoute does not conflict with liveboard', () => { - const blockedRoutes = [NavigationPath.AdminPage, '/embed/viz/different-id']; + const routeBlocking = { + blockedRoutes: [NavigationPath.AdminPage, '/embed/viz/different-id'], + }; const config: RouteGenerationConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc-456', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.error).toBe(false); - expect(result.blockedRoutes).toEqual(blockedRoutes); + expect(result.blockedRoutes).toEqual(routeBlocking.blockedRoutes); }); it('should NOT return error when LiveboardEmbed has no liveboardId', () => { - const blockedRoutes = ['/embed/viz/123-abc-456']; + const routeBlocking = { + blockedRoutes: ['/embed/viz/123-abc-456'], + }; const config: RouteGenerationConfig = { embedComponentType: 'LiveboardEmbed', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.error).toBe(false); - expect(result.blockedRoutes).toEqual(blockedRoutes); + expect(result.blockedRoutes).toEqual(routeBlocking.blockedRoutes); }); }); describe('conflict detection with other embed types', () => { it('should NOT return error for SageEmbed with blockedRoutes', () => { - const blockedRoutes = [NavigationPath.AdminPage]; + const routeBlocking = { + blockedRoutes: [NavigationPath.AdminPage], + }; const config: RouteGenerationConfig = { embedComponentType: 'SageEmbed', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.error).toBe(false); - expect(result.blockedRoutes).toEqual(blockedRoutes); + expect(result.blockedRoutes).toEqual(routeBlocking.blockedRoutes); }); it('should NOT return error for SearchEmbed with blockedRoutes', () => { - const blockedRoutes = [NavigationPath.AdminPage]; + const routeBlocking = { + blockedRoutes: [NavigationPath.AdminPage], + }; const config: RouteGenerationConfig = { embedComponentType: 'SearchEmbed', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.error).toBe(false); - expect(result.blockedRoutes).toEqual(blockedRoutes); + expect(result.blockedRoutes).toEqual(routeBlocking.blockedRoutes); }); }); describe('conflict detection edge cases', () => { it('should handle multiple blockedRoutes where only one conflicts', () => { - const blockedRoutes = [ - NavigationPath.AdminPage, - '/pinboard/123-abc-456', - NavigationPath.Login, - ]; + const routeBlocking = { + blockedRoutes: [ + NavigationPath.AdminPage, + '/pinboard/123-abc-456', + NavigationPath.Login, + ], + }; const config: RouteGenerationConfig = { embedComponentType: 'AppEmbed', path: 'pinboard/123-abc-456', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.error).toBe(true); }); it('should handle empty blockedRoutes array', () => { - const blockedRoutes: string[] = []; + const routeBlocking = { + blockedRoutes: [] as string[], + }; const config: RouteGenerationConfig = { embedComponentType: 'AppEmbed', path: 'pinboard/123', }; - const result = getBlockedAndAllowedRoutes(blockedRoutes, undefined as any, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.error).toBe(false); expect(result.blockedRoutes).toEqual([]); @@ -501,7 +583,7 @@ describe('getBlockedAndAllowedRoutes', () => { liveboardId: '123-abc-456', }; - const result = getBlockedAndAllowedRoutes(undefined as any, undefined as any, config); + const result = getBlockedAndAllowedRoutes(undefined, config); expect(result.allowedRoutes).toEqual([]); expect(result.blockedRoutes).toEqual([]); @@ -509,13 +591,13 @@ describe('getBlockedAndAllowedRoutes', () => { expect(result.message).toBe(''); }); - it('should return empty arrays when both are null', () => { + it('should return empty arrays when routeBlocking is empty object', () => { const config: RouteGenerationConfig = { embedComponentType: 'AppEmbed', pageId: 'home', }; - const result = getBlockedAndAllowedRoutes(null as any, null as any, config); + const result = getBlockedAndAllowedRoutes({}, config); expect(result.allowedRoutes).toEqual([]); expect(result.blockedRoutes).toEqual([]); @@ -528,56 +610,81 @@ describe('getBlockedAndAllowedRoutes', () => { embedComponentType: 'AppEmbed', }; - const result = getBlockedAndAllowedRoutes(undefined as any, undefined as any, config); + const result = getBlockedAndAllowedRoutes(undefined, config); expect(result.allowedRoutes).toEqual([]); expect(result.blockedRoutes).toEqual([]); expect(result.error).toBe(false); }); + + it('should handle only accessDeniedMessage without routes', () => { + const routeBlocking = { + accessDeniedMessage: 'Access denied', + }; + const config: RouteGenerationConfig = { + embedComponentType: 'AppEmbed', + }; + + const result = getBlockedAndAllowedRoutes(routeBlocking, config); + + expect(result.allowedRoutes).toEqual([]); + expect(result.blockedRoutes).toEqual([]); + expect(result.error).toBe(false); + expect(result.message).toBe('Access denied'); + }); }); describe('real-world usage scenarios', () => { it('should handle LiveboardEmbed with user-provided allowedRoutes', () => { - const allowedRoutes = ['/custom/route']; + const routeBlocking = { + allowedRoutes: ['/custom/route'], + }; const config: RouteGenerationConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '33248a57-cc70-4e39-9199-fb5092283381', }; - const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.allowedRoutes[0]).toBe('/embed/viz/33248a57-cc70-4e39-9199-fb5092283381'); expect(result.allowedRoutes).toContain('/custom/route'); + expect(result.allowedRoutes).toContain(NavigationPath.Login); expect(result.error).toBe(false); }); it('should handle viz embed with specific vizId', () => { - const allowedRoutes = ['/custom/page']; + const routeBlocking = { + allowedRoutes: ['/custom/page'], + }; const config: RouteGenerationConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '33248a57-cc70-4e39-9199-fb5092283381', vizId: '730496d6-6903-4601-937e-2c691821af3c', }; - const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.allowedRoutes).toContain( '/embed/viz/33248a57-cc70-4e39-9199-fb5092283381/730496d6-6903-4601-937e-2c691821af3c', ); expect(result.allowedRoutes).toContain('/custom/page'); + expect(result.allowedRoutes).toContain(NavigationPath.Login); }); it('should handle AppEmbed with pageId', () => { - const allowedRoutes = [NavigationPath.Copilot]; + const routeBlocking = { + allowedRoutes: [NavigationPath.Copilot], + }; const config: RouteGenerationConfig = { embedComponentType: 'AppEmbed', pageId: 'home', }; - const result = getBlockedAndAllowedRoutes(undefined as any, allowedRoutes, config); + const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.allowedRoutes).toContain('/home'); expect(result.allowedRoutes).toContain(NavigationPath.Copilot); + expect(result.allowedRoutes).toContain(NavigationPath.Login); }); it('should test auto-route generation is working but not used without user routes', () => { @@ -589,7 +696,7 @@ describe('getBlockedAndAllowedRoutes', () => { const autoRoutes = generateAutoAllowedRoutes(config); expect(autoRoutes.length).toBeGreaterThan(0); - const result = getBlockedAndAllowedRoutes(undefined as any, undefined as any, config); + const result = getBlockedAndAllowedRoutes(undefined, config); expect(result.allowedRoutes).toEqual([]); }); }); diff --git a/src/utils/allowed-or-blocked-routes.ts b/src/utils/allowed-or-blocked-routes.ts index 3766b02a..8e5ea4d9 100644 --- a/src/utils/allowed-or-blocked-routes.ts +++ b/src/utils/allowed-or-blocked-routes.ts @@ -1,4 +1,4 @@ -import { NavigationPath } from '../types'; +import { NavigationPath, RouteBlocking } from '../types'; export interface RouteGenerationConfig { embedComponentType: string; @@ -110,15 +110,17 @@ const hasConflictingBlockedRoute = ( * Get blocked and allowed routes */ export const getBlockedAndAllowedRoutes = ( - blockedRoutes: (NavigationPath | string)[], - allowedRoutes: (NavigationPath | string)[], - config: RouteGenerationConfig, + routeBlocking?: RouteBlocking, + config?: RouteGenerationConfig, ): { allowedRoutes: (NavigationPath | string)[]; blockedRoutes: (NavigationPath | string)[]; error: boolean; message: string; } => { + const blockedRoutes = routeBlocking?.blockedRoutes; + const allowedRoutes = routeBlocking?.allowedRoutes; + const accessDeniedMessage = routeBlocking?.accessDeniedMessage || ''; if (blockedRoutes && allowedRoutes) { return { allowedRoutes: [], @@ -133,7 +135,7 @@ export const getBlockedAndAllowedRoutes = ( allowedRoutes: [...autoAllowedRoutes, ...allowedRoutes, NavigationPath.Login], blockedRoutes: [], error: false, - message: '', + message: accessDeniedMessage, }; } if (blockedRoutes) { @@ -151,13 +153,13 @@ export const getBlockedAndAllowedRoutes = ( allowedRoutes: [], blockedRoutes: blockedRoutes, error: false, - message: '', + message: accessDeniedMessage, }; } return { allowedRoutes: [], blockedRoutes: [], error: false, - message: '', + message: accessDeniedMessage, }; }; diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index da7152a2..eaf52177 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -9998,14 +9998,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6226, + "line": 6254, "character": 4 } ], "defaultValue": "\"/insights/answers\"" }, { - "id": 3069, + "id": 3087, "name": "AppConnections", "kind": 16, "kindString": "Enumeration member", @@ -10013,7 +10013,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6283, + "line": 6311, "character": 4 } ], @@ -10028,14 +10028,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6340, + "line": 6368, "character": 4 } ], "defaultValue": "\"/answer/create/auto/:dataSourceId\"" }, { - "id": 3071, + "id": 3089, "name": "AutoWorksheetWithConnectionId", "kind": 16, "kindString": "Enumeration member", @@ -10043,7 +10043,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6285, + "line": 6313, "character": 4 } ], @@ -10058,14 +10058,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6229, + "line": 6257, "character": 4 } ], "defaultValue": "\"/insights/conv-assist\"" }, { - "id": 3029, + "id": 3047, "name": "Copilot", "kind": 16, "kindString": "Enumeration member", @@ -10073,7 +10073,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6227, + "line": 6255, "character": 4 } ], @@ -10088,14 +10088,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6228, + "line": 6256, "character": 4 } ], "defaultValue": "\"/copilot/chat\"" }, { - "id": 3046, + "id": 3064, "name": "CreateAiAnswerWithQueryParams", "kind": 16, "kindString": "Enumeration member", @@ -10103,7 +10103,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6250, + "line": 6278, "character": 4 } ], @@ -10118,14 +10118,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6319, + "line": 6347, "character": 4 } ], "defaultValue": "\"/custom-calendar-test\"" }, { - "id": 3096, + "id": 3114, "name": "CustomCalendarWizard", "kind": 16, "kindString": "Enumeration member", @@ -10133,7 +10133,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6318, + "line": 6346, "character": 4 } ], @@ -10148,14 +10148,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6279, + "line": 6307, "character": 4 } ], "defaultValue": "\"/data/data-governance\"" }, { - "id": 3025, + "id": 3043, "name": "DataModelPage", "kind": 16, "kindString": "Enumeration member", @@ -10163,7 +10163,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6223, + "line": 6251, "character": 4 } ], @@ -10178,14 +10178,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6273, + "line": 6301, "character": 4 } ], "defaultValue": "\"/data/dataset\"" }, { - "id": 3062, + "id": 3080, "name": "Dbt", "kind": 16, "kindString": "Enumeration member", @@ -10193,14 +10193,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6276, + "line": 6304, "character": 4 } ], "defaultValue": "\"/data/dbt\"" }, { - "id": 3107, + "id": 3125, "name": "DbtIntegration", "kind": 16, "kindString": "Enumeration member", @@ -10208,14 +10208,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6335, + "line": 6363, "character": 4 } ], "defaultValue": "\"/data/dbt-integration\"" }, { - "id": 3055, + "id": 3073, "name": "DeepLinkPage", "kind": 16, "children": [ @@ -26596,7 +26596,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1569, + "id": 1573, "name": "SpotterEmbedViewConfig.additionalFlags" } }, @@ -26638,7 +26638,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1586, + "id": 1590, "name": "SpotterEmbedViewConfig.customActions" } }, @@ -26677,7 +26677,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1573, + "id": 1577, "name": "SpotterEmbedViewConfig.customizations" } }, @@ -26759,7 +26759,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1581, + "id": 1585, "name": "SpotterEmbedViewConfig.disableRedirectionLinksInNewTab" } }, @@ -26837,7 +26837,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1565, + "id": 1569, "name": "SpotterEmbedViewConfig.disabledActionReason" } }, @@ -26880,7 +26880,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1564, + "id": 1568, "name": "SpotterEmbedViewConfig.disabledActions" } }, @@ -26922,7 +26922,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1577, + "id": 1581, "name": "SpotterEmbedViewConfig.doNotTrackPreRenderSize" } }, @@ -27004,7 +27004,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1578, + "id": 1582, "name": "SpotterEmbedViewConfig.enableV2Shell_experimental" } }, @@ -27120,7 +27120,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1580, + "id": 1584, "name": "SpotterEmbedViewConfig.exposeTranslationIDs" } }, @@ -27160,7 +27160,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1561, + "id": 1565, "name": "SpotterEmbedViewConfig.frameParams" } }, @@ -27207,7 +27207,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1566, + "id": 1570, "name": "SpotterEmbedViewConfig.hiddenActions" } }, @@ -27324,7 +27324,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1574, + "id": 1578, "name": "SpotterEmbedViewConfig.insertAsSibling" } }, @@ -27363,7 +27363,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1583, + "id": 1587, "name": "SpotterEmbedViewConfig.linkOverride" } }, @@ -27402,7 +27402,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1568, + "id": 1572, "name": "SpotterEmbedViewConfig.locale" } }, @@ -27441,7 +27441,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1582, + "id": 1586, "name": "SpotterEmbedViewConfig.overrideOrgId" } }, @@ -27480,7 +27480,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1576, + "id": 1580, "name": "SpotterEmbedViewConfig.preRenderId" } }, @@ -27632,7 +27632,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1585, + "id": 1589, "name": "SpotterEmbedViewConfig.showAlerts" } }, @@ -27718,7 +27718,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1567, + "id": 1571, "name": "SpotterEmbedViewConfig.visibleActions" } }, @@ -34605,7 +34605,7 @@ } }, { - "id": 2482, + "id": 2494, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -34873,7 +34873,7 @@ } }, { - "id": 2496, + "id": 2508, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -34994,7 +34994,7 @@ } }, { - "id": 2491, + "id": 2503, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -35328,7 +35328,7 @@ } }, { - "id": 2500, + "id": 2512, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -35365,7 +35365,7 @@ } }, { - "id": 2501, + "id": 2513, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -35437,7 +35437,7 @@ } }, { - "id": 2483, + "id": 2495, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -35471,7 +35471,7 @@ } }, { - "id": 2489, + "id": 2501, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -35657,7 +35657,7 @@ } }, { - "id": 2486, + "id": 2498, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -36052,7 +36052,7 @@ } }, { - "id": 2502, + "id": 2514, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -36131,7 +36131,7 @@ } }, { - "id": 2497, + "id": 2509, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -36168,7 +36168,7 @@ } }, { - "id": 2487, + "id": 2499, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -36205,7 +36205,7 @@ } }, { - "id": 2485, + "id": 2497, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -42195,20 +42195,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1570, + "id": 1574, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1571, + "id": 1575, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1572, + "id": 1576, "name": "key", "kind": 32768, "flags": {}, @@ -42285,7 +42285,7 @@ } }, { - "id": 1573, + "id": 1577, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -42361,7 +42361,7 @@ } }, { - "id": 1581, + "id": 1585, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -42433,7 +42433,7 @@ } }, { - "id": 1565, + "id": 1569, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -42471,7 +42471,7 @@ } }, { - "id": 1564, + "id": 1568, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -42513,7 +42513,7 @@ } }, { - "id": 1577, + "id": 1581, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -42592,7 +42592,7 @@ } }, { - "id": 1578, + "id": 1582, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -42698,7 +42698,7 @@ } }, { - "id": 1580, + "id": 1584, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -42735,7 +42735,7 @@ } }, { - "id": 1561, + "id": 1565, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -42774,7 +42774,7 @@ } }, { - "id": 1566, + "id": 1570, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -42888,7 +42888,7 @@ } }, { - "id": 1574, + "id": 1578, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -42964,7 +42964,7 @@ } }, { - "id": 1568, + "id": 1572, "name": "locale", "kind": 1024, "kindString": "Property", @@ -43002,7 +43002,7 @@ } }, { - "id": 1582, + "id": 1586, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -43040,7 +43040,7 @@ } }, { - "id": 1576, + "id": 1580, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -43177,7 +43177,7 @@ } }, { - "id": 1585, + "id": 1589, "name": "showAlerts", "kind": 1024, "kindString": "Property", From a59bd31898f3ddec482ba724ae5894586b4875d3 Mon Sep 17 00:00:00 2001 From: shivam-kumar Date: Tue, 11 Nov 2025 07:11:13 +0530 Subject: [PATCH 11/18] SCAL-239528 Added EmbedAccessDeniedPage --- src/utils/allowed-or-blocked-routes.spec.ts | 24 ++++++++++++++++++--- src/utils/allowed-or-blocked-routes.ts | 20 ++++++++++++++++- 2 files changed, 40 insertions(+), 4 deletions(-) diff --git a/src/utils/allowed-or-blocked-routes.spec.ts b/src/utils/allowed-or-blocked-routes.spec.ts index 9dd43032..49fa48da 100644 --- a/src/utils/allowed-or-blocked-routes.spec.ts +++ b/src/utils/allowed-or-blocked-routes.spec.ts @@ -195,6 +195,7 @@ describe('getBlockedAndAllowedRoutes', () => { NavigationPath.Home, NavigationPath.Answers, NavigationPath.Login, + NavigationPath.EmbedAccessDeniedPage, ]); expect(result.blockedRoutes).toEqual([]); expect(result.error).toBe(false); @@ -219,7 +220,7 @@ describe('getBlockedAndAllowedRoutes', () => { describe('when only blockedRoutes is provided', () => { it('should return empty allowedRoutes and blockedRoutes as-is when no conflicts', () => { const routeBlocking = { - blockedRoutes: [NavigationPath.AdminPage, NavigationPath.Login], + blockedRoutes: [NavigationPath.AdminPage], }; const config: RouteGenerationConfig = { embedComponentType: 'LiveboardEmbed', @@ -229,7 +230,7 @@ describe('getBlockedAndAllowedRoutes', () => { const result = getBlockedAndAllowedRoutes(routeBlocking, config); expect(result.allowedRoutes).toEqual([]); - expect(result.blockedRoutes).toEqual([NavigationPath.AdminPage, NavigationPath.Login]); + expect(result.blockedRoutes).toEqual([NavigationPath.AdminPage]); expect(result.error).toBe(false); expect(result.message).toBe(''); }); @@ -253,7 +254,6 @@ describe('getBlockedAndAllowedRoutes', () => { const routeBlocking = { blockedRoutes: [ NavigationPath.AdminPage, - NavigationPath.Login, NavigationPath.ResetPassword, NavigationPath.DataModelPage, ], @@ -700,4 +700,22 @@ describe('getBlockedAndAllowedRoutes', () => { expect(result.allowedRoutes).toEqual([]); }); }); + + describe('error cases', () => { + it('should return error when blockedRoutes is having login or embed access denied page', () => { + const routeBlocking = { + blockedRoutes: [NavigationPath.Login, NavigationPath.EmbedAccessDeniedPage], + }; + const config: RouteGenerationConfig = { + embedComponentType: 'LiveboardEmbed', + }; + + const result = getBlockedAndAllowedRoutes(routeBlocking, config); + + expect(result.error).toBe(true); + expect(result.message).toBe('You cannot block the login or embed access denied page'); + expect(result.allowedRoutes).toEqual([]); + expect(result.blockedRoutes).toEqual([]); + }); + }); }); diff --git a/src/utils/allowed-or-blocked-routes.ts b/src/utils/allowed-or-blocked-routes.ts index 8e5ea4d9..0328d1b2 100644 --- a/src/utils/allowed-or-blocked-routes.ts +++ b/src/utils/allowed-or-blocked-routes.ts @@ -132,13 +132,31 @@ export const getBlockedAndAllowedRoutes = ( const autoAllowedRoutes = generateAutoAllowedRoutes(config); if (allowedRoutes) { return { - allowedRoutes: [...autoAllowedRoutes, ...allowedRoutes, NavigationPath.Login], + allowedRoutes: [ + ...autoAllowedRoutes, + ...allowedRoutes, + NavigationPath.Login, + NavigationPath.EmbedAccessDeniedPage, + ], blockedRoutes: [], error: false, message: accessDeniedMessage, }; } if (blockedRoutes) { + if ( + hasConflictingBlockedRoute(blockedRoutes, [ + NavigationPath.Login, + NavigationPath.EmbedAccessDeniedPage, + ]) + ) { + return { + allowedRoutes: [], + blockedRoutes: [], + error: true, + message: 'You cannot block the login or embed access denied page', + }; + } const autoAllowedRoutesForBlockedRoutes = generateAutoAllowedRoutes(config); if (hasConflictingBlockedRoute(blockedRoutes, autoAllowedRoutesForBlockedRoutes)) { return { From ae1a09e544b9e5d454fddb49a1d021e4c6ae0397 Mon Sep 17 00:00:00 2001 From: shivam-kumar Date: Tue, 11 Nov 2025 18:20:58 +0530 Subject: [PATCH 12/18] SCAL-239528 refactor getBlockedAndAllowedRoutes to filter out empty routes --- src/embed/ts-embed.ts | 14 ++++++++++++-- src/utils/allowed-or-blocked-routes.ts | 10 ++++++---- 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/src/embed/ts-embed.ts b/src/embed/ts-embed.ts index ab65a535..abbb089d 100644 --- a/src/embed/ts-embed.ts +++ b/src/embed/ts-embed.ts @@ -461,8 +461,18 @@ export class TsEmbed { error : { type: EmbedErrorCodes.CUSTOM_ACTION_VALIDATION, message: customActionsResult.errors } }); } - const blockedAndAllowedRoutesResult = getBlockedAndAllowedRoutes( this.viewConfig?.routeBlocking, { embedComponentType: (this.viewConfig as any).embedComponentType || '', liveboardId: (this.viewConfig as any).liveboardId, vizId: (this.viewConfig as any).vizId, activeTabId: (this.viewConfig as any).activeTabId, pageId: (this.viewConfig as any).pageId, path: (this.viewConfig as any).path }); - if(blockedAndAllowedRoutesResult.error) { + const blockedAndAllowedRoutesResult = getBlockedAndAllowedRoutes( + this.viewConfig?.routeBlocking, + { + embedComponentType: (this.viewConfig as any).embedComponentType || '', + liveboardId: (this.viewConfig as any).liveboardId, + vizId: (this.viewConfig as any).vizId, + activeTabId: (this.viewConfig as any).activeTabId, + pageId: (this.viewConfig as any).pageId, + path: (this.viewConfig as any).path, + }, + ); + if (blockedAndAllowedRoutesResult.error) { this.handleError(blockedAndAllowedRoutesResult.message); } const baseInitData = { diff --git a/src/utils/allowed-or-blocked-routes.ts b/src/utils/allowed-or-blocked-routes.ts index 0328d1b2..1040eaea 100644 --- a/src/utils/allowed-or-blocked-routes.ts +++ b/src/utils/allowed-or-blocked-routes.ts @@ -131,10 +131,11 @@ export const getBlockedAndAllowedRoutes = ( } const autoAllowedRoutes = generateAutoAllowedRoutes(config); if (allowedRoutes) { + const filteredAllowedRoutes = allowedRoutes.filter((route) => route !== undefined && route !== null); return { allowedRoutes: [ ...autoAllowedRoutes, - ...allowedRoutes, + ...filteredAllowedRoutes, NavigationPath.Login, NavigationPath.EmbedAccessDeniedPage, ], @@ -144,8 +145,9 @@ export const getBlockedAndAllowedRoutes = ( }; } if (blockedRoutes) { + const filteredBlockedRoutes = blockedRoutes.filter((route) => route !== undefined && route !== null); if ( - hasConflictingBlockedRoute(blockedRoutes, [ + hasConflictingBlockedRoute(filteredBlockedRoutes, [ NavigationPath.Login, NavigationPath.EmbedAccessDeniedPage, ]) @@ -158,7 +160,7 @@ export const getBlockedAndAllowedRoutes = ( }; } const autoAllowedRoutesForBlockedRoutes = generateAutoAllowedRoutes(config); - if (hasConflictingBlockedRoute(blockedRoutes, autoAllowedRoutesForBlockedRoutes)) { + if (hasConflictingBlockedRoute(filteredBlockedRoutes, autoAllowedRoutesForBlockedRoutes)) { return { allowedRoutes: [], blockedRoutes: [], @@ -169,7 +171,7 @@ export const getBlockedAndAllowedRoutes = ( } return { allowedRoutes: [], - blockedRoutes: blockedRoutes, + blockedRoutes: filteredBlockedRoutes, error: false, message: accessDeniedMessage, }; From ae099c4a8f31b1eb9d3357cbf42c38add7d66a2b Mon Sep 17 00:00:00 2001 From: shivam-kumar Date: Tue, 11 Nov 2025 18:45:27 +0530 Subject: [PATCH 13/18] SCAL-239528 Refactor getPageRoutes to defaultWhiteListedPaths and update route generation --- src/utils/allowed-or-blocked-routes.ts | 14 +- static/typedoc/typedoc.json | 2600 +++++++++++++++++++++++- 2 files changed, 2501 insertions(+), 113 deletions(-) diff --git a/src/utils/allowed-or-blocked-routes.ts b/src/utils/allowed-or-blocked-routes.ts index 1040eaea..3428aa01 100644 --- a/src/utils/allowed-or-blocked-routes.ts +++ b/src/utils/allowed-or-blocked-routes.ts @@ -56,7 +56,7 @@ export const generateAutoAllowedRoutes = (config: RouteGenerationConfig): string routes.push(`/${cleanPath}`); routes.push(`/${cleanPath}/*`); } else if (pageId) { - const pageRoutes = getPageRoutes(pageId); + const pageRoutes = defaultWhiteListedPaths(pageId); routes.push(...pageRoutes); } return routes; @@ -71,11 +71,11 @@ export const generateAutoAllowedRoutes = (config: RouteGenerationConfig): string /** * Get routes for a specific page ID */ -const getPageRoutes = (pageId: string): string[] => { +const defaultWhiteListedPaths = (pageId: string): string[] => { const pageRouteMap: Record = { answers: [NavigationPath.Answers, NavigationPath.HomeAnswers], data: [NavigationPath.DataModelPage], - home: [NavigationPath.Home], + home: [NavigationPath.Home, NavigationPath.RootPage, NavigationPath.HomePage], liveboards: [NavigationPath.HomeLiveboards], monitor: [NavigationPath.HomeMonitorAlerts], pinboards: [NavigationPath.HomeLiveboards], @@ -131,7 +131,9 @@ export const getBlockedAndAllowedRoutes = ( } const autoAllowedRoutes = generateAutoAllowedRoutes(config); if (allowedRoutes) { - const filteredAllowedRoutes = allowedRoutes.filter((route) => route !== undefined && route !== null); + const filteredAllowedRoutes = allowedRoutes.filter( + (route) => route !== undefined && route !== null, + ); return { allowedRoutes: [ ...autoAllowedRoutes, @@ -145,7 +147,9 @@ export const getBlockedAndAllowedRoutes = ( }; } if (blockedRoutes) { - const filteredBlockedRoutes = blockedRoutes.filter((route) => route !== undefined && route !== null); + const filteredBlockedRoutes = blockedRoutes.filter( + (route) => route !== undefined && route !== null, + ); if ( hasConflictingBlockedRoute(filteredBlockedRoutes, [ NavigationPath.Login, diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index eaf52177..0e692194 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -9990,7 +9990,82 @@ }, "children": [ { - "id": 1888, + "id": 3111, + "name": "Actions", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6343, + "character": 4 + } + ], + "defaultValue": "\"/develop/*/actionsCustomization\"" + }, + { + "id": 3044, + "name": "AdminPage", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6252, + "character": 4 + } + ], + "defaultValue": "\"/admin\"" + }, + { + "id": 3066, + "name": "AiAnswer", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6280, + "character": 4 + } + ], + "defaultValue": "\"/insights/ai-answer/:eurekaAnswerSessionId\"" + }, + { + "id": 3042, + "name": "All", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6249, + "character": 4 + } + ], + "defaultValue": "\"/*\"" + }, + { + "id": 3059, + "name": "Answer", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6271, + "character": 4 + } + ], + "defaultValue": "\"/insights/answer\"" + }, + { + "id": 3046, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -9998,234 +10073,1512 @@ "sources": [ { "fileName": "types.ts", - "line": 6254, + "line": 6255, + "character": 4 + } + ], + "defaultValue": "\"/insights/answers\"" + }, + { + "id": 3089, + "name": "AppConnections", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6313, + "character": 4 + } + ], + "defaultValue": "\"/data/app-connections\"" + }, + { + "id": 3128, + "name": "AutoAnswer", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6370, + "character": 4 + } + ], + "defaultValue": "\"/answer/create/auto/:dataSourceId\"" + }, + { + "id": 3091, + "name": "AutoWorksheetWithConnectionId", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6315, + "character": 4 + } + ], + "defaultValue": "\"/data/worksheet/create/auto\"" + }, + { + "id": 3049, + "name": "ConvAssist", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6258, + "character": 4 + } + ], + "defaultValue": "\"/insights/conv-assist\"" + }, + { + "id": 3048, + "name": "Copilot", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6256, + "character": 4 + } + ], + "defaultValue": "\"/copilot\"" + }, + { + "id": 3048, + "name": "CopilotChat", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6257, + "character": 4 + } + ], + "defaultValue": "\"/copilot/chat\"" + }, + { + "id": 3066, + "name": "CreateAiAnswerWithQueryParams", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6280, + "character": 4 + } + ], + "defaultValue": "\"/insights/create-ai-answer\"" + }, + { + "id": 3115, + "name": "CustomCalendarRedirection", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6349, + "character": 4 + } + ], + "defaultValue": "\"/custom-calendar-test\"" + }, + { + "id": 3116, + "name": "CustomCalendarWizard", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6348, + "character": 4 + } + ], + "defaultValue": "\"/custom-calendar\"" + }, + { + "id": 3083, + "name": "DataGovernance", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6309, + "character": 4 + } + ], + "defaultValue": "\"/data/data-governance\"" + }, + { + "id": 3044, + "name": "DataModelPage", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6252, + "character": 4 + } + ], + "defaultValue": "\"/data/*\"" + }, + { + "id": 3077, + "name": "Dataset", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6303, + "character": 4 + } + ], + "defaultValue": "\"/data/dataset\"" + }, + { + "id": 3082, + "name": "Dbt", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6306, + "character": 4 + } + ], + "defaultValue": "\"/data/dbt\"" + }, + { + "id": 3127, + "name": "DbtIntegration", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6365, + "character": 4 + } + ], + "defaultValue": "\"/data/dbt-integration\"" + }, + { + "id": 3075, + "name": "DeepLinkPage", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6293, + "character": 4 + } + ], + "defaultValue": "\"/deeplink\"" + }, + { + "id": 3081, + "name": "Destination", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6305, + "character": 4 + } + ], + "defaultValue": "\"/data/destination\"" + }, + { + "id": 3078, + "name": "DestinationSync", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6302, + "character": 4 + } + ], + "defaultValue": "\"/data/destination-sync\"" + }, + { + "id": 3116, + "name": "DevelopTab", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6350, + "character": 4 + } + ], + "defaultValue": "\"/develop\"" + }, + { + "id": 3051, + "name": "Documents", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6259, + "character": 4 + } + ], + "defaultValue": "\"/insights/doc-search\"" + }, + { + "id": 3062, + "name": "EditACopy", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6274, + "character": 4 + } + ], + "defaultValue": "\"/insights/answer/edit/:editACopySessionKey\"" + }, + { + "id": 3130, + "name": "EmbedAccessDeniedPage", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6371, + "character": 4 + } + ], + "defaultValue": "\"/embed-access-denied\"" + }, + { + "id": 3092, + "name": "Embrace", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6316, + "character": 4 + } + ], + "defaultValue": "\"/data/embrace\"" + }, + { + "id": 3091, + "name": "EmbraceConnections", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6315, + "character": 4 + } + ], + "defaultValue": "\"/data/embrace/connection\"" + }, + { + "id": 3093, + "name": "EmbraceCsvUploadWithDatasourceID", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6317, + "character": 4 + } + ], + "defaultValue": "\"/data/importcsv/loaddata\"" + }, + { + "id": 3063, + "name": "EurekaWithQueryParams", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6277, + "character": 4 + } + ], + "defaultValue": "\"/insights/eureka\"" + }, + { + "id": 3072, + "name": "ForgotPassword", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6292, + "character": 4 + } + ], + "defaultValue": "\"/requestresetpassword\"" + }, + { + "id": 3085, + "name": "FragmentFeedback", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6309, + "character": 4 + } + ], + "defaultValue": "\"/data/fragment-feedback\"" + }, + { + "id": 3117, + "name": "GetStarted", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6351, + "character": 4 + } + ], + "defaultValue": "\"/get-started\"" + }, + { + "id": 3045, + "name": "Home", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6253, + "character": 4 + } + ], + "defaultValue": "\"/home\"" + }, + { + "id": 3052, + "name": "HomeAnswers", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6262, + "character": 4 + } + ], + "defaultValue": "\"/insights/home/answers\"" + }, + { + "id": 3056, + "name": "HomeCreatedByMe", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6266, + "character": 4 + } + ], + "defaultValue": "\"/insights/home/created-by-me\"" + }, + { + "id": 3054, + "name": "HomeFavs", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6264, + "character": 4 + } + ], + "defaultValue": "\"/insights/home/favourites\"" + }, + { + "id": 3055, + "name": "HomeLiveboardSchedules", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6265, + "character": 4 + } + ], + "defaultValue": "\"/insights/home/liveboard-schedules\"" + }, + { + "id": 3053, + "name": "HomeLiveboards", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6263, + "character": 4 + } + ], + "defaultValue": "\"/insights/home/liveboards\"" + }, + { + "id": 3057, + "name": "HomeMonitorAlerts", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6267, + "character": 4 + } + ], + "defaultValue": "\"/insights/home/monitor-alerts\"" + }, + { + "id": 3058, + "name": "HomeSpotIQAnalysis", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6268, + "character": 4 + } + ], + "defaultValue": "\"/insights/home/spotiq-analysis\"" + }, + { + "id": 3118, + "name": "ImportTsl", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6354, + "character": 4 + } + ], + "defaultValue": "\"/import-tsl/:metadataType\"" + }, + { + "id": 3075, + "name": "Insight", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6297, + "character": 4 + } + ], + "defaultValue": "\"/insights/insight/:analysisResultId\"" + }, + { + "id": 3074, + "name": "Insights", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6296, + "character": 4 + } + ], + "defaultValue": "\"/insights\"" + }, + { + "id": 3084, + "name": "LiveBoardVerification", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6308, + "character": 4 + } + ], + "defaultValue": "\"/data/liveboard-verification\"" + }, + { + "id": 3070, + "name": "Login", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6290, + "character": 4 + } + ], + "defaultValue": "\"/login\"" + }, + { + "id": 3109, + "name": "ManageSchedules", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6339, + "character": 4 + } + ], + "defaultValue": "\"/schedules\"" + }, + { + "id": 3069, + "name": "MonitorV2", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6287, + "character": 4 + } + ], + "defaultValue": "\"/monitor\"" + }, + { + "id": 3112, + "name": "OnBoarding", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6344, + "character": 4 + } + ], + "defaultValue": "\"/onboarding\"" + }, + { + "id": 3107, + "name": "OrgsContent", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6335, + "character": 4 + } + ], + "defaultValue": "\"/orgs/content\"" + }, + { + "id": 3108, + "name": "OrgsCreditConsumption", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6336, "character": 4 } ], - "defaultValue": "\"/insights/answers\"" + "defaultValue": "\"/orgs/credit-consumption\"" }, { - "id": 3087, - "name": "AppConnections", + "id": 3106, + "name": "OrgsGroups", "kind": 16, "kindString": "Enumeration member", "flags": {}, "sources": [ { "fileName": "types.ts", - "line": 6311, + "line": 6334, "character": 4 } ], - "defaultValue": "\"/data/app-connections\"" + "defaultValue": "\"/orgs/groups\"" }, { - "id": 1891, - "name": "Data", + "id": 3104, + "name": "OrgsHome", "kind": 16, "kindString": "Enumeration member", "flags": {}, "sources": [ { "fileName": "types.ts", - "line": 6368, + "line": 6332, "character": 4 } ], - "defaultValue": "\"/answer/create/auto/:dataSourceId\"" + "defaultValue": "\"/orgs\"" }, { - "id": 3089, - "name": "AutoWorksheetWithConnectionId", + "id": 3105, + "name": "OrgsUsers", "kind": 16, "kindString": "Enumeration member", "flags": {}, "sources": [ { "fileName": "types.ts", - "line": 6313, + "line": 6333, "character": 4 } ], - "defaultValue": "\"/data/worksheet/create/auto\"" + "defaultValue": "\"/orgs/users\"" }, { - "id": 1886, - "name": "Home", + "id": 3067, + "name": "Pinboard", "kind": 16, "kindString": "Enumeration member", "flags": {}, "sources": [ { "fileName": "types.ts", - "line": 6257, + "line": 6283, "character": 4 } ], - "defaultValue": "\"/insights/conv-assist\"" + "defaultValue": "\"/insights/pinboard/:pinboardId\"" }, { - "id": 3047, - "name": "Copilot", + "id": 3127, + "name": "Purchase", "kind": 16, "kindString": "Enumeration member", "flags": {}, "sources": [ { "fileName": "types.ts", - "line": 6255, + "line": 6367, "character": 4 } ], - "defaultValue": "\"/copilot\"" + "defaultValue": "\"/purchase\"" }, { - "id": 1889, - "name": "Liveboards", + "id": 3086, + "name": "QueryFeedback", "kind": 16, "kindString": "Enumeration member", "flags": {}, "sources": [ { "fileName": "types.ts", - "line": 6256, + "line": 6310, "character": 4 } ], - "defaultValue": "\"/copilot/chat\"" + "defaultValue": "\"/data/query-feedback\"" }, { - "id": 3064, - "name": "CreateAiAnswerWithQueryParams", + "id": 3129, + "name": "RequestAccessForObject", "kind": 16, "kindString": "Enumeration member", "flags": {}, "sources": [ { "fileName": "types.ts", - "line": 6278, + "line": 6369, "character": 4 } ], - "defaultValue": "\"/insights/create-ai-answer\"" + "defaultValue": "\"/requestaccess/:objectType/:objectId\"" }, { - "id": 1893, - "name": "Monitor", + "id": 3071, + "name": "ResetPassword", "kind": 16, "kindString": "Enumeration member", "flags": {}, "sources": [ { "fileName": "types.ts", - "line": 6347, + "line": 6291, "character": 4 } ], - "defaultValue": "\"/custom-calendar-test\"" + "defaultValue": "\"/resetpassword\"" }, { - "id": 3114, - "name": "CustomCalendarWizard", + "id": 3060, + "name": "SavedAnswer", "kind": 16, "kindString": "Enumeration member", "flags": {}, "sources": [ { "fileName": "types.ts", - "line": 6346, + "line": 6272, "character": 4 } ], - "defaultValue": "\"/custom-calendar\"" + "defaultValue": "\"/insights/saved-answer/:answerId\"" }, { - "id": 1887, - "name": "Search", + "id": 3126, + "name": "SchemaViewer", "kind": 16, "kindString": "Enumeration member", "flags": {}, "sources": [ { "fileName": "types.ts", - "line": 6307, + "line": 6364, "character": 4 } ], - "defaultValue": "\"/data/data-governance\"" + "defaultValue": "\"/schema-viewer/table\"" }, { - "id": 3043, - "name": "DataModelPage", + "id": 3110, + "name": "Setup", "kind": 16, "kindString": "Enumeration member", "flags": {}, "sources": [ { "fileName": "types.ts", - "line": 6251, + "line": 6342, "character": 4 } ], - "defaultValue": "\"/data/*\"" + "defaultValue": "\"/setup\"" }, { - "id": 1892, - "name": "SpotIQ", + "id": 3124, + "name": "SpotAppDetailsAndAnalytics", "kind": 16, "kindString": "Enumeration member", "flags": {}, "sources": [ { "fileName": "types.ts", - "line": 6301, + "line": 6362, "character": 4 } ], - "defaultValue": "\"/data/dataset\"" + "defaultValue": "\"/spotapp\"" }, { - "id": 3080, - "name": "Dbt", + "id": 3123, + "name": "SpotAppsAdmin", "kind": 16, "kindString": "Enumeration member", "flags": {}, "sources": [ { "fileName": "types.ts", - "line": 6304, + "line": 6361, "character": 4 } ], - "defaultValue": "\"/data/dbt\"" + "defaultValue": "\"/data/spotapps-admin\"" }, { - "id": 3125, - "name": "DbtIntegration", + "id": 3082, + "name": "SqlView", "kind": 16, "kindString": "Enumeration member", "flags": {}, "sources": [ { "fileName": "types.ts", - "line": 6363, + "line": 6306, "character": 4 } ], - "defaultValue": "\"/data/dbt-integration\"" + "defaultValue": "\"/data/sql-view\"" }, { - "id": 3073, - "name": "DeepLinkPage", + "id": 3076, + "name": "Table", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6300, + "character": 4 + } + ], + "defaultValue": "\"/data/tables\"" + }, + { + "id": 3100, + "name": "TeamsAuthenticationOptions", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6326, + "character": 4 + } + ], + "defaultValue": "\"/teams/authentication\"" + }, + { + "id": 3102, + "name": "TeamsDataUsage", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6328, + "character": 4 + } + ], + "defaultValue": "\"/teams/data-usage\"" + }, + { + "id": 3103, + "name": "TeamsManageSubscription", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6329, + "character": 4 + } + ], + "defaultValue": "\"/teams/manage-subscription\"" + }, + { + "id": 3094, + "name": "TeamsMembers", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6320, + "character": 4 + } + ], + "defaultValue": "\"/teams/members\"" + }, + { + "id": 3095, + "name": "TeamsPendingInvitations", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6321, + "character": 4 + } + ], + "defaultValue": "\"/teams/pending-invitations\"" + }, + { + "id": 3096, + "name": "TeamsPlanOptions", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6322, + "character": 4 + } + ], + "defaultValue": "\"/teams/plan-options\"" + }, + { + "id": 3097, + "name": "TeamsSpotIQOptions", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6323, + "character": 4 + } + ], + "defaultValue": "\"/teams/spotiq\"" + }, + { + "id": 3098, + "name": "TeamsStyleCustomizationOptions", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6324, + "character": 4 + } + ], + "defaultValue": "\"/teams/style-customization\"" + }, + { + "id": 3101, + "name": "TeamsSystemActivitiesOptions", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6327, + "character": 4 + } + ], + "defaultValue": "\"/teams/system-activities\"" + }, + { + "id": 3099, + "name": "TeamsUserManagementOptions", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6325, + "character": 4 + } + ], + "defaultValue": "\"/teams/user-management\"" + }, + { + "id": 3119, + "name": "TmlUtility", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6355, + "character": 4 + } + ], + "defaultValue": "\"/data/utilities/tml\"" + }, + { + "id": 3065, + "name": "TrainSageWithQueryParams", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6279, + "character": 4 + } + ], + "defaultValue": "\"/data/sage/train\"" + }, + { + "id": 3050, + "name": "TryEverywhere", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6258, + "character": 4 + } + ], + "defaultValue": "\"/everywhere\"" + }, + { + "id": 3120, + "name": "TslEditor", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6356, + "character": 4 + } + ], + "defaultValue": "\"/tsl-editor\"" + }, + { + "id": 3121, + "name": "TslEditorSingleFile", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6357, + "character": 4 + } + ], + "defaultValue": "\"/tsl-editor/:metadataType/:metadataGuid\"" + }, + { + "id": 3122, + "name": "UpdateTslFromFile", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6358, + "character": 4 + } + ], + "defaultValue": "\"/import-tsl/:metadataType/:metadataGuid\"" + }, + { + "id": 3113, + "name": "UserPreference", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6345, + "character": 4 + } + ], + "defaultValue": "\"/user-preference\"" + }, + { + "id": 3079, + "name": "Utilities", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6303, + "character": 4 + } + ], + "defaultValue": "\"/data/utilities\"" + }, + { + "id": 3061, + "name": "View", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6273, + "character": 4 + } + ], + "defaultValue": "\"/insights/view/:answerId\"" + }, + { + "id": 3068, + "name": "VizBoard", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6284, + "character": 4 + } + ], + "defaultValue": "\"/insights/pinboard/:pinboardId/:vizId\"" + }, + { + "id": 3088, + "name": "WorksheetCreate", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6312, + "character": 4 + } + ], + "defaultValue": "\"/worksheet/create\"" + }, + { + "id": 3090, + "name": "csvUpload", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6314, + "character": 4 + } + ], + "defaultValue": "\"/data/importcsv\"" + } + ], + "groups": [ + { + "title": "Enumeration members", + "kind": 16, + "children": [ + 3111, + 3044, + 3066, + 3042, + 3059, + 3046, + 3087, + 3128, + 3089, + 3049, + 3047, + 3048, + 3064, + 3115, + 3114, + 3083, + 3043, + 3077, + 3080, + 3125, + 3073, + 3081, + 3078, + 3116, + 3051, + 3062, + 3130, + 3092, + 3091, + 3093, + 3063, + 3072, + 3085, + 3117, + 3045, + 3052, + 3056, + 3054, + 3055, + 3053, + 3057, + 3058, + 3118, + 3075, + 3074, + 3084, + 3070, + 3109, + 3069, + 3112, + 3107, + 3108, + 3106, + 3104, + 3105, + 3067, + 3127, + 3086, + 3129, + 3071, + 3060, + 3126, + 3110, + 3124, + 3123, + 3082, + 3076, + 3100, + 3102, + 3103, + 3094, + 3095, + 3096, + 3097, + 3098, + 3101, + 3099, + 3119, + 3065, + 3050, + 3120, + 3121, + 3122, + 3113, + 3079, + 3061, + 3068, + 3088, + 3090 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 6248, + "character": 12 + } + ] + }, + { + "id": 1973, + "name": "Page", + "kind": 4, + "kindString": "Enumeration", + "flags": {}, + "comment": { + "shortText": "Pages within the ThoughtSpot app that can be embedded." + }, + "children": [ + { + "id": 1976, + "name": "Answers", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Saved answers listing page" + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 39, + "character": 4 + } + ], + "defaultValue": "\"answers\"" + }, + { + "id": 1979, + "name": "Data", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Data management page" + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 51, + "character": 4 + } + ], + "defaultValue": "\"data\"" + }, + { + "id": 1974, + "name": "Home", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Home page" + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 31, + "character": 4 + } + ], + "defaultValue": "\"home\"" + }, + { + "id": 1977, + "name": "Liveboards", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Liveboards listing page" + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 43, + "character": 4 + } + ], + "defaultValue": "\"liveboards\"" + }, + { + "id": 1981, + "name": "Monitor", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": " Monitor Alerts Page" + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 59, + "character": 4 + } + ], + "defaultValue": "\"monitor\"" + }, + { + "id": 1975, + "name": "Search", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Search page" + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 35, + "character": 4 + } + ], + "defaultValue": "\"search\"" + }, + { + "id": 1980, + "name": "SpotIQ", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "SpotIQ listing page" + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 55, + "character": 4 + } + ], + "defaultValue": "\"insights\"" + } + ], + "groups": [ + { + "title": "Enumeration members", "kind": 16, "children": [ - 1888, - 1891, - 1886, - 1889, - 1893, - 1887, - 1892 + 1976, + 1979, + 1974, + 1977, + 1981, + 1975, + 1980 ] } ], @@ -23649,7 +25002,84 @@ } }, { - "id": 2590, + "id": 2692, + "name": "interceptTimeout", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6420, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "AllEmbedViewConfig.interceptTimeout" + } + }, + { + "id": 2691, + "name": "interceptUrls", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6403, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "AllEmbedViewConfig.interceptUrls" + } + }, + { + "id": 2717, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -23896,8 +25326,8 @@ }, "sources": [ { - "fileName": "embed/app.ts", - "line": 519, + "fileName": "types.ts", + "line": 6387, "character": 4 } ], @@ -26190,7 +27620,121 @@ } }, { - "id": 1285, + "id": 1346, + "name": "interceptTimeout", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6420, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "id": 1309, + "name": "SpotterAgentEmbedViewConfig.interceptTimeout" + } + }, + { + "id": 1345, + "name": "interceptUrls", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6403, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "id": 1308, + "name": "SpotterAgentEmbedViewConfig.interceptUrls" + } + }, + { + "id": 1344, + "name": "isOnBeforeGetVizDataInterceptEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6387, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "id": 1307, + "name": "SpotterAgentEmbedViewConfig.isOnBeforeGetVizDataInterceptEnabled" + } + }, + { + "id": 1335, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -27329,7 +28873,121 @@ } }, { - "id": 1562, + "id": 1646, + "name": "interceptTimeout", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6420, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "id": 1598, + "name": "SpotterEmbedViewConfig.interceptTimeout" + } + }, + { + "id": 1645, + "name": "interceptUrls", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6403, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "id": 1597, + "name": "SpotterEmbedViewConfig.interceptUrls" + } + }, + { + "id": 1644, + "name": "isOnBeforeGetVizDataInterceptEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6387, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "id": 1596, + "name": "SpotterEmbedViewConfig.isOnBeforeGetVizDataInterceptEnabled" + } + }, + { + "id": 1635, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -35066,7 +36724,84 @@ } }, { - "id": 2459, + "id": 2550, + "name": "interceptTimeout", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6420, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseViewConfig.interceptTimeout" + } + }, + { + "id": 2549, + "name": "interceptUrls", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6403, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseViewConfig.interceptUrls" + } + }, + { + "id": 2571, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -35294,7 +37029,41 @@ } }, { - "id": 2407, + "id": 2548, + "name": "isOnBeforeGetVizDataInterceptEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6387, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseViewConfig.isOnBeforeGetVizDataInterceptEnabled" + } + }, + { + "id": 2511, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -36330,7 +38099,100 @@ ] }, { - "id": 1906, + "id": 3131, + "name": "RouteBlocking", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 3134, + "name": "accessDeniedMessage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6376, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3133, + "name": "allowedRoutes", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6375, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 3132, + "name": "blockedRoutes", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6374, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 3134, + 3133, + 3132 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 6373, + "character": 17 + } + ] + }, + { + "id": 1994, "name": "RuntimeFilter", "kind": 256, "kindString": "Interface", @@ -37511,7 +39373,118 @@ } }, { - "id": 2505, + "id": 2628, + "name": "interceptTimeout", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6420, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.interceptTimeout" + } + }, + { + "id": 2627, + "name": "interceptUrls", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6403, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.interceptUrls" + } + }, + { + "id": 2626, + "name": "isOnBeforeGetVizDataInterceptEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6387, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.isOnBeforeGetVizDataInterceptEnabled" + } + }, + { + "id": 2617, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -38897,7 +40870,118 @@ } }, { - "id": 2374, + "id": 2482, + "name": "interceptTimeout", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6420, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseViewConfig.interceptTimeout" + } + }, + { + "id": 2481, + "name": "interceptUrls", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6403, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseViewConfig.interceptUrls" + } + }, + { + "id": 2480, + "name": "isOnBeforeGetVizDataInterceptEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6387, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseViewConfig.isOnBeforeGetVizDataInterceptEnabled" + } + }, + { + "id": 2470, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -40643,7 +42727,84 @@ } }, { - "id": 2307, + "id": 2440, + "name": "interceptTimeout", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6420, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.interceptTimeout" + } + }, + { + "id": 2439, + "name": "interceptUrls", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6403, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.interceptUrls" + } + }, + { + "id": 2438, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -40662,8 +42823,8 @@ }, "sources": [ { - "fileName": "embed/search.ts", - "line": 285, + "fileName": "types.ts", + "line": 6387, "character": 4 } ], @@ -41833,7 +43994,118 @@ } }, { - "id": 1256, + "id": 1309, + "name": "interceptTimeout", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6420, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.interceptTimeout" + } + }, + { + "id": 1308, + "name": "interceptUrls", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6403, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.interceptUrls" + } + }, + { + "id": 1307, + "name": "isOnBeforeGetVizDataInterceptEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6387, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.isOnBeforeGetVizDataInterceptEnabled" + } + }, + { + "id": 1298, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -42926,7 +45198,118 @@ } }, { - "id": 1522, + "id": 1598, + "name": "interceptTimeout", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6420, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.interceptTimeout" + } + }, + { + "id": 1597, + "name": "interceptUrls", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6403, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.interceptUrls" + } + }, + { + "id": 1596, + "name": "isOnBeforeGetVizDataInterceptEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6387, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.isOnBeforeGetVizDataInterceptEnabled" + } + }, + { + "id": 1587, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -45011,7 +47394,7 @@ ] }, { - "id": 2909, + "id": 3135, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -45027,7 +47410,7 @@ ], "signatures": [ { - "id": 2910, + "id": 3136, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -45337,28 +47720,29 @@ "title": "Interfaces", "kind": 256, "children": [ - 2509, - 1749, - 1260, - 1526, - 2863, - 2661, - 2649, - 2639, - 2239, - 2598, - 2387, - 1906, - 2822, - 2462, - 2345, - 2291, - 1875, - 1231, - 1486, - 1882, - 2860, - 2652, + 2629, + 1837, + 1310, + 1599, + 2990, + 2788, + 2776, + 2766, + 2328, + 2725, + 2491, + 3131, + 1994, + 2949, + 2574, + 2441, + 2380, + 1963, + 1273, + 1551, + 1970, + 2987, + 2779, 21, 28 ] @@ -45386,7 +47770,7 @@ 1, 4, 7, - 2909, + 3135, 37, 2832 ] From ddc5d4744f50700d8cf95895b45e838decbecccf Mon Sep 17 00:00:00 2001 From: shivam-kumar Date: Tue, 11 Nov 2025 21:23:17 +0530 Subject: [PATCH 14/18] SCAL-239528 Refactor route blocking and generation logic to improve embed configuration validation and processing --- src/embed/ts-embed.ts | 10 +- src/utils/allowed-or-blocked-routes.spec.ts | 286 +++++++++--------- src/utils/allowed-or-blocked-routes.ts | 310 ++++++++++++-------- 3 files changed, 337 insertions(+), 269 deletions(-) diff --git a/src/embed/ts-embed.ts b/src/embed/ts-embed.ts index abbb089d..3108b665 100644 --- a/src/embed/ts-embed.ts +++ b/src/embed/ts-embed.ts @@ -36,7 +36,7 @@ import { isUndefined, } from '../utils'; import { getCustomActions } from '../utils/custom-actions'; -import { getBlockedAndAllowedRoutes } from '../utils/allowed-or-blocked-routes'; +import { validateAndProcessRoutes } from '../utils/allowed-or-blocked-routes'; import { getThoughtSpotHost, URL_MAX_LENGTH, @@ -461,7 +461,7 @@ export class TsEmbed { error : { type: EmbedErrorCodes.CUSTOM_ACTION_VALIDATION, message: customActionsResult.errors } }); } - const blockedAndAllowedRoutesResult = getBlockedAndAllowedRoutes( + const blockedAndAllowedRoutesResult = validateAndProcessRoutes( this.viewConfig?.routeBlocking, { embedComponentType: (this.viewConfig as any).embedComponentType || '', @@ -472,8 +472,8 @@ export class TsEmbed { path: (this.viewConfig as any).path, }, ); - if (blockedAndAllowedRoutesResult.error) { - this.handleError(blockedAndAllowedRoutesResult.message); + if (blockedAndAllowedRoutesResult.hasError) { + this.handleError(blockedAndAllowedRoutesResult.errorMessage); } const baseInitData = { customisations: getCustomisations(this.embedConfig, this.viewConfig), @@ -496,7 +496,7 @@ export class TsEmbed { customActions: customActionsResult.actions, allowedRoutes: blockedAndAllowedRoutesResult.allowedRoutes, blockedRoutes: blockedAndAllowedRoutesResult.blockedRoutes, - accessDeniedMessage: blockedAndAllowedRoutesResult.message || '', + accessDeniedMessage: blockedAndAllowedRoutesResult.errorMessage, ...getInterceptInitData(this.viewConfig), }; diff --git a/src/utils/allowed-or-blocked-routes.spec.ts b/src/utils/allowed-or-blocked-routes.spec.ts index 49fa48da..f1cfd443 100644 --- a/src/utils/allowed-or-blocked-routes.spec.ts +++ b/src/utils/allowed-or-blocked-routes.spec.ts @@ -1,20 +1,20 @@ import { NavigationPath } from '../types'; import { - getBlockedAndAllowedRoutes, - generateAutoAllowedRoutes, - RouteGenerationConfig, + validateAndProcessRoutes, + generateComponentRoutes, + EmbedRouteConfig, } from './allowed-or-blocked-routes'; -describe('generateAutoAllowedRoutes', () => { +describe('generateComponentRoutes', () => { describe('LiveboardEmbed', () => { it('should generate routes for liveboard with vizId', () => { - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc-456', vizId: '789-def-012', }; - const result = generateAutoAllowedRoutes(config); + const result = generateComponentRoutes(config); expect(result).toContain('/embed/viz/123-abc-456/789-def-012'); expect(result).toContain('/embed/viz/123-abc-456'); @@ -22,24 +22,24 @@ describe('generateAutoAllowedRoutes', () => { }); it('should generate routes for liveboard with activeTabId', () => { - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc-456', activeTabId: 'tab-1', }; - const result = generateAutoAllowedRoutes(config); + const result = generateComponentRoutes(config); expect(result).toContain('/embed/viz/123-abc-456/tab/tab-1'); expect(result).toContain('/embed/viz/123-abc-456'); }); it('should return empty array when no liveboardId is provided', () => { - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'LiveboardEmbed', }; - const result = generateAutoAllowedRoutes(config); + const result = generateComponentRoutes(config); expect(result).toEqual([]); }); @@ -47,47 +47,47 @@ describe('generateAutoAllowedRoutes', () => { describe('AppEmbed', () => { it('should generate routes for app with specific path', () => { - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', path: 'pinboard/123-abc-456', }; - const result = generateAutoAllowedRoutes(config); + const result = generateComponentRoutes(config); expect(result).toContain('/pinboard/123-abc-456'); expect(result).toContain('/pinboard/123-abc-456/*'); }); it('should handle path with leading slash', () => { - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', path: '/pinboard/123-abc-456', }; - const result = generateAutoAllowedRoutes(config); + const result = generateComponentRoutes(config); expect(result).toContain('/pinboard/123-abc-456'); expect(result).toContain('/pinboard/123-abc-456/*'); }); it('should generate routes for home page', () => { - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', pageId: 'home', }; - const result = generateAutoAllowedRoutes(config); + const result = generateComponentRoutes(config); expect(result).toContain('/home'); }); it('should generate routes for search page', () => { - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', pageId: 'search', }; - const result = generateAutoAllowedRoutes(config); + const result = generateComponentRoutes(config); expect(result).toContain('/insights/answer'); }); @@ -95,22 +95,22 @@ describe('generateAutoAllowedRoutes', () => { describe('Other embed types', () => { it('should return generic paths for SageEmbed', () => { - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'SageEmbed', }; - const result = generateAutoAllowedRoutes(config); + const result = generateComponentRoutes(config); expect(result).toContain('/embed/eureka'); expect(result).toContain('/eureka'); }); it('should return generic paths for SearchEmbed', () => { - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'SearchEmbed', }; - const result = generateAutoAllowedRoutes(config); + const result = generateComponentRoutes(config); expect(result).toContain('/embed/answer'); expect(result).toContain('/insights/answer'); @@ -118,24 +118,24 @@ describe('generateAutoAllowedRoutes', () => { }); }); -describe('getBlockedAndAllowedRoutes', () => { +describe('validateAndProcessRoutes', () => { describe('when both blockedRoutes and allowedRoutes are provided', () => { it('should return an error', () => { const routeBlocking = { blockedRoutes: [NavigationPath.AdminPage], allowedRoutes: [NavigationPath.Home], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); expect(result).toEqual({ allowedRoutes: [], blockedRoutes: [], - error: true, - message: + hasError: true, + errorMessage: 'You cannot have both blockedRoutes and allowedRoutes set at the same time', }); }); @@ -146,12 +146,12 @@ describe('getBlockedAndAllowedRoutes', () => { const routeBlocking = { allowedRoutes: [NavigationPath.Home, NavigationPath.Answers], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc-456', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); expect(result.allowedRoutes).toContain(NavigationPath.Home); expect(result.allowedRoutes).toContain(NavigationPath.Answers); @@ -159,37 +159,37 @@ describe('getBlockedAndAllowedRoutes', () => { expect(result.allowedRoutes).toContain('/insights/pinboard/123-abc-456'); expect(result.allowedRoutes).toContain(NavigationPath.Login); expect(result.blockedRoutes).toEqual([]); - expect(result.error).toBe(false); - expect(result.message).toBe(''); + expect(result.hasError).toBe(false); + expect(result.errorMessage).toBe(''); }); it('should handle single allowedRoute with auto-generation', () => { const routeBlocking = { allowedRoutes: [NavigationPath.Copilot], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', pageId: 'home', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); expect(result.allowedRoutes).toContain(NavigationPath.Copilot); expect(result.allowedRoutes).toContain('/home'); expect(result.allowedRoutes).toContain(NavigationPath.Login); expect(result.blockedRoutes).toEqual([]); - expect(result.error).toBe(false); + expect(result.hasError).toBe(false); }); it('should only use user allowedRoutes when no auto-routes are generated', () => { const routeBlocking = { allowedRoutes: [NavigationPath.Home, NavigationPath.Answers], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); expect(result.allowedRoutes).toEqual([ NavigationPath.Home, @@ -198,7 +198,7 @@ describe('getBlockedAndAllowedRoutes', () => { NavigationPath.EmbedAccessDeniedPage, ]); expect(result.blockedRoutes).toEqual([]); - expect(result.error).toBe(false); + expect(result.hasError).toBe(false); }); it('should handle accessDeniedMessage with allowedRoutes', () => { @@ -206,14 +206,14 @@ describe('getBlockedAndAllowedRoutes', () => { allowedRoutes: [NavigationPath.Home], accessDeniedMessage: 'Custom access denied message', }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.message).toBe('Custom access denied message'); - expect(result.error).toBe(false); + expect(result.errorMessage).toBe('Custom access denied message'); + expect(result.hasError).toBe(false); }); }); @@ -222,32 +222,32 @@ describe('getBlockedAndAllowedRoutes', () => { const routeBlocking = { blockedRoutes: [NavigationPath.AdminPage], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc-456', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); expect(result.allowedRoutes).toEqual([]); expect(result.blockedRoutes).toEqual([NavigationPath.AdminPage]); - expect(result.error).toBe(false); - expect(result.message).toBe(''); + expect(result.hasError).toBe(false); + expect(result.errorMessage).toBe(''); }); it('should handle single blockedRoute', () => { const routeBlocking = { blockedRoutes: [NavigationPath.AdminPage], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); expect(result.allowedRoutes).toEqual([]); expect(result.blockedRoutes).toEqual([NavigationPath.AdminPage]); - expect(result.error).toBe(false); + expect(result.hasError).toBe(false); }); it('should handle multiple blockedRoutes', () => { @@ -258,16 +258,16 @@ describe('getBlockedAndAllowedRoutes', () => { NavigationPath.DataModelPage, ], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc-456', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); expect(result.allowedRoutes).toEqual([]); expect(result.blockedRoutes).toEqual(routeBlocking.blockedRoutes); - expect(result.error).toBe(false); + expect(result.hasError).toBe(false); }); it('should handle accessDeniedMessage with blockedRoutes', () => { @@ -275,14 +275,14 @@ describe('getBlockedAndAllowedRoutes', () => { blockedRoutes: [NavigationPath.AdminPage], accessDeniedMessage: 'You do not have access to this route', }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.message).toBe('You do not have access to this route'); - expect(result.error).toBe(false); + expect(result.errorMessage).toBe('You do not have access to this route'); + expect(result.hasError).toBe(false); }); describe('conflict detection with AppEmbed path', () => { @@ -290,15 +290,15 @@ describe('getBlockedAndAllowedRoutes', () => { const routeBlocking = { blockedRoutes: ['/pinboard/123-abc-456'], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', path: 'pinboard/123-abc-456', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.error).toBe(true); - expect(result.message).toBe( + expect(result.hasError).toBe(true); + expect(result.errorMessage).toBe( 'You cannot block a route that is being embedded. The path specified in AppEmbed configuration conflicts with blockedRoutes.', ); expect(result.allowedRoutes).toEqual([]); @@ -309,15 +309,15 @@ describe('getBlockedAndAllowedRoutes', () => { const routeBlocking = { blockedRoutes: ['/pinboard/123-abc-456/*'], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', path: 'pinboard/123-abc-456', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.error).toBe(true); - expect(result.message).toBe( + expect(result.hasError).toBe(true); + expect(result.errorMessage).toBe( 'You cannot block a route that is being embedded. The path specified in AppEmbed configuration conflicts with blockedRoutes.', ); }); @@ -326,14 +326,14 @@ describe('getBlockedAndAllowedRoutes', () => { const routeBlocking = { blockedRoutes: [NavigationPath.AdminPage, '/different/route'], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', path: 'pinboard/123-abc-456', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.error).toBe(false); + expect(result.hasError).toBe(false); expect(result.blockedRoutes).toEqual(routeBlocking.blockedRoutes); expect(result.allowedRoutes).toEqual([]); }); @@ -344,15 +344,15 @@ describe('getBlockedAndAllowedRoutes', () => { const routeBlocking = { blockedRoutes: [NavigationPath.Home], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', pageId: 'home', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.error).toBe(true); - expect(result.message).toBe( + expect(result.hasError).toBe(true); + expect(result.errorMessage).toBe( 'You cannot block a route that is being embedded. The path specified in AppEmbed configuration conflicts with blockedRoutes.', ); }); @@ -361,42 +361,42 @@ describe('getBlockedAndAllowedRoutes', () => { const routeBlocking = { blockedRoutes: [NavigationPath.Answers], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', pageId: 'answers', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.error).toBe(true); + expect(result.hasError).toBe(true); }); it('should return error when blockedRoute conflicts with any of multiple pageId routes', () => { const routeBlocking = { blockedRoutes: [NavigationPath.HomeAnswers], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', pageId: 'answers', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.error).toBe(true); + expect(result.hasError).toBe(true); }); it('should NOT return error when blockedRoute does not conflict with pageId', () => { const routeBlocking = { blockedRoutes: [NavigationPath.AdminPage, NavigationPath.DataModelPage], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', pageId: 'home', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.error).toBe(false); + expect(result.hasError).toBe(false); expect(result.blockedRoutes).toEqual(routeBlocking.blockedRoutes); }); }); @@ -406,13 +406,13 @@ describe('getBlockedAndAllowedRoutes', () => { const routeBlocking = { blockedRoutes: [NavigationPath.AdminPage, NavigationPath.Home], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.error).toBe(false); + expect(result.hasError).toBe(false); expect(result.blockedRoutes).toEqual(routeBlocking.blockedRoutes); expect(result.allowedRoutes).toEqual([]); }); @@ -423,15 +423,15 @@ describe('getBlockedAndAllowedRoutes', () => { const routeBlocking = { blockedRoutes: ['/embed/viz/123-abc-456'], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc-456', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.error).toBe(true); - expect(result.message).toBe( + expect(result.hasError).toBe(true); + expect(result.errorMessage).toBe( 'You cannot block a route that is being embedded. The path specified in AppEmbed configuration conflicts with blockedRoutes.', ); }); @@ -440,58 +440,58 @@ describe('getBlockedAndAllowedRoutes', () => { const routeBlocking = { blockedRoutes: ['/insights/pinboard/123-abc-456'], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc-456', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.error).toBe(true); + expect(result.hasError).toBe(true); }); it('should return error when blockedRoute matches viz with activeTabId', () => { const routeBlocking = { blockedRoutes: ['/embed/viz/123-abc-456/tab/tab-1'], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc-456', activeTabId: 'tab-1', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.error).toBe(true); + expect(result.hasError).toBe(true); }); it('should return error when blockedRoute matches specific vizId route', () => { const routeBlocking = { blockedRoutes: ['/embed/viz/123-abc-456/789-def-012'], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc-456', vizId: '789-def-012', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.error).toBe(true); + expect(result.hasError).toBe(true); }); it('should NOT return error when blockedRoute does not conflict with liveboard', () => { const routeBlocking = { blockedRoutes: [NavigationPath.AdminPage, '/embed/viz/different-id'], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc-456', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.error).toBe(false); + expect(result.hasError).toBe(false); expect(result.blockedRoutes).toEqual(routeBlocking.blockedRoutes); }); @@ -499,13 +499,13 @@ describe('getBlockedAndAllowedRoutes', () => { const routeBlocking = { blockedRoutes: ['/embed/viz/123-abc-456'], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'LiveboardEmbed', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.error).toBe(false); + expect(result.hasError).toBe(false); expect(result.blockedRoutes).toEqual(routeBlocking.blockedRoutes); }); }); @@ -515,13 +515,13 @@ describe('getBlockedAndAllowedRoutes', () => { const routeBlocking = { blockedRoutes: [NavigationPath.AdminPage], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'SageEmbed', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.error).toBe(false); + expect(result.hasError).toBe(false); expect(result.blockedRoutes).toEqual(routeBlocking.blockedRoutes); }); @@ -529,13 +529,13 @@ describe('getBlockedAndAllowedRoutes', () => { const routeBlocking = { blockedRoutes: [NavigationPath.AdminPage], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'SearchEmbed', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.error).toBe(false); + expect(result.hasError).toBe(false); expect(result.blockedRoutes).toEqual(routeBlocking.blockedRoutes); }); }); @@ -549,28 +549,28 @@ describe('getBlockedAndAllowedRoutes', () => { NavigationPath.Login, ], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', path: 'pinboard/123-abc-456', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.error).toBe(true); + expect(result.hasError).toBe(true); }); it('should handle empty blockedRoutes array', () => { const routeBlocking = { blockedRoutes: [] as string[], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', path: 'pinboard/123', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.error).toBe(false); + expect(result.hasError).toBe(false); expect(result.blockedRoutes).toEqual([]); }); }); @@ -578,59 +578,59 @@ describe('getBlockedAndAllowedRoutes', () => { describe('when neither blockedRoutes nor allowedRoutes is provided', () => { it('should return empty arrays', () => { - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc-456', }; - const result = getBlockedAndAllowedRoutes(undefined, config); + const result = validateAndProcessRoutes(undefined, config); expect(result.allowedRoutes).toEqual([]); expect(result.blockedRoutes).toEqual([]); - expect(result.error).toBe(false); - expect(result.message).toBe(''); + expect(result.hasError).toBe(false); + expect(result.errorMessage).toBe(''); }); it('should return empty arrays when routeBlocking is empty object', () => { - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', pageId: 'home', }; - const result = getBlockedAndAllowedRoutes({}, config); + const result = validateAndProcessRoutes({}, config); expect(result.allowedRoutes).toEqual([]); expect(result.blockedRoutes).toEqual([]); - expect(result.error).toBe(false); - expect(result.message).toBe(''); + expect(result.hasError).toBe(false); + expect(result.errorMessage).toBe(''); }); it('should return empty arrays for AppEmbed without config', () => { - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', }; - const result = getBlockedAndAllowedRoutes(undefined, config); + const result = validateAndProcessRoutes(undefined, config); expect(result.allowedRoutes).toEqual([]); expect(result.blockedRoutes).toEqual([]); - expect(result.error).toBe(false); + expect(result.hasError).toBe(false); }); it('should handle only accessDeniedMessage without routes', () => { const routeBlocking = { accessDeniedMessage: 'Access denied', }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); expect(result.allowedRoutes).toEqual([]); expect(result.blockedRoutes).toEqual([]); - expect(result.error).toBe(false); - expect(result.message).toBe('Access denied'); + expect(result.hasError).toBe(false); + expect(result.errorMessage).toBe('Access denied'); }); }); @@ -639,30 +639,30 @@ describe('getBlockedAndAllowedRoutes', () => { const routeBlocking = { allowedRoutes: ['/custom/route'], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '33248a57-cc70-4e39-9199-fb5092283381', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); expect(result.allowedRoutes[0]).toBe('/embed/viz/33248a57-cc70-4e39-9199-fb5092283381'); expect(result.allowedRoutes).toContain('/custom/route'); expect(result.allowedRoutes).toContain(NavigationPath.Login); - expect(result.error).toBe(false); + expect(result.hasError).toBe(false); }); it('should handle viz embed with specific vizId', () => { const routeBlocking = { allowedRoutes: ['/custom/page'], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '33248a57-cc70-4e39-9199-fb5092283381', vizId: '730496d6-6903-4601-937e-2c691821af3c', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); expect(result.allowedRoutes).toContain( '/embed/viz/33248a57-cc70-4e39-9199-fb5092283381/730496d6-6903-4601-937e-2c691821af3c', @@ -675,12 +675,12 @@ describe('getBlockedAndAllowedRoutes', () => { const routeBlocking = { allowedRoutes: [NavigationPath.Copilot], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'AppEmbed', pageId: 'home', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); expect(result.allowedRoutes).toContain('/home'); expect(result.allowedRoutes).toContain(NavigationPath.Copilot); @@ -688,15 +688,15 @@ describe('getBlockedAndAllowedRoutes', () => { }); it('should test auto-route generation is working but not used without user routes', () => { - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'LiveboardEmbed', liveboardId: '123-abc', }; - const autoRoutes = generateAutoAllowedRoutes(config); + const autoRoutes = generateComponentRoutes(config); expect(autoRoutes.length).toBeGreaterThan(0); - const result = getBlockedAndAllowedRoutes(undefined, config); + const result = validateAndProcessRoutes(undefined, config); expect(result.allowedRoutes).toEqual([]); }); }); @@ -706,14 +706,16 @@ describe('getBlockedAndAllowedRoutes', () => { const routeBlocking = { blockedRoutes: [NavigationPath.Login, NavigationPath.EmbedAccessDeniedPage], }; - const config: RouteGenerationConfig = { + const config: EmbedRouteConfig = { embedComponentType: 'LiveboardEmbed', }; - const result = getBlockedAndAllowedRoutes(routeBlocking, config); + const result = validateAndProcessRoutes(routeBlocking, config); - expect(result.error).toBe(true); - expect(result.message).toBe('You cannot block the login or embed access denied page'); + expect(result.hasError).toBe(true); + expect(result.errorMessage).toBe( + 'You cannot block the login or embed access denied page', + ); expect(result.allowedRoutes).toEqual([]); expect(result.blockedRoutes).toEqual([]); }); diff --git a/src/utils/allowed-or-blocked-routes.ts b/src/utils/allowed-or-blocked-routes.ts index 3428aa01..8d63b73e 100644 --- a/src/utils/allowed-or-blocked-routes.ts +++ b/src/utils/allowed-or-blocked-routes.ts @@ -1,6 +1,9 @@ import { NavigationPath, RouteBlocking } from '../types'; -export interface RouteGenerationConfig { +/** + * Configuration for generating component-specific routes + */ +export interface EmbedRouteConfig { embedComponentType: string; liveboardId?: string; vizId?: string; @@ -9,181 +12,244 @@ export interface RouteGenerationConfig { path?: string; } -const EMBED_COMPONENT_GENERIC_PATHS: Record = { - AppEmbed: [], // app embed - matches all paths +/** + * Result of route validation and processing + */ +export interface RouteValidationResult { + allowedRoutes: (NavigationPath | string)[]; + blockedRoutes: (NavigationPath | string)[]; + hasError: boolean; + errorMessage: string; +} + +/** + * Default routes for each embed component type + * AppEmbed and LiveboardEmbed have dynamic routes, so they're empty here + */ +const COMPONENT_DEFAULT_ROUTES: Record = { + AppEmbed: [], // Matches all paths - routes generated dynamically 'bodyless-conversation': ['/embed/conv-assist-answer', '/conv-assist-answer'], conversation: ['/embed/insights/conv-assist', '/insights/conv-assist'], - LiveboardEmbed: [], // will be dynamically generated + LiveboardEmbed: [], // Routes generated dynamically based on liveboard configuration SageEmbed: ['/embed/eureka', '/eureka'], SearchBarEmbed: ['/embed/search-bar-embed', '/search-bar-embed'], SearchEmbed: ['/embed/answer', '/insights/answer'], }; /** - * Generate specific allowed routes based on the embed configuration + * Maps page IDs to their corresponding navigation paths */ -export const generateAutoAllowedRoutes = (config: RouteGenerationConfig): string[] => { - const { embedComponentType, liveboardId, vizId, activeTabId, pageId, path } = config; +const PAGE_ID_TO_ROUTES: Record = { + answers: [NavigationPath.Answers, NavigationPath.HomeAnswers], + data: [NavigationPath.DataModelPage], + home: [NavigationPath.Home, NavigationPath.RootPage, NavigationPath.HomePage], + liveboards: [NavigationPath.HomeLiveboards], + monitor: [NavigationPath.HomeMonitorAlerts], + pinboards: [NavigationPath.HomeLiveboards], + search: [NavigationPath.Answer], + spotiq: [NavigationPath.HomeSpotIQAnalysis, NavigationPath.Insights], +}; - switch (embedComponentType) { - case 'LiveboardEmbed': { - const routes: string[] = []; - - if (liveboardId) { - routes.push(`/embed/viz/${liveboardId}`); - routes.push(`/insights/pinboard/${liveboardId}`); - routes.push(`/embed/insights/viz/${liveboardId}`); - - if (vizId) { - if (activeTabId) { - routes.push(`/embed/viz/${liveboardId}/tab/${activeTabId}/${vizId}`); - } else { - routes.push(`/embed/viz/${liveboardId}/${vizId}`); - } - } - if (activeTabId && !vizId) { - routes.push(`/embed/viz/${liveboardId}/tab/${activeTabId}`); - } - } - return routes; - } +/** + * Routes that must never be blocked for embed functionality to work + */ +const PROTECTED_ROUTES = [NavigationPath.Login, NavigationPath.EmbedAccessDeniedPage]; - case 'AppEmbed': { - const routes: string[] = []; - - if (path) { - const cleanPath = path.startsWith('/') ? path.substring(1) : path; - routes.push(`/${cleanPath}`); - routes.push(`/${cleanPath}/*`); - } else if (pageId) { - const pageRoutes = defaultWhiteListedPaths(pageId); - routes.push(...pageRoutes); - } - return routes; - } +/** + * Generates LiveboardEmbed-specific routes based on configuration + */ +const generateLiveboardRoutes = (config: EmbedRouteConfig): string[] => { + const { liveboardId, vizId, activeTabId } = config; + const routes: string[] = []; - default: { - return EMBED_COMPONENT_GENERIC_PATHS[embedComponentType] || []; - } + if (!liveboardId) { + return routes; } + + // Base liveboard routes + routes.push(`/embed/viz/${liveboardId}`); + routes.push(`/insights/pinboard/${liveboardId}`); + routes.push(`/embed/insights/viz/${liveboardId}`); + + // Visualization-specific routes + if (vizId) { + const vizRoute = activeTabId + ? `/embed/viz/${liveboardId}/tab/${activeTabId}/${vizId}` + : `/embed/viz/${liveboardId}/${vizId}`; + routes.push(vizRoute); + } else if (activeTabId) { + // Tab route without specific visualization + routes.push(`/embed/viz/${liveboardId}/tab/${activeTabId}`); + } + + return routes; }; /** - * Get routes for a specific page ID + * Generates AppEmbed-specific routes based on configuration */ -const defaultWhiteListedPaths = (pageId: string): string[] => { - const pageRouteMap: Record = { - answers: [NavigationPath.Answers, NavigationPath.HomeAnswers], - data: [NavigationPath.DataModelPage], - home: [NavigationPath.Home, NavigationPath.RootPage, NavigationPath.HomePage], - liveboards: [NavigationPath.HomeLiveboards], - monitor: [NavigationPath.HomeMonitorAlerts], - pinboards: [NavigationPath.HomeLiveboards], - search: [NavigationPath.Answer], - spotiq: [NavigationPath.HomeSpotIQAnalysis, NavigationPath.Insights], - }; +const generateAppEmbedRoutes = (config: EmbedRouteConfig): string[] => { + const { path, pageId } = config; + const routes: string[] = []; + + if (path) { + const normalizedPath = path.startsWith('/') ? path.substring(1) : path; + routes.push(`/${normalizedPath}`); + routes.push(`/${normalizedPath}/*`); + } else if (pageId) { + const pageRoutes = getRoutesByPageId(pageId); + routes.push(...pageRoutes); + } + + return routes; +}; - return pageRouteMap[pageId] || []; +/** + * Retrieves navigation routes for a specific page ID + */ +const getRoutesByPageId = (pageId: string): string[] => { + return PAGE_ID_TO_ROUTES[pageId] || []; }; /** - * Check if a blocked route conflicts with the auto-generated routes for AppEmbed + * Normalizes a route by removing trailing wildcard */ -const hasConflictingBlockedRoute = ( +const normalizeRoute = (route: string): string => { + return route.replace(/\/\*$/, ''); +}; + +/** + * Checks if two routes conflict with each other + * Routes conflict if one is a prefix of the other or they are identical + */ +const areRoutesConflicting = (route1: string, route2: string): boolean => { + const normalized1 = normalizeRoute(route1); + const normalized2 = normalizeRoute(route2); + + return ( + normalized1 === normalized2 || + normalized1.startsWith(normalized2 + '/') || + normalized2.startsWith(normalized1 + '/') + ); +}; + +/** + * Checks if any blocked route conflicts with protected or auto-allowed routes + */ +const hasRouteConflict = ( blockedRoutes: (NavigationPath | string)[], - autoAllowedRoutes: string[], + protectedRoutes: string[], ): boolean => { - return blockedRoutes.some((blockedRoute) => { - const cleanBlocked = blockedRoute.replace(/\/\*$/, ''); - return autoAllowedRoutes.some((autoRoute) => { - const cleanAuto = autoRoute.replace(/\/\*$/, ''); - return ( - cleanAuto === cleanBlocked || - cleanAuto.startsWith(cleanBlocked + '/') || - cleanBlocked.startsWith(cleanAuto + '/') - ); - }); - }); + return blockedRoutes.some((blockedRoute) => + protectedRoutes.some((protectedRoute) => + areRoutesConflicting(blockedRoute, protectedRoute), + ), + ); +}; + +/** + * Filters out null and undefined values from route arrays + */ +const sanitizeRoutes = (routes: (NavigationPath | string)[]): (NavigationPath | string)[] => { + return routes.filter((route) => route !== undefined && route !== null); +}; + +/** + * Generate component-specific allowed routes based on embed configuration + */ +export const generateComponentRoutes = (config: EmbedRouteConfig): string[] => { + const { embedComponentType } = config; + + switch (embedComponentType) { + case 'LiveboardEmbed': + return generateLiveboardRoutes(config); + + case 'AppEmbed': + return generateAppEmbedRoutes(config); + + default: + return COMPONENT_DEFAULT_ROUTES[embedComponentType] || []; + } }; /** - * Get blocked and allowed routes + * Validates and processes route blocking configuration + * Returns allowed and blocked routes along with any validation errors */ -export const getBlockedAndAllowedRoutes = ( +export const validateAndProcessRoutes = ( routeBlocking?: RouteBlocking, - config?: RouteGenerationConfig, -): { - allowedRoutes: (NavigationPath | string)[]; - blockedRoutes: (NavigationPath | string)[]; - error: boolean; - message: string; -} => { - const blockedRoutes = routeBlocking?.blockedRoutes; - const allowedRoutes = routeBlocking?.allowedRoutes; - const accessDeniedMessage = routeBlocking?.accessDeniedMessage || ''; + embedConfig?: EmbedRouteConfig, +): RouteValidationResult => { + const defaultResult: RouteValidationResult = { + allowedRoutes: [], + blockedRoutes: [], + hasError: false, + errorMessage: routeBlocking?.accessDeniedMessage || '', + }; + + // No route blocking configured + if (!routeBlocking) { + return defaultResult; + } + + const { blockedRoutes, allowedRoutes, accessDeniedMessage = '' } = routeBlocking; + + // Validation: Cannot have both blocked and allowed routes if (blockedRoutes && allowedRoutes) { return { allowedRoutes: [], blockedRoutes: [], - error: true, - message: 'You cannot have both blockedRoutes and allowedRoutes set at the same time', + hasError: true, + errorMessage: + 'You cannot have both blockedRoutes and allowedRoutes set at the same time', }; } - const autoAllowedRoutes = generateAutoAllowedRoutes(config); + + const componentRoutes = generateComponentRoutes(embedConfig); + + // Process allowed routes if (allowedRoutes) { - const filteredAllowedRoutes = allowedRoutes.filter( - (route) => route !== undefined && route !== null, - ); + const sanitizedAllowedRoutes = sanitizeRoutes(allowedRoutes); return { - allowedRoutes: [ - ...autoAllowedRoutes, - ...filteredAllowedRoutes, - NavigationPath.Login, - NavigationPath.EmbedAccessDeniedPage, - ], + allowedRoutes: [...componentRoutes, ...sanitizedAllowedRoutes, ...PROTECTED_ROUTES], blockedRoutes: [], - error: false, - message: accessDeniedMessage, + hasError: false, + errorMessage: accessDeniedMessage, }; } + + // Process blocked routes if (blockedRoutes) { - const filteredBlockedRoutes = blockedRoutes.filter( - (route) => route !== undefined && route !== null, - ); - if ( - hasConflictingBlockedRoute(filteredBlockedRoutes, [ - NavigationPath.Login, - NavigationPath.EmbedAccessDeniedPage, - ]) - ) { + const sanitizedBlockedRoutes = sanitizeRoutes(blockedRoutes); + + // Validation: Cannot block protected routes (login, access denied page) + if (hasRouteConflict(sanitizedBlockedRoutes, PROTECTED_ROUTES)) { return { allowedRoutes: [], blockedRoutes: [], - error: true, - message: 'You cannot block the login or embed access denied page', + hasError: true, + errorMessage: 'You cannot block the login or embed access denied page', }; } - const autoAllowedRoutesForBlockedRoutes = generateAutoAllowedRoutes(config); - if (hasConflictingBlockedRoute(filteredBlockedRoutes, autoAllowedRoutesForBlockedRoutes)) { + + // Validation: Cannot block routes required by the embed component + if (hasRouteConflict(sanitizedBlockedRoutes, componentRoutes)) { return { allowedRoutes: [], blockedRoutes: [], - error: true, - message: + hasError: true, + errorMessage: 'You cannot block a route that is being embedded. The path specified in AppEmbed configuration conflicts with blockedRoutes.', }; } + return { allowedRoutes: [], - blockedRoutes: filteredBlockedRoutes, - error: false, - message: accessDeniedMessage, + blockedRoutes: sanitizedBlockedRoutes, + hasError: false, + errorMessage: accessDeniedMessage, }; } - return { - allowedRoutes: [], - blockedRoutes: [], - error: false, - message: accessDeniedMessage, - }; + + return defaultResult; }; From 60321f1b82ed47721e0e801f90f8da72fc078f08 Mon Sep 17 00:00:00 2001 From: shivam-kumar Date: Wed, 12 Nov 2025 06:33:16 +0530 Subject: [PATCH 15/18] SCAL-239528 Update size limit for tsembed.es.js to 40 kB --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 63e63420..d4f4692b 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "size-limit": [ { "path": "dist/tsembed.es.js", - "limit": "32 kB" + "limit": "40 kB" } ], "scripts": { From 45093006ea32ba3202c09ce47149721fe3910288 Mon Sep 17 00:00:00 2001 From: Shivam Kumar Date: Tue, 9 Dec 2025 15:14:14 +0530 Subject: [PATCH 16/18] SCAL-239528 rebase the code --- src/embed/ts-embed.spec.ts | 31 ++++++ src/types.ts | 211 ++++++++++++++++++++++++++++++++++--- 2 files changed, 228 insertions(+), 14 deletions(-) diff --git a/src/embed/ts-embed.spec.ts b/src/embed/ts-embed.spec.ts index 0edd5b5e..f48eb9d4 100644 --- a/src/embed/ts-embed.spec.ts +++ b/src/embed/ts-embed.spec.ts @@ -31,6 +31,7 @@ import { DefaultAppInitData, ErrorDetailsTypes, EmbedErrorCodes, + NavigationPath, } from '../types'; import { executeAfterWait, @@ -4074,6 +4075,36 @@ describe('Unit test case for ts embed', () => { ); }); }); + + test('should handle empty routeBlocking object', async () => { + const mockEmbedEventPayload = { + type: EmbedEvent.APP_INIT, + data: {}, + }; + + const liveboardEmbed = new LiveboardEmbed(getRootEl(), { + ...defaultViewConfig, + liveboardId: '33248a57-cc70-4e39-9199-fb5092283381', + routeBlocking: {}, + }); + + liveboardEmbed.render(); + const mockPort: any = { + postMessage: jest.fn(), + }; + + await executeAfterWait(() => { + const iframe = getIFrameEl(); + postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); + }); + + await executeAfterWait(() => { + const appInitData = mockPort.postMessage.mock.calls[0][0].data; + expect(appInitData.allowedRoutes).toEqual([]); + expect(appInitData.blockedRoutes).toEqual([]); + expect(appInitData.accessDeniedMessage).toBe(''); + }); + }); }); }); diff --git a/src/types.ts b/src/types.ts index b01c2598..b685f4d7 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1108,30 +1108,56 @@ export interface BaseViewConfig extends ApiInterceptFlags { customActions?: CustomAction[]; /** - * Array of routes that are allowed to be accessed in the embedded app. - * When specified, navigation will be restricted to only these routes. - * Use Path.All to allow all routes without restrictions. + * Route blocking configuration for the embedded app. + * + * Control which routes users can navigate to within the embedded application + * using either an allowlist (`allowedRoutes`) or a blocklist (`blockedRoutes`). + * + * **Important:** + * - `allowedRoutes` and `blockedRoutes` are mutually exclusive. Use only one at a time. + * - The path that the user initially embeds is always accessible, regardless of this configuration. * * Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SageEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed` * @version SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl * @example - * - * // Replace with embed component name. For example, AppEmbed, SearchEmbed, or LiveboardEmbed * ```js * const embed = new AppEmbed('#tsEmbed', { * ... // other embed view config - * allowedRoutes: [Path.Home, Path.Search, Path.Liveboards], - * accessDeniedMessage: 'You do not have access to this page' - * })``` - * - * // Allow all routes - * ```js - * const embed = new AppEmbed('#tsEmbed', { - * allowedRoutes: [Path.All] + * routeBlocking: { + * allowedRoutes: [Path.Home, Path.Search, Path.Liveboards] || blockedRoutes: [Path.Admin, Path.Settings], + * accessDeniedMessage: 'You do not have access to this page' + * } * }) * ``` */ - allowedRoutes?: (NavigationPath | string)[]; + routeBlocking?: { + /** + * Array of routes that are allowed to be accessed in the embedded app. + * When specified, navigation will be restricted to only these routes. + * All other routes will be blocked. + * Use Path.All to allow all routes without restrictions. + * + * **Important:** The path that the user initially embeds is always unblocked + * and accessible, regardless of the + * `allowedRoutes` or `blockedRoutes` configuration. + * + * Note: `allowedRoutes` and `blockedRoutes` are mutually exclusive. + * Use only one at a time. + * + * Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SageEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed` + * @version SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl + * @example + * + * // Allow only specific routes + *```js + * const embed = new AppEmbed('#tsEmbed', { + * ... // other embed view config + * allowedRoutes: [Path.Home, Path.Search, Path.Liveboards], + * accessDeniedMessage: 'You do not have access to this page' + * }) + *``` + **/ + allowedRoutes?: (NavigationPath | string)[]; /** * Array of routes that are blocked from being accessed in the embedded app. @@ -6468,6 +6494,163 @@ export enum InterceptedApiType { LiveboardData = 'LiveboardData', } +/** + * Routes/paths within the ThoughtSpot embedded application that can be controlled + * for access restrictions. + * Use this enum with the `allowedRoutes` configuration + * and `blockedRoutes` configuration to restrict navigation + * which routes users can access in the embedded view. + * + * @example + * + * ```js + * const embed = new AppEmbed('#tsEmbed', { + * allowedRoutes: [Path.Home, Path.Search, Path.Liveboard], + * accessDeniedMessage: 'You do not have access to this page' + * }); + * ``` + * + * ```js + * const embed = new AppEmbed('#tsEmbed', { + * blockedRoutes: [Path.Home, Path.Search, Path.Liveboard], + * accessDeniedMessage: 'You do not have access to this page' + * }); + * ``` + * @version SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl + */ +export enum NavigationPath { + All = '/*', + RootPage = '/', + // Core navigation methods + DataModelPage = '/data/*', + AdminPage = '/admin', + Home = '/home', + Answers = '/insights/answers', + Copilot = '/copilot', + CopilotChat = '/copilot/chat', + ConvAssist = '/insights/conv-assist', + TryEverywhere = '/everywhere', + Documents = '/insights/doc-search', + + // Home sub-pages + HomePage = '/insights/home', + HomeAnswers = '/insights/home/answers', + HomeLiveboards = '/insights/home/liveboards', + HomeFavs = '/insights/home/favourites', + HomeLiveboardSchedules = '/insights/home/liveboard-schedules', + HomeCreatedByMe = '/insights/home/created-by-me', + HomeMonitorAlerts = '/insights/home/monitor-alerts', + HomeSpotIQAnalysis = '/insights/home/spotiq-analysis', + + // Answer/Search related + Answer = '/insights/answer', + SavedAnswer = '/insights/saved-answer/:answerId', + View = '/insights/view/:answerId', + EditACopy = '/insights/answer/edit/:editACopySessionKey', + + // Eureka/AI related + EurekaWithQueryParams = '/insights/eureka', + CreateAiAnswerWithQueryParams = '/insights/create-ai-answer', + TrainSageWithQueryParams = '/data/sage/train', + AiAnswer = '/insights/ai-answer/:eurekaAnswerSessionId', + + // Pinboard/Liveboard + Pinboard = '/insights/pinboard/:pinboardId', + VizBoard = '/insights/pinboard/:pinboardId/:vizId', + + // Monitor + MonitorV2 = '/monitor', + + // Authentication + Login = '/login', + ResetPassword = '/resetpassword', + ForgotPassword = '/requestresetpassword', + DeepLinkPage = '/deeplink', + + // Insights/SpotIQ + Insights = '/insights', + Insight = '/insights/insight/:analysisResultId', + + // Data related + Table = '/data/tables', + Dataset = '/data/dataset', + DestinationSync = '/data/destination-sync', + Utilities = '/data/utilities', + Dbt = '/data/dbt', + Destination = '/data/destination', + SqlView = '/data/sql-view', + DataGovernance = '/data/data-governance', + LiveBoardVerification = '/data/liveboard-verification', + FragmentFeedback = '/data/fragment-feedback', + QueryFeedback = '/data/query-feedback', + AppConnections = '/data/app-connections', + WorksheetCreate = '/worksheet/create', + AutoWorksheetWithConnectionId = '/data/worksheet/create/auto', + csvUpload = '/data/importcsv', + EmbraceConnections = '/data/embrace/connection', + Embrace = '/data/embrace', + EmbraceCsvUploadWithDatasourceID = '/data/importcsv/loaddata', + + // Teams/Admin related + TeamsMembers = '/teams/members', + TeamsPendingInvitations = '/teams/pending-invitations', + TeamsPlanOptions = '/teams/plan-options', + TeamsSpotIQOptions = '/teams/spotiq', + TeamsStyleCustomizationOptions = '/teams/style-customization', + TeamsUserManagementOptions = '/teams/user-management', + TeamsAuthenticationOptions = '/teams/authentication', + TeamsSystemActivitiesOptions = '/teams/system-activities', + TeamsDataUsage = '/teams/data-usage', + TeamsManageSubscription = '/teams/manage-subscription', + + // Organizations + OrgsHome = '/orgs', + OrgsUsers = '/orgs/users', + OrgsGroups = '/orgs/groups', + OrgsContent = '/orgs/content', + OrgsCreditConsumption = '/orgs/credit-consumption', + + // Schedules + ManageSchedules = '/schedules', + + // Setup and Configuration + Setup = '/setup', + Actions = '/develop/*/actionsCustomization', + OnBoarding = '/onboarding', + UserPreference = '/user-preference', + CustomCalendarWizard = '/custom-calendar', + CustomCalendarRedirection = '/custom-calendar-test', + + // Development + DevelopTab = '/develop', + GetStarted = '/get-started', + + // TML/TSL related + ImportTsl = '/import-tsl/:metadataType', + TmlUtility = '/data/utilities/tml', + TslEditor = '/tsl-editor', + TslEditorSingleFile = '/tsl-editor/:metadataType/:metadataGuid', + UpdateTslFromFile = '/import-tsl/:metadataType/:metadataGuid', + + // SpotApps + SpotAppsAdmin = '/data/spotapps-admin', + SpotAppDetailsAndAnalytics = '/spotapp', + DbtIntegration = '/data/dbt-integration', + SchemaViewer = '/schema-viewer/table', + + // Other + Purchase = '/purchase', + AutoAnswer = '/answer/create/auto/:dataSourceId', + RequestAccessForObject = '/requestaccess/:objectType/:objectId', + + EmbedAccessDeniedPage = '/embed-access-denied', +} +export interface RouteBlocking { + blockedRoutes?: (NavigationPath | string)[]; + allowedRoutes?: (NavigationPath | string)[]; + accessDeniedMessage?: string; +} + export type ApiInterceptFlags = { /** * Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`. From 035769bf07ad6f773ed3cc6dfe4bf0e4b2cd1e3b Mon Sep 17 00:00:00 2001 From: Shivam Kumar Date: Tue, 9 Dec 2025 15:16:24 +0530 Subject: [PATCH 17/18] SCAL-239528 recerted docgen --- static/typedoc/typedoc.json | 9983 ++++++++++++++++------------------- 1 file changed, 4622 insertions(+), 5361 deletions(-) diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 0e692194..334e973c 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 2097, + "id": 2173, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 2210, + "id": 2286, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -48,14 +48,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5560, + "line": 5704, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2117, + "id": 2193, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -76,14 +76,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4706, + "line": 4850, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 2110, + "id": 2186, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -104,14 +104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4635, + "line": 4779, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 2109, + "id": 2185, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -128,14 +128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4624, + "line": 4768, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 2115, + "id": 2191, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -152,14 +152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4687, + "line": 4831, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 2116, + "id": 2192, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -176,14 +176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4696, + "line": 4840, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 2118, + "id": 2194, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -204,14 +204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4716, + "line": 4860, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 2192, + "id": 2268, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -232,14 +232,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5354, + "line": 5498, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 2165, + "id": 2241, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -260,14 +260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5076, + "line": 5220, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 2207, + "id": 2283, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -288,14 +288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5527, + "line": 5671, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 2164, + "id": 2240, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -316,14 +316,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5064, + "line": 5208, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2163, + "id": 2239, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -344,14 +344,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5052, + "line": 5196, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2206, + "id": 2282, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -373,14 +373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5516, + "line": 5660, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 2176, + "id": 2252, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -401,14 +401,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5189, + "line": 5333, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 2179, + "id": 2255, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -429,14 +429,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5223, + "line": 5367, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 2184, + "id": 2260, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -457,14 +457,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5278, + "line": 5422, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 2178, + "id": 2254, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -485,14 +485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5212, + "line": 5356, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 2181, + "id": 2257, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -513,14 +513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5246, + "line": 5390, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 2185, + "id": 2261, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -541,14 +541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5288, + "line": 5432, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 2182, + "id": 2258, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -569,14 +569,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5257, + "line": 5401, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 2187, + "id": 2263, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -597,14 +597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5310, + "line": 5454, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 2183, + "id": 2259, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -625,14 +625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5267, + "line": 5411, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 2180, + "id": 2256, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -653,14 +653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5234, + "line": 5378, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 2186, + "id": 2262, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -681,14 +681,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5298, + "line": 5442, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 2177, + "id": 2253, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -709,14 +709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5200, + "line": 5344, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 2219, + "id": 2295, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -737,14 +737,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5658, + "line": 5802, "character": 4 } ], "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 2114, + "id": 2190, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -761,14 +761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4678, + "line": 4822, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 2113, + "id": 2189, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -789,14 +789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4669, + "line": 4813, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 2112, + "id": 2188, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -817,14 +817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4657, + "line": 4801, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 2226, + "id": 2302, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -845,14 +845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5734, + "line": 5878, "character": 4 } ], "defaultValue": "\"columnRename\"" }, { - "id": 2111, + "id": 2187, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -869,14 +869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4646, + "line": 4790, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 2156, + "id": 2232, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -884,14 +884,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5003, + "line": 5147, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 2104, + "id": 2180, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -908,14 +908,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4583, + "line": 4727, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2155, + "id": 2231, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -932,14 +932,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5002, + "line": 5146, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2227, + "id": 2303, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -960,14 +960,42 @@ "sources": [ { "fileName": "types.ts", - "line": 5744, + "line": 5888, "character": 4 } ], "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 2204, + "id": 2313, + "name": "CreateGroup", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "The **Create Group** menu action on a Liveboard.\nAllows creating a new group.", + "tags": [ + { + "tag": "example", + "text": "\n```js\ndisabledActions: [Action.CreateGroup]\n```" + }, + { + "tag": "version", + "text": "SDK: 1.44.0 | ThoughtSpot Cloud: 26.2.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6000, + "character": 4 + } + ], + "defaultValue": "\"createGroup\"" + }, + { + "id": 2280, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -988,14 +1016,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5491, + "line": 5635, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 2167, + "id": 2243, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1016,14 +1044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5096, + "line": 5240, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2172, + "id": 2248, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1044,14 +1072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5147, + "line": 5291, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 2224, + "id": 2300, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1072,14 +1100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5715, + "line": 5859, "character": 4 } ], "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 2216, + "id": 2292, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1100,14 +1128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5627, + "line": 5771, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 2218, + "id": 2294, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1128,14 +1156,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5646, + "line": 5790, "character": 4 } ], "defaultValue": "\"disableChipReorder\"" }, { - "id": 2126, + "id": 2202, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1152,14 +1180,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4766, + "line": 4910, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 2129, + "id": 2205, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1176,14 +1204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4799, + "line": 4943, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2128, + "id": 2204, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1201,14 +1229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4789, + "line": 4933, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2127, + "id": 2203, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1225,14 +1253,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4776, + "line": 4920, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2130, + "id": 2206, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1249,14 +1277,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4809, + "line": 4953, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2160, + "id": 2236, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1273,14 +1301,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5019, + "line": 5163, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 2154, + "id": 2230, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1297,14 +1325,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4992, + "line": 5136, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 2153, + "id": 2229, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1321,14 +1349,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4983, + "line": 5127, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 2138, + "id": 2214, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1345,14 +1373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4885, + "line": 5029, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2103, + "id": 2179, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1369,14 +1397,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4574, + "line": 4718, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 2166, + "id": 2242, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1397,14 +1425,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5085, + "line": 5229, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 2158, + "id": 2234, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1412,14 +1440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5008, + "line": 5152, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 2223, + "id": 2299, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1440,14 +1468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5704, + "line": 5848, "character": 4 } ], "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 2196, + "id": 2272, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1468,14 +1496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5398, + "line": 5542, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 2211, + "id": 2287, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1496,14 +1524,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5573, + "line": 5717, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 2135, + "id": 2211, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1520,14 +1548,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4853, + "line": 4997, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2139, + "id": 2215, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1544,14 +1572,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4893, + "line": 5037, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 2225, + "id": 2301, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1572,14 +1600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5725, + "line": 5869, "character": 4 } ], "defaultValue": "\"editTokens\"" }, { - "id": 2193, + "id": 2269, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1600,14 +1628,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5364, + "line": 5508, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 2194, + "id": 2270, "name": "EnableIterativeChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1628,14 +1656,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5375, + "line": 5519, "character": 4 } ], "defaultValue": "\"enableIterativeChangeAnalysis\"" }, { - "id": 2152, + "id": 2228, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1652,14 +1680,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4972, + "line": 5116, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2132, + "id": 2208, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1677,14 +1705,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4825, + "line": 4969, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2133, + "id": 2209, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1701,14 +1729,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4835, + "line": 4979, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 2228, + "id": 2304, "name": "InConversationTraining", "kind": 16, "kindString": "Enumeration member", @@ -1729,14 +1757,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5760, + "line": 5904, "character": 4 } ], "defaultValue": "\"InConversationTraining\"" }, { - "id": 2217, + "id": 2293, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1757,14 +1785,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5637, + "line": 5781, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 2146, + "id": 2222, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1781,14 +1809,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4934, + "line": 5078, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2234, + "id": 2310, "name": "LiveboardStylePanel", "kind": 16, "kindString": "Enumeration member", @@ -1809,14 +1837,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5826, + "line": 5970, "character": 4 } ], "defaultValue": "\"liveboardStylePanel\"" }, { - "id": 2202, + "id": 2278, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1837,14 +1865,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5459, + "line": 5603, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 2102, + "id": 2178, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1861,14 +1889,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4565, + "line": 4709, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2200, + "id": 2276, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1885,14 +1913,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5439, + "line": 5583, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2171, + "id": 2247, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1913,14 +1941,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5137, + "line": 5281, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2215, + "id": 2291, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1941,14 +1969,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5616, + "line": 5760, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 2191, + "id": 2267, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1969,14 +1997,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5344, + "line": 5488, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 2198, + "id": 2274, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1996,14 +2024,70 @@ "sources": [ { "fileName": "types.ts", - "line": 5419, + "line": 5563, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 2199, + "id": 2312, + "name": "MoveOutOfGroup", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "The **Move out of Group** menu action on a Liveboard.\nAllows moving a visualization out of a group.", + "tags": [ + { + "tag": "example", + "text": "\n```js\ndisabledActions: [Action.MoveOutOfGroup]\n```" + }, + { + "tag": "version", + "text": "SDK: 1.44.0 | ThoughtSpot Cloud: 26.2.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 5990, + "character": 4 + } + ], + "defaultValue": "\"moveOutOfGroup\"" + }, + { + "id": 2311, + "name": "MoveToGroup", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "The **Move to Group** menu action on a Liveboard.\nAllows moving a visualization to a different group.", + "tags": [ + { + "tag": "example", + "text": "\n```js\ndisabledActions: [Action.MoveToGroup]\n```" + }, + { + "tag": "version", + "text": "SDK: 1.44.0 | ThoughtSpot Cloud: 26.2.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 5980, + "character": 4 + } + ], + "defaultValue": "\"moveToGroup\"" + }, + { + "id": 2275, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -2020,14 +2104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5428, + "line": 5572, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 2209, + "id": 2285, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -2048,14 +2132,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5549, + "line": 5693, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 2212, + "id": 2288, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2076,14 +2160,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5584, + "line": 5728, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 2201, + "id": 2277, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2104,14 +2188,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5449, + "line": 5593, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 2149, + "id": 2225, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2128,14 +2212,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4951, + "line": 5095, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2232, + "id": 2308, "name": "PngScreenshotInEmail", "kind": 16, "kindString": "Enumeration member", @@ -2152,14 +2236,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5804, + "line": 5948, "character": 4 } ], "defaultValue": "\"pngScreenshotInEmail\"" }, { - "id": 2136, + "id": 2212, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2176,14 +2260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4863, + "line": 5007, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2220, + "id": 2296, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2204,14 +2288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5670, + "line": 5814, "character": 4 } ], "defaultValue": "\"previewDataSpotter\"" }, { - "id": 2162, + "id": 2238, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2229,14 +2313,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5042, + "line": 5186, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 2140, + "id": 2216, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2253,14 +2337,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4903, + "line": 5047, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2233, + "id": 2309, "name": "RemoveAttachment", "kind": 16, "kindString": "Enumeration member", @@ -2281,14 +2365,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5816, + "line": 5960, "character": 4 } ], "defaultValue": "\"removeAttachment\"" }, { - "id": 2175, + "id": 2251, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2309,14 +2393,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5178, + "line": 5322, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 2208, + "id": 2284, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2337,14 +2421,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5538, + "line": 5682, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 2189, + "id": 2265, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2365,14 +2449,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5324, + "line": 5468, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 2168, + "id": 2244, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2396,14 +2480,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5106, + "line": 5250, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 2161, + "id": 2237, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2420,14 +2504,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5028, + "line": 5172, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 2190, + "id": 2266, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2448,14 +2532,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5334, + "line": 5478, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 2221, + "id": 2297, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2476,14 +2560,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5682, + "line": 5826, "character": 4 } ], "defaultValue": "\"resetSpotterChat\"" }, { - "id": 2197, + "id": 2273, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2504,14 +2588,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5410, + "line": 5554, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 2098, + "id": 2174, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2528,14 +2612,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4534, + "line": 4678, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2101, + "id": 2177, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2552,14 +2636,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4552, + "line": 4696, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 2106, + "id": 2182, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2576,14 +2660,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4597, + "line": 4741, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2107, + "id": 2183, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2600,14 +2684,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4606, + "line": 4750, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2159, + "id": 2235, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2615,14 +2699,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5009, + "line": 5153, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 2108, + "id": 2184, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2639,14 +2723,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4615, + "line": 4759, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2123, + "id": 2199, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2657,14 +2741,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4741, + "line": 4885, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 2195, + "id": 2271, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2685,14 +2769,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5385, + "line": 5529, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 2125, + "id": 2201, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2709,14 +2793,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4756, + "line": 4900, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2120, + "id": 2196, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2733,14 +2817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4729, + "line": 4873, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2222, + "id": 2298, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2761,14 +2845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5693, + "line": 5837, "character": 4 } ], "defaultValue": "\"spotterFeedback\"" }, { - "id": 2231, + "id": 2307, "name": "SpotterTokenQuickEdit", "kind": 16, "kindString": "Enumeration member", @@ -2789,14 +2873,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5793, + "line": 5937, "character": 4 } ], "defaultValue": "\"SpotterTokenQuickEdit\"" }, { - "id": 2229, + "id": 2305, "name": "SpotterWarningsBanner", "kind": 16, "kindString": "Enumeration member", @@ -2817,14 +2901,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5771, + "line": 5915, "character": 4 } ], "defaultValue": "\"SpotterWarningsBanner\"" }, { - "id": 2230, + "id": 2306, "name": "SpotterWarningsOnTokens", "kind": 16, "kindString": "Enumeration member", @@ -2845,14 +2929,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5782, + "line": 5926, "character": 4 } ], "defaultValue": "\"SpotterWarningsOnTokens\"" }, { - "id": 2151, + "id": 2227, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2869,14 +2953,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4964, + "line": 5108, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2170, + "id": 2246, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2897,14 +2981,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5127, + "line": 5271, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2169, + "id": 2245, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2925,14 +3009,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5116, + "line": 5260, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2173, + "id": 2249, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2953,14 +3037,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5157, + "line": 5301, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 2174, + "id": 2250, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2981,14 +3065,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5167, + "line": 5311, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 2203, + "id": 2279, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -3013,14 +3097,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5478, + "line": 5622, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 2137, + "id": 2213, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -3037,14 +3121,42 @@ "sources": [ { "fileName": "types.ts", - "line": 4875, + "line": 5019, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 2214, + "id": 2314, + "name": "UngroupLiveboardGroup", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "The **Ungroup Liveboard Group** menu action on a Liveboard.\nAllows ungrouping a liveboard group.", + "tags": [ + { + "tag": "example", + "text": "\n```js\ndisabledActions: [Action.UngroupLiveboardGroup]\n```" + }, + { + "tag": "version", + "text": "SDK: 1.44.0 | ThoughtSpot Cloud: 26.2.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6010, + "character": 4 + } + ], + "defaultValue": "\"ungroupLiveboardGroup\"" + }, + { + "id": 2290, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3065,14 +3177,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5606, + "line": 5750, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 2134, + "id": 2210, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -3089,14 +3201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4844, + "line": 4988, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2205, + "id": 2281, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -3117,14 +3229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5502, + "line": 5646, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 2213, + "id": 2289, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3145,7 +3257,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5595, + "line": 5739, "character": 4 } ], @@ -3157,138 +3269,142 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2210, - 2117, - 2110, - 2109, - 2115, - 2116, - 2118, - 2192, - 2165, - 2207, - 2164, - 2163, - 2206, - 2176, - 2179, - 2184, - 2178, - 2181, + 2286, + 2193, + 2186, 2185, - 2182, + 2191, + 2192, + 2194, + 2268, + 2241, + 2283, + 2240, + 2239, + 2282, + 2252, + 2255, + 2260, + 2254, + 2257, + 2261, + 2258, + 2263, + 2259, + 2256, + 2262, + 2253, + 2295, + 2190, + 2189, + 2188, + 2302, 2187, - 2183, + 2232, 2180, - 2186, - 2177, - 2219, - 2114, - 2113, - 2112, - 2226, - 2111, - 2156, - 2104, - 2155, - 2227, + 2231, + 2303, + 2313, + 2280, + 2243, + 2248, + 2300, + 2292, + 2294, + 2202, + 2205, 2204, - 2167, - 2172, - 2224, - 2216, - 2218, - 2126, - 2129, - 2128, - 2127, - 2130, - 2160, - 2154, - 2153, - 2138, - 2103, - 2166, - 2158, - 2223, - 2196, - 2211, - 2135, - 2139, - 2225, - 2193, - 2194, - 2152, - 2132, - 2133, - 2228, - 2217, - 2146, + 2203, + 2206, + 2236, + 2230, + 2229, + 2214, + 2179, + 2242, 2234, - 2202, - 2102, - 2200, - 2171, + 2299, + 2272, + 2287, + 2211, 2215, - 2191, - 2198, - 2199, - 2209, - 2212, - 2201, - 2149, - 2232, - 2136, - 2220, - 2162, - 2140, - 2233, - 2175, + 2301, + 2269, + 2270, + 2228, 2208, - 2189, - 2168, - 2161, - 2190, - 2221, - 2197, - 2098, - 2101, - 2106, - 2107, - 2159, - 2108, - 2123, - 2195, - 2125, - 2120, + 2209, + 2304, + 2293, 2222, - 2231, - 2229, - 2230, - 2151, - 2170, - 2169, - 2173, + 2310, + 2278, + 2178, + 2276, + 2247, + 2291, + 2267, + 2274, + 2312, + 2311, + 2275, + 2285, + 2288, + 2277, + 2225, + 2308, + 2212, + 2296, + 2238, + 2216, + 2309, + 2251, + 2284, + 2265, + 2244, + 2237, + 2266, + 2297, + 2273, 2174, - 2203, - 2137, - 2214, - 2134, - 2205, - 2213 + 2177, + 2182, + 2183, + 2235, + 2184, + 2199, + 2271, + 2201, + 2196, + 2298, + 2307, + 2305, + 2306, + 2227, + 2246, + 2245, + 2249, + 2250, + 2279, + 2213, + 2314, + 2290, + 2210, + 2281, + 2289 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4525, + "line": 4669, "character": 12 } ] }, { - "id": 1747, + "id": 1820, "name": "AuthEvent", "kind": 4, "kindString": "Enumeration", @@ -3304,7 +3420,7 @@ }, "children": [ { - "id": 1748, + "id": 1821, "name": "TRIGGER_SSO_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3327,7 +3443,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1748 + 1821 ] } ], @@ -3340,7 +3456,7 @@ ] }, { - "id": 1732, + "id": 1805, "name": "AuthFailureType", "kind": 4, "kindString": "Enumeration", @@ -3356,7 +3472,7 @@ }, "children": [ { - "id": 1735, + "id": 1808, "name": "EXPIRY", "kind": 16, "kindString": "Enumeration member", @@ -3371,7 +3487,7 @@ "defaultValue": "\"EXPIRY\"" }, { - "id": 1737, + "id": 1810, "name": "IDLE_SESSION_TIMEOUT", "kind": 16, "kindString": "Enumeration member", @@ -3386,7 +3502,7 @@ "defaultValue": "\"IDLE_SESSION_TIMEOUT\"" }, { - "id": 1734, + "id": 1807, "name": "NO_COOKIE_ACCESS", "kind": 16, "kindString": "Enumeration member", @@ -3401,7 +3517,7 @@ "defaultValue": "\"NO_COOKIE_ACCESS\"" }, { - "id": 1736, + "id": 1809, "name": "OTHER", "kind": 16, "kindString": "Enumeration member", @@ -3416,7 +3532,7 @@ "defaultValue": "\"OTHER\"" }, { - "id": 1733, + "id": 1806, "name": "SDK", "kind": 16, "kindString": "Enumeration member", @@ -3431,7 +3547,7 @@ "defaultValue": "\"SDK\"" }, { - "id": 1738, + "id": 1811, "name": "UNAUTHENTICATED_FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3451,12 +3567,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1735, - 1737, - 1734, - 1736, - 1733, - 1738 + 1808, + 1810, + 1807, + 1809, + 1806, + 1811 ] } ], @@ -3469,7 +3585,7 @@ ] }, { - "id": 1739, + "id": 1812, "name": "AuthStatus", "kind": 4, "kindString": "Enumeration", @@ -3485,7 +3601,7 @@ }, "children": [ { - "id": 1740, + "id": 1813, "name": "FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3503,7 +3619,7 @@ "defaultValue": "\"FAILURE\"" }, { - "id": 1744, + "id": 1817, "name": "LOGOUT", "kind": 16, "kindString": "Enumeration member", @@ -3521,7 +3637,7 @@ "defaultValue": "\"LOGOUT\"" }, { - "id": 1746, + "id": 1819, "name": "SAML_POPUP_CLOSED_NO_AUTH", "kind": 16, "kindString": "Enumeration member", @@ -3539,7 +3655,7 @@ "defaultValue": "\"SAML_POPUP_CLOSED_NO_AUTH\"" }, { - "id": 1741, + "id": 1814, "name": "SDK_SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3557,7 +3673,7 @@ "defaultValue": "\"SDK_SUCCESS\"" }, { - "id": 1743, + "id": 1816, "name": "SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3575,7 +3691,7 @@ "defaultValue": "\"SUCCESS\"" }, { - "id": 1745, + "id": 1818, "name": "WAITING_FOR_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3604,12 +3720,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1740, - 1744, - 1746, - 1741, - 1743, - 1745 + 1813, + 1817, + 1819, + 1814, + 1816, + 1818 ] } ], @@ -3622,7 +3738,7 @@ ] }, { - "id": 1894, + "id": 1967, "name": "AuthType", "kind": 4, "kindString": "Enumeration", @@ -3638,7 +3754,7 @@ }, "children": [ { - "id": 1905, + "id": 1978, "name": "Basic", "kind": 16, "kindString": "Enumeration member", @@ -3657,7 +3773,7 @@ "defaultValue": "\"Basic\"" }, { - "id": 1896, + "id": 1969, "name": "EmbeddedSSO", "kind": 16, "kindString": "Enumeration member", @@ -3686,7 +3802,7 @@ "defaultValue": "\"EmbeddedSSO\"" }, { - "id": 1895, + "id": 1968, "name": "None", "kind": 16, "kindString": "Enumeration member", @@ -3710,7 +3826,7 @@ "defaultValue": "\"None\"" }, { - "id": 1901, + "id": 1974, "name": "OIDCRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3728,7 +3844,7 @@ "defaultValue": "\"SSO_OIDC\"" }, { - "id": 1899, + "id": 1972, "name": "SAMLRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3761,7 +3877,7 @@ "defaultValue": "\"SSO_SAML\"" }, { - "id": 1903, + "id": 1976, "name": "TrustedAuthToken", "kind": 16, "kindString": "Enumeration member", @@ -3785,7 +3901,7 @@ "defaultValue": "\"AuthServer\"" }, { - "id": 1904, + "id": 1977, "name": "TrustedAuthTokenCookieless", "kind": 16, "kindString": "Enumeration member", @@ -3818,13 +3934,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1905, - 1896, - 1895, - 1901, - 1899, - 1903, - 1904 + 1978, + 1969, + 1968, + 1974, + 1972, + 1976, + 1977 ] } ], @@ -3837,7 +3953,7 @@ ] }, { - "id": 2235, + "id": 2315, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3847,7 +3963,7 @@ }, "children": [ { - "id": 2238, + "id": 2318, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3855,14 +3971,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5847, + "line": 6030, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 2236, + "id": 2316, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3870,14 +3986,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5845, + "line": 6028, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 2237, + "id": 2317, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3885,7 +4001,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5846, + "line": 6029, "character": 4 } ], @@ -3897,22 +4013,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2238, - 2236, - 2237 + 2318, + 2316, + 2317 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5844, + "line": 6027, "character": 12 } ] }, { - "id": 2904, + "id": 3007, "name": "CustomActionTarget", "kind": 4, "kindString": "Enumeration", @@ -3922,7 +4038,7 @@ }, "children": [ { - "id": 2907, + "id": 3010, "name": "ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -3930,14 +4046,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5932, + "line": 6115, "character": 4 } ], "defaultValue": "\"ANSWER\"" }, { - "id": 2905, + "id": 3008, "name": "LIVEBOARD", "kind": 16, "kindString": "Enumeration member", @@ -3945,14 +4061,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5930, + "line": 6113, "character": 4 } ], "defaultValue": "\"LIVEBOARD\"" }, { - "id": 2908, + "id": 3011, "name": "SPOTTER", "kind": 16, "kindString": "Enumeration member", @@ -3960,14 +4076,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5933, + "line": 6116, "character": 4 } ], "defaultValue": "\"SPOTTER\"" }, { - "id": 2906, + "id": 3009, "name": "VIZ", "kind": 16, "kindString": "Enumeration member", @@ -3975,7 +4091,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5931, + "line": 6114, "character": 4 } ], @@ -3987,23 +4103,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2907, - 2905, - 2908, - 2906 + 3010, + 3008, + 3011, + 3009 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5929, + "line": 6112, "character": 12 } ] }, { - "id": 2900, + "id": 3003, "name": "CustomActionsPosition", "kind": 4, "kindString": "Enumeration", @@ -4013,7 +4129,7 @@ }, "children": [ { - "id": 2903, + "id": 3006, "name": "CONTEXTMENU", "kind": 16, "kindString": "Enumeration member", @@ -4021,14 +4137,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5923, + "line": 6106, "character": 4 } ], "defaultValue": "\"CONTEXTMENU\"" }, { - "id": 2902, + "id": 3005, "name": "MENU", "kind": 16, "kindString": "Enumeration member", @@ -4036,14 +4152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5922, + "line": 6105, "character": 4 } ], "defaultValue": "\"MENU\"" }, { - "id": 2901, + "id": 3004, "name": "PRIMARY", "kind": 16, "kindString": "Enumeration member", @@ -4051,7 +4167,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5921, + "line": 6104, "character": 4 } ], @@ -4063,22 +4179,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2903, - 2902, - 2901 + 3006, + 3005, + 3004 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5920, + "line": 6103, "character": 12 } ] }, { - "id": 2896, + "id": 2999, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -4088,7 +4204,7 @@ }, "children": [ { - "id": 2898, + "id": 3001, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4106,7 +4222,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 2897, + "id": 3000, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4124,7 +4240,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 2899, + "id": 3002, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -4147,9 +4263,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2898, - 2897, - 2899 + 3001, + 3000, + 3002 ] } ], @@ -4162,7 +4278,7 @@ ] }, { - "id": 2093, + "id": 2169, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -4172,7 +4288,7 @@ }, "children": [ { - "id": 2095, + "id": 2171, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -4183,14 +4299,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4356, + "line": 4497, "character": 4 } ], "defaultValue": "\"collapse\"" }, { - "id": 2096, + "id": 2172, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -4201,14 +4317,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4360, + "line": 4501, "character": 4 } ], "defaultValue": "\"expand\"" }, { - "id": 2094, + "id": 2170, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -4219,7 +4335,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4352, + "line": 4493, "character": 4 } ], @@ -4231,22 +4347,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2095, - 2096, - 2094 + 2171, + 2172, + 2170 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4348, + "line": 4489, "character": 12 } ] }, { - "id": 1926, + "id": 1999, "name": "EmbedEvent", "kind": 4, "kindString": "Enumeration", @@ -4271,7 +4387,7 @@ }, "children": [ { - "id": 1962, + "id": 2035, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -4292,14 +4408,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2315, + "line": 2363, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 1954, + "id": 2027, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -4320,14 +4436,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2200, + "line": 2248, "character": 4 } ], "defaultValue": "\"*\"" }, { - "id": 1934, + "id": 2007, "name": "AddRemoveColumns", "kind": 16, "kindString": "Enumeration member", @@ -4352,14 +4468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1966, + "line": 2012, "character": 4 } ], "defaultValue": "\"addRemoveColumns\"" }, { - "id": 1979, + "id": 2052, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -4380,14 +4496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2522, + "line": 2570, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 1939, + "id": 2012, "name": "Alert", "kind": 16, "kindString": "Enumeration member", @@ -4412,14 +4528,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2058, + "line": 2106, "character": 4 } ], "defaultValue": "\"alert\"" }, { - "id": 1975, + "id": 2048, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -4440,14 +4556,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2490, + "line": 2538, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1961, + "id": 2034, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -4468,14 +4584,43 @@ "sources": [ { "fileName": "types.ts", - "line": 2304, + "line": 2352, "character": 4 } ], "defaultValue": "\"answerDelete\"" }, { - "id": 2002, + "id": 2094, + "name": "ApiIntercept", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when the user intercepts a URL.", + "text": "Supported on all embed types.\n", + "tags": [ + { + "tag": "example", + "text": "\n\n```js\nembed.on(EmbedEvent.ApiIntercept, (payload, responder) => {\n console.log('payload', payload);\n responder({\n data: {\n execute: false,\n error: {\n errorText: 'Error Occurred',\n }\n }\n })\n})\n```\n\n```js\n// We can also send a response for the intercepted api\nembed.on(EmbedEvent.ApiIntercept, (payload, responder) => {\n console.log('payload', payload);\n responder({\n data: {\n execute: false,\n response: {\n body: {\n data: {\n // Some api response\n },\n }\n }\n }\n })\n})\n\n// here embed will use the response from the responder as the response for the api\n```\n\n```js\n// We can also send error in response for the intercepted api\nembed.on(EmbedEvent.ApiIntercept, (payload, responder) => {\n console.log('payload', payload);\n responder({\n data: {\n execute: false,\n response: {\n body: {\n errors: [{\n title: 'Error Occurred',\n description: 'Error Description',\n isUserError: true,\n }],\n data: {},\n },\n }\n }\n })\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3108, + "character": 4 + } + ], + "defaultValue": "\"ApiIntercept\"" + }, + { + "id": 2075, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -4508,14 +4653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2731, + "line": 2779, "character": 4 } ], "defaultValue": "\"AskSageInit\"" }, { - "id": 1940, + "id": 2013, "name": "AuthExpire", "kind": 16, "kindString": "Enumeration member", @@ -4536,14 +4681,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2071, + "line": 2119, "character": 4 } ], "defaultValue": "\"ThoughtspotAuthExpired\"" }, { - "id": 1928, + "id": 2001, "name": "AuthInit", "kind": 16, "kindString": "Enumeration member", @@ -4568,14 +4713,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1868, + "line": 1914, "character": 4 } ], "defaultValue": "\"authInit\"" }, { - "id": 1986, + "id": 2059, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -4596,14 +4741,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2598, + "line": 2646, "character": 4 } ], "defaultValue": "\"cancel\"" }, { - "id": 1973, + "id": 2046, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -4624,14 +4769,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2468, + "line": 2516, "character": 4 } ], "defaultValue": "\"copyAEdit\"" }, { - "id": 1988, + "id": 2061, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -4652,14 +4797,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2618, + "line": 2666, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1968, + "id": 2041, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -4680,14 +4825,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2405, + "line": 2453, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1996, + "id": 2069, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -4704,14 +4849,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2682, + "line": 2730, "character": 4 } ], "defaultValue": "\"createConnection\"" }, { - "id": 2007, + "id": 2080, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -4729,14 +4874,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2862, + "line": 2914, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 2008, + "id": 2081, "name": "CreateModel", "kind": 16, "kindString": "Enumeration member", @@ -4753,14 +4898,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2867, + "line": 2919, "character": 4 } ], "defaultValue": "\"createModel\"" }, { - "id": 2001, + "id": 2074, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -4777,14 +4922,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2722, + "line": 2770, "character": 4 } ], "defaultValue": "\"createWorksheet\"" }, { - "id": 1989, + "id": 2062, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4805,14 +4950,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2629, + "line": 2677, "character": 4 } ], "defaultValue": "\"cross-filter-changed\"" }, { - "id": 1935, + "id": 2008, "name": "CustomAction", "kind": 16, "kindString": "Enumeration member", @@ -4841,14 +4986,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1983, + "line": 2029, "character": 4 } ], "defaultValue": "\"customAction\"" }, { - "id": 1930, + "id": 2003, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -4877,14 +5022,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1896, + "line": 1942, "character": 4 } ], "defaultValue": "\"data\"" }, { - "id": 1933, + "id": 2006, "name": "DataSourceSelected", "kind": 16, "kindString": "Enumeration member", @@ -4909,14 +5054,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1954, + "line": 2000, "character": 4 } ], "defaultValue": "\"dataSourceSelected\"" }, { - "id": 1984, + "id": 2057, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -4937,14 +5082,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2580, + "line": 2628, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2000, + "id": 2073, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -4969,14 +5114,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2717, + "line": 2765, "character": 4 } ], "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 1952, + "id": 2025, "name": "DialogClose", "kind": 16, "kindString": "Enumeration member", @@ -4997,14 +5142,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2167, + "line": 2215, "character": 4 } ], "defaultValue": "\"dialog-close\"" }, { - "id": 1951, + "id": 2024, "name": "DialogOpen", "kind": 16, "kindString": "Enumeration member", @@ -5025,14 +5170,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2156, + "line": 2204, "character": 4 } ], "defaultValue": "\"dialog-open\"" }, { - "id": 1956, + "id": 2029, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -5054,14 +5199,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2234, + "line": 2282, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 1959, + "id": 2032, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -5082,14 +5227,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2276, + "line": 2324, "character": 4 } ], "defaultValue": "\"downloadAsCsv\"" }, { - "id": 1958, + "id": 2031, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -5110,14 +5255,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2262, + "line": 2310, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1957, + "id": 2030, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -5138,14 +5283,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2248, + "line": 2296, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1960, + "id": 2033, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -5166,14 +5311,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2290, + "line": 2338, "character": 4 } ], "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 1967, + "id": 2040, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -5194,14 +5339,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2394, + "line": 2442, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1966, + "id": 2039, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -5222,14 +5367,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2382, + "line": 2430, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1932, + "id": 2005, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -5266,14 +5411,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1942, + "line": 1988, "character": 4 } ], "defaultValue": "\"drillDown\"" }, { - "id": 1981, + "id": 2054, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -5294,14 +5439,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2544, + "line": 2592, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1970, + "id": 2043, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -5322,14 +5467,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2428, + "line": 2476, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 1938, + "id": 2011, "name": "Error", "kind": 16, "kindString": "Enumeration member", @@ -5359,14 +5504,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2048, + "line": 2096, "character": 4 } ], "defaultValue": "\"Error\"" }, { - "id": 1987, + "id": 2060, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -5387,14 +5532,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2608, + "line": 2656, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1971, + "id": 2044, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -5415,14 +5560,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2443, + "line": 2491, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1992, + "id": 2065, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5439,14 +5584,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2659, + "line": 2707, "character": 4 } ], "defaultValue": "\"filterChanged\"" }, { - "id": 1946, + "id": 2019, "name": "GetDataClick", "kind": 16, "kindString": "Enumeration member", @@ -5467,14 +5612,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2113, + "line": 2161, "character": 4 } ], "defaultValue": "\"getDataClick\"" }, { - "id": 1927, + "id": 2000, "name": "Init", "kind": 16, "kindString": "Enumeration member", @@ -5495,14 +5640,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1856, + "line": 1902, "character": 4 } ], "defaultValue": "\"init\"" }, { - "id": 2015, + "id": 2088, "name": "LastPromptDeleted", "kind": 16, "kindString": "Enumeration member", @@ -5523,14 +5668,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2934, + "line": 2986, "character": 4 } ], "defaultValue": "\"LastPromptDeleted\"" }, { - "id": 2014, + "id": 2087, "name": "LastPromptEdited", "kind": 16, "kindString": "Enumeration member", @@ -5551,14 +5696,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2923, + "line": 2975, "character": 4 } ], "defaultValue": "\"LastPromptEdited\"" }, { - "id": 1978, + "id": 2051, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -5579,14 +5724,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2511, + "line": 2559, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1953, + "id": 2026, "name": "LiveboardRendered", "kind": 16, "kindString": "Enumeration member", @@ -5611,14 +5756,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2189, + "line": 2237, "character": 4 } ], "defaultValue": "\"PinboardRendered\"" }, { - "id": 1929, + "id": 2002, "name": "Load", "kind": 16, "kindString": "Enumeration member", @@ -5643,14 +5788,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1882, + "line": 1928, "character": 4 } ], "defaultValue": "\"load\"" }, { - "id": 1982, + "id": 2055, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -5671,14 +5816,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2555, + "line": 2603, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1949, + "id": 2022, "name": "NoCookieAccess", "kind": 16, "kindString": "Enumeration member", @@ -5699,14 +5844,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2139, + "line": 2187, "character": 4 } ], "defaultValue": "\"noCookieAccess\"" }, { - "id": 2004, + "id": 2077, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", @@ -5736,14 +5881,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2795, + "line": 2847, "character": 4 } ], "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 2019, + "id": 2093, "name": "OrgSwitched", "kind": 16, "kindString": "Enumeration member", @@ -5764,14 +5909,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2979, + "line": 3042, "character": 4 } ], "defaultValue": "\"orgSwitched\"" }, { - "id": 2005, + "id": 2078, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5788,14 +5933,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2806, + "line": 2858, "character": 4 } ], "defaultValue": "\"parameterChanged\"" }, { - "id": 1963, + "id": 2036, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -5816,14 +5961,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2334, + "line": 2382, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1983, + "id": 2056, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -5848,14 +5993,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2570, + "line": 2618, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2012, + "id": 2085, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -5876,14 +6021,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2901, + "line": 2953, "character": 4 } ], "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 1931, + "id": 2004, "name": "QueryChanged", "kind": 16, "kindString": "Enumeration member", @@ -5904,14 +6049,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1905, + "line": 1951, "character": 4 } ], "defaultValue": "\"queryChanged\"" }, { - "id": 2003, + "id": 2076, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -5928,14 +6073,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2736, + "line": 2784, "character": 4 } ], "defaultValue": "\"rename\"" }, { - "id": 1999, + "id": 2072, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -5968,14 +6113,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2710, + "line": 2758, "character": 4 } ], "defaultValue": "\"resetLiveboard\"" }, { - "id": 2016, + "id": 2089, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -5996,14 +6141,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2945, + "line": 2997, "character": 4 } ], "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 1947, + "id": 2020, "name": "RouteChange", "kind": 16, "kindString": "Enumeration member", @@ -6024,14 +6169,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2123, + "line": 2171, "character": 4 } ], "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 1993, + "id": 2066, "name": "SageEmbedQuery", "kind": 16, "kindString": "Enumeration member", @@ -6048,14 +6193,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2665, + "line": 2713, "character": 4 } ], "defaultValue": "\"sageEmbedQuery\"" }, { - "id": 1994, + "id": 2067, "name": "SageWorksheetUpdated", "kind": 16, "kindString": "Enumeration member", @@ -6072,14 +6217,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2672, + "line": 2720, "character": 4 } ], "defaultValue": "\"sageWorksheetUpdated\"" }, { - "id": 1955, + "id": 2028, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -6100,14 +6245,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2218, + "line": 2266, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1972, + "id": 2045, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -6128,14 +6273,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2454, + "line": 2502, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 1998, + "id": 2071, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6168,14 +6313,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2701, + "line": 2749, "character": 4 } ], "defaultValue": "\"savePersonalisedView\"" }, { - "id": 1980, + "id": 2053, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -6196,14 +6341,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2533, + "line": 2581, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1985, + "id": 2058, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -6224,14 +6369,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2589, + "line": 2637, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1965, + "id": 2038, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -6252,14 +6397,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2370, + "line": 2418, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1974, + "id": 2047, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -6280,14 +6425,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2479, + "line": 2527, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1964, + "id": 2037, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -6308,14 +6453,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2352, + "line": 2400, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2011, + "id": 2084, "name": "SpotterData", "kind": 16, "kindString": "Enumeration member", @@ -6336,14 +6481,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2890, + "line": 2942, "character": 4 } ], "defaultValue": "\"SpotterData\"" }, { - "id": 2017, + "id": 2090, "name": "SpotterInit", "kind": 16, "kindString": "Enumeration member", @@ -6364,14 +6509,42 @@ "sources": [ { "fileName": "types.ts", - "line": 2956, + "line": 3008, "character": 4 } ], "defaultValue": "\"spotterInit\"" }, { - "id": 2013, + "id": 2091, + "name": "SpotterLoadComplete", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when a *Spotter* conversation has been successfully created.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.SpotterLoadComplete, (payload) => {\n console.log('payload', payload);\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.44.0 | ThoughtSpot: 26.2.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3019, + "character": 4 + } + ], + "defaultValue": "\"spotterLoadComplete\"" + }, + { + "id": 2086, "name": "SpotterQueryTriggered", "kind": 16, "kindString": "Enumeration member", @@ -6392,14 +6565,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2912, + "line": 2964, "character": 4 } ], "defaultValue": "\"SpotterQueryTriggered\"" }, { - "id": 2006, + "id": 2079, "name": "TableVizRendered", "kind": 16, "kindString": "Enumeration member", @@ -6421,14 +6594,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2849, + "line": 2901, "character": 4 } ], "defaultValue": "\"TableVizRendered\"" }, { - "id": 1995, + "id": 2068, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -6445,14 +6618,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2677, + "line": 2725, "character": 4 } ], "defaultValue": "\"updateConnection\"" }, { - "id": 1997, + "id": 2070, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6485,14 +6658,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2692, + "line": 2740, "character": 4 } ], "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 1969, + "id": 2042, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -6513,14 +6686,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2416, + "line": 2464, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1937, + "id": 2010, "name": "VizPointClick", "kind": 16, "kindString": "Enumeration member", @@ -6549,14 +6722,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2014, + "line": 2060, "character": 4 } ], "defaultValue": "\"vizPointClick\"" }, { - "id": 1936, + "id": 2009, "name": "VizPointDoubleClick", "kind": 16, "kindString": "Enumeration member", @@ -6581,14 +6754,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1995, + "line": 2041, "character": 4 } ], "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 1990, + "id": 2063, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -6609,7 +6782,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2640, + "line": 2688, "character": 4 } ], @@ -6621,99 +6794,101 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1962, - 1954, - 1934, - 1979, - 1939, - 1975, - 1961, - 2002, - 1940, - 1928, - 1986, - 1973, - 1988, - 1968, - 1996, + 2035, + 2027, 2007, - 2008, - 2001, - 1989, - 1935, - 1930, - 1933, - 1984, - 2000, - 1952, - 1951, - 1956, - 1959, - 1958, - 1957, - 1960, - 1967, - 1966, - 1932, - 1981, - 1970, - 1938, - 1987, - 1971, - 1992, - 1946, - 1927, - 2015, - 2014, - 1978, - 1953, - 1929, - 1982, - 1949, - 2004, - 2019, - 2005, - 1963, - 1983, + 2052, 2012, - 1931, - 2003, - 1999, - 2016, - 1947, - 1993, - 1994, - 1955, - 1972, - 1998, - 1980, - 1985, - 1965, - 1974, - 1964, - 2011, - 2017, + 2048, + 2034, + 2094, + 2075, 2013, + 2001, + 2059, + 2046, + 2061, + 2041, + 2069, + 2080, + 2081, + 2074, + 2062, + 2008, + 2003, 2006, - 1995, - 1997, - 1969, - 1937, - 1936, - 1990 + 2057, + 2073, + 2025, + 2024, + 2029, + 2032, + 2031, + 2030, + 2033, + 2040, + 2039, + 2005, + 2054, + 2043, + 2011, + 2060, + 2044, + 2065, + 2019, + 2000, + 2088, + 2087, + 2051, + 2026, + 2002, + 2055, + 2022, + 2077, + 2093, + 2078, + 2036, + 2056, + 2085, + 2004, + 2076, + 2072, + 2089, + 2020, + 2066, + 2067, + 2028, + 2045, + 2071, + 2053, + 2058, + 2038, + 2047, + 2037, + 2084, + 2090, + 2091, + 2086, + 2079, + 2068, + 2070, + 2042, + 2010, + 2009, + 2063 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1843, + "line": 1889, "character": 12 } ] }, { - "id": 2604, + "id": 2705, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -6723,7 +6898,7 @@ }, "children": [ { - "id": 2608, + "id": 2709, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -6746,7 +6921,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2612, + "id": 2713, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6770,7 +6945,7 @@ "defaultValue": "\"create\"" }, { - "id": 2614, + "id": 2715, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -6794,7 +6969,7 @@ "defaultValue": "\"favorites\"" }, { - "id": 2606, + "id": 2707, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6817,7 +6992,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2611, + "id": 2712, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6840,7 +7015,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2607, + "id": 2708, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6863,7 +7038,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2609, + "id": 2710, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6886,7 +7061,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2605, + "id": 2706, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6909,7 +7084,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2610, + "id": 2711, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6932,7 +7107,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2613, + "id": 2714, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -6961,16 +7136,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2608, - 2612, - 2614, - 2606, - 2611, - 2607, - 2609, - 2605, - 2610, - 2613 + 2709, + 2713, + 2715, + 2707, + 2712, + 2708, + 2710, + 2706, + 2711, + 2714 ] } ], @@ -6983,7 +7158,7 @@ ] }, { - "id": 2854, + "id": 2956, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -6999,7 +7174,7 @@ }, "children": [ { - "id": 2855, + "id": 2957, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -7017,7 +7192,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2856, + "id": 2958, "name": "ModularWithStylingChanges", "kind": 16, "kindString": "Enumeration member", @@ -7040,8 +7215,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2855, - 2856 + 2957, + 2958 ] } ], @@ -7054,14 +7229,14 @@ ] }, { - "id": 2848, + "id": 2950, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2850, + "id": 2952, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -7076,7 +7251,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2851, + "id": 2953, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -7091,7 +7266,7 @@ "defaultValue": "\"none\"" }, { - "id": 2849, + "id": 2951, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -7111,9 +7286,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2850, - 2851, - 2849 + 2952, + 2953, + 2951 ] } ], @@ -7126,7 +7301,7 @@ ] }, { - "id": 2615, + "id": 2716, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -7142,7 +7317,7 @@ }, "children": [ { - "id": 2618, + "id": 2719, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -7153,14 +7328,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1724, + "line": 1770, "character": 4 } ], "defaultValue": "\"FAVORITE\"" }, { - "id": 2621, + "id": 2722, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -7171,14 +7346,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1736, + "line": 1782, "character": 4 } ], "defaultValue": "\"LEARNING\"" }, { - "id": 2619, + "id": 2720, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -7189,14 +7364,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1728, + "line": 1774, "character": 4 } ], "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2616, + "id": 2717, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7207,14 +7382,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1716, + "line": 1762, "character": 4 } ], "defaultValue": "\"SEARCH\"" }, { - "id": 2620, + "id": 2721, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -7225,14 +7400,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1732, + "line": 1778, "character": 4 } ], "defaultValue": "\"TRENDING\"" }, { - "id": 2617, + "id": 2718, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -7243,7 +7418,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1720, + "line": 1766, "character": 4 } ], @@ -7255,25 +7430,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2618, - 2621, - 2619, - 2616, - 2620, - 2617 + 2719, + 2722, + 2720, + 2717, + 2721, + 2718 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1712, + "line": 1758, "character": 12 } ] }, { - "id": 2020, + "id": 2095, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -7302,7 +7477,7 @@ }, "children": [ { - "id": 2042, + "id": 2117, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -7323,14 +7498,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3425, + "line": 3554, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2031, + "id": 2106, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -7356,14 +7531,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3230, + "line": 3359, "character": 4 } ], "defaultValue": "\"addColumns\"" }, { - "id": 2087, + "id": 2162, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -7389,14 +7564,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4282, + "line": 4411, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2072, + "id": 2147, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -7417,14 +7592,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4075, + "line": 4204, "character": 4 } ], "defaultValue": "\"AskSage\"" }, { - "id": 2090, + "id": 2165, "name": "AskSpotter", "kind": 16, "kindString": "Enumeration member", @@ -7450,14 +7625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4320, + "line": 4449, "character": 4 } ], "defaultValue": "\"AskSpotter\"" }, { - "id": 2049, + "id": 2124, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -7483,14 +7658,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3561, + "line": 3690, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2046, + "id": 2121, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -7520,14 +7695,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3499, + "line": 3628, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2053, + "id": 2128, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -7553,14 +7728,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3645, + "line": 3774, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2086, + "id": 2161, "name": "DeleteLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -7581,14 +7756,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4267, + "line": 4396, "character": 4 } ], "defaultValue": "\"DeleteLastPrompt\"" }, { - "id": 2092, + "id": 2167, "name": "DestroyEmbed", "kind": 16, "kindString": "Enumeration member", @@ -7609,14 +7784,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4340, + "line": 4469, "character": 4 } ], "defaultValue": "\"EmbedDestroyed\"" }, { - "id": 2055, + "id": 2130, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -7646,14 +7821,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3691, + "line": 3820, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2057, + "id": 2132, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -7679,14 +7854,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3742, + "line": 3871, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2041, + "id": 2116, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -7716,14 +7891,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3415, + "line": 3544, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2056, + "id": 2131, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -7744,14 +7919,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3715, + "line": 3844, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2058, + "id": 2133, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -7777,14 +7952,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3769, + "line": 3898, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2022, + "id": 2097, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -7834,14 +8009,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3107, + "line": 3236, "character": 4 } ], "defaultValue": "\"triggerDrillDown\"" }, { - "id": 2048, + "id": 2123, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -7877,14 +8052,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3544, + "line": 3673, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2083, + "id": 2158, "name": "EditLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -7910,14 +8085,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4240, + "line": 4369, "character": 4 } ], "defaultValue": "\"EditLastPrompt\"" }, { - "id": 2039, + "id": 2114, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -7938,14 +8113,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3379, + "line": 3508, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2045, + "id": 2120, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -7971,14 +8146,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3482, + "line": 3611, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2038, + "id": 2113, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -7999,14 +8174,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3369, + "line": 3498, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2071, + "id": 2146, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -8032,14 +8207,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4065, + "line": 4194, "character": 4 } ], "defaultValue": "\"getAnswerSession\"" }, { - "id": 2065, + "id": 2140, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -8060,14 +8235,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3892, + "line": 4021, "character": 4 } ], "defaultValue": "\"getFilters\"" }, { - "id": 2025, + "id": 2100, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -8088,14 +8263,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3127, + "line": 3256, "character": 4 } ], "defaultValue": "\"GetIframeUrl\"" }, { - "id": 2076, + "id": 2151, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -8117,14 +8292,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4140, + "line": 4269, "character": 4 } ], "defaultValue": "\"GetParameters\"" }, { - "id": 2051, + "id": 2126, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -8149,14 +8324,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3609, + "line": 3738, "character": 4 } ], "defaultValue": "\"getTML\"" }, { - "id": 2067, + "id": 2142, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -8177,14 +8352,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3995, + "line": 4124, "character": 4 } ], "defaultValue": "\"getTabs\"" }, { - "id": 2035, + "id": 2110, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -8205,14 +8380,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3341, + "line": 3470, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2043, + "id": 2118, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -8249,14 +8424,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3458, + "line": 3587, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2047, + "id": 2122, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -8290,14 +8465,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3520, + "line": 3649, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2063, + "id": 2138, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -8323,14 +8498,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3869, + "line": 3998, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2029, + "id": 2104, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -8356,14 +8531,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3200, + "line": 3329, "character": 4 } ], "defaultValue": "\"Navigate\"" }, { - "id": 2030, + "id": 2105, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -8393,14 +8568,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3220, + "line": 3349, "character": 4 } ], "defaultValue": "\"openFilter\"" }, { - "id": 2034, + "id": 2109, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -8461,14 +8636,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3331, + "line": 3460, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2050, + "id": 2125, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -8494,14 +8669,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3578, + "line": 3707, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2084, + "id": 2159, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -8522,14 +8697,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4249, + "line": 4378, "character": 4 } ], "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 2044, + "id": 2119, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -8554,14 +8729,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3472, + "line": 3601, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2032, + "id": 2107, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -8587,14 +8762,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3240, + "line": 3369, "character": 4 } ], "defaultValue": "\"removeColumn\"" }, { - "id": 2074, + "id": 2149, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8615,14 +8790,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4100, + "line": 4229, "character": 4 } ], "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 2064, + "id": 2139, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -8643,14 +8818,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3881, + "line": 4010, "character": 4 } ], "defaultValue": "\"resetSearch\"" }, { - "id": 2085, + "id": 2160, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -8671,14 +8846,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4258, + "line": 4387, "character": 4 } ], "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 2060, + "id": 2135, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -8704,14 +8879,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3822, + "line": 3951, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2079, + "id": 2154, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -8751,14 +8926,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4190, + "line": 4319, "character": 4 } ], "defaultValue": "\"saveAnswer\"" }, { - "id": 2036, + "id": 2111, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -8779,14 +8954,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3350, + "line": 3479, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2037, + "id": 2112, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -8807,14 +8982,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3359, + "line": 3488, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2021, + "id": 2096, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -8846,14 +9021,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3056, + "line": 3185, "character": 4 } ], "defaultValue": "\"search\"" }, { - "id": 2027, + "id": 2102, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -8879,14 +9054,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3152, + "line": 3281, "character": 4 } ], "defaultValue": "\"SetActiveTab\"" }, { - "id": 2069, + "id": 2144, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -8912,14 +9087,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4021, + "line": 4150, "character": 4 } ], "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 2068, + "id": 2143, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -8945,14 +9120,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4008, + "line": 4137, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 2026, + "id": 2101, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -8978,14 +9153,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3140, + "line": 3269, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 2059, + "id": 2134, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -9006,14 +9181,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3782, + "line": 3911, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2052, + "id": 2127, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -9039,14 +9214,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3628, + "line": 3757, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2054, + "id": 2129, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -9072,14 +9247,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3665, + "line": 3794, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2082, + "id": 2157, "name": "SpotterSearch", "kind": 16, "kindString": "Enumeration member", @@ -9110,14 +9285,38 @@ "sources": [ { "fileName": "types.ts", - "line": 4230, + "line": 4359, "character": 4 } ], "defaultValue": "\"SpotterSearch\"" }, { - "id": 2062, + "id": 2168, + "name": "StartNewSpotterConversation", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers a create new conversation operation in spotter embed.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nThis feature is available only when chat history is enabled on your ThoughtSpot instance.\nContact your admin or ThoughtSpot Support to enable chat history on your instance.\n@example\n```js\nspotterEmbed.trigger(HostEvent.StartNewSpotterConversation);\n```\n@version SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 4481, + "character": 4 + } + ], + "defaultValue": "\"StartNewSpotterConversation\"" + }, + { + "id": 2137, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -9143,14 +9342,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3853, + "line": 3982, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2061, + "id": 2136, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -9176,14 +9375,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3837, + "line": 3966, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2081, + "id": 2156, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -9209,14 +9408,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4215, + "line": 4344, "character": 4 } ], "defaultValue": "\"TransformTableVizData\"" }, { - "id": 2073, + "id": 2148, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -9237,14 +9436,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4091, + "line": 4220, "character": 4 } ], "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 2066, + "id": 2141, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -9287,14 +9486,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3982, + "line": 4111, "character": 4 } ], "defaultValue": "\"updateFilters\"" }, { - "id": 2075, + "id": 2150, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -9325,14 +9524,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4120, + "line": 4249, "character": 4 } ], "defaultValue": "\"UpdateParameters\"" }, { - "id": 2077, + "id": 2152, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -9349,14 +9548,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4148, + "line": 4277, "character": 4 } ], "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 2028, + "id": 2103, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -9387,14 +9586,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3188, + "line": 3317, "character": 4 } ], "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 2070, + "id": 2145, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -9425,14 +9624,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4035, + "line": 4164, "character": 4 } ], "defaultValue": "\"updateSageQuery\"" }, { - "id": 2040, + "id": 2115, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -9453,14 +9652,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3388, + "line": 3517, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2033, + "id": 2108, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -9481,7 +9680,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3256, + "line": 3385, "character": 4 } ], @@ -9493,84 +9692,169 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2042, - 2031, - 2087, - 2072, - 2090, - 2049, - 2046, - 2053, - 2086, - 2092, - 2055, - 2057, - 2041, - 2056, - 2058, - 2022, - 2048, - 2083, - 2039, - 2045, - 2038, - 2071, - 2065, - 2025, - 2076, - 2051, - 2067, - 2035, - 2043, - 2047, - 2063, - 2029, - 2030, - 2034, - 2050, - 2084, - 2044, - 2032, - 2074, - 2064, - 2085, - 2060, - 2079, - 2036, - 2037, - 2021, - 2027, - 2069, - 2068, - 2026, - 2059, - 2052, - 2054, - 2082, - 2062, - 2061, - 2081, - 2073, - 2066, - 2075, - 2077, - 2028, - 2070, - 2040, - 2033 + 2117, + 2106, + 2162, + 2147, + 2165, + 2124, + 2121, + 2128, + 2161, + 2167, + 2130, + 2132, + 2116, + 2131, + 2133, + 2097, + 2123, + 2158, + 2114, + 2120, + 2113, + 2146, + 2140, + 2100, + 2151, + 2126, + 2142, + 2110, + 2118, + 2122, + 2138, + 2104, + 2105, + 2109, + 2125, + 2159, + 2119, + 2107, + 2149, + 2139, + 2160, + 2135, + 2154, + 2111, + 2112, + 2096, + 2102, + 2144, + 2143, + 2101, + 2134, + 2127, + 2129, + 2157, + 2168, + 2137, + 2136, + 2156, + 2148, + 2141, + 2150, + 2152, + 2103, + 2145, + 2115, + 2108 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3036, + "line": 3165, "character": 12 } ] }, { - "id": 2857, + "id": 3012, + "name": "InterceptedApiType", + "kind": 4, + "kindString": "Enumeration", + "flags": {}, + "comment": { + "shortText": "Enum for the type of API intercepted" + }, + "children": [ + { + "id": 3014, + "name": "ALL", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "This will intercept all the apis" + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6392, + "character": 4 + } + ], + "defaultValue": "\"ALL\"" + }, + { + "id": 3013, + "name": "AnswerData", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "The apis that are use to get the data for the embed" + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6388, + "character": 4 + } + ], + "defaultValue": "\"AnswerData\"" + }, + { + "id": 3015, + "name": "LiveboardData", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "The apis that are use to get the data for the liveboard" + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6396, + "character": 4 + } + ], + "defaultValue": "\"LiveboardData\"" + } + ], + "groups": [ + { + "title": "Enumeration members", + "kind": 16, + "children": [ + 3014, + 3013, + 3015 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 6384, + "character": 12 + } + ] + }, + { + "id": 2959, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -9586,7 +9870,7 @@ }, "children": [ { - "id": 2858, + "id": 2960, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -9604,7 +9888,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2859, + "id": 2961, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -9627,8 +9911,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2858, - 2859 + 2960, + 2961 ] } ], @@ -9641,7 +9925,7 @@ ] }, { - "id": 2890, + "id": 2993, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -9657,7 +9941,7 @@ }, "children": [ { - "id": 2893, + "id": 2996, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -9668,14 +9952,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1757, + "line": 1803, "character": 4 } ], "defaultValue": "\"AUTHOR\"" }, { - "id": 2894, + "id": 2997, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -9686,14 +9970,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1761, + "line": 1807, "character": 4 } ], "defaultValue": "\"DATE_SORT\"" }, { - "id": 2891, + "id": 2994, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -9704,14 +9988,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1749, + "line": 1795, "character": 4 } ], "defaultValue": "\"FAVOURITE\"" }, { - "id": 2895, + "id": 2998, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -9722,14 +10006,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1765, + "line": 1811, "character": 4 } ], "defaultValue": "\"SHARE\"" }, { - "id": 2892, + "id": 2995, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -9740,7 +10024,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1753, + "line": 1799, "character": 4 } ], @@ -9752,24 +10036,24 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2893, - 2894, - 2891, - 2895, - 2892 + 2996, + 2997, + 2994, + 2998, + 2995 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1745, + "line": 1791, "character": 12 } ] }, { - "id": 2825, + "id": 2927, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -9779,7 +10063,7 @@ }, "children": [ { - "id": 2830, + "id": 2932, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -9800,14 +10084,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6007, + "line": 6190, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2827, + "id": 2929, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -9828,14 +10112,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5968, + "line": 6151, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2829, + "id": 2931, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -9856,14 +10140,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5993, + "line": 6176, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2826, + "id": 2928, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -9884,14 +10168,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5956, + "line": 6139, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2831, + "id": 2933, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -9912,14 +10196,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6019, + "line": 6202, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2828, + "id": 2930, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -9940,7 +10224,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5980, + "line": 6163, "character": 4 } ], @@ -9952,1604 +10236,143 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2830, - 2827, - 2829, - 2826, - 2831, - 2828 + 2932, + 2929, + 2931, + 2928, + 2933, + 2930 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5943, + "line": 6126, "character": 12 } ] }, { - "id": 1885, + "id": 1958, "name": "Page", "kind": 4, "kindString": "Enumeration", "flags": {}, "comment": { - "shortText": "Routes/paths within the ThoughtSpot embedded application that can be controlled\nfor access restrictions.\nUse this enum with the `allowedRoutes` configuration\nand `blockedRoutes` configuration to restrict navigation\nwhich routes users can access in the embedded view.", - "tags": [ - { - "tag": "example", - "text": "\n\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n allowedRoutes: [Path.Home, Path.Search, Path.Liveboard],\n accessDeniedMessage: 'You do not have access to this page'\n});\n```\n\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n blockedRoutes: [Path.Home, Path.Search, Path.Liveboard],\n accessDeniedMessage: 'You do not have access to this page'\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl\n" - } - ] + "shortText": "Pages within the ThoughtSpot app that can be embedded." }, "children": [ { - "id": 3111, - "name": "Actions", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6343, - "character": 4 - } - ], - "defaultValue": "\"/develop/*/actionsCustomization\"" - }, - { - "id": 3044, - "name": "AdminPage", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6252, - "character": 4 - } - ], - "defaultValue": "\"/admin\"" - }, - { - "id": 3066, - "name": "AiAnswer", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6280, - "character": 4 - } - ], - "defaultValue": "\"/insights/ai-answer/:eurekaAnswerSessionId\"" - }, - { - "id": 3042, - "name": "All", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6249, - "character": 4 - } - ], - "defaultValue": "\"/*\"" - }, - { - "id": 3059, - "name": "Answer", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6271, - "character": 4 - } - ], - "defaultValue": "\"/insights/answer\"" - }, - { - "id": 3046, + "id": 1961, "name": "Answers", "kind": 16, "kindString": "Enumeration member", "flags": {}, + "comment": { + "shortText": "Saved answers listing page" + }, "sources": [ { - "fileName": "types.ts", - "line": 6255, - "character": 4 - } - ], - "defaultValue": "\"/insights/answers\"" - }, - { - "id": 3089, - "name": "AppConnections", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6313, - "character": 4 - } - ], - "defaultValue": "\"/data/app-connections\"" - }, - { - "id": 3128, - "name": "AutoAnswer", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6370, - "character": 4 - } - ], - "defaultValue": "\"/answer/create/auto/:dataSourceId\"" - }, - { - "id": 3091, - "name": "AutoWorksheetWithConnectionId", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6315, - "character": 4 - } - ], - "defaultValue": "\"/data/worksheet/create/auto\"" - }, - { - "id": 3049, - "name": "ConvAssist", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6258, - "character": 4 - } - ], - "defaultValue": "\"/insights/conv-assist\"" - }, - { - "id": 3048, - "name": "Copilot", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6256, - "character": 4 - } - ], - "defaultValue": "\"/copilot\"" - }, - { - "id": 3048, - "name": "CopilotChat", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6257, - "character": 4 - } - ], - "defaultValue": "\"/copilot/chat\"" - }, - { - "id": 3066, - "name": "CreateAiAnswerWithQueryParams", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6280, - "character": 4 - } - ], - "defaultValue": "\"/insights/create-ai-answer\"" - }, - { - "id": 3115, - "name": "CustomCalendarRedirection", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6349, - "character": 4 - } - ], - "defaultValue": "\"/custom-calendar-test\"" - }, - { - "id": 3116, - "name": "CustomCalendarWizard", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6348, - "character": 4 - } - ], - "defaultValue": "\"/custom-calendar\"" - }, - { - "id": 3083, - "name": "DataGovernance", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6309, - "character": 4 - } - ], - "defaultValue": "\"/data/data-governance\"" - }, - { - "id": 3044, - "name": "DataModelPage", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6252, - "character": 4 - } - ], - "defaultValue": "\"/data/*\"" - }, - { - "id": 3077, - "name": "Dataset", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6303, - "character": 4 - } - ], - "defaultValue": "\"/data/dataset\"" - }, - { - "id": 3082, - "name": "Dbt", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6306, - "character": 4 - } - ], - "defaultValue": "\"/data/dbt\"" - }, - { - "id": 3127, - "name": "DbtIntegration", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6365, - "character": 4 - } - ], - "defaultValue": "\"/data/dbt-integration\"" - }, - { - "id": 3075, - "name": "DeepLinkPage", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6293, - "character": 4 - } - ], - "defaultValue": "\"/deeplink\"" - }, - { - "id": 3081, - "name": "Destination", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6305, - "character": 4 - } - ], - "defaultValue": "\"/data/destination\"" - }, - { - "id": 3078, - "name": "DestinationSync", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6302, - "character": 4 - } - ], - "defaultValue": "\"/data/destination-sync\"" - }, - { - "id": 3116, - "name": "DevelopTab", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6350, - "character": 4 - } - ], - "defaultValue": "\"/develop\"" - }, - { - "id": 3051, - "name": "Documents", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6259, - "character": 4 - } - ], - "defaultValue": "\"/insights/doc-search\"" - }, - { - "id": 3062, - "name": "EditACopy", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6274, - "character": 4 - } - ], - "defaultValue": "\"/insights/answer/edit/:editACopySessionKey\"" - }, - { - "id": 3130, - "name": "EmbedAccessDeniedPage", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6371, - "character": 4 - } - ], - "defaultValue": "\"/embed-access-denied\"" - }, - { - "id": 3092, - "name": "Embrace", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6316, - "character": 4 - } - ], - "defaultValue": "\"/data/embrace\"" - }, - { - "id": 3091, - "name": "EmbraceConnections", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6315, - "character": 4 - } - ], - "defaultValue": "\"/data/embrace/connection\"" - }, - { - "id": 3093, - "name": "EmbraceCsvUploadWithDatasourceID", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6317, - "character": 4 - } - ], - "defaultValue": "\"/data/importcsv/loaddata\"" - }, - { - "id": 3063, - "name": "EurekaWithQueryParams", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6277, - "character": 4 - } - ], - "defaultValue": "\"/insights/eureka\"" - }, - { - "id": 3072, - "name": "ForgotPassword", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6292, - "character": 4 - } - ], - "defaultValue": "\"/requestresetpassword\"" - }, - { - "id": 3085, - "name": "FragmentFeedback", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6309, + "fileName": "embed/app.ts", + "line": 39, "character": 4 } ], - "defaultValue": "\"/data/fragment-feedback\"" + "defaultValue": "\"answers\"" }, { - "id": 3117, - "name": "GetStarted", + "id": 1964, + "name": "Data", "kind": 16, "kindString": "Enumeration member", "flags": {}, + "comment": { + "shortText": "Data management page" + }, "sources": [ { - "fileName": "types.ts", - "line": 6351, + "fileName": "embed/app.ts", + "line": 51, "character": 4 } ], - "defaultValue": "\"/get-started\"" + "defaultValue": "\"data\"" }, { - "id": 3045, + "id": 1959, "name": "Home", "kind": 16, "kindString": "Enumeration member", "flags": {}, + "comment": { + "shortText": "Home page" + }, "sources": [ { - "fileName": "types.ts", - "line": 6253, - "character": 4 - } - ], - "defaultValue": "\"/home\"" - }, - { - "id": 3052, - "name": "HomeAnswers", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6262, - "character": 4 - } - ], - "defaultValue": "\"/insights/home/answers\"" - }, - { - "id": 3056, - "name": "HomeCreatedByMe", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6266, - "character": 4 - } - ], - "defaultValue": "\"/insights/home/created-by-me\"" - }, - { - "id": 3054, - "name": "HomeFavs", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6264, - "character": 4 - } - ], - "defaultValue": "\"/insights/home/favourites\"" - }, - { - "id": 3055, - "name": "HomeLiveboardSchedules", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6265, - "character": 4 - } - ], - "defaultValue": "\"/insights/home/liveboard-schedules\"" - }, - { - "id": 3053, - "name": "HomeLiveboards", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6263, - "character": 4 - } - ], - "defaultValue": "\"/insights/home/liveboards\"" - }, - { - "id": 3057, - "name": "HomeMonitorAlerts", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6267, + "fileName": "embed/app.ts", + "line": 31, "character": 4 } ], - "defaultValue": "\"/insights/home/monitor-alerts\"" + "defaultValue": "\"home\"" }, { - "id": 3058, - "name": "HomeSpotIQAnalysis", + "id": 1962, + "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", "flags": {}, + "comment": { + "shortText": "Liveboards listing page" + }, "sources": [ { - "fileName": "types.ts", - "line": 6268, + "fileName": "embed/app.ts", + "line": 43, "character": 4 } ], - "defaultValue": "\"/insights/home/spotiq-analysis\"" + "defaultValue": "\"liveboards\"" }, { - "id": 3118, - "name": "ImportTsl", + "id": 1966, + "name": "Monitor", "kind": 16, "kindString": "Enumeration member", "flags": {}, + "comment": { + "shortText": " Monitor Alerts Page" + }, "sources": [ { - "fileName": "types.ts", - "line": 6354, + "fileName": "embed/app.ts", + "line": 59, "character": 4 } ], - "defaultValue": "\"/import-tsl/:metadataType\"" + "defaultValue": "\"monitor\"" }, { - "id": 3075, - "name": "Insight", + "id": 1960, + "name": "Search", "kind": 16, "kindString": "Enumeration member", "flags": {}, + "comment": { + "shortText": "Search page" + }, "sources": [ { - "fileName": "types.ts", - "line": 6297, + "fileName": "embed/app.ts", + "line": 35, "character": 4 } ], - "defaultValue": "\"/insights/insight/:analysisResultId\"" + "defaultValue": "\"search\"" }, { - "id": 3074, - "name": "Insights", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6296, - "character": 4 - } - ], - "defaultValue": "\"/insights\"" - }, - { - "id": 3084, - "name": "LiveBoardVerification", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6308, - "character": 4 - } - ], - "defaultValue": "\"/data/liveboard-verification\"" - }, - { - "id": 3070, - "name": "Login", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6290, - "character": 4 - } - ], - "defaultValue": "\"/login\"" - }, - { - "id": 3109, - "name": "ManageSchedules", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6339, - "character": 4 - } - ], - "defaultValue": "\"/schedules\"" - }, - { - "id": 3069, - "name": "MonitorV2", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6287, - "character": 4 - } - ], - "defaultValue": "\"/monitor\"" - }, - { - "id": 3112, - "name": "OnBoarding", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6344, - "character": 4 - } - ], - "defaultValue": "\"/onboarding\"" - }, - { - "id": 3107, - "name": "OrgsContent", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6335, - "character": 4 - } - ], - "defaultValue": "\"/orgs/content\"" - }, - { - "id": 3108, - "name": "OrgsCreditConsumption", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6336, - "character": 4 - } - ], - "defaultValue": "\"/orgs/credit-consumption\"" - }, - { - "id": 3106, - "name": "OrgsGroups", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6334, - "character": 4 - } - ], - "defaultValue": "\"/orgs/groups\"" - }, - { - "id": 3104, - "name": "OrgsHome", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6332, - "character": 4 - } - ], - "defaultValue": "\"/orgs\"" - }, - { - "id": 3105, - "name": "OrgsUsers", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6333, - "character": 4 - } - ], - "defaultValue": "\"/orgs/users\"" - }, - { - "id": 3067, - "name": "Pinboard", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6283, - "character": 4 - } - ], - "defaultValue": "\"/insights/pinboard/:pinboardId\"" - }, - { - "id": 3127, - "name": "Purchase", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6367, - "character": 4 - } - ], - "defaultValue": "\"/purchase\"" - }, - { - "id": 3086, - "name": "QueryFeedback", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6310, - "character": 4 - } - ], - "defaultValue": "\"/data/query-feedback\"" - }, - { - "id": 3129, - "name": "RequestAccessForObject", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6369, - "character": 4 - } - ], - "defaultValue": "\"/requestaccess/:objectType/:objectId\"" - }, - { - "id": 3071, - "name": "ResetPassword", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6291, - "character": 4 - } - ], - "defaultValue": "\"/resetpassword\"" - }, - { - "id": 3060, - "name": "SavedAnswer", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6272, - "character": 4 - } - ], - "defaultValue": "\"/insights/saved-answer/:answerId\"" - }, - { - "id": 3126, - "name": "SchemaViewer", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6364, - "character": 4 - } - ], - "defaultValue": "\"/schema-viewer/table\"" - }, - { - "id": 3110, - "name": "Setup", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6342, - "character": 4 - } - ], - "defaultValue": "\"/setup\"" - }, - { - "id": 3124, - "name": "SpotAppDetailsAndAnalytics", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6362, - "character": 4 - } - ], - "defaultValue": "\"/spotapp\"" - }, - { - "id": 3123, - "name": "SpotAppsAdmin", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6361, - "character": 4 - } - ], - "defaultValue": "\"/data/spotapps-admin\"" - }, - { - "id": 3082, - "name": "SqlView", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6306, - "character": 4 - } - ], - "defaultValue": "\"/data/sql-view\"" - }, - { - "id": 3076, - "name": "Table", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6300, - "character": 4 - } - ], - "defaultValue": "\"/data/tables\"" - }, - { - "id": 3100, - "name": "TeamsAuthenticationOptions", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6326, - "character": 4 - } - ], - "defaultValue": "\"/teams/authentication\"" - }, - { - "id": 3102, - "name": "TeamsDataUsage", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6328, - "character": 4 - } - ], - "defaultValue": "\"/teams/data-usage\"" - }, - { - "id": 3103, - "name": "TeamsManageSubscription", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6329, - "character": 4 - } - ], - "defaultValue": "\"/teams/manage-subscription\"" - }, - { - "id": 3094, - "name": "TeamsMembers", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6320, - "character": 4 - } - ], - "defaultValue": "\"/teams/members\"" - }, - { - "id": 3095, - "name": "TeamsPendingInvitations", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6321, - "character": 4 - } - ], - "defaultValue": "\"/teams/pending-invitations\"" - }, - { - "id": 3096, - "name": "TeamsPlanOptions", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6322, - "character": 4 - } - ], - "defaultValue": "\"/teams/plan-options\"" - }, - { - "id": 3097, - "name": "TeamsSpotIQOptions", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6323, - "character": 4 - } - ], - "defaultValue": "\"/teams/spotiq\"" - }, - { - "id": 3098, - "name": "TeamsStyleCustomizationOptions", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6324, - "character": 4 - } - ], - "defaultValue": "\"/teams/style-customization\"" - }, - { - "id": 3101, - "name": "TeamsSystemActivitiesOptions", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6327, - "character": 4 - } - ], - "defaultValue": "\"/teams/system-activities\"" - }, - { - "id": 3099, - "name": "TeamsUserManagementOptions", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6325, - "character": 4 - } - ], - "defaultValue": "\"/teams/user-management\"" - }, - { - "id": 3119, - "name": "TmlUtility", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6355, - "character": 4 - } - ], - "defaultValue": "\"/data/utilities/tml\"" - }, - { - "id": 3065, - "name": "TrainSageWithQueryParams", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6279, - "character": 4 - } - ], - "defaultValue": "\"/data/sage/train\"" - }, - { - "id": 3050, - "name": "TryEverywhere", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6258, - "character": 4 - } - ], - "defaultValue": "\"/everywhere\"" - }, - { - "id": 3120, - "name": "TslEditor", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6356, - "character": 4 - } - ], - "defaultValue": "\"/tsl-editor\"" - }, - { - "id": 3121, - "name": "TslEditorSingleFile", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6357, - "character": 4 - } - ], - "defaultValue": "\"/tsl-editor/:metadataType/:metadataGuid\"" - }, - { - "id": 3122, - "name": "UpdateTslFromFile", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6358, - "character": 4 - } - ], - "defaultValue": "\"/import-tsl/:metadataType/:metadataGuid\"" - }, - { - "id": 3113, - "name": "UserPreference", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6345, - "character": 4 - } - ], - "defaultValue": "\"/user-preference\"" - }, - { - "id": 3079, - "name": "Utilities", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6303, - "character": 4 - } - ], - "defaultValue": "\"/data/utilities\"" - }, - { - "id": 3061, - "name": "View", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6273, - "character": 4 - } - ], - "defaultValue": "\"/insights/view/:answerId\"" - }, - { - "id": 3068, - "name": "VizBoard", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6284, - "character": 4 - } - ], - "defaultValue": "\"/insights/pinboard/:pinboardId/:vizId\"" - }, - { - "id": 3088, - "name": "WorksheetCreate", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6312, - "character": 4 - } - ], - "defaultValue": "\"/worksheet/create\"" - }, - { - "id": 3090, - "name": "csvUpload", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 6314, - "character": 4 - } - ], - "defaultValue": "\"/data/importcsv\"" - } - ], - "groups": [ - { - "title": "Enumeration members", - "kind": 16, - "children": [ - 3111, - 3044, - 3066, - 3042, - 3059, - 3046, - 3087, - 3128, - 3089, - 3049, - 3047, - 3048, - 3064, - 3115, - 3114, - 3083, - 3043, - 3077, - 3080, - 3125, - 3073, - 3081, - 3078, - 3116, - 3051, - 3062, - 3130, - 3092, - 3091, - 3093, - 3063, - 3072, - 3085, - 3117, - 3045, - 3052, - 3056, - 3054, - 3055, - 3053, - 3057, - 3058, - 3118, - 3075, - 3074, - 3084, - 3070, - 3109, - 3069, - 3112, - 3107, - 3108, - 3106, - 3104, - 3105, - 3067, - 3127, - 3086, - 3129, - 3071, - 3060, - 3126, - 3110, - 3124, - 3123, - 3082, - 3076, - 3100, - 3102, - 3103, - 3094, - 3095, - 3096, - 3097, - 3098, - 3101, - 3099, - 3119, - 3065, - 3050, - 3120, - 3121, - 3122, - 3113, - 3079, - 3061, - 3068, - 3088, - 3090 - ] - } - ], - "sources": [ - { - "fileName": "types.ts", - "line": 6248, - "character": 12 - } - ] - }, - { - "id": 1973, - "name": "Page", - "kind": 4, - "kindString": "Enumeration", - "flags": {}, - "comment": { - "shortText": "Pages within the ThoughtSpot app that can be embedded." - }, - "children": [ - { - "id": 1976, - "name": "Answers", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "Saved answers listing page" - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 39, - "character": 4 - } - ], - "defaultValue": "\"answers\"" - }, - { - "id": 1979, - "name": "Data", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "Data management page" - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 51, - "character": 4 - } - ], - "defaultValue": "\"data\"" - }, - { - "id": 1974, - "name": "Home", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "Home page" - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 31, - "character": 4 - } - ], - "defaultValue": "\"home\"" - }, - { - "id": 1977, - "name": "Liveboards", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "Liveboards listing page" - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 43, - "character": 4 - } - ], - "defaultValue": "\"liveboards\"" - }, - { - "id": 1981, - "name": "Monitor", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": " Monitor Alerts Page" - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 59, - "character": 4 - } - ], - "defaultValue": "\"monitor\"" - }, - { - "id": 1975, - "name": "Search", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "Search page" - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 35, - "character": 4 - } - ], - "defaultValue": "\"search\"" - }, - { - "id": 1980, + "id": 1965, "name": "SpotIQ", "kind": 16, "kindString": "Enumeration member", @@ -11572,13 +10395,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1976, - 1979, - 1974, - 1977, - 1981, - 1975, - 1980 + 1961, + 1964, + 1959, + 1962, + 1966, + 1960, + 1965 ] } ], @@ -11591,14 +10414,14 @@ ] }, { - "id": 2593, + "id": 2694, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2594, + "id": 2695, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -11606,14 +10429,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5834, + "line": 6017, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2596, + "id": 2697, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -11621,14 +10444,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5836, + "line": 6019, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2595, + "id": 2696, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -11636,14 +10459,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5835, + "line": 6018, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2597, + "id": 2698, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -11651,7 +10474,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5837, + "line": 6020, "character": 4 } ], @@ -11663,23 +10486,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2594, - 2596, - 2595, - 2597 + 2695, + 2697, + 2696, + 2698 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5833, + "line": 6016, "character": 12 } ] }, { - "id": 2852, + "id": 2954, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -11695,7 +10518,7 @@ }, "children": [ { - "id": 2853, + "id": 2955, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -11718,7 +10541,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2853 + 2955 ] } ], @@ -11731,7 +10554,7 @@ ] }, { - "id": 1910, + "id": 1983, "name": "RuntimeFilterOp", "kind": 4, "kindString": "Enumeration", @@ -11741,7 +10564,7 @@ }, "children": [ { - "id": 1918, + "id": 1991, "name": "BEGINS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -11752,14 +10575,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1673, + "line": 1719, "character": 4 } ], "defaultValue": "\"BEGINS_WITH\"" }, { - "id": 1923, + "id": 1996, "name": "BW", "kind": 16, "kindString": "Enumeration member", @@ -11770,14 +10593,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1693, + "line": 1739, "character": 4 } ], "defaultValue": "\"BW\"" }, { - "id": 1922, + "id": 1995, "name": "BW_INC", "kind": 16, "kindString": "Enumeration member", @@ -11788,14 +10611,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1689, + "line": 1735, "character": 4 } ], "defaultValue": "\"BW_INC\"" }, { - "id": 1920, + "id": 1993, "name": "BW_INC_MAX", "kind": 16, "kindString": "Enumeration member", @@ -11806,14 +10629,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1681, + "line": 1727, "character": 4 } ], "defaultValue": "\"BW_INC_MAX\"" }, { - "id": 1921, + "id": 1994, "name": "BW_INC_MIN", "kind": 16, "kindString": "Enumeration member", @@ -11824,14 +10647,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1685, + "line": 1731, "character": 4 } ], "defaultValue": "\"BW_INC_MIN\"" }, { - "id": 1917, + "id": 1990, "name": "CONTAINS", "kind": 16, "kindString": "Enumeration member", @@ -11842,14 +10665,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1669, + "line": 1715, "character": 4 } ], "defaultValue": "\"CONTAINS\"" }, { - "id": 1919, + "id": 1992, "name": "ENDS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -11860,14 +10683,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1677, + "line": 1723, "character": 4 } ], "defaultValue": "\"ENDS_WITH\"" }, { - "id": 1911, + "id": 1984, "name": "EQ", "kind": 16, "kindString": "Enumeration member", @@ -11878,14 +10701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1645, + "line": 1691, "character": 4 } ], "defaultValue": "\"EQ\"" }, { - "id": 1916, + "id": 1989, "name": "GE", "kind": 16, "kindString": "Enumeration member", @@ -11896,14 +10719,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1665, + "line": 1711, "character": 4 } ], "defaultValue": "\"GE\"" }, { - "id": 1915, + "id": 1988, "name": "GT", "kind": 16, "kindString": "Enumeration member", @@ -11914,14 +10737,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1661, + "line": 1707, "character": 4 } ], "defaultValue": "\"GT\"" }, { - "id": 1924, + "id": 1997, "name": "IN", "kind": 16, "kindString": "Enumeration member", @@ -11932,14 +10755,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1697, + "line": 1743, "character": 4 } ], "defaultValue": "\"IN\"" }, { - "id": 1914, + "id": 1987, "name": "LE", "kind": 16, "kindString": "Enumeration member", @@ -11950,14 +10773,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1657, + "line": 1703, "character": 4 } ], "defaultValue": "\"LE\"" }, { - "id": 1913, + "id": 1986, "name": "LT", "kind": 16, "kindString": "Enumeration member", @@ -11968,14 +10791,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1653, + "line": 1699, "character": 4 } ], "defaultValue": "\"LT\"" }, { - "id": 1912, + "id": 1985, "name": "NE", "kind": 16, "kindString": "Enumeration member", @@ -11986,14 +10809,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1649, + "line": 1695, "character": 4 } ], "defaultValue": "\"NE\"" }, { - "id": 1925, + "id": 1998, "name": "NOT_IN", "kind": 16, "kindString": "Enumeration member", @@ -12004,7 +10827,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1701, + "line": 1747, "character": 4 } ], @@ -12016,41 +10839,41 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1918, - 1923, - 1922, - 1920, - 1921, - 1917, - 1919, - 1911, - 1916, - 1915, - 1924, - 1914, - 1913, - 1912, - 1925 + 1991, + 1996, + 1995, + 1993, + 1994, + 1990, + 1992, + 1984, + 1989, + 1988, + 1997, + 1987, + 1986, + 1985, + 1998 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1641, + "line": 1687, "character": 12 } ] }, { - "id": 2883, + "id": 2985, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2888, + "id": 2990, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -12065,7 +10888,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2887, + "id": 2989, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -12080,7 +10903,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2886, + "id": 2988, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -12095,7 +10918,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2889, + "id": 2991, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -12110,7 +10933,22 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2884, + "id": 2992, + "name": "GetUnsavedAnswerTML", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "embed/hostEventClient/contracts.ts", + "line": 10, + "character": 2 + } + ], + "defaultValue": "\"getUnsavedAnswerTML\"" + }, + { + "id": 2986, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -12125,7 +10963,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2885, + "id": 2987, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -12145,12 +10983,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2888, - 2887, - 2886, - 2889, - 2884, - 2885 + 2990, + 2989, + 2988, + 2991, + 2992, + 2986, + 2987 ] } ], @@ -12163,7 +11002,7 @@ ] }, { - "id": 1802, + "id": 1875, "name": "AnswerService", "kind": 128, "kindString": "Class", @@ -12192,7 +11031,7 @@ }, "children": [ { - "id": 1803, + "id": 1876, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -12209,7 +11048,7 @@ ], "signatures": [ { - "id": 1804, + "id": 1877, "name": "new AnswerService", "kind": 16384, "kindString": "Constructor signature", @@ -12219,7 +11058,7 @@ }, "parameters": [ { - "id": 1805, + "id": 1878, "name": "session", "kind": 32768, "kindString": "Parameter", @@ -12227,12 +11066,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1875, + "id": 1948, "name": "SessionInterface" } }, { - "id": 1806, + "id": 1879, "name": "answer", "kind": 32768, "kindString": "Parameter", @@ -12244,7 +11083,7 @@ } }, { - "id": 1807, + "id": 1880, "name": "thoughtSpotHost", "kind": 32768, "kindString": "Parameter", @@ -12256,7 +11095,7 @@ } }, { - "id": 1808, + "id": 1881, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -12270,7 +11109,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2860, + "id": 2962, "name": "VizPoint" } } @@ -12278,14 +11117,14 @@ ], "type": { "type": "reference", - "id": 1802, + "id": 1875, "name": "AnswerService" } } ] }, { - "id": 1817, + "id": 1890, "name": "addColumns", "kind": 2048, "kindString": "Method", @@ -12301,7 +11140,7 @@ ], "signatures": [ { - "id": 1818, + "id": 1891, "name": "addColumns", "kind": 4096, "kindString": "Call signature", @@ -12312,7 +11151,7 @@ }, "parameters": [ { - "id": 1819, + "id": 1892, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -12341,7 +11180,7 @@ ] }, { - "id": 1820, + "id": 1893, "name": "addColumnsByName", "kind": 2048, "kindString": "Method", @@ -12357,7 +11196,7 @@ ], "signatures": [ { - "id": 1821, + "id": 1894, "name": "addColumnsByName", "kind": 4096, "kindString": "Call signature", @@ -12373,7 +11212,7 @@ }, "parameters": [ { - "id": 1822, + "id": 1895, "name": "columnNames", "kind": 32768, "kindString": "Parameter", @@ -12402,7 +11241,7 @@ ] }, { - "id": 1869, + "id": 1942, "name": "addDisplayedVizToLiveboard", "kind": 2048, "kindString": "Method", @@ -12418,14 +11257,14 @@ ], "signatures": [ { - "id": 1870, + "id": 1943, "name": "addDisplayedVizToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1871, + "id": 1944, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -12450,7 +11289,7 @@ ] }, { - "id": 1823, + "id": 1896, "name": "addFilter", "kind": 2048, "kindString": "Method", @@ -12466,7 +11305,7 @@ ], "signatures": [ { - "id": 1824, + "id": 1897, "name": "addFilter", "kind": 4096, "kindString": "Call signature", @@ -12477,7 +11316,7 @@ }, "parameters": [ { - "id": 1825, + "id": 1898, "name": "columnName", "kind": 32768, "kindString": "Parameter", @@ -12489,7 +11328,7 @@ } }, { - "id": 1826, + "id": 1899, "name": "operator", "kind": 32768, "kindString": "Parameter", @@ -12497,12 +11336,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1910, + "id": 1983, "name": "RuntimeFilterOp" } }, { - "id": 1827, + "id": 1900, "name": "values", "kind": 32768, "kindString": "Parameter", @@ -12548,7 +11387,7 @@ ] }, { - "id": 1859, + "id": 1932, "name": "executeQuery", "kind": 2048, "kindString": "Method", @@ -12564,7 +11403,7 @@ ], "signatures": [ { - "id": 1860, + "id": 1933, "name": "executeQuery", "kind": 4096, "kindString": "Call signature", @@ -12575,7 +11414,7 @@ }, "parameters": [ { - "id": 1861, + "id": 1934, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -12589,7 +11428,7 @@ } }, { - "id": 1862, + "id": 1935, "name": "variables", "kind": 32768, "kindString": "Parameter", @@ -12617,7 +11456,7 @@ ] }, { - "id": 1837, + "id": 1910, "name": "fetchCSVBlob", "kind": 2048, "kindString": "Method", @@ -12633,7 +11472,7 @@ ], "signatures": [ { - "id": 1838, + "id": 1911, "name": "fetchCSVBlob", "kind": 4096, "kindString": "Call signature", @@ -12644,7 +11483,7 @@ }, "parameters": [ { - "id": 1839, + "id": 1912, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -12657,7 +11496,7 @@ "defaultValue": "'en-us'" }, { - "id": 1840, + "id": 1913, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -12686,7 +11525,7 @@ ] }, { - "id": 1830, + "id": 1903, "name": "fetchData", "kind": 2048, "kindString": "Method", @@ -12702,7 +11541,7 @@ ], "signatures": [ { - "id": 1831, + "id": 1904, "name": "fetchData", "kind": 4096, "kindString": "Call signature", @@ -12713,7 +11552,7 @@ }, "parameters": [ { - "id": 1832, + "id": 1905, "name": "offset", "kind": 32768, "kindString": "Parameter", @@ -12726,7 +11565,7 @@ "defaultValue": "0" }, { - "id": 1833, + "id": 1906, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -12745,14 +11584,14 @@ { "type": "reflection", "declaration": { - "id": 1834, + "id": 1907, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1835, + "id": 1908, "name": "columns", "kind": 1024, "kindString": "Property", @@ -12763,7 +11602,7 @@ } }, { - "id": 1836, + "id": 1909, "name": "data", "kind": 1024, "kindString": "Property", @@ -12779,8 +11618,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1835, - 1836 + 1908, + 1909 ] } ] @@ -12793,7 +11632,7 @@ ] }, { - "id": 1841, + "id": 1914, "name": "fetchPNGBlob", "kind": 2048, "kindString": "Method", @@ -12809,7 +11648,7 @@ ], "signatures": [ { - "id": 1842, + "id": 1915, "name": "fetchPNGBlob", "kind": 4096, "kindString": "Call signature", @@ -12820,7 +11659,7 @@ }, "parameters": [ { - "id": 1843, + "id": 1916, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -12833,7 +11672,7 @@ "defaultValue": "'en-us'" }, { - "id": 1844, + "id": 1917, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -12848,7 +11687,7 @@ "defaultValue": "false" }, { - "id": 1845, + "id": 1918, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -12877,7 +11716,7 @@ ] }, { - "id": 1865, + "id": 1938, "name": "getAnswer", "kind": 2048, "kindString": "Method", @@ -12893,7 +11732,7 @@ ], "signatures": [ { - "id": 1866, + "id": 1939, "name": "getAnswer", "kind": 4096, "kindString": "Call signature", @@ -12912,7 +11751,7 @@ ] }, { - "id": 1846, + "id": 1919, "name": "getFetchCSVBlobUrl", "kind": 2048, "kindString": "Method", @@ -12928,7 +11767,7 @@ ], "signatures": [ { - "id": 1847, + "id": 1920, "name": "getFetchCSVBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -12939,7 +11778,7 @@ }, "parameters": [ { - "id": 1848, + "id": 1921, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -12952,7 +11791,7 @@ "defaultValue": "'en-us'" }, { - "id": 1849, + "id": 1922, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -12973,7 +11812,7 @@ ] }, { - "id": 1850, + "id": 1923, "name": "getFetchPNGBlobUrl", "kind": 2048, "kindString": "Method", @@ -12989,7 +11828,7 @@ ], "signatures": [ { - "id": 1851, + "id": 1924, "name": "getFetchPNGBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -12999,7 +11838,7 @@ }, "parameters": [ { - "id": 1852, + "id": 1925, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -13012,7 +11851,7 @@ "defaultValue": "'en-us'" }, { - "id": 1853, + "id": 1926, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -13025,7 +11864,7 @@ "defaultValue": "false" }, { - "id": 1854, + "id": 1927, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -13048,7 +11887,7 @@ ] }, { - "id": 1828, + "id": 1901, "name": "getSQLQuery", "kind": 2048, "kindString": "Method", @@ -13064,7 +11903,7 @@ ], "signatures": [ { - "id": 1829, + "id": 1902, "name": "getSQLQuery", "kind": 4096, "kindString": "Call signature", @@ -13083,7 +11922,7 @@ ] }, { - "id": 1863, + "id": 1936, "name": "getSession", "kind": 2048, "kindString": "Method", @@ -13099,7 +11938,7 @@ ], "signatures": [ { - "id": 1864, + "id": 1937, "name": "getSession", "kind": 4096, "kindString": "Call signature", @@ -13110,14 +11949,14 @@ }, "type": { "type": "reference", - "id": 1875, + "id": 1948, "name": "SessionInterface" } } ] }, { - "id": 1812, + "id": 1885, "name": "getSourceDetail", "kind": 2048, "kindString": "Method", @@ -13133,7 +11972,7 @@ ], "signatures": [ { - "id": 1813, + "id": 1886, "name": "getSourceDetail", "kind": 4096, "kindString": "Call signature", @@ -13155,7 +11994,7 @@ ] }, { - "id": 1867, + "id": 1940, "name": "getTML", "kind": 2048, "kindString": "Method", @@ -13171,7 +12010,7 @@ ], "signatures": [ { - "id": 1868, + "id": 1941, "name": "getTML", "kind": 4096, "kindString": "Call signature", @@ -13190,7 +12029,7 @@ ] }, { - "id": 1855, + "id": 1928, "name": "getUnderlyingDataForPoint", "kind": 2048, "kindString": "Method", @@ -13206,7 +12045,7 @@ ], "signatures": [ { - "id": 1856, + "id": 1929, "name": "getUnderlyingDataForPoint", "kind": 4096, "kindString": "Call signature", @@ -13226,7 +12065,7 @@ }, "parameters": [ { - "id": 1857, + "id": 1930, "name": "outputColumnNames", "kind": 32768, "kindString": "Parameter", @@ -13241,7 +12080,7 @@ } }, { - "id": 1858, + "id": 1931, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -13253,7 +12092,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1882, + "id": 1955, "name": "UnderlyingDataPoint" } } @@ -13264,7 +12103,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1875, "name": "AnswerService" } ], @@ -13274,7 +12113,7 @@ ] }, { - "id": 1814, + "id": 1887, "name": "removeColumns", "kind": 2048, "kindString": "Method", @@ -13290,7 +12129,7 @@ ], "signatures": [ { - "id": 1815, + "id": 1888, "name": "removeColumns", "kind": 4096, "kindString": "Call signature", @@ -13301,7 +12140,7 @@ }, "parameters": [ { - "id": 1816, + "id": 1889, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -13330,7 +12169,7 @@ ] }, { - "id": 1872, + "id": 1945, "name": "setTMLOverride", "kind": 2048, "kindString": "Method", @@ -13346,14 +12185,14 @@ ], "signatures": [ { - "id": 1873, + "id": 1946, "name": "setTMLOverride", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1874, + "id": 1947, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -13377,31 +12216,31 @@ "title": "Constructors", "kind": 512, "children": [ - 1803 + 1876 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1817, - 1820, - 1869, - 1823, - 1859, - 1837, - 1830, - 1841, - 1865, - 1846, - 1850, - 1828, - 1863, - 1812, - 1867, - 1855, - 1814, - 1872 + 1890, + 1893, + 1942, + 1896, + 1932, + 1910, + 1903, + 1914, + 1938, + 1919, + 1923, + 1901, + 1936, + 1885, + 1940, + 1928, + 1887, + 1945 ] } ], @@ -13414,7 +12253,7 @@ ] }, { - "id": 989, + "id": 1027, "name": "AppEmbed", "kind": 128, "kindString": "Class", @@ -13430,7 +12269,7 @@ }, "children": [ { - "id": 990, + "id": 1028, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -13438,46 +12277,46 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 630, + "line": 658, "character": 4 } ], "signatures": [ { - "id": 991, + "id": 1029, "name": "new AppEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 992, + "id": 1030, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2622, + "id": 2723, "name": "DOMSelector" } }, { - "id": 993, + "id": 1031, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2509, + "id": 2604, "name": "AppViewConfig" } } ], "type": { "type": "reference", - "id": 989, + "id": 1027, "name": "AppEmbed" }, "overwrites": { @@ -13492,7 +12331,7 @@ } }, { - "id": 1027, + "id": 1065, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -13502,13 +12341,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1007, + "line": 1041, "character": 11 } ], "signatures": [ { - "id": 1028, + "id": 1066, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -13538,7 +12377,7 @@ } }, { - "id": 1196, + "id": 1241, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -13548,13 +12387,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1596, + "line": 1681, "character": 17 } ], "signatures": [ { - "id": 1197, + "id": 1242, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -13570,7 +12409,7 @@ }, "parameters": [ { - "id": 1198, + "id": 1243, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -13591,7 +12430,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1875, "name": "AnswerService" } ], @@ -13609,7 +12448,7 @@ } }, { - "id": 1004, + "id": 1042, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -13619,13 +12458,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 876, + "line": 910, "character": 11 } ], "signatures": [ { - "id": 1005, + "id": 1043, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -13641,7 +12480,7 @@ ] }, { - "id": 1165, + "id": 1210, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -13651,13 +12490,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1331, + "line": 1416, "character": 11 } ], "signatures": [ { - "id": 1166, + "id": 1211, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -13678,7 +12517,7 @@ } }, { - "id": 1191, + "id": 1236, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -13688,13 +12527,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1668, "character": 11 } ], "signatures": [ { - "id": 1192, + "id": 1237, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -13716,14 +12555,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1193, + "id": 1238, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1195, + "id": 1240, "name": "child", "kind": 1024, "kindString": "Property", @@ -13735,7 +12574,7 @@ "defaultValue": "..." }, { - "id": 1194, + "id": 1239, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -13752,8 +12591,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1195, - 1194 + 1240, + 1239 ] } ] @@ -13771,7 +12610,7 @@ } }, { - "id": 1173, + "id": 1218, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -13781,13 +12620,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1366, + "line": 1451, "character": 11 } ], "signatures": [ { - "id": 1174, + "id": 1219, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -13803,7 +12642,7 @@ }, "parameters": [ { - "id": 1175, + "id": 1220, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -13811,20 +12650,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1176, + "id": 1221, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1177, + "id": 1222, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1178, + "id": 1223, "name": "key", "kind": 32768, "flags": {}, @@ -13869,7 +12708,7 @@ } }, { - "id": 1179, + "id": 1224, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -13879,13 +12718,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1419, + "line": 1504, "character": 11 } ], "signatures": [ { - "id": 1180, + "id": 1225, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -13906,7 +12745,7 @@ } }, { - "id": 1189, + "id": 1234, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -13916,13 +12755,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1555, + "line": 1640, "character": 11 } ], "signatures": [ { - "id": 1190, + "id": 1235, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -13946,7 +12785,7 @@ } }, { - "id": 1023, + "id": 1061, "name": "navigateToPage", "kind": 2048, "kindString": "Method", @@ -13956,13 +12795,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 981, + "line": 1015, "character": 11 } ], "signatures": [ { - "id": 1024, + "id": 1062, "name": "navigateToPage", "kind": 4096, "kindString": "Call signature", @@ -13978,7 +12817,7 @@ }, "parameters": [ { - "id": 1025, + "id": 1063, "name": "path", "kind": 32768, "kindString": "Parameter", @@ -14001,7 +12840,7 @@ } }, { - "id": 1026, + "id": 1064, "name": "noReload", "kind": 32768, "kindString": "Parameter", @@ -14024,7 +12863,7 @@ ] }, { - "id": 1136, + "id": 1181, "name": "off", "kind": 2048, "kindString": "Method", @@ -14034,13 +12873,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1161, + "line": 1236, "character": 11 } ], "signatures": [ { - "id": 1137, + "id": 1182, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -14056,7 +12895,7 @@ }, "parameters": [ { - "id": 1138, + "id": 1183, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14066,12 +12905,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1999, "name": "EmbedEvent" } }, { - "id": 1139, + "id": 1184, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14081,7 +12920,7 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2727, "name": "MessageCallback" } } @@ -14102,7 +12941,7 @@ } }, { - "id": 1042, + "id": 1080, "name": "on", "kind": 2048, "kindString": "Method", @@ -14112,13 +12951,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1705, + "line": 1790, "character": 11 } ], "signatures": [ { - "id": 1043, + "id": 1081, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -14141,38 +12980,38 @@ }, "parameters": [ { - "id": 1044, + "id": 1082, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1926, + "id": 1999, "name": "EmbedEvent" } }, { - "id": 1045, + "id": 1083, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2626, + "id": 2727, "name": "MessageCallback" } }, { - "id": 1046, + "id": 1084, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2623, + "id": 2724, "name": "MessageOptions" }, "defaultValue": "..." @@ -14194,7 +13033,7 @@ } }, { - "id": 1169, + "id": 1214, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -14204,13 +13043,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1429, "character": 17 } ], "signatures": [ { - "id": 1170, + "id": 1215, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -14220,7 +13059,7 @@ }, "parameters": [ { - "id": 1171, + "id": 1216, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -14235,7 +13074,7 @@ "defaultValue": "false" }, { - "id": 1172, + "id": 1217, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -14269,7 +13108,7 @@ } }, { - "id": 1181, + "id": 1226, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -14279,13 +13118,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1430, + "line": 1515, "character": 17 } ], "signatures": [ { - "id": 1182, + "id": 1227, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -14322,7 +13161,7 @@ } }, { - "id": 1035, + "id": 1073, "name": "render", "kind": 2048, "kindString": "Method", @@ -14332,13 +13171,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1036, + "line": 1070, "character": 17 } ], "signatures": [ { - "id": 1036, + "id": 1074, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -14351,7 +13190,7 @@ "typeArguments": [ { "type": "reference", - "id": 989, + "id": 1027, "name": "AppEmbed" } ], @@ -14369,7 +13208,7 @@ } }, { - "id": 1185, + "id": 1230, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -14379,13 +13218,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1478, + "line": 1563, "character": 17 } ], "signatures": [ { - "id": 1186, + "id": 1231, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -14415,7 +13254,7 @@ } }, { - "id": 1187, + "id": 1232, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -14425,13 +13264,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1536, + "line": 1621, "character": 11 } ], "signatures": [ { - "id": 1188, + "id": 1233, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -14461,7 +13300,7 @@ } }, { - "id": 1154, + "id": 1199, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -14471,13 +13310,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1271, + "line": 1346, "character": 17 } ], "signatures": [ { - "id": 1155, + "id": 1200, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -14488,19 +13327,19 @@ }, "typeParameter": [ { - "id": 1156, + "id": 1201, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2020, + "id": 2095, "name": "HostEvent" } }, { - "id": 1157, + "id": 1202, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -14509,7 +13348,7 @@ ], "parameters": [ { - "id": 1158, + "id": 1203, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14523,7 +13362,7 @@ } }, { - "id": 1159, + "id": 1204, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -14580,7 +13419,7 @@ } }, { - "id": 1160, + "id": 1205, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -14590,13 +13429,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1307, + "line": 1392, "character": 17 } ], "signatures": [ { - "id": 1161, + "id": 1206, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -14607,21 +13446,21 @@ }, "typeParameter": [ { - "id": 1162, + "id": 1207, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2985, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1163, + "id": 1208, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -14635,7 +13474,7 @@ } }, { - "id": 1164, + "id": 1209, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -14688,38 +13527,38 @@ "title": "Constructors", "kind": 512, "children": [ - 990 + 1028 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1027, - 1196, - 1004, - 1165, - 1191, - 1173, - 1179, - 1189, - 1023, - 1136, + 1065, + 1241, 1042, - 1169, + 1210, + 1236, + 1218, + 1224, + 1234, + 1061, 1181, - 1035, - 1185, - 1187, - 1154, - 1160 + 1080, + 1214, + 1226, + 1073, + 1230, + 1232, + 1199, + 1205 ] } ], "sources": [ { "fileName": "embed/app.ts", - "line": 624, + "line": 652, "character": 13 } ], @@ -14731,7 +13570,7 @@ ] }, { - "id": 1289, + "id": 1340, "name": "BodylessConversation", "kind": 128, "kindString": "Class", @@ -14755,7 +13594,7 @@ }, "children": [ { - "id": 1290, + "id": 1341, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -14769,45 +13608,45 @@ ], "signatures": [ { - "id": 1291, + "id": 1342, "name": "new BodylessConversation", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1292, + "id": 1343, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1260, + "id": 1308, "name": "BodylessConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1289, + "id": 1340, "name": "BodylessConversation" }, "overwrites": { "type": "reference", - "id": 1201, + "id": 1246, "name": "SpotterAgentEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1200, + "id": 1245, "name": "SpotterAgentEmbed.constructor" } }, { - "id": 1293, + "id": 1344, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -14823,14 +13662,14 @@ ], "signatures": [ { - "id": 1294, + "id": 1345, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1295, + "id": 1346, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -14850,14 +13689,14 @@ { "type": "reflection", "declaration": { - "id": 1296, + "id": 1347, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1298, + "id": 1349, "name": "container", "kind": 1024, "kindString": "Property", @@ -14868,7 +13707,7 @@ } }, { - "id": 1297, + "id": 1348, "name": "error", "kind": 1024, "kindString": "Property", @@ -14879,7 +13718,7 @@ } }, { - "id": 1299, + "id": 1350, "name": "viz", "kind": 1024, "kindString": "Property", @@ -14896,9 +13735,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1298, - 1297, - 1299 + 1349, + 1348, + 1350 ] } ] @@ -14907,14 +13746,14 @@ { "type": "reflection", "declaration": { - "id": 1300, + "id": 1351, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1301, + "id": 1352, "name": "container", "kind": 1024, "kindString": "Property", @@ -14925,7 +13764,7 @@ } }, { - "id": 1303, + "id": 1354, "name": "error", "kind": 1024, "kindString": "Property", @@ -14936,7 +13775,7 @@ } }, { - "id": 1302, + "id": 1353, "name": "viz", "kind": 1024, "kindString": "Property", @@ -14953,9 +13792,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1301, - 1303, - 1302 + 1352, + 1354, + 1353 ] } ] @@ -14968,19 +13807,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1205, + "id": 1250, "name": "SpotterAgentEmbed.sendMessage" } } ], "inheritedFrom": { "type": "reference", - "id": 1204, + "id": 1249, "name": "SpotterAgentEmbed.sendMessage" } }, { - "id": 1304, + "id": 1355, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -14996,7 +13835,7 @@ ], "signatures": [ { - "id": 1305, + "id": 1356, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -15007,7 +13846,7 @@ }, "parameters": [ { - "id": 1306, + "id": 1357, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -15030,14 +13869,14 @@ { "type": "reflection", "declaration": { - "id": 1307, + "id": 1358, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1309, + "id": 1360, "name": "data", "kind": 1024, "kindString": "Property", @@ -15049,7 +13888,7 @@ "defaultValue": "..." }, { - "id": 1308, + "id": 1359, "name": "error", "kind": 1024, "kindString": "Property", @@ -15065,8 +13904,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1309, - 1308 + 1360, + 1359 ] } ] @@ -15075,14 +13914,14 @@ { "type": "reflection", "declaration": { - "id": 1310, + "id": 1361, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1311, + "id": 1362, "name": "data", "kind": 1024, "kindString": "Property", @@ -15090,14 +13929,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1312, + "id": 1363, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1318, + "id": 1369, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -15109,7 +13948,7 @@ "defaultValue": "..." }, { - "id": 1317, + "id": 1368, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -15121,7 +13960,7 @@ "defaultValue": "..." }, { - "id": 1313, + "id": 1364, "name": "convId", "kind": 1024, "kindString": "Property", @@ -15133,7 +13972,7 @@ "defaultValue": "..." }, { - "id": 1316, + "id": 1367, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -15145,7 +13984,7 @@ "defaultValue": "..." }, { - "id": 1314, + "id": 1365, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -15157,7 +13996,7 @@ "defaultValue": "..." }, { - "id": 1315, + "id": 1366, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -15174,12 +14013,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1318, - 1317, - 1313, - 1316, - 1314, - 1315 + 1369, + 1368, + 1364, + 1367, + 1365, + 1366 ] } ] @@ -15188,7 +14027,7 @@ "defaultValue": "..." }, { - "id": 1319, + "id": 1370, "name": "error", "kind": 1024, "kindString": "Property", @@ -15204,8 +14043,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1311, - 1319 + 1362, + 1370 ] } ] @@ -15218,14 +14057,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1216, + "id": 1261, "name": "SpotterAgentEmbed.sendMessageData" } } ], "inheritedFrom": { "type": "reference", - "id": 1215, + "id": 1260, "name": "SpotterAgentEmbed.sendMessageData" } } @@ -15235,15 +14074,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1290 + 1341 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1293, - 1304 + 1344, + 1355 ] } ], @@ -15257,13 +14096,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1199, + "id": 1244, "name": "SpotterAgentEmbed" } ] }, { - "id": 1566, + "id": 1632, "name": "ConversationEmbed", "kind": 128, "kindString": "Class", @@ -15291,7 +14130,7 @@ }, "children": [ { - "id": 1567, + "id": 1633, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -15305,14 +14144,14 @@ ], "signatures": [ { - "id": 1568, + "id": 1634, "name": "new ConversationEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1569, + "id": 1635, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -15323,38 +14162,38 @@ } }, { - "id": 1570, + "id": 1636, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1526, + "id": 1588, "name": "ConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1566, + "id": 1632, "name": "ConversationEmbed" }, "overwrites": { "type": "reference", - "id": 1322, + "id": 1373, "name": "SpotterEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1321, + "id": 1372, "name": "SpotterEmbed.constructor" } }, { - "id": 1710, + "id": 1783, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -15364,13 +14203,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1396, + "line": 1481, "character": 11 } ], "signatures": [ { - "id": 1711, + "id": 1784, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -15390,19 +14229,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1465, + "id": 1523, "name": "SpotterEmbed.destroy" } } ], "inheritedFrom": { "type": "reference", - "id": 1464, + "id": 1522, "name": "SpotterEmbed.destroy" } }, { - "id": 1729, + "id": 1802, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -15412,13 +14251,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1596, + "line": 1681, "character": 17 } ], "signatures": [ { - "id": 1730, + "id": 1803, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -15434,7 +14273,7 @@ }, "parameters": [ { - "id": 1731, + "id": 1804, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15455,7 +14294,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1875, "name": "AnswerService" } ], @@ -15463,19 +14302,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1484, + "id": 1542, "name": "SpotterEmbed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "id": 1483, + "id": 1541, "name": "SpotterEmbed.getAnswerService" } }, { - "id": 1574, + "id": 1640, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -15491,7 +14330,7 @@ ], "signatures": [ { - "id": 1575, + "id": 1641, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -15502,19 +14341,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1329, + "id": 1380, "name": "SpotterEmbed.getIframeSrc" } } ], "inheritedFrom": { "type": "reference", - "id": 1328, + "id": 1379, "name": "SpotterEmbed.getIframeSrc" } }, { - "id": 1724, + "id": 1797, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -15524,13 +14363,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1668, "character": 11 } ], "signatures": [ { - "id": 1725, + "id": 1798, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -15552,14 +14391,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1726, + "id": 1799, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1728, + "id": 1801, "name": "child", "kind": 1024, "kindString": "Property", @@ -15571,7 +14410,7 @@ "defaultValue": "..." }, { - "id": 1727, + "id": 1800, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -15588,8 +14427,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1728, - 1727 + 1801, + 1800 ] } ] @@ -15597,19 +14436,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1479, + "id": 1537, "name": "SpotterEmbed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "id": 1478, + "id": 1536, "name": "SpotterEmbed.getPreRenderIds" } }, { - "id": 1704, + "id": 1777, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -15619,13 +14458,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1366, + "line": 1451, "character": 11 } ], "signatures": [ { - "id": 1705, + "id": 1778, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -15641,7 +14480,7 @@ }, "parameters": [ { - "id": 1706, + "id": 1779, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -15649,20 +14488,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1707, + "id": 1780, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1708, + "id": 1781, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1709, + "id": 1782, "name": "key", "kind": 32768, "flags": {}, @@ -15697,19 +14536,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1459, + "id": 1517, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "id": 1458, + "id": 1516, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } }, { - "id": 1712, + "id": 1785, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -15719,13 +14558,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1419, + "line": 1504, "character": 11 } ], "signatures": [ { - "id": 1713, + "id": 1786, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -15736,19 +14575,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1467, + "id": 1525, "name": "SpotterEmbed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "id": 1466, + "id": 1524, "name": "SpotterEmbed.getUnderlyingFrameElement" } }, { - "id": 1722, + "id": 1795, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -15758,13 +14597,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1555, + "line": 1640, "character": 11 } ], "signatures": [ { - "id": 1723, + "id": 1796, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -15778,19 +14617,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1477, + "id": 1535, "name": "SpotterEmbed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1476, + "id": 1534, "name": "SpotterEmbed.hidePreRender" } }, { - "id": 1669, + "id": 1742, "name": "off", "kind": 2048, "kindString": "Method", @@ -15800,13 +14639,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1161, + "line": 1236, "character": 11 } ], "signatures": [ { - "id": 1670, + "id": 1743, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -15822,7 +14661,7 @@ }, "parameters": [ { - "id": 1671, + "id": 1744, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15832,12 +14671,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1999, "name": "EmbedEvent" } }, { - "id": 1672, + "id": 1745, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -15847,7 +14686,7 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2727, "name": "MessageCallback" } } @@ -15858,19 +14697,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1424, + "id": 1482, "name": "SpotterEmbed.off" } } ], "inheritedFrom": { "type": "reference", - "id": 1423, + "id": 1481, "name": "SpotterEmbed.off" } }, { - "id": 1663, + "id": 1736, "name": "on", "kind": 2048, "kindString": "Method", @@ -15880,13 +14719,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1132, + "line": 1207, "character": 11 } ], "signatures": [ { - "id": 1664, + "id": 1737, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -15906,7 +14745,7 @@ }, "parameters": [ { - "id": 1665, + "id": 1738, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15916,12 +14755,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1999, "name": "EmbedEvent" } }, { - "id": 1666, + "id": 1739, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -15931,12 +14770,12 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2727, "name": "MessageCallback" } }, { - "id": 1667, + "id": 1740, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -15946,13 +14785,13 @@ }, "type": { "type": "reference", - "id": 2623, + "id": 2724, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1668, + "id": 1741, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -15971,19 +14810,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1418, + "id": 1476, "name": "SpotterEmbed.on" } } ], "inheritedFrom": { "type": "reference", - "id": 1417, + "id": 1475, "name": "SpotterEmbed.on" } }, { - "id": 1700, + "id": 1773, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -15993,13 +14832,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1429, "character": 17 } ], "signatures": [ { - "id": 1701, + "id": 1774, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -16009,7 +14848,7 @@ }, "parameters": [ { - "id": 1702, + "id": 1775, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -16024,7 +14863,7 @@ "defaultValue": "false" }, { - "id": 1703, + "id": 1776, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -16048,19 +14887,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1455, + "id": 1513, "name": "SpotterEmbed.preRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1454, + "id": 1512, "name": "SpotterEmbed.preRender" } }, { - "id": 1714, + "id": 1787, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -16070,13 +14909,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1430, + "line": 1515, "character": 17 } ], "signatures": [ { - "id": 1715, + "id": 1788, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -16103,19 +14942,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1469, + "id": 1527, "name": "SpotterEmbed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "id": 1468, + "id": 1526, "name": "SpotterEmbed.prerenderGeneric" } }, { - "id": 1576, + "id": 1642, "name": "render", "kind": 2048, "kindString": "Method", @@ -16131,7 +14970,7 @@ ], "signatures": [ { - "id": 1577, + "id": 1643, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -16141,7 +14980,7 @@ "typeArguments": [ { "type": "reference", - "id": 1320, + "id": 1371, "name": "SpotterEmbed" } ], @@ -16149,19 +14988,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1331, + "id": 1382, "name": "SpotterEmbed.render" } } ], "inheritedFrom": { "type": "reference", - "id": 1330, + "id": 1381, "name": "SpotterEmbed.render" } }, { - "id": 1718, + "id": 1791, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -16171,13 +15010,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1478, + "line": 1563, "character": 17 } ], "signatures": [ { - "id": 1719, + "id": 1792, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -16197,19 +15036,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1473, + "id": 1531, "name": "SpotterEmbed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1472, + "id": 1530, "name": "SpotterEmbed.showPreRender" } }, { - "id": 1720, + "id": 1793, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -16219,13 +15058,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1536, + "line": 1621, "character": 11 } ], "signatures": [ { - "id": 1721, + "id": 1794, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -16245,19 +15084,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1475, + "id": 1533, "name": "SpotterEmbed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "id": 1474, + "id": 1532, "name": "SpotterEmbed.syncPreRenderStyle" } }, { - "id": 1687, + "id": 1760, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -16267,13 +15106,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1271, + "line": 1346, "character": 17 } ], "signatures": [ { - "id": 1688, + "id": 1761, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -16284,19 +15123,19 @@ }, "typeParameter": [ { - "id": 1689, + "id": 1762, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2020, + "id": 2095, "name": "HostEvent" } }, { - "id": 1690, + "id": 1763, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -16305,7 +15144,7 @@ ], "parameters": [ { - "id": 1691, + "id": 1764, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16319,7 +15158,7 @@ } }, { - "id": 1692, + "id": 1765, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -16366,19 +15205,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1442, + "id": 1500, "name": "SpotterEmbed.trigger" } } ], "inheritedFrom": { "type": "reference", - "id": 1441, + "id": 1499, "name": "SpotterEmbed.trigger" } }, { - "id": 1693, + "id": 1766, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -16388,13 +15227,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1307, + "line": 1392, "character": 17 } ], "signatures": [ { - "id": 1694, + "id": 1767, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -16405,21 +15244,21 @@ }, "typeParameter": [ { - "id": 1695, + "id": 1768, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2985, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1696, + "id": 1769, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -16433,7 +15272,7 @@ } }, { - "id": 1697, + "id": 1770, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -16471,14 +15310,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1448, + "id": 1506, "name": "SpotterEmbed.triggerUIPassThrough" } } ], "inheritedFrom": { "type": "reference", - "id": 1447, + "id": 1505, "name": "SpotterEmbed.triggerUIPassThrough" } } @@ -16488,29 +15327,29 @@ "title": "Constructors", "kind": 512, "children": [ - 1567 + 1633 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1710, - 1729, - 1574, - 1724, - 1704, - 1712, - 1722, - 1669, - 1663, - 1700, - 1714, - 1576, - 1718, - 1720, - 1687, - 1693 + 1783, + 1802, + 1640, + 1797, + 1777, + 1785, + 1795, + 1742, + 1736, + 1773, + 1787, + 1642, + 1791, + 1793, + 1760, + 1766 ] } ], @@ -16524,13 +15363,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1320, + "id": 1371, "name": "SpotterEmbed" } ] }, { - "id": 590, + "id": 614, "name": "LiveboardEmbed", "kind": 128, "kindString": "Class", @@ -16550,7 +15389,7 @@ }, "children": [ { - "id": 591, + "id": 615, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -16564,40 +15403,40 @@ ], "signatures": [ { - "id": 592, + "id": 616, "name": "new LiveboardEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 593, + "id": 617, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2622, + "id": 2723, "name": "DOMSelector" } }, { - "id": 594, + "id": 618, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2387, + "id": 2472, "name": "LiveboardViewConfig" } } ], "type": { "type": "reference", - "id": 590, + "id": 614, "name": "LiveboardEmbed" }, "overwrites": { @@ -16612,7 +15451,7 @@ } }, { - "id": 646, + "id": 670, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -16628,7 +15467,7 @@ ], "signatures": [ { - "id": 647, + "id": 671, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -16658,7 +15497,7 @@ } }, { - "id": 810, + "id": 841, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -16668,13 +15507,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1596, + "line": 1681, "character": 17 } ], "signatures": [ { - "id": 811, + "id": 842, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -16690,7 +15529,7 @@ }, "parameters": [ { - "id": 812, + "id": 843, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -16711,7 +15550,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1875, "name": "AnswerService" } ], @@ -16729,7 +15568,7 @@ } }, { - "id": 783, + "id": 814, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -16739,13 +15578,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1331, + "line": 1416, "character": 11 } ], "signatures": [ { - "id": 784, + "id": 815, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -16766,7 +15605,7 @@ } }, { - "id": 661, + "id": 685, "name": "getLiveboardUrl", "kind": 2048, "kindString": "Method", @@ -16782,7 +15621,7 @@ ], "signatures": [ { - "id": 662, + "id": 686, "name": "getLiveboardUrl", "kind": 4096, "kindString": "Call signature", @@ -16799,7 +15638,7 @@ ] }, { - "id": 805, + "id": 836, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -16809,13 +15648,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1668, "character": 11 } ], "signatures": [ { - "id": 806, + "id": 837, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -16837,14 +15676,14 @@ "type": { "type": "reflection", "declaration": { - "id": 807, + "id": 838, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 809, + "id": 840, "name": "child", "kind": 1024, "kindString": "Property", @@ -16856,7 +15695,7 @@ "defaultValue": "..." }, { - "id": 808, + "id": 839, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -16873,8 +15712,8 @@ "title": "Properties", "kind": 1024, "children": [ - 809, - 808 + 840, + 839 ] } ] @@ -16892,7 +15731,7 @@ } }, { - "id": 789, + "id": 820, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -16902,13 +15741,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1366, + "line": 1451, "character": 11 } ], "signatures": [ { - "id": 790, + "id": 821, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -16924,7 +15763,7 @@ }, "parameters": [ { - "id": 791, + "id": 822, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -16932,20 +15771,20 @@ "type": { "type": "reflection", "declaration": { - "id": 792, + "id": 823, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 793, + "id": 824, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 794, + "id": 825, "name": "key", "kind": 32768, "flags": {}, @@ -16990,7 +15829,7 @@ } }, { - "id": 795, + "id": 826, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -17000,13 +15839,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1419, + "line": 1504, "character": 11 } ], "signatures": [ { - "id": 796, + "id": 827, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -17027,7 +15866,7 @@ } }, { - "id": 803, + "id": 834, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -17037,13 +15876,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1555, + "line": 1640, "character": 11 } ], "signatures": [ { - "id": 804, + "id": 835, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -17067,7 +15906,7 @@ } }, { - "id": 656, + "id": 680, "name": "navigateToLiveboard", "kind": 2048, "kindString": "Method", @@ -17083,14 +15922,14 @@ ], "signatures": [ { - "id": 657, + "id": 681, "name": "navigateToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 658, + "id": 682, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -17101,7 +15940,7 @@ } }, { - "id": 659, + "id": 683, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -17114,7 +15953,7 @@ } }, { - "id": 660, + "id": 684, "name": "activeTabId", "kind": 32768, "kindString": "Parameter", @@ -17135,7 +15974,7 @@ ] }, { - "id": 760, + "id": 791, "name": "off", "kind": 2048, "kindString": "Method", @@ -17145,13 +15984,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1161, + "line": 1236, "character": 11 } ], "signatures": [ { - "id": 761, + "id": 792, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -17167,7 +16006,7 @@ }, "parameters": [ { - "id": 762, + "id": 793, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17177,12 +16016,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1999, "name": "EmbedEvent" } }, { - "id": 763, + "id": 794, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -17192,7 +16031,7 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2727, "name": "MessageCallback" } } @@ -17213,7 +16052,7 @@ } }, { - "id": 668, + "id": 692, "name": "on", "kind": 2048, "kindString": "Method", @@ -17223,13 +16062,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1705, + "line": 1790, "character": 11 } ], "signatures": [ { - "id": 669, + "id": 693, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -17252,38 +16091,38 @@ }, "parameters": [ { - "id": 670, + "id": 694, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1926, + "id": 1999, "name": "EmbedEvent" } }, { - "id": 671, + "id": 695, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2626, + "id": 2727, "name": "MessageCallback" } }, { - "id": 672, + "id": 696, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2623, + "id": 2724, "name": "MessageOptions" }, "defaultValue": "..." @@ -17305,7 +16144,7 @@ } }, { - "id": 785, + "id": 816, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -17315,13 +16154,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1429, "character": 17 } ], "signatures": [ { - "id": 786, + "id": 817, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -17331,7 +16170,7 @@ }, "parameters": [ { - "id": 787, + "id": 818, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -17346,7 +16185,7 @@ "defaultValue": "false" }, { - "id": 788, + "id": 819, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -17380,7 +16219,7 @@ } }, { - "id": 797, + "id": 828, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -17390,13 +16229,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1430, + "line": 1515, "character": 17 } ], "signatures": [ { - "id": 798, + "id": 829, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -17433,7 +16272,7 @@ } }, { - "id": 654, + "id": 678, "name": "render", "kind": 2048, "kindString": "Method", @@ -17449,7 +16288,7 @@ ], "signatures": [ { - "id": 655, + "id": 679, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -17462,7 +16301,7 @@ "typeArguments": [ { "type": "reference", - "id": 590, + "id": 614, "name": "LiveboardEmbed" } ], @@ -17480,7 +16319,7 @@ } }, { - "id": 799, + "id": 830, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -17490,13 +16329,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1478, + "line": 1563, "character": 17 } ], "signatures": [ { - "id": 800, + "id": 831, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -17526,7 +16365,7 @@ } }, { - "id": 801, + "id": 832, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -17536,13 +16375,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1536, + "line": 1621, "character": 11 } ], "signatures": [ { - "id": 802, + "id": 833, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -17572,7 +16411,7 @@ } }, { - "id": 640, + "id": 664, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -17588,7 +16427,7 @@ ], "signatures": [ { - "id": 641, + "id": 665, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -17599,19 +16438,19 @@ }, "typeParameter": [ { - "id": 642, + "id": 666, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2020, + "id": 2095, "name": "HostEvent" } }, { - "id": 643, + "id": 667, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -17620,7 +16459,7 @@ ], "parameters": [ { - "id": 644, + "id": 668, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17634,7 +16473,7 @@ } }, { - "id": 645, + "id": 669, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -17691,7 +16530,7 @@ } }, { - "id": 778, + "id": 809, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -17701,13 +16540,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1307, + "line": 1392, "character": 17 } ], "signatures": [ { - "id": 779, + "id": 810, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -17718,21 +16557,21 @@ }, "typeParameter": [ { - "id": 780, + "id": 811, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2985, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 781, + "id": 812, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -17746,7 +16585,7 @@ } }, { - "id": 782, + "id": 813, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -17799,31 +16638,31 @@ "title": "Constructors", "kind": 512, "children": [ - 591 + 615 ] }, { "title": "Methods", "kind": 2048, "children": [ - 646, - 810, - 783, - 661, - 805, - 789, - 795, - 803, - 656, - 760, - 668, - 785, - 797, - 654, - 799, - 801, - 640, - 778 + 670, + 841, + 814, + 685, + 836, + 820, + 826, + 834, + 680, + 791, + 692, + 816, + 828, + 678, + 830, + 832, + 664, + 809 ] } ], @@ -17842,7 +16681,7 @@ ] }, { - "id": 813, + "id": 844, "name": "SageEmbed", "kind": 128, "kindString": "Class", @@ -17862,7 +16701,7 @@ }, "children": [ { - "id": 814, + "id": 845, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -17876,40 +16715,40 @@ ], "signatures": [ { - "id": 815, + "id": 846, "name": "new SageEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 816, + "id": 847, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2622, + "id": 2723, "name": "DOMSelector" } }, { - "id": 817, + "id": 848, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2462, + "id": 2554, "name": "SageViewConfig" } } ], "type": { "type": "reference", - "id": 813, + "id": 844, "name": "SageEmbed" }, "overwrites": { @@ -17924,7 +16763,7 @@ } }, { - "id": 967, + "id": 1005, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -17934,13 +16773,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1396, + "line": 1481, "character": 11 } ], "signatures": [ { - "id": 968, + "id": 1006, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -17970,7 +16809,7 @@ } }, { - "id": 986, + "id": 1024, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -17980,13 +16819,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1596, + "line": 1681, "character": 17 } ], "signatures": [ { - "id": 987, + "id": 1025, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -18002,7 +16841,7 @@ }, "parameters": [ { - "id": 988, + "id": 1026, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -18023,7 +16862,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1875, "name": "AnswerService" } ], @@ -18041,7 +16880,7 @@ } }, { - "id": 823, + "id": 854, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -18057,7 +16896,7 @@ ], "signatures": [ { - "id": 824, + "id": 855, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -18074,7 +16913,7 @@ ] }, { - "id": 953, + "id": 991, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -18084,13 +16923,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1331, + "line": 1416, "character": 11 } ], "signatures": [ { - "id": 954, + "id": 992, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -18111,7 +16950,7 @@ } }, { - "id": 981, + "id": 1019, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -18121,13 +16960,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1668, "character": 11 } ], "signatures": [ { - "id": 982, + "id": 1020, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -18149,14 +16988,14 @@ "type": { "type": "reflection", "declaration": { - "id": 983, + "id": 1021, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 985, + "id": 1023, "name": "child", "kind": 1024, "kindString": "Property", @@ -18168,7 +17007,7 @@ "defaultValue": "..." }, { - "id": 984, + "id": 1022, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -18185,8 +17024,8 @@ "title": "Properties", "kind": 1024, "children": [ - 985, - 984 + 1023, + 1022 ] } ] @@ -18204,7 +17043,7 @@ } }, { - "id": 961, + "id": 999, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -18214,13 +17053,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1366, + "line": 1451, "character": 11 } ], "signatures": [ { - "id": 962, + "id": 1000, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -18236,7 +17075,7 @@ }, "parameters": [ { - "id": 963, + "id": 1001, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -18244,20 +17083,20 @@ "type": { "type": "reflection", "declaration": { - "id": 964, + "id": 1002, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 965, + "id": 1003, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 966, + "id": 1004, "name": "key", "kind": 32768, "flags": {}, @@ -18302,7 +17141,7 @@ } }, { - "id": 969, + "id": 1007, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -18312,13 +17151,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1419, + "line": 1504, "character": 11 } ], "signatures": [ { - "id": 970, + "id": 1008, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -18339,7 +17178,7 @@ } }, { - "id": 979, + "id": 1017, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -18349,13 +17188,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1555, + "line": 1640, "character": 11 } ], "signatures": [ { - "id": 980, + "id": 1018, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -18379,7 +17218,7 @@ } }, { - "id": 924, + "id": 962, "name": "off", "kind": 2048, "kindString": "Method", @@ -18389,13 +17228,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1161, + "line": 1236, "character": 11 } ], "signatures": [ { - "id": 925, + "id": 963, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -18411,7 +17250,7 @@ }, "parameters": [ { - "id": 926, + "id": 964, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18421,12 +17260,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1999, "name": "EmbedEvent" } }, { - "id": 927, + "id": 965, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18436,7 +17275,7 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2727, "name": "MessageCallback" } } @@ -18457,7 +17296,7 @@ } }, { - "id": 832, + "id": 863, "name": "on", "kind": 2048, "kindString": "Method", @@ -18467,13 +17306,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1705, + "line": 1790, "character": 11 } ], "signatures": [ { - "id": 833, + "id": 864, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -18496,38 +17335,38 @@ }, "parameters": [ { - "id": 834, + "id": 865, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1926, + "id": 1999, "name": "EmbedEvent" } }, { - "id": 835, + "id": 866, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2626, + "id": 2727, "name": "MessageCallback" } }, { - "id": 836, + "id": 867, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2623, + "id": 2724, "name": "MessageOptions" }, "defaultValue": "..." @@ -18549,7 +17388,7 @@ } }, { - "id": 957, + "id": 995, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -18559,13 +17398,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1429, "character": 17 } ], "signatures": [ { - "id": 958, + "id": 996, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -18575,7 +17414,7 @@ }, "parameters": [ { - "id": 959, + "id": 997, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -18590,7 +17429,7 @@ "defaultValue": "false" }, { - "id": 960, + "id": 998, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -18624,7 +17463,7 @@ } }, { - "id": 971, + "id": 1009, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -18634,13 +17473,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1430, + "line": 1515, "character": 17 } ], "signatures": [ { - "id": 972, + "id": 1010, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -18677,7 +17516,7 @@ } }, { - "id": 825, + "id": 856, "name": "render", "kind": 2048, "kindString": "Method", @@ -18693,7 +17532,7 @@ ], "signatures": [ { - "id": 826, + "id": 857, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -18707,7 +17546,7 @@ "typeArguments": [ { "type": "reference", - "id": 813, + "id": 844, "name": "SageEmbed" } ], @@ -18725,7 +17564,7 @@ } }, { - "id": 975, + "id": 1013, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -18735,13 +17574,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1478, + "line": 1563, "character": 17 } ], "signatures": [ { - "id": 976, + "id": 1014, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -18771,7 +17610,7 @@ } }, { - "id": 977, + "id": 1015, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -18781,13 +17620,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1536, + "line": 1621, "character": 11 } ], "signatures": [ { - "id": 978, + "id": 1016, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -18817,7 +17656,7 @@ } }, { - "id": 942, + "id": 980, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -18827,13 +17666,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1271, + "line": 1346, "character": 17 } ], "signatures": [ { - "id": 943, + "id": 981, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -18844,19 +17683,19 @@ }, "typeParameter": [ { - "id": 944, + "id": 982, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2020, + "id": 2095, "name": "HostEvent" } }, { - "id": 945, + "id": 983, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -18865,7 +17704,7 @@ ], "parameters": [ { - "id": 946, + "id": 984, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18879,7 +17718,7 @@ } }, { - "id": 947, + "id": 985, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -18936,7 +17775,7 @@ } }, { - "id": 948, + "id": 986, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -18946,13 +17785,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1307, + "line": 1392, "character": 17 } ], "signatures": [ { - "id": 949, + "id": 987, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -18963,21 +17802,21 @@ }, "typeParameter": [ { - "id": 950, + "id": 988, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2985, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 951, + "id": 989, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -18991,7 +17830,7 @@ } }, { - "id": 952, + "id": 990, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -19044,30 +17883,30 @@ "title": "Constructors", "kind": 512, "children": [ - 814 + 845 ] }, { "title": "Methods", "kind": 2048, "children": [ - 967, - 986, - 823, - 953, - 981, - 961, - 969, - 979, - 924, - 832, - 957, - 971, - 825, - 975, - 977, - 942, - 948 + 1005, + 1024, + 854, + 991, + 1019, + 999, + 1007, + 1017, + 962, + 863, + 995, + 1009, + 856, + 1013, + 1015, + 980, + 986 ] } ], @@ -19086,7 +17925,7 @@ ] }, { - "id": 231, + "id": 241, "name": "SearchBarEmbed", "kind": 128, "kindString": "Class", @@ -19106,7 +17945,7 @@ }, "children": [ { - "id": 232, + "id": 242, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -19120,14 +17959,14 @@ ], "signatures": [ { - "id": 233, + "id": 243, "name": "new SearchBarEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 234, + "id": 244, "name": "domSelector", "kind": 32768, "kindString": "Parameter", @@ -19138,21 +17977,21 @@ } }, { - "id": 235, + "id": 245, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2345, + "id": 2427, "name": "SearchBarViewConfig" } } ], "type": { "type": "reference", - "id": 231, + "id": 241, "name": "SearchBarEmbed" }, "overwrites": { @@ -19167,7 +18006,7 @@ } }, { - "id": 382, + "id": 399, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -19177,13 +18016,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1396, + "line": 1481, "character": 11 } ], "signatures": [ { - "id": 383, + "id": 400, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -19213,7 +18052,7 @@ } }, { - "id": 401, + "id": 418, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -19223,13 +18062,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1596, + "line": 1681, "character": 17 } ], "signatures": [ { - "id": 402, + "id": 419, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -19245,7 +18084,7 @@ }, "parameters": [ { - "id": 403, + "id": 420, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -19266,7 +18105,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1875, "name": "AnswerService" } ], @@ -19284,7 +18123,7 @@ } }, { - "id": 368, + "id": 385, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -19294,13 +18133,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1331, + "line": 1416, "character": 11 } ], "signatures": [ { - "id": 369, + "id": 386, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -19321,7 +18160,7 @@ } }, { - "id": 396, + "id": 413, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -19331,13 +18170,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1668, "character": 11 } ], "signatures": [ { - "id": 397, + "id": 414, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -19359,14 +18198,14 @@ "type": { "type": "reflection", "declaration": { - "id": 398, + "id": 415, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 400, + "id": 417, "name": "child", "kind": 1024, "kindString": "Property", @@ -19378,7 +18217,7 @@ "defaultValue": "..." }, { - "id": 399, + "id": 416, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -19395,8 +18234,8 @@ "title": "Properties", "kind": 1024, "children": [ - 400, - 399 + 417, + 416 ] } ] @@ -19414,7 +18253,7 @@ } }, { - "id": 376, + "id": 393, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -19424,13 +18263,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1366, + "line": 1451, "character": 11 } ], "signatures": [ { - "id": 377, + "id": 394, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -19446,7 +18285,7 @@ }, "parameters": [ { - "id": 378, + "id": 395, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -19454,20 +18293,20 @@ "type": { "type": "reflection", "declaration": { - "id": 379, + "id": 396, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 380, + "id": 397, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 381, + "id": 398, "name": "key", "kind": 32768, "flags": {}, @@ -19512,7 +18351,7 @@ } }, { - "id": 384, + "id": 401, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -19522,13 +18361,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1419, + "line": 1504, "character": 11 } ], "signatures": [ { - "id": 385, + "id": 402, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -19549,7 +18388,7 @@ } }, { - "id": 394, + "id": 411, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -19559,13 +18398,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1555, + "line": 1640, "character": 11 } ], "signatures": [ { - "id": 395, + "id": 412, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -19589,7 +18428,7 @@ } }, { - "id": 339, + "id": 356, "name": "off", "kind": 2048, "kindString": "Method", @@ -19599,13 +18438,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1161, + "line": 1236, "character": 11 } ], "signatures": [ { - "id": 340, + "id": 357, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -19621,7 +18460,7 @@ }, "parameters": [ { - "id": 341, + "id": 358, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19631,12 +18470,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1999, "name": "EmbedEvent" } }, { - "id": 342, + "id": 359, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19646,7 +18485,7 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2727, "name": "MessageCallback" } } @@ -19667,7 +18506,7 @@ } }, { - "id": 333, + "id": 350, "name": "on", "kind": 2048, "kindString": "Method", @@ -19677,13 +18516,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1132, + "line": 1207, "character": 11 } ], "signatures": [ { - "id": 334, + "id": 351, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -19703,7 +18542,7 @@ }, "parameters": [ { - "id": 335, + "id": 352, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19713,12 +18552,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1999, "name": "EmbedEvent" } }, { - "id": 336, + "id": 353, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19728,12 +18567,12 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2727, "name": "MessageCallback" } }, { - "id": 337, + "id": 354, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -19743,13 +18582,13 @@ }, "type": { "type": "reference", - "id": 2623, + "id": 2724, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 338, + "id": 355, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -19778,7 +18617,7 @@ } }, { - "id": 372, + "id": 389, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -19788,13 +18627,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1429, "character": 17 } ], "signatures": [ { - "id": 373, + "id": 390, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -19804,7 +18643,7 @@ }, "parameters": [ { - "id": 374, + "id": 391, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -19819,7 +18658,7 @@ "defaultValue": "false" }, { - "id": 375, + "id": 392, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -19853,7 +18692,7 @@ } }, { - "id": 386, + "id": 403, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -19863,13 +18702,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1430, + "line": 1515, "character": 17 } ], "signatures": [ { - "id": 387, + "id": 404, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -19906,7 +18745,7 @@ } }, { - "id": 242, + "id": 252, "name": "render", "kind": 2048, "kindString": "Method", @@ -19922,7 +18761,7 @@ ], "signatures": [ { - "id": 243, + "id": 253, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -19935,7 +18774,7 @@ "typeArguments": [ { "type": "reference", - "id": 231, + "id": 241, "name": "SearchBarEmbed" } ], @@ -19953,7 +18792,7 @@ } }, { - "id": 390, + "id": 407, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -19963,13 +18802,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1478, + "line": 1563, "character": 17 } ], "signatures": [ { - "id": 391, + "id": 408, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -19999,7 +18838,7 @@ } }, { - "id": 392, + "id": 409, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -20009,13 +18848,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1536, + "line": 1621, "character": 11 } ], "signatures": [ { - "id": 393, + "id": 410, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -20045,7 +18884,7 @@ } }, { - "id": 357, + "id": 374, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -20055,13 +18894,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1271, + "line": 1346, "character": 17 } ], "signatures": [ { - "id": 358, + "id": 375, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -20072,19 +18911,19 @@ }, "typeParameter": [ { - "id": 359, + "id": 376, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2020, + "id": 2095, "name": "HostEvent" } }, { - "id": 360, + "id": 377, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -20093,7 +18932,7 @@ ], "parameters": [ { - "id": 361, + "id": 378, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -20107,7 +18946,7 @@ } }, { - "id": 362, + "id": 379, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -20164,7 +19003,7 @@ } }, { - "id": 363, + "id": 380, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -20174,13 +19013,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1307, + "line": 1392, "character": 17 } ], "signatures": [ { - "id": 364, + "id": 381, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -20191,21 +19030,21 @@ }, "typeParameter": [ { - "id": 365, + "id": 382, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2985, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 366, + "id": 383, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -20219,7 +19058,7 @@ } }, { - "id": 367, + "id": 384, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -20272,29 +19111,29 @@ "title": "Constructors", "kind": 512, "children": [ - 232 + 242 ] }, { "title": "Methods", "kind": 2048, "children": [ - 382, + 399, + 418, + 385, + 413, + 393, 401, - 368, - 396, - 376, - 384, - 394, - 339, - 333, - 372, - 386, - 242, - 390, - 392, - 357, - 363 + 411, + 356, + 350, + 389, + 403, + 252, + 407, + 409, + 374, + 380 ] } ], @@ -20357,7 +19196,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2622, + "id": 2723, "name": "DOMSelector" } }, @@ -20369,7 +19208,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2291, + "id": 2371, "name": "SearchViewConfig" } } @@ -20391,7 +19230,7 @@ } }, { - "id": 209, + "id": 219, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -20401,13 +19240,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1396, + "line": 1481, "character": 11 } ], "signatures": [ { - "id": 210, + "id": 220, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -20437,7 +19276,7 @@ } }, { - "id": 228, + "id": 238, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -20447,13 +19286,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1596, + "line": 1681, "character": 17 } ], "signatures": [ { - "id": 229, + "id": 239, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -20469,7 +19308,7 @@ }, "parameters": [ { - "id": 230, + "id": 240, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -20490,7 +19329,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1875, "name": "AnswerService" } ], @@ -20540,7 +19379,7 @@ ] }, { - "id": 195, + "id": 205, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -20550,13 +19389,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1331, + "line": 1416, "character": 11 } ], "signatures": [ { - "id": 196, + "id": 206, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -20577,7 +19416,7 @@ } }, { - "id": 223, + "id": 233, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -20587,13 +19426,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1668, "character": 11 } ], "signatures": [ { - "id": 224, + "id": 234, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -20615,14 +19454,14 @@ "type": { "type": "reflection", "declaration": { - "id": 225, + "id": 235, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 227, + "id": 237, "name": "child", "kind": 1024, "kindString": "Property", @@ -20634,7 +19473,7 @@ "defaultValue": "..." }, { - "id": 226, + "id": 236, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -20651,8 +19490,8 @@ "title": "Properties", "kind": 1024, "children": [ - 227, - 226 + 237, + 236 ] } ] @@ -20670,7 +19509,7 @@ } }, { - "id": 203, + "id": 213, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -20680,13 +19519,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1366, + "line": 1451, "character": 11 } ], "signatures": [ { - "id": 204, + "id": 214, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -20702,7 +19541,7 @@ }, "parameters": [ { - "id": 205, + "id": 215, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -20710,20 +19549,20 @@ "type": { "type": "reflection", "declaration": { - "id": 206, + "id": 216, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 207, + "id": 217, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 208, + "id": 218, "name": "key", "kind": 32768, "flags": {}, @@ -20768,7 +19607,7 @@ } }, { - "id": 211, + "id": 221, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -20778,13 +19617,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1419, + "line": 1504, "character": 11 } ], "signatures": [ { - "id": 212, + "id": 222, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -20805,7 +19644,7 @@ } }, { - "id": 221, + "id": 231, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -20815,13 +19654,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1555, + "line": 1640, "character": 11 } ], "signatures": [ { - "id": 222, + "id": 232, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -20845,7 +19684,7 @@ } }, { - "id": 166, + "id": 176, "name": "off", "kind": 2048, "kindString": "Method", @@ -20855,13 +19694,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1161, + "line": 1236, "character": 11 } ], "signatures": [ { - "id": 167, + "id": 177, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -20877,7 +19716,7 @@ }, "parameters": [ { - "id": 168, + "id": 178, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -20887,12 +19726,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1999, "name": "EmbedEvent" } }, { - "id": 169, + "id": 179, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -20902,7 +19741,7 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2727, "name": "MessageCallback" } } @@ -20923,7 +19762,7 @@ } }, { - "id": 160, + "id": 170, "name": "on", "kind": 2048, "kindString": "Method", @@ -20933,13 +19772,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1132, + "line": 1207, "character": 11 } ], "signatures": [ { - "id": 161, + "id": 171, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -20959,7 +19798,7 @@ }, "parameters": [ { - "id": 162, + "id": 172, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -20969,12 +19808,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1999, "name": "EmbedEvent" } }, { - "id": 163, + "id": 173, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -20984,12 +19823,12 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2727, "name": "MessageCallback" } }, { - "id": 164, + "id": 174, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -20999,13 +19838,13 @@ }, "type": { "type": "reference", - "id": 2623, + "id": 2724, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 165, + "id": 175, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -21034,7 +19873,7 @@ } }, { - "id": 199, + "id": 209, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -21044,13 +19883,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1429, "character": 17 } ], "signatures": [ { - "id": 200, + "id": 210, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -21060,7 +19899,7 @@ }, "parameters": [ { - "id": 201, + "id": 211, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -21075,7 +19914,7 @@ "defaultValue": "false" }, { - "id": 202, + "id": 212, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -21109,7 +19948,7 @@ } }, { - "id": 213, + "id": 223, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -21119,13 +19958,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1430, + "line": 1515, "character": 17 } ], "signatures": [ { - "id": 214, + "id": 224, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -21209,7 +20048,7 @@ } }, { - "id": 217, + "id": 227, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -21219,13 +20058,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1478, + "line": 1563, "character": 17 } ], "signatures": [ { - "id": 218, + "id": 228, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -21255,7 +20094,7 @@ } }, { - "id": 219, + "id": 229, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -21265,13 +20104,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1536, + "line": 1621, "character": 11 } ], "signatures": [ { - "id": 220, + "id": 230, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -21301,7 +20140,7 @@ } }, { - "id": 184, + "id": 194, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -21311,13 +20150,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1271, + "line": 1346, "character": 17 } ], "signatures": [ { - "id": 185, + "id": 195, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -21328,19 +20167,19 @@ }, "typeParameter": [ { - "id": 186, + "id": 196, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2020, + "id": 2095, "name": "HostEvent" } }, { - "id": 187, + "id": 197, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -21349,7 +20188,7 @@ ], "parameters": [ { - "id": 188, + "id": 198, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21363,7 +20202,7 @@ } }, { - "id": 189, + "id": 199, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -21420,7 +20259,7 @@ } }, { - "id": 190, + "id": 200, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -21430,13 +20269,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1307, + "line": 1392, "character": 17 } ], "signatures": [ { - "id": 191, + "id": 201, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -21447,21 +20286,21 @@ }, "typeParameter": [ { - "id": 192, + "id": 202, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2985, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 193, + "id": 203, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -21475,7 +20314,7 @@ } }, { - "id": 194, + "id": 204, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -21535,23 +20374,23 @@ "title": "Methods", "kind": 2048, "children": [ + 219, + 238, + 78, + 205, + 233, + 213, + 221, + 231, + 176, + 170, 209, - 228, - 75, - 195, 223, - 203, - 211, - 221, - 166, - 160, - 199, - 213, - 77, - 217, - 219, - 184, - 190 + 80, + 227, + 229, + 194, + 200 ] } ], @@ -21570,7 +20409,7 @@ ] }, { - "id": 1199, + "id": 1244, "name": "SpotterAgentEmbed", "kind": 128, "kindString": "Class", @@ -21594,7 +20433,7 @@ }, "children": [ { - "id": 1200, + "id": 1245, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -21608,35 +20447,35 @@ ], "signatures": [ { - "id": 1201, + "id": 1246, "name": "new SpotterAgentEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1202, + "id": 1247, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1231, + "id": 1276, "name": "SpotterAgentEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1199, + "id": 1244, "name": "SpotterAgentEmbed" } } ] }, { - "id": 1204, + "id": 1249, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -21652,14 +20491,14 @@ ], "signatures": [ { - "id": 1205, + "id": 1250, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1206, + "id": 1251, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -21679,14 +20518,14 @@ { "type": "reflection", "declaration": { - "id": 1207, + "id": 1252, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1209, + "id": 1254, "name": "container", "kind": 1024, "kindString": "Property", @@ -21697,7 +20536,7 @@ } }, { - "id": 1208, + "id": 1253, "name": "error", "kind": 1024, "kindString": "Property", @@ -21708,7 +20547,7 @@ } }, { - "id": 1210, + "id": 1255, "name": "viz", "kind": 1024, "kindString": "Property", @@ -21725,9 +20564,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1209, - 1208, - 1210 + 1254, + 1253, + 1255 ] } ] @@ -21736,14 +20575,14 @@ { "type": "reflection", "declaration": { - "id": 1211, + "id": 1256, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1212, + "id": 1257, "name": "container", "kind": 1024, "kindString": "Property", @@ -21754,7 +20593,7 @@ } }, { - "id": 1214, + "id": 1259, "name": "error", "kind": 1024, "kindString": "Property", @@ -21765,7 +20604,7 @@ } }, { - "id": 1213, + "id": 1258, "name": "viz", "kind": 1024, "kindString": "Property", @@ -21782,9 +20621,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1212, - 1214, - 1213 + 1257, + 1259, + 1258 ] } ] @@ -21799,7 +20638,7 @@ ] }, { - "id": 1215, + "id": 1260, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -21815,7 +20654,7 @@ ], "signatures": [ { - "id": 1216, + "id": 1261, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -21826,7 +20665,7 @@ }, "parameters": [ { - "id": 1217, + "id": 1262, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -21849,14 +20688,14 @@ { "type": "reflection", "declaration": { - "id": 1218, + "id": 1263, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1220, + "id": 1265, "name": "data", "kind": 1024, "kindString": "Property", @@ -21868,7 +20707,7 @@ "defaultValue": "..." }, { - "id": 1219, + "id": 1264, "name": "error", "kind": 1024, "kindString": "Property", @@ -21884,8 +20723,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1220, - 1219 + 1265, + 1264 ] } ] @@ -21894,14 +20733,14 @@ { "type": "reflection", "declaration": { - "id": 1221, + "id": 1266, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1222, + "id": 1267, "name": "data", "kind": 1024, "kindString": "Property", @@ -21909,14 +20748,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1223, + "id": 1268, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1229, + "id": 1274, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -21928,7 +20767,7 @@ "defaultValue": "..." }, { - "id": 1228, + "id": 1273, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -21940,7 +20779,7 @@ "defaultValue": "..." }, { - "id": 1224, + "id": 1269, "name": "convId", "kind": 1024, "kindString": "Property", @@ -21952,7 +20791,7 @@ "defaultValue": "..." }, { - "id": 1227, + "id": 1272, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -21964,7 +20803,7 @@ "defaultValue": "..." }, { - "id": 1225, + "id": 1270, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -21976,7 +20815,7 @@ "defaultValue": "..." }, { - "id": 1226, + "id": 1271, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -21993,12 +20832,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1229, - 1228, - 1224, - 1227, - 1225, - 1226 + 1274, + 1273, + 1269, + 1272, + 1270, + 1271 ] } ] @@ -22007,7 +20846,7 @@ "defaultValue": "..." }, { - "id": 1230, + "id": 1275, "name": "error", "kind": 1024, "kindString": "Property", @@ -22023,8 +20862,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1222, - 1230 + 1267, + 1275 ] } ] @@ -22044,15 +20883,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1200 + 1245 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1204, - 1215 + 1249, + 1260 ] } ], @@ -22066,13 +20905,13 @@ "extendedBy": [ { "type": "reference", - "id": 1289, + "id": 1340, "name": "BodylessConversation" } ] }, { - "id": 1320, + "id": 1371, "name": "SpotterEmbed", "kind": 128, "kindString": "Class", @@ -22096,7 +20935,7 @@ }, "children": [ { - "id": 1321, + "id": 1372, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -22110,14 +20949,14 @@ ], "signatures": [ { - "id": 1322, + "id": 1373, "name": "new SpotterEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1323, + "id": 1374, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -22128,21 +20967,21 @@ } }, { - "id": 1324, + "id": 1375, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1486, + "id": 1544, "name": "SpotterEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1320, + "id": 1371, "name": "SpotterEmbed" }, "overwrites": { @@ -22157,7 +20996,7 @@ } }, { - "id": 1464, + "id": 1522, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -22167,13 +21006,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1396, + "line": 1481, "character": 11 } ], "signatures": [ { - "id": 1465, + "id": 1523, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -22203,7 +21042,7 @@ } }, { - "id": 1483, + "id": 1541, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -22213,13 +21052,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1596, + "line": 1681, "character": 17 } ], "signatures": [ { - "id": 1484, + "id": 1542, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -22235,7 +21074,7 @@ }, "parameters": [ { - "id": 1485, + "id": 1543, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -22256,7 +21095,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1875, "name": "AnswerService" } ], @@ -22274,7 +21113,7 @@ } }, { - "id": 1328, + "id": 1379, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -22290,7 +21129,7 @@ ], "signatures": [ { - "id": 1329, + "id": 1380, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -22311,7 +21150,7 @@ } }, { - "id": 1478, + "id": 1536, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -22321,13 +21160,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1668, "character": 11 } ], "signatures": [ { - "id": 1479, + "id": 1537, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -22349,14 +21188,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1480, + "id": 1538, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1482, + "id": 1540, "name": "child", "kind": 1024, "kindString": "Property", @@ -22368,7 +21207,7 @@ "defaultValue": "..." }, { - "id": 1481, + "id": 1539, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -22385,8 +21224,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1482, - 1481 + 1540, + 1539 ] } ] @@ -22404,7 +21243,7 @@ } }, { - "id": 1458, + "id": 1516, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -22414,13 +21253,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1366, + "line": 1451, "character": 11 } ], "signatures": [ { - "id": 1459, + "id": 1517, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -22436,7 +21275,7 @@ }, "parameters": [ { - "id": 1460, + "id": 1518, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -22444,20 +21283,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1461, + "id": 1519, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1462, + "id": 1520, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1463, + "id": 1521, "name": "key", "kind": 32768, "flags": {}, @@ -22502,7 +21341,7 @@ } }, { - "id": 1466, + "id": 1524, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -22512,13 +21351,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1419, + "line": 1504, "character": 11 } ], "signatures": [ { - "id": 1467, + "id": 1525, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -22539,7 +21378,7 @@ } }, { - "id": 1476, + "id": 1534, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -22549,13 +21388,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1555, + "line": 1640, "character": 11 } ], "signatures": [ { - "id": 1477, + "id": 1535, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -22579,7 +21418,7 @@ } }, { - "id": 1423, + "id": 1481, "name": "off", "kind": 2048, "kindString": "Method", @@ -22589,13 +21428,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1161, + "line": 1236, "character": 11 } ], "signatures": [ { - "id": 1424, + "id": 1482, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -22611,7 +21450,7 @@ }, "parameters": [ { - "id": 1425, + "id": 1483, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -22621,12 +21460,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1999, "name": "EmbedEvent" } }, { - "id": 1426, + "id": 1484, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -22636,7 +21475,7 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2727, "name": "MessageCallback" } } @@ -22657,7 +21496,7 @@ } }, { - "id": 1417, + "id": 1475, "name": "on", "kind": 2048, "kindString": "Method", @@ -22667,13 +21506,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1132, + "line": 1207, "character": 11 } ], "signatures": [ { - "id": 1418, + "id": 1476, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -22693,7 +21532,7 @@ }, "parameters": [ { - "id": 1419, + "id": 1477, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -22703,12 +21542,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1999, "name": "EmbedEvent" } }, { - "id": 1420, + "id": 1478, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -22718,12 +21557,12 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2727, "name": "MessageCallback" } }, { - "id": 1421, + "id": 1479, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -22733,13 +21572,13 @@ }, "type": { "type": "reference", - "id": 2623, + "id": 2724, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1422, + "id": 1480, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -22768,7 +21607,7 @@ } }, { - "id": 1454, + "id": 1512, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -22778,13 +21617,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1429, "character": 17 } ], "signatures": [ { - "id": 1455, + "id": 1513, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -22794,7 +21633,7 @@ }, "parameters": [ { - "id": 1456, + "id": 1514, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -22809,7 +21648,7 @@ "defaultValue": "false" }, { - "id": 1457, + "id": 1515, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -22843,7 +21682,7 @@ } }, { - "id": 1468, + "id": 1526, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -22853,13 +21692,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1430, + "line": 1515, "character": 17 } ], "signatures": [ { - "id": 1469, + "id": 1527, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -22896,7 +21735,7 @@ } }, { - "id": 1330, + "id": 1381, "name": "render", "kind": 2048, "kindString": "Method", @@ -22912,7 +21751,7 @@ ], "signatures": [ { - "id": 1331, + "id": 1382, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -22922,7 +21761,7 @@ "typeArguments": [ { "type": "reference", - "id": 1320, + "id": 1371, "name": "SpotterEmbed" } ], @@ -22940,7 +21779,7 @@ } }, { - "id": 1472, + "id": 1530, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -22950,13 +21789,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1478, + "line": 1563, "character": 17 } ], "signatures": [ { - "id": 1473, + "id": 1531, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -22986,7 +21825,7 @@ } }, { - "id": 1474, + "id": 1532, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -22996,13 +21835,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1536, + "line": 1621, "character": 11 } ], "signatures": [ { - "id": 1475, + "id": 1533, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -23032,7 +21871,7 @@ } }, { - "id": 1441, + "id": 1499, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -23042,13 +21881,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1271, + "line": 1346, "character": 17 } ], "signatures": [ { - "id": 1442, + "id": 1500, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -23059,19 +21898,19 @@ }, "typeParameter": [ { - "id": 1443, + "id": 1501, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2020, + "id": 2095, "name": "HostEvent" } }, { - "id": 1444, + "id": 1502, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -23080,7 +21919,7 @@ ], "parameters": [ { - "id": 1445, + "id": 1503, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -23094,7 +21933,7 @@ } }, { - "id": 1446, + "id": 1504, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -23151,7 +21990,7 @@ } }, { - "id": 1447, + "id": 1505, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -23161,13 +22000,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1307, + "line": 1392, "character": 17 } ], "signatures": [ { - "id": 1448, + "id": 1506, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -23178,21 +22017,21 @@ }, "typeParameter": [ { - "id": 1449, + "id": 1507, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2985, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1450, + "id": 1508, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -23206,7 +22045,7 @@ } }, { - "id": 1451, + "id": 1509, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -23259,29 +22098,29 @@ "title": "Constructors", "kind": 512, "children": [ - 1321 + 1372 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1464, - 1483, - 1328, - 1478, - 1458, - 1466, - 1476, - 1423, - 1417, - 1454, - 1468, - 1330, - 1472, - 1474, - 1441, - 1447 + 1522, + 1541, + 1379, + 1536, + 1516, + 1524, + 1534, + 1481, + 1475, + 1512, + 1526, + 1381, + 1530, + 1532, + 1499, + 1505 ] } ], @@ -23301,13 +22140,13 @@ "extendedBy": [ { "type": "reference", - "id": 1566, + "id": 1632, "name": "ConversationEmbed" } ] }, { - "id": 2509, + "id": 2604, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -23323,7 +22162,7 @@ }, "children": [ { - "id": 2547, + "id": 2643, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -23354,20 +22193,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2548, + "id": 2644, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2549, + "id": 2645, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2550, + "id": 2646, "name": "key", "kind": 32768, "flags": {}, @@ -23403,7 +22242,7 @@ } }, { - "id": 2571, + "id": 2670, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -23431,7 +22270,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1292, + "line": 1301, "character": 4 } ], @@ -23445,7 +22284,7 @@ } }, { - "id": 2529, + "id": 2624, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -23482,7 +22321,7 @@ } }, { - "id": 2568, + "id": 2667, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -23506,13 +22345,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1256, + "line": 1265, "character": 4 } ], "type": { "type": "reference", - "id": 2235, + "id": 2315, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -23521,7 +22360,7 @@ } }, { - "id": 2588, + "id": 2687, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -23545,7 +22384,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1512, + "line": 1521, "character": 4 } ], @@ -23559,7 +22398,7 @@ } }, { - "id": 2565, + "id": 2661, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -23600,7 +22439,7 @@ } }, { - "id": 2551, + "id": 2647, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -23629,7 +22468,7 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2740, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -23638,7 +22477,7 @@ } }, { - "id": 2530, + "id": 2625, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -23672,12 +22511,12 @@ ], "type": { "type": "reference", - "id": 2896, + "id": 2999, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2572, + "id": 2671, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -23705,7 +22544,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1308, + "line": 1317, "character": 4 } ], @@ -23719,7 +22558,7 @@ } }, { - "id": 2512, + "id": 2607, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -23757,7 +22596,7 @@ } }, { - "id": 2559, + "id": 2655, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -23795,7 +22634,7 @@ } }, { - "id": 2543, + "id": 2639, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -23833,7 +22672,7 @@ } }, { - "id": 2542, + "id": 2638, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -23865,7 +22704,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -23875,7 +22714,7 @@ } }, { - "id": 2528, + "id": 2623, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -23913,7 +22752,7 @@ } }, { - "id": 2555, + "id": 2651, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -23954,7 +22793,7 @@ } }, { - "id": 2582, + "id": 2681, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -23982,7 +22821,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1410, + "line": 1419, "character": 4 } ], @@ -23996,7 +22835,7 @@ } }, { - "id": 2587, + "id": 2686, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -24024,7 +22863,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1496, + "line": 1505, "character": 4 } ], @@ -24038,7 +22877,7 @@ } }, { - "id": 2573, + "id": 2672, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -24066,7 +22905,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1324, + "line": 1333, "character": 4 } ], @@ -24080,7 +22919,7 @@ } }, { - "id": 2513, + "id": 2608, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -24116,7 +22955,7 @@ } }, { - "id": 2525, + "id": 2620, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -24154,7 +22993,7 @@ } }, { - "id": 2556, + "id": 2652, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -24192,7 +23031,7 @@ } }, { - "id": 2569, + "id": 2668, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -24216,7 +23055,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1267, + "line": 1276, "character": 4 } ], @@ -24230,7 +23069,7 @@ } }, { - "id": 2570, + "id": 2669, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -24254,7 +23093,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1277, + "line": 1286, "character": 4 } ], @@ -24268,7 +23107,7 @@ } }, { - "id": 2558, + "id": 2654, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -24305,7 +23144,7 @@ } }, { - "id": 2539, + "id": 2635, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -24335,7 +23174,7 @@ ], "type": { "type": "reference", - "id": 2598, + "id": 2699, "name": "FrameParams" }, "inheritedFrom": { @@ -24344,7 +23183,7 @@ } }, { - "id": 2526, + "id": 2621, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -24378,7 +23217,7 @@ } }, { - "id": 2544, + "id": 2640, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -24414,7 +23253,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -24424,7 +23263,7 @@ } }, { - "id": 2577, + "id": 2676, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -24448,7 +23287,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1192, + "line": 1201, "character": 4 } ], @@ -24456,7 +23295,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2604, + "id": 2705, "name": "HomeLeftNavItem" } }, @@ -24466,7 +23305,7 @@ } }, { - "id": 2575, + "id": 2674, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -24490,7 +23329,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1147, + "line": 1156, "character": 4 } ], @@ -24498,7 +23337,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2615, + "id": 2716, "name": "HomepageModule" } }, @@ -24508,7 +23347,7 @@ } }, { - "id": 2574, + "id": 2673, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -24532,7 +23371,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1125, + "line": 1134, "character": 4 } ], @@ -24540,7 +23379,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2890, + "id": 2993, "name": "ListPageColumns" } }, @@ -24550,7 +23389,7 @@ } }, { - "id": 2517, + "id": 2612, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -24588,7 +23427,7 @@ } }, { - "id": 2514, + "id": 2609, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -24626,7 +23465,7 @@ } }, { - "id": 2511, + "id": 2606, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -24664,7 +23503,7 @@ } }, { - "id": 2585, + "id": 2684, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -24692,7 +23531,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1463, + "line": 1472, "character": 4 } ], @@ -24706,7 +23545,7 @@ } }, { - "id": 2578, + "id": 2677, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -24734,7 +23573,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1346, + "line": 1355, "character": 4 } ], @@ -24748,7 +23587,7 @@ } }, { - "id": 2516, + "id": 2611, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -24786,7 +23625,7 @@ } }, { - "id": 2515, + "id": 2610, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -24824,7 +23663,7 @@ } }, { - "id": 2523, + "id": 2618, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -24861,7 +23700,7 @@ } }, { - "id": 2518, + "id": 2613, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -24899,7 +23738,7 @@ } }, { - "id": 2522, + "id": 2617, "name": "hideTagFilterChips", "kind": 1024, "kindString": "Property", @@ -24933,7 +23772,7 @@ } }, { - "id": 2532, + "id": 2626, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -24959,12 +23798,12 @@ ], "type": { "type": "reference", - "id": 2848, + "id": 2950, "name": "HomePageSearchBarMode" } }, { - "id": 2552, + "id": 2648, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -25002,7 +23841,7 @@ } }, { - "id": 2692, + "id": 2664, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -25025,7 +23864,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6420, + "line": 6440, "character": 4 } ], @@ -25039,7 +23878,7 @@ } }, { - "id": 2691, + "id": 2663, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -25062,7 +23901,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6403, + "line": 6423, "character": 4 } ], @@ -25079,7 +23918,7 @@ } }, { - "id": 2717, + "id": 2689, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -25103,7 +23942,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1545, + "line": 1555, "character": 4 } ], @@ -25117,7 +23956,7 @@ } }, { - "id": 2592, + "id": 2691, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -25141,7 +23980,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1576, + "line": 1586, "character": 4 } ], @@ -25155,7 +23994,7 @@ } }, { - "id": 2591, + "id": 2690, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -25179,7 +24018,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1560, + "line": 1570, "character": 4 } ], @@ -25193,7 +24032,7 @@ } }, { - "id": 2583, + "id": 2682, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -25221,7 +24060,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1427, + "line": 1436, "character": 4 } ], @@ -25235,7 +24074,7 @@ } }, { - "id": 2581, + "id": 2680, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -25259,7 +24098,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1393, + "line": 1402, "character": 4 } ], @@ -25273,7 +24112,49 @@ } }, { - "id": 2534, + "id": 2693, + "name": "isLiveboardMasterpiecesEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Enable or disable Liveboard styling and grouping", + "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.45.0 | Thoughtspot: 26.2.0.cl" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\n// Replace with embed component name. For example, AppEmbed or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n isLiveboardMasterpiecesEnabled: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1618, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "AllEmbedViewConfig.isLiveboardMasterpiecesEnabled" + } + }, + { + "id": 2628, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -25307,7 +24188,7 @@ } }, { - "id": 2531, + "id": 2662, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -25327,7 +24208,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6387, + "line": 6407, "character": 4 } ], @@ -25341,7 +24222,7 @@ } }, { - "id": 2535, + "id": 2629, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -25375,7 +24256,7 @@ } }, { - "id": 2533, + "id": 2627, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -25413,7 +24294,7 @@ } }, { - "id": 2536, + "id": 2630, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -25450,7 +24331,7 @@ } }, { - "id": 2537, + "id": 2631, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -25484,7 +24365,7 @@ } }, { - "id": 2561, + "id": 2657, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -25522,7 +24403,7 @@ } }, { - "id": 2589, + "id": 2688, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -25546,7 +24427,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1527, + "line": 1537, "character": 4 } ], @@ -25560,7 +24441,7 @@ } }, { - "id": 2546, + "id": 2642, "name": "locale", "kind": 1024, "kindString": "Property", @@ -25598,7 +24479,44 @@ } }, { - "id": 2527, + "id": 2633, + "name": "minimumHeight", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This is the minimum height (in pixels) for a full-height App.\nSetting this height helps resolve issues with empty Apps and\nother screens navigable from an App.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.44.2 | ThoughtSpot: 26.0.2.cl" + }, + { + "tag": "default", + "text": "500" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed', {\n ... // other app view config\n fullHeight: true,\n minimumHeight: 600,\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 645, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2622, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -25636,7 +24554,7 @@ } }, { - "id": 2560, + "id": 2656, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -25674,7 +24592,7 @@ } }, { - "id": 2520, + "id": 2615, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -25704,12 +24622,12 @@ ], "type": { "type": "reference", - "id": 1885, + "id": 1958, "name": "Page" } }, { - "id": 2519, + "id": 2614, "name": "path", "kind": 1024, "kindString": "Property", @@ -25743,7 +24661,7 @@ } }, { - "id": 2554, + "id": 2650, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -25781,7 +24699,7 @@ } }, { - "id": 2562, + "id": 2658, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -25819,7 +24737,7 @@ } }, { - "id": 2576, + "id": 2675, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -25843,7 +24761,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1169, + "line": 1178, "character": 4 } ], @@ -25851,7 +24769,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2615, + "id": 2716, "name": "HomepageModule" } }, @@ -25861,7 +24779,7 @@ } }, { - "id": 2566, + "id": 2665, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -25885,7 +24803,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1220, + "line": 1229, "character": 4 } ], @@ -25893,7 +24811,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1979, "name": "RuntimeFilter" } }, @@ -25903,7 +24821,7 @@ } }, { - "id": 2567, + "id": 2666, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -25927,7 +24845,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1241, + "line": 1250, "character": 4 } ], @@ -25935,7 +24853,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2924, "name": "RuntimeParameter" } }, @@ -25945,7 +24863,7 @@ } }, { - "id": 2564, + "id": 2660, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -25982,7 +24900,7 @@ } }, { - "id": 2580, + "id": 2679, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -26010,7 +24928,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1378, + "line": 1387, "character": 4 } ], @@ -26024,7 +24942,7 @@ } }, { - "id": 2586, + "id": 2685, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -26052,7 +24970,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1480, + "line": 1489, "character": 4 } ], @@ -26066,7 +24984,7 @@ } }, { - "id": 2579, + "id": 2678, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -26094,7 +25012,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1362, + "line": 1371, "character": 4 } ], @@ -26108,7 +25026,7 @@ } }, { - "id": 2584, + "id": 2683, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -26136,7 +25054,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1444, + "line": 1453, "character": 4 } ], @@ -26150,7 +25068,49 @@ } }, { - "id": 2510, + "id": 2692, + "name": "showMaskedFilterChip", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Show or hide masked filter chips", + "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.45.0 | Thoughtspot: 26.2.0.cl" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\n// Replace with embed component name. For example, AppEmbed or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n showMaskedFilterChip: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1602, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "AllEmbedViewConfig.showMaskedFilterChip" + } + }, + { + "id": 2605, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -26188,7 +25148,7 @@ } }, { - "id": 2521, + "id": 2616, "name": "tag", "kind": 1024, "kindString": "Property", @@ -26222,7 +25182,45 @@ } }, { - "id": 2545, + "id": 2632, + "name": "updatedSpotterChatPrompt", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "updatedSpotterChatPrompt : Controls the updated spotter chat prompt.", + "text": "Supported embed types: `AppEmbed`", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... //other embed view config\n updatedSpotterChatPrompt : true,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 628, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2641, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -26258,7 +25256,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -26273,79 +25271,85 @@ "title": "Properties", "kind": 1024, "children": [ - 2547, - 2571, - 2529, - 2568, - 2588, - 2565, - 2551, - 2530, - 2572, - 2512, - 2559, - 2543, - 2542, - 2528, - 2555, - 2582, - 2587, - 2573, - 2513, - 2525, - 2556, - 2569, - 2570, - 2558, - 2539, - 2526, - 2544, - 2577, - 2575, - 2574, - 2517, - 2514, - 2511, - 2585, - 2578, - 2516, - 2515, - 2523, - 2518, - 2522, - 2532, - 2552, - 2590, - 2592, - 2591, - 2583, - 2581, - 2534, - 2531, - 2535, - 2533, - 2536, - 2537, - 2561, - 2589, - 2546, - 2527, - 2560, - 2520, - 2519, - 2554, - 2562, - 2576, - 2566, - 2567, - 2564, - 2580, - 2586, - 2579, - 2584, - 2510, - 2521, - 2545 + 2643, + 2670, + 2624, + 2667, + 2687, + 2661, + 2647, + 2625, + 2671, + 2607, + 2655, + 2639, + 2638, + 2623, + 2651, + 2681, + 2686, + 2672, + 2608, + 2620, + 2652, + 2668, + 2669, + 2654, + 2635, + 2621, + 2640, + 2676, + 2674, + 2673, + 2612, + 2609, + 2606, + 2684, + 2677, + 2611, + 2610, + 2618, + 2613, + 2617, + 2626, + 2648, + 2664, + 2663, + 2689, + 2691, + 2690, + 2682, + 2680, + 2693, + 2628, + 2662, + 2629, + 2627, + 2630, + 2631, + 2657, + 2688, + 2642, + 2633, + 2622, + 2656, + 2615, + 2614, + 2650, + 2658, + 2675, + 2665, + 2666, + 2660, + 2679, + 2685, + 2678, + 2683, + 2692, + 2605, + 2616, + 2632, + 2641 ] } ], @@ -26364,7 +25368,7 @@ ] }, { - "id": 1749, + "id": 1822, "name": "AuthEventEmitter", "kind": 256, "kindString": "Interface", @@ -26380,14 +25384,14 @@ }, "children": [ { - "id": 1786, + "id": 1859, "name": "emit", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1787, + "id": 1860, "name": "emit", "kind": 4096, "kindString": "Call signature", @@ -26397,19 +25401,19 @@ }, "parameters": [ { - "id": 1788, + "id": 1861, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1748, + "id": 1821, "name": "TRIGGER_SSO_POPUP" } }, { - "id": 1789, + "id": 1862, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -26433,14 +25437,14 @@ ] }, { - "id": 1790, + "id": 1863, "name": "off", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1791, + "id": 1864, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -26450,7 +25454,7 @@ }, "parameters": [ { - "id": 1792, + "id": 1865, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -26458,12 +25462,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1739, + "id": 1812, "name": "AuthStatus" } }, { - "id": 1793, + "id": 1866, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -26472,21 +25476,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1794, + "id": 1867, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1795, + "id": 1868, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1796, + "id": 1869, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -26512,7 +25516,7 @@ } }, { - "id": 1797, + "id": 1870, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -26524,7 +25528,7 @@ } }, { - "id": 1798, + "id": 1871, "name": "once", "kind": 32768, "kindString": "Parameter", @@ -26540,21 +25544,21 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1822, "name": "AuthEventEmitter" } } ] }, { - "id": 1750, + "id": 1823, "name": "on", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1751, + "id": 1824, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -26564,7 +25568,7 @@ }, "parameters": [ { - "id": 1752, + "id": 1825, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -26572,12 +25576,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1740, + "id": 1813, "name": "FAILURE" } }, { - "id": 1753, + "id": 1826, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -26588,28 +25592,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1754, + "id": 1827, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1755, + "id": 1828, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1756, + "id": 1829, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1732, + "id": 1805, "name": "AuthFailureType" } } @@ -26626,12 +25630,12 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1822, "name": "AuthEventEmitter" } }, { - "id": 1757, + "id": 1830, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -26641,7 +25645,7 @@ }, "parameters": [ { - "id": 1758, + "id": 1831, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -26652,29 +25656,29 @@ "types": [ { "type": "reference", - "id": 1741, + "id": 1814, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1744, + "id": 1817, "name": "LOGOUT" }, { "type": "reference", - "id": 1745, + "id": 1818, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1746, + "id": 1819, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1759, + "id": 1832, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -26685,14 +25689,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1760, + "id": 1833, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1761, + "id": 1834, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -26709,31 +25713,31 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1822, "name": "AuthEventEmitter" } }, { - "id": 1762, + "id": 1835, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1763, + "id": 1836, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1743, + "id": 1816, "name": "SUCCESS" } }, { - "id": 1764, + "id": 1837, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -26741,21 +25745,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1765, + "id": 1838, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1766, + "id": 1839, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1767, + "id": 1840, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -26778,40 +25782,40 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1822, "name": "AuthEventEmitter" } } ] }, { - "id": 1768, + "id": 1841, "name": "once", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1769, + "id": 1842, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1770, + "id": 1843, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1740, + "id": 1813, "name": "FAILURE" } }, { - "id": 1771, + "id": 1844, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -26819,28 +25823,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1772, + "id": 1845, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1773, + "id": 1846, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1774, + "id": 1847, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1732, + "id": 1805, "name": "AuthFailureType" } } @@ -26857,19 +25861,19 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1822, "name": "AuthEventEmitter" } }, { - "id": 1775, + "id": 1848, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1776, + "id": 1849, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -26879,29 +25883,29 @@ "types": [ { "type": "reference", - "id": 1741, + "id": 1814, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1744, + "id": 1817, "name": "LOGOUT" }, { "type": "reference", - "id": 1745, + "id": 1818, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1746, + "id": 1819, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1777, + "id": 1850, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -26909,14 +25913,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1778, + "id": 1851, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1779, + "id": 1852, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -26933,31 +25937,31 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1822, "name": "AuthEventEmitter" } }, { - "id": 1780, + "id": 1853, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1781, + "id": 1854, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1743, + "id": 1816, "name": "SUCCESS" } }, { - "id": 1782, + "id": 1855, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -26965,21 +25969,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1783, + "id": 1856, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1784, + "id": 1857, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1785, + "id": 1858, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -27002,21 +26006,21 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1822, "name": "AuthEventEmitter" } } ] }, { - "id": 1799, + "id": 1872, "name": "removeAllListeners", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1800, + "id": 1873, "name": "removeAllListeners", "kind": 4096, "kindString": "Call signature", @@ -27026,7 +26030,7 @@ }, "parameters": [ { - "id": 1801, + "id": 1874, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -27036,14 +26040,14 @@ }, "type": { "type": "reference", - "id": 1739, + "id": 1812, "name": "AuthStatus" } } ], "type": { "type": "reference", - "id": 1749, + "id": 1822, "name": "AuthEventEmitter" } } @@ -27055,11 +26059,11 @@ "title": "Methods", "kind": 2048, "children": [ - 1786, - 1790, - 1750, - 1768, - 1799 + 1859, + 1863, + 1823, + 1841, + 1872 ] } ], @@ -27072,7 +26076,7 @@ ] }, { - "id": 1260, + "id": 1308, "name": "BodylessConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -27092,7 +26096,7 @@ }, "children": [ { - "id": 1271, + "id": 1319, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -27123,20 +26127,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1272, + "id": 1320, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1273, + "id": 1321, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1274, + "id": 1322, "name": "key", "kind": 32768, "flags": {}, @@ -27168,12 +26172,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1242, + "id": 1287, "name": "SpotterAgentEmbedViewConfig.additionalFlags" } }, { - "id": 1288, + "id": 1336, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -27210,12 +26214,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1259, + "id": 1304, "name": "SpotterAgentEmbedViewConfig.customActions" } }, { - "id": 1275, + "id": 1323, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -27244,17 +26248,17 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2740, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1246, + "id": 1291, "name": "SpotterAgentEmbedViewConfig.customizations" } }, { - "id": 1283, + "id": 1331, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -27288,12 +26292,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1254, + "id": 1299, "name": "SpotterAgentEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1267, + "id": 1315, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -27327,12 +26331,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1238, + "id": 1283, "name": "SpotterAgentEmbedViewConfig.disabledActionReason" } }, { - "id": 1266, + "id": 1314, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -27364,18 +26368,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1237, + "id": 1282, "name": "SpotterAgentEmbedViewConfig.disabledActions" } }, { - "id": 1279, + "id": 1327, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -27412,12 +26416,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1250, + "id": 1295, "name": "SpotterAgentEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1280, + "id": 1328, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -27451,12 +26455,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1251, + "id": 1296, "name": "SpotterAgentEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1282, + "id": 1330, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -27489,12 +26493,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1253, + "id": 1298, "name": "SpotterAgentEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1263, + "id": 1311, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -27524,17 +26528,17 @@ ], "type": { "type": "reference", - "id": 2598, + "id": 2699, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1234, + "id": 1279, "name": "SpotterAgentEmbedViewConfig.frameParams" } }, { - "id": 1268, + "id": 1316, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -27570,18 +26574,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1239, + "id": 1284, "name": "SpotterAgentEmbedViewConfig.hiddenActions" } }, { - "id": 1276, + "id": 1324, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -27615,12 +26619,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1247, + "id": 1292, "name": "SpotterAgentEmbedViewConfig.insertAsSibling" } }, { - "id": 1346, + "id": 1339, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -27643,7 +26647,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6420, + "line": 6440, "character": 4 } ], @@ -27653,12 +26657,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1309, + "id": 1307, "name": "SpotterAgentEmbedViewConfig.interceptTimeout" } }, { - "id": 1345, + "id": 1338, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -27681,7 +26685,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6403, + "line": 6423, "character": 4 } ], @@ -27694,12 +26698,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1308, + "id": 1306, "name": "SpotterAgentEmbedViewConfig.interceptUrls" } }, { - "id": 1344, + "id": 1337, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -27719,7 +26723,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6387, + "line": 6407, "character": 4 } ], @@ -27729,12 +26733,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1307, + "id": 1305, "name": "SpotterAgentEmbedViewConfig.isOnBeforeGetVizDataInterceptEnabled" } }, { - "id": 1335, + "id": 1333, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -27768,12 +26772,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1256, + "id": 1301, "name": "SpotterAgentEmbedViewConfig.linkOverride" } }, { - "id": 1270, + "id": 1318, "name": "locale", "kind": 1024, "kindString": "Property", @@ -27807,12 +26811,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1241, + "id": 1286, "name": "SpotterAgentEmbedViewConfig.locale" } }, { - "id": 1284, + "id": 1332, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -27846,12 +26850,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1255, + "id": 1300, "name": "SpotterAgentEmbedViewConfig.overrideOrgId" } }, { - "id": 1278, + "id": 1326, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -27885,12 +26889,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1249, + "id": 1294, "name": "SpotterAgentEmbedViewConfig.preRenderId" } }, { - "id": 1287, + "id": 1335, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -27923,12 +26927,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1258, + "id": 1303, "name": "SpotterAgentEmbedViewConfig.showAlerts" } }, { - "id": 1269, + "id": 1317, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -27964,18 +26968,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1240, + "id": 1285, "name": "SpotterAgentEmbedViewConfig.visibleActions" } }, { - "id": 1261, + "id": 1309, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -27996,7 +27000,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1232, + "id": 1277, "name": "SpotterAgentEmbedViewConfig.worksheetId" } } @@ -28006,25 +27010,28 @@ "title": "Properties", "kind": 1024, "children": [ - 1271, - 1288, - 1275, - 1283, - 1267, - 1266, - 1279, - 1280, - 1282, - 1263, - 1268, - 1276, - 1285, - 1270, - 1284, - 1278, - 1287, - 1269, - 1261 + 1319, + 1336, + 1323, + 1331, + 1315, + 1314, + 1327, + 1328, + 1330, + 1311, + 1316, + 1324, + 1339, + 1338, + 1337, + 1333, + 1318, + 1332, + 1326, + 1335, + 1317, + 1309 ] } ], @@ -28038,13 +27045,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1231, + "id": 1276, "name": "SpotterAgentEmbedViewConfig" } ] }, { - "id": 1526, + "id": 1588, "name": "ConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -28064,7 +27071,7 @@ }, "children": [ { - "id": 1548, + "id": 1611, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -28095,20 +27102,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1549, + "id": 1612, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1550, + "id": 1613, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1551, + "id": 1614, "name": "key", "kind": 32768, "flags": {}, @@ -28140,12 +27147,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1573, + "id": 1567, "name": "SpotterEmbedViewConfig.additionalFlags" } }, { - "id": 1565, + "id": 1628, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -28182,12 +27189,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1590, + "id": 1584, "name": "SpotterEmbedViewConfig.customActions" } }, { - "id": 1552, + "id": 1615, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -28216,17 +27223,17 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2740, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1577, + "id": 1571, "name": "SpotterEmbedViewConfig.customizations" } }, { - "id": 1531, + "id": 1593, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -28264,12 +27271,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1491, + "id": 1549, "name": "SpotterEmbedViewConfig.dataPanelV2" } }, { - "id": 1560, + "id": 1623, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -28303,12 +27310,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1585, + "id": 1579, "name": "SpotterEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1529, + "id": 1591, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -28342,12 +27349,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1489, + "id": 1547, "name": "SpotterEmbedViewConfig.disableSourceSelection" } }, { - "id": 1544, + "id": 1607, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -28381,12 +27388,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1569, + "id": 1563, "name": "SpotterEmbedViewConfig.disabledActionReason" } }, { - "id": 1543, + "id": 1606, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -28418,18 +27425,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1568, + "id": 1562, "name": "SpotterEmbedViewConfig.disabledActions" } }, { - "id": 1556, + "id": 1619, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -28466,12 +27473,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1581, + "id": 1575, "name": "SpotterEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1538, + "id": 1600, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -28509,12 +27516,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1498, + "id": 1556, "name": "SpotterEmbedViewConfig.enablePastConversationsSidebar" } }, { - "id": 1557, + "id": 1620, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -28548,12 +27555,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1582, + "id": 1576, "name": "SpotterEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1535, + "id": 1597, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -28587,12 +27594,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1495, + "id": 1553, "name": "SpotterEmbedViewConfig.excludeRuntimeFiltersfromURL" } }, { - "id": 1537, + "id": 1599, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -28626,12 +27633,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1497, + "id": 1555, "name": "SpotterEmbedViewConfig.excludeRuntimeParametersfromURL" } }, { - "id": 1559, + "id": 1622, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -28664,12 +27671,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1584, + "id": 1578, "name": "SpotterEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1540, + "id": 1603, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -28699,17 +27706,17 @@ ], "type": { "type": "reference", - "id": 2598, + "id": 2699, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1565, + "id": 1559, "name": "SpotterEmbedViewConfig.frameParams" } }, { - "id": 1545, + "id": 1608, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -28745,18 +27752,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1570, + "id": 1564, "name": "SpotterEmbedViewConfig.hiddenActions" } }, { - "id": 1533, + "id": 1595, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -28790,12 +27797,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1493, + "id": 1551, "name": "SpotterEmbedViewConfig.hideSampleQuestions" } }, { - "id": 1530, + "id": 1592, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -28829,12 +27836,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1490, + "id": 1548, "name": "SpotterEmbedViewConfig.hideSourceSelection" } }, { - "id": 1553, + "id": 1616, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -28868,12 +27875,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1578, + "id": 1572, "name": "SpotterEmbedViewConfig.insertAsSibling" } }, { - "id": 1646, + "id": 1631, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -28896,7 +27903,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6420, + "line": 6440, "character": 4 } ], @@ -28906,12 +27913,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1598, + "id": 1587, "name": "SpotterEmbedViewConfig.interceptTimeout" } }, { - "id": 1645, + "id": 1630, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -28934,7 +27941,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6403, + "line": 6423, "character": 4 } ], @@ -28947,12 +27954,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1597, + "id": 1586, "name": "SpotterEmbedViewConfig.interceptUrls" } }, { - "id": 1644, + "id": 1629, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -28972,7 +27979,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6387, + "line": 6407, "character": 4 } ], @@ -28982,12 +27989,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1596, + "id": 1585, "name": "SpotterEmbedViewConfig.isOnBeforeGetVizDataInterceptEnabled" } }, { - "id": 1635, + "id": 1625, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -29021,12 +28028,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1587, + "id": 1581, "name": "SpotterEmbedViewConfig.linkOverride" } }, { - "id": 1547, + "id": 1610, "name": "locale", "kind": 1024, "kindString": "Property", @@ -29060,12 +28067,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1572, + "id": 1566, "name": "SpotterEmbedViewConfig.locale" } }, { - "id": 1561, + "id": 1624, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -29099,12 +28106,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1586, + "id": 1580, "name": "SpotterEmbedViewConfig.overrideOrgId" } }, { - "id": 1555, + "id": 1618, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -29138,12 +28145,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1580, + "id": 1574, "name": "SpotterEmbedViewConfig.preRenderId" } }, { - "id": 1534, + "id": 1596, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -29175,18 +28182,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1979, "name": "RuntimeFilter" } }, "inheritedFrom": { "type": "reference", - "id": 1494, + "id": 1552, "name": "SpotterEmbedViewConfig.runtimeFilters" } }, { - "id": 1536, + "id": 1598, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -29218,18 +28225,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2924, "name": "RuntimeParameter" } }, "inheritedFrom": { "type": "reference", - "id": 1496, + "id": 1554, "name": "SpotterEmbedViewConfig.runtimeParameters" } }, { - "id": 1528, + "id": 1590, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -29252,12 +28259,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1488, + "id": 1546, "name": "SpotterEmbedViewConfig.searchOptions" } }, { - "id": 1564, + "id": 1627, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -29290,12 +28297,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1589, + "id": 1583, "name": "SpotterEmbedViewConfig.showAlerts" } }, { - "id": 1532, + "id": 1594, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -29329,12 +28336,55 @@ }, "inheritedFrom": { "type": "reference", - "id": 1492, + "id": 1550, "name": "SpotterEmbedViewConfig.showSpotterLimitations" } }, { - "id": 1546, + "id": 1601, + "name": "updatedSpotterChatPrompt", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "updatedSpotterChatPrompt : Controls the updated spotter chat prompt.", + "text": "Supported embed types: `SpotterEmbed`", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... //other embed view config\n updatedSpotterChatPrompt : true,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 198, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "id": 1557, + "name": "SpotterEmbedViewConfig.updatedSpotterChatPrompt" + } + }, + { + "id": 1609, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -29370,18 +28420,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1571, + "id": 1565, "name": "SpotterEmbedViewConfig.visibleActions" } }, { - "id": 1527, + "id": 1589, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -29402,7 +28452,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1487, + "id": 1545, "name": "SpotterEmbedViewConfig.worksheetId" } } @@ -29412,36 +28462,40 @@ "title": "Properties", "kind": 1024, "children": [ - 1548, - 1565, - 1552, - 1531, - 1560, - 1529, - 1544, - 1543, - 1556, - 1538, - 1557, - 1535, - 1537, - 1559, - 1540, - 1545, - 1533, - 1530, - 1553, - 1562, - 1547, - 1561, - 1555, - 1534, - 1536, - 1528, - 1564, - 1532, - 1546, - 1527 + 1611, + 1628, + 1615, + 1593, + 1623, + 1591, + 1607, + 1606, + 1619, + 1600, + 1620, + 1597, + 1599, + 1622, + 1603, + 1608, + 1595, + 1592, + 1616, + 1631, + 1630, + 1629, + 1625, + 1610, + 1624, + 1618, + 1596, + 1598, + 1590, + 1627, + 1594, + 1601, + 1609, + 1589 ] } ], @@ -29455,13 +28509,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1486, + "id": 1544, "name": "SpotterEmbedViewConfig" } ] }, { - "id": 2863, + "id": 2965, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -29476,7 +28530,7 @@ }, "children": [ { - "id": 2864, + "id": 2966, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -29486,21 +28540,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5878, + "line": 6061, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2865, + "id": 2967, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2866, + "id": 2968, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -29508,18 +28562,18 @@ "sources": [ { "fileName": "types.ts", - "line": 5879, + "line": 6062, "character": 8 } ], "type": { "type": "reference", - "id": 2860, + "id": 2962, "name": "VizPoint" } }, { - "id": 2867, + "id": 2969, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -29527,7 +28581,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5880, + "line": 6063, "character": 8 } ], @@ -29535,7 +28589,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2860, + "id": 2962, "name": "VizPoint" } } @@ -29546,8 +28600,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2866, - 2867 + 2968, + 2969 ] } ] @@ -29555,7 +28609,7 @@ } }, { - "id": 2868, + "id": 2970, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -29563,21 +28617,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5882, + "line": 6065, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2869, + "id": 2971, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2877, + "id": 2979, "name": "columns", "kind": 1024, "kindString": "Property", @@ -29585,7 +28639,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5890, + "line": 6073, "character": 8 } ], @@ -29598,7 +28652,7 @@ } }, { - "id": 2878, + "id": 2980, "name": "data", "kind": 1024, "kindString": "Property", @@ -29606,7 +28660,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5891, + "line": 6074, "character": 8 } ], @@ -29619,7 +28673,7 @@ } }, { - "id": 2871, + "id": 2973, "name": "id", "kind": 1024, "kindString": "Property", @@ -29627,7 +28681,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5884, + "line": 6067, "character": 8 } ], @@ -29637,7 +28691,7 @@ } }, { - "id": 2870, + "id": 2972, "name": "name", "kind": 1024, "kindString": "Property", @@ -29645,7 +28699,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5883, + "line": 6066, "character": 8 } ], @@ -29655,7 +28709,7 @@ } }, { - "id": 2872, + "id": 2974, "name": "sources", "kind": 1024, "kindString": "Property", @@ -29663,21 +28717,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5885, + "line": 6068, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2873, + "id": 2975, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2874, + "id": 2976, "name": "header", "kind": 1024, "kindString": "Property", @@ -29685,21 +28739,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5886, + "line": 6069, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2875, + "id": 2977, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2876, + "id": 2978, "name": "guid", "kind": 1024, "kindString": "Property", @@ -29707,7 +28761,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5887, + "line": 6070, "character": 16 } ], @@ -29722,7 +28776,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2876 + 2978 ] } ] @@ -29735,7 +28789,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2874 + 2976 ] } ] @@ -29748,23 +28802,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2877, - 2878, - 2871, - 2870, - 2872 + 2979, + 2980, + 2973, + 2972, + 2974 ] } ], "indexSignature": { - "id": 2879, + "id": 2981, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2880, + "id": 2982, "name": "key", "kind": 32768, "flags": {}, @@ -29783,7 +28837,7 @@ } }, { - "id": 2881, + "id": 2983, "name": "session", "kind": 1024, "kindString": "Property", @@ -29791,18 +28845,18 @@ "sources": [ { "fileName": "types.ts", - "line": 5894, + "line": 6077, "character": 4 } ], "type": { "type": "reference", - "id": 1875, + "id": 1948, "name": "SessionInterface" } }, { - "id": 2882, + "id": 2984, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -29812,7 +28866,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5895, + "line": 6078, "character": 4 } ], @@ -29827,23 +28881,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2864, - 2868, - 2881, - 2882 + 2966, + 2970, + 2983, + 2984 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5877, + "line": 6060, "character": 17 } ] }, { - "id": 2661, + "id": 2762, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -29853,7 +28907,7 @@ }, "children": [ { - "id": 2715, + "id": 2816, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -29876,7 +28930,7 @@ } }, { - "id": 2714, + "id": 2815, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -29899,7 +28953,7 @@ } }, { - "id": 2684, + "id": 2785, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -29922,7 +28976,7 @@ } }, { - "id": 2685, + "id": 2786, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -29945,7 +28999,7 @@ } }, { - "id": 2687, + "id": 2788, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -29968,7 +29022,7 @@ } }, { - "id": 2686, + "id": 2787, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -29991,7 +29045,7 @@ } }, { - "id": 2666, + "id": 2767, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -30014,7 +29068,7 @@ } }, { - "id": 2727, + "id": 2828, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -30037,7 +29091,7 @@ } }, { - "id": 2728, + "id": 2829, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -30060,7 +29114,7 @@ } }, { - "id": 2725, + "id": 2826, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -30083,7 +29137,7 @@ } }, { - "id": 2726, + "id": 2827, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -30106,7 +29160,7 @@ } }, { - "id": 2689, + "id": 2790, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -30129,7 +29183,7 @@ } }, { - "id": 2694, + "id": 2795, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -30152,7 +29206,7 @@ } }, { - "id": 2691, + "id": 2792, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -30175,7 +29229,7 @@ } }, { - "id": 2693, + "id": 2794, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -30198,7 +29252,7 @@ } }, { - "id": 2692, + "id": 2793, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -30221,7 +29275,7 @@ } }, { - "id": 2690, + "id": 2791, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -30244,7 +29298,7 @@ } }, { - "id": 2699, + "id": 2800, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -30267,7 +29321,7 @@ } }, { - "id": 2696, + "id": 2797, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -30290,7 +29344,7 @@ } }, { - "id": 2698, + "id": 2799, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -30313,7 +29367,7 @@ } }, { - "id": 2697, + "id": 2798, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -30336,7 +29390,7 @@ } }, { - "id": 2695, + "id": 2796, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -30359,7 +29413,7 @@ } }, { - "id": 2703, + "id": 2804, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -30382,7 +29436,7 @@ } }, { - "id": 2702, + "id": 2803, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -30405,7 +29459,7 @@ } }, { - "id": 2701, + "id": 2802, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -30428,7 +29482,7 @@ } }, { - "id": 2700, + "id": 2801, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -30451,7 +29505,7 @@ } }, { - "id": 2688, + "id": 2789, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -30474,7 +29528,7 @@ } }, { - "id": 2821, + "id": 2922, "name": "--ts-var-cca-modal-summary-header-background", "kind": 1024, "kindString": "Property", @@ -30497,7 +29551,7 @@ } }, { - "id": 2816, + "id": 2917, "name": "--ts-var-change-analysis-insights-background", "kind": 1024, "kindString": "Property", @@ -30520,7 +29574,7 @@ } }, { - "id": 2811, + "id": 2912, "name": "--ts-var-chart-heatmap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -30543,7 +29597,7 @@ } }, { - "id": 2810, + "id": 2911, "name": "--ts-var-chart-heatmap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -30566,7 +29620,7 @@ } }, { - "id": 2813, + "id": 2914, "name": "--ts-var-chart-treemap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -30589,7 +29643,7 @@ } }, { - "id": 2812, + "id": 2913, "name": "--ts-var-chart-treemap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -30612,7 +29666,7 @@ } }, { - "id": 2750, + "id": 2851, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -30635,7 +29689,7 @@ } }, { - "id": 2753, + "id": 2854, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -30658,7 +29712,7 @@ } }, { - "id": 2748, + "id": 2849, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -30681,7 +29735,7 @@ } }, { - "id": 2751, + "id": 2852, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -30704,7 +29758,7 @@ } }, { - "id": 2752, + "id": 2853, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -30727,7 +29781,7 @@ } }, { - "id": 2747, + "id": 2848, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -30750,7 +29804,7 @@ } }, { - "id": 2749, + "id": 2850, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -30773,7 +29827,7 @@ } }, { - "id": 2720, + "id": 2821, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -30796,7 +29850,7 @@ } }, { - "id": 2719, + "id": 2820, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -30819,7 +29873,7 @@ } }, { - "id": 2722, + "id": 2823, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -30842,7 +29896,7 @@ } }, { - "id": 2721, + "id": 2822, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -30865,7 +29919,7 @@ } }, { - "id": 2718, + "id": 2819, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -30888,7 +29942,7 @@ } }, { - "id": 2716, + "id": 2817, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -30911,7 +29965,7 @@ } }, { - "id": 2717, + "id": 2818, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -30934,7 +29988,7 @@ } }, { - "id": 2723, + "id": 2824, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -30957,7 +30011,7 @@ } }, { - "id": 2724, + "id": 2825, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -30980,7 +30034,7 @@ } }, { - "id": 2735, + "id": 2836, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -31003,7 +30057,7 @@ } }, { - "id": 2736, + "id": 2837, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -31026,7 +30080,7 @@ } }, { - "id": 2739, + "id": 2840, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -31049,7 +30103,7 @@ } }, { - "id": 2737, + "id": 2838, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -31072,7 +30126,7 @@ } }, { - "id": 2738, + "id": 2839, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -31095,7 +30149,7 @@ } }, { - "id": 2746, + "id": 2847, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -31118,7 +30172,7 @@ } }, { - "id": 2745, + "id": 2846, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -31141,7 +30195,7 @@ } }, { - "id": 2744, + "id": 2845, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -31164,7 +30218,7 @@ } }, { - "id": 2743, + "id": 2844, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -31187,7 +30241,7 @@ } }, { - "id": 2809, + "id": 2910, "name": "--ts-var-kpi-analyze-text-color", "kind": 1024, "kindString": "Property", @@ -31210,7 +30264,7 @@ } }, { - "id": 2808, + "id": 2909, "name": "--ts-var-kpi-comparison-color", "kind": 1024, "kindString": "Property", @@ -31233,7 +30287,7 @@ } }, { - "id": 2807, + "id": 2908, "name": "--ts-var-kpi-hero-color", "kind": 1024, "kindString": "Property", @@ -31256,7 +30310,7 @@ } }, { - "id": 2815, + "id": 2916, "name": "--ts-var-kpi-negative-change-color", "kind": 1024, "kindString": "Property", @@ -31279,7 +30333,7 @@ } }, { - "id": 2814, + "id": 2915, "name": "--ts-var-kpi-positive-change-color", "kind": 1024, "kindString": "Property", @@ -31302,7 +30356,7 @@ } }, { - "id": 2741, + "id": 2842, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -31325,7 +30379,7 @@ } }, { - "id": 2740, + "id": 2841, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -31348,7 +30402,7 @@ } }, { - "id": 2768, + "id": 2869, "name": "--ts-var-liveboard-answer-viz-padding", "kind": 1024, "kindString": "Property", @@ -31371,7 +30425,7 @@ } }, { - "id": 2781, + "id": 2882, "name": "--ts-var-liveboard-chip--active-background", "kind": 1024, "kindString": "Property", @@ -31395,7 +30449,7 @@ } }, { - "id": 2780, + "id": 2881, "name": "--ts-var-liveboard-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -31419,7 +30473,7 @@ } }, { - "id": 2778, + "id": 2879, "name": "--ts-var-liveboard-chip-background", "kind": 1024, "kindString": "Property", @@ -31443,7 +30497,7 @@ } }, { - "id": 2779, + "id": 2880, "name": "--ts-var-liveboard-chip-color", "kind": 1024, "kindString": "Property", @@ -31467,7 +30521,7 @@ } }, { - "id": 2786, + "id": 2887, "name": "--ts-var-liveboard-cross-filter-layout-background", "kind": 1024, "kindString": "Property", @@ -31490,7 +30544,7 @@ } }, { - "id": 2784, + "id": 2885, "name": "--ts-var-liveboard-dual-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -31513,7 +30567,7 @@ } }, { - "id": 2783, + "id": 2884, "name": "--ts-var-liveboard-edit-bar-background", "kind": 1024, "kindString": "Property", @@ -31536,7 +30590,7 @@ } }, { - "id": 2769, + "id": 2870, "name": "--ts-var-liveboard-group-background", "kind": 1024, "kindString": "Property", @@ -31560,7 +30614,7 @@ } }, { - "id": 2770, + "id": 2871, "name": "--ts-var-liveboard-group-border-color", "kind": 1024, "kindString": "Property", @@ -31584,7 +30638,7 @@ } }, { - "id": 2774, + "id": 2875, "name": "--ts-var-liveboard-group-description-font-color", "kind": 1024, "kindString": "Property", @@ -31608,7 +30662,7 @@ } }, { - "id": 2762, + "id": 2863, "name": "--ts-var-liveboard-group-padding", "kind": 1024, "kindString": "Property", @@ -31632,7 +30686,7 @@ } }, { - "id": 2777, + "id": 2878, "name": "--ts-var-liveboard-group-tile-background", "kind": 1024, "kindString": "Property", @@ -31656,7 +30710,7 @@ } }, { - "id": 2776, + "id": 2877, "name": "--ts-var-liveboard-group-tile-description-font-color", "kind": 1024, "kindString": "Property", @@ -31680,7 +30734,7 @@ } }, { - "id": 2767, + "id": 2868, "name": "--ts-var-liveboard-group-tile-padding", "kind": 1024, "kindString": "Property", @@ -31704,7 +30758,7 @@ } }, { - "id": 2775, + "id": 2876, "name": "--ts-var-liveboard-group-tile-title-font-color", "kind": 1024, "kindString": "Property", @@ -31728,7 +30782,7 @@ } }, { - "id": 2765, + "id": 2866, "name": "--ts-var-liveboard-group-tile-title-font-size", "kind": 1024, "kindString": "Property", @@ -31752,7 +30806,7 @@ } }, { - "id": 2766, + "id": 2867, "name": "--ts-var-liveboard-group-tile-title-font-weight", "kind": 1024, "kindString": "Property", @@ -31776,7 +30830,7 @@ } }, { - "id": 2773, + "id": 2874, "name": "--ts-var-liveboard-group-title-font-color", "kind": 1024, "kindString": "Property", @@ -31800,7 +30854,7 @@ } }, { - "id": 2763, + "id": 2864, "name": "--ts-var-liveboard-group-title-font-size", "kind": 1024, "kindString": "Property", @@ -31824,7 +30878,7 @@ } }, { - "id": 2764, + "id": 2865, "name": "--ts-var-liveboard-group-title-font-weight", "kind": 1024, "kindString": "Property", @@ -31848,7 +30902,7 @@ } }, { - "id": 2800, + "id": 2901, "name": "--ts-var-liveboard-header-action-button-active-color", "kind": 1024, "kindString": "Property", @@ -31871,7 +30925,7 @@ } }, { - "id": 2797, + "id": 2898, "name": "--ts-var-liveboard-header-action-button-background", "kind": 1024, "kindString": "Property", @@ -31894,7 +30948,7 @@ } }, { - "id": 2798, + "id": 2899, "name": "--ts-var-liveboard-header-action-button-font-color", "kind": 1024, "kindString": "Property", @@ -31917,7 +30971,7 @@ } }, { - "id": 2799, + "id": 2900, "name": "--ts-var-liveboard-header-action-button-hover-color", "kind": 1024, "kindString": "Property", @@ -31940,7 +30994,7 @@ } }, { - "id": 2755, + "id": 2856, "name": "--ts-var-liveboard-header-background", "kind": 1024, "kindString": "Property", @@ -31963,7 +31017,7 @@ } }, { - "id": 2806, + "id": 2907, "name": "--ts-var-liveboard-header-badge-active-color", "kind": 1024, "kindString": "Property", @@ -31986,7 +31040,7 @@ } }, { - "id": 2801, + "id": 2902, "name": "--ts-var-liveboard-header-badge-background", "kind": 1024, "kindString": "Property", @@ -32009,7 +31063,7 @@ } }, { - "id": 2802, + "id": 2903, "name": "--ts-var-liveboard-header-badge-font-color", "kind": 1024, "kindString": "Property", @@ -32032,7 +31086,7 @@ } }, { - "id": 2805, + "id": 2906, "name": "--ts-var-liveboard-header-badge-hover-color", "kind": 1024, "kindString": "Property", @@ -32055,7 +31109,7 @@ } }, { - "id": 2803, + "id": 2904, "name": "--ts-var-liveboard-header-badge-modified-background", "kind": 1024, "kindString": "Property", @@ -32078,7 +31132,7 @@ } }, { - "id": 2804, + "id": 2905, "name": "--ts-var-liveboard-header-badge-modified-font-color", "kind": 1024, "kindString": "Property", @@ -32101,7 +31155,7 @@ } }, { - "id": 2756, + "id": 2857, "name": "--ts-var-liveboard-header-font-color", "kind": 1024, "kindString": "Property", @@ -32124,7 +31178,7 @@ } }, { - "id": 2754, + "id": 2855, "name": "--ts-var-liveboard-layout-background", "kind": 1024, "kindString": "Property", @@ -32147,7 +31201,7 @@ } }, { - "id": 2772, + "id": 2873, "name": "--ts-var-liveboard-notetitle-body-font-color", "kind": 1024, "kindString": "Property", @@ -32170,7 +31224,7 @@ } }, { - "id": 2771, + "id": 2872, "name": "--ts-var-liveboard-notetitle-heading-font-color", "kind": 1024, "kindString": "Property", @@ -32193,7 +31247,7 @@ } }, { - "id": 2785, + "id": 2886, "name": "--ts-var-liveboard-single-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -32216,7 +31270,7 @@ } }, { - "id": 2787, + "id": 2888, "name": "--ts-var-liveboard-tab-active-border-color", "kind": 1024, "kindString": "Property", @@ -32239,7 +31293,7 @@ } }, { - "id": 2788, + "id": 2889, "name": "--ts-var-liveboard-tab-hover-color", "kind": 1024, "kindString": "Property", @@ -32262,7 +31316,7 @@ } }, { - "id": 2758, + "id": 2859, "name": "--ts-var-liveboard-tile-background", "kind": 1024, "kindString": "Property", @@ -32285,7 +31339,7 @@ } }, { - "id": 2757, + "id": 2858, "name": "--ts-var-liveboard-tile-border-color", "kind": 1024, "kindString": "Property", @@ -32308,7 +31362,7 @@ } }, { - "id": 2759, + "id": 2860, "name": "--ts-var-liveboard-tile-border-radius", "kind": 1024, "kindString": "Property", @@ -32331,7 +31385,7 @@ } }, { - "id": 2760, + "id": 2861, "name": "--ts-var-liveboard-tile-padding", "kind": 1024, "kindString": "Property", @@ -32354,7 +31408,7 @@ } }, { - "id": 2761, + "id": 2862, "name": "--ts-var-liveboard-tile-table-header-background", "kind": 1024, "kindString": "Property", @@ -32377,7 +31431,7 @@ } }, { - "id": 2789, + "id": 2890, "name": "--ts-var-liveboard-tile-title-fontsize", "kind": 1024, "kindString": "Property", @@ -32400,7 +31454,7 @@ } }, { - "id": 2790, + "id": 2891, "name": "--ts-var-liveboard-tile-title-fontweight", "kind": 1024, "kindString": "Property", @@ -32423,7 +31477,7 @@ } }, { - "id": 2733, + "id": 2834, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -32446,7 +31500,7 @@ } }, { - "id": 2730, + "id": 2831, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -32469,7 +31523,7 @@ } }, { - "id": 2729, + "id": 2830, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -32492,7 +31546,7 @@ } }, { - "id": 2731, + "id": 2832, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -32515,7 +31569,7 @@ } }, { - "id": 2734, + "id": 2835, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -32538,7 +31592,7 @@ } }, { - "id": 2732, + "id": 2833, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -32561,7 +31615,7 @@ } }, { - "id": 2667, + "id": 2768, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -32584,7 +31638,7 @@ } }, { - "id": 2668, + "id": 2769, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -32607,7 +31661,7 @@ } }, { - "id": 2795, + "id": 2896, "name": "--ts-var-parameter-chip-active-background", "kind": 1024, "kindString": "Property", @@ -32630,7 +31684,7 @@ } }, { - "id": 2796, + "id": 2897, "name": "--ts-var-parameter-chip-active-text-color", "kind": 1024, "kindString": "Property", @@ -32653,7 +31707,7 @@ } }, { - "id": 2791, + "id": 2892, "name": "--ts-var-parameter-chip-background", "kind": 1024, "kindString": "Property", @@ -32676,7 +31730,7 @@ } }, { - "id": 2793, + "id": 2894, "name": "--ts-var-parameter-chip-hover-background", "kind": 1024, "kindString": "Property", @@ -32699,7 +31753,7 @@ } }, { - "id": 2794, + "id": 2895, "name": "--ts-var-parameter-chip-hover-text-color", "kind": 1024, "kindString": "Property", @@ -32722,7 +31776,7 @@ } }, { - "id": 2792, + "id": 2893, "name": "--ts-var-parameter-chip-text-color", "kind": 1024, "kindString": "Property", @@ -32745,7 +31799,7 @@ } }, { - "id": 2662, + "id": 2763, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -32768,7 +31822,7 @@ } }, { - "id": 2663, + "id": 2764, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -32791,7 +31845,7 @@ } }, { - "id": 2664, + "id": 2765, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -32814,7 +31868,7 @@ } }, { - "id": 2665, + "id": 2766, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -32837,7 +31891,7 @@ } }, { - "id": 2676, + "id": 2777, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -32860,7 +31914,7 @@ } }, { - "id": 2680, + "id": 2781, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -32883,7 +31937,7 @@ } }, { - "id": 2681, + "id": 2782, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -32906,7 +31960,7 @@ } }, { - "id": 2679, + "id": 2780, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -32929,7 +31983,7 @@ } }, { - "id": 2675, + "id": 2776, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -32952,7 +32006,7 @@ } }, { - "id": 2678, + "id": 2779, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -32975,7 +32029,7 @@ } }, { - "id": 2672, + "id": 2773, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -32998,7 +32052,7 @@ } }, { - "id": 2673, + "id": 2774, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -33021,7 +32075,7 @@ } }, { - "id": 2674, + "id": 2775, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -33044,7 +32098,7 @@ } }, { - "id": 2669, + "id": 2770, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -33067,7 +32121,7 @@ } }, { - "id": 2670, + "id": 2771, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -33090,7 +32144,7 @@ } }, { - "id": 2671, + "id": 2772, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -33113,7 +32167,7 @@ } }, { - "id": 2677, + "id": 2778, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -33136,7 +32190,7 @@ } }, { - "id": 2742, + "id": 2843, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -33159,7 +32213,7 @@ } }, { - "id": 2782, + "id": 2883, "name": "--ts-var-side-panel-width", "kind": 1024, "kindString": "Property", @@ -33182,7 +32236,7 @@ } }, { - "id": 2820, + "id": 2921, "name": "--ts-var-spotiq-analyze-crosscorrelation-card-background", "kind": 1024, "kindString": "Property", @@ -33205,7 +32259,7 @@ } }, { - "id": 2817, + "id": 2918, "name": "--ts-var-spotiq-analyze-forecasting-card-background", "kind": 1024, "kindString": "Property", @@ -33228,7 +32282,7 @@ } }, { - "id": 2818, + "id": 2919, "name": "--ts-var-spotiq-analyze-outlier-card-background", "kind": 1024, "kindString": "Property", @@ -33251,7 +32305,7 @@ } }, { - "id": 2819, + "id": 2920, "name": "--ts-var-spotiq-analyze-trend-card-background", "kind": 1024, "kindString": "Property", @@ -33274,7 +32328,30 @@ } }, { - "id": 2682, + "id": 2923, + "name": "--ts-var-spotter-chat-width", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Width of the Spotter chat window." + }, + "sources": [ + { + "fileName": "css-variables.ts", + "line": 854, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2783, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -33297,7 +32374,7 @@ } }, { - "id": 2683, + "id": 2784, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -33320,7 +32397,7 @@ } }, { - "id": 2712, + "id": 2813, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -33343,7 +32420,7 @@ } }, { - "id": 2710, + "id": 2811, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -33366,7 +32443,7 @@ } }, { - "id": 2711, + "id": 2812, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -33389,7 +32466,7 @@ } }, { - "id": 2707, + "id": 2808, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -33412,7 +32489,7 @@ } }, { - "id": 2708, + "id": 2809, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -33435,7 +32512,7 @@ } }, { - "id": 2709, + "id": 2810, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -33458,7 +32535,7 @@ } }, { - "id": 2713, + "id": 2814, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -33481,7 +32558,7 @@ } }, { - "id": 2704, + "id": 2805, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -33504,7 +32581,7 @@ } }, { - "id": 2705, + "id": 2806, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -33527,7 +32604,7 @@ } }, { - "id": 2706, + "id": 2807, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -33555,166 +32632,167 @@ "title": "Properties", "kind": 1024, "children": [ - 2715, - 2714, - 2684, - 2685, - 2687, - 2686, - 2666, - 2727, - 2728, - 2725, - 2726, - 2689, - 2694, - 2691, - 2693, - 2692, - 2690, - 2699, - 2696, - 2698, - 2697, - 2695, - 2703, - 2702, - 2701, - 2700, - 2688, - 2821, 2816, - 2811, - 2810, - 2813, - 2812, - 2750, - 2753, - 2748, - 2751, - 2752, - 2747, - 2749, - 2720, - 2719, - 2722, - 2721, - 2718, - 2716, - 2717, - 2723, - 2724, - 2735, - 2736, - 2739, - 2737, - 2738, - 2746, - 2745, - 2744, - 2743, - 2809, - 2808, - 2807, 2815, - 2814, - 2741, - 2740, - 2768, - 2781, - 2780, - 2778, - 2779, + 2785, 2786, - 2784, - 2783, - 2769, - 2770, - 2774, - 2762, - 2777, - 2776, + 2788, + 2787, 2767, - 2775, - 2765, - 2766, - 2773, - 2763, - 2764, + 2828, + 2829, + 2826, + 2827, + 2790, + 2795, + 2792, + 2794, + 2793, + 2791, 2800, 2797, - 2798, 2799, - 2755, - 2806, - 2801, - 2802, - 2805, - 2803, + 2798, + 2796, 2804, - 2756, - 2754, - 2772, - 2771, - 2785, - 2787, - 2788, - 2758, - 2757, - 2759, - 2760, - 2761, + 2803, + 2802, + 2801, 2789, - 2790, - 2733, - 2730, - 2729, - 2731, - 2734, - 2732, - 2667, - 2668, - 2795, - 2796, - 2791, - 2793, - 2794, - 2792, - 2662, - 2663, - 2664, - 2665, - 2676, - 2680, - 2681, - 2679, - 2675, - 2678, - 2672, - 2673, - 2674, - 2669, - 2670, - 2671, - 2677, - 2742, - 2782, + 2922, + 2917, + 2912, + 2911, + 2914, + 2913, + 2851, + 2854, + 2849, + 2852, + 2853, + 2848, + 2850, + 2821, 2820, + 2823, + 2822, + 2819, 2817, 2818, - 2819, - 2682, - 2683, - 2712, - 2710, - 2711, - 2707, - 2708, - 2709, - 2713, - 2704, - 2705, - 2706 + 2824, + 2825, + 2836, + 2837, + 2840, + 2838, + 2839, + 2847, + 2846, + 2845, + 2844, + 2910, + 2909, + 2908, + 2916, + 2915, + 2842, + 2841, + 2869, + 2882, + 2881, + 2879, + 2880, + 2887, + 2885, + 2884, + 2870, + 2871, + 2875, + 2863, + 2878, + 2877, + 2868, + 2876, + 2866, + 2867, + 2874, + 2864, + 2865, + 2901, + 2898, + 2899, + 2900, + 2856, + 2907, + 2902, + 2903, + 2906, + 2904, + 2905, + 2857, + 2855, + 2873, + 2872, + 2886, + 2888, + 2889, + 2859, + 2858, + 2860, + 2861, + 2862, + 2890, + 2891, + 2834, + 2831, + 2830, + 2832, + 2835, + 2833, + 2768, + 2769, + 2896, + 2897, + 2892, + 2894, + 2895, + 2893, + 2763, + 2764, + 2765, + 2766, + 2777, + 2781, + 2782, + 2780, + 2776, + 2779, + 2773, + 2774, + 2775, + 2770, + 2771, + 2772, + 2778, + 2843, + 2883, + 2921, + 2918, + 2919, + 2920, + 2923, + 2783, + 2784, + 2813, + 2811, + 2812, + 2808, + 2809, + 2810, + 2814, + 2805, + 2806, + 2807 ] } ], @@ -33727,7 +32805,7 @@ ] }, { - "id": 2649, + "id": 2750, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -33737,7 +32815,7 @@ }, "children": [ { - "id": 2651, + "id": 2752, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -33753,12 +32831,12 @@ ], "type": { "type": "reference", - "id": 2652, + "id": 2753, "name": "customCssInterface" } }, { - "id": 2650, + "id": 2751, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -33783,8 +32861,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2651, - 2650 + 2752, + 2751 ] } ], @@ -33797,7 +32875,7 @@ ] }, { - "id": 2639, + "id": 2740, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -33813,7 +32891,7 @@ }, "children": [ { - "id": 2641, + "id": 2742, "name": "content", "kind": 1024, "kindString": "Property", @@ -33830,14 +32908,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2642, + "id": 2743, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2644, + "id": 2745, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -33867,7 +32945,7 @@ } }, { - "id": 2645, + "id": 2746, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -33887,7 +32965,7 @@ } }, { - "id": 2643, + "id": 2744, "name": "strings", "kind": 1024, "kindString": "Property", @@ -33930,21 +33008,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2644, - 2645, - 2643 + 2745, + 2746, + 2744 ] } ], "indexSignature": { - "id": 2646, + "id": 2747, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2647, + "id": 2748, "name": "key", "kind": 32768, "flags": {}, @@ -33963,7 +33041,7 @@ } }, { - "id": 2648, + "id": 2749, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -33983,7 +33061,7 @@ } }, { - "id": 2640, + "id": 2741, "name": "style", "kind": 1024, "kindString": "Property", @@ -33999,7 +33077,7 @@ ], "type": { "type": "reference", - "id": 2649, + "id": 2750, "name": "CustomStyles" } } @@ -34009,9 +33087,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2641, - 2648, - 2640 + 2742, + 2749, + 2741 ] } ], @@ -34024,7 +33102,7 @@ ] }, { - "id": 2239, + "id": 2319, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -34040,7 +33118,7 @@ }, "children": [ { - "id": 2281, + "id": 2361, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -34070,20 +33148,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2282, + "id": 2362, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2283, + "id": 2363, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2284, + "id": 2364, "name": "key", "kind": 32768, "flags": {}, @@ -34115,7 +33193,7 @@ } }, { - "id": 2242, + "id": 2322, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -34138,7 +33216,7 @@ } }, { - "id": 2263, + "id": 2343, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -34180,7 +33258,7 @@ } }, { - "id": 2265, + "id": 2345, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -34209,7 +33287,7 @@ } }, { - "id": 2241, + "id": 2321, "name": "authType", "kind": 1024, "kindString": "Property", @@ -34226,12 +33304,12 @@ ], "type": { "type": "reference", - "id": 1894, + "id": 1967, "name": "AuthType" } }, { - "id": 2254, + "id": 2334, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -34260,7 +33338,7 @@ } }, { - "id": 2266, + "id": 2346, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -34293,7 +33371,7 @@ } }, { - "id": 2257, + "id": 2337, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -34322,7 +33400,7 @@ } }, { - "id": 2290, + "id": 2370, "name": "cleanupTimeout", "kind": 1024, "kindString": "Property", @@ -34355,7 +33433,7 @@ } }, { - "id": 2278, + "id": 2358, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -34384,7 +33462,7 @@ } }, { - "id": 2288, + "id": 2368, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -34420,7 +33498,7 @@ } }, { - "id": 2285, + "id": 2365, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -34463,7 +33541,7 @@ } }, { - "id": 2262, + "id": 2342, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -34488,12 +33566,12 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2740, "name": "CustomisationsInterface" } }, { - "id": 2276, + "id": 2356, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -34522,7 +33600,7 @@ } }, { - "id": 2259, + "id": 2339, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -34552,7 +33630,7 @@ } }, { - "id": 2287, + "id": 2367, "name": "disableFullscreenPresentation", "kind": 1024, "kindString": "Property", @@ -34589,7 +33667,7 @@ } }, { - "id": 2280, + "id": 2360, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -34618,7 +33696,7 @@ } }, { - "id": 2255, + "id": 2335, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -34651,7 +33729,7 @@ } }, { - "id": 2286, + "id": 2366, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -34671,7 +33749,7 @@ } }, { - "id": 2275, + "id": 2355, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -34700,7 +33778,7 @@ } }, { - "id": 2253, + "id": 2333, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -34729,7 +33807,7 @@ } }, { - "id": 2248, + "id": 2328, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -34763,7 +33841,7 @@ } }, { - "id": 2274, + "id": 2354, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -34796,12 +33874,12 @@ ], "type": { "type": "reference", - "id": 2825, + "id": 2927, "name": "LogLevel" } }, { - "id": 2256, + "id": 2336, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -34830,7 +33908,7 @@ } }, { - "id": 2247, + "id": 2327, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -34863,7 +33941,7 @@ } }, { - "id": 2277, + "id": 2357, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -34892,7 +33970,7 @@ } }, { - "id": 2246, + "id": 2326, "name": "password", "kind": 1024, "kindString": "Property", @@ -34916,7 +33994,7 @@ } }, { - "id": 2272, + "id": 2352, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -34945,7 +34023,7 @@ } }, { - "id": 2258, + "id": 2338, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -34978,7 +34056,7 @@ } }, { - "id": 2249, + "id": 2329, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -35008,7 +34086,7 @@ } }, { - "id": 2251, + "id": 2331, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -35037,7 +34115,7 @@ } }, { - "id": 2273, + "id": 2353, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -35066,7 +34144,7 @@ } }, { - "id": 2252, + "id": 2332, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -35095,7 +34173,7 @@ } }, { - "id": 2261, + "id": 2341, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -35118,7 +34196,7 @@ } }, { - "id": 2260, + "id": 2340, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -35147,7 +34225,7 @@ } }, { - "id": 2240, + "id": 2320, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -35168,7 +34246,7 @@ } }, { - "id": 2264, + "id": 2344, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -35191,7 +34269,7 @@ } }, { - "id": 2245, + "id": 2325, "name": "username", "kind": 1024, "kindString": "Property", @@ -35214,7 +34292,7 @@ } }, { - "id": 2289, + "id": 2369, "name": "waitForCleanupOnDestroy", "kind": 1024, "kindString": "Property", @@ -35247,7 +34325,7 @@ } }, { - "id": 2243, + "id": 2323, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -35263,7 +34341,7 @@ ], "signatures": [ { - "id": 2244, + "id": 2324, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -35291,52 +34369,52 @@ "title": "Properties", "kind": 1024, "children": [ - 2281, - 2242, - 2263, - 2265, - 2241, - 2254, - 2266, - 2257, - 2290, - 2278, - 2288, - 2285, - 2262, - 2276, - 2259, - 2287, - 2280, - 2255, - 2286, - 2275, - 2253, - 2248, - 2274, - 2256, - 2247, - 2277, - 2246, - 2272, - 2258, - 2249, - 2251, - 2273, - 2252, - 2261, - 2260, - 2240, - 2264, - 2245, - 2289 + 2361, + 2322, + 2343, + 2345, + 2321, + 2334, + 2346, + 2337, + 2370, + 2358, + 2368, + 2365, + 2342, + 2356, + 2339, + 2367, + 2360, + 2335, + 2366, + 2355, + 2333, + 2328, + 2354, + 2336, + 2327, + 2357, + 2326, + 2352, + 2338, + 2329, + 2331, + 2353, + 2332, + 2341, + 2340, + 2320, + 2344, + 2325, + 2369 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2243 + 2323 ] } ], @@ -35349,7 +34427,7 @@ ] }, { - "id": 2598, + "id": 2699, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -35365,7 +34443,7 @@ }, "children": [ { - "id": 2600, + "id": 2701, "name": "height", "kind": 1024, "kindString": "Property", @@ -35397,7 +34475,7 @@ } }, { - "id": 2601, + "id": 2702, "name": "loading", "kind": 1024, "kindString": "Property", @@ -35433,7 +34511,7 @@ } }, { - "id": 2599, + "id": 2700, "name": "width", "kind": 1024, "kindString": "Property", @@ -35470,9 +34548,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2600, - 2601, - 2599 + 2701, + 2702, + 2700 ] } ], @@ -35484,7 +34562,7 @@ } ], "indexSignature": { - "id": 2602, + "id": 2703, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -35494,7 +34572,7 @@ }, "parameters": [ { - "id": 2603, + "id": 2704, "name": "key", "kind": 32768, "flags": {}, @@ -35528,7 +34606,7 @@ } }, { - "id": 2387, + "id": 2472, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -35544,7 +34622,7 @@ }, "children": [ { - "id": 2398, + "id": 2484, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -35578,7 +34656,7 @@ } }, { - "id": 2420, + "id": 2507, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -35609,20 +34687,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2421, + "id": 2508, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2422, + "id": 2509, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2423, + "id": 2510, "name": "key", "kind": 32768, "flags": {}, @@ -35658,7 +34736,7 @@ } }, { - "id": 2444, + "id": 2534, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -35686,7 +34764,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1292, + "line": 1301, "character": 4 } ], @@ -35700,7 +34778,7 @@ } }, { - "id": 2441, + "id": 2531, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -35724,13 +34802,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1256, + "line": 1265, "character": 4 } ], "type": { "type": "reference", - "id": 2235, + "id": 2315, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -35739,7 +34817,7 @@ } }, { - "id": 2457, + "id": 2547, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -35763,7 +34841,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1512, + "line": 1521, "character": 4 } ], @@ -35777,7 +34855,7 @@ } }, { - "id": 2438, + "id": 2525, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -35818,7 +34896,7 @@ } }, { - "id": 2424, + "id": 2511, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -35847,7 +34925,7 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2740, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -35856,7 +34934,7 @@ } }, { - "id": 2445, + "id": 2535, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -35884,7 +34962,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1308, + "line": 1317, "character": 4 } ], @@ -35898,7 +34976,7 @@ } }, { - "id": 2389, + "id": 2474, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -35940,7 +35018,7 @@ } }, { - "id": 2432, + "id": 2519, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -35978,7 +35056,7 @@ } }, { - "id": 2416, + "id": 2503, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -36016,7 +35094,7 @@ } }, { - "id": 2415, + "id": 2502, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -36048,7 +35126,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -36058,7 +35136,7 @@ } }, { - "id": 2428, + "id": 2515, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -36099,7 +35177,7 @@ } }, { - "id": 2451, + "id": 2541, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -36127,7 +35205,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1410, + "line": 1419, "character": 4 } ], @@ -36141,7 +35219,7 @@ } }, { - "id": 2456, + "id": 2546, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -36169,7 +35247,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1496, + "line": 1505, "character": 4 } ], @@ -36183,7 +35261,7 @@ } }, { - "id": 2446, + "id": 2536, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -36211,7 +35289,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1324, + "line": 1333, "character": 4 } ], @@ -36225,7 +35303,7 @@ } }, { - "id": 2429, + "id": 2516, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -36263,7 +35341,7 @@ } }, { - "id": 2494, + "id": 2476, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -36299,7 +35377,7 @@ } }, { - "id": 2442, + "id": 2532, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -36323,7 +35401,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1267, + "line": 1276, "character": 4 } ], @@ -36337,7 +35415,7 @@ } }, { - "id": 2443, + "id": 2533, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -36361,7 +35439,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1277, + "line": 1286, "character": 4 } ], @@ -36375,7 +35453,7 @@ } }, { - "id": 2431, + "id": 2518, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -36412,7 +35490,7 @@ } }, { - "id": 2412, + "id": 2499, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -36442,7 +35520,7 @@ ], "type": { "type": "reference", - "id": 2598, + "id": 2699, "name": "FrameParams" }, "inheritedFrom": { @@ -36451,7 +35529,7 @@ } }, { - "id": 2388, + "id": 2473, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -36485,7 +35563,7 @@ } }, { - "id": 2417, + "id": 2504, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -36521,7 +35599,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -36531,7 +35609,7 @@ } }, { - "id": 2508, + "id": 2490, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -36568,7 +35646,7 @@ } }, { - "id": 2454, + "id": 2544, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -36596,7 +35674,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1463, + "line": 1472, "character": 4 } ], @@ -36610,7 +35688,7 @@ } }, { - "id": 2447, + "id": 2537, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -36638,7 +35716,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1346, + "line": 1355, "character": 4 } ], @@ -36652,7 +35730,7 @@ } }, { - "id": 2503, + "id": 2485, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -36686,7 +35764,7 @@ } }, { - "id": 2425, + "id": 2512, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -36724,7 +35802,7 @@ } }, { - "id": 2550, + "id": 2528, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -36747,7 +35825,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6420, + "line": 6440, "character": 4 } ], @@ -36761,7 +35839,7 @@ } }, { - "id": 2549, + "id": 2527, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -36784,7 +35862,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6403, + "line": 6423, "character": 4 } ], @@ -36801,7 +35879,7 @@ } }, { - "id": 2571, + "id": 2549, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -36825,7 +35903,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1545, + "line": 1555, "character": 4 } ], @@ -36839,7 +35917,7 @@ } }, { - "id": 2461, + "id": 2551, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -36863,7 +35941,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1576, + "line": 1586, "character": 4 } ], @@ -36877,7 +35955,7 @@ } }, { - "id": 2460, + "id": 2550, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -36901,7 +35979,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1560, + "line": 1570, "character": 4 } ], @@ -36915,7 +35993,7 @@ } }, { - "id": 2452, + "id": 2542, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -36943,7 +36021,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1427, + "line": 1436, "character": 4 } ], @@ -36957,7 +36035,7 @@ } }, { - "id": 2450, + "id": 2540, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -36981,7 +36059,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1393, + "line": 1402, "character": 4 } ], @@ -36995,7 +36073,49 @@ } }, { - "id": 2406, + "id": 2553, + "name": "isLiveboardMasterpiecesEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Enable or disable Liveboard styling and grouping", + "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.45.0 | Thoughtspot: 26.2.0.cl" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\n// Replace with embed component name. For example, AppEmbed or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n isLiveboardMasterpiecesEnabled: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1618, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "LiveboardAppEmbedViewConfig.isLiveboardMasterpiecesEnabled" + } + }, + { + "id": 2492, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -37029,7 +36149,7 @@ } }, { - "id": 2548, + "id": 2526, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -37049,7 +36169,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6387, + "line": 6407, "character": 4 } ], @@ -37063,7 +36183,7 @@ } }, { - "id": 2511, + "id": 2493, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -37097,7 +36217,7 @@ } }, { - "id": 2512, + "id": 2494, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -37134,7 +36254,7 @@ } }, { - "id": 2513, + "id": 2495, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -37168,7 +36288,7 @@ } }, { - "id": 2434, + "id": 2521, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -37206,7 +36326,7 @@ } }, { - "id": 2495, + "id": 2477, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -37240,7 +36360,7 @@ } }, { - "id": 2501, + "id": 2483, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -37274,7 +36394,7 @@ } }, { - "id": 2458, + "id": 2548, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -37298,7 +36418,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1527, + "line": 1537, "character": 4 } ], @@ -37312,7 +36432,7 @@ } }, { - "id": 2419, + "id": 2506, "name": "locale", "kind": 1024, "kindString": "Property", @@ -37350,7 +36470,44 @@ } }, { - "id": 2433, + "id": 2475, + "name": "minimumHeight", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This is the minimum height (in pixels) for a full-height Liveboard.\nSetting this height helps resolve issues with empty Liveboards and\nother screens navigable from a Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.44.2 | ThoughtSpot: 26.0.2.cl" + }, + { + "tag": "default", + "text": "500" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n fullHeight: true,\n minimumHeight: 600,\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 97, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2520, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -37388,7 +36545,7 @@ } }, { - "id": 2427, + "id": 2514, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -37426,7 +36583,7 @@ } }, { - "id": 2498, + "id": 2480, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -37460,7 +36617,7 @@ } }, { - "id": 2435, + "id": 2522, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -37498,7 +36655,7 @@ } }, { - "id": 2439, + "id": 2529, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -37522,7 +36679,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1220, + "line": 1229, "character": 4 } ], @@ -37530,7 +36687,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1979, "name": "RuntimeFilter" } }, @@ -37540,7 +36697,7 @@ } }, { - "id": 2440, + "id": 2530, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -37564,7 +36721,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1241, + "line": 1250, "character": 4 } ], @@ -37572,7 +36729,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2924, "name": "RuntimeParameter" } }, @@ -37582,7 +36739,7 @@ } }, { - "id": 2437, + "id": 2524, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -37619,7 +36776,7 @@ } }, { - "id": 2449, + "id": 2539, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -37647,7 +36804,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1378, + "line": 1387, "character": 4 } ], @@ -37661,7 +36818,7 @@ } }, { - "id": 2455, + "id": 2545, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -37689,7 +36846,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1480, + "line": 1489, "character": 4 } ], @@ -37703,7 +36860,7 @@ } }, { - "id": 2448, + "id": 2538, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -37731,7 +36888,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1362, + "line": 1371, "character": 4 } ], @@ -37745,7 +36902,7 @@ } }, { - "id": 2453, + "id": 2543, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -37773,7 +36930,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1444, + "line": 1453, "character": 4 } ], @@ -37787,7 +36944,49 @@ } }, { - "id": 2400, + "id": 2552, + "name": "showMaskedFilterChip", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Show or hide masked filter chips", + "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.45.0 | Thoughtspot: 26.2.0.cl" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\n// Replace with embed component name. For example, AppEmbed or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n showMaskedFilterChip: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1602, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "LiveboardAppEmbedViewConfig.showMaskedFilterChip" + } + }, + { + "id": 2486, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -37821,7 +37020,7 @@ } }, { - "id": 2514, + "id": 2496, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -37854,7 +37053,45 @@ } }, { - "id": 2418, + "id": 2497, + "name": "updatedSpotterChatPrompt", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "updatedSpotterChatPrompt : Controls the updated spotter chat prompt.", + "text": "Supported embed types: `LiveboardEmbed`", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... //other embed view config\n updatedSpotterChatPrompt : true,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 433, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2505, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -37890,7 +37127,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -37900,7 +37137,7 @@ } }, { - "id": 2509, + "id": 2491, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -37937,7 +37174,7 @@ } }, { - "id": 2499, + "id": 2481, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -37974,7 +37211,7 @@ } }, { - "id": 2497, + "id": 2479, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -38013,66 +37250,73 @@ "title": "Properties", "kind": 1024, "children": [ - 2398, - 2420, - 2444, - 2441, - 2457, - 2438, - 2424, - 2445, - 2389, - 2432, - 2416, - 2415, - 2428, - 2451, - 2456, - 2446, - 2429, - 2390, - 2442, - 2443, - 2431, - 2412, - 2388, - 2417, - 2404, - 2454, - 2447, - 2399, - 2425, - 2459, - 2461, - 2460, - 2452, - 2450, - 2406, - 2407, - 2408, - 2409, - 2434, - 2391, - 2397, - 2458, - 2419, - 2433, - 2427, - 2394, - 2435, - 2439, - 2440, - 2437, - 2449, - 2455, - 2448, - 2453, - 2400, - 2410, - 2418, - 2405, - 2395, - 2393 + 2484, + 2507, + 2534, + 2531, + 2547, + 2525, + 2511, + 2535, + 2474, + 2519, + 2503, + 2502, + 2515, + 2541, + 2546, + 2536, + 2516, + 2476, + 2532, + 2533, + 2518, + 2499, + 2473, + 2504, + 2490, + 2544, + 2537, + 2485, + 2512, + 2528, + 2527, + 2549, + 2551, + 2550, + 2542, + 2540, + 2553, + 2492, + 2526, + 2493, + 2494, + 2495, + 2521, + 2477, + 2483, + 2548, + 2506, + 2475, + 2520, + 2514, + 2480, + 2522, + 2529, + 2530, + 2524, + 2539, + 2545, + 2538, + 2543, + 2552, + 2486, + 2496, + 2497, + 2505, + 2491, + 2481, + 2479 ] } ], @@ -38099,100 +37343,7 @@ ] }, { - "id": 3131, - "name": "RouteBlocking", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ - { - "id": 3134, - "name": "accessDeniedMessage", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6376, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3133, - "name": "allowedRoutes", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6375, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - }, - { - "id": 3132, - "name": "blockedRoutes", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6374, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 3134, - 3133, - 3132 - ] - } - ], - "sources": [ - { - "fileName": "types.ts", - "line": 6373, - "character": 17 - } - ] - }, - { - "id": 1994, + "id": 1979, "name": "RuntimeFilter", "kind": 256, "kindString": "Interface", @@ -38202,7 +37353,7 @@ }, "children": [ { - "id": 1907, + "id": 1980, "name": "columnName", "kind": 1024, "kindString": "Property", @@ -38213,7 +37364,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1776, + "line": 1822, "character": 4 } ], @@ -38223,7 +37374,7 @@ } }, { - "id": 1908, + "id": 1981, "name": "operator", "kind": 1024, "kindString": "Property", @@ -38234,18 +37385,18 @@ "sources": [ { "fileName": "types.ts", - "line": 1780, + "line": 1826, "character": 4 } ], "type": { "type": "reference", - "id": 1910, + "id": 1983, "name": "RuntimeFilterOp" } }, { - "id": 1909, + "id": 1982, "name": "values", "kind": 1024, "kindString": "Property", @@ -38256,7 +37407,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1786, + "line": 1832, "character": 4 } ], @@ -38291,22 +37442,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1907, - 1908, - 1909 + 1980, + 1981, + 1982 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1772, + "line": 1818, "character": 17 } ] }, { - "id": 2822, + "id": 2924, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -38316,7 +37467,7 @@ }, "children": [ { - "id": 2823, + "id": 2925, "name": "name", "kind": 1024, "kindString": "Property", @@ -38327,7 +37478,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1796, + "line": 1842, "character": 4 } ], @@ -38337,7 +37488,7 @@ } }, { - "id": 2824, + "id": 2926, "name": "value", "kind": 1024, "kindString": "Property", @@ -38348,7 +37499,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1800, + "line": 1846, "character": 4 } ], @@ -38376,21 +37527,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2823, - 2824 + 2925, + 2926 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1792, + "line": 1838, "character": 17 } ] }, { - "id": 2462, + "id": 2554, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -38410,7 +37561,7 @@ }, "children": [ { - "id": 2491, + "id": 2583, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -38441,20 +37592,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2492, + "id": 2584, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2493, + "id": 2585, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2494, + "id": 2586, "name": "key", "kind": 32768, "flags": {}, @@ -38490,7 +37641,7 @@ } }, { - "id": 2479, + "id": 2571, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -38518,7 +37669,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1292, + "line": 1301, "character": 4 } ], @@ -38532,7 +37683,7 @@ } }, { - "id": 2476, + "id": 2568, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -38556,13 +37707,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1256, + "line": 1265, "character": 4 } ], "type": { "type": "reference", - "id": 2235, + "id": 2315, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -38571,7 +37722,7 @@ } }, { - "id": 2508, + "id": 2600, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -38612,7 +37763,7 @@ } }, { - "id": 2495, + "id": 2587, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -38641,7 +37792,7 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2740, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -38650,7 +37801,7 @@ } }, { - "id": 2480, + "id": 2572, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -38678,7 +37829,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1308, + "line": 1317, "character": 4 } ], @@ -38692,7 +37843,7 @@ } }, { - "id": 2472, + "id": 2564, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -38715,7 +37866,7 @@ } }, { - "id": 2503, + "id": 2595, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -38753,7 +37904,7 @@ } }, { - "id": 2467, + "id": 2559, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -38782,7 +37933,7 @@ } }, { - "id": 2487, + "id": 2579, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -38820,7 +37971,7 @@ } }, { - "id": 2486, + "id": 2578, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -38852,7 +38003,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -38862,7 +38013,7 @@ } }, { - "id": 2499, + "id": 2591, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -38903,7 +38054,7 @@ } }, { - "id": 2481, + "id": 2573, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -38931,7 +38082,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1324, + "line": 1333, "character": 4 } ], @@ -38945,7 +38096,7 @@ } }, { - "id": 2500, + "id": 2592, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -38983,7 +38134,7 @@ } }, { - "id": 2477, + "id": 2569, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -39007,7 +38158,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1267, + "line": 1276, "character": 4 } ], @@ -39021,7 +38172,7 @@ } }, { - "id": 2478, + "id": 2570, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -39045,7 +38196,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1277, + "line": 1286, "character": 4 } ], @@ -39059,7 +38210,7 @@ } }, { - "id": 2502, + "id": 2594, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -39096,7 +38247,7 @@ } }, { - "id": 2483, + "id": 2575, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -39126,7 +38277,7 @@ ], "type": { "type": "reference", - "id": 2598, + "id": 2699, "name": "FrameParams" }, "inheritedFrom": { @@ -39135,7 +38286,7 @@ } }, { - "id": 2488, + "id": 2580, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -39171,7 +38322,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -39181,7 +38332,7 @@ } }, { - "id": 2469, + "id": 2561, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -39210,7 +38361,7 @@ } }, { - "id": 2466, + "id": 2558, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -39239,7 +38390,7 @@ } }, { - "id": 2471, + "id": 2563, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -39273,7 +38424,7 @@ } }, { - "id": 2465, + "id": 2557, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -39306,7 +38457,7 @@ } }, { - "id": 2468, + "id": 2560, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -39335,7 +38486,7 @@ } }, { - "id": 2496, + "id": 2588, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -39373,7 +38524,7 @@ } }, { - "id": 2628, + "id": 2603, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -39396,7 +38547,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6420, + "line": 6440, "character": 4 } ], @@ -39410,7 +38561,7 @@ } }, { - "id": 2627, + "id": 2602, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -39433,7 +38584,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6403, + "line": 6423, "character": 4 } ], @@ -39450,7 +38601,7 @@ } }, { - "id": 2626, + "id": 2601, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -39470,7 +38621,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6387, + "line": 6407, "character": 4 } ], @@ -39484,7 +38635,7 @@ } }, { - "id": 2617, + "id": 2597, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -39522,7 +38673,7 @@ } }, { - "id": 2490, + "id": 2582, "name": "locale", "kind": 1024, "kindString": "Property", @@ -39560,7 +38711,7 @@ } }, { - "id": 2504, + "id": 2596, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -39598,7 +38749,7 @@ } }, { - "id": 2498, + "id": 2590, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -39636,7 +38787,7 @@ } }, { - "id": 2474, + "id": 2566, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -39660,7 +38811,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1220, + "line": 1229, "character": 4 } ], @@ -39668,7 +38819,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1979, "name": "RuntimeFilter" } }, @@ -39678,7 +38829,7 @@ } }, { - "id": 2475, + "id": 2567, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -39702,7 +38853,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1241, + "line": 1250, "character": 4 } ], @@ -39710,7 +38861,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2924, "name": "RuntimeParameter" } }, @@ -39720,7 +38871,7 @@ } }, { - "id": 2473, + "id": 2565, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -39754,7 +38905,7 @@ } }, { - "id": 2507, + "id": 2599, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -39791,7 +38942,7 @@ } }, { - "id": 2463, + "id": 2555, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -39820,7 +38971,7 @@ } }, { - "id": 2470, + "id": 2562, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -39849,7 +39000,7 @@ } }, { - "id": 2489, + "id": 2581, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -39885,7 +39036,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -39900,42 +39051,45 @@ "title": "Properties", "kind": 1024, "children": [ - 2491, - 2479, - 2476, - 2508, - 2495, - 2480, - 2472, - 2503, - 2467, - 2487, - 2486, - 2499, - 2481, - 2500, - 2477, - 2478, - 2502, - 2483, - 2488, - 2469, - 2466, - 2471, - 2465, - 2468, - 2496, - 2505, - 2490, - 2504, - 2498, - 2474, - 2475, - 2473, - 2507, - 2463, - 2470, - 2489 + 2583, + 2571, + 2568, + 2600, + 2587, + 2572, + 2564, + 2595, + 2559, + 2579, + 2578, + 2591, + 2573, + 2592, + 2569, + 2570, + 2594, + 2575, + 2580, + 2561, + 2558, + 2563, + 2557, + 2560, + 2588, + 2603, + 2602, + 2601, + 2597, + 2582, + 2596, + 2590, + 2566, + 2567, + 2565, + 2599, + 2555, + 2562, + 2581 ] } ], @@ -39989,7 +39143,7 @@ ] }, { - "id": 2345, + "id": 2427, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -40004,7 +39158,7 @@ }, "children": [ { - "id": 2360, + "id": 2442, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -40035,20 +39189,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2361, + "id": 2443, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2362, + "id": 2444, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2363, + "id": 2445, "name": "key", "kind": 32768, "flags": {}, @@ -40084,7 +39238,7 @@ } }, { - "id": 2384, + "id": 2469, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -40112,7 +39266,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1292, + "line": 1301, "character": 4 } ], @@ -40126,7 +39280,7 @@ } }, { - "id": 2381, + "id": 2466, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -40150,13 +39304,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1256, + "line": 1265, "character": 4 } ], "type": { "type": "reference", - "id": 2235, + "id": 2315, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -40165,7 +39319,7 @@ } }, { - "id": 2378, + "id": 2460, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -40206,7 +39360,7 @@ } }, { - "id": 2364, + "id": 2446, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -40235,7 +39389,7 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2740, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -40244,7 +39398,7 @@ } }, { - "id": 2385, + "id": 2470, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -40272,7 +39426,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1308, + "line": 1317, "character": 4 } ], @@ -40286,7 +39440,7 @@ } }, { - "id": 2347, + "id": 2429, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -40320,7 +39474,7 @@ } }, { - "id": 2346, + "id": 2428, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -40361,7 +39515,7 @@ } }, { - "id": 2372, + "id": 2454, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -40399,7 +39553,7 @@ } }, { - "id": 2356, + "id": 2438, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -40437,7 +39591,7 @@ } }, { - "id": 2355, + "id": 2437, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -40469,7 +39623,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -40479,7 +39633,7 @@ } }, { - "id": 2368, + "id": 2450, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -40520,7 +39674,7 @@ } }, { - "id": 2386, + "id": 2471, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -40548,7 +39702,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1324, + "line": 1333, "character": 4 } ], @@ -40562,7 +39716,7 @@ } }, { - "id": 2369, + "id": 2451, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -40600,7 +39754,7 @@ } }, { - "id": 2382, + "id": 2467, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -40624,7 +39778,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1267, + "line": 1276, "character": 4 } ], @@ -40638,7 +39792,7 @@ } }, { - "id": 2383, + "id": 2468, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -40662,7 +39816,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1277, + "line": 1286, "character": 4 } ], @@ -40676,7 +39830,7 @@ } }, { - "id": 2350, + "id": 2432, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -40710,7 +39864,7 @@ } }, { - "id": 2371, + "id": 2453, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -40747,7 +39901,7 @@ } }, { - "id": 2352, + "id": 2434, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -40777,7 +39931,7 @@ ], "type": { "type": "reference", - "id": 2598, + "id": 2699, "name": "FrameParams" }, "inheritedFrom": { @@ -40786,7 +39940,7 @@ } }, { - "id": 2357, + "id": 2439, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -40822,7 +39976,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -40832,7 +39986,7 @@ } }, { - "id": 2365, + "id": 2447, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -40870,7 +40024,7 @@ } }, { - "id": 2482, + "id": 2463, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -40893,7 +40047,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6420, + "line": 6440, "character": 4 } ], @@ -40907,7 +40061,7 @@ } }, { - "id": 2481, + "id": 2462, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -40930,7 +40084,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6403, + "line": 6423, "character": 4 } ], @@ -40947,7 +40101,7 @@ } }, { - "id": 2480, + "id": 2461, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -40967,7 +40121,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6387, + "line": 6407, "character": 4 } ], @@ -40981,7 +40135,7 @@ } }, { - "id": 2470, + "id": 2456, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -41019,7 +40173,7 @@ } }, { - "id": 2359, + "id": 2441, "name": "locale", "kind": 1024, "kindString": "Property", @@ -41057,7 +40211,7 @@ } }, { - "id": 2373, + "id": 2455, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -41095,7 +40249,7 @@ } }, { - "id": 2367, + "id": 2449, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -41133,7 +40287,7 @@ } }, { - "id": 2375, + "id": 2457, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -41171,7 +40325,7 @@ } }, { - "id": 2379, + "id": 2464, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -41195,7 +40349,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1220, + "line": 1229, "character": 4 } ], @@ -41203,7 +40357,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1979, "name": "RuntimeFilter" } }, @@ -41213,7 +40367,7 @@ } }, { - "id": 2380, + "id": 2465, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -41237,7 +40391,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1241, + "line": 1250, "character": 4 } ], @@ -41245,7 +40399,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2924, "name": "RuntimeParameter" } }, @@ -41255,7 +40409,7 @@ } }, { - "id": 2349, + "id": 2431, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -41289,7 +40443,7 @@ } }, { - "id": 2377, + "id": 2459, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -41326,7 +40480,7 @@ } }, { - "id": 2348, + "id": 2430, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -41360,7 +40514,7 @@ } }, { - "id": 2358, + "id": 2440, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -41396,7 +40550,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -41411,38 +40565,41 @@ "title": "Properties", "kind": 1024, "children": [ - 2360, - 2384, - 2381, - 2378, - 2364, - 2385, - 2347, - 2346, - 2372, - 2356, - 2355, - 2368, - 2386, - 2369, - 2382, - 2383, - 2350, - 2371, - 2352, - 2357, - 2365, - 2374, - 2359, - 2373, - 2367, - 2375, - 2379, - 2380, - 2349, - 2377, - 2348, - 2358 + 2442, + 2469, + 2466, + 2460, + 2446, + 2470, + 2429, + 2428, + 2454, + 2438, + 2437, + 2450, + 2471, + 2451, + 2467, + 2468, + 2432, + 2453, + 2434, + 2439, + 2447, + 2463, + 2462, + 2461, + 2456, + 2441, + 2455, + 2449, + 2457, + 2464, + 2465, + 2431, + 2459, + 2430, + 2440 ] } ], @@ -41465,7 +40622,7 @@ ] }, { - "id": 2291, + "id": 2371, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -41481,7 +40638,7 @@ }, "children": [ { - "id": 2327, + "id": 2406, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -41512,20 +40669,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2328, + "id": 2407, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2329, + "id": 2408, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2330, + "id": 2409, "name": "key", "kind": 32768, "flags": {}, @@ -41561,7 +40718,7 @@ } }, { - "id": 2303, + "id": 2383, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -41595,7 +40752,7 @@ } }, { - "id": 2293, + "id": 2373, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -41629,7 +40786,7 @@ } }, { - "id": 2292, + "id": 2372, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -41663,7 +40820,7 @@ } }, { - "id": 2315, + "id": 2394, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -41691,7 +40848,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1292, + "line": 1301, "character": 4 } ], @@ -41705,7 +40862,7 @@ } }, { - "id": 2306, + "id": 2386, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -41742,7 +40899,7 @@ } }, { - "id": 2312, + "id": 2391, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -41766,13 +40923,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1256, + "line": 1265, "character": 4 } ], "type": { "type": "reference", - "id": 2235, + "id": 2315, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -41781,7 +40938,7 @@ } }, { - "id": 2344, + "id": 2423, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -41822,7 +40979,7 @@ } }, { - "id": 2331, + "id": 2410, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -41851,7 +41008,7 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2740, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -41860,7 +41017,7 @@ } }, { - "id": 2308, + "id": 2387, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -41898,7 +41055,7 @@ } }, { - "id": 2316, + "id": 2395, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -41926,7 +41083,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1308, + "line": 1317, "character": 4 } ], @@ -41940,7 +41097,7 @@ } }, { - "id": 2299, + "id": 2379, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -41974,7 +41131,7 @@ } }, { - "id": 2298, + "id": 2378, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -42010,7 +41167,7 @@ } }, { - "id": 2339, + "id": 2418, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -42048,7 +41205,7 @@ } }, { - "id": 2323, + "id": 2402, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -42086,7 +41243,7 @@ } }, { - "id": 2322, + "id": 2401, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -42118,7 +41275,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -42128,7 +41285,7 @@ } }, { - "id": 2335, + "id": 2414, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -42169,7 +41326,7 @@ } }, { - "id": 2317, + "id": 2396, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -42197,7 +41354,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1324, + "line": 1333, "character": 4 } ], @@ -42211,7 +41368,7 @@ } }, { - "id": 2296, + "id": 2376, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -42245,7 +41402,7 @@ } }, { - "id": 2336, + "id": 2415, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -42283,7 +41440,7 @@ } }, { - "id": 2313, + "id": 2392, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -42307,7 +41464,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1267, + "line": 1276, "character": 4 } ], @@ -42321,7 +41478,7 @@ } }, { - "id": 2314, + "id": 2393, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -42345,7 +41502,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1277, + "line": 1286, "character": 4 } ], @@ -42359,7 +41516,7 @@ } }, { - "id": 2302, + "id": 2382, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -42393,7 +41550,7 @@ } }, { - "id": 2338, + "id": 2417, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -42430,7 +41587,7 @@ } }, { - "id": 2309, + "id": 2388, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -42468,7 +41625,7 @@ } }, { - "id": 2297, + "id": 2377, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -42502,7 +41659,7 @@ } }, { - "id": 2319, + "id": 2398, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -42532,7 +41689,7 @@ ], "type": { "type": "reference", - "id": 2598, + "id": 2699, "name": "FrameParams" }, "inheritedFrom": { @@ -42541,7 +41698,7 @@ } }, { - "id": 2324, + "id": 2403, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -42577,7 +41734,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -42587,7 +41744,7 @@ } }, { - "id": 2294, + "id": 2374, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -42621,7 +41778,7 @@ } }, { - "id": 2295, + "id": 2375, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -42655,7 +41812,7 @@ } }, { - "id": 2304, + "id": 2384, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -42689,7 +41846,7 @@ } }, { - "id": 2332, + "id": 2411, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -42727,7 +41884,7 @@ } }, { - "id": 2440, + "id": 2426, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -42750,7 +41907,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6420, + "line": 6440, "character": 4 } ], @@ -42764,7 +41921,7 @@ } }, { - "id": 2439, + "id": 2425, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -42787,7 +41944,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6403, + "line": 6423, "character": 4 } ], @@ -42804,7 +41961,7 @@ } }, { - "id": 2438, + "id": 2424, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -42824,7 +41981,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6387, + "line": 6407, "character": 4 } ], @@ -42838,7 +41995,7 @@ } }, { - "id": 2341, + "id": 2420, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -42876,7 +42033,7 @@ } }, { - "id": 2326, + "id": 2405, "name": "locale", "kind": 1024, "kindString": "Property", @@ -42914,7 +42071,7 @@ } }, { - "id": 2340, + "id": 2419, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -42952,7 +42109,7 @@ } }, { - "id": 2334, + "id": 2413, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -42990,7 +42147,7 @@ } }, { - "id": 2310, + "id": 2389, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -43014,7 +42171,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1220, + "line": 1229, "character": 4 } ], @@ -43022,7 +42179,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1979, "name": "RuntimeFilter" } }, @@ -43032,7 +42189,7 @@ } }, { - "id": 2311, + "id": 2390, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -43056,7 +42213,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1241, + "line": 1250, "character": 4 } ], @@ -43064,7 +42221,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2924, "name": "RuntimeParameter" } }, @@ -43074,7 +42231,7 @@ } }, { - "id": 2301, + "id": 2381, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -43104,7 +42261,7 @@ } }, { - "id": 2300, + "id": 2380, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -43133,7 +42290,7 @@ } }, { - "id": 2343, + "id": 2422, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -43170,7 +42327,7 @@ } }, { - "id": 2305, + "id": 2385, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -43200,7 +42357,7 @@ } }, { - "id": 2325, + "id": 2404, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -43236,7 +42393,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -43251,50 +42408,52 @@ "title": "Properties", "kind": 1024, "children": [ - 2327, - 2303, - 2293, - 2292, - 2315, - 2306, - 2312, - 2344, - 2331, - 2308, - 2316, - 2299, - 2298, - 2339, - 2323, - 2322, - 2335, - 2317, - 2296, - 2336, - 2313, - 2314, - 2302, - 2338, - 2309, - 2297, - 2319, - 2324, - 2294, - 2295, - 2304, - 2332, - 2307, - 2341, - 2326, - 2340, - 2334, - 2310, - 2311, - 2301, - 2300, - 2343, - 2305, - 2325 + 2406, + 2383, + 2373, + 2372, + 2394, + 2386, + 2391, + 2423, + 2410, + 2387, + 2395, + 2379, + 2378, + 2418, + 2402, + 2401, + 2414, + 2396, + 2376, + 2415, + 2392, + 2393, + 2382, + 2417, + 2388, + 2377, + 2398, + 2403, + 2374, + 2375, + 2384, + 2411, + 2426, + 2425, + 2424, + 2420, + 2405, + 2419, + 2413, + 2389, + 2390, + 2381, + 2380, + 2422, + 2385, + 2404 ] } ], @@ -43327,14 +42486,14 @@ ] }, { - "id": 1875, + "id": 1948, "name": "SessionInterface", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1878, + "id": 1951, "name": "acSession", "kind": 1024, "kindString": "Property", @@ -43349,14 +42508,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1879, + "id": 1952, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1881, + "id": 1954, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -43374,7 +42533,7 @@ } }, { - "id": 1880, + "id": 1953, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -43397,8 +42556,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1881, - 1880 + 1954, + 1953 ] } ] @@ -43406,7 +42565,7 @@ } }, { - "id": 1877, + "id": 1950, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -43424,7 +42583,7 @@ } }, { - "id": 1876, + "id": 1949, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -43447,9 +42606,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1878, - 1877, - 1876 + 1951, + 1950, + 1949 ] } ], @@ -43462,7 +42621,7 @@ ] }, { - "id": 1231, + "id": 1276, "name": "SpotterAgentEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -43478,7 +42637,7 @@ }, "children": [ { - "id": 1242, + "id": 1287, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -43509,20 +42668,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1243, + "id": 1288, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1244, + "id": 1289, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1245, + "id": 1290, "name": "key", "kind": 32768, "flags": {}, @@ -43558,7 +42717,7 @@ } }, { - "id": 1259, + "id": 1304, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -43599,7 +42758,7 @@ } }, { - "id": 1246, + "id": 1291, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -43628,7 +42787,7 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2740, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -43637,7 +42796,7 @@ } }, { - "id": 1254, + "id": 1299, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -43675,7 +42834,7 @@ } }, { - "id": 1238, + "id": 1283, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -43713,7 +42872,7 @@ } }, { - "id": 1237, + "id": 1282, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -43745,7 +42904,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -43755,7 +42914,7 @@ } }, { - "id": 1250, + "id": 1295, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -43796,7 +42955,7 @@ } }, { - "id": 1251, + "id": 1296, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -43834,7 +42993,7 @@ } }, { - "id": 1253, + "id": 1298, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -43871,7 +43030,7 @@ } }, { - "id": 1234, + "id": 1279, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -43901,7 +43060,7 @@ ], "type": { "type": "reference", - "id": 2598, + "id": 2699, "name": "FrameParams" }, "inheritedFrom": { @@ -43910,7 +43069,7 @@ } }, { - "id": 1239, + "id": 1284, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -43946,7 +43105,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -43956,7 +43115,7 @@ } }, { - "id": 1247, + "id": 1292, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -43994,7 +43153,7 @@ } }, { - "id": 1309, + "id": 1307, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -44017,7 +43176,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6420, + "line": 6440, "character": 4 } ], @@ -44031,7 +43190,7 @@ } }, { - "id": 1308, + "id": 1306, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -44054,7 +43213,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6403, + "line": 6423, "character": 4 } ], @@ -44071,7 +43230,7 @@ } }, { - "id": 1307, + "id": 1305, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -44091,7 +43250,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6387, + "line": 6407, "character": 4 } ], @@ -44105,7 +43264,7 @@ } }, { - "id": 1298, + "id": 1301, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -44143,7 +43302,7 @@ } }, { - "id": 1241, + "id": 1286, "name": "locale", "kind": 1024, "kindString": "Property", @@ -44181,7 +43340,7 @@ } }, { - "id": 1255, + "id": 1300, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -44219,7 +43378,7 @@ } }, { - "id": 1249, + "id": 1294, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -44257,7 +43416,7 @@ } }, { - "id": 1258, + "id": 1303, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -44294,7 +43453,7 @@ } }, { - "id": 1240, + "id": 1285, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -44330,7 +43489,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -44340,7 +43499,7 @@ } }, { - "id": 1232, + "id": 1277, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -44366,25 +43525,28 @@ "title": "Properties", "kind": 1024, "children": [ - 1242, - 1259, - 1246, - 1254, - 1238, - 1237, - 1250, - 1251, - 1253, - 1234, - 1239, - 1247, - 1256, - 1241, - 1255, - 1249, - 1258, - 1240, - 1232 + 1287, + 1304, + 1291, + 1299, + 1283, + 1282, + 1295, + 1296, + 1298, + 1279, + 1284, + 1292, + 1307, + 1306, + 1305, + 1301, + 1286, + 1300, + 1294, + 1303, + 1285, + 1277 ] } ], @@ -44414,13 +43576,13 @@ "extendedBy": [ { "type": "reference", - "id": 1260, + "id": 1308, "name": "BodylessConversationViewConfig" } ] }, { - "id": 1486, + "id": 1544, "name": "SpotterEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -44436,7 +43598,7 @@ }, "children": [ { - "id": 1508, + "id": 1567, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -44467,20 +43629,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1574, + "id": 1568, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1575, + "id": 1569, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1576, + "id": 1570, "name": "key", "kind": 32768, "flags": {}, @@ -44516,7 +43678,7 @@ } }, { - "id": 1525, + "id": 1584, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -44557,7 +43719,7 @@ } }, { - "id": 1577, + "id": 1571, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -44586,7 +43748,7 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2740, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -44595,7 +43757,7 @@ } }, { - "id": 1491, + "id": 1549, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -44633,7 +43795,7 @@ } }, { - "id": 1585, + "id": 1579, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -44671,7 +43833,7 @@ } }, { - "id": 1489, + "id": 1547, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -44705,7 +43867,7 @@ } }, { - "id": 1569, + "id": 1563, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -44743,7 +43905,7 @@ } }, { - "id": 1568, + "id": 1562, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -44775,7 +43937,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -44785,7 +43947,7 @@ } }, { - "id": 1581, + "id": 1575, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -44826,7 +43988,7 @@ } }, { - "id": 1498, + "id": 1556, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -44864,7 +44026,7 @@ } }, { - "id": 1582, + "id": 1576, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -44902,7 +44064,7 @@ } }, { - "id": 1495, + "id": 1553, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -44936,7 +44098,7 @@ } }, { - "id": 1497, + "id": 1555, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -44970,7 +44132,7 @@ } }, { - "id": 1584, + "id": 1578, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -45007,7 +44169,7 @@ } }, { - "id": 1565, + "id": 1559, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -45037,7 +44199,7 @@ ], "type": { "type": "reference", - "id": 2598, + "id": 2699, "name": "FrameParams" }, "inheritedFrom": { @@ -45046,7 +44208,7 @@ } }, { - "id": 1570, + "id": 1564, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -45082,7 +44244,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -45092,7 +44254,7 @@ } }, { - "id": 1493, + "id": 1551, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -45126,7 +44288,7 @@ } }, { - "id": 1490, + "id": 1548, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -45160,7 +44322,7 @@ } }, { - "id": 1578, + "id": 1572, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -45198,7 +44360,7 @@ } }, { - "id": 1598, + "id": 1587, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -45221,7 +44383,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6420, + "line": 6440, "character": 4 } ], @@ -45235,7 +44397,7 @@ } }, { - "id": 1597, + "id": 1586, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -45258,7 +44420,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6403, + "line": 6423, "character": 4 } ], @@ -45275,7 +44437,7 @@ } }, { - "id": 1596, + "id": 1585, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -45295,7 +44457,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6387, + "line": 6407, "character": 4 } ], @@ -45309,7 +44471,7 @@ } }, { - "id": 1587, + "id": 1581, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -45347,7 +44509,7 @@ } }, { - "id": 1572, + "id": 1566, "name": "locale", "kind": 1024, "kindString": "Property", @@ -45385,7 +44547,7 @@ } }, { - "id": 1586, + "id": 1580, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -45423,7 +44585,7 @@ } }, { - "id": 1580, + "id": 1574, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -45461,7 +44623,7 @@ } }, { - "id": 1494, + "id": 1552, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -45493,13 +44655,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1979, "name": "RuntimeFilter" } } }, { - "id": 1496, + "id": 1554, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -45531,13 +44693,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2924, "name": "RuntimeParameter" } } }, { - "id": 1488, + "id": 1546, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -45560,7 +44722,7 @@ } }, { - "id": 1589, + "id": 1583, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -45597,7 +44759,7 @@ } }, { - "id": 1492, + "id": 1550, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -45631,7 +44793,45 @@ } }, { - "id": 1506, + "id": 1557, + "name": "updatedSpotterChatPrompt", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "updatedSpotterChatPrompt : Controls the updated spotter chat prompt.", + "text": "Supported embed types: `SpotterEmbed`", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... //other embed view config\n updatedSpotterChatPrompt : true,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 198, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1565, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -45667,7 +44867,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2173, "name": "Action" } }, @@ -45677,7 +44877,7 @@ } }, { - "id": 1487, + "id": 1545, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -45703,36 +44903,40 @@ "title": "Properties", "kind": 1024, "children": [ - 1508, - 1525, - 1512, - 1491, - 1520, - 1489, - 1504, - 1503, - 1516, - 1498, - 1517, - 1495, - 1497, - 1519, - 1500, - 1505, - 1493, - 1490, - 1513, - 1522, - 1507, - 1521, - 1515, - 1494, - 1496, - 1488, - 1524, - 1492, - 1506, - 1487 + 1567, + 1584, + 1571, + 1549, + 1579, + 1547, + 1563, + 1562, + 1575, + 1556, + 1576, + 1553, + 1555, + 1578, + 1559, + 1564, + 1551, + 1548, + 1572, + 1587, + 1586, + 1585, + 1581, + 1566, + 1580, + 1574, + 1552, + 1554, + 1546, + 1583, + 1550, + 1557, + 1565, + 1545 ] } ], @@ -45762,20 +44966,20 @@ "extendedBy": [ { "type": "reference", - "id": 1526, + "id": 1588, "name": "ConversationViewConfig" } ] }, { - "id": 1882, + "id": 1955, "name": "UnderlyingDataPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1883, + "id": 1956, "name": "columnId", "kind": 1024, "kindString": "Property", @@ -45793,7 +44997,7 @@ } }, { - "id": 1884, + "id": 1957, "name": "dataValue", "kind": 1024, "kindString": "Property", @@ -45816,8 +45020,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1883, - 1884 + 1956, + 1957 ] } ], @@ -45830,14 +45034,14 @@ ] }, { - "id": 2860, + "id": 2962, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2861, + "id": 2963, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -45845,7 +45049,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5870, + "line": 6053, "character": 4 } ], @@ -45858,7 +45062,7 @@ } }, { - "id": 2862, + "id": 2964, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -45866,7 +45070,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5871, + "line": 6054, "character": 4 } ], @@ -45884,21 +45088,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2861, - 2862 + 2963, + 2964 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5869, + "line": 6052, "character": 17 } ] }, { - "id": 2652, + "id": 2753, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -45908,7 +45112,7 @@ }, "children": [ { - "id": 2654, + "id": 2755, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -45938,20 +45142,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2655, + "id": 2756, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2656, + "id": 2757, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2657, + "id": 2758, "name": "selector", "kind": 32768, "flags": {}, @@ -45964,7 +45168,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2658, + "id": 2759, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -45977,14 +45181,14 @@ } ], "indexSignature": { - "id": 2659, + "id": 2760, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2660, + "id": 2761, "name": "declaration", "kind": 32768, "flags": {}, @@ -46006,7 +45210,7 @@ } }, { - "id": 2653, + "id": 2754, "name": "variables", "kind": 1024, "kindString": "Property", @@ -46025,7 +45229,7 @@ ], "type": { "type": "reference", - "id": 2661, + "id": 2762, "name": "CustomCssVariables" } } @@ -46035,8 +45239,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2654, - 2653 + 2755, + 2754 ] } ], @@ -46341,7 +45545,7 @@ ] }, { - "id": 2622, + "id": 2723, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -46368,7 +45572,7 @@ } }, { - "id": 2626, + "id": 2727, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -46376,14 +45580,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1609, + "line": 1655, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2627, + "id": 2728, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -46400,13 +45604,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1609, + "line": 1655, "character": 30 } ], "signatures": [ { - "id": 2628, + "id": 2729, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -46416,19 +45620,19 @@ }, "parameters": [ { - "id": 2629, + "id": 2730, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2634, + "id": 2735, "name": "MessagePayload" } }, { - "id": 2630, + "id": 2731, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -46438,7 +45642,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2631, + "id": 2732, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -46446,13 +45650,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1616, + "line": 1662, "character": 16 } ], "signatures": [ { - "id": 2632, + "id": 2733, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -46462,7 +45666,7 @@ }, "parameters": [ { - "id": 2633, + "id": 2734, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -46493,7 +45697,7 @@ } }, { - "id": 2623, + "id": 2724, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -46510,21 +45714,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1598, + "line": 1644, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2624, + "id": 2725, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2625, + "id": 2726, "name": "start", "kind": 1024, "kindString": "Property", @@ -46537,7 +45741,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1603, + "line": 1649, "character": 4 } ], @@ -46552,14 +45756,14 @@ "title": "Properties", "kind": 1024, "children": [ - 2625 + 2726 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1598, + "line": 1644, "character": 29 } ] @@ -46567,7 +45771,7 @@ } }, { - "id": 2634, + "id": 2735, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -46584,21 +45788,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1585, + "line": 1631, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2635, + "id": 2736, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2637, + "id": 2738, "name": "data", "kind": 1024, "kindString": "Property", @@ -46606,7 +45810,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1589, + "line": 1635, "character": 4 } ], @@ -46616,7 +45820,7 @@ } }, { - "id": 2638, + "id": 2739, "name": "status", "kind": 1024, "kindString": "Property", @@ -46626,7 +45830,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1591, + "line": 1637, "character": 4 } ], @@ -46636,7 +45840,7 @@ } }, { - "id": 2636, + "id": 2737, "name": "type", "kind": 1024, "kindString": "Property", @@ -46644,7 +45848,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1587, + "line": 1633, "character": 4 } ], @@ -46659,16 +45863,16 @@ "title": "Properties", "kind": 1024, "children": [ - 2637, - 2638, - 2636 + 2738, + 2739, + 2737 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1585, + "line": 1631, "character": 29 } ] @@ -46726,7 +45930,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1802, + "id": 1875, "name": "AnswerService" } } @@ -46988,7 +46192,7 @@ ], "type": { "type": "reference", - "id": 1802, + "id": 1875, "name": "AnswerService" } }, @@ -47075,7 +46279,7 @@ }, "type": { "type": "reference", - "id": 2239, + "id": 2319, "name": "EmbedConfig" } } @@ -47175,14 +46379,14 @@ }, "type": { "type": "reference", - "id": 2239, + "id": 2319, "name": "EmbedConfig" } } ], "type": { "type": "reference", - "id": 1749, + "id": 1822, "name": "AuthEventEmitter" } } @@ -47322,7 +46526,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2593, + "id": 2694, "name": "PrefetchFeatures" } } @@ -47394,7 +46598,63 @@ ] }, { - "id": 3135, + "id": 25, + "name": "reloadIframe", + "kind": 64, + "kindString": "Function", + "flags": { + "isConst": true + }, + "sources": [ + { + "fileName": "embed/base.ts", + "line": 470, + "character": 13 + } + ], + "signatures": [ + { + "id": 26, + "name": "reloadIframe", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Reloads the ThoughtSpot iframe.", + "tags": [ + { + "tag": "group", + "text": "Global methods" + }, + { + "tag": "version", + "text": "SDK: 1.43.1\n" + } + ] + }, + "parameters": [ + { + "id": 27, + "name": "iFrame", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "reference", + "name": "HTMLIFrameElement" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + }, + { + "id": 3016, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -47410,7 +46670,7 @@ ], "signatures": [ { - "id": 3136, + "id": 3017, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -47604,7 +46864,7 @@ ] }, { - "id": 2832, + "id": 2934, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -47618,7 +46878,7 @@ ], "signatures": [ { - "id": 2833, + "id": 2935, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -47628,7 +46888,7 @@ }, "parameters": [ { - "id": 2834, + "id": 2936, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -47640,7 +46900,7 @@ } }, { - "id": 2835, + "id": 2937, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -47651,7 +46911,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2836, + "id": 2938, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -47674,75 +46934,75 @@ "title": "Enumerations", "kind": 4, "children": [ - 2097, - 1747, - 1732, - 1739, - 1894, - 2235, - 2904, - 2900, - 2896, - 2093, - 1926, - 2604, - 2854, - 2848, - 2615, - 2020, - 2857, - 2890, - 2825, - 1885, - 2593, - 2852, - 1910, - 2883 + 2173, + 1820, + 1805, + 1812, + 1967, + 2315, + 3007, + 3003, + 2999, + 2169, + 1999, + 2705, + 2956, + 2950, + 2716, + 2095, + 3012, + 2959, + 2993, + 2927, + 1958, + 2694, + 2954, + 1983, + 2985 ] }, { "title": "Classes", "kind": 128, "children": [ - 1802, - 989, - 1289, - 1566, - 590, - 813, - 231, - 55, - 1199, - 1320 + 1875, + 1027, + 1340, + 1632, + 614, + 844, + 241, + 58, + 1244, + 1371 ] }, { "title": "Interfaces", "kind": 256, "children": [ - 2629, - 1837, - 1310, - 1599, - 2990, - 2788, - 2776, - 2766, - 2328, - 2725, - 2491, - 3131, - 1994, - 2949, - 2574, - 2441, - 2380, - 1963, - 1273, - 1551, - 1970, - 2987, - 2779, + 2604, + 1822, + 1308, + 1588, + 2965, + 2762, + 2750, + 2740, + 2319, + 2699, + 2472, + 1979, + 2924, + 2554, + 2427, + 2371, + 1948, + 1276, + 1544, + 1955, + 2962, + 2753, 21, 28 ] @@ -47751,10 +47011,10 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2622, - 2626, - 2623, - 2634 + 2723, + 2727, + 2724, + 2735 ] }, { @@ -47770,9 +47030,10 @@ 1, 4, 7, - 3135, - 37, - 2832 + 25, + 3016, + 40, + 2934 ] } ], From dc83a6c5a499fd228672032bde54d60656a20cd9 Mon Sep 17 00:00:00 2001 From: Shivam Kumar Date: Tue, 9 Dec 2025 15:26:30 +0530 Subject: [PATCH 18/18] SCAL-239528 Enhance embed configuration validation with error codes --- src/embed/ts-embed.spec.ts | 19 ++++++++++++++----- src/embed/ts-embed.ts | 8 +++++++- src/errors.ts | 3 +++ src/types.ts | 3 +++ src/utils/allowed-or-blocked-routes.ts | 9 ++++----- 5 files changed, 31 insertions(+), 11 deletions(-) diff --git a/src/embed/ts-embed.spec.ts b/src/embed/ts-embed.spec.ts index f48eb9d4..5b8f5a69 100644 --- a/src/embed/ts-embed.spec.ts +++ b/src/embed/ts-embed.spec.ts @@ -3968,9 +3968,13 @@ describe('Unit test case for ts embed', () => { }); await executeAfterWait(() => { - expect(mockHandleError).toHaveBeenCalledWith( - 'You cannot have both blockedRoutes and allowedRoutes set at the same time', - ); + expect(mockHandleError).toHaveBeenCalledWith(expect.objectContaining({ + errorType: ErrorDetailsTypes.VALIDATION_ERROR, + message: ERROR_MESSAGE.CONFLICTING_ROUTES_CONFIG, + code: EmbedErrorCodes.CONFLICTING_ROUTES_CONFIG, + error: ERROR_MESSAGE.CONFLICTING_ROUTES_CONFIG, + } + )); }); }); @@ -4071,8 +4075,13 @@ describe('Unit test case for ts embed', () => { await executeAfterWait(() => { expect(mockHandleError).toHaveBeenCalledWith( - 'You cannot block a route that is being embedded. The path specified in AppEmbed configuration conflicts with blockedRoutes.', - ); + expect.objectContaining({ + errorType: ErrorDetailsTypes.VALIDATION_ERROR, + message: ERROR_MESSAGE.BLOCKING_COMPONENT_ROUTES, + code: EmbedErrorCodes.CONFLICTING_ROUTES_CONFIG, + error: ERROR_MESSAGE.BLOCKING_COMPONENT_ROUTES, + } + )); }); }); diff --git a/src/embed/ts-embed.ts b/src/embed/ts-embed.ts index 3108b665..56a11681 100644 --- a/src/embed/ts-embed.ts +++ b/src/embed/ts-embed.ts @@ -473,7 +473,13 @@ export class TsEmbed { }, ); if (blockedAndAllowedRoutesResult.hasError) { - this.handleError(blockedAndAllowedRoutesResult.errorMessage); + const errorDetails = { + errorType: ErrorDetailsTypes.VALIDATION_ERROR, + message: blockedAndAllowedRoutesResult.errorMessage, + code: EmbedErrorCodes.CONFLICTING_ROUTES_CONFIG, + error : blockedAndAllowedRoutesResult.errorMessage, + }; + this.handleError(errorDetails); } const baseInitData = { customisations: getCustomisations(this.embedConfig, this.viewConfig), diff --git a/src/errors.ts b/src/errors.ts index a9e94dd4..f4dcc624 100644 --- a/src/errors.ts +++ b/src/errors.ts @@ -27,6 +27,9 @@ export const ERROR_MESSAGE = { HOST_EVENT_TYPE_UNDEFINED: 'Host event type is undefined', LOGIN_FAILED: 'Login failed', ERROR_PARSING_API_INTERCEPT_BODY: 'Error parsing api intercept body', + CONFLICTING_ROUTES_CONFIG: 'You cannot have both blockedRoutes and allowedRoutes set at the same time', + BLOCKING_PROTECTED_ROUTES: 'You cannot block the login or embed access denied page', + BLOCKING_COMPONENT_ROUTES: 'You cannot block a route that is being embedded. The path specified in AppEmbed configuration conflicts with blockedRoutes.', }; export const CUSTOM_ACTIONS_ERROR_MESSAGE = { diff --git a/src/types.ts b/src/types.ts index b685f4d7..945fb5de 100644 --- a/src/types.ts +++ b/src/types.ts @@ -6352,6 +6352,9 @@ export enum ErrorDetailsTypes { * }); * */ export enum EmbedErrorCodes { + /** Conflicting routes configuration detected (e.g., both allowedRoutes and blockedRoutes specified) */ + CONFLICTING_ROUTES_CONFIG = 'CONFLICTING_ROUTES_CONFIG', + /** Worksheet ID not found or does not exist */ WORKSHEET_ID_NOT_FOUND = 'WORKSHEET_ID_NOT_FOUND', diff --git a/src/utils/allowed-or-blocked-routes.ts b/src/utils/allowed-or-blocked-routes.ts index 8d63b73e..46d04e15 100644 --- a/src/utils/allowed-or-blocked-routes.ts +++ b/src/utils/allowed-or-blocked-routes.ts @@ -1,3 +1,4 @@ +import { ERROR_MESSAGE } from '../errors'; import { NavigationPath, RouteBlocking } from '../types'; /** @@ -200,8 +201,7 @@ export const validateAndProcessRoutes = ( allowedRoutes: [], blockedRoutes: [], hasError: true, - errorMessage: - 'You cannot have both blockedRoutes and allowedRoutes set at the same time', + errorMessage: ERROR_MESSAGE.CONFLICTING_ROUTES_CONFIG, }; } @@ -228,7 +228,7 @@ export const validateAndProcessRoutes = ( allowedRoutes: [], blockedRoutes: [], hasError: true, - errorMessage: 'You cannot block the login or embed access denied page', + errorMessage: ERROR_MESSAGE.BLOCKING_PROTECTED_ROUTES, }; } @@ -238,8 +238,7 @@ export const validateAndProcessRoutes = ( allowedRoutes: [], blockedRoutes: [], hasError: true, - errorMessage: - 'You cannot block a route that is being embedded. The path specified in AppEmbed configuration conflicts with blockedRoutes.', + errorMessage: ERROR_MESSAGE.BLOCKING_COMPONENT_ROUTES, }; }