diff --git a/src/embed/app.spec.ts b/src/embed/app.spec.ts index a52636c5..5ed546cf 100644 --- a/src/embed/app.spec.ts +++ b/src/embed/app.spec.ts @@ -484,7 +484,7 @@ describe('App embed tests', () => { }); }); - test('should disable isWYSIWYGLiveboardPDFEnabled by default in url', async () => { + test('should enable isWYSIWYGLiveboardPDFEnabled by default in url', async () => { const appEmbed = new AppEmbed(getRootEl(), { ...defaultViewConfig, } as AppViewConfig); @@ -492,7 +492,7 @@ describe('App embed tests', () => { await executeAfterWait(() => { expectUrlMatchesWithParams( getIFrameSrc(), - `http://${thoughtSpotHost}/?embedApp=true&profileAndHelpInNavBarHidden=false&isWYSIWYGLiveboardPDFEnabled=false${defaultParamsPost}#/home`, + `http://${thoughtSpotHost}/?embedApp=true&profileAndHelpInNavBarHidden=false&isWYSIWYGLiveboardPDFEnabled=true${defaultParamsPost}#/home`, ); }); }); @@ -1097,21 +1097,6 @@ describe('App embed tests', () => { }); }); - test('Should add default isLiveboardMasterpiecesEnabled false when not specified', async () => { - const appEmbed = new AppEmbed(getRootEl(), { - ...defaultViewConfig, - showPrimaryNavbar: false, - } as AppViewConfig); - - appEmbed.render(); - await executeAfterWait(() => { - expectUrlMatchesWithParams( - getIFrameSrc(), - `http://${thoughtSpotHost}/?embedApp=true&primaryNavHidden=true&profileAndHelpInNavBarHidden=false&isLiveboardMasterpiecesEnabled=false${defaultParams}${defaultParamsPost}#/home`, - ); - }); - }); - test('Should add newChartsLibrary true to the iframe src', async () => { const appEmbed = new AppEmbed(getRootEl(), { ...defaultViewConfig, diff --git a/src/embed/app.ts b/src/embed/app.ts index e3fe6733..bb543855 100644 --- a/src/embed/app.ts +++ b/src/embed/app.ts @@ -620,11 +620,12 @@ export interface AppViewConfig extends AllEmbedViewConfig { /** * Enables the 'what you see is what you get' PDF export for Liveboards. Each tab is rendered on a single page * following the exact UI layout, instead of splitting visualizations across multiple A4 pages. - * This feature is GA from version 26.5.0.cl. It is disabled by default in embed deployments. + * This feature is GA from SDK version 1.50.0 and ThoughtSpot version 26.8.0.cl. * * Supported embed types: `AppEmbed`, `LiveboardEmbed` * @type {boolean} * @version SDK: 1.48.0 | ThoughtSpot: 26.5.0.cl + * @default true * @example * ```js * // Replace with embed component name. For example, AppEmbed or LiveboardEmbed @@ -638,10 +639,12 @@ export interface AppViewConfig extends AllEmbedViewConfig { /** * This flag is used to enable/disable the XLSX/CSV download option for Liveboards + * This feature is GA from SDK version 1.50.0 and ThoughtSpot version 26.6.0.cl * * Supported embed types: `AppEmbed`, `LiveboardEmbed` * @type {boolean} * @version SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl + * @default true * @example * ```js * // Replace with embed component name. For example, AppEmbed or LiveboardEmbed @@ -655,10 +658,12 @@ export interface AppViewConfig extends AllEmbedViewConfig { /** * This flag is used to enable/disable the granular XLSX/CSV schedules feature + * This feature is GA from SDK version 1.50.0 and ThoughtSpot version 26.6.0.cl * * Supported embed types: `AppEmbed`, `LiveboardEmbed` * @type {boolean} * @version SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl + * @default true * @example * ```js * // Replace with embed component name. For example, AppEmbed or LiveboardEmbed @@ -1009,7 +1014,7 @@ export class AppEmbed extends V1Embed { showLiveboardTitle = true, showLiveboardDescription = true, showMaskedFilterChip = false, - isLiveboardMasterpiecesEnabled = false, + isLiveboardMasterpiecesEnabled, newChartsLibrary, hideHomepageLeftNav = false, modularHomeExperience = false, @@ -1020,20 +1025,20 @@ export class AppEmbed extends V1Embed { enableCustomColumnGroups = false, dataPanelCustomGroupsAccordionInitialState = DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL, collapseSearchBar = true, - isLiveboardCompactHeaderEnabled = false, + isLiveboardCompactHeaderEnabled, showLiveboardVerifiedBadge = true, showLiveboardReverifyBanner = true, - hideIrrelevantChipsInLiveboardTabs = false, - isEnhancedFilterInteractivityEnabled = false, + hideIrrelevantChipsInLiveboardTabs, + isEnhancedFilterInteractivityEnabled, homePageSearchBarMode, isUnifiedSearchExperienceEnabled = true, enablePendoHelp = true, discoveryExperience, - coverAndFilterOptionInPDF = false, + coverAndFilterOptionInPDF, isLiveboardStylingAndGroupingEnabled, isPNGInScheduledEmailsEnabled = false, - isLiveboardXLSXCSVDownloadEnabled = false, - isGranularXLSXCSVSchedulesEnabled = false, + isLiveboardXLSXCSVDownloadEnabled, + isGranularXLSXCSVSchedulesEnabled, isCentralizedLiveboardFilterUXEnabled = false, isLinkParametersEnabled, updatedSpotterChatPrompt, @@ -1043,7 +1048,7 @@ export class AppEmbed extends V1Embed { minimumHeight, isThisPeriodInDateFiltersEnabled, enableHomepageAnnouncement = false, - isContinuousLiveboardPDFEnabled = false, + isContinuousLiveboardPDFEnabled, enableLiveboardDataCache, } = this.viewConfig; @@ -1056,21 +1061,32 @@ export class AppEmbed extends V1Embed { params[Param.ShowLiveboardTitle] = showLiveboardTitle; params[Param.ShowLiveboardDescription] = !!showLiveboardDescription; params[Param.ShowMaskedFilterChip] = showMaskedFilterChip; - params[Param.IsLiveboardMasterpiecesEnabled] = isLiveboardMasterpiecesEnabled; + if (!isUndefined(isLiveboardMasterpiecesEnabled)) { + params[Param.IsLiveboardMasterpiecesEnabled] = isLiveboardMasterpiecesEnabled; + } if (newChartsLibrary !== undefined) { params[Param.EnableNewChartLibrary] = newChartsLibrary; } params[Param.LiveboardHeaderSticky] = isLiveboardHeaderSticky; params[Param.IsFullAppEmbed] = true; - params[Param.LiveboardHeaderV2] = isLiveboardCompactHeaderEnabled; - params[Param.IsEnhancedFilterInteractivityEnabled] = isEnhancedFilterInteractivityEnabled; + if (!isUndefined(isLiveboardCompactHeaderEnabled)) { + params[Param.LiveboardHeaderV2] = isLiveboardCompactHeaderEnabled; + } + if (!isUndefined(isEnhancedFilterInteractivityEnabled)) { + params[Param.IsEnhancedFilterInteractivityEnabled] = + isEnhancedFilterInteractivityEnabled; + } params[Param.ShowLiveboardVerifiedBadge] = showLiveboardVerifiedBadge; params[Param.ShowLiveboardReverifyBanner] = showLiveboardReverifyBanner; - params[Param.HideIrrelevantFiltersInTab] = hideIrrelevantChipsInLiveboardTabs; + if (!isUndefined(hideIrrelevantChipsInLiveboardTabs)) { + params[Param.HideIrrelevantFiltersInTab] = hideIrrelevantChipsInLiveboardTabs; + } if (isUnifiedSearchExperienceEnabled !== undefined) { params[Param.IsUnifiedSearchExperienceEnabled] = isUnifiedSearchExperienceEnabled; } - params[Param.CoverAndFilterOptionInPDF] = !!coverAndFilterOptionInPDF; + if (!isUndefined(coverAndFilterOptionInPDF)) { + params[Param.CoverAndFilterOptionInPDF] = !!coverAndFilterOptionInPDF; + } params = this.getBaseQueryParams(params); @@ -1173,13 +1189,8 @@ export class AppEmbed extends V1Embed { params[Param.isPNGInScheduledEmailsEnabled] = isPNGInScheduledEmailsEnabled; } - if (isLiveboardXLSXCSVDownloadEnabled !== undefined) { - params[Param.isLiveboardXLSXCSVDownloadEnabled] = isLiveboardXLSXCSVDownloadEnabled; - } - - if (isGranularXLSXCSVSchedulesEnabled !== undefined) { - params[Param.isGranularXLSXCSVSchedulesEnabled] = isGranularXLSXCSVSchedulesEnabled; - } + params[Param.isLiveboardXLSXCSVDownloadEnabled] = isLiveboardXLSXCSVDownloadEnabled ?? true; + params[Param.isGranularXLSXCSVSchedulesEnabled] = isGranularXLSXCSVSchedulesEnabled ?? true; if (hideTagFilterChips !== undefined) { params[Param.HideTagFilterChips] = hideTagFilterChips; @@ -1203,9 +1214,7 @@ export class AppEmbed extends V1Embed { params[Param.EnableHomepageAnnouncement] = enableHomepageAnnouncement; } - if (isContinuousLiveboardPDFEnabled !== undefined) { - params[Param.IsWYSIWYGLiveboardPDFEnabled] = isContinuousLiveboardPDFEnabled; - } + params[Param.IsWYSIWYGLiveboardPDFEnabled] = isContinuousLiveboardPDFEnabled ?? true; this.defaultHeight = minimumHeight || this.defaultHeight; diff --git a/src/embed/liveboard.spec.ts b/src/embed/liveboard.spec.ts index da5befb6..6db3ff50 100644 --- a/src/embed/liveboard.spec.ts +++ b/src/embed/liveboard.spec.ts @@ -275,7 +275,7 @@ describe('Liveboard/viz embed tests', () => { }); }); - test('should disable isWYSIWYGLiveboardPDFEnabled by default in url', async () => { + test('should enable isWYSIWYGLiveboardPDFEnabled by default in url', async () => { const liveboardEmbed = new LiveboardEmbed(getRootEl(), { ...defaultViewConfig, liveboardId, @@ -284,7 +284,7 @@ describe('Liveboard/viz embed tests', () => { await executeAfterWait(() => { expectUrlMatchesWithParams( getIFrameSrc(), - `http://${thoughtSpotHost}/?embedApp=true${defaultParams}&isWYSIWYGLiveboardPDFEnabled=false${prefixParams}#/embed/viz/${liveboardId}`, + `http://${thoughtSpotHost}/?embedApp=true${defaultParams}&isWYSIWYGLiveboardPDFEnabled=true${prefixParams}#/embed/viz/${liveboardId}`, ); }); }); diff --git a/src/embed/liveboard.ts b/src/embed/liveboard.ts index 3bc731cf..eac808c5 100644 --- a/src/embed/liveboard.ts +++ b/src/embed/liveboard.ts @@ -402,11 +402,12 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC /** * Enables the 'what you see is what you get' PDF export for Liveboards. Each tab is rendered on a single page * following the exact UI layout, instead of splitting visualizations across multiple A4 pages. - * This feature is GA from version 26.5.0.cl. It is disabled by default in embed deployments. + * This feature is GA from SDK version 1.50.0 and ThoughtSpot version 26.8.0.cl. * * Supported embed types: `AppEmbed`, `LiveboardEmbed` * @type {boolean} * @version SDK: 1.48.0 | ThoughtSpot: 26.5.0.cl + * @default true * @example * ```js * // Replace with embed component name. For example, AppEmbed or LiveboardEmbed @@ -419,10 +420,12 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC isContinuousLiveboardPDFEnabled?: boolean; /** * This flag is used to enable/disable the XLSX/CSV download option for Liveboards + * This feature is GA from SDK version 1.50.0 and ThoughtSpot version 26.6.0.cl. * * Supported embed types: `AppEmbed`, `LiveboardEmbed` * @type {boolean} * @version SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl + * @default true * @example * ```js * // Replace with embed component name. For example, AppEmbed or LiveboardEmbed @@ -435,10 +438,12 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC isLiveboardXLSXCSVDownloadEnabled?: boolean; /** * This flag is used to enable/disable the granular XLSX/CSV schedules feature + * This feature is GA from SDK version 1.50.0 and ThoughtSpot version 26.6.0.cl. * * Supported embed types: `AppEmbed`, `LiveboardEmbed` * @type {boolean} * @version SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl + * @default true * @example * ```js * // Replace with embed component name. For example, AppEmbed or LiveboardEmbed @@ -679,14 +684,14 @@ export class LiveboardEmbed extends V1Embed { showLiveboardDescription, showLiveboardTitle, isLiveboardHeaderSticky = true, - isLiveboardCompactHeaderEnabled = false, + isLiveboardCompactHeaderEnabled, showLiveboardVerifiedBadge = true, showLiveboardReverifyBanner = true, - hideIrrelevantChipsInLiveboardTabs = false, + hideIrrelevantChipsInLiveboardTabs, showMaskedFilterChip = false, - isLiveboardMasterpiecesEnabled = false, + isLiveboardMasterpiecesEnabled, newChartsLibrary, - isEnhancedFilterInteractivityEnabled = false, + isEnhancedFilterInteractivityEnabled, enableAskSage, enable2ColumnLayout, dataPanelV2 = true, @@ -694,11 +699,11 @@ export class LiveboardEmbed extends V1Embed { oAuthPollingInterval, isForceRedirect, dataSourceId, - coverAndFilterOptionInPDF = false, + coverAndFilterOptionInPDF, isLiveboardStylingAndGroupingEnabled, isPNGInScheduledEmailsEnabled = false, - isLiveboardXLSXCSVDownloadEnabled = false, - isGranularXLSXCSVSchedulesEnabled = false, + isLiveboardXLSXCSVDownloadEnabled, + isGranularXLSXCSVSchedulesEnabled, showSpotterLimitations, isCentralizedLiveboardFilterUXEnabled = false, isLinkParametersEnabled, @@ -706,7 +711,7 @@ export class LiveboardEmbed extends V1Embed { enableStopAnswerGenerationEmbed, spotterChatConfig, isThisPeriodInDateFiltersEnabled, - isContinuousLiveboardPDFEnabled = false, + isContinuousLiveboardPDFEnabled, enableLiveboardDataCache, } = this.viewConfig; @@ -784,13 +789,8 @@ export class LiveboardEmbed extends V1Embed { params[Param.isPNGInScheduledEmailsEnabled] = isPNGInScheduledEmailsEnabled; } - if (isLiveboardXLSXCSVDownloadEnabled !== undefined) { - params[Param.isLiveboardXLSXCSVDownloadEnabled] = isLiveboardXLSXCSVDownloadEnabled; - } - - if (isGranularXLSXCSVSchedulesEnabled !== undefined) { - params[Param.isGranularXLSXCSVSchedulesEnabled] = isGranularXLSXCSVSchedulesEnabled; - } + params[Param.isLiveboardXLSXCSVDownloadEnabled] = isLiveboardXLSXCSVDownloadEnabled ?? true; + params[Param.isGranularXLSXCSVSchedulesEnabled] = isGranularXLSXCSVSchedulesEnabled ?? true; if (showSpotterLimitations !== undefined) { params[Param.ShowSpotterLimitations] = showSpotterLimitations; @@ -833,9 +833,7 @@ export class LiveboardEmbed extends V1Embed { params[Param.IsThisPeriodInDateFiltersEnabled] = isThisPeriodInDateFiltersEnabled; } - if (isContinuousLiveboardPDFEnabled !== undefined) { - params[Param.IsWYSIWYGLiveboardPDFEnabled] = isContinuousLiveboardPDFEnabled; - } + params[Param.IsWYSIWYGLiveboardPDFEnabled] = isContinuousLiveboardPDFEnabled ?? true; if (enableLiveboardDataCache !== undefined) { params[Param.EnableLiveboardDataCache] = enableLiveboardDataCache; @@ -846,16 +844,27 @@ export class LiveboardEmbed extends V1Embed { } params[Param.LiveboardHeaderSticky] = isLiveboardHeaderSticky; - params[Param.LiveboardHeaderV2] = isLiveboardCompactHeaderEnabled; + if (!isUndefined(isLiveboardCompactHeaderEnabled)) { + params[Param.LiveboardHeaderV2] = isLiveboardCompactHeaderEnabled; + } params[Param.ShowLiveboardVerifiedBadge] = showLiveboardVerifiedBadge; params[Param.ShowLiveboardReverifyBanner] = showLiveboardReverifyBanner; - params[Param.HideIrrelevantFiltersInTab] = hideIrrelevantChipsInLiveboardTabs; + if (!isUndefined(hideIrrelevantChipsInLiveboardTabs)) { + params[Param.HideIrrelevantFiltersInTab] = hideIrrelevantChipsInLiveboardTabs; + } params[Param.ShowMaskedFilterChip] = showMaskedFilterChip; - params[Param.IsLiveboardMasterpiecesEnabled] = isLiveboardMasterpiecesEnabled; - params[Param.IsEnhancedFilterInteractivityEnabled] = isEnhancedFilterInteractivityEnabled; + if (!isUndefined(isLiveboardMasterpiecesEnabled)) { + params[Param.IsLiveboardMasterpiecesEnabled] = isLiveboardMasterpiecesEnabled; + } + if (!isUndefined(isEnhancedFilterInteractivityEnabled)) { + params[Param.IsEnhancedFilterInteractivityEnabled] = + isEnhancedFilterInteractivityEnabled; + } params[Param.DataPanelV2Enabled] = dataPanelV2; params[Param.EnableCustomColumnGroups] = enableCustomColumnGroups; - params[Param.CoverAndFilterOptionInPDF] = coverAndFilterOptionInPDF; + if (!isUndefined(coverAndFilterOptionInPDF)) { + params[Param.CoverAndFilterOptionInPDF] = coverAndFilterOptionInPDF; + } const queryParams = getQueryParamString(params, true); diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index aef78bdd..23a69d8f 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 2189, + "id": 2227, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -28,7 +28,7 @@ }, "children": [ { - "id": 2312, + "id": 2350, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -49,14 +49,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7541, + "line": 7760, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2209, + "id": 2247, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -77,14 +77,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6574, + "line": 6793, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 2202, + "id": 2240, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -105,14 +105,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6503, + "line": 6722, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 2201, + "id": 2239, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -129,14 +129,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6492, + "line": 6711, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 2207, + "id": 2245, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -153,14 +153,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6555, + "line": 6774, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 2208, + "id": 2246, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -177,14 +177,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6564, + "line": 6783, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 2210, + "id": 2248, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -205,14 +205,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6584, + "line": 6803, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 2292, + "id": 2330, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -233,14 +233,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7309, + "line": 7528, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 2262, + "id": 2300, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -261,14 +261,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7002, + "line": 7221, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 2308, + "id": 2346, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -289,14 +289,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7494, + "line": 7713, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 2261, + "id": 2299, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -317,14 +317,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6990, + "line": 7209, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2260, + "id": 2298, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -345,14 +345,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6978, + "line": 7197, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2307, + "id": 2345, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -374,14 +374,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7483, + "line": 7702, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 2274, + "id": 2312, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -402,14 +402,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7124, + "line": 7343, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 2286, + "id": 2324, "name": "AxisMenuCompare", "kind": 16, "kindString": "Enumeration member", @@ -430,14 +430,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7255, + "line": 7474, "character": 4 } ], "defaultValue": "\"axisMenuCompare\"" }, { - "id": 2277, + "id": 2315, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -458,14 +458,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7158, + "line": 7377, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 2282, + "id": 2320, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -486,14 +486,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7213, + "line": 7432, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 2276, + "id": 2314, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -514,14 +514,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7147, + "line": 7366, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 2279, + "id": 2317, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -542,14 +542,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7181, + "line": 7400, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 2287, + "id": 2325, "name": "AxisMenuMerge", "kind": 16, "kindString": "Enumeration member", @@ -570,14 +570,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7265, + "line": 7484, "character": 4 } ], "defaultValue": "\"axisMenuMerge\"" }, { - "id": 2283, + "id": 2321, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -598,14 +598,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7223, + "line": 7442, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 2280, + "id": 2318, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -626,14 +626,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7192, + "line": 7411, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 2285, + "id": 2323, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -654,14 +654,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7245, + "line": 7464, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 2281, + "id": 2319, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -682,14 +682,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7202, + "line": 7421, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 2278, + "id": 2316, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -710,14 +710,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7169, + "line": 7388, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 2284, + "id": 2322, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -738,14 +738,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7233, + "line": 7452, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 2275, + "id": 2313, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -766,14 +766,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7135, + "line": 7354, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 2321, + "id": 2359, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -794,14 +794,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7639, + "line": 7858, "character": 4 } ], "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 2206, + "id": 2244, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -818,14 +818,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6546, + "line": 6765, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 2205, + "id": 2243, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -846,14 +846,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6537, + "line": 6756, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 2204, + "id": 2242, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -874,14 +874,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6525, + "line": 6744, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 2329, + "id": 2367, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -902,14 +902,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7727, + "line": 7946, "character": 4 } ], "defaultValue": "\"columnRename\"" }, { - "id": 2203, + "id": 2241, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -926,14 +926,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6514, + "line": 6733, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 2253, + "id": 2291, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -941,14 +941,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6927, + "line": 7146, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 2196, + "id": 2234, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -965,14 +965,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6451, + "line": 6670, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2252, + "id": 2290, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -989,14 +989,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6926, + "line": 7145, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2330, + "id": 2368, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -1017,14 +1017,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7737, + "line": 7956, "character": 4 } ], "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 2344, + "id": 2382, "name": "CreateGroup", "kind": 16, "kindString": "Enumeration member", @@ -1045,14 +1045,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7897, + "line": 8116, "character": 4 } ], "defaultValue": "\"createGroup\"" }, { - "id": 2305, + "id": 2343, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -1073,14 +1073,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7458, + "line": 7677, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 2265, + "id": 2303, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1101,14 +1101,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7032, + "line": 7251, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2270, + "id": 2308, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1129,14 +1129,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7082, + "line": 7301, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 2322, + "id": 2360, "name": "DataModelInstructions", "kind": 16, "kindString": "Enumeration member", @@ -1157,14 +1157,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7651, + "line": 7870, "character": 4 } ], "defaultValue": "\"DataModelInstructions\"" }, { - "id": 2327, + "id": 2365, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1185,14 +1185,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7708, + "line": 7927, "character": 4 } ], "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 2318, + "id": 2356, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1213,14 +1213,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7608, + "line": 7827, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 2320, + "id": 2358, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1241,14 +1241,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7627, + "line": 7846, "character": 4 } ], "defaultValue": "\"disableChipReorder\"" }, { - "id": 2218, + "id": 2256, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1265,14 +1265,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6634, + "line": 6853, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 2221, + "id": 2259, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1289,14 +1289,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6667, + "line": 6886, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2220, + "id": 2258, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1314,14 +1314,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6657, + "line": 6876, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2219, + "id": 2257, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1338,14 +1338,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6644, + "line": 6863, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2222, + "id": 2260, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1362,14 +1362,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6677, + "line": 6896, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2223, + "id": 2261, "name": "DownloadLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -1390,14 +1390,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6687, + "line": 6906, "character": 4 } ], "defaultValue": "\"downloadLiveboard\"" }, { - "id": 2225, + "id": 2263, "name": "DownloadLiveboardAsA4Pdf", "kind": 16, "kindString": "Enumeration member", @@ -1418,14 +1418,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6711, + "line": 6930, "character": 4 } ], "defaultValue": "\"downloadLiveboardAsA4Pdf\"" }, { - "id": 2224, + "id": 2262, "name": "DownloadLiveboardAsContinuousPDF", "kind": 16, "kindString": "Enumeration member", @@ -1446,14 +1446,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6697, + "line": 6916, "character": 4 } ], "defaultValue": "\"downloadLiveboardAsContinuousPDF\"" }, { - "id": 2227, + "id": 2265, "name": "DownloadLiveboardAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1474,14 +1474,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6731, + "line": 6950, "character": 4 } ], "defaultValue": "\"downloadLiveboardAsCsv\"" }, { - "id": 2226, + "id": 2264, "name": "DownloadLiveboardAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1502,14 +1502,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6721, + "line": 6940, "character": 4 } ], "defaultValue": "\"downloadLiveboardAsXlsx\"" }, { - "id": 2257, + "id": 2295, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1526,14 +1526,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6943, + "line": 7162, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 2251, + "id": 2289, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1550,14 +1550,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6916, + "line": 7135, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 2250, + "id": 2288, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1574,14 +1574,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6907, + "line": 7126, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 2235, + "id": 2273, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1598,14 +1598,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6807, + "line": 7026, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2195, + "id": 2233, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1622,14 +1622,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6442, + "line": 6661, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 2264, + "id": 2302, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1650,14 +1650,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7021, + "line": 7240, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 2255, + "id": 2293, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1665,14 +1665,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6932, + "line": 7151, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 2326, + "id": 2364, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1693,14 +1693,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7697, + "line": 7916, "character": 4 } ], "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 2296, + "id": 2334, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1721,14 +1721,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7353, + "line": 7572, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 2313, + "id": 2351, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1749,14 +1749,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7554, + "line": 7773, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 2232, + "id": 2270, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1773,14 +1773,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6775, + "line": 6994, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2236, + "id": 2274, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1797,14 +1797,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6815, + "line": 7034, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 2328, + "id": 2366, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1825,14 +1825,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7718, + "line": 7937, "character": 4 } ], "defaultValue": "\"editTokens\"" }, { - "id": 2293, + "id": 2331, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1853,14 +1853,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7319, + "line": 7538, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 2294, + "id": 2332, "name": "EnableIterativeChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1881,14 +1881,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7330, + "line": 7549, "character": 4 } ], "defaultValue": "\"enableIterativeChangeAnalysis\"" }, { - "id": 2249, + "id": 2287, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1905,14 +1905,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6896, + "line": 7115, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2229, + "id": 2267, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1930,14 +1930,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6747, + "line": 6966, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2230, + "id": 2268, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1954,14 +1954,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6757, + "line": 6976, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 2331, + "id": 2369, "name": "InConversationTraining", "kind": 16, "kindString": "Enumeration member", @@ -1982,14 +1982,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7752, + "line": 7971, "character": 4 } ], "defaultValue": "\"InConversationTraining\"" }, { - "id": 2358, + "id": 2405, "name": "IncludeCurrentPeriod", "kind": 16, "kindString": "Enumeration member", @@ -2010,14 +2010,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8042, + "line": 8354, "character": 4 } ], "defaultValue": "\"includeCurrentPeriod\"" }, { - "id": 2319, + "id": 2357, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -2038,14 +2038,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7618, + "line": 7837, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 2243, + "id": 2281, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -2062,14 +2062,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6857, + "line": 7076, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2337, + "id": 2375, "name": "LiveboardStylePanel", "kind": 16, "kindString": "Enumeration member", @@ -2090,14 +2090,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7818, + "line": 8037, "character": 4 } ], "defaultValue": "\"liveboardStylePanel\"" }, { - "id": 2303, + "id": 2341, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -2118,14 +2118,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7426, + "line": 7645, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 2194, + "id": 2232, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -2142,14 +2142,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6433, + "line": 6652, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2300, + "id": 2338, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -2166,14 +2166,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7394, + "line": 7613, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2269, + "id": 2307, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -2194,14 +2194,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7072, + "line": 7291, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2339, + "id": 2377, "name": "ManagePublishing", "kind": 16, "kindString": "Enumeration member", @@ -2222,14 +2222,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7844, + "line": 8063, "character": 4 } ], "defaultValue": "\"managePublishing\"" }, { - "id": 2317, + "id": 2355, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -2250,14 +2250,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7597, + "line": 7816, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 2291, + "id": 2329, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -2278,14 +2278,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7299, + "line": 7518, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 2298, + "id": 2336, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -2305,14 +2305,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7374, + "line": 7593, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 2343, + "id": 2381, "name": "MoveOutOfGroup", "kind": 16, "kindString": "Enumeration member", @@ -2333,14 +2333,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7887, + "line": 8106, "character": 4 } ], "defaultValue": "\"moveOutOfGroup\"" }, { - "id": 2342, + "id": 2380, "name": "MoveToGroup", "kind": 16, "kindString": "Enumeration member", @@ -2361,14 +2361,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7877, + "line": 8096, "character": 4 } ], "defaultValue": "\"moveToGroup\"" }, { - "id": 2299, + "id": 2337, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -2385,14 +2385,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7383, + "line": 7602, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 2310, + "id": 2348, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -2417,14 +2417,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7518, + "line": 7737, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 2311, + "id": 2349, "name": "OrganizeFavorites", "kind": 16, "kindString": "Enumeration member", @@ -2445,14 +2445,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7530, + "line": 7749, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 2341, + "id": 2379, "name": "Parameterize", "kind": 16, "kindString": "Enumeration member", @@ -2473,14 +2473,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7867, + "line": 8086, "character": 4 } ], "defaultValue": "\"parameterise\"" }, { - "id": 2314, + "id": 2352, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2501,14 +2501,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7565, + "line": 7784, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 2301, + "id": 2339, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2533,14 +2533,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7406, + "line": 7625, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 2302, + "id": 2340, "name": "PersonalizedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2561,14 +2561,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7416, + "line": 7635, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 2246, + "id": 2284, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2585,14 +2585,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6874, + "line": 7093, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2335, + "id": 2373, "name": "PngScreenshotInEmail", "kind": 16, "kindString": "Enumeration member", @@ -2609,14 +2609,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7796, + "line": 8015, "character": 4 } ], "defaultValue": "\"pngScreenshotInEmail\"" }, { - "id": 2233, + "id": 2271, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2633,14 +2633,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6785, + "line": 7004, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2323, + "id": 2361, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2661,14 +2661,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7663, + "line": 7882, "character": 4 } ], "defaultValue": "\"previewDataSpotter\"" }, { - "id": 2338, + "id": 2376, "name": "Publish", "kind": 16, "kindString": "Enumeration member", @@ -2689,14 +2689,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7831, + "line": 8050, "character": 4 } ], "defaultValue": "\"publish\"" }, { - "id": 2259, + "id": 2297, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2714,14 +2714,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6968, + "line": 7187, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 2364, + "id": 2411, "name": "RefreshLiveboardBrowserCache", "kind": 16, "kindString": "Enumeration member", @@ -2742,14 +2742,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8115, + "line": 8427, "character": 4 } ], "defaultValue": "\"refreshLiveboardBrowserCache\"" }, { - "id": 2237, + "id": 2275, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2766,14 +2766,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6825, + "line": 7044, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2336, + "id": 2374, "name": "RemoveAttachment", "kind": 16, "kindString": "Enumeration member", @@ -2794,14 +2794,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7808, + "line": 8027, "character": 4 } ], "defaultValue": "\"removeAttachment\"" }, { - "id": 2273, + "id": 2311, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2822,14 +2822,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7113, + "line": 7332, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 2263, + "id": 2301, "name": "RemoveFromFavorites", "kind": 16, "kindString": "Enumeration member", @@ -2850,14 +2850,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7012, + "line": 7231, "character": 4 } ], "defaultValue": "\"removeFromFavorites\"" }, { - "id": 2309, + "id": 2347, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2878,14 +2878,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7505, + "line": 7724, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 2289, + "id": 2327, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2906,14 +2906,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7279, + "line": 7498, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 2266, + "id": 2304, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2937,14 +2937,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7041, + "line": 7260, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 2258, + "id": 2296, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2961,14 +2961,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6952, + "line": 7171, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 2290, + "id": 2328, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2989,14 +2989,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7289, + "line": 7508, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 2324, + "id": 2362, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -3017,14 +3017,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7675, + "line": 7894, "character": 4 } ], "defaultValue": "\"resetSpotterChat\"" }, { - "id": 2297, + "id": 2335, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -3045,14 +3045,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7365, + "line": 7584, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 2190, + "id": 2228, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -3069,14 +3069,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6402, + "line": 6621, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2193, + "id": 2231, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -3093,14 +3093,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6420, + "line": 6639, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 2198, + "id": 2236, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -3117,14 +3117,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6465, + "line": 6684, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2199, + "id": 2237, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -3141,14 +3141,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6474, + "line": 6693, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2359, + "id": 2406, "name": "SendTestScheduleEmail", "kind": 16, "kindString": "Enumeration member", @@ -3169,14 +3169,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8054, + "line": 8366, "character": 4 } ], "defaultValue": "\"sendTestScheduleEmail\"" }, { - "id": 2256, + "id": 2294, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -3184,14 +3184,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6933, + "line": 7152, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 2200, + "id": 2238, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -3208,14 +3208,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6483, + "line": 6702, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2215, + "id": 2253, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -3226,14 +3226,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6609, + "line": 6828, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 2295, + "id": 2333, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -3254,14 +3254,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7340, + "line": 7559, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 2217, + "id": 2255, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -3278,14 +3278,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6624, + "line": 6843, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2212, + "id": 2250, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -3302,14 +3302,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6597, + "line": 6816, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2367, + "id": 2414, "name": "SpotterAnalystCreate", "kind": 16, "kindString": "Enumeration member", @@ -3330,14 +3330,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8148, + "line": 8460, "character": 4 } ], "defaultValue": "\"spotterAnalystCreate\"" }, { - "id": 2368, + "id": 2415, "name": "SpotterAnalystDelete", "kind": 16, "kindString": "Enumeration member", @@ -3358,14 +3358,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8159, + "line": 8471, "character": 4 } ], "defaultValue": "\"spotterAnalystDelete\"" }, { - "id": 2366, + "id": 2413, "name": "SpotterAnalystEdit", "kind": 16, "kindString": "Enumeration member", @@ -3386,14 +3386,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8137, + "line": 8449, "character": 4 } ], "defaultValue": "\"spotterAnalystEdit\"" }, { - "id": 2369, + "id": 2416, "name": "SpotterAnalystMakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -3414,14 +3414,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8170, + "line": 8482, "character": 4 } ], "defaultValue": "\"spotterAnalystMakeACopy\"" }, { - "id": 2365, + "id": 2412, "name": "SpotterAnalystShare", "kind": 16, "kindString": "Enumeration member", @@ -3442,14 +3442,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8126, + "line": 8438, "character": 4 } ], "defaultValue": "\"spotterAnalystShare\"" }, { - "id": 2370, + "id": 2417, "name": "SpotterAnalystSidebar", "kind": 16, "kindString": "Enumeration member", @@ -3470,14 +3470,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8181, + "line": 8493, "character": 4 } ], "defaultValue": "\"spotterAnalystSidebar\"" }, { - "id": 2355, + "id": 2402, "name": "SpotterChatConnectorResources", "kind": 16, "kindString": "Enumeration member", @@ -3498,14 +3498,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8008, + "line": 8320, "character": 4 } ], "defaultValue": "\"spotterChatConnectorResources\"" }, { - "id": 2356, + "id": 2403, "name": "SpotterChatConnectors", "kind": 16, "kindString": "Enumeration member", @@ -3526,14 +3526,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8019, + "line": 8331, "character": 4 } ], "defaultValue": "\"spotterChatConnectors\"" }, { - "id": 2353, + "id": 2399, "name": "SpotterChatDelete", "kind": 16, "kindString": "Enumeration member", @@ -3554,14 +3554,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7987, + "line": 8289, "character": 4 } ], "defaultValue": "\"spotterChatDelete\"" }, { - "id": 2351, + "id": 2389, "name": "SpotterChatMenu", "kind": 16, "kindString": "Enumeration member", @@ -3582,14 +3582,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7967, + "line": 8186, "character": 4 } ], "defaultValue": "\"spotterChatMenu\"" }, { - "id": 2357, + "id": 2404, "name": "SpotterChatModeSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -3610,14 +3610,42 @@ "sources": [ { "fileName": "types.ts", - "line": 8030, + "line": 8342, "character": 4 } ], "defaultValue": "\"spotterChatModeSwitcher\"" }, { - "id": 2352, + "id": 2400, + "name": "SpotterChatPin", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Controls visibility and disable state of the pin/unpin action\nin the Spotter conversation edit menu.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.10.0.cl" + }, + { + "tag": "example", + "text": "\n```js\ndisabledActions: [Action.SpotterChatPin]\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 8299, + "character": 4 + } + ], + "defaultValue": "\"spotterChatPin\"" + }, + { + "id": 2390, "name": "SpotterChatRename", "kind": 16, "kindString": "Enumeration member", @@ -3638,14 +3666,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7977, + "line": 8196, "character": 4 } ], "defaultValue": "\"spotterChatRename\"" }, { - "id": 2354, + "id": 2401, "name": "SpotterDocs", "kind": 16, "kindString": "Enumeration member", @@ -3666,14 +3694,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7997, + "line": 8309, "character": 4 } ], "defaultValue": "\"spotterDocs\"" }, { - "id": 2325, + "id": 2363, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -3694,14 +3722,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7686, + "line": 7905, "character": 4 } ], "defaultValue": "\"spotterFeedback\"" }, { - "id": 2349, + "id": 2387, "name": "SpotterNewChat", "kind": 16, "kindString": "Enumeration member", @@ -3722,14 +3750,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7947, + "line": 8166, "character": 4 } ], "defaultValue": "\"spotterNewChat\"" }, { - "id": 2350, + "id": 2388, "name": "SpotterPastChatBanner", "kind": 16, "kindString": "Enumeration member", @@ -3750,14 +3778,238 @@ "sources": [ { "fileName": "types.ts", - "line": 7957, + "line": 8176, "character": 4 } ], "defaultValue": "\"spotterPastChatBanner\"" }, { - "id": 2347, + "id": 2391, + "name": "SpotterShareConversationButtonHeader", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Controls visibility and disable state of the Spotter conversation Share\nbutton in the chat header. Only takes effect once sharing is enabled\n(enableShareConversation on).", + "tags": [ + { + "tag": "example", + "text": "\n```js\ndisabledActions: [Action.SpotterShareConversationButtonHeader]\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 8207, + "character": 4 + } + ], + "defaultValue": "\"spotterShareConversationButtonHeader\"" + }, + { + "id": 2392, + "name": "SpotterShareConversationMenuItemSidebar", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Controls visibility and disable state of the Share item in the Spotter\nconversation history (sidebar) edit menu. Independent of the header button\nabove, so a host can show Share in one entry point and hide it in the other.", + "tags": [ + { + "tag": "example", + "text": "\n```js\ndisabledActions: [Action.SpotterShareConversationMenuItemSidebar]\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 8218, + "character": 4 + } + ], + "defaultValue": "\"spotterShareConversationMenuItemSidebar\"" + }, + { + "id": 2397, + "name": "SpotterShareIncludeNewMessagesCheckbox", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Controls visibility and disable state of the share-modal \"include new\nmessages since last shared version\" checkbox.", + "tags": [ + { + "tag": "example", + "text": "\n```js\ndisabledActions: [Action.SpotterShareIncludeNewMessagesCheckbox]\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 8269, + "character": 4 + } + ], + "defaultValue": "\"spotterShareIncludeNewMessagesCheckbox\"" + }, + { + "id": 2398, + "name": "SpotterShareStaleInfoBannerDismissButton", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Controls visibility and disable state of the cross on the share-modal\nstale-snapshot info banner.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nhiddenActions: [Action.SpotterShareStaleInfoBannerDismissButton]\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 8279, + "character": 4 + } + ], + "defaultValue": "\"spotterShareStaleInfoBannerDismissButton\"" + }, + { + "id": 2396, + "name": "SpotterShareUpToCurrentInfo", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Controls visibility of the share-modal footer note (\"Chat will be shared up\nto the current moment…\"). Hide-only.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nhiddenActions: [Action.SpotterShareUpToCurrentInfo]\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 8259, + "character": 4 + } + ], + "defaultValue": "\"spotterShareUpToCurrentInfo\"" + }, + { + "id": 2393, + "name": "SpotterSharedConversationBanner", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Controls visibility of the entire read-only shared-conversation data-access\nbanner shown when a recipient opens a shared view. Hide-only.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nhiddenActions: [Action.SpotterSharedConversationBanner]\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 8228, + "character": 4 + } + ], + "defaultValue": "\"spotterSharedConversationBanner\"" + }, + { + "id": 2394, + "name": "SpotterSharedConversationBannerDismissButton", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Controls visibility and disable state of the cross/close button on the\nread-only shared-conversation data-access banner (keeps the banner itself).", + "tags": [ + { + "tag": "example", + "text": "\n```js\nhiddenActions: [Action.SpotterSharedConversationBannerDismissButton]\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 8238, + "character": 4 + } + ], + "defaultValue": "\"spotterSharedConversationBannerDismissButton\"" + }, + { + "id": 2395, + "name": "SpotterSharedConversationExitButton", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Controls visibility and disable state of the Exit button in the read-only\nshared-view header. Hiding it does not disable the ExitSpotterSharedConversation\nhost event.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nhiddenActions: [Action.SpotterSharedConversationExitButton]\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 8249, + "character": 4 + } + ], + "defaultValue": "\"spotterSharedConversationExitButton\"" + }, + { + "id": 2385, "name": "SpotterSidebarFooter", "kind": 16, "kindString": "Enumeration member", @@ -3778,14 +4030,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7927, + "line": 8146, "character": 4 } ], "defaultValue": "\"spotterSidebarFooter\"" }, { - "id": 2346, + "id": 2384, "name": "SpotterSidebarHeader", "kind": 16, "kindString": "Enumeration member", @@ -3806,14 +4058,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7917, + "line": 8136, "character": 4 } ], "defaultValue": "\"spotterSidebarHeader\"" }, { - "id": 2348, + "id": 2386, "name": "SpotterSidebarToggle", "kind": 16, "kindString": "Enumeration member", @@ -3834,14 +4086,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7937, + "line": 8156, "character": 4 } ], "defaultValue": "\"spotterSidebarToggle\"" }, { - "id": 2334, + "id": 2372, "name": "SpotterTokenQuickEdit", "kind": 16, "kindString": "Enumeration member", @@ -3862,14 +4114,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7785, + "line": 8004, "character": 4 } ], "defaultValue": "\"SpotterTokenQuickEdit\"" }, { - "id": 2362, + "id": 2409, "name": "SpotterViz", "kind": 16, "kindString": "Enumeration member", @@ -3890,14 +4142,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8090, + "line": 8402, "character": 4 } ], "defaultValue": "\"spotterViz\"" }, { - "id": 2361, + "id": 2408, "name": "SpotterVizCheckpointRestore", "kind": 16, "kindString": "Enumeration member", @@ -3918,14 +4170,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8078, + "line": 8390, "character": 4 } ], "defaultValue": "\"spotterVizCheckpointRestore\"" }, { - "id": 2360, + "id": 2407, "name": "SpotterVizFeedback", "kind": 16, "kindString": "Enumeration member", @@ -3946,14 +4198,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8066, + "line": 8378, "character": 4 } ], "defaultValue": "\"spotterVizFeedback\"" }, { - "id": 2363, + "id": 2410, "name": "SpotterVizReferenceMode", "kind": 16, "kindString": "Enumeration member", @@ -3974,14 +4226,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8104, + "line": 8416, "character": 4 } ], "defaultValue": "\"spotterVizReferenceMode\"" }, { - "id": 2332, + "id": 2370, "name": "SpotterWarningsBanner", "kind": 16, "kindString": "Enumeration member", @@ -4002,14 +4254,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7763, + "line": 7982, "character": 4 } ], "defaultValue": "\"SpotterWarningsBanner\"" }, { - "id": 2333, + "id": 2371, "name": "SpotterWarningsOnTokens", "kind": 16, "kindString": "Enumeration member", @@ -4030,14 +4282,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7774, + "line": 7993, "character": 4 } ], "defaultValue": "\"SpotterWarningsOnTokens\"" }, { - "id": 2248, + "id": 2286, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -4054,14 +4306,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6888, + "line": 7107, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2268, + "id": 2306, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -4082,14 +4334,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7062, + "line": 7281, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2267, + "id": 2305, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -4110,14 +4362,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7051, + "line": 7270, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2271, + "id": 2309, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -4138,14 +4390,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7092, + "line": 7311, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 2272, + "id": 2310, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -4166,14 +4418,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7102, + "line": 7321, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 2304, + "id": 2342, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -4198,14 +4450,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7445, + "line": 7664, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 2234, + "id": 2272, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -4222,14 +4474,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6797, + "line": 7016, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 2345, + "id": 2383, "name": "UngroupLiveboardGroup", "kind": 16, "kindString": "Enumeration member", @@ -4250,14 +4502,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7907, + "line": 8126, "character": 4 } ], "defaultValue": "\"ungroupLiveboardGroup\"" }, { - "id": 2340, + "id": 2378, "name": "Unpublish", "kind": 16, "kindString": "Enumeration member", @@ -4278,14 +4530,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7856, + "line": 8075, "character": 4 } ], "defaultValue": "\"unpublish\"" }, { - "id": 2316, + "id": 2354, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -4306,14 +4558,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7587, + "line": 7806, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 2231, + "id": 2269, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -4330,14 +4582,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6766, + "line": 6985, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2306, + "id": 2344, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -4358,14 +4610,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7469, + "line": 7688, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 2315, + "id": 2353, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -4386,7 +4638,7 @@ "sources": [ { "fileName": "types.ts", - "line": 7576, + "line": 7795, "character": 4 } ], @@ -4398,182 +4650,191 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2350, + 2247, + 2240, + 2239, + 2245, + 2246, + 2248, + 2330, + 2300, + 2346, + 2299, + 2298, + 2345, 2312, - 2209, - 2202, - 2201, - 2207, - 2208, - 2210, - 2292, - 2262, - 2308, - 2261, - 2260, - 2307, - 2274, - 2286, - 2277, - 2282, - 2276, - 2279, - 2287, - 2283, - 2280, - 2285, - 2281, - 2278, - 2284, - 2275, + 2324, + 2315, + 2320, + 2314, + 2317, + 2325, 2321, - 2206, - 2205, - 2204, - 2329, - 2203, - 2253, - 2196, - 2252, - 2330, - 2344, - 2305, - 2265, - 2270, - 2322, - 2327, 2318, - 2320, - 2218, - 2221, - 2220, - 2219, - 2222, - 2223, - 2225, - 2224, - 2227, - 2226, - 2257, - 2251, - 2250, - 2235, - 2195, - 2264, - 2255, - 2326, - 2296, - 2313, - 2232, - 2236, - 2328, - 2293, - 2294, - 2249, - 2229, - 2230, - 2331, - 2358, + 2323, 2319, + 2316, + 2322, + 2313, + 2359, + 2244, 2243, - 2337, - 2303, - 2194, - 2300, - 2269, - 2339, - 2317, + 2242, + 2367, + 2241, 2291, - 2298, + 2234, + 2290, + 2368, + 2382, 2343, - 2342, - 2299, - 2310, - 2311, - 2341, - 2314, - 2301, - 2302, - 2246, - 2335, - 2233, - 2323, - 2338, + 2303, + 2308, + 2360, + 2365, + 2356, + 2358, + 2256, 2259, - 2364, - 2237, - 2336, - 2273, - 2263, - 2309, - 2289, - 2266, 2258, - 2290, - 2324, - 2297, - 2190, - 2193, - 2198, - 2199, - 2359, - 2256, - 2200, - 2215, + 2257, + 2260, + 2261, + 2263, + 2262, + 2265, + 2264, 2295, - 2217, - 2212, - 2367, - 2368, + 2289, + 2288, + 2273, + 2233, + 2302, + 2293, + 2364, + 2334, + 2351, + 2270, + 2274, 2366, + 2331, + 2332, + 2287, + 2267, + 2268, 2369, - 2365, - 2370, - 2355, - 2356, - 2353, - 2351, + 2405, 2357, - 2352, - 2354, - 2325, - 2349, - 2350, - 2347, - 2346, + 2281, + 2375, + 2341, + 2232, + 2338, + 2307, + 2377, + 2355, + 2329, + 2336, + 2381, + 2380, + 2337, 2348, - 2334, - 2362, - 2361, - 2360, - 2363, - 2332, - 2333, - 2248, - 2268, - 2267, + 2349, + 2379, + 2352, + 2339, + 2340, + 2284, + 2373, 2271, - 2272, + 2361, + 2376, + 2297, + 2411, + 2275, + 2374, + 2311, + 2301, + 2347, + 2327, 2304, - 2234, - 2345, - 2340, - 2316, + 2296, + 2328, + 2362, + 2335, + 2228, 2231, + 2236, + 2237, + 2406, + 2294, + 2238, + 2253, + 2333, + 2255, + 2250, + 2414, + 2415, + 2413, + 2416, + 2412, + 2417, + 2402, + 2403, + 2399, + 2389, + 2404, + 2400, + 2390, + 2401, + 2363, + 2387, + 2388, + 2391, + 2392, + 2397, + 2398, + 2396, + 2393, + 2394, + 2395, + 2385, + 2384, + 2386, + 2372, + 2409, + 2408, + 2407, + 2410, + 2370, + 2371, + 2286, 2306, - 2315 + 2305, + 2309, + 2310, + 2342, + 2272, + 2383, + 2378, + 2354, + 2269, + 2344, + 2353 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6393, + "line": 6612, "character": 12 } ] }, { - "id": 1792, + "id": 1813, "name": "AuthEvent", "kind": 4, "kindString": "Enumeration", @@ -4589,7 +4850,7 @@ }, "children": [ { - "id": 1793, + "id": 1814, "name": "TRIGGER_SSO_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -4612,7 +4873,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1793 + 1814 ] } ], @@ -4625,7 +4886,7 @@ ] }, { - "id": 1777, + "id": 1798, "name": "AuthFailureType", "kind": 4, "kindString": "Enumeration", @@ -4641,7 +4902,7 @@ }, "children": [ { - "id": 1780, + "id": 1801, "name": "EXPIRY", "kind": 16, "kindString": "Enumeration member", @@ -4660,7 +4921,7 @@ "defaultValue": "\"EXPIRY\"" }, { - "id": 1782, + "id": 1803, "name": "IDLE_SESSION_TIMEOUT", "kind": 16, "kindString": "Enumeration member", @@ -4679,7 +4940,7 @@ "defaultValue": "\"IDLE_SESSION_TIMEOUT\"" }, { - "id": 1779, + "id": 1800, "name": "NO_COOKIE_ACCESS", "kind": 16, "kindString": "Enumeration member", @@ -4698,7 +4959,7 @@ "defaultValue": "\"NO_COOKIE_ACCESS\"" }, { - "id": 1781, + "id": 1802, "name": "OTHER", "kind": 16, "kindString": "Enumeration member", @@ -4717,7 +4978,7 @@ "defaultValue": "\"OTHER\"" }, { - "id": 1778, + "id": 1799, "name": "SDK", "kind": 16, "kindString": "Enumeration member", @@ -4736,7 +4997,7 @@ "defaultValue": "\"SDK\"" }, { - "id": 1783, + "id": 1804, "name": "UNAUTHENTICATED_FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -4760,12 +5021,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1780, - 1782, - 1779, - 1781, - 1778, - 1783 + 1801, + 1803, + 1800, + 1802, + 1799, + 1804 ] } ], @@ -4778,7 +5039,7 @@ ] }, { - "id": 1784, + "id": 1805, "name": "AuthStatus", "kind": 4, "kindString": "Enumeration", @@ -4794,7 +5055,7 @@ }, "children": [ { - "id": 1785, + "id": 1806, "name": "FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -4812,7 +5073,7 @@ "defaultValue": "\"FAILURE\"" }, { - "id": 1789, + "id": 1810, "name": "LOGOUT", "kind": 16, "kindString": "Enumeration member", @@ -4830,7 +5091,7 @@ "defaultValue": "\"LOGOUT\"" }, { - "id": 1791, + "id": 1812, "name": "SAML_POPUP_CLOSED_NO_AUTH", "kind": 16, "kindString": "Enumeration member", @@ -4848,7 +5109,7 @@ "defaultValue": "\"SAML_POPUP_CLOSED_NO_AUTH\"" }, { - "id": 1786, + "id": 1807, "name": "SDK_SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -4872,7 +5133,7 @@ "defaultValue": "\"SDK_SUCCESS\"" }, { - "id": 1788, + "id": 1809, "name": "SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -4905,7 +5166,7 @@ "defaultValue": "\"SUCCESS\"" }, { - "id": 1790, + "id": 1811, "name": "WAITING_FOR_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -4934,12 +5195,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1785, - 1789, - 1791, - 1786, - 1788, - 1790 + 1806, + 1810, + 1812, + 1807, + 1809, + 1811 ] } ], @@ -4952,7 +5213,7 @@ ] }, { - "id": 1944, + "id": 1965, "name": "AuthType", "kind": 4, "kindString": "Enumeration", @@ -4968,7 +5229,7 @@ }, "children": [ { - "id": 1955, + "id": 1976, "name": "Basic", "kind": 16, "kindString": "Enumeration member", @@ -4987,7 +5248,7 @@ "defaultValue": "\"Basic\"" }, { - "id": 1946, + "id": 1967, "name": "EmbeddedSSO", "kind": 16, "kindString": "Enumeration member", @@ -5016,7 +5277,7 @@ "defaultValue": "\"EmbeddedSSO\"" }, { - "id": 1945, + "id": 1966, "name": "None", "kind": 16, "kindString": "Enumeration member", @@ -5040,7 +5301,7 @@ "defaultValue": "\"None\"" }, { - "id": 1951, + "id": 1972, "name": "OIDCRedirect", "kind": 16, "kindString": "Enumeration member", @@ -5058,7 +5319,7 @@ "defaultValue": "\"SSO_OIDC\"" }, { - "id": 1949, + "id": 1970, "name": "SAMLRedirect", "kind": 16, "kindString": "Enumeration member", @@ -5091,7 +5352,7 @@ "defaultValue": "\"SSO_SAML\"" }, { - "id": 1953, + "id": 1974, "name": "TrustedAuthToken", "kind": 16, "kindString": "Enumeration member", @@ -5115,7 +5376,7 @@ "defaultValue": "\"AuthServer\"" }, { - "id": 1954, + "id": 1975, "name": "TrustedAuthTokenCookieless", "kind": 16, "kindString": "Enumeration member", @@ -5148,13 +5409,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1955, - 1946, - 1945, - 1951, - 1949, - 1953, - 1954 + 1976, + 1967, + 1966, + 1972, + 1970, + 1974, + 1975 ] } ], @@ -5167,7 +5428,7 @@ ] }, { - "id": 3217, + "id": 3265, "name": "BackgroundFormatType", "kind": 4, "kindString": "Enumeration", @@ -5183,7 +5444,7 @@ }, "children": [ { - "id": 3219, + "id": 3267, "name": "Gradient", "kind": 16, "kindString": "Enumeration member", @@ -5194,14 +5455,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8886, + "line": 9198, "character": 4 } ], "defaultValue": "\"GRADIENT\"" }, { - "id": 3218, + "id": 3266, "name": "Solid", "kind": 16, "kindString": "Enumeration member", @@ -5212,7 +5473,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8884, + "line": 9196, "character": 4 } ], @@ -5224,21 +5485,21 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3219, - 3218 + 3267, + 3266 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8882, + "line": 9194, "character": 12 } ] }, { - "id": 3220, + "id": 3268, "name": "ConditionalFormattingComparisonType", "kind": 4, "kindString": "Enumeration", @@ -5254,7 +5515,7 @@ }, "children": [ { - "id": 3222, + "id": 3270, "name": "ColumnBased", "kind": 16, "kindString": "Enumeration member", @@ -5265,14 +5526,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8897, + "line": 9209, "character": 4 } ], "defaultValue": "\"COLUMN_BASED\"" }, { - "id": 3223, + "id": 3271, "name": "ParameterBased", "kind": 16, "kindString": "Enumeration member", @@ -5283,14 +5544,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8899, + "line": 9211, "character": 4 } ], "defaultValue": "\"PARAMETER_BASED\"" }, { - "id": 3221, + "id": 3269, "name": "ValueBased", "kind": 16, "kindString": "Enumeration member", @@ -5301,7 +5562,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8895, + "line": 9207, "character": 4 } ], @@ -5313,22 +5574,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3222, - 3223, - 3221 + 3270, + 3271, + 3269 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8893, + "line": 9205, "character": 12 } ] }, { - "id": 3224, + "id": 3272, "name": "ConditionalFormattingOperator", "kind": 4, "kindString": "Enumeration", @@ -5344,7 +5605,7 @@ }, "children": [ { - "id": 3227, + "id": 3275, "name": "Contains", "kind": 16, "kindString": "Enumeration member", @@ -5355,14 +5616,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8851, + "line": 9163, "character": 4 } ], "defaultValue": "\"CONTAINS\"" }, { - "id": 3228, + "id": 3276, "name": "DoesNotContain", "kind": 16, "kindString": "Enumeration member", @@ -5373,14 +5634,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8853, + "line": 9165, "character": 4 } ], "defaultValue": "\"DOES_NOT_CONTAIN\"" }, { - "id": 3230, + "id": 3278, "name": "EndsWith", "kind": 16, "kindString": "Enumeration member", @@ -5391,14 +5652,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8857, + "line": 9169, "character": 4 } ], "defaultValue": "\"ENDS_WITH\"" }, { - "id": 3235, + "id": 3283, "name": "EqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5409,14 +5670,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8867, + "line": 9179, "character": 4 } ], "defaultValue": "\"EQUAL_TO\"" }, { - "id": 3231, + "id": 3279, "name": "GreaterThan", "kind": 16, "kindString": "Enumeration member", @@ -5427,14 +5688,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8859, + "line": 9171, "character": 4 } ], "defaultValue": "\"GREATER_THAN\"" }, { - "id": 3233, + "id": 3281, "name": "GreaterThanEqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5445,14 +5706,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8863, + "line": 9175, "character": 4 } ], "defaultValue": "\"GREATER_THAN_EQUAL_TO\"" }, { - "id": 3225, + "id": 3273, "name": "Is", "kind": 16, "kindString": "Enumeration member", @@ -5463,14 +5724,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8847, + "line": 9159, "character": 4 } ], "defaultValue": "\"IS\"" }, { - "id": 3237, + "id": 3285, "name": "IsBetween", "kind": 16, "kindString": "Enumeration member", @@ -5481,14 +5742,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8871, + "line": 9183, "character": 4 } ], "defaultValue": "\"IS_BETWEEN\"" }, { - "id": 3226, + "id": 3274, "name": "IsNot", "kind": 16, "kindString": "Enumeration member", @@ -5499,14 +5760,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8849, + "line": 9161, "character": 4 } ], "defaultValue": "\"IS_NOT\"" }, { - "id": 3239, + "id": 3287, "name": "IsNotNull", "kind": 16, "kindString": "Enumeration member", @@ -5517,14 +5778,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8875, + "line": 9187, "character": 4 } ], "defaultValue": "\"IS_NOT_NULL\"" }, { - "id": 3238, + "id": 3286, "name": "IsNull", "kind": 16, "kindString": "Enumeration member", @@ -5535,14 +5796,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8873, + "line": 9185, "character": 4 } ], "defaultValue": "\"IS_NULL\"" }, { - "id": 3232, + "id": 3280, "name": "LessThan", "kind": 16, "kindString": "Enumeration member", @@ -5553,14 +5814,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8861, + "line": 9173, "character": 4 } ], "defaultValue": "\"LESS_THAN\"" }, { - "id": 3234, + "id": 3282, "name": "LessThanEqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5571,14 +5832,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8865, + "line": 9177, "character": 4 } ], "defaultValue": "\"LESS_THAN_EQUAL_TO\"" }, { - "id": 3236, + "id": 3284, "name": "NotEqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5589,14 +5850,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8869, + "line": 9181, "character": 4 } ], "defaultValue": "\"NOT_EQUAL_TO\"" }, { - "id": 3229, + "id": 3277, "name": "StartsWith", "kind": 16, "kindString": "Enumeration member", @@ -5607,7 +5868,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8855, + "line": 9167, "character": 4 } ], @@ -5619,34 +5880,34 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3227, - 3228, - 3230, - 3235, - 3231, - 3233, - 3225, - 3237, - 3226, - 3239, - 3238, - 3232, - 3234, - 3236, - 3229 + 3275, + 3276, + 3278, + 3283, + 3279, + 3281, + 3273, + 3285, + 3274, + 3287, + 3286, + 3280, + 3282, + 3284, + 3277 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8845, + "line": 9157, "character": 12 } ] }, { - "id": 2371, + "id": 2418, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -5656,7 +5917,7 @@ }, "children": [ { - "id": 2374, + "id": 2421, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -5664,14 +5925,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8201, + "line": 8513, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 2372, + "id": 2419, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -5679,14 +5940,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8199, + "line": 8511, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 2373, + "id": 2420, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -5694,7 +5955,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8200, + "line": 8512, "character": 4 } ], @@ -5706,22 +5967,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2374, - 2372, - 2373 + 2421, + 2419, + 2420 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8198, + "line": 8510, "character": 12 } ] }, { - "id": 2179, + "id": 2217, "name": "ContextType", "kind": 4, "kindString": "Enumeration", @@ -5745,7 +6006,7 @@ }, "children": [ { - "id": 2182, + "id": 2220, "name": "Answer", "kind": 16, "kindString": "Enumeration member", @@ -5756,14 +6017,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8649, + "line": 8961, "character": 4 } ], "defaultValue": "\"answer\"" }, { - "id": 2181, + "id": 2219, "name": "Liveboard", "kind": 16, "kindString": "Enumeration member", @@ -5774,14 +6035,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8645, + "line": 8957, "character": 4 } ], "defaultValue": "\"liveboard\"" }, { - "id": 2184, + "id": 2222, "name": "Other", "kind": 16, "kindString": "Enumeration member", @@ -5792,14 +6053,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8658, + "line": 8970, "character": 4 } ], "defaultValue": "\"other\"" }, { - "id": 2180, + "id": 2218, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -5810,14 +6071,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8641, + "line": 8953, "character": 4 } ], "defaultValue": "\"search-answer\"" }, { - "id": 2183, + "id": 2221, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -5828,7 +6089,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8653, + "line": 8965, "character": 4 } ], @@ -5840,24 +6101,24 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2182, - 2181, - 2184, - 2180, - 2183 + 2220, + 2219, + 2222, + 2218, + 2221 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8637, + "line": 8949, "character": 12 } ] }, { - "id": 3171, + "id": 3219, "name": "CustomActionTarget", "kind": 4, "kindString": "Enumeration", @@ -5867,7 +6128,7 @@ }, "children": [ { - "id": 3174, + "id": 3222, "name": "ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -5878,14 +6139,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8338, + "line": 8650, "character": 4 } ], "defaultValue": "\"ANSWER\"" }, { - "id": 3172, + "id": 3220, "name": "LIVEBOARD", "kind": 16, "kindString": "Enumeration member", @@ -5896,14 +6157,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8311, + "line": 8623, "character": 4 } ], "defaultValue": "\"LIVEBOARD\"" }, { - "id": 3175, + "id": 3223, "name": "SPOTTER", "kind": 16, "kindString": "Enumeration member", @@ -5914,14 +6175,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8349, + "line": 8661, "character": 4 } ], "defaultValue": "\"SPOTTER\"" }, { - "id": 3173, + "id": 3221, "name": "VIZ", "kind": 16, "kindString": "Enumeration member", @@ -5932,7 +6193,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8325, + "line": 8637, "character": 4 } ], @@ -5944,23 +6205,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3174, - 3172, - 3175, - 3173 + 3222, + 3220, + 3223, + 3221 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8301, + "line": 8613, "character": 12 } ] }, { - "id": 3167, + "id": 3215, "name": "CustomActionsPosition", "kind": 4, "kindString": "Enumeration", @@ -5970,7 +6231,7 @@ }, "children": [ { - "id": 3170, + "id": 3218, "name": "CONTEXTMENU", "kind": 16, "kindString": "Enumeration member", @@ -5981,14 +6242,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8292, + "line": 8604, "character": 4 } ], "defaultValue": "\"CONTEXTMENU\"" }, { - "id": 3169, + "id": 3217, "name": "MENU", "kind": 16, "kindString": "Enumeration member", @@ -5999,14 +6260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8284, + "line": 8596, "character": 4 } ], "defaultValue": "\"MENU\"" }, { - "id": 3168, + "id": 3216, "name": "PRIMARY", "kind": 16, "kindString": "Enumeration member", @@ -6017,7 +6278,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8279, + "line": 8591, "character": 4 } ], @@ -6029,22 +6290,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3170, - 3169, - 3168 + 3218, + 3217, + 3216 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8274, + "line": 8586, "character": 12 } ] }, { - "id": 3240, + "id": 3288, "name": "DataLabelFilterOperator", "kind": 4, "kindString": "Enumeration", @@ -6060,7 +6321,7 @@ }, "children": [ { - "id": 3245, + "id": 3293, "name": "EqualTo", "kind": 16, "kindString": "Enumeration member", @@ -6071,14 +6332,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8836, + "line": 9148, "character": 4 } ], "defaultValue": "\"EQUAL_TO\"" }, { - "id": 3241, + "id": 3289, "name": "GreaterThan", "kind": 16, "kindString": "Enumeration member", @@ -6089,14 +6350,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8828, + "line": 9140, "character": 4 } ], "defaultValue": "\"GREATER_THAN\"" }, { - "id": 3243, + "id": 3291, "name": "GreaterThanOrEqualTo", "kind": 16, "kindString": "Enumeration member", @@ -6107,14 +6368,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8832, + "line": 9144, "character": 4 } ], "defaultValue": "\"GREATER_THAN_OR_EQUAL_TO\"" }, { - "id": 3242, + "id": 3290, "name": "LessThan", "kind": 16, "kindString": "Enumeration member", @@ -6125,14 +6386,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8830, + "line": 9142, "character": 4 } ], "defaultValue": "\"LESS_THAN\"" }, { - "id": 3244, + "id": 3292, "name": "LessThanOrEqualTo", "kind": 16, "kindString": "Enumeration member", @@ -6143,14 +6404,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8834, + "line": 9146, "character": 4 } ], "defaultValue": "\"LESS_THAN_OR_EQUAL_TO\"" }, { - "id": 3246, + "id": 3294, "name": "NotEqualTo", "kind": 16, "kindString": "Enumeration member", @@ -6161,7 +6422,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8838, + "line": 9150, "character": 4 } ], @@ -6173,25 +6434,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3245, - 3241, - 3243, - 3242, - 3244, - 3246 + 3293, + 3289, + 3291, + 3290, + 3292, + 3294 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8826, + "line": 9138, "character": 12 } ] }, { - "id": 3163, + "id": 3211, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -6201,7 +6462,7 @@ }, "children": [ { - "id": 3165, + "id": 3213, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -6219,7 +6480,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 3164, + "id": 3212, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -6237,7 +6498,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 3166, + "id": 3214, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -6260,9 +6521,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3165, - 3164, - 3166 + 3213, + 3212, + 3214 ] } ], @@ -6275,7 +6536,7 @@ ] }, { - "id": 2185, + "id": 2223, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -6285,7 +6546,7 @@ }, "children": [ { - "id": 2187, + "id": 2225, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -6296,14 +6557,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6182, + "line": 6401, "character": 4 } ], "defaultValue": "\"collapse\"" }, { - "id": 2188, + "id": 2226, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -6314,14 +6575,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6186, + "line": 6405, "character": 4 } ], "defaultValue": "\"expand\"" }, { - "id": 2186, + "id": 2224, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -6332,7 +6593,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6178, + "line": 6397, "character": 4 } ], @@ -6344,22 +6605,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2187, - 2188, - 2186 + 2225, + 2226, + 2224 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6174, + "line": 6393, "character": 12 } ] }, { - "id": 3180, + "id": 3228, "name": "EmbedErrorCodes", "kind": 4, "kindString": "Enumeration", @@ -6383,7 +6644,7 @@ }, "children": [ { - "id": 3183, + "id": 3231, "name": "CONFLICTING_ACTIONS_CONFIG", "kind": 16, "kindString": "Enumeration member", @@ -6394,14 +6655,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8515, + "line": 8827, "character": 4 } ], "defaultValue": "\"CONFLICTING_ACTIONS_CONFIG\"" }, { - "id": 3184, + "id": 3232, "name": "CONFLICTING_TABS_CONFIG", "kind": 16, "kindString": "Enumeration member", @@ -6412,14 +6673,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8518, + "line": 8830, "character": 4 } ], "defaultValue": "\"CONFLICTING_TABS_CONFIG\"" }, { - "id": 3187, + "id": 3235, "name": "CUSTOM_ACTION_VALIDATION", "kind": 16, "kindString": "Enumeration member", @@ -6430,14 +6691,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8527, + "line": 8839, "character": 4 } ], "defaultValue": "\"CUSTOM_ACTION_VALIDATION\"" }, { - "id": 3196, + "id": 3244, "name": "DRILLDOWN_INVALID_PAYLOAD", "kind": 16, "kindString": "Enumeration member", @@ -6448,14 +6709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8554, + "line": 8866, "character": 4 } ], "defaultValue": "\"DRILLDOWN_INVALID_PAYLOAD\"" }, { - "id": 3190, + "id": 3238, "name": "HOST_EVENT_TYPE_UNDEFINED", "kind": 16, "kindString": "Enumeration member", @@ -6466,14 +6727,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8536, + "line": 8848, "character": 4 } ], "defaultValue": "\"HOST_EVENT_TYPE_UNDEFINED\"" }, { - "id": 3194, + "id": 3242, "name": "HOST_EVENT_VALIDATION", "kind": 16, "kindString": "Enumeration member", @@ -6484,14 +6745,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8548, + "line": 8860, "character": 4 } ], "defaultValue": "\"HOST_EVENT_VALIDATION\"" }, { - "id": 3185, + "id": 3233, "name": "INIT_ERROR", "kind": 16, "kindString": "Enumeration member", @@ -6502,14 +6763,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8521, + "line": 8833, "character": 4 } ], "defaultValue": "\"INIT_ERROR\"" }, { - "id": 3193, + "id": 3241, "name": "INVALID_URL", "kind": 16, "kindString": "Enumeration member", @@ -6520,14 +6781,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8545, + "line": 8857, "character": 4 } ], "defaultValue": "\"INVALID_URL\"" }, { - "id": 3182, + "id": 3230, "name": "LIVEBOARD_ID_MISSING", "kind": 16, "kindString": "Enumeration member", @@ -6538,14 +6799,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8512, + "line": 8824, "character": 4 } ], "defaultValue": "\"LIVEBOARD_ID_MISSING\"" }, { - "id": 3188, + "id": 3236, "name": "LOGIN_FAILED", "kind": 16, "kindString": "Enumeration member", @@ -6556,14 +6817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8530, + "line": 8842, "character": 4 } ], "defaultValue": "\"LOGIN_FAILED\"" }, { - "id": 3186, + "id": 3234, "name": "NETWORK_ERROR", "kind": 16, "kindString": "Enumeration member", @@ -6574,14 +6835,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8524, + "line": 8836, "character": 4 } ], "defaultValue": "\"NETWORK_ERROR\"" }, { - "id": 3191, + "id": 3239, "name": "PARSING_API_INTERCEPT_BODY_ERROR", "kind": 16, "kindString": "Enumeration member", @@ -6592,14 +6853,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8539, + "line": 8851, "character": 4 } ], "defaultValue": "\"PARSING_API_INTERCEPT_BODY_ERROR\"" }, { - "id": 3189, + "id": 3237, "name": "RENDER_NOT_CALLED", "kind": 16, "kindString": "Enumeration member", @@ -6610,14 +6871,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8533, + "line": 8845, "character": 4 } ], "defaultValue": "\"RENDER_NOT_CALLED\"" }, { - "id": 3195, + "id": 3243, "name": "UPDATEFILTERS_INVALID_PAYLOAD", "kind": 16, "kindString": "Enumeration member", @@ -6628,14 +6889,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8551, + "line": 8863, "character": 4 } ], "defaultValue": "\"UPDATEFILTERS_INVALID_PAYLOAD\"" }, { - "id": 3197, + "id": 3245, "name": "UPDATEPARAMETERS_INVALID_PAYLOAD", "kind": 16, "kindString": "Enumeration member", @@ -6646,14 +6907,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8557, + "line": 8869, "character": 4 } ], "defaultValue": "\"UPDATEPARAMETERS_INVALID_PAYLOAD\"" }, { - "id": 3192, + "id": 3240, "name": "UPDATE_PARAMS_FAILED", "kind": 16, "kindString": "Enumeration member", @@ -6664,14 +6925,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8542, + "line": 8854, "character": 4 } ], "defaultValue": "\"UPDATE_PARAMS_FAILED\"" }, { - "id": 3181, + "id": 3229, "name": "WORKSHEET_ID_NOT_FOUND", "kind": 16, "kindString": "Enumeration member", @@ -6682,7 +6943,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8509, + "line": 8821, "character": 4 } ], @@ -6694,36 +6955,36 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3183, - 3184, - 3187, - 3196, - 3190, - 3194, - 3185, - 3193, - 3182, - 3188, - 3186, - 3191, - 3189, - 3195, - 3197, - 3192, - 3181 + 3231, + 3232, + 3235, + 3244, + 3238, + 3242, + 3233, + 3241, + 3230, + 3236, + 3234, + 3239, + 3237, + 3243, + 3245, + 3240, + 3229 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8507, + "line": 8819, "character": 12 } ] }, { - "id": 1976, + "id": 1997, "name": "EmbedEvent", "kind": 4, "kindString": "Enumeration", @@ -6748,7 +7009,7 @@ }, "children": [ { - "id": 2013, + "id": 2034, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -6776,7 +7037,7 @@ "defaultValue": "\"AIHighlights\"" }, { - "id": 2004, + "id": 2025, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -6804,7 +7065,7 @@ "defaultValue": "\"*\"" }, { - "id": 1984, + "id": 2005, "name": "AddRemoveColumns", "kind": 16, "kindString": "Enumeration member", @@ -6836,7 +7097,7 @@ "defaultValue": "\"addRemoveColumns\"" }, { - "id": 2066, + "id": 2087, "name": "AddToCoaching", "kind": 16, "kindString": "Enumeration member", @@ -6864,7 +7125,7 @@ "defaultValue": "\"addToCoaching\"" }, { - "id": 2030, + "id": 2051, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -6892,7 +7153,7 @@ "defaultValue": "\"addToFavorites\"" }, { - "id": 1989, + "id": 2010, "name": "Alert", "kind": 16, "kindString": "Enumeration member", @@ -6924,7 +7185,7 @@ "defaultValue": "\"alert\"" }, { - "id": 2026, + "id": 2047, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -6952,7 +7213,7 @@ "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2012, + "id": 2033, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -6980,7 +7241,7 @@ "defaultValue": "\"answerDelete\"" }, { - "id": 2076, + "id": 2097, "name": "ApiIntercept", "kind": 16, "kindString": "Enumeration member", @@ -7009,7 +7270,7 @@ "defaultValue": "\"ApiIntercept\"" }, { - "id": 2055, + "id": 2076, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -7049,7 +7310,7 @@ "defaultValue": "\"AskSageInit\"" }, { - "id": 1990, + "id": 2011, "name": "AuthExpire", "kind": 16, "kindString": "Enumeration member", @@ -7077,7 +7338,7 @@ "defaultValue": "\"ThoughtspotAuthExpired\"" }, { - "id": 1978, + "id": 1999, "name": "AuthInit", "kind": 16, "kindString": "Enumeration member", @@ -7109,7 +7370,7 @@ "defaultValue": "\"authInit\"" }, { - "id": 2037, + "id": 2058, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -7137,7 +7398,7 @@ "defaultValue": "\"cancel\"" }, { - "id": 2053, + "id": 2074, "name": "ChangePersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -7181,7 +7442,7 @@ "defaultValue": "\"changePersonalisedView\"" }, { - "id": 2024, + "id": 2045, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -7209,7 +7470,7 @@ "defaultValue": "\"copyAEdit\"" }, { - "id": 2039, + "id": 2060, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -7237,7 +7498,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 2019, + "id": 2040, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -7265,7 +7526,7 @@ "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2045, + "id": 2066, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -7289,7 +7550,7 @@ "defaultValue": "\"createConnection\"" }, { - "id": 2060, + "id": 2081, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -7314,7 +7575,7 @@ "defaultValue": "\"createLiveboard\"" }, { - "id": 2061, + "id": 2082, "name": "CreateModel", "kind": 16, "kindString": "Enumeration member", @@ -7338,7 +7599,7 @@ "defaultValue": "\"createModel\"" }, { - "id": 2054, + "id": 2075, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -7362,7 +7623,7 @@ "defaultValue": "\"createWorksheet\"" }, { - "id": 2040, + "id": 2061, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -7390,7 +7651,7 @@ "defaultValue": "\"cross-filter-changed\"" }, { - "id": 1985, + "id": 2006, "name": "CustomAction", "kind": 16, "kindString": "Enumeration member", @@ -7426,7 +7687,7 @@ "defaultValue": "\"customAction\"" }, { - "id": 1980, + "id": 2001, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -7462,7 +7723,7 @@ "defaultValue": "\"data\"" }, { - "id": 2067, + "id": 2088, "name": "DataModelInstructions", "kind": 16, "kindString": "Enumeration member", @@ -7490,7 +7751,7 @@ "defaultValue": "\"DataModelInstructions\"" }, { - "id": 1983, + "id": 2004, "name": "DataSourceSelected", "kind": 16, "kindString": "Enumeration member", @@ -7522,7 +7783,7 @@ "defaultValue": "\"dataSourceSelected\"" }, { - "id": 2035, + "id": 2056, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -7550,7 +7811,7 @@ "defaultValue": "\"delete\"" }, { - "id": 2051, + "id": 2072, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -7586,7 +7847,7 @@ "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 2052, + "id": 2073, "name": "DeletePersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -7618,7 +7879,7 @@ "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 2002, + "id": 2023, "name": "DialogClose", "kind": 16, "kindString": "Enumeration member", @@ -7646,7 +7907,7 @@ "defaultValue": "\"dialog-close\"" }, { - "id": 2001, + "id": 2022, "name": "DialogOpen", "kind": 16, "kindString": "Enumeration member", @@ -7674,7 +7935,7 @@ "defaultValue": "\"dialog-open\"" }, { - "id": 2006, + "id": 2027, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -7703,7 +7964,7 @@ "defaultValue": "\"download\"" }, { - "id": 2009, + "id": 2030, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -7731,7 +7992,7 @@ "defaultValue": "\"downloadAsCsv\"" }, { - "id": 2008, + "id": 2029, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -7759,7 +8020,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2007, + "id": 2028, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -7787,7 +8048,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 2010, + "id": 2031, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -7815,7 +8076,7 @@ "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 2011, + "id": 2032, "name": "DownloadLiveboardAsContinuousPDF", "kind": 16, "kindString": "Enumeration member", @@ -7843,7 +8104,7 @@ "defaultValue": "\"downloadLiveboardAsContinuousPDF\"" }, { - "id": 2018, + "id": 2039, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -7871,7 +8132,7 @@ "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 2017, + "id": 2038, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -7899,7 +8160,7 @@ "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1982, + "id": 2003, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -7943,7 +8204,7 @@ "defaultValue": "\"drillDown\"" }, { - "id": 2032, + "id": 2053, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -7971,7 +8232,7 @@ "defaultValue": "\"edit\"" }, { - "id": 2021, + "id": 2042, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -7999,7 +8260,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 2082, + "id": 2115, "name": "EmbedPageContextChanged", "kind": 16, "kindString": "Enumeration member", @@ -8020,14 +8281,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3814, + "line": 3966, "character": 4 } ], "defaultValue": "\"EmbedPageContextChanged\"" }, { - "id": 1988, + "id": 2009, "name": "Error", "kind": 16, "kindString": "Enumeration member", @@ -8064,7 +8325,7 @@ "defaultValue": "\"Error\"" }, { - "id": 2038, + "id": 2059, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -8092,7 +8353,7 @@ "defaultValue": "\"explore\"" }, { - "id": 2022, + "id": 2043, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -8120,7 +8381,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 2043, + "id": 2064, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -8148,7 +8409,7 @@ "defaultValue": "\"filterChanged\"" }, { - "id": 1996, + "id": 2017, "name": "GetDataClick", "kind": 16, "kindString": "Enumeration member", @@ -8176,7 +8437,7 @@ "defaultValue": "\"getDataClick\"" }, { - "id": 1977, + "id": 1998, "name": "Init", "kind": 16, "kindString": "Enumeration member", @@ -8204,7 +8465,7 @@ "defaultValue": "\"init\"" }, { - "id": 2070, + "id": 2091, "name": "LastPromptDeleted", "kind": 16, "kindString": "Enumeration member", @@ -8232,7 +8493,7 @@ "defaultValue": "\"LastPromptDeleted\"" }, { - "id": 2069, + "id": 2090, "name": "LastPromptEdited", "kind": 16, "kindString": "Enumeration member", @@ -8260,7 +8521,7 @@ "defaultValue": "\"LastPromptEdited\"" }, { - "id": 2029, + "id": 2050, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -8288,7 +8549,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 2003, + "id": 2024, "name": "LiveboardRendered", "kind": 16, "kindString": "Enumeration member", @@ -8320,7 +8581,7 @@ "defaultValue": "\"PinboardRendered\"" }, { - "id": 1979, + "id": 2000, "name": "Load", "kind": 16, "kindString": "Enumeration member", @@ -8352,7 +8613,7 @@ "defaultValue": "\"load\"" }, { - "id": 2033, + "id": 2054, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -8380,7 +8641,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 1999, + "id": 2020, "name": "NoCookieAccess", "kind": 16, "kindString": "Enumeration member", @@ -8408,7 +8669,7 @@ "defaultValue": "\"noCookieAccess\"" }, { - "id": 2057, + "id": 2078, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", @@ -8446,7 +8707,7 @@ "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 2075, + "id": 2096, "name": "OrgSwitched", "kind": 16, "kindString": "Enumeration member", @@ -8474,7 +8735,7 @@ "defaultValue": "\"orgSwitched\"" }, { - "id": 2058, + "id": 2079, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", @@ -8498,7 +8759,7 @@ "defaultValue": "\"parameterChanged\"" }, { - "id": 2014, + "id": 2035, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -8526,7 +8787,7 @@ "defaultValue": "\"pin\"" }, { - "id": 2034, + "id": 2055, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -8558,7 +8819,7 @@ "defaultValue": "\"present\"" }, { - "id": 2065, + "id": 2086, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -8586,7 +8847,7 @@ "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 1981, + "id": 2002, "name": "QueryChanged", "kind": 16, "kindString": "Enumeration member", @@ -8614,7 +8875,7 @@ "defaultValue": "\"queryChanged\"" }, { - "id": 2092, + "id": 2125, "name": "RefreshLiveboardBrowserCache", "kind": 16, "kindString": "Enumeration member", @@ -8635,14 +8896,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3956, + "line": 4108, "character": 4 } ], "defaultValue": "\"refreshLiveboardBrowserCache\"" }, { - "id": 2056, + "id": 2077, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -8666,7 +8927,7 @@ "defaultValue": "\"rename\"" }, { - "id": 2050, + "id": 2071, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -8706,7 +8967,7 @@ "defaultValue": "\"resetLiveboard\"" }, { - "id": 2071, + "id": 2092, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -8734,7 +8995,7 @@ "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 1997, + "id": 2018, "name": "RouteChange", "kind": 16, "kindString": "Enumeration member", @@ -8762,7 +9023,7 @@ "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 2005, + "id": 2026, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -8790,7 +9051,7 @@ "defaultValue": "\"save\"" }, { - "id": 2023, + "id": 2044, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -8818,7 +9079,7 @@ "defaultValue": "\"saveAsView\"" }, { - "id": 2048, + "id": 2069, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8862,7 +9123,7 @@ "defaultValue": "\"savePersonalisedView\"" }, { - "id": 2049, + "id": 2070, "name": "SavePersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -8902,7 +9163,7 @@ "defaultValue": "\"savePersonalisedView\"" }, { - "id": 2031, + "id": 2052, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -8930,7 +9191,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 2036, + "id": 2057, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -8958,7 +9219,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 2084, + "id": 2117, "name": "SendTestScheduleEmail", "kind": 16, "kindString": "Enumeration member", @@ -8979,14 +9240,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3853, + "line": 4005, "character": 4 } ], "defaultValue": "\"sendTestScheduleEmail\"" }, { - "id": 2016, + "id": 2037, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -9014,7 +9275,7 @@ "defaultValue": "\"share\"" }, { - "id": 2025, + "id": 2046, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -9042,7 +9303,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2015, + "id": 2036, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -9070,7 +9331,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2078, + "id": 2099, "name": "SpotterConversationDeleted", "kind": 16, "kindString": "Enumeration member", @@ -9098,7 +9359,35 @@ "defaultValue": "\"spotterConversationDeleted\"" }, { - "id": 2077, + "id": 2110, + "name": "SpotterConversationPinned", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when a Spotter conversation is pinned.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.10.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.SpotterConversationPinned, (payload) => {\n console.log('Conversation pinned', payload);\n // payload: { conversationId: string, pinnedAt: string (ISO 8601) }\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3892, + "character": 4 + } + ], + "defaultValue": "\"spotterConversationPinned\"" + }, + { + "id": 2098, "name": "SpotterConversationRenamed", "kind": 16, "kindString": "Enumeration member", @@ -9126,7 +9415,7 @@ "defaultValue": "\"spotterConversationRenamed\"" }, { - "id": 2079, + "id": 2112, "name": "SpotterConversationSelected", "kind": 16, "kindString": "Enumeration member", @@ -9147,14 +9436,98 @@ "sources": [ { "fileName": "types.ts", - "line": 3764, + "line": 3916, "character": 4 } ], "defaultValue": "\"spotterConversationSelected\"" }, { - "id": 2064, + "id": 2103, + "name": "SpotterConversationShareRevoked", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when access to a shared Spotter conversation is revoked\n(recipients removed). `fullyRevoked` is true when the last sharee is removed\nand the share is deleted entirely.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.SpotterConversationShareRevoked, (payload) => {\n // payload: { convId: string, shareId: string,\n // recipientsRemoved: string[], fullyRevoked: boolean }\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3807, + "character": 4 + } + ], + "defaultValue": "\"spotterConversationShareRevoked\"" + }, + { + "id": 2102, + "name": "SpotterConversationShared", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when a Spotter conversation is shared (recipients added, or a new\nshare created). The host builds its own link from shareId/convId + its\nconfigured CONVERSATION_URL — no link string is sent. Distinct from\n`SpotterShareModalConfirmButtonClicked`, which fires at click time before\nthe save resolves.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.SpotterConversationShared, (payload) => {\n // payload: { convId: string, shareId: string,\n // recipientsAdded: string[], recipientsRemoved: string[] }\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3793, + "character": 4 + } + ], + "defaultValue": "\"spotterConversationShared\"" + }, + { + "id": 2111, + "name": "SpotterConversationUnpinned", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when a Spotter conversation is unpinned.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.10.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.SpotterConversationUnpinned, (payload) => {\n console.log('Conversation unpinned', payload);\n // payload: { conversationId: string, unpinnedAt: string (ISO 8601) }\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3904, + "character": 4 + } + ], + "defaultValue": "\"spotterConversationUnpinned\"" + }, + { + "id": 2085, "name": "SpotterData", "kind": 16, "kindString": "Enumeration member", @@ -9182,7 +9555,7 @@ "defaultValue": "\"SpotterData\"" }, { - "id": 2072, + "id": 2093, "name": "SpotterInit", "kind": 16, "kindString": "Enumeration member", @@ -9210,7 +9583,7 @@ "defaultValue": "\"spotterInit\"" }, { - "id": 2073, + "id": 2094, "name": "SpotterLoadComplete", "kind": 16, "kindString": "Enumeration member", @@ -9238,7 +9611,7 @@ "defaultValue": "\"spotterLoadComplete\"" }, { - "id": 2068, + "id": 2089, "name": "SpotterQueryTriggered", "kind": 16, "kindString": "Enumeration member", @@ -9266,7 +9639,7 @@ "defaultValue": "\"SpotterQueryTriggered\"" }, { - "id": 2080, + "id": 2113, "name": "SpotterResponseComplete", "kind": 16, "kindString": "Enumeration member", @@ -9292,14 +9665,238 @@ "sources": [ { "fileName": "types.ts", - "line": 3789, + "line": 3941, "character": 4 } ], "defaultValue": "\"spotterResponseComplete\"" }, { - "id": 2088, + "id": 2100, + "name": "SpotterShareConversationButtonHeaderClicked", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when the header Share button is clicked. Fires `Start` then `End`\nto bracket the interaction. App→host counterpart of the\n`ShareSpotterConversation` host event (user-driven vs programmatic open).", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.SpotterShareConversationButtonHeaderClicked, (payload) => {\n // payload: { convId: string }\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3765, + "character": 4 + } + ], + "defaultValue": "\"spotterShareConversationButtonHeaderClicked\"" + }, + { + "id": 2101, + "name": "SpotterShareConversationMenuItemSidebarClicked", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when the sidebar Share item is clicked. Fires `Start` then `End`\nto bracket the interaction.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.SpotterShareConversationMenuItemSidebarClicked, (payload) => {\n // payload: { convId: string }\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3777, + "character": 4 + } + ], + "defaultValue": "\"spotterShareConversationMenuItemSidebarClicked\"" + }, + { + "id": 2105, + "name": "SpotterShareIncludeNewMessagesCheckboxToggled", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when the user toggles the share-modal \"include new messages since\nlast shared version\" checkbox.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.SpotterShareIncludeNewMessagesCheckboxToggled, (payload) => {\n // payload: { convId: string, includeNewMessages: boolean }\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3832, + "character": 4 + } + ], + "defaultValue": "\"spotterShareIncludeNewMessagesCheckboxToggled\"" + }, + { + "id": 2108, + "name": "SpotterShareModalCancelButtonClicked", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when the share modal is dismissed via the Cancel button.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.SpotterShareModalCancelButtonClicked, (payload) => {\n // payload: { convId: string }\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3868, + "character": 4 + } + ], + "defaultValue": "\"spotterShareModalCancelButtonClicked\"" + }, + { + "id": 2107, + "name": "SpotterShareModalConfirmButtonClicked", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when the modal Share (confirm) button is clicked — fires at click\ntime, before the save resolves. Distinct from the `SpotterConversationShared`\n/ `SpotterConversationShareRevoked` result events.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.SpotterShareModalConfirmButtonClicked, (payload) => {\n // payload: { convId: string }\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3857, + "character": 4 + } + ], + "defaultValue": "\"spotterShareModalConfirmButtonClicked\"" + }, + { + "id": 2106, + "name": "SpotterShareStaleInfoBannerDismissed", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when the user dismisses the stale-snapshot info banner via its\ncross (distinct from the include-new-messages checkbox toggle).", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.SpotterShareStaleInfoBannerDismissed, (payload) => {\n // payload: { convId: string }\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3844, + "character": 4 + } + ], + "defaultValue": "\"spotterShareStaleInfoBannerDismissed\"" + }, + { + "id": 2109, + "name": "SpotterSharedConversationExitButtonClicked", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when a recipient leaves the read-only shared view via the Exit\nbutton.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.SpotterSharedConversationExitButtonClicked, (payload) => {\n // payload: { convId: string }\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3880, + "character": 4 + } + ], + "defaultValue": "\"spotterSharedConversationExitButtonClicked\"" + }, + { + "id": 2104, + "name": "SpotterSharedConversationViewed", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when a recipient opens a shared Spotter conversation (read-only\nview). No shareId available viewer-side.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.SpotterSharedConversationViewed, (payload) => {\n // payload: { convId: string, sourceConvId: string }\n // convId = resolved snapshot conv id; sourceConvId = the shared URL id\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3820, + "character": 4 + } + ], + "defaultValue": "\"spotterSharedConversationViewed\"" + }, + { + "id": 2121, "name": "SpotterVizCheckpointCreated", "kind": 16, "kindString": "Enumeration member", @@ -9320,14 +9917,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3905, + "line": 4057, "character": 4 } ], "defaultValue": "\"SpotterVizCheckpointCreated\"" }, { - "id": 2089, + "id": 2122, "name": "SpotterVizCheckpointRestored", "kind": 16, "kindString": "Enumeration member", @@ -9348,14 +9945,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3918, + "line": 4070, "character": 4 } ], "defaultValue": "\"SpotterVizCheckpointRestored\"" }, { - "id": 2091, + "id": 2124, "name": "SpotterVizClosed", "kind": 16, "kindString": "Enumeration member", @@ -9376,14 +9973,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3942, + "line": 4094, "character": 4 } ], "defaultValue": "\"SpotterVizClosed\"" }, { - "id": 2090, + "id": 2123, "name": "SpotterVizError", "kind": 16, "kindString": "Enumeration member", @@ -9404,14 +10001,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3930, + "line": 4082, "character": 4 } ], "defaultValue": "\"SpotterVizError\"" }, { - "id": 2085, + "id": 2118, "name": "SpotterVizInit", "kind": 16, "kindString": "Enumeration member", @@ -9432,14 +10029,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3866, + "line": 4018, "character": 4 } ], "defaultValue": "\"SpotterVizInit\"" }, { - "id": 2086, + "id": 2119, "name": "SpotterVizQueryTriggered", "kind": 16, "kindString": "Enumeration member", @@ -9460,14 +10057,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3879, + "line": 4031, "character": 4 } ], "defaultValue": "\"SpotterVizQueryTriggered\"" }, { - "id": 2087, + "id": 2120, "name": "SpotterVizResponseComplete", "kind": 16, "kindString": "Enumeration member", @@ -9488,14 +10085,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3892, + "line": 4044, "character": 4 } ], "defaultValue": "\"SpotterVizResponseComplete\"" }, { - "id": 2083, + "id": 2116, "name": "Subscribed", "kind": 16, "kindString": "Enumeration member", @@ -9521,14 +10118,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3838, + "line": 3990, "character": 4 } ], "defaultValue": "\"Subscribed\"" }, { - "id": 2059, + "id": 2080, "name": "TableVizRendered", "kind": 16, "kindString": "Enumeration member", @@ -9557,7 +10154,7 @@ "defaultValue": "\"TableVizRendered\"" }, { - "id": 2044, + "id": 2065, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -9581,7 +10178,7 @@ "defaultValue": "\"updateConnection\"" }, { - "id": 2046, + "id": 2067, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -9625,7 +10222,7 @@ "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 2047, + "id": 2068, "name": "UpdatePersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -9665,7 +10262,7 @@ "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 2020, + "id": 2041, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -9693,7 +10290,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 1987, + "id": 2008, "name": "VizPointClick", "kind": 16, "kindString": "Enumeration member", @@ -9729,7 +10326,7 @@ "defaultValue": "\"vizPointClick\"" }, { - "id": 1986, + "id": 2007, "name": "VizPointDoubleClick", "kind": 16, "kindString": "Enumeration member", @@ -9761,7 +10358,7 @@ "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 2041, + "id": 2062, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -9794,108 +10391,120 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2013, - 2004, - 1984, - 2066, - 2030, - 1989, - 2026, - 2012, + 2034, + 2025, + 2005, + 2087, + 2051, + 2010, + 2047, + 2033, + 2097, 2076, - 2055, - 1990, - 1978, - 2037, - 2053, - 2024, - 2039, - 2019, + 2011, + 1999, + 2058, + 2074, 2045, 2060, - 2061, - 2054, 2040, - 1985, - 1980, - 2067, - 1983, - 2035, - 2051, - 2052, - 2002, - 2001, - 2006, - 2009, - 2008, - 2007, - 2010, - 2011, - 2018, - 2017, - 1982, - 2032, - 2021, + 2066, + 2081, 2082, - 1988, - 2038, - 2022, - 2043, - 1996, - 1977, - 2070, - 2069, - 2029, - 2003, - 1979, - 2033, - 1999, - 2057, 2075, - 2058, - 2014, - 2034, - 2065, - 1981, - 2092, + 2061, + 2006, + 2001, + 2088, + 2004, 2056, - 2050, - 2071, - 1997, - 2005, + 2072, + 2073, 2023, - 2048, - 2049, + 2022, + 2027, + 2030, + 2029, + 2028, 2031, - 2036, - 2084, - 2016, - 2025, - 2015, - 2078, - 2077, - 2079, + 2032, + 2039, + 2038, + 2003, + 2053, + 2042, + 2115, + 2009, + 2059, + 2043, 2064, - 2072, - 2073, - 2068, - 2080, - 2088, - 2089, + 2017, + 1998, 2091, 2090, - 2085, + 2050, + 2024, + 2000, + 2054, + 2020, + 2078, + 2096, + 2079, + 2035, + 2055, 2086, - 2087, - 2083, - 2059, + 2002, + 2125, + 2077, + 2071, + 2092, + 2018, + 2026, 2044, + 2069, + 2070, + 2052, + 2057, + 2117, + 2037, 2046, - 2047, - 2020, - 1987, - 1986, - 2041 + 2036, + 2099, + 2110, + 2098, + 2112, + 2103, + 2102, + 2111, + 2085, + 2093, + 2094, + 2089, + 2113, + 2100, + 2101, + 2105, + 2108, + 2107, + 2106, + 2109, + 2104, + 2121, + 2122, + 2124, + 2123, + 2118, + 2119, + 2120, + 2116, + 2080, + 2065, + 2067, + 2068, + 2041, + 2008, + 2007, + 2062 ] } ], @@ -9908,7 +10517,7 @@ ] }, { - "id": 3204, + "id": 3252, "name": "ErrorDetailsTypes", "kind": 4, "kindString": "Enumeration", @@ -9933,7 +10542,7 @@ }, "children": [ { - "id": 3205, + "id": 3253, "name": "API", "kind": 16, "kindString": "Enumeration member", @@ -9944,14 +10553,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8469, + "line": 8781, "character": 4 } ], "defaultValue": "\"API\"" }, { - "id": 3207, + "id": 3255, "name": "NETWORK", "kind": 16, "kindString": "Enumeration member", @@ -9962,14 +10571,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8473, + "line": 8785, "character": 4 } ], "defaultValue": "\"NETWORK\"" }, { - "id": 3206, + "id": 3254, "name": "VALIDATION_ERROR", "kind": 16, "kindString": "Enumeration member", @@ -9980,7 +10589,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8471, + "line": 8783, "character": 4 } ], @@ -9992,22 +10601,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3205, - 3207, - 3206 + 3253, + 3255, + 3254 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8467, + "line": 8779, "character": 12 } ] }, { - "id": 2784, + "id": 2832, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -10017,7 +10626,7 @@ }, "children": [ { - "id": 2788, + "id": 2836, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -10041,7 +10650,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2795, + "id": 2843, "name": "Collections", "kind": 16, "kindString": "Enumeration member", @@ -10065,7 +10674,7 @@ "defaultValue": "\"collections\"" }, { - "id": 2792, + "id": 2840, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -10089,7 +10698,7 @@ "defaultValue": "\"create\"" }, { - "id": 2794, + "id": 2842, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -10113,7 +10722,7 @@ "defaultValue": "\"favorites\"" }, { - "id": 2786, + "id": 2834, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -10137,7 +10746,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2791, + "id": 2839, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -10161,7 +10770,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2787, + "id": 2835, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -10185,7 +10794,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2789, + "id": 2837, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -10209,7 +10818,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2785, + "id": 2833, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -10233,7 +10842,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2790, + "id": 2838, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -10257,7 +10866,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2793, + "id": 2841, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -10286,17 +10895,17 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2788, - 2795, - 2792, - 2794, - 2786, - 2791, - 2787, - 2789, - 2785, - 2790, - 2793 + 2836, + 2843, + 2840, + 2842, + 2834, + 2839, + 2835, + 2837, + 2833, + 2838, + 2841 ] } ], @@ -10309,7 +10918,7 @@ ] }, { - "id": 3108, + "id": 3156, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -10325,7 +10934,7 @@ }, "children": [ { - "id": 3111, + "id": 3159, "name": "Focused", "kind": 16, "kindString": "Enumeration member", @@ -10349,7 +10958,7 @@ "defaultValue": "\"v4\"" }, { - "id": 3109, + "id": 3157, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -10367,7 +10976,7 @@ "defaultValue": "\"v2\"" }, { - "id": 3110, + "id": 3158, "name": "ModularWithStylingChanges", "kind": 16, "kindString": "Enumeration member", @@ -10390,9 +10999,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3111, - 3109, - 3110 + 3159, + 3157, + 3158 ] } ], @@ -10405,14 +11014,14 @@ ] }, { - "id": 3102, + "id": 3150, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 3104, + "id": 3152, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -10427,7 +11036,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 3105, + "id": 3153, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -10442,7 +11051,7 @@ "defaultValue": "\"none\"" }, { - "id": 3103, + "id": 3151, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -10462,9 +11071,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3104, - 3105, - 3103 + 3152, + 3153, + 3151 ] } ], @@ -10477,7 +11086,7 @@ ] }, { - "id": 2796, + "id": 2844, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -10494,7 +11103,7 @@ }, "children": [ { - "id": 2799, + "id": 2847, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -10512,7 +11121,7 @@ "defaultValue": "\"FAVORITE\"" }, { - "id": 2802, + "id": 2850, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -10530,7 +11139,7 @@ "defaultValue": "\"LEARNING\"" }, { - "id": 2800, + "id": 2848, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -10548,7 +11157,7 @@ "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2797, + "id": 2845, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -10566,7 +11175,7 @@ "defaultValue": "\"SEARCH\"" }, { - "id": 2801, + "id": 2849, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -10584,7 +11193,7 @@ "defaultValue": "\"TRENDING\"" }, { - "id": 2798, + "id": 2846, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -10607,12 +11216,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2799, - 2802, - 2800, - 2797, - 2801, - 2798 + 2847, + 2850, + 2848, + 2845, + 2849, + 2846 ] } ], @@ -10625,7 +11234,7 @@ ] }, { - "id": 2093, + "id": 2126, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -10658,7 +11267,7 @@ }, "children": [ { - "id": 2116, + "id": 2149, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -10679,14 +11288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4622, + "line": 4774, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2104, + "id": 2137, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -10716,14 +11325,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4320, + "line": 4472, "character": 4 } ], "defaultValue": "\"addColumns\"" }, { - "id": 2161, + "id": 2194, "name": "AddToCoaching", "kind": 16, "kindString": "Enumeration member", @@ -10749,14 +11358,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5966, + "line": 6118, "character": 4 } ], "defaultValue": "\"addToCoaching\"" }, { - "id": 2165, + "id": 2201, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -10782,14 +11391,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6008, + "line": 6190, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2145, + "id": 2178, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -10810,14 +11419,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5622, + "line": 5774, "character": 4 } ], "defaultValue": "\"AskSage\"" }, { - "id": 2168, + "id": 2204, "name": "AskSpotter", "kind": 16, "kindString": "Enumeration member", @@ -10843,14 +11452,42 @@ "sources": [ { "fileName": "types.ts", - "line": 6046, + "line": 6228, "character": 4 } ], "defaultValue": "\"AskSpotter\"" }, { - "id": 2177, + "id": 2198, + "name": "CloseSpotterShareConversation", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Closes the Spotter share-conversation modal. No-op if none is open.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.CloseSpotterShareConversation);\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6157, + "character": 4 + } + ], + "defaultValue": "\"CloseSpotterShareConversation\"" + }, + { + "id": 2215, "name": "CloseSpotterVizPanel", "kind": 16, "kindString": "Enumeration member", @@ -10871,14 +11508,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6155, + "line": 6374, "character": 4 } ], "defaultValue": "\"CloseSpotterVizPanel\"" }, { - "id": 2123, + "id": 2156, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -10920,14 +11557,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4855, + "line": 5007, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2120, + "id": 2153, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -10965,14 +11602,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4730, + "line": 4882, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2162, + "id": 2195, "name": "DataModelInstructions", "kind": 16, "kindString": "Enumeration member", @@ -10993,14 +11630,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5975, + "line": 6127, "character": 4 } ], "defaultValue": "\"DataModelInstructions\"" }, { - "id": 2127, + "id": 2160, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -11034,14 +11671,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5008, + "line": 5160, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2164, + "id": 2200, "name": "DeleteLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -11062,14 +11699,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5993, + "line": 6175, "character": 4 } ], "defaultValue": "\"DeleteLastPrompt\"" }, { - "id": 2170, + "id": 2206, "name": "DestroyEmbed", "kind": 16, "kindString": "Enumeration member", @@ -11090,14 +11727,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6066, + "line": 6248, "character": 4 } ], "defaultValue": "\"EmbedDestroyed\"" }, { - "id": 2129, + "id": 2162, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -11127,14 +11764,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5070, + "line": 5222, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2131, + "id": 2164, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -11168,14 +11805,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5140, + "line": 5292, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2114, + "id": 2147, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -11213,14 +11850,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4600, + "line": 4752, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2130, + "id": 2163, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -11245,14 +11882,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5101, + "line": 5253, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2132, + "id": 2165, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -11286,14 +11923,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5179, + "line": 5331, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2115, + "id": 2148, "name": "DownloadLiveboardAsContinuousPDF", "kind": 16, "kindString": "Enumeration member", @@ -11314,14 +11951,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4612, + "line": 4764, "character": 4 } ], "defaultValue": "\"downloadLiveboardAsContinuousPDF\"" }, { - "id": 2095, + "id": 2128, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -11359,14 +11996,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4131, + "line": 4283, "character": 4 } ], "defaultValue": "\"triggerDrillDown\"" }, { - "id": 2122, + "id": 2155, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -11405,14 +12042,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4810, + "line": 4962, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2159, + "id": 2192, "name": "EditLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -11442,14 +12079,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5940, + "line": 6092, "character": 4 } ], "defaultValue": "\"EditLastPrompt\"" }, { - "id": 2112, + "id": 2145, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -11478,14 +12115,42 @@ "sources": [ { "fileName": "types.ts", - "line": 4546, + "line": 4698, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2119, + "id": 2199, + "name": "ExitSpotterSharedConversation", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Exits the read-only shared-conversation view.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.ExitSpotterSharedConversation);\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6166, + "character": 4 + } + ], + "defaultValue": "\"ExitSpotterSharedConversation\"" + }, + { + "id": 2152, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -11515,14 +12180,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4699, + "line": 4851, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2111, + "id": 2144, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -11551,14 +12216,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4524, + "line": 4676, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2144, + "id": 2177, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -11584,14 +12249,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5612, + "line": 5764, "character": 4 } ], "defaultValue": "\"getAnswerSession\"" }, { - "id": 2139, + "id": 2172, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -11616,14 +12281,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5389, + "line": 5541, "character": 4 } ], "defaultValue": "\"getFilters\"" }, { - "id": 2098, + "id": 2131, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -11648,14 +12313,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4158, + "line": 4310, "character": 4 } ], "defaultValue": "\"GetIframeUrl\"" }, { - "id": 2150, + "id": 2183, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -11681,14 +12346,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5745, + "line": 5897, "character": 4 } ], "defaultValue": "\"GetParameters\"" }, { - "id": 2125, + "id": 2158, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -11725,14 +12390,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4946, + "line": 5098, "character": 4 } ], "defaultValue": "\"getTML\"" }, { - "id": 2141, + "id": 2174, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -11757,14 +12422,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5538, + "line": 5690, "character": 4 } ], "defaultValue": "\"getTabs\"" }, { - "id": 2175, + "id": 2213, "name": "InitSpotterVizConversation", "kind": 16, "kindString": "Enumeration member", @@ -11785,14 +12450,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6135, + "line": 6354, "character": 4 } ], "defaultValue": "\"InitSpotterVizConversation\"" }, { - "id": 2108, + "id": 2141, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -11817,14 +12482,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4472, + "line": 4624, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2117, + "id": 2150, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -11869,14 +12534,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4667, + "line": 4819, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2121, + "id": 2154, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -11918,14 +12583,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4765, + "line": 4917, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2137, + "id": 2170, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -11959,14 +12624,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5345, + "line": 5497, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2102, + "id": 2135, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -11993,14 +12658,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4274, + "line": 4426, "character": 4 } ], "defaultValue": "\"Navigate\"" }, { - "id": 2103, + "id": 2136, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -12034,14 +12699,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4302, + "line": 4454, "character": 4 } ], "defaultValue": "\"openFilter\"" }, { - "id": 2176, + "id": 2214, "name": "OpenSpotterVizPanel", "kind": 16, "kindString": "Enumeration member", @@ -12062,14 +12727,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6145, + "line": 6364, "character": 4 } ], "defaultValue": "\"OpenSpotterVizPanel\"" }, { - "id": 2107, + "id": 2140, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -12123,14 +12788,43 @@ "sources": [ { "fileName": "types.ts", - "line": 4456, + "line": 4608, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2124, + "id": 2208, + "name": "PinSpotterConversation", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Pins a saved Spotter conversation so it floats to the top of the past\nconversations sidebar. The `conversationId` of the conversation to pin is\nrequired.", + "text": "This feature is available only when chat history is enabled on your ThoughtSpot\ninstance. Contact your admin or ThoughtSpot Support to enable chat history on your\ninstance.\n", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.10.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.PinSpotterConversation, {\n conversationId: '',\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6281, + "character": 4 + } + ], + "defaultValue": "\"PinSpotterConversation\"" + }, + { + "id": 2157, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -12172,14 +12866,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4900, + "line": 5052, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2160, + "id": 2193, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -12204,14 +12898,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5955, + "line": 6107, "character": 4 } ], "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 2178, + "id": 2216, "name": "RefreshLiveboardBrowserCache", "kind": 16, "kindString": "Enumeration member", @@ -12232,14 +12926,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6166, + "line": 6385, "character": 4 } ], "defaultValue": "\"refreshLiveboardBrowserCache\"" }, { - "id": 2118, + "id": 2151, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -12268,14 +12962,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4681, + "line": 4833, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2105, + "id": 2138, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -12305,14 +12999,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4338, + "line": 4490, "character": 4 } ], "defaultValue": "\"removeColumn\"" }, { - "id": 2147, + "id": 2180, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -12337,14 +13031,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5649, + "line": 5801, "character": 4 } ], "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 2148, + "id": 2181, "name": "ResetLiveboardPersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -12365,14 +13059,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5658, + "line": 5810, "character": 4 } ], "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 2138, + "id": 2171, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -12397,14 +13091,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5363, + "line": 5515, "character": 4 } ], "defaultValue": "\"resetSearch\"" }, { - "id": 2163, + "id": 2196, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -12425,14 +13119,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5984, + "line": 6136, "character": 4 } ], "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 2134, + "id": 2167, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -12466,14 +13160,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5256, + "line": 5408, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2155, + "id": 2188, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -12515,14 +13209,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5874, + "line": 6026, "character": 4 } ], "defaultValue": "\"saveAnswer\"" }, { - "id": 2109, + "id": 2142, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -12547,14 +13241,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4487, + "line": 4639, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2110, + "id": 2143, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -12579,14 +13273,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4502, + "line": 4654, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2094, + "id": 2127, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -12612,14 +13306,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4062, + "line": 4214, "character": 4 } ], "defaultValue": "\"search\"" }, { - "id": 2153, + "id": 2186, "name": "SelectPersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -12648,14 +13342,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5804, + "line": 5956, "character": 4 } ], "defaultValue": "\"SelectPersonalisedView\"" }, { - "id": 2173, + "id": 2211, "name": "SendTestScheduleEmail", "kind": 16, "kindString": "Enumeration member", @@ -12680,14 +13374,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6112, + "line": 6331, "character": 4 } ], "defaultValue": "\"sendTestScheduleEmail\"" }, { - "id": 2100, + "id": 2133, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -12717,14 +13411,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4200, + "line": 4352, "character": 4 } ], "defaultValue": "\"SetActiveTab\"" }, { - "id": 2143, + "id": 2176, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -12754,14 +13448,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5582, + "line": 5734, "character": 4 } ], "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 2142, + "id": 2175, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -12791,14 +13485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5560, + "line": 5712, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 2099, + "id": 2132, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -12828,14 +13522,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4180, + "line": 4332, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 2133, + "id": 2166, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -12864,14 +13558,42 @@ "sources": [ { "fileName": "types.ts", - "line": 5204, + "line": 5356, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2126, + "id": 2197, + "name": "ShareSpotterConversation", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Opens the Spotter share-conversation modal for the given conversation.\n`conversationId` is **mandatory** — you must pass the id of the\nconversation to share. Also no-op when sharing is disabled\n(enableShareConversation off) or when already in the read-only shared view.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.ShareSpotterConversation, { conversationId: 'abc' });\n```" + }, + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6148, + "character": 4 + } + ], + "defaultValue": "\"ShareSpotterConversation\"" + }, + { + "id": 2159, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -12905,14 +13627,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4979, + "line": 5131, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2128, + "id": 2161, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -12946,14 +13668,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5042, + "line": 5194, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2158, + "id": 2191, "name": "SpotterSearch", "kind": 16, "kindString": "Enumeration member", @@ -12983,14 +13705,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5924, + "line": 6076, "character": 4 } ], "defaultValue": "\"SpotterSearch\"" }, { - "id": 2174, + "id": 2212, "name": "SpotterVizSendUserMessage", "kind": 16, "kindString": "Enumeration member", @@ -13016,14 +13738,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6125, + "line": 6344, "character": 4 } ], "defaultValue": "\"SpotterVizSendUserMessage\"" }, { - "id": 2171, + "id": 2207, "name": "StartNewSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -13045,14 +13767,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6080, + "line": 6262, "character": 4 } ], "defaultValue": "\"StartNewSpotterConversation\"" }, { - "id": 2136, + "id": 2169, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -13086,14 +13808,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5315, + "line": 5467, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2135, + "id": 2168, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -13127,14 +13849,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5285, + "line": 5437, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2157, + "id": 2190, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -13160,14 +13882,43 @@ "sources": [ { "fileName": "types.ts", - "line": 5899, + "line": 6051, "character": 4 } ], "defaultValue": "\"TransformTableVizData\"" }, { - "id": 2146, + "id": 2209, + "name": "UnpinSpotterConversation", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Unpins a previously pinned Spotter conversation. The `conversationId` of the\nconversation to unpin is required.", + "text": "This feature is available only when chat history is enabled on your ThoughtSpot\ninstance. Contact your admin or ThoughtSpot Support to enable chat history on your\ninstance.\n", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.10.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.UnpinSpotterConversation, {\n conversationId: '',\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6299, + "character": 4 + } + ], + "defaultValue": "\"UnpinSpotterConversation\"" + }, + { + "id": 2179, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -13188,14 +13939,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5638, + "line": 5790, "character": 4 } ], "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 2140, + "id": 2173, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -13241,14 +13992,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5517, + "line": 5669, "character": 4 } ], "defaultValue": "\"updateFilters\"" }, { - "id": 2149, + "id": 2182, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -13282,14 +14033,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5708, + "line": 5860, "character": 4 } ], "defaultValue": "\"UpdateParameters\"" }, { - "id": 2151, + "id": 2184, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -13314,14 +14065,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5763, + "line": 5915, "character": 4 } ], "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 2152, + "id": 2185, "name": "UpdatePersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -13338,14 +14089,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5771, + "line": 5923, "character": 4 } ], "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 2101, + "id": 2134, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -13380,14 +14131,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4243, + "line": 4395, "character": 4 } ], "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 2113, + "id": 2146, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -13412,14 +14163,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4561, + "line": 4713, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2106, + "id": 2139, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -13440,7 +14191,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4354, + "line": 4506, "character": 4 } ], @@ -13452,96 +14203,101 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2116, - 2104, - 2161, - 2165, - 2145, - 2168, - 2177, - 2123, - 2120, - 2162, - 2127, - 2164, - 2170, - 2129, - 2131, - 2114, - 2130, - 2132, - 2115, - 2095, - 2122, - 2159, - 2112, - 2119, - 2111, - 2144, - 2139, - 2098, - 2150, - 2125, - 2141, - 2175, - 2108, - 2117, - 2121, + 2149, 2137, - 2102, - 2103, - 2176, - 2107, - 2124, - 2160, + 2194, + 2201, 2178, - 2118, - 2105, + 2204, + 2198, + 2215, + 2156, + 2153, + 2195, + 2160, + 2200, + 2206, + 2162, + 2164, 2147, - 2148, - 2138, 2163, - 2134, - 2155, - 2109, - 2110, - 2094, - 2153, - 2173, - 2100, - 2143, - 2142, - 2099, - 2133, - 2126, + 2165, + 2148, 2128, + 2155, + 2192, + 2145, + 2199, + 2152, + 2144, + 2177, + 2172, + 2131, + 2183, 2158, 2174, - 2171, - 2136, + 2213, + 2141, + 2150, + 2154, + 2170, 2135, - 2157, - 2146, + 2136, + 2214, 2140, - 2149, + 2208, + 2157, + 2193, + 2216, 2151, - 2152, - 2101, - 2113, - 2106 + 2138, + 2180, + 2181, + 2171, + 2196, + 2167, + 2188, + 2142, + 2143, + 2127, + 2186, + 2211, + 2133, + 2176, + 2175, + 2132, + 2166, + 2197, + 2159, + 2161, + 2191, + 2212, + 2207, + 2169, + 2168, + 2190, + 2209, + 2179, + 2173, + 2182, + 2184, + 2185, + 2134, + 2146, + 2139 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4032, + "line": 4184, "character": 12 } ] }, { - "id": 3176, + "id": 3224, "name": "InterceptedApiType", "kind": 4, "kindString": "Enumeration", @@ -13551,7 +14307,7 @@ }, "children": [ { - "id": 3178, + "id": 3226, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -13562,14 +14318,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8691, + "line": 9003, "character": 4 } ], "defaultValue": "\"ALL\"" }, { - "id": 3177, + "id": 3225, "name": "AnswerData", "kind": 16, "kindString": "Enumeration member", @@ -13580,14 +14336,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8687, + "line": 8999, "character": 4 } ], "defaultValue": "\"AnswerData\"" }, { - "id": 3179, + "id": 3227, "name": "LiveboardData", "kind": 16, "kindString": "Enumeration member", @@ -13598,7 +14354,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8695, + "line": 9007, "character": 4 } ], @@ -13610,22 +14366,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3178, - 3177, - 3179 + 3226, + 3225, + 3227 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8683, + "line": 8995, "character": 12 } ] }, { - "id": 3212, + "id": 3260, "name": "LegendPosition", "kind": 4, "kindString": "Enumeration", @@ -13641,7 +14397,7 @@ }, "children": [ { - "id": 3214, + "id": 3262, "name": "Bottom", "kind": 16, "kindString": "Enumeration member", @@ -13652,14 +14408,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8961, + "line": 9273, "character": 4 } ], "defaultValue": "\"bottom\"" }, { - "id": 3215, + "id": 3263, "name": "Left", "kind": 16, "kindString": "Enumeration member", @@ -13670,14 +14426,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8963, + "line": 9275, "character": 4 } ], "defaultValue": "\"left\"" }, { - "id": 3216, + "id": 3264, "name": "Right", "kind": 16, "kindString": "Enumeration member", @@ -13688,14 +14444,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8965, + "line": 9277, "character": 4 } ], "defaultValue": "\"right\"" }, { - "id": 3213, + "id": 3261, "name": "Top", "kind": 16, "kindString": "Enumeration member", @@ -13706,7 +14462,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8959, + "line": 9271, "character": 4 } ], @@ -13718,23 +14474,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3214, - 3215, - 3216, - 3213 + 3262, + 3263, + 3264, + 3261 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8957, + "line": 9269, "character": 12 } ] }, { - "id": 3112, + "id": 3160, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -13750,7 +14506,7 @@ }, "children": [ { - "id": 3113, + "id": 3161, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -13768,7 +14524,7 @@ "defaultValue": "\"v2\"" }, { - "id": 3114, + "id": 3162, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -13791,8 +14547,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3113, - 3114 + 3161, + 3162 ] } ], @@ -13805,7 +14561,7 @@ ] }, { - "id": 3155, + "id": 3203, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -13821,7 +14577,7 @@ }, "children": [ { - "id": 3159, + "id": 3207, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -13839,7 +14595,7 @@ "defaultValue": "\"AUTHOR\"" }, { - "id": 3160, + "id": 3208, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -13857,7 +14613,7 @@ "defaultValue": "\"DATE_SORT\"" }, { - "id": 3156, + "id": 3204, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -13875,7 +14631,7 @@ "defaultValue": "\"FAVOURITE\"" }, { - "id": 3157, + "id": 3205, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -13899,7 +14655,7 @@ "defaultValue": "\"FAVOURITE\"" }, { - "id": 3161, + "id": 3209, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -13917,7 +14673,7 @@ "defaultValue": "\"SHARE\"" }, { - "id": 3158, + "id": 3206, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -13935,7 +14691,7 @@ "defaultValue": "\"TAGS\"" }, { - "id": 3162, + "id": 3210, "name": "Verified", "kind": 16, "kindString": "Enumeration member", @@ -13958,13 +14714,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3159, - 3160, - 3156, - 3157, - 3161, - 3158, - 3162 + 3207, + 3208, + 3204, + 3205, + 3209, + 3206, + 3210 ] } ], @@ -13977,7 +14733,7 @@ ] }, { - "id": 3079, + "id": 3127, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -13987,7 +14743,7 @@ }, "children": [ { - "id": 3084, + "id": 3132, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -14008,14 +14764,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8423, + "line": 8735, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 3081, + "id": 3129, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -14036,14 +14792,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8384, + "line": 8696, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 3083, + "id": 3131, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -14064,14 +14820,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8409, + "line": 8721, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 3080, + "id": 3128, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -14092,14 +14848,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8372, + "line": 8684, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 3085, + "id": 3133, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -14120,14 +14876,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8435, + "line": 8747, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 3082, + "id": 3130, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -14148,7 +14904,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8396, + "line": 8708, "character": 4 } ], @@ -14160,25 +14916,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3084, - 3081, - 3083, - 3080, - 3085, - 3082 + 3132, + 3129, + 3131, + 3128, + 3133, + 3130 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8359, + "line": 8671, "character": 12 } ] }, { - "id": 1934, + "id": 1955, "name": "Page", "kind": 4, "kindString": "Enumeration", @@ -14188,7 +14944,7 @@ }, "children": [ { - "id": 1937, + "id": 1958, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -14206,7 +14962,7 @@ "defaultValue": "\"answers\"" }, { - "id": 1943, + "id": 1964, "name": "Collections", "kind": 16, "kindString": "Enumeration member", @@ -14224,7 +14980,7 @@ "defaultValue": "\"collections\"" }, { - "id": 1940, + "id": 1961, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -14242,7 +14998,7 @@ "defaultValue": "\"data\"" }, { - "id": 1935, + "id": 1956, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -14260,7 +15016,7 @@ "defaultValue": "\"home\"" }, { - "id": 1938, + "id": 1959, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -14278,7 +15034,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 1942, + "id": 1963, "name": "Monitor", "kind": 16, "kindString": "Enumeration member", @@ -14296,7 +15052,7 @@ "defaultValue": "\"monitor\"" }, { - "id": 1936, + "id": 1957, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -14314,7 +15070,7 @@ "defaultValue": "\"search\"" }, { - "id": 1941, + "id": 1962, "name": "SpotIQ", "kind": 16, "kindString": "Enumeration member", @@ -14337,14 +15093,14 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1937, - 1943, - 1940, - 1935, - 1938, - 1942, - 1936, - 1941 + 1958, + 1964, + 1961, + 1956, + 1959, + 1963, + 1957, + 1962 ] } ], @@ -14357,14 +15113,14 @@ ] }, { - "id": 2773, + "id": 2821, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2774, + "id": 2822, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -14372,14 +15128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8188, + "line": 8500, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2776, + "id": 2824, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -14387,14 +15143,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8190, + "line": 8502, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2775, + "id": 2823, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -14402,14 +15158,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8189, + "line": 8501, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2777, + "id": 2825, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -14417,7 +15173,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8191, + "line": 8503, "character": 4 } ], @@ -14429,23 +15185,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2774, - 2776, - 2775, - 2777 + 2822, + 2824, + 2823, + 2825 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8187, + "line": 8499, "character": 12 } ] }, { - "id": 3106, + "id": 3154, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -14461,7 +15217,7 @@ }, "children": [ { - "id": 3107, + "id": 3155, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -14484,7 +15240,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3107 + 3155 ] } ], @@ -14497,7 +15253,7 @@ ] }, { - "id": 1960, + "id": 1981, "name": "RuntimeFilterOp", "kind": 4, "kindString": "Enumeration", @@ -14507,7 +15263,7 @@ }, "children": [ { - "id": 1968, + "id": 1989, "name": "BEGINS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -14525,7 +15281,7 @@ "defaultValue": "\"BEGINS_WITH\"" }, { - "id": 1973, + "id": 1994, "name": "BW", "kind": 16, "kindString": "Enumeration member", @@ -14543,7 +15299,7 @@ "defaultValue": "\"BW\"" }, { - "id": 1972, + "id": 1993, "name": "BW_INC", "kind": 16, "kindString": "Enumeration member", @@ -14561,7 +15317,7 @@ "defaultValue": "\"BW_INC\"" }, { - "id": 1970, + "id": 1991, "name": "BW_INC_MAX", "kind": 16, "kindString": "Enumeration member", @@ -14579,7 +15335,7 @@ "defaultValue": "\"BW_INC_MAX\"" }, { - "id": 1971, + "id": 1992, "name": "BW_INC_MIN", "kind": 16, "kindString": "Enumeration member", @@ -14597,7 +15353,7 @@ "defaultValue": "\"BW_INC_MIN\"" }, { - "id": 1967, + "id": 1988, "name": "CONTAINS", "kind": 16, "kindString": "Enumeration member", @@ -14615,7 +15371,7 @@ "defaultValue": "\"CONTAINS\"" }, { - "id": 1969, + "id": 1990, "name": "ENDS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -14633,7 +15389,7 @@ "defaultValue": "\"ENDS_WITH\"" }, { - "id": 1961, + "id": 1982, "name": "EQ", "kind": 16, "kindString": "Enumeration member", @@ -14651,7 +15407,7 @@ "defaultValue": "\"EQ\"" }, { - "id": 1966, + "id": 1987, "name": "GE", "kind": 16, "kindString": "Enumeration member", @@ -14669,7 +15425,7 @@ "defaultValue": "\"GE\"" }, { - "id": 1965, + "id": 1986, "name": "GT", "kind": 16, "kindString": "Enumeration member", @@ -14687,7 +15443,7 @@ "defaultValue": "\"GT\"" }, { - "id": 1974, + "id": 1995, "name": "IN", "kind": 16, "kindString": "Enumeration member", @@ -14705,7 +15461,7 @@ "defaultValue": "\"IN\"" }, { - "id": 1964, + "id": 1985, "name": "LE", "kind": 16, "kindString": "Enumeration member", @@ -14723,7 +15479,7 @@ "defaultValue": "\"LE\"" }, { - "id": 1963, + "id": 1984, "name": "LT", "kind": 16, "kindString": "Enumeration member", @@ -14741,7 +15497,7 @@ "defaultValue": "\"LT\"" }, { - "id": 1962, + "id": 1983, "name": "NE", "kind": 16, "kindString": "Enumeration member", @@ -14759,7 +15515,7 @@ "defaultValue": "\"NE\"" }, { - "id": 1975, + "id": 1996, "name": "NOT_IN", "kind": 16, "kindString": "Enumeration member", @@ -14782,21 +15538,21 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1968, - 1973, - 1972, - 1970, - 1971, - 1967, - 1969, - 1961, - 1966, - 1965, - 1974, - 1964, - 1963, - 1962, - 1975 + 1989, + 1994, + 1993, + 1991, + 1992, + 1988, + 1990, + 1982, + 1987, + 1986, + 1995, + 1985, + 1984, + 1983, + 1996 ] } ], @@ -14809,7 +15565,7 @@ ] }, { - "id": 1534, + "id": 1537, "name": "SpotterQueryMode", "kind": 4, "kindString": "Enumeration", @@ -14825,7 +15581,7 @@ }, "children": [ { - "id": 1535, + "id": 1538, "name": "FAST_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -14833,14 +15589,14 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 23, + "line": 22, "character": 4 } ], "defaultValue": "\"fastSearch\"" }, { - "id": 1536, + "id": 1539, "name": "RESEARCH", "kind": 16, "kindString": "Enumeration member", @@ -14848,7 +15604,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 24, + "line": 23, "character": 4 } ], @@ -14860,21 +15616,21 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1535, - 1536 + 1538, + 1539 ] } ], "sources": [ { "fileName": "embed/conversation.ts", - "line": 22, + "line": 21, "character": 12 } ] }, { - "id": 3251, + "id": 3299, "name": "TableContentDensity", "kind": 4, "kindString": "Enumeration", @@ -14890,7 +15646,7 @@ }, "children": [ { - "id": 3253, + "id": 3301, "name": "Compact", "kind": 16, "kindString": "Enumeration member", @@ -14901,14 +15657,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8989, + "line": 9301, "character": 4 } ], "defaultValue": "\"COMPACT\"" }, { - "id": 3252, + "id": 3300, "name": "Regular", "kind": 16, "kindString": "Enumeration member", @@ -14919,7 +15675,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8987, + "line": 9299, "character": 4 } ], @@ -14931,21 +15687,21 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3253, - 3252 + 3301, + 3300 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8985, + "line": 9297, "character": 12 } ] }, { - "id": 3247, + "id": 3295, "name": "TableTheme", "kind": 4, "kindString": "Enumeration", @@ -14961,7 +15717,7 @@ }, "children": [ { - "id": 3248, + "id": 3296, "name": "Outline", "kind": 16, "kindString": "Enumeration member", @@ -14972,14 +15728,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8974, + "line": 9286, "character": 4 } ], "defaultValue": "\"OUTLINE\"" }, { - "id": 3249, + "id": 3297, "name": "Row", "kind": 16, "kindString": "Enumeration member", @@ -14990,14 +15746,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8976, + "line": 9288, "character": 4 } ], "defaultValue": "\"ROW\"" }, { - "id": 3250, + "id": 3298, "name": "Zebra", "kind": 16, "kindString": "Enumeration member", @@ -15008,7 +15764,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8978, + "line": 9290, "character": 4 } ], @@ -15020,29 +15776,29 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3248, - 3249, - 3250 + 3296, + 3297, + 3298 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8972, + "line": 9284, "character": 12 } ] }, { - "id": 3138, + "id": 3186, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 3147, + "id": 3195, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -15057,7 +15813,7 @@ "defaultValue": "\"drillDown\"" }, { - "id": 3143, + "id": 3191, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -15072,7 +15828,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 3148, + "id": 3196, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -15087,7 +15843,7 @@ "defaultValue": "\"getAnswerSession\"" }, { - "id": 3142, + "id": 3190, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -15102,7 +15858,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 3141, + "id": 3189, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -15117,7 +15873,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 3154, + "id": 3202, "name": "GetExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -15132,7 +15888,7 @@ "defaultValue": "\"getExportRequestForCurrentPinboard\"" }, { - "id": 3149, + "id": 3197, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -15147,7 +15903,7 @@ "defaultValue": "\"getFilters\"" }, { - "id": 3150, + "id": 3198, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -15162,7 +15918,7 @@ "defaultValue": "\"getIframeUrl\"" }, { - "id": 3144, + "id": 3192, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -15177,7 +15933,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 3151, + "id": 3199, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -15192,7 +15948,7 @@ "defaultValue": "\"getParameters\"" }, { - "id": 3152, + "id": 3200, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -15207,7 +15963,7 @@ "defaultValue": "\"getTML\"" }, { - "id": 3153, + "id": 3201, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -15222,7 +15978,7 @@ "defaultValue": "\"getTabs\"" }, { - "id": 3145, + "id": 3193, "name": "GetUnsavedAnswerTML", "kind": 16, "kindString": "Enumeration member", @@ -15237,7 +15993,7 @@ "defaultValue": "\"getUnsavedAnswerTML\"" }, { - "id": 3139, + "id": 3187, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -15252,7 +16008,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 3140, + "id": 3188, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -15267,7 +16023,7 @@ "defaultValue": "\"saveAnswer\"" }, { - "id": 3146, + "id": 3194, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -15287,22 +16043,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3147, - 3143, - 3148, - 3142, - 3141, - 3154, - 3149, - 3150, - 3144, - 3151, - 3152, - 3153, - 3145, - 3139, - 3140, - 3146 + 3195, + 3191, + 3196, + 3190, + 3189, + 3202, + 3197, + 3198, + 3192, + 3199, + 3200, + 3201, + 3193, + 3187, + 3188, + 3194 ] } ], @@ -15315,7 +16071,7 @@ ] }, { - "id": 1847, + "id": 1868, "name": "AnswerService", "kind": 128, "kindString": "Class", @@ -15344,7 +16100,7 @@ }, "children": [ { - "id": 1848, + "id": 1869, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -15361,7 +16117,7 @@ ], "signatures": [ { - "id": 1849, + "id": 1870, "name": "new AnswerService", "kind": 16384, "kindString": "Constructor signature", @@ -15371,7 +16127,7 @@ }, "parameters": [ { - "id": 1850, + "id": 1871, "name": "session", "kind": 32768, "kindString": "Parameter", @@ -15379,12 +16135,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1924, + "id": 1945, "name": "SessionInterface" } }, { - "id": 1851, + "id": 1872, "name": "answer", "kind": 32768, "kindString": "Parameter", @@ -15396,7 +16152,7 @@ } }, { - "id": 1852, + "id": 1873, "name": "thoughtSpotHost", "kind": 32768, "kindString": "Parameter", @@ -15408,7 +16164,7 @@ } }, { - "id": 1853, + "id": 1874, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -15422,7 +16178,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3115, + "id": 3163, "name": "VizPoint" } } @@ -15430,14 +16186,14 @@ ], "type": { "type": "reference", - "id": 1847, + "id": 1868, "name": "AnswerService" } } ] }, { - "id": 1862, + "id": 1883, "name": "addColumns", "kind": 2048, "kindString": "Method", @@ -15453,7 +16209,7 @@ ], "signatures": [ { - "id": 1863, + "id": 1884, "name": "addColumns", "kind": 4096, "kindString": "Call signature", @@ -15464,7 +16220,7 @@ }, "parameters": [ { - "id": 1864, + "id": 1885, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -15493,7 +16249,7 @@ ] }, { - "id": 1865, + "id": 1886, "name": "addColumnsByName", "kind": 2048, "kindString": "Method", @@ -15509,7 +16265,7 @@ ], "signatures": [ { - "id": 1866, + "id": 1887, "name": "addColumnsByName", "kind": 4096, "kindString": "Call signature", @@ -15525,7 +16281,7 @@ }, "parameters": [ { - "id": 1867, + "id": 1888, "name": "columnNames", "kind": 32768, "kindString": "Parameter", @@ -15554,7 +16310,7 @@ ] }, { - "id": 1918, + "id": 1939, "name": "addDisplayedVizToLiveboard", "kind": 2048, "kindString": "Method", @@ -15570,14 +16326,14 @@ ], "signatures": [ { - "id": 1919, + "id": 1940, "name": "addDisplayedVizToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1920, + "id": 1941, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -15602,7 +16358,7 @@ ] }, { - "id": 1868, + "id": 1889, "name": "addFilter", "kind": 2048, "kindString": "Method", @@ -15618,7 +16374,7 @@ ], "signatures": [ { - "id": 1869, + "id": 1890, "name": "addFilter", "kind": 4096, "kindString": "Call signature", @@ -15629,7 +16385,7 @@ }, "parameters": [ { - "id": 1870, + "id": 1891, "name": "columnName", "kind": 32768, "kindString": "Parameter", @@ -15641,7 +16397,7 @@ } }, { - "id": 1871, + "id": 1892, "name": "operator", "kind": 32768, "kindString": "Parameter", @@ -15649,12 +16405,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1960, + "id": 1981, "name": "RuntimeFilterOp" } }, { - "id": 1872, + "id": 1893, "name": "values", "kind": 32768, "kindString": "Parameter", @@ -15700,7 +16456,7 @@ ] }, { - "id": 1908, + "id": 1929, "name": "executeQuery", "kind": 2048, "kindString": "Method", @@ -15716,7 +16472,7 @@ ], "signatures": [ { - "id": 1909, + "id": 1930, "name": "executeQuery", "kind": 4096, "kindString": "Call signature", @@ -15727,7 +16483,7 @@ }, "parameters": [ { - "id": 1910, + "id": 1931, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -15741,7 +16497,7 @@ } }, { - "id": 1911, + "id": 1932, "name": "variables", "kind": 32768, "kindString": "Parameter", @@ -15769,7 +16525,7 @@ ] }, { - "id": 1886, + "id": 1907, "name": "fetchCSVBlob", "kind": 2048, "kindString": "Method", @@ -15785,7 +16541,7 @@ ], "signatures": [ { - "id": 1887, + "id": 1908, "name": "fetchCSVBlob", "kind": 4096, "kindString": "Call signature", @@ -15796,7 +16552,7 @@ }, "parameters": [ { - "id": 1888, + "id": 1909, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -15809,7 +16565,7 @@ "defaultValue": "'en-us'" }, { - "id": 1889, + "id": 1910, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -15838,7 +16594,7 @@ ] }, { - "id": 1879, + "id": 1900, "name": "fetchData", "kind": 2048, "kindString": "Method", @@ -15854,7 +16610,7 @@ ], "signatures": [ { - "id": 1880, + "id": 1901, "name": "fetchData", "kind": 4096, "kindString": "Call signature", @@ -15865,7 +16621,7 @@ }, "parameters": [ { - "id": 1881, + "id": 1902, "name": "offset", "kind": 32768, "kindString": "Parameter", @@ -15878,7 +16634,7 @@ "defaultValue": "0" }, { - "id": 1882, + "id": 1903, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -15897,14 +16653,14 @@ { "type": "reflection", "declaration": { - "id": 1883, + "id": 1904, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1884, + "id": 1905, "name": "columns", "kind": 1024, "kindString": "Property", @@ -15915,7 +16671,7 @@ } }, { - "id": 1885, + "id": 1906, "name": "data", "kind": 1024, "kindString": "Property", @@ -15931,8 +16687,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1884, - 1885 + 1905, + 1906 ] } ] @@ -15945,7 +16701,7 @@ ] }, { - "id": 1890, + "id": 1911, "name": "fetchPNGBlob", "kind": 2048, "kindString": "Method", @@ -15961,7 +16717,7 @@ ], "signatures": [ { - "id": 1891, + "id": 1912, "name": "fetchPNGBlob", "kind": 4096, "kindString": "Call signature", @@ -15972,7 +16728,7 @@ }, "parameters": [ { - "id": 1892, + "id": 1913, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -15985,7 +16741,7 @@ "defaultValue": "'en-us'" }, { - "id": 1893, + "id": 1914, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -16000,7 +16756,7 @@ "defaultValue": "false" }, { - "id": 1894, + "id": 1915, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -16029,7 +16785,7 @@ ] }, { - "id": 1914, + "id": 1935, "name": "getAnswer", "kind": 2048, "kindString": "Method", @@ -16045,7 +16801,7 @@ ], "signatures": [ { - "id": 1915, + "id": 1936, "name": "getAnswer", "kind": 4096, "kindString": "Call signature", @@ -16064,7 +16820,7 @@ ] }, { - "id": 1895, + "id": 1916, "name": "getFetchCSVBlobUrl", "kind": 2048, "kindString": "Method", @@ -16080,7 +16836,7 @@ ], "signatures": [ { - "id": 1896, + "id": 1917, "name": "getFetchCSVBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -16091,7 +16847,7 @@ }, "parameters": [ { - "id": 1897, + "id": 1918, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -16104,7 +16860,7 @@ "defaultValue": "'en-us'" }, { - "id": 1898, + "id": 1919, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -16125,7 +16881,7 @@ ] }, { - "id": 1899, + "id": 1920, "name": "getFetchPNGBlobUrl", "kind": 2048, "kindString": "Method", @@ -16141,7 +16897,7 @@ ], "signatures": [ { - "id": 1900, + "id": 1921, "name": "getFetchPNGBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -16151,7 +16907,7 @@ }, "parameters": [ { - "id": 1901, + "id": 1922, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -16164,7 +16920,7 @@ "defaultValue": "'en-us'" }, { - "id": 1902, + "id": 1923, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -16177,7 +16933,7 @@ "defaultValue": "false" }, { - "id": 1903, + "id": 1924, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -16200,7 +16956,7 @@ ] }, { - "id": 1876, + "id": 1897, "name": "getSQLQuery", "kind": 2048, "kindString": "Method", @@ -16216,14 +16972,14 @@ ], "signatures": [ { - "id": 1877, + "id": 1898, "name": "getSQLQuery", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1878, + "id": 1899, "name": "fetchSQLWithAllColumns", "kind": 32768, "kindString": "Parameter", @@ -16249,7 +17005,7 @@ ] }, { - "id": 1912, + "id": 1933, "name": "getSession", "kind": 2048, "kindString": "Method", @@ -16265,7 +17021,7 @@ ], "signatures": [ { - "id": 1913, + "id": 1934, "name": "getSession", "kind": 4096, "kindString": "Call signature", @@ -16276,14 +17032,14 @@ }, "type": { "type": "reference", - "id": 1924, + "id": 1945, "name": "SessionInterface" } } ] }, { - "id": 1857, + "id": 1878, "name": "getSourceDetail", "kind": 2048, "kindString": "Method", @@ -16299,7 +17055,7 @@ ], "signatures": [ { - "id": 1858, + "id": 1879, "name": "getSourceDetail", "kind": 4096, "kindString": "Call signature", @@ -16321,7 +17077,7 @@ ] }, { - "id": 1916, + "id": 1937, "name": "getTML", "kind": 2048, "kindString": "Method", @@ -16337,7 +17093,7 @@ ], "signatures": [ { - "id": 1917, + "id": 1938, "name": "getTML", "kind": 4096, "kindString": "Call signature", @@ -16356,7 +17112,7 @@ ] }, { - "id": 1904, + "id": 1925, "name": "getUnderlyingDataForPoint", "kind": 2048, "kindString": "Method", @@ -16372,7 +17128,7 @@ ], "signatures": [ { - "id": 1905, + "id": 1926, "name": "getUnderlyingDataForPoint", "kind": 4096, "kindString": "Call signature", @@ -16392,7 +17148,7 @@ }, "parameters": [ { - "id": 1906, + "id": 1927, "name": "outputColumnNames", "kind": 32768, "kindString": "Parameter", @@ -16407,7 +17163,7 @@ } }, { - "id": 1907, + "id": 1928, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -16419,7 +17175,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1931, + "id": 1952, "name": "UnderlyingDataPoint" } } @@ -16430,7 +17186,7 @@ "typeArguments": [ { "type": "reference", - "id": 1847, + "id": 1868, "name": "AnswerService" } ], @@ -16440,7 +17196,7 @@ ] }, { - "id": 1859, + "id": 1880, "name": "removeColumns", "kind": 2048, "kindString": "Method", @@ -16456,7 +17212,7 @@ ], "signatures": [ { - "id": 1860, + "id": 1881, "name": "removeColumns", "kind": 4096, "kindString": "Call signature", @@ -16467,7 +17223,7 @@ }, "parameters": [ { - "id": 1861, + "id": 1882, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -16496,7 +17252,7 @@ ] }, { - "id": 1921, + "id": 1942, "name": "setTMLOverride", "kind": 2048, "kindString": "Method", @@ -16512,14 +17268,14 @@ ], "signatures": [ { - "id": 1922, + "id": 1943, "name": "setTMLOverride", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1923, + "id": 1944, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -16538,7 +17294,7 @@ ] }, { - "id": 1873, + "id": 1894, "name": "updateDisplayMode", "kind": 2048, "kindString": "Method", @@ -16554,14 +17310,14 @@ ], "signatures": [ { - "id": 1874, + "id": 1895, "name": "updateDisplayMode", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1875, + "id": 1896, "name": "displayMode", "kind": 32768, "kindString": "Parameter", @@ -16592,32 +17348,32 @@ "title": "Constructors", "kind": 512, "children": [ - 1848 + 1869 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1862, - 1865, - 1918, - 1868, - 1908, + 1883, 1886, - 1879, - 1890, - 1914, - 1895, - 1899, - 1876, - 1912, - 1857, + 1939, + 1889, + 1929, + 1907, + 1900, + 1911, + 1935, 1916, - 1904, - 1859, - 1921, - 1873 + 1920, + 1897, + 1933, + 1878, + 1937, + 1925, + 1880, + 1942, + 1894 ] } ], @@ -16654,7 +17410,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 929, + "line": 955, "character": 4 } ], @@ -16674,7 +17430,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2803, + "id": 2851, "name": "DOMSelector" } }, @@ -16686,7 +17442,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2662, + "id": 2709, "name": "AppViewConfig" } } @@ -16718,7 +17474,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1432, + "line": 1463, "character": 11 } ], @@ -16807,7 +17563,7 @@ "typeArguments": [ { "type": "reference", - "id": 1847, + "id": 1868, "name": "AnswerService" } ], @@ -16892,7 +17648,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1298, + "line": 1329, "character": 11 } ], @@ -17242,7 +17998,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1405, + "line": 1436, "character": 11 } ], @@ -17352,7 +18108,7 @@ }, "type": { "type": "reference", - "id": 1976, + "id": 1997, "name": "EmbedEvent" } }, @@ -17367,7 +18123,7 @@ }, "type": { "type": "reference", - "id": 2807, + "id": 2855, "name": "MessageCallback" } } @@ -17434,7 +18190,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1976, + "id": 1997, "name": "EmbedEvent" } }, @@ -17446,7 +18202,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2807, + "id": 2855, "name": "MessageCallback" } }, @@ -17458,7 +18214,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2804, + "id": 2852, "name": "MessageOptions" }, "defaultValue": "..." @@ -17618,7 +18374,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1488, + "line": 1519, "character": 17 } ], @@ -17748,12 +18504,12 @@ "types": [ { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" }, { "type": "reference", - "id": 2093, + "id": 2126, "name": "HostEvent" } ] @@ -17866,7 +18622,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2093, + "id": 2126, "name": "HostEvent" } }, @@ -17885,7 +18641,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2179, + "id": 2217, "name": "ContextType" } } @@ -18017,7 +18773,7 @@ "flags": {}, "type": { "type": "reference", - "id": 3138, + "id": 3186, "name": "UIPassthroughEvent" } } @@ -18124,7 +18880,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 920, + "line": 946, "character": 13 } ], @@ -18668,7 +19424,7 @@ ] }, { - "id": 1591, + "id": 1612, "name": "ConversationEmbed", "kind": 128, "kindString": "Class", @@ -18696,7 +19452,7 @@ }, "children": [ { - "id": 1592, + "id": 1613, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -18704,20 +19460,20 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 596, + "line": 781, "character": 4 } ], "signatures": [ { - "id": 1593, + "id": 1614, "name": "new ConversationEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1594, + "id": 1615, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -18728,21 +19484,21 @@ } }, { - "id": 1595, + "id": 1616, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1537, + "id": 1556, "name": "ConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1591, + "id": 1612, "name": "ConversationEmbed" }, "overwrites": { @@ -18759,7 +19515,7 @@ } }, { - "id": 1752, + "id": 1773, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -18775,7 +19531,7 @@ ], "signatures": [ { - "id": 1753, + "id": 1774, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -18807,7 +19563,7 @@ } }, { - "id": 1774, + "id": 1795, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -18823,7 +19579,7 @@ ], "signatures": [ { - "id": 1775, + "id": 1796, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -18839,7 +19595,7 @@ }, "parameters": [ { - "id": 1776, + "id": 1797, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -18860,7 +19616,7 @@ "typeArguments": [ { "type": "reference", - "id": 1847, + "id": 1868, "name": "AnswerService" } ], @@ -18880,7 +19636,7 @@ } }, { - "id": 1737, + "id": 1758, "name": "getCurrentContext", "kind": 2048, "kindString": "Method", @@ -18896,7 +19652,7 @@ ], "signatures": [ { - "id": 1738, + "id": 1759, "name": "getCurrentContext", "kind": 4096, "kindString": "Call signature", @@ -18939,7 +19695,7 @@ } }, { - "id": 1601, + "id": 1622, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -18949,13 +19705,13 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 534, + "line": 712, "character": 11 } ], "signatures": [ { - "id": 1602, + "id": 1623, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -18978,7 +19734,7 @@ } }, { - "id": 1768, + "id": 1789, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -18994,7 +19750,7 @@ ], "signatures": [ { - "id": 1769, + "id": 1790, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -19016,14 +19772,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1770, + "id": 1791, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1772, + "id": 1793, "name": "child", "kind": 1024, "kindString": "Property", @@ -19035,7 +19791,7 @@ "defaultValue": "..." }, { - "id": 1773, + "id": 1794, "name": "placeHolder", "kind": 1024, "kindString": "Property", @@ -19047,7 +19803,7 @@ "defaultValue": "..." }, { - "id": 1771, + "id": 1792, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -19064,9 +19820,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1772, - 1773, - 1771 + 1793, + 1794, + 1792 ] } ] @@ -19086,7 +19842,7 @@ } }, { - "id": 1746, + "id": 1767, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -19102,7 +19858,7 @@ ], "signatures": [ { - "id": 1747, + "id": 1768, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -19118,7 +19874,7 @@ }, "parameters": [ { - "id": 1748, + "id": 1769, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -19126,20 +19882,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1749, + "id": 1770, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1750, + "id": 1771, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1751, + "id": 1772, "name": "key", "kind": 32768, "flags": {}, @@ -19186,7 +19942,7 @@ } }, { - "id": 1754, + "id": 1775, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -19202,7 +19958,7 @@ ], "signatures": [ { - "id": 1755, + "id": 1776, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -19225,7 +19981,7 @@ } }, { - "id": 1766, + "id": 1787, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -19241,7 +19997,7 @@ ], "signatures": [ { - "id": 1767, + "id": 1788, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -19267,7 +20023,7 @@ } }, { - "id": 1704, + "id": 1725, "name": "off", "kind": 2048, "kindString": "Method", @@ -19283,7 +20039,7 @@ ], "signatures": [ { - "id": 1705, + "id": 1726, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -19299,7 +20055,7 @@ }, "parameters": [ { - "id": 1706, + "id": 1727, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19309,12 +20065,12 @@ }, "type": { "type": "reference", - "id": 1976, + "id": 1997, "name": "EmbedEvent" } }, { - "id": 1707, + "id": 1728, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19324,7 +20080,7 @@ }, "type": { "type": "reference", - "id": 2807, + "id": 2855, "name": "MessageCallback" } } @@ -19347,7 +20103,7 @@ } }, { - "id": 1698, + "id": 1719, "name": "on", "kind": 2048, "kindString": "Method", @@ -19363,7 +20119,7 @@ ], "signatures": [ { - "id": 1699, + "id": 1720, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -19383,7 +20139,7 @@ }, "parameters": [ { - "id": 1700, + "id": 1721, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19393,12 +20149,12 @@ }, "type": { "type": "reference", - "id": 1976, + "id": 1997, "name": "EmbedEvent" } }, { - "id": 1701, + "id": 1722, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19408,12 +20164,12 @@ }, "type": { "type": "reference", - "id": 2807, + "id": 2855, "name": "MessageCallback" } }, { - "id": 1702, + "id": 1723, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -19423,13 +20179,13 @@ }, "type": { "type": "reference", - "id": 2804, + "id": 2852, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1703, + "id": 1724, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -19460,7 +20216,7 @@ } }, { - "id": 1742, + "id": 1763, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -19476,7 +20232,7 @@ ], "signatures": [ { - "id": 1743, + "id": 1764, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -19486,7 +20242,7 @@ }, "parameters": [ { - "id": 1744, + "id": 1765, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -19501,7 +20257,7 @@ "defaultValue": "false" }, { - "id": 1745, + "id": 1766, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -19537,7 +20293,7 @@ } }, { - "id": 1756, + "id": 1777, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -19553,7 +20309,7 @@ ], "signatures": [ { - "id": 1757, + "id": 1778, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -19592,7 +20348,7 @@ } }, { - "id": 1603, + "id": 1624, "name": "render", "kind": 2048, "kindString": "Method", @@ -19602,13 +20358,13 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 569, + "line": 754, "character": 17 } ], "signatures": [ { - "id": 1604, + "id": 1625, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -19638,7 +20394,7 @@ } }, { - "id": 1760, + "id": 1781, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -19654,7 +20410,7 @@ ], "signatures": [ { - "id": 1761, + "id": 1782, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -19686,7 +20442,7 @@ } }, { - "id": 1739, + "id": 1760, "name": "subscribedEvent", "kind": 2048, "kindString": "Method", @@ -19702,7 +20458,7 @@ ], "signatures": [ { - "id": 1740, + "id": 1761, "name": "subscribedEvent", "kind": 4096, "kindString": "Call signature", @@ -19720,7 +20476,7 @@ }, "parameters": [ { - "id": 1741, + "id": 1762, "name": "eventName", "kind": 32768, "kindString": "Parameter", @@ -19733,12 +20489,12 @@ "types": [ { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" }, { "type": "reference", - "id": 2093, + "id": 2126, "name": "HostEvent" } ] @@ -19763,7 +20519,7 @@ } }, { - "id": 1764, + "id": 1785, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -19779,7 +20535,7 @@ ], "signatures": [ { - "id": 1765, + "id": 1786, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -19811,7 +20567,7 @@ } }, { - "id": 1722, + "id": 1743, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -19827,7 +20583,7 @@ ], "signatures": [ { - "id": 1723, + "id": 1744, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -19848,40 +20604,40 @@ }, "typeParameter": [ { - "id": 1724, + "id": 1745, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2093, + "id": 2126, "name": "HostEvent" } }, { - "id": 1725, + "id": 1746, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", "flags": {} }, { - "id": 1726, + "id": 1747, "name": "ContextT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2179, + "id": 2217, "name": "ContextType" } } ], "parameters": [ { - "id": 1727, + "id": 1748, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19895,7 +20651,7 @@ } }, { - "id": 1728, + "id": 1749, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -19920,7 +20676,7 @@ "defaultValue": "..." }, { - "id": 1729, + "id": 1750, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -19974,7 +20730,7 @@ } }, { - "id": 1730, + "id": 1751, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -19990,7 +20746,7 @@ ], "signatures": [ { - "id": 1731, + "id": 1752, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -20001,21 +20757,21 @@ }, "typeParameter": [ { - "id": 1732, + "id": 1753, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 3138, + "id": 3186, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1733, + "id": 1754, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -20029,7 +20785,7 @@ } }, { - "id": 1734, + "id": 1755, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -20084,38 +20840,38 @@ "title": "Constructors", "kind": 512, "children": [ - 1592 + 1613 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1752, - 1774, - 1737, - 1601, - 1768, - 1746, - 1754, - 1766, - 1704, - 1698, - 1742, - 1756, - 1603, + 1773, + 1795, + 1758, + 1622, + 1789, + 1767, + 1775, + 1787, + 1725, + 1719, + 1763, + 1777, + 1624, + 1781, 1760, - 1739, - 1764, - 1722, - 1730 + 1785, + 1743, + 1751 ] } ], "sources": [ { "fileName": "embed/conversation.ts", - "line": 595, + "line": 780, "character": 13 } ], @@ -20156,7 +20912,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 634, + "line": 639, "character": 4 } ], @@ -20176,7 +20932,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2803, + "id": 2851, "name": "DOMSelector" } }, @@ -20188,7 +20944,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2543, + "id": 2590, "name": "LiveboardViewConfig" } } @@ -20220,7 +20976,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 1101, + "line": 1110, "character": 11 } ], @@ -20309,7 +21065,7 @@ "typeArguments": [ { "type": "reference", - "id": 1847, + "id": 1868, "name": "AnswerService" } ], @@ -20431,7 +21187,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 1193, + "line": 1202, "character": 11 } ], @@ -20745,7 +21501,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 1168, + "line": 1177, "character": 11 } ], @@ -20858,7 +21614,7 @@ }, "type": { "type": "reference", - "id": 1976, + "id": 1997, "name": "EmbedEvent" } }, @@ -20873,7 +21629,7 @@ }, "type": { "type": "reference", - "id": 2807, + "id": 2855, "name": "MessageCallback" } } @@ -20940,7 +21696,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1976, + "id": 1997, "name": "EmbedEvent" } }, @@ -20952,7 +21708,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2807, + "id": 2855, "name": "MessageCallback" } }, @@ -20964,7 +21720,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2804, + "id": 2852, "name": "MessageOptions" }, "defaultValue": "..." @@ -21124,7 +21880,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 1157, + "line": 1166, "character": 17 } ], @@ -21254,12 +22010,12 @@ "types": [ { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" }, { "type": "reference", - "id": 2093, + "id": 2126, "name": "HostEvent" } ] @@ -21338,7 +22094,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 1082, + "line": 1091, "character": 11 } ], @@ -21362,7 +22118,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2093, + "id": 2126, "name": "HostEvent" } }, @@ -21381,7 +22137,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2179, + "id": 2217, "name": "ContextType" } } @@ -21510,7 +22266,7 @@ "flags": {}, "type": { "type": "reference", - "id": 3138, + "id": 3186, "name": "UIPassthroughEvent" } } @@ -21617,7 +22373,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 624, + "line": 629, "character": 13 } ], @@ -21688,7 +22444,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2491, + "id": 2538, "name": "SearchBarViewConfig" } } @@ -21809,7 +22565,7 @@ "typeArguments": [ { "type": "reference", - "id": 1847, + "id": 1868, "name": "AnswerService" } ], @@ -22244,7 +23000,7 @@ }, "type": { "type": "reference", - "id": 1976, + "id": 1997, "name": "EmbedEvent" } }, @@ -22259,7 +23015,7 @@ }, "type": { "type": "reference", - "id": 2807, + "id": 2855, "name": "MessageCallback" } } @@ -22326,7 +23082,7 @@ }, "type": { "type": "reference", - "id": 1976, + "id": 1997, "name": "EmbedEvent" } }, @@ -22341,7 +23097,7 @@ }, "type": { "type": "reference", - "id": 2807, + "id": 2855, "name": "MessageCallback" } }, @@ -22356,7 +23112,7 @@ }, "type": { "type": "reference", - "id": 2804, + "id": 2852, "name": "MessageOptions" }, "defaultValue": "..." @@ -22659,12 +23415,12 @@ "types": [ { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" }, { "type": "reference", - "id": 2093, + "id": 2126, "name": "HostEvent" } ] @@ -22777,7 +23533,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2093, + "id": 2126, "name": "HostEvent" } }, @@ -22796,7 +23552,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2179, + "id": 2217, "name": "ContextType" } } @@ -22928,7 +23684,7 @@ "flags": {}, "type": { "type": "reference", - "id": 3138, + "id": 3186, "name": "UIPassthroughEvent" } } @@ -23089,7 +23845,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2803, + "id": 2851, "name": "DOMSelector" } }, @@ -23101,7 +23857,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2426, + "id": 2473, "name": "SearchViewConfig" } } @@ -23222,7 +23978,7 @@ "typeArguments": [ { "type": "reference", - "id": 1847, + "id": 1868, "name": "AnswerService" } ], @@ -23689,7 +24445,7 @@ }, "type": { "type": "reference", - "id": 1976, + "id": 1997, "name": "EmbedEvent" } }, @@ -23704,7 +24460,7 @@ }, "type": { "type": "reference", - "id": 2807, + "id": 2855, "name": "MessageCallback" } } @@ -23771,7 +24527,7 @@ }, "type": { "type": "reference", - "id": 1976, + "id": 1997, "name": "EmbedEvent" } }, @@ -23786,7 +24542,7 @@ }, "type": { "type": "reference", - "id": 2807, + "id": 2855, "name": "MessageCallback" } }, @@ -23801,7 +24557,7 @@ }, "type": { "type": "reference", - "id": 2804, + "id": 2852, "name": "MessageOptions" }, "defaultValue": "..." @@ -24104,12 +24860,12 @@ "types": [ { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" }, { "type": "reference", - "id": 2093, + "id": 2126, "name": "HostEvent" } ] @@ -24222,7 +24978,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2093, + "id": 2126, "name": "HostEvent" } }, @@ -24241,7 +24997,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2179, + "id": 2217, "name": "ContextType" } } @@ -24373,7 +25129,7 @@ "flags": {}, "type": { "type": "reference", - "id": 3138, + "id": 3186, "name": "UIPassthroughEvent" } } @@ -25025,7 +25781,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 445, + "line": 618, "character": 4 } ], @@ -25177,7 +25933,7 @@ "typeArguments": [ { "type": "reference", - "id": 1847, + "id": 1868, "name": "AnswerService" } ], @@ -25262,7 +26018,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 534, + "line": 712, "character": 11 } ], @@ -25612,7 +26368,7 @@ }, "type": { "type": "reference", - "id": 1976, + "id": 1997, "name": "EmbedEvent" } }, @@ -25627,7 +26383,7 @@ }, "type": { "type": "reference", - "id": 2807, + "id": 2855, "name": "MessageCallback" } } @@ -25694,7 +26450,7 @@ }, "type": { "type": "reference", - "id": 1976, + "id": 1997, "name": "EmbedEvent" } }, @@ -25709,7 +26465,7 @@ }, "type": { "type": "reference", - "id": 2807, + "id": 2855, "name": "MessageCallback" } }, @@ -25724,7 +26480,7 @@ }, "type": { "type": "reference", - "id": 2804, + "id": 2852, "name": "MessageOptions" }, "defaultValue": "..." @@ -25897,7 +26653,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 569, + "line": 754, "character": 17 } ], @@ -26024,12 +26780,12 @@ "types": [ { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" }, { "type": "reference", - "id": 2093, + "id": 2126, "name": "HostEvent" } ] @@ -26142,7 +26898,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2093, + "id": 2126, "name": "HostEvent" } }, @@ -26161,7 +26917,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2179, + "id": 2217, "name": "ContextType" } } @@ -26293,7 +27049,7 @@ "flags": {}, "type": { "type": "reference", - "id": 3138, + "id": 3186, "name": "UIPassthroughEvent" } } @@ -26398,7 +27154,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 444, + "line": 617, "character": 13 } ], @@ -26411,13 +27167,13 @@ "extendedBy": [ { "type": "reference", - "id": 1591, + "id": 1612, "name": "ConversationEmbed" } ] }, { - "id": 2662, + "id": 2709, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -26433,7 +27189,7 @@ }, "children": [ { - "id": 2715, + "id": 2763, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -26464,20 +27220,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2716, + "id": 2764, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2717, + "id": 2765, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2718, + "id": 2766, "name": "key", "kind": 32768, "flags": {}, @@ -26513,7 +27269,7 @@ } }, { - "id": 2748, + "id": 2796, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -26555,7 +27311,7 @@ } }, { - "id": 2682, + "id": 2729, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -26592,7 +27348,7 @@ } }, { - "id": 2745, + "id": 2793, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -26622,7 +27378,7 @@ ], "type": { "type": "reference", - "id": 2371, + "id": 2418, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -26631,7 +27387,7 @@ } }, { - "id": 2766, + "id": 2814, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -26669,7 +27425,7 @@ } }, { - "id": 2736, + "id": 2784, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -26718,7 +27474,7 @@ } }, { - "id": 2719, + "id": 2767, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -26747,7 +27503,7 @@ ], "type": { "type": "reference", - "id": 2820, + "id": 2868, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -26756,7 +27512,7 @@ } }, { - "id": 2683, + "id": 2730, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -26790,12 +27546,12 @@ ], "type": { "type": "reference", - "id": 3163, + "id": 3211, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2749, + "id": 2797, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -26837,7 +27593,7 @@ } }, { - "id": 2696, + "id": 2743, "name": "defaultQueryMode", "kind": 1024, "kindString": "Property", @@ -26865,18 +27621,18 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 758, + "line": 763, "character": 4 } ], "type": { "type": "reference", - "id": 1534, + "id": 1537, "name": "SpotterQueryMode" } }, { - "id": 2665, + "id": 2712, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -26914,7 +27670,7 @@ } }, { - "id": 2728, + "id": 2776, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -26952,7 +27708,7 @@ } }, { - "id": 2711, + "id": 2759, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -26990,7 +27746,7 @@ } }, { - "id": 2710, + "id": 2758, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -27022,7 +27778,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -27032,7 +27788,7 @@ } }, { - "id": 2681, + "id": 2728, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -27069,7 +27825,7 @@ } }, { - "id": 2723, + "id": 2771, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -27110,7 +27866,7 @@ } }, { - "id": 2760, + "id": 2808, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -27152,7 +27908,7 @@ } }, { - "id": 2765, + "id": 2813, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -27194,7 +27950,7 @@ } }, { - "id": 2750, + "id": 2798, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -27236,7 +27992,7 @@ } }, { - "id": 2703, + "id": 2751, "name": "enableHomepageAnnouncement", "kind": 1024, "kindString": "Property", @@ -27260,7 +28016,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 883, + "line": 908, "character": 4 } ], @@ -27270,7 +28026,7 @@ } }, { - "id": 2732, + "id": 2780, "name": "enableLinkOverridesV2", "kind": 1024, "kindString": "Property", @@ -27308,7 +28064,7 @@ } }, { - "id": 2704, + "id": 2752, "name": "enableLiveboardDataCache", "kind": 1024, "kindString": "Property", @@ -27331,7 +28087,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 896, + "line": 921, "character": 4 } ], @@ -27341,7 +28097,7 @@ } }, { - "id": 2697, + "id": 2744, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -27369,7 +28125,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 768, + "line": 773, "character": 4 } ], @@ -27379,7 +28135,7 @@ } }, { - "id": 2666, + "id": 2713, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -27417,7 +28173,7 @@ } }, { - "id": 2678, + "id": 2725, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -27455,7 +28211,7 @@ } }, { - "id": 2701, + "id": 2749, "name": "enableStopAnswerGenerationEmbed", "kind": 1024, "kindString": "Property", @@ -27479,7 +28235,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 850, + "line": 875, "character": 4 } ], @@ -27489,7 +28245,7 @@ } }, { - "id": 2725, + "id": 2773, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -27527,7 +28283,7 @@ } }, { - "id": 2746, + "id": 2794, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -27565,7 +28321,7 @@ } }, { - "id": 2747, + "id": 2795, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -27603,7 +28359,7 @@ } }, { - "id": 2727, + "id": 2775, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -27640,7 +28396,7 @@ } }, { - "id": 2707, + "id": 2755, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -27670,7 +28426,7 @@ ], "type": { "type": "reference", - "id": 2778, + "id": 2826, "name": "FrameParams" }, "inheritedFrom": { @@ -27679,7 +28435,7 @@ } }, { - "id": 2679, + "id": 2726, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -27713,7 +28469,7 @@ } }, { - "id": 2712, + "id": 2760, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -27749,7 +28505,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -27759,7 +28515,7 @@ } }, { - "id": 2755, + "id": 2803, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -27791,7 +28547,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2784, + "id": 2832, "name": "HomeLeftNavItem" } }, @@ -27801,7 +28557,7 @@ } }, { - "id": 2753, + "id": 2801, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -27833,7 +28589,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2796, + "id": 2844, "name": "HomepageModule" } }, @@ -27843,7 +28599,7 @@ } }, { - "id": 2752, + "id": 2800, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -27875,7 +28631,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3155, + "id": 3203, "name": "ListPageColumns" } }, @@ -27885,7 +28641,7 @@ } }, { - "id": 2670, + "id": 2717, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -27923,7 +28679,7 @@ } }, { - "id": 2667, + "id": 2714, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -27961,7 +28717,7 @@ } }, { - "id": 2664, + "id": 2711, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -27999,7 +28755,7 @@ } }, { - "id": 2763, + "id": 2811, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -28041,7 +28797,7 @@ } }, { - "id": 2756, + "id": 2804, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -28083,7 +28839,7 @@ } }, { - "id": 2669, + "id": 2716, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -28121,7 +28877,7 @@ } }, { - "id": 2668, + "id": 2715, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -28159,7 +28915,7 @@ } }, { - "id": 2676, + "id": 2723, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -28196,7 +28952,7 @@ } }, { - "id": 2671, + "id": 2718, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -28234,7 +28990,7 @@ } }, { - "id": 2675, + "id": 2722, "name": "hideTagFilterChips", "kind": 1024, "kindString": "Property", @@ -28268,7 +29024,7 @@ } }, { - "id": 2684, + "id": 2731, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -28294,12 +29050,12 @@ ], "type": { "type": "reference", - "id": 3102, + "id": 3150, "name": "HomePageSearchBarMode" } }, { - "id": 2720, + "id": 2768, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -28337,7 +29093,7 @@ } }, { - "id": 2742, + "id": 2790, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -28360,7 +29116,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8739, + "line": 9051, "character": 4 } ], @@ -28374,7 +29130,7 @@ } }, { - "id": 2741, + "id": 2789, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -28397,7 +29153,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8722, + "line": 9034, "character": 4 } ], @@ -28414,7 +29170,7 @@ } }, { - "id": 2767, + "id": 2815, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -28452,7 +29208,7 @@ } }, { - "id": 2689, + "id": 2736, "name": "isContinuousLiveboardPDFEnabled", "kind": 1024, "kindString": "Property", @@ -28460,13 +29216,17 @@ "isOptional": true }, "comment": { - "shortText": "Enables the 'what you see is what you get' PDF export for Liveboards. Each tab is rendered on a single page\nfollowing the exact UI layout, instead of splitting visualizations across multiple A4 pages.\nThis feature is GA from version 26.5.0.cl. It is disabled by default in embed deployments.", + "shortText": "Enables the 'what you see is what you get' PDF export for Liveboards. Each tab is rendered on a single page\nfollowing the exact UI layout, instead of splitting visualizations across multiple A4 pages.\nThis feature is GA from SDK version 1.50.0 and ThoughtSpot version 26.8.0.cl.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", "tags": [ { "tag": "version", "text": "SDK: 1.48.0 | ThoughtSpot: 26.5.0.cl" }, + { + "tag": "default", + "text": "true" + }, { "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 isContinuousLiveboardPDFEnabled: true,\n})\n```\n" @@ -28476,7 +29236,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 637, + "line": 638, "character": 4 } ], @@ -28486,7 +29246,7 @@ } }, { - "id": 2769, + "id": 2817, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -28524,7 +29284,7 @@ } }, { - "id": 2691, + "id": 2738, "name": "isGranularXLSXCSVSchedulesEnabled", "kind": 1024, "kindString": "Property", @@ -28532,13 +29292,17 @@ "isOptional": true }, "comment": { - "shortText": "This flag is used to enable/disable the granular XLSX/CSV schedules feature", + "shortText": "This flag is used to enable/disable the granular XLSX/CSV schedules feature\nThis feature is GA from SDK version 1.50.0 and ThoughtSpot version 26.6.0.cl", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", "tags": [ { "tag": "version", "text": "SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl" }, + { + "tag": "default", + "text": "true" + }, { "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 isGranularXLSXCSVSchedulesEnabled: true,\n})\n```\n" @@ -28548,7 +29312,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 671, + "line": 676, "character": 4 } ], @@ -28558,7 +29322,7 @@ } }, { - "id": 2768, + "id": 2816, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -28596,7 +29360,7 @@ } }, { - "id": 2761, + "id": 2809, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -28638,7 +29402,7 @@ } }, { - "id": 2759, + "id": 2807, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -28676,7 +29440,7 @@ } }, { - "id": 2771, + "id": 2819, "name": "isLiveboardMasterpiecesEnabled", "kind": 1024, "kindString": "Property", @@ -28718,7 +29482,7 @@ } }, { - "id": 2687, + "id": 2734, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -28755,7 +29519,7 @@ } }, { - "id": 2690, + "id": 2737, "name": "isLiveboardXLSXCSVDownloadEnabled", "kind": 1024, "kindString": "Property", @@ -28763,13 +29527,17 @@ "isOptional": true }, "comment": { - "shortText": "This flag is used to enable/disable the XLSX/CSV download option for Liveboards", + "shortText": "This flag is used to enable/disable the XLSX/CSV download option for Liveboards\nThis feature is GA from SDK version 1.50.0 and ThoughtSpot version 26.6.0.cl", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", "tags": [ { "tag": "version", "text": "SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl" }, + { + "tag": "default", + "text": "true" + }, { "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 isLiveboardXLSXCSVDownloadEnabled: true,\n})\n```\n" @@ -28779,7 +29547,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 654, + "line": 657, "character": 4 } ], @@ -28789,7 +29557,7 @@ } }, { - "id": 2740, + "id": 2788, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -28809,7 +29577,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8706, + "line": 9018, "character": 4 } ], @@ -28823,7 +29591,7 @@ } }, { - "id": 2688, + "id": 2735, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -28857,7 +29625,7 @@ } }, { - "id": 2751, + "id": 2799, "name": "isThisPeriodInDateFiltersEnabled", "kind": 1024, "kindString": "Property", @@ -28895,7 +29663,7 @@ } }, { - "id": 2685, + "id": 2732, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -28933,7 +29701,7 @@ } }, { - "id": 2692, + "id": 2739, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -28960,7 +29728,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 688, + "line": 693, "character": 4 } ], @@ -28970,7 +29738,7 @@ } }, { - "id": 2694, + "id": 2741, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -28994,7 +29762,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 723, + "line": 728, "character": 4 } ], @@ -29004,7 +29772,7 @@ } }, { - "id": 2731, + "id": 2779, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -29042,7 +29810,7 @@ } }, { - "id": 2714, + "id": 2762, "name": "locale", "kind": 1024, "kindString": "Property", @@ -29080,7 +29848,7 @@ } }, { - "id": 2702, + "id": 2750, "name": "minimumHeight", "kind": 1024, "kindString": "Property", @@ -29107,7 +29875,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 867, + "line": 892, "character": 4 } ], @@ -29117,7 +29885,7 @@ } }, { - "id": 2680, + "id": 2727, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -29154,7 +29922,7 @@ } }, { - "id": 2772, + "id": 2820, "name": "newChartsLibrary", "kind": 1024, "kindString": "Property", @@ -29196,7 +29964,7 @@ } }, { - "id": 2686, + "id": 2733, "name": "newConnectionsExperience", "kind": 1024, "kindString": "Property", @@ -29234,7 +30002,7 @@ } }, { - "id": 2730, + "id": 2778, "name": "overrideHistoryState", "kind": 1024, "kindString": "Property", @@ -29272,7 +30040,7 @@ } }, { - "id": 2729, + "id": 2777, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -29310,7 +30078,7 @@ } }, { - "id": 2673, + "id": 2720, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -29340,12 +30108,12 @@ ], "type": { "type": "reference", - "id": 1934, + "id": 1955, "name": "Page" } }, { - "id": 2672, + "id": 2719, "name": "path", "kind": 1024, "kindString": "Property", @@ -29379,7 +30147,7 @@ } }, { - "id": 2724, + "id": 2772, "name": "preRenderContainer", "kind": 1024, "kindString": "Property", @@ -29426,7 +30194,7 @@ } }, { - "id": 2722, + "id": 2770, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -29464,7 +30232,7 @@ } }, { - "id": 2733, + "id": 2781, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -29502,7 +30270,7 @@ } }, { - "id": 2737, + "id": 2785, "name": "refreshAuthTokenOnNearExpiry", "kind": 1024, "kindString": "Property", @@ -29543,7 +30311,7 @@ } }, { - "id": 2754, + "id": 2802, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -29575,7 +30343,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2796, + "id": 2844, "name": "HomepageModule" } }, @@ -29585,7 +30353,7 @@ } }, { - "id": 2743, + "id": 2791, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -29617,7 +30385,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1956, + "id": 1977, "name": "RuntimeFilter" } }, @@ -29627,7 +30395,7 @@ } }, { - "id": 2744, + "id": 2792, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -29659,7 +30427,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3076, + "id": 3124, "name": "RuntimeParameter" } }, @@ -29669,7 +30437,7 @@ } }, { - "id": 2738, + "id": 2786, "name": "shouldBypassPayloadValidation", "kind": 1024, "kindString": "Property", @@ -29710,7 +30478,7 @@ } }, { - "id": 2735, + "id": 2783, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -29747,7 +30515,7 @@ } }, { - "id": 2758, + "id": 2806, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -29789,7 +30557,7 @@ } }, { - "id": 2764, + "id": 2812, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -29831,7 +30599,7 @@ } }, { - "id": 2757, + "id": 2805, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -29873,7 +30641,7 @@ } }, { - "id": 2762, + "id": 2810, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -29915,7 +30683,7 @@ } }, { - "id": 2770, + "id": 2818, "name": "showMaskedFilterChip", "kind": 1024, "kindString": "Property", @@ -29957,7 +30725,7 @@ } }, { - "id": 2663, + "id": 2710, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -29995,7 +30763,7 @@ } }, { - "id": 2699, + "id": 2746, "name": "spotterChatConfig", "kind": 1024, "kindString": "Property", @@ -30019,18 +30787,53 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 806, + "line": 815, "character": 4 } ], "type": { "type": "reference", - "id": 1514, + "id": 1516, "name": "SpotterChatViewConfig" } }, { - "id": 2698, + "id": 2747, + "name": "spotterShareConversationConfig", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Configuration for the Spotter conversation sharing feature.", + "text": "Supported embed types: `AppEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... //other embed view config\n spotterShareConversationConfig: {\n enableShareConversation: true,\n },\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 831, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 1540, + "name": "SpotterShareConversationConfig" + } + }, + { + "id": 2745, "name": "spotterSidebarConfig", "kind": 1024, "kindString": "Property", @@ -30047,25 +30850,25 @@ }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n // Deprecated standalone flag (backward compatibility)\n enablePastConversationsSidebar: false,\n // Recommended config; this value takes precedence\n spotterSidebarConfig: {\n enablePastConversationsSidebar: true,\n spotterSidebarTitle: 'My Conversations',\n },\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n // Deprecated standalone flag (backward compatibility)\n enablePastConversationsSidebar: false,\n // Recommended config; this value takes precedence\n spotterSidebarConfig: {\n enablePastConversationsSidebar: true,\n spotterSidebarTitle: 'My Conversations',\n // Opt in to pin/unpin conversations in embedded Spotter\n spotterChatPinConfig: {\n enabled: true,\n },\n },\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 788, + "line": 797, "character": 4 } ], "type": { "type": "reference", - "id": 1520, + "id": 1522, "name": "SpotterSidebarViewConfig" } }, { - "id": 2700, + "id": 2748, "name": "spotterViz", "kind": 1024, "kindString": "Property", @@ -30089,18 +30892,18 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 841, + "line": 866, "character": 4 } ], "type": { "type": "reference", - "id": 2641, + "id": 2688, "name": "SpotterVizConfig" } }, { - "id": 2674, + "id": 2721, "name": "tag", "kind": 1024, "kindString": "Property", @@ -30134,7 +30937,7 @@ } }, { - "id": 2695, + "id": 2742, "name": "updatedSpotterChatPrompt", "kind": 1024, "kindString": "Property", @@ -30162,7 +30965,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 739, + "line": 744, "character": 4 } ], @@ -30172,7 +30975,7 @@ } }, { - "id": 2739, + "id": 2787, "name": "useHostEventsV2", "kind": 1024, "kindString": "Property", @@ -30213,7 +31016,7 @@ } }, { - "id": 2713, + "id": 2761, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -30249,7 +31052,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -30259,7 +31062,7 @@ } }, { - "id": 2705, + "id": 2753, "name": "visualOverrides", "kind": 1024, "kindString": "Property", @@ -30278,13 +31081,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 902, + "line": 927, "character": 4 } ], "type": { "type": "reference", - "id": 3209, + "id": 3257, "name": "VisualizationOverrides" } } @@ -30294,105 +31097,106 @@ "title": "Properties", "kind": 1024, "children": [ - 2715, - 2748, - 2682, - 2745, - 2766, - 2736, - 2719, - 2683, - 2749, - 2696, - 2665, - 2728, - 2711, - 2710, - 2681, - 2723, - 2760, - 2765, - 2750, - 2703, - 2732, - 2704, - 2697, - 2666, - 2678, - 2701, - 2725, - 2746, - 2747, - 2727, - 2707, - 2679, - 2712, - 2755, - 2753, - 2752, - 2670, - 2667, - 2664, 2763, - 2756, - 2669, - 2668, - 2676, - 2671, - 2675, - 2684, - 2720, - 2742, - 2741, + 2796, + 2729, + 2793, + 2814, + 2784, 2767, - 2689, - 2769, - 2691, - 2768, - 2761, + 2730, + 2797, + 2743, + 2712, + 2776, 2759, + 2758, + 2728, 2771, - 2687, - 2690, - 2740, - 2688, + 2808, + 2813, + 2798, 2751, - 2685, - 2692, - 2694, - 2731, + 2780, + 2752, + 2744, + 2713, + 2725, + 2749, + 2773, + 2794, + 2795, + 2775, + 2755, + 2726, + 2760, + 2803, + 2801, + 2800, + 2717, 2714, - 2702, - 2680, - 2772, - 2686, - 2730, - 2729, - 2673, - 2672, - 2724, + 2711, + 2811, + 2804, + 2716, + 2715, + 2723, + 2718, 2722, - 2733, - 2737, - 2754, - 2743, - 2744, + 2731, + 2768, + 2790, + 2789, + 2815, + 2736, + 2817, 2738, + 2816, + 2809, + 2807, + 2819, + 2734, + 2737, + 2788, 2735, - 2758, - 2764, - 2757, + 2799, + 2732, + 2739, + 2741, + 2779, 2762, + 2750, + 2727, + 2820, + 2733, + 2778, + 2777, + 2720, + 2719, + 2772, 2770, - 2663, - 2699, - 2698, - 2700, - 2674, - 2695, - 2739, - 2713, - 2705 + 2781, + 2785, + 2802, + 2791, + 2792, + 2786, + 2783, + 2806, + 2812, + 2805, + 2810, + 2818, + 2710, + 2746, + 2747, + 2745, + 2748, + 2721, + 2742, + 2787, + 2761, + 2753 ] } ], @@ -30411,7 +31215,7 @@ ] }, { - "id": 1794, + "id": 1815, "name": "AuthEventEmitter", "kind": 256, "kindString": "Interface", @@ -30427,14 +31231,14 @@ }, "children": [ { - "id": 1831, + "id": 1852, "name": "emit", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1832, + "id": 1853, "name": "emit", "kind": 4096, "kindString": "Call signature", @@ -30444,19 +31248,19 @@ }, "parameters": [ { - "id": 1833, + "id": 1854, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1793, + "id": 1814, "name": "TRIGGER_SSO_POPUP" } }, { - "id": 1834, + "id": 1855, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -30480,14 +31284,14 @@ ] }, { - "id": 1835, + "id": 1856, "name": "off", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1836, + "id": 1857, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -30497,7 +31301,7 @@ }, "parameters": [ { - "id": 1837, + "id": 1858, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -30505,12 +31309,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1784, + "id": 1805, "name": "AuthStatus" } }, { - "id": 1838, + "id": 1859, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -30519,21 +31323,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1839, + "id": 1860, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1840, + "id": 1861, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1841, + "id": 1862, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -30559,7 +31363,7 @@ } }, { - "id": 1842, + "id": 1863, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -30571,7 +31375,7 @@ } }, { - "id": 1843, + "id": 1864, "name": "once", "kind": 32768, "kindString": "Parameter", @@ -30587,21 +31391,21 @@ ], "type": { "type": "reference", - "id": 1794, + "id": 1815, "name": "AuthEventEmitter" } } ] }, { - "id": 1795, + "id": 1816, "name": "on", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1796, + "id": 1817, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -30611,7 +31415,7 @@ }, "parameters": [ { - "id": 1797, + "id": 1818, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -30619,12 +31423,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1785, + "id": 1806, "name": "FAILURE" } }, { - "id": 1798, + "id": 1819, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -30635,28 +31439,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1799, + "id": 1820, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1800, + "id": 1821, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1801, + "id": 1822, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1777, + "id": 1798, "name": "AuthFailureType" } } @@ -30673,12 +31477,12 @@ ], "type": { "type": "reference", - "id": 1794, + "id": 1815, "name": "AuthEventEmitter" } }, { - "id": 1802, + "id": 1823, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -30688,7 +31492,7 @@ }, "parameters": [ { - "id": 1803, + "id": 1824, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -30699,29 +31503,29 @@ "types": [ { "type": "reference", - "id": 1786, + "id": 1807, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1789, + "id": 1810, "name": "LOGOUT" }, { "type": "reference", - "id": 1790, + "id": 1811, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1791, + "id": 1812, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1804, + "id": 1825, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -30732,14 +31536,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1805, + "id": 1826, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1806, + "id": 1827, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -30756,31 +31560,31 @@ ], "type": { "type": "reference", - "id": 1794, + "id": 1815, "name": "AuthEventEmitter" } }, { - "id": 1807, + "id": 1828, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1808, + "id": 1829, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1788, + "id": 1809, "name": "SUCCESS" } }, { - "id": 1809, + "id": 1830, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -30788,21 +31592,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1810, + "id": 1831, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1811, + "id": 1832, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1812, + "id": 1833, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -30825,40 +31629,40 @@ ], "type": { "type": "reference", - "id": 1794, + "id": 1815, "name": "AuthEventEmitter" } } ] }, { - "id": 1813, + "id": 1834, "name": "once", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1814, + "id": 1835, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1815, + "id": 1836, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1785, + "id": 1806, "name": "FAILURE" } }, { - "id": 1816, + "id": 1837, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -30866,28 +31670,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1817, + "id": 1838, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1818, + "id": 1839, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1819, + "id": 1840, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1777, + "id": 1798, "name": "AuthFailureType" } } @@ -30904,19 +31708,19 @@ ], "type": { "type": "reference", - "id": 1794, + "id": 1815, "name": "AuthEventEmitter" } }, { - "id": 1820, + "id": 1841, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1821, + "id": 1842, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -30926,29 +31730,29 @@ "types": [ { "type": "reference", - "id": 1786, + "id": 1807, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1789, + "id": 1810, "name": "LOGOUT" }, { "type": "reference", - "id": 1790, + "id": 1811, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1791, + "id": 1812, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1822, + "id": 1843, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -30956,14 +31760,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1823, + "id": 1844, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1824, + "id": 1845, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -30980,31 +31784,31 @@ ], "type": { "type": "reference", - "id": 1794, + "id": 1815, "name": "AuthEventEmitter" } }, { - "id": 1825, + "id": 1846, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1826, + "id": 1847, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1788, + "id": 1809, "name": "SUCCESS" } }, { - "id": 1827, + "id": 1848, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -31012,21 +31816,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1828, + "id": 1849, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1829, + "id": 1850, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1830, + "id": 1851, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -31049,21 +31853,21 @@ ], "type": { "type": "reference", - "id": 1794, + "id": 1815, "name": "AuthEventEmitter" } } ] }, { - "id": 1844, + "id": 1865, "name": "removeAllListeners", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1845, + "id": 1866, "name": "removeAllListeners", "kind": 4096, "kindString": "Call signature", @@ -31073,7 +31877,7 @@ }, "parameters": [ { - "id": 1846, + "id": 1867, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -31083,14 +31887,14 @@ }, "type": { "type": "reference", - "id": 1784, + "id": 1805, "name": "AuthStatus" } } ], "type": { "type": "reference", - "id": 1794, + "id": 1815, "name": "AuthEventEmitter" } } @@ -31102,11 +31906,11 @@ "title": "Methods", "kind": 2048, "children": [ - 1831, - 1835, - 1795, - 1813, - 1844 + 1852, + 1856, + 1816, + 1834, + 1865 ] } ], @@ -31299,7 +32103,7 @@ ], "type": { "type": "reference", - "id": 2820, + "id": 2868, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -31419,7 +32223,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -31618,7 +32422,7 @@ ], "type": { "type": "reference", - "id": 2778, + "id": 2826, "name": "FrameParams" }, "inheritedFrom": { @@ -31664,7 +32468,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -31737,7 +32541,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8739, + "line": 9051, "character": 4 } ], @@ -31775,7 +32579,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8722, + "line": 9034, "character": 4 } ], @@ -31813,7 +32617,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8706, + "line": 9018, "character": 4 } ], @@ -32271,7 +33075,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -32360,7 +33164,7 @@ ] }, { - "id": 1537, + "id": 1556, "name": "ConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -32380,7 +33184,7 @@ }, "children": [ { - "id": 1564, + "id": 1585, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -32411,20 +33215,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1565, + "id": 1586, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1566, + "id": 1587, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1567, + "id": 1588, "name": "key", "kind": 32768, "flags": {}, @@ -32456,12 +33260,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1487, + "id": 1489, "name": "SpotterEmbedViewConfig.additionalFlags" } }, { - "id": 1584, + "id": 1605, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -32506,12 +33310,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1507, + "id": 1509, "name": "SpotterEmbedViewConfig.customActions" } }, { - "id": 1568, + "id": 1589, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -32540,17 +33344,17 @@ ], "type": { "type": "reference", - "id": 2820, + "id": 2868, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1491, + "id": 1493, "name": "SpotterEmbedViewConfig.customizations" } }, { - "id": 1542, + "id": 1561, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -32578,7 +33382,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 220, + "line": 354, "character": 4 } ], @@ -32593,7 +33397,7 @@ } }, { - "id": 1550, + "id": 1569, "name": "defaultQueryMode", "kind": 1024, "kindString": "Property", @@ -32621,13 +33425,13 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 348, + "line": 482, "character": 4 } ], "type": { "type": "reference", - "id": 1534, + "id": 1537, "name": "SpotterQueryMode" }, "inheritedFrom": { @@ -32637,7 +33441,7 @@ } }, { - "id": 1577, + "id": 1598, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -32671,12 +33475,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1500, + "id": 1502, "name": "SpotterEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1540, + "id": 1559, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -32700,7 +33504,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 190, + "line": 324, "character": 4 } ], @@ -32715,7 +33519,7 @@ } }, { - "id": 1560, + "id": 1581, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -32749,12 +33553,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1483, + "id": 1485, "name": "SpotterEmbedViewConfig.disabledActionReason" } }, { - "id": 1559, + "id": 1580, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -32786,18 +33590,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1482, + "id": 1484, "name": "SpotterEmbedViewConfig.disabledActions" } }, { - "id": 1572, + "id": 1593, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -32834,12 +33638,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1495, + "id": 1497, "name": "SpotterEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1581, + "id": 1602, "name": "enableLinkOverridesV2", "kind": 1024, "kindString": "Property", @@ -32873,12 +33677,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1504, + "id": 1506, "name": "SpotterEmbedViewConfig.enableLinkOverridesV2" } }, { - "id": 1552, + "id": 1571, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -32906,7 +33710,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 367, + "line": 501, "character": 4 } ], @@ -32921,7 +33725,7 @@ } }, { - "id": 1551, + "id": 1570, "name": "enableStopAnswerGenerationEmbed", "kind": 1024, "kindString": "Property", @@ -32945,7 +33749,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 357, + "line": 491, "character": 4 } ], @@ -32960,7 +33764,7 @@ } }, { - "id": 1574, + "id": 1595, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -32994,12 +33798,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1497, + "id": 1499, "name": "SpotterEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1546, + "id": 1565, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -33023,7 +33827,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 284, + "line": 418, "character": 4 } ], @@ -33038,7 +33842,7 @@ } }, { - "id": 1548, + "id": 1567, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -33062,7 +33866,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 315, + "line": 449, "character": 4 } ], @@ -33077,7 +33881,7 @@ } }, { - "id": 1576, + "id": 1597, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -33110,12 +33914,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1499, + "id": 1501, "name": "SpotterEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1556, + "id": 1577, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -33145,17 +33949,17 @@ ], "type": { "type": "reference", - "id": 2778, + "id": 2826, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1479, + "id": 1481, "name": "SpotterEmbedViewConfig.frameParams" } }, { - "id": 1561, + "id": 1582, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -33191,18 +33995,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1484, + "id": 1486, "name": "SpotterEmbedViewConfig.hiddenActions" } }, { - "id": 1544, + "id": 1563, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -33226,7 +34030,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 251, + "line": 385, "character": 4 } ], @@ -33241,7 +34045,7 @@ } }, { - "id": 1541, + "id": 1560, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -33265,7 +34069,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 204, + "line": 338, "character": 4 } ], @@ -33280,7 +34084,7 @@ } }, { - "id": 1569, + "id": 1590, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -33314,12 +34118,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1492, + "id": 1494, "name": "SpotterEmbedViewConfig.insertAsSibling" } }, { - "id": 1590, + "id": 1611, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -33342,7 +34146,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8739, + "line": 9051, "character": 4 } ], @@ -33352,12 +34156,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1513, + "id": 1515, "name": "SpotterEmbedViewConfig.interceptTimeout" } }, { - "id": 1589, + "id": 1610, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -33380,7 +34184,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8722, + "line": 9034, "character": 4 } ], @@ -33393,12 +34197,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1512, + "id": 1514, "name": "SpotterEmbedViewConfig.interceptUrls" } }, { - "id": 1588, + "id": 1609, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -33418,7 +34222,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8706, + "line": 9018, "character": 4 } ], @@ -33428,12 +34232,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1511, + "id": 1513, "name": "SpotterEmbedViewConfig.isOnBeforeGetVizDataInterceptEnabled" } }, { - "id": 1580, + "id": 1601, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -33467,12 +34271,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1503, + "id": 1505, "name": "SpotterEmbedViewConfig.linkOverride" } }, { - "id": 1563, + "id": 1584, "name": "locale", "kind": 1024, "kindString": "Property", @@ -33506,12 +34310,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1486, + "id": 1488, "name": "SpotterEmbedViewConfig.locale" } }, { - "id": 1579, + "id": 1600, "name": "overrideHistoryState", "kind": 1024, "kindString": "Property", @@ -33545,12 +34349,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1502, + "id": 1504, "name": "SpotterEmbedViewConfig.overrideHistoryState" } }, { - "id": 1578, + "id": 1599, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -33584,12 +34388,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1501, + "id": 1503, "name": "SpotterEmbedViewConfig.overrideOrgId" } }, { - "id": 1573, + "id": 1594, "name": "preRenderContainer", "kind": 1024, "kindString": "Property", @@ -33632,12 +34436,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1496, + "id": 1498, "name": "SpotterEmbedViewConfig.preRenderContainer" } }, { - "id": 1571, + "id": 1592, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -33671,12 +34475,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1494, + "id": 1496, "name": "SpotterEmbedViewConfig.preRenderId" } }, { - "id": 1585, + "id": 1606, "name": "refreshAuthTokenOnNearExpiry", "kind": 1024, "kindString": "Property", @@ -33713,12 +34517,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1508, + "id": 1510, "name": "SpotterEmbedViewConfig.refreshAuthTokenOnNearExpiry" } }, { - "id": 1545, + "id": 1564, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -33742,7 +34546,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 272, + "line": 406, "character": 4 } ], @@ -33750,7 +34554,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1956, + "id": 1977, "name": "RuntimeFilter" } }, @@ -33761,7 +34565,7 @@ } }, { - "id": 1547, + "id": 1566, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -33785,7 +34589,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 303, + "line": 437, "character": 4 } ], @@ -33793,7 +34597,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3076, + "id": 3124, "name": "RuntimeParameter" } }, @@ -33804,7 +34608,7 @@ } }, { - "id": 1539, + "id": 1558, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -33817,7 +34621,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 175, + "line": 309, "character": 4 } ], @@ -33832,7 +34636,46 @@ } }, { - "id": 1586, + "id": 1575, + "name": "sharedConversationId", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The ID of a shared Spotter conversation to open directly in the read-only\nreader view. Use this to land a share recipient in the shared conversation\nwhen they open a host-configured `CONVERSATION_URL` share link: read the\n`{conversation-id}` from your page URL and pass it here.", + "text": "Requires the Spotter conversation-sharing feature to be enabled\n(`spotterShareConversationConfig.enableShareConversation`). The recipient\nmust be an authorized sharee — the server returns access-denied otherwise.\n\nSupported embed types: `SpotterEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst convId = new URLSearchParams(window.location.search).get('conversation-id');\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... //other embed view config\n sharedConversationId: convId,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 578, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 1479, + "name": "SpotterEmbedViewConfig.sharedConversationId" + } + }, + { + "id": 1607, "name": "shouldBypassPayloadValidation", "kind": 1024, "kindString": "Property", @@ -33869,12 +34712,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1509, + "id": 1511, "name": "SpotterEmbedViewConfig.shouldBypassPayloadValidation" } }, { - "id": 1583, + "id": 1604, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -33907,12 +34750,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1506, + "id": 1508, "name": "SpotterEmbedViewConfig.showAlerts" } }, { - "id": 1543, + "id": 1562, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -33936,7 +34779,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 236, + "line": 370, "character": 4 } ], @@ -33951,7 +34794,7 @@ } }, { - "id": 1554, + "id": 1573, "name": "spotterChatConfig", "kind": 1024, "kindString": "Property", @@ -33975,13 +34818,13 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 406, + "line": 540, "character": 4 } ], "type": { "type": "reference", - "id": 1514, + "id": 1516, "name": "SpotterChatViewConfig" }, "inheritedFrom": { @@ -33991,7 +34834,47 @@ } }, { - "id": 1553, + "id": 1574, + "name": "spotterShareConversationConfig", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Configuration for the Spotter conversation sharing feature.", + "text": "Supported embed types: `SpotterEmbed`, `AppEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... //other embed view config\n spotterShareConversationConfig: {\n enableShareConversation: true,\n },\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 556, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 1540, + "name": "SpotterShareConversationConfig" + }, + "inheritedFrom": { + "type": "reference", + "id": 1478, + "name": "SpotterEmbedViewConfig.spotterShareConversationConfig" + } + }, + { + "id": 1572, "name": "spotterSidebarConfig", "kind": 1024, "kindString": "Property", @@ -34015,13 +34898,13 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 388, + "line": 522, "character": 4 } ], "type": { "type": "reference", - "id": 1520, + "id": 1522, "name": "SpotterSidebarViewConfig" }, "inheritedFrom": { @@ -34031,7 +34914,7 @@ } }, { - "id": 1549, + "id": 1568, "name": "updatedSpotterChatPrompt", "kind": 1024, "kindString": "Property", @@ -34059,7 +34942,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 330, + "line": 464, "character": 4 } ], @@ -34074,7 +34957,7 @@ } }, { - "id": 1587, + "id": 1608, "name": "useHostEventsV2", "kind": 1024, "kindString": "Property", @@ -34111,12 +34994,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1510, + "id": 1512, "name": "SpotterEmbedViewConfig.useHostEventsV2" } }, { - "id": 1562, + "id": 1583, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -34152,18 +35035,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1485, + "id": 1487, "name": "SpotterEmbedViewConfig.visibleActions" } }, { - "id": 1538, + "id": 1557, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -34174,7 +35057,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 171, + "line": 305, "character": 4 } ], @@ -34194,57 +35077,59 @@ "title": "Properties", "kind": 1024, "children": [ - 1564, - 1584, - 1568, - 1542, - 1550, - 1577, - 1540, - 1560, - 1559, - 1572, - 1581, - 1552, - 1551, - 1574, - 1546, - 1548, - 1576, - 1556, + 1585, + 1605, + 1589, 1561, - 1544, - 1541, 1569, - 1590, - 1589, - 1588, + 1598, + 1559, + 1581, 1580, + 1593, + 1602, + 1571, + 1570, + 1595, + 1565, + 1567, + 1597, + 1577, + 1582, 1563, - 1579, - 1578, + 1560, + 1590, + 1611, + 1610, + 1609, + 1601, + 1584, + 1600, + 1599, + 1594, + 1592, + 1606, + 1564, + 1566, + 1558, + 1575, + 1607, + 1604, + 1562, 1573, - 1571, - 1585, - 1545, - 1547, - 1539, - 1586, + 1574, + 1572, + 1568, + 1608, 1583, - 1543, - 1554, - 1553, - 1549, - 1587, - 1562, - 1538 + 1557 ] } ], "sources": [ { "fileName": "embed/conversation.ts", - "line": 416, + "line": 588, "character": 17 } ], @@ -34257,7 +35142,7 @@ ] }, { - "id": 3118, + "id": 3166, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -34272,7 +35157,7 @@ }, "children": [ { - "id": 3119, + "id": 3167, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -34282,21 +35167,21 @@ "sources": [ { "fileName": "types.ts", - "line": 8232, + "line": 8544, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 3120, + "id": 3168, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 3121, + "id": 3169, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -34304,18 +35189,18 @@ "sources": [ { "fileName": "types.ts", - "line": 8233, + "line": 8545, "character": 8 } ], "type": { "type": "reference", - "id": 3115, + "id": 3163, "name": "VizPoint" } }, { - "id": 3122, + "id": 3170, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -34323,7 +35208,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8234, + "line": 8546, "character": 8 } ], @@ -34331,7 +35216,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3115, + "id": 3163, "name": "VizPoint" } } @@ -34342,8 +35227,8 @@ "title": "Properties", "kind": 1024, "children": [ - 3121, - 3122 + 3169, + 3170 ] } ] @@ -34351,7 +35236,7 @@ } }, { - "id": 3123, + "id": 3171, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -34359,21 +35244,21 @@ "sources": [ { "fileName": "types.ts", - "line": 8236, + "line": 8548, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 3124, + "id": 3172, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 3132, + "id": 3180, "name": "columns", "kind": 1024, "kindString": "Property", @@ -34381,7 +35266,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8244, + "line": 8556, "character": 8 } ], @@ -34394,7 +35279,7 @@ } }, { - "id": 3133, + "id": 3181, "name": "data", "kind": 1024, "kindString": "Property", @@ -34402,7 +35287,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8245, + "line": 8557, "character": 8 } ], @@ -34415,7 +35300,7 @@ } }, { - "id": 3126, + "id": 3174, "name": "id", "kind": 1024, "kindString": "Property", @@ -34423,7 +35308,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8238, + "line": 8550, "character": 8 } ], @@ -34433,7 +35318,7 @@ } }, { - "id": 3125, + "id": 3173, "name": "name", "kind": 1024, "kindString": "Property", @@ -34441,7 +35326,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8237, + "line": 8549, "character": 8 } ], @@ -34451,7 +35336,7 @@ } }, { - "id": 3127, + "id": 3175, "name": "sources", "kind": 1024, "kindString": "Property", @@ -34459,21 +35344,21 @@ "sources": [ { "fileName": "types.ts", - "line": 8239, + "line": 8551, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 3128, + "id": 3176, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 3129, + "id": 3177, "name": "header", "kind": 1024, "kindString": "Property", @@ -34481,21 +35366,21 @@ "sources": [ { "fileName": "types.ts", - "line": 8240, + "line": 8552, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 3130, + "id": 3178, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 3131, + "id": 3179, "name": "guid", "kind": 1024, "kindString": "Property", @@ -34503,7 +35388,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8241, + "line": 8553, "character": 16 } ], @@ -34518,7 +35403,7 @@ "title": "Properties", "kind": 1024, "children": [ - 3131 + 3179 ] } ] @@ -34531,7 +35416,7 @@ "title": "Properties", "kind": 1024, "children": [ - 3129 + 3177 ] } ] @@ -34544,23 +35429,23 @@ "title": "Properties", "kind": 1024, "children": [ - 3132, - 3133, - 3126, - 3125, - 3127 + 3180, + 3181, + 3174, + 3173, + 3175 ] } ], "indexSignature": { - "id": 3134, + "id": 3182, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 3135, + "id": 3183, "name": "key", "kind": 32768, "flags": {}, @@ -34579,7 +35464,7 @@ } }, { - "id": 3136, + "id": 3184, "name": "session", "kind": 1024, "kindString": "Property", @@ -34587,18 +35472,18 @@ "sources": [ { "fileName": "types.ts", - "line": 8248, + "line": 8560, "character": 4 } ], "type": { "type": "reference", - "id": 1924, + "id": 1945, "name": "SessionInterface" } }, { - "id": 3137, + "id": 3185, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -34608,7 +35493,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8249, + "line": 8561, "character": 4 } ], @@ -34623,23 +35508,23 @@ "title": "Properties", "kind": 1024, "children": [ - 3119, - 3123, - 3136, - 3137 + 3167, + 3171, + 3184, + 3185 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8231, + "line": 8543, "character": 17 } ] }, { - "id": 2842, + "id": 2890, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -34649,7 +35534,7 @@ }, "children": [ { - "id": 2896, + "id": 2944, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -34672,7 +35557,7 @@ } }, { - "id": 2895, + "id": 2943, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -34695,7 +35580,7 @@ } }, { - "id": 2865, + "id": 2913, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -34718,7 +35603,7 @@ } }, { - "id": 2866, + "id": 2914, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -34741,7 +35626,7 @@ } }, { - "id": 2868, + "id": 2916, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -34764,7 +35649,7 @@ } }, { - "id": 2867, + "id": 2915, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -34787,7 +35672,7 @@ } }, { - "id": 2847, + "id": 2895, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -34810,7 +35695,7 @@ } }, { - "id": 2908, + "id": 2956, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -34833,7 +35718,7 @@ } }, { - "id": 2909, + "id": 2957, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -34856,7 +35741,7 @@ } }, { - "id": 2906, + "id": 2954, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -34879,7 +35764,7 @@ } }, { - "id": 2907, + "id": 2955, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -34902,7 +35787,7 @@ } }, { - "id": 2870, + "id": 2918, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -34925,7 +35810,7 @@ } }, { - "id": 2875, + "id": 2923, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -34948,7 +35833,7 @@ } }, { - "id": 2872, + "id": 2920, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -34971,7 +35856,7 @@ } }, { - "id": 2874, + "id": 2922, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -34994,7 +35879,7 @@ } }, { - "id": 2873, + "id": 2921, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -35017,7 +35902,7 @@ } }, { - "id": 2871, + "id": 2919, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -35040,7 +35925,7 @@ } }, { - "id": 2880, + "id": 2928, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -35063,7 +35948,7 @@ } }, { - "id": 2877, + "id": 2925, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -35086,7 +35971,7 @@ } }, { - "id": 2879, + "id": 2927, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -35109,7 +35994,7 @@ } }, { - "id": 2878, + "id": 2926, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -35132,7 +36017,7 @@ } }, { - "id": 2876, + "id": 2924, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -35155,7 +36040,7 @@ } }, { - "id": 2884, + "id": 2932, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -35178,7 +36063,7 @@ } }, { - "id": 2883, + "id": 2931, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -35201,7 +36086,7 @@ } }, { - "id": 2882, + "id": 2930, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -35224,7 +36109,7 @@ } }, { - "id": 2881, + "id": 2929, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -35247,7 +36132,7 @@ } }, { - "id": 2869, + "id": 2917, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -35270,7 +36155,7 @@ } }, { - "id": 3004, + "id": 3052, "name": "--ts-var-cca-modal-summary-header-background", "kind": 1024, "kindString": "Property", @@ -35293,7 +36178,7 @@ } }, { - "id": 2999, + "id": 3047, "name": "--ts-var-change-analysis-insights-background", "kind": 1024, "kindString": "Property", @@ -35316,7 +36201,7 @@ } }, { - "id": 2994, + "id": 3042, "name": "--ts-var-chart-heatmap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -35339,7 +36224,7 @@ } }, { - "id": 2993, + "id": 3041, "name": "--ts-var-chart-heatmap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -35362,7 +36247,7 @@ } }, { - "id": 2996, + "id": 3044, "name": "--ts-var-chart-treemap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -35385,7 +36270,7 @@ } }, { - "id": 2995, + "id": 3043, "name": "--ts-var-chart-treemap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -35408,7 +36293,7 @@ } }, { - "id": 2931, + "id": 2979, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -35431,7 +36316,7 @@ } }, { - "id": 2934, + "id": 2982, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -35454,7 +36339,7 @@ } }, { - "id": 2929, + "id": 2977, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -35477,7 +36362,7 @@ } }, { - "id": 2932, + "id": 2980, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -35500,7 +36385,7 @@ } }, { - "id": 2933, + "id": 2981, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -35523,7 +36408,7 @@ } }, { - "id": 2928, + "id": 2976, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -35546,7 +36431,7 @@ } }, { - "id": 2930, + "id": 2978, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -35569,7 +36454,7 @@ } }, { - "id": 2901, + "id": 2949, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -35592,7 +36477,7 @@ } }, { - "id": 2900, + "id": 2948, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -35615,7 +36500,7 @@ } }, { - "id": 2903, + "id": 2951, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -35638,7 +36523,7 @@ } }, { - "id": 2902, + "id": 2950, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -35661,7 +36546,7 @@ } }, { - "id": 2899, + "id": 2947, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -35684,7 +36569,7 @@ } }, { - "id": 2897, + "id": 2945, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -35707,7 +36592,7 @@ } }, { - "id": 2898, + "id": 2946, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -35730,7 +36615,7 @@ } }, { - "id": 2904, + "id": 2952, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -35753,7 +36638,7 @@ } }, { - "id": 2905, + "id": 2953, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -35776,7 +36661,7 @@ } }, { - "id": 2916, + "id": 2964, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -35799,7 +36684,7 @@ } }, { - "id": 2917, + "id": 2965, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -35822,7 +36707,7 @@ } }, { - "id": 2920, + "id": 2968, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -35845,7 +36730,7 @@ } }, { - "id": 2918, + "id": 2966, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -35868,7 +36753,7 @@ } }, { - "id": 2919, + "id": 2967, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -35891,7 +36776,7 @@ } }, { - "id": 2927, + "id": 2975, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -35914,7 +36799,7 @@ } }, { - "id": 2926, + "id": 2974, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -35937,7 +36822,7 @@ } }, { - "id": 2925, + "id": 2973, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -35960,7 +36845,7 @@ } }, { - "id": 2924, + "id": 2972, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -35983,7 +36868,7 @@ } }, { - "id": 2992, + "id": 3040, "name": "--ts-var-kpi-analyze-text-color", "kind": 1024, "kindString": "Property", @@ -36006,7 +36891,7 @@ } }, { - "id": 2991, + "id": 3039, "name": "--ts-var-kpi-comparison-color", "kind": 1024, "kindString": "Property", @@ -36029,7 +36914,7 @@ } }, { - "id": 2990, + "id": 3038, "name": "--ts-var-kpi-hero-color", "kind": 1024, "kindString": "Property", @@ -36052,7 +36937,7 @@ } }, { - "id": 2998, + "id": 3046, "name": "--ts-var-kpi-negative-change-color", "kind": 1024, "kindString": "Property", @@ -36075,7 +36960,7 @@ } }, { - "id": 2997, + "id": 3045, "name": "--ts-var-kpi-positive-change-color", "kind": 1024, "kindString": "Property", @@ -36098,7 +36983,7 @@ } }, { - "id": 2922, + "id": 2970, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -36121,7 +37006,7 @@ } }, { - "id": 2921, + "id": 2969, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -36144,7 +37029,7 @@ } }, { - "id": 2951, + "id": 2999, "name": "--ts-var-liveboard-answer-viz-padding", "kind": 1024, "kindString": "Property", @@ -36167,7 +37052,7 @@ } }, { - "id": 2964, + "id": 3012, "name": "--ts-var-liveboard-chip--active-background", "kind": 1024, "kindString": "Property", @@ -36191,7 +37076,7 @@ } }, { - "id": 2963, + "id": 3011, "name": "--ts-var-liveboard-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -36215,7 +37100,7 @@ } }, { - "id": 2961, + "id": 3009, "name": "--ts-var-liveboard-chip-background", "kind": 1024, "kindString": "Property", @@ -36239,7 +37124,7 @@ } }, { - "id": 2962, + "id": 3010, "name": "--ts-var-liveboard-chip-color", "kind": 1024, "kindString": "Property", @@ -36263,7 +37148,7 @@ } }, { - "id": 2969, + "id": 3017, "name": "--ts-var-liveboard-cross-filter-layout-background", "kind": 1024, "kindString": "Property", @@ -36286,7 +37171,7 @@ } }, { - "id": 2967, + "id": 3015, "name": "--ts-var-liveboard-dual-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -36309,7 +37194,7 @@ } }, { - "id": 2966, + "id": 3014, "name": "--ts-var-liveboard-edit-bar-background", "kind": 1024, "kindString": "Property", @@ -36332,7 +37217,7 @@ } }, { - "id": 3053, + "id": 3101, "name": "--ts-var-liveboard-edit-toolbar-border", "kind": 1024, "kindString": "Property", @@ -36355,7 +37240,7 @@ } }, { - "id": 3057, + "id": 3105, "name": "--ts-var-liveboard-edit-toolbar-hover-background", "kind": 1024, "kindString": "Property", @@ -36378,7 +37263,7 @@ } }, { - "id": 3058, + "id": 3106, "name": "--ts-var-liveboard-edit-toolbar-hover-text-color", "kind": 1024, "kindString": "Property", @@ -36401,7 +37286,7 @@ } }, { - "id": 3054, + "id": 3102, "name": "--ts-var-liveboard-edit-toolbar-selected-background", "kind": 1024, "kindString": "Property", @@ -36424,7 +37309,7 @@ } }, { - "id": 3055, + "id": 3103, "name": "--ts-var-liveboard-edit-toolbar-selected-text-color", "kind": 1024, "kindString": "Property", @@ -36447,7 +37332,7 @@ } }, { - "id": 3056, + "id": 3104, "name": "--ts-var-liveboard-edit-toolbar-text", "kind": 1024, "kindString": "Property", @@ -36470,7 +37355,7 @@ } }, { - "id": 2952, + "id": 3000, "name": "--ts-var-liveboard-group-background", "kind": 1024, "kindString": "Property", @@ -36494,7 +37379,7 @@ } }, { - "id": 2953, + "id": 3001, "name": "--ts-var-liveboard-group-border-color", "kind": 1024, "kindString": "Property", @@ -36518,7 +37403,7 @@ } }, { - "id": 2957, + "id": 3005, "name": "--ts-var-liveboard-group-description-font-color", "kind": 1024, "kindString": "Property", @@ -36542,7 +37427,7 @@ } }, { - "id": 2945, + "id": 2993, "name": "--ts-var-liveboard-group-padding", "kind": 1024, "kindString": "Property", @@ -36566,7 +37451,7 @@ } }, { - "id": 2960, + "id": 3008, "name": "--ts-var-liveboard-group-tile-background", "kind": 1024, "kindString": "Property", @@ -36590,7 +37475,7 @@ } }, { - "id": 2959, + "id": 3007, "name": "--ts-var-liveboard-group-tile-description-font-color", "kind": 1024, "kindString": "Property", @@ -36614,7 +37499,7 @@ } }, { - "id": 2950, + "id": 2998, "name": "--ts-var-liveboard-group-tile-padding", "kind": 1024, "kindString": "Property", @@ -36638,7 +37523,7 @@ } }, { - "id": 2958, + "id": 3006, "name": "--ts-var-liveboard-group-tile-title-font-color", "kind": 1024, "kindString": "Property", @@ -36662,7 +37547,7 @@ } }, { - "id": 2948, + "id": 2996, "name": "--ts-var-liveboard-group-tile-title-font-size", "kind": 1024, "kindString": "Property", @@ -36686,7 +37571,7 @@ } }, { - "id": 2949, + "id": 2997, "name": "--ts-var-liveboard-group-tile-title-font-weight", "kind": 1024, "kindString": "Property", @@ -36710,7 +37595,7 @@ } }, { - "id": 2956, + "id": 3004, "name": "--ts-var-liveboard-group-title-font-color", "kind": 1024, "kindString": "Property", @@ -36734,7 +37619,7 @@ } }, { - "id": 2946, + "id": 2994, "name": "--ts-var-liveboard-group-title-font-size", "kind": 1024, "kindString": "Property", @@ -36758,7 +37643,7 @@ } }, { - "id": 2947, + "id": 2995, "name": "--ts-var-liveboard-group-title-font-weight", "kind": 1024, "kindString": "Property", @@ -36782,7 +37667,7 @@ } }, { - "id": 2983, + "id": 3031, "name": "--ts-var-liveboard-header-action-button-active-color", "kind": 1024, "kindString": "Property", @@ -36805,7 +37690,7 @@ } }, { - "id": 2980, + "id": 3028, "name": "--ts-var-liveboard-header-action-button-background", "kind": 1024, "kindString": "Property", @@ -36828,7 +37713,7 @@ } }, { - "id": 2981, + "id": 3029, "name": "--ts-var-liveboard-header-action-button-font-color", "kind": 1024, "kindString": "Property", @@ -36851,7 +37736,7 @@ } }, { - "id": 2982, + "id": 3030, "name": "--ts-var-liveboard-header-action-button-hover-color", "kind": 1024, "kindString": "Property", @@ -36874,7 +37759,7 @@ } }, { - "id": 2936, + "id": 2984, "name": "--ts-var-liveboard-header-background", "kind": 1024, "kindString": "Property", @@ -36897,7 +37782,7 @@ } }, { - "id": 2989, + "id": 3037, "name": "--ts-var-liveboard-header-badge-active-color", "kind": 1024, "kindString": "Property", @@ -36920,7 +37805,7 @@ } }, { - "id": 2984, + "id": 3032, "name": "--ts-var-liveboard-header-badge-background", "kind": 1024, "kindString": "Property", @@ -36943,7 +37828,7 @@ } }, { - "id": 2985, + "id": 3033, "name": "--ts-var-liveboard-header-badge-font-color", "kind": 1024, "kindString": "Property", @@ -36966,7 +37851,7 @@ } }, { - "id": 2988, + "id": 3036, "name": "--ts-var-liveboard-header-badge-hover-color", "kind": 1024, "kindString": "Property", @@ -36989,7 +37874,7 @@ } }, { - "id": 2986, + "id": 3034, "name": "--ts-var-liveboard-header-badge-modified-background", "kind": 1024, "kindString": "Property", @@ -37012,7 +37897,7 @@ } }, { - "id": 2987, + "id": 3035, "name": "--ts-var-liveboard-header-badge-modified-font-color", "kind": 1024, "kindString": "Property", @@ -37035,7 +37920,7 @@ } }, { - "id": 2937, + "id": 2985, "name": "--ts-var-liveboard-header-font-color", "kind": 1024, "kindString": "Property", @@ -37058,7 +37943,7 @@ } }, { - "id": 2941, + "id": 2989, "name": "--ts-var-liveboard-insight-tile-background", "kind": 1024, "kindString": "Property", @@ -37081,7 +37966,7 @@ } }, { - "id": 2940, + "id": 2988, "name": "--ts-var-liveboard-insight-tile-font-color", "kind": 1024, "kindString": "Property", @@ -37104,7 +37989,7 @@ } }, { - "id": 2935, + "id": 2983, "name": "--ts-var-liveboard-layout-background", "kind": 1024, "kindString": "Property", @@ -37127,7 +38012,7 @@ } }, { - "id": 2955, + "id": 3003, "name": "--ts-var-liveboard-notetitle-body-font-color", "kind": 1024, "kindString": "Property", @@ -37150,7 +38035,7 @@ } }, { - "id": 2954, + "id": 3002, "name": "--ts-var-liveboard-notetitle-heading-font-color", "kind": 1024, "kindString": "Property", @@ -37173,7 +38058,7 @@ } }, { - "id": 2968, + "id": 3016, "name": "--ts-var-liveboard-single-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -37196,7 +38081,7 @@ } }, { - "id": 3023, + "id": 3071, "name": "--ts-var-liveboard-styling-button-active-background", "kind": 1024, "kindString": "Property", @@ -37219,7 +38104,7 @@ } }, { - "id": 3020, + "id": 3068, "name": "--ts-var-liveboard-styling-button-background", "kind": 1024, "kindString": "Property", @@ -37242,7 +38127,7 @@ } }, { - "id": 3022, + "id": 3070, "name": "--ts-var-liveboard-styling-button-hover-background", "kind": 1024, "kindString": "Property", @@ -37265,7 +38150,7 @@ } }, { - "id": 3024, + "id": 3072, "name": "--ts-var-liveboard-styling-button-hover-text-color", "kind": 1024, "kindString": "Property", @@ -37288,7 +38173,7 @@ } }, { - "id": 3025, + "id": 3073, "name": "--ts-var-liveboard-styling-button-shadow", "kind": 1024, "kindString": "Property", @@ -37311,7 +38196,7 @@ } }, { - "id": 3021, + "id": 3069, "name": "--ts-var-liveboard-styling-button-text-color", "kind": 1024, "kindString": "Property", @@ -37334,7 +38219,7 @@ } }, { - "id": 3026, + "id": 3074, "name": "--ts-var-liveboard-styling-color-palette-background", "kind": 1024, "kindString": "Property", @@ -37357,7 +38242,7 @@ } }, { - "id": 3019, + "id": 3067, "name": "--ts-var-liveboard-styling-panel-border-color", "kind": 1024, "kindString": "Property", @@ -37380,7 +38265,7 @@ } }, { - "id": 3018, + "id": 3066, "name": "--ts-var-liveboard-styling-panel-text-color", "kind": 1024, "kindString": "Property", @@ -37403,7 +38288,7 @@ } }, { - "id": 2970, + "id": 3018, "name": "--ts-var-liveboard-tab-active-border-color", "kind": 1024, "kindString": "Property", @@ -37426,7 +38311,7 @@ } }, { - "id": 2971, + "id": 3019, "name": "--ts-var-liveboard-tab-hover-color", "kind": 1024, "kindString": "Property", @@ -37449,7 +38334,7 @@ } }, { - "id": 2939, + "id": 2987, "name": "--ts-var-liveboard-tile-background", "kind": 1024, "kindString": "Property", @@ -37472,7 +38357,7 @@ } }, { - "id": 2938, + "id": 2986, "name": "--ts-var-liveboard-tile-border-color", "kind": 1024, "kindString": "Property", @@ -37495,7 +38380,7 @@ } }, { - "id": 2942, + "id": 2990, "name": "--ts-var-liveboard-tile-border-radius", "kind": 1024, "kindString": "Property", @@ -37518,7 +38403,7 @@ } }, { - "id": 2943, + "id": 2991, "name": "--ts-var-liveboard-tile-padding", "kind": 1024, "kindString": "Property", @@ -37541,7 +38426,7 @@ } }, { - "id": 2944, + "id": 2992, "name": "--ts-var-liveboard-tile-table-header-background", "kind": 1024, "kindString": "Property", @@ -37564,7 +38449,7 @@ } }, { - "id": 2972, + "id": 3020, "name": "--ts-var-liveboard-tile-title-fontsize", "kind": 1024, "kindString": "Property", @@ -37587,7 +38472,7 @@ } }, { - "id": 2973, + "id": 3021, "name": "--ts-var-liveboard-tile-title-fontweight", "kind": 1024, "kindString": "Property", @@ -37610,7 +38495,7 @@ } }, { - "id": 2914, + "id": 2962, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -37633,7 +38518,7 @@ } }, { - "id": 2911, + "id": 2959, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -37656,7 +38541,7 @@ } }, { - "id": 2910, + "id": 2958, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -37679,7 +38564,7 @@ } }, { - "id": 2912, + "id": 2960, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -37702,7 +38587,7 @@ } }, { - "id": 2915, + "id": 2963, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -37725,7 +38610,7 @@ } }, { - "id": 2913, + "id": 2961, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -37748,7 +38633,7 @@ } }, { - "id": 2848, + "id": 2896, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -37771,7 +38656,7 @@ } }, { - "id": 2849, + "id": 2897, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -37794,7 +38679,7 @@ } }, { - "id": 2978, + "id": 3026, "name": "--ts-var-parameter-chip-active-background", "kind": 1024, "kindString": "Property", @@ -37817,7 +38702,7 @@ } }, { - "id": 2979, + "id": 3027, "name": "--ts-var-parameter-chip-active-text-color", "kind": 1024, "kindString": "Property", @@ -37840,7 +38725,7 @@ } }, { - "id": 2974, + "id": 3022, "name": "--ts-var-parameter-chip-background", "kind": 1024, "kindString": "Property", @@ -37863,7 +38748,7 @@ } }, { - "id": 2976, + "id": 3024, "name": "--ts-var-parameter-chip-hover-background", "kind": 1024, "kindString": "Property", @@ -37886,7 +38771,7 @@ } }, { - "id": 2977, + "id": 3025, "name": "--ts-var-parameter-chip-hover-text-color", "kind": 1024, "kindString": "Property", @@ -37909,7 +38794,7 @@ } }, { - "id": 2975, + "id": 3023, "name": "--ts-var-parameter-chip-text-color", "kind": 1024, "kindString": "Property", @@ -37932,7 +38817,7 @@ } }, { - "id": 2843, + "id": 2891, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -37955,7 +38840,7 @@ } }, { - "id": 2844, + "id": 2892, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -37978,7 +38863,7 @@ } }, { - "id": 2845, + "id": 2893, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -38001,7 +38886,7 @@ } }, { - "id": 2846, + "id": 2894, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -38024,7 +38909,7 @@ } }, { - "id": 3007, + "id": 3055, "name": "--ts-var-saved-chats-bg", "kind": 1024, "kindString": "Property", @@ -38047,7 +38932,7 @@ } }, { - "id": 3006, + "id": 3054, "name": "--ts-var-saved-chats-border-color", "kind": 1024, "kindString": "Property", @@ -38070,7 +38955,7 @@ } }, { - "id": 3011, + "id": 3059, "name": "--ts-var-saved-chats-btn-bg", "kind": 1024, "kindString": "Property", @@ -38093,7 +38978,7 @@ } }, { - "id": 3012, + "id": 3060, "name": "--ts-var-saved-chats-btn-hover-bg", "kind": 1024, "kindString": "Property", @@ -38116,7 +39001,7 @@ } }, { - "id": 3015, + "id": 3063, "name": "--ts-var-saved-chats-conv-active-bg", "kind": 1024, "kindString": "Property", @@ -38139,7 +39024,7 @@ } }, { - "id": 3014, + "id": 3062, "name": "--ts-var-saved-chats-conv-hover-bg", "kind": 1024, "kindString": "Property", @@ -38162,7 +39047,7 @@ } }, { - "id": 3013, + "id": 3061, "name": "--ts-var-saved-chats-conv-text-color", "kind": 1024, "kindString": "Property", @@ -38185,7 +39070,7 @@ } }, { - "id": 3016, + "id": 3064, "name": "--ts-var-saved-chats-footer-border", "kind": 1024, "kindString": "Property", @@ -38208,7 +39093,7 @@ } }, { - "id": 3009, + "id": 3057, "name": "--ts-var-saved-chats-header-border", "kind": 1024, "kindString": "Property", @@ -38231,7 +39116,7 @@ } }, { - "id": 3017, + "id": 3065, "name": "--ts-var-saved-chats-section-title-color", "kind": 1024, "kindString": "Property", @@ -38254,7 +39139,7 @@ } }, { - "id": 3008, + "id": 3056, "name": "--ts-var-saved-chats-text-color", "kind": 1024, "kindString": "Property", @@ -38277,7 +39162,7 @@ } }, { - "id": 3010, + "id": 3058, "name": "--ts-var-saved-chats-title-color", "kind": 1024, "kindString": "Property", @@ -38300,7 +39185,7 @@ } }, { - "id": 2857, + "id": 2905, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -38323,7 +39208,7 @@ } }, { - "id": 2861, + "id": 2909, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -38346,7 +39231,7 @@ } }, { - "id": 2862, + "id": 2910, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -38369,7 +39254,7 @@ } }, { - "id": 2860, + "id": 2908, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -38392,7 +39277,7 @@ } }, { - "id": 2856, + "id": 2904, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -38415,7 +39300,7 @@ } }, { - "id": 2859, + "id": 2907, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -38438,7 +39323,7 @@ } }, { - "id": 2853, + "id": 2901, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -38461,7 +39346,7 @@ } }, { - "id": 2854, + "id": 2902, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -38484,7 +39369,7 @@ } }, { - "id": 2855, + "id": 2903, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -38507,7 +39392,7 @@ } }, { - "id": 2850, + "id": 2898, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -38530,7 +39415,7 @@ } }, { - "id": 2851, + "id": 2899, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -38553,7 +39438,7 @@ } }, { - "id": 2852, + "id": 2900, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -38576,7 +39461,7 @@ } }, { - "id": 2858, + "id": 2906, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -38599,7 +39484,7 @@ } }, { - "id": 2923, + "id": 2971, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -38622,7 +39507,7 @@ } }, { - "id": 3069, + "id": 3117, "name": "--ts-var-share-chat-header-background", "kind": 1024, "kindString": "Property", @@ -38645,7 +39530,7 @@ } }, { - "id": 3068, + "id": 3116, "name": "--ts-var-share-chat-header-container-background", "kind": 1024, "kindString": "Property", @@ -38668,7 +39553,7 @@ } }, { - "id": 3072, + "id": 3120, "name": "--ts-var-share-chat-header-input-background", "kind": 1024, "kindString": "Property", @@ -38691,7 +39576,7 @@ } }, { - "id": 3073, + "id": 3121, "name": "--ts-var-share-chat-header-input-border-color", "kind": 1024, "kindString": "Property", @@ -38714,7 +39599,7 @@ } }, { - "id": 3071, + "id": 3119, "name": "--ts-var-share-chat-header-input-text-color", "kind": 1024, "kindString": "Property", @@ -38737,7 +39622,7 @@ } }, { - "id": 3070, + "id": 3118, "name": "--ts-var-share-chat-header-title-color", "kind": 1024, "kindString": "Property", @@ -38760,7 +39645,7 @@ } }, { - "id": 3065, + "id": 3113, "name": "--ts-var-shared-conv-header-background", "kind": 1024, "kindString": "Property", @@ -38783,7 +39668,7 @@ } }, { - "id": 3066, + "id": 3114, "name": "--ts-var-shared-conv-header-border-color", "kind": 1024, "kindString": "Property", @@ -38806,7 +39691,7 @@ } }, { - "id": 3067, + "id": 3115, "name": "--ts-var-shared-conv-title-color", "kind": 1024, "kindString": "Property", @@ -38829,7 +39714,7 @@ } }, { - "id": 3074, + "id": 3122, "name": "--ts-var-shimmer-background", "kind": 1024, "kindString": "Property", @@ -38852,7 +39737,7 @@ } }, { - "id": 3075, + "id": 3123, "name": "--ts-var-shimmer-sweep-background", "kind": 1024, "kindString": "Property", @@ -38875,7 +39760,7 @@ } }, { - "id": 2965, + "id": 3013, "name": "--ts-var-side-panel-width", "kind": 1024, "kindString": "Property", @@ -38898,7 +39783,7 @@ } }, { - "id": 3003, + "id": 3051, "name": "--ts-var-spotiq-analyze-crosscorrelation-card-background", "kind": 1024, "kindString": "Property", @@ -38921,7 +39806,7 @@ } }, { - "id": 3000, + "id": 3048, "name": "--ts-var-spotiq-analyze-forecasting-card-background", "kind": 1024, "kindString": "Property", @@ -38944,7 +39829,7 @@ } }, { - "id": 3001, + "id": 3049, "name": "--ts-var-spotiq-analyze-outlier-card-background", "kind": 1024, "kindString": "Property", @@ -38967,7 +39852,7 @@ } }, { - "id": 3002, + "id": 3050, "name": "--ts-var-spotiq-analyze-trend-card-background", "kind": 1024, "kindString": "Property", @@ -38990,7 +39875,7 @@ } }, { - "id": 3005, + "id": 3053, "name": "--ts-var-spotter-chat-width", "kind": 1024, "kindString": "Property", @@ -39013,7 +39898,7 @@ } }, { - "id": 2863, + "id": 2911, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -39036,7 +39921,7 @@ } }, { - "id": 2864, + "id": 2912, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -39059,7 +39944,7 @@ } }, { - "id": 3060, + "id": 3108, "name": "--ts-var-spotterviz-border-color", "kind": 1024, "kindString": "Property", @@ -39082,7 +39967,7 @@ } }, { - "id": 3032, + "id": 3080, "name": "--ts-var-spotterviz-emptystate-spotterviz-color", "kind": 1024, "kindString": "Property", @@ -39105,7 +39990,7 @@ } }, { - "id": 3061, + "id": 3109, "name": "--ts-var-spotterviz-expanded-border-color", "kind": 1024, "kindString": "Property", @@ -39128,7 +40013,7 @@ } }, { - "id": 3059, + "id": 3107, "name": "--ts-var-spotterviz-footer-text-color", "kind": 1024, "kindString": "Property", @@ -39151,7 +40036,7 @@ } }, { - "id": 3028, + "id": 3076, "name": "--ts-var-spotterviz-input-background", "kind": 1024, "kindString": "Property", @@ -39174,7 +40059,7 @@ } }, { - "id": 3030, + "id": 3078, "name": "--ts-var-spotterviz-input-cta-color", "kind": 1024, "kindString": "Property", @@ -39197,7 +40082,7 @@ } }, { - "id": 3031, + "id": 3079, "name": "--ts-var-spotterviz-input-cta-hover-color", "kind": 1024, "kindString": "Property", @@ -39220,7 +40105,7 @@ } }, { - "id": 3029, + "id": 3077, "name": "--ts-var-spotterviz-input-placeholder-color", "kind": 1024, "kindString": "Property", @@ -39243,7 +40128,7 @@ } }, { - "id": 3051, + "id": 3099, "name": "--ts-var-spotterviz-last-checkpoint-background", "kind": 1024, "kindString": "Property", @@ -39266,7 +40151,7 @@ } }, { - "id": 3052, + "id": 3100, "name": "--ts-var-spotterviz-last-checkpoint-border", "kind": 1024, "kindString": "Property", @@ -39289,7 +40174,7 @@ } }, { - "id": 3037, + "id": 3085, "name": "--ts-var-spotterviz-message-background", "kind": 1024, "kindString": "Property", @@ -39312,7 +40197,7 @@ } }, { - "id": 3027, + "id": 3075, "name": "--ts-var-spotterviz-panel-background", "kind": 1024, "kindString": "Property", @@ -39335,7 +40220,7 @@ } }, { - "id": 3033, + "id": 3081, "name": "--ts-var-spotterviz-prompt-card-background", "kind": 1024, "kindString": "Property", @@ -39358,7 +40243,7 @@ } }, { - "id": 3034, + "id": 3082, "name": "--ts-var-spotterviz-prompt-card-hover-background", "kind": 1024, "kindString": "Property", @@ -39381,7 +40266,7 @@ } }, { - "id": 3062, + "id": 3110, "name": "--ts-var-spotterviz-reference-icon-hover-background", "kind": 1024, "kindString": "Property", @@ -39404,7 +40289,7 @@ } }, { - "id": 3064, + "id": 3112, "name": "--ts-var-spotterviz-reference-icon-selected-background", "kind": 1024, "kindString": "Property", @@ -39427,7 +40312,7 @@ } }, { - "id": 3063, + "id": 3111, "name": "--ts-var-spotterviz-reference-icon-selected-color", "kind": 1024, "kindString": "Property", @@ -39450,7 +40335,7 @@ } }, { - "id": 3035, + "id": 3083, "name": "--ts-var-spotterviz-text-primary", "kind": 1024, "kindString": "Property", @@ -39473,7 +40358,7 @@ } }, { - "id": 3036, + "id": 3084, "name": "--ts-var-spotterviz-text-secondary", "kind": 1024, "kindString": "Property", @@ -39496,7 +40381,7 @@ } }, { - "id": 3041, + "id": 3089, "name": "--ts-var-spotterviz-thinking-completed-header-color", "kind": 1024, "kindString": "Property", @@ -39519,7 +40404,7 @@ } }, { - "id": 3043, + "id": 3091, "name": "--ts-var-spotterviz-thinking-cta-hover-background", "kind": 1024, "kindString": "Property", @@ -39542,7 +40427,7 @@ } }, { - "id": 3040, + "id": 3088, "name": "--ts-var-spotterviz-thinking-inprogress-header-color", "kind": 1024, "kindString": "Property", @@ -39565,7 +40450,7 @@ } }, { - "id": 3042, + "id": 3090, "name": "--ts-var-spotterviz-thinking-work-done-icon-color", "kind": 1024, "kindString": "Property", @@ -39588,7 +40473,7 @@ } }, { - "id": 3046, + "id": 3094, "name": "--ts-var-spotterviz-tool-border-color", "kind": 1024, "kindString": "Property", @@ -39611,7 +40496,7 @@ } }, { - "id": 3044, + "id": 3092, "name": "--ts-var-spotterviz-tool-call-background", "kind": 1024, "kindString": "Property", @@ -39634,7 +40519,7 @@ } }, { - "id": 3048, + "id": 3096, "name": "--ts-var-spotterviz-tool-feedback-button-background", "kind": 1024, "kindString": "Property", @@ -39657,7 +40542,7 @@ } }, { - "id": 3049, + "id": 3097, "name": "--ts-var-spotterviz-tool-feedback-button-hover", "kind": 1024, "kindString": "Property", @@ -39680,7 +40565,7 @@ } }, { - "id": 3047, + "id": 3095, "name": "--ts-var-spotterviz-tool-json-input-background", "kind": 1024, "kindString": "Property", @@ -39703,7 +40588,7 @@ } }, { - "id": 3050, + "id": 3098, "name": "--ts-var-spotterviz-tool-json-input-color", "kind": 1024, "kindString": "Property", @@ -39726,7 +40611,7 @@ } }, { - "id": 3045, + "id": 3093, "name": "--ts-var-spotterviz-tool-title-color", "kind": 1024, "kindString": "Property", @@ -39749,7 +40634,7 @@ } }, { - "id": 3039, + "id": 3087, "name": "--ts-var-spotterviz-usermessage-icon-background", "kind": 1024, "kindString": "Property", @@ -39772,7 +40657,7 @@ } }, { - "id": 3038, + "id": 3086, "name": "--ts-var-spotterviz-usermessage-icon-hover", "kind": 1024, "kindString": "Property", @@ -39795,7 +40680,7 @@ } }, { - "id": 2893, + "id": 2941, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -39818,7 +40703,7 @@ } }, { - "id": 2891, + "id": 2939, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -39841,7 +40726,7 @@ } }, { - "id": 2892, + "id": 2940, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -39864,7 +40749,7 @@ } }, { - "id": 2888, + "id": 2936, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -39887,7 +40772,7 @@ } }, { - "id": 2889, + "id": 2937, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -39910,7 +40795,7 @@ } }, { - "id": 2890, + "id": 2938, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -39933,7 +40818,7 @@ } }, { - "id": 2894, + "id": 2942, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -39956,7 +40841,7 @@ } }, { - "id": 2885, + "id": 2933, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -39979,7 +40864,7 @@ } }, { - "id": 2886, + "id": 2934, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -40002,7 +40887,7 @@ } }, { - "id": 2887, + "id": 2935, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -40030,239 +40915,239 @@ "title": "Properties", "kind": 1024, "children": [ - 2896, - 2895, - 2865, - 2866, - 2868, - 2867, - 2847, - 2908, - 2909, - 2906, - 2907, - 2870, - 2875, - 2872, - 2874, - 2873, - 2871, - 2880, - 2877, - 2879, - 2878, - 2876, - 2884, - 2883, - 2882, - 2881, - 2869, - 3004, - 2999, - 2994, - 2993, - 2996, - 2995, - 2931, - 2934, - 2929, - 2932, - 2933, - 2928, - 2930, - 2901, - 2900, - 2903, - 2902, - 2899, - 2897, - 2898, - 2904, - 2905, + 2944, + 2943, + 2913, + 2914, 2916, - 2917, - 2920, + 2915, + 2895, + 2956, + 2957, + 2954, + 2955, 2918, + 2923, + 2920, + 2922, + 2921, 2919, + 2928, + 2925, 2927, 2926, - 2925, 2924, - 2992, - 2991, - 2990, - 2998, - 2997, - 2922, - 2921, + 2932, + 2931, + 2930, + 2929, + 2917, + 3052, + 3047, + 3042, + 3041, + 3044, + 3043, + 2979, + 2982, + 2977, + 2980, + 2981, + 2976, + 2978, + 2949, + 2948, 2951, - 2964, - 2963, - 2961, - 2962, - 2969, - 2967, - 2966, - 3053, - 3057, - 3058, - 3054, - 3055, - 3056, - 2952, - 2953, - 2957, - 2945, - 2960, - 2959, 2950, - 2958, - 2948, - 2949, - 2956, - 2946, 2947, - 2983, - 2980, - 2981, - 2982, - 2936, - 2989, - 2984, - 2985, - 2988, - 2986, - 2987, - 2937, - 2941, - 2940, - 2935, - 2955, - 2954, + 2945, + 2946, + 2952, + 2953, + 2964, + 2965, 2968, - 3023, - 3020, - 3022, - 3024, - 3025, - 3021, - 3026, - 3019, - 3018, - 2970, - 2971, - 2939, - 2938, - 2942, - 2943, - 2944, - 2972, - 2973, - 2914, - 2911, - 2910, - 2912, - 2915, - 2913, - 2848, - 2849, - 2978, - 2979, - 2974, - 2976, - 2977, + 2966, + 2967, 2975, - 2843, - 2844, - 2845, - 2846, - 3007, - 3006, - 3011, + 2974, + 2973, + 2972, + 3040, + 3039, + 3038, + 3046, + 3045, + 2970, + 2969, + 2999, 3012, - 3015, - 3014, - 3013, - 3016, + 3011, 3009, - 3017, - 3008, 3010, - 2857, - 2861, - 2862, - 2860, - 2856, - 2859, - 2853, - 2854, - 2855, - 2850, - 2851, - 2852, - 2858, - 2923, - 3069, - 3068, - 3072, - 3073, - 3071, - 3070, - 3065, - 3066, - 3067, - 3074, - 3075, - 2965, - 3003, + 3017, + 3015, + 3014, + 3101, + 3105, + 3106, + 3102, + 3103, + 3104, 3000, 3001, - 3002, 3005, - 2863, - 2864, - 3060, - 3032, - 3061, - 3059, - 3028, - 3030, + 2993, + 3008, + 3007, + 2998, + 3006, + 2996, + 2997, + 3004, + 2994, + 2995, 3031, + 3028, 3029, - 3051, - 3052, + 3030, + 2984, 3037, - 3027, + 3032, 3033, + 3036, 3034, + 3035, + 2985, + 2989, + 2988, + 2983, + 3003, + 3002, + 3016, + 3071, + 3068, + 3070, + 3072, + 3073, + 3069, + 3074, + 3067, + 3066, + 3018, + 3019, + 2987, + 2986, + 2990, + 2991, + 2992, + 3020, + 3021, + 2962, + 2959, + 2958, + 2960, + 2963, + 2961, + 2896, + 2897, + 3026, + 3027, + 3022, + 3024, + 3025, + 3023, + 2891, + 2892, + 2893, + 2894, + 3055, + 3054, + 3059, + 3060, + 3063, 3062, + 3061, 3064, - 3063, - 3035, - 3036, - 3041, - 3043, - 3040, - 3042, - 3046, - 3044, + 3057, + 3065, + 3056, + 3058, + 2905, + 2909, + 2910, + 2908, + 2904, + 2907, + 2901, + 2902, + 2903, + 2898, + 2899, + 2900, + 2906, + 2971, + 3117, + 3116, + 3120, + 3121, + 3119, + 3118, + 3113, + 3114, + 3115, + 3122, + 3123, + 3013, + 3051, 3048, 3049, - 3047, 3050, - 3045, - 3039, - 3038, - 2893, - 2891, - 2892, - 2888, - 2889, - 2890, - 2894, - 2885, - 2886, - 2887 + 3053, + 2911, + 2912, + 3108, + 3080, + 3109, + 3107, + 3076, + 3078, + 3079, + 3077, + 3099, + 3100, + 3085, + 3075, + 3081, + 3082, + 3110, + 3112, + 3111, + 3083, + 3084, + 3089, + 3091, + 3088, + 3090, + 3094, + 3092, + 3096, + 3097, + 3095, + 3098, + 3093, + 3087, + 3086, + 2941, + 2939, + 2940, + 2936, + 2937, + 2938, + 2942, + 2933, + 2934, + 2935 ] } ], @@ -40275,7 +41160,7 @@ ] }, { - "id": 2830, + "id": 2878, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -40285,7 +41170,7 @@ }, "children": [ { - "id": 2832, + "id": 2880, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -40301,12 +41186,12 @@ ], "type": { "type": "reference", - "id": 2833, + "id": 2881, "name": "customCssInterface" } }, { - "id": 2831, + "id": 2879, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -40331,8 +41216,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2832, - 2831 + 2880, + 2879 ] } ], @@ -40345,7 +41230,7 @@ ] }, { - "id": 2820, + "id": 2868, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -40361,7 +41246,7 @@ }, "children": [ { - "id": 2822, + "id": 2870, "name": "content", "kind": 1024, "kindString": "Property", @@ -40378,14 +41263,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2823, + "id": 2871, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2825, + "id": 2873, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -40415,7 +41300,7 @@ } }, { - "id": 2826, + "id": 2874, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -40435,7 +41320,7 @@ } }, { - "id": 2824, + "id": 2872, "name": "strings", "kind": 1024, "kindString": "Property", @@ -40478,21 +41363,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2825, - 2826, - 2824 + 2873, + 2874, + 2872 ] } ], "indexSignature": { - "id": 2827, + "id": 2875, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2828, + "id": 2876, "name": "key", "kind": 32768, "flags": {}, @@ -40511,7 +41396,7 @@ } }, { - "id": 2829, + "id": 2877, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -40531,7 +41416,7 @@ } }, { - "id": 2821, + "id": 2869, "name": "style", "kind": 1024, "kindString": "Property", @@ -40547,7 +41432,7 @@ ], "type": { "type": "reference", - "id": 2830, + "id": 2878, "name": "CustomStyles" } } @@ -40557,9 +41442,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2822, - 2829, - 2821 + 2870, + 2877, + 2869 ] } ], @@ -40572,7 +41457,7 @@ ] }, { - "id": 2375, + "id": 2422, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -40588,7 +41473,7 @@ }, "children": [ { - "id": 2416, + "id": 2463, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -40618,20 +41503,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2417, + "id": 2464, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2418, + "id": 2465, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2419, + "id": 2466, "name": "key", "kind": 32768, "flags": {}, @@ -40663,7 +41548,7 @@ } }, { - "id": 2378, + "id": 2425, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -40686,7 +41571,7 @@ } }, { - "id": 2398, + "id": 2445, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -40728,7 +41613,7 @@ } }, { - "id": 2400, + "id": 2447, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -40757,7 +41642,7 @@ } }, { - "id": 2377, + "id": 2424, "name": "authType", "kind": 1024, "kindString": "Property", @@ -40774,12 +41659,12 @@ ], "type": { "type": "reference", - "id": 1944, + "id": 1965, "name": "AuthType" } }, { - "id": 2390, + "id": 2437, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -40808,7 +41693,7 @@ } }, { - "id": 2401, + "id": 2448, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -40841,7 +41726,7 @@ } }, { - "id": 2393, + "id": 2440, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -40870,7 +41755,7 @@ } }, { - "id": 2425, + "id": 2472, "name": "cleanupTimeout", "kind": 1024, "kindString": "Property", @@ -40903,7 +41788,7 @@ } }, { - "id": 2413, + "id": 2460, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -40932,7 +41817,7 @@ } }, { - "id": 2423, + "id": 2470, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -40976,7 +41861,7 @@ } }, { - "id": 2420, + "id": 2467, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -41019,7 +41904,7 @@ } }, { - "id": 2397, + "id": 2444, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -41044,12 +41929,12 @@ ], "type": { "type": "reference", - "id": 2820, + "id": 2868, "name": "CustomisationsInterface" } }, { - "id": 2411, + "id": 2458, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -41078,7 +41963,7 @@ } }, { - "id": 2395, + "id": 2442, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -41108,7 +41993,7 @@ } }, { - "id": 2422, + "id": 2469, "name": "disableFullscreenPresentation", "kind": 1024, "kindString": "Property", @@ -41145,7 +42030,7 @@ } }, { - "id": 2415, + "id": 2462, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -41174,7 +42059,7 @@ } }, { - "id": 2391, + "id": 2438, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -41207,7 +42092,7 @@ } }, { - "id": 2421, + "id": 2468, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -41227,7 +42112,7 @@ } }, { - "id": 2389, + "id": 2436, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -41256,7 +42141,7 @@ } }, { - "id": 2384, + "id": 2431, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -41290,7 +42175,7 @@ } }, { - "id": 2409, + "id": 2456, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -41323,12 +42208,12 @@ ], "type": { "type": "reference", - "id": 3079, + "id": 3127, "name": "LogLevel" } }, { - "id": 2392, + "id": 2439, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -41357,7 +42242,7 @@ } }, { - "id": 2383, + "id": 2430, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -41390,7 +42275,7 @@ } }, { - "id": 2412, + "id": 2459, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -41419,7 +42304,7 @@ } }, { - "id": 2382, + "id": 2429, "name": "password", "kind": 1024, "kindString": "Property", @@ -41443,7 +42328,7 @@ } }, { - "id": 2407, + "id": 2454, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -41472,7 +42357,7 @@ } }, { - "id": 2394, + "id": 2441, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -41505,7 +42390,7 @@ } }, { - "id": 2385, + "id": 2432, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -41535,7 +42420,7 @@ } }, { - "id": 2387, + "id": 2434, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -41564,7 +42449,7 @@ } }, { - "id": 2408, + "id": 2455, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -41593,7 +42478,7 @@ } }, { - "id": 2388, + "id": 2435, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -41622,7 +42507,7 @@ } }, { - "id": 2396, + "id": 2443, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -41651,7 +42536,7 @@ } }, { - "id": 2376, + "id": 2423, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -41672,7 +42557,7 @@ } }, { - "id": 2399, + "id": 2446, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -41695,7 +42580,7 @@ } }, { - "id": 2381, + "id": 2428, "name": "username", "kind": 1024, "kindString": "Property", @@ -41718,7 +42603,7 @@ } }, { - "id": 2424, + "id": 2471, "name": "waitForCleanupOnDestroy", "kind": 1024, "kindString": "Property", @@ -41751,7 +42636,7 @@ } }, { - "id": 2379, + "id": 2426, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -41767,7 +42652,7 @@ ], "signatures": [ { - "id": 2380, + "id": 2427, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -41795,50 +42680,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2416, - 2378, - 2398, - 2400, - 2377, - 2390, - 2401, - 2393, + 2463, 2425, - 2413, + 2445, + 2447, + 2424, + 2437, + 2448, + 2440, + 2472, + 2460, + 2470, + 2467, + 2444, + 2458, + 2442, + 2469, + 2462, + 2438, + 2468, + 2436, + 2431, + 2456, + 2439, + 2430, + 2459, + 2429, + 2454, + 2441, + 2432, + 2434, + 2455, + 2435, + 2443, 2423, - 2420, - 2397, - 2411, - 2395, - 2422, - 2415, - 2391, - 2421, - 2389, - 2384, - 2409, - 2392, - 2383, - 2412, - 2382, - 2407, - 2394, - 2385, - 2387, - 2408, - 2388, - 2396, - 2376, - 2399, - 2381, - 2424 + 2446, + 2428, + 2471 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2379 + 2426 ] } ], @@ -41851,7 +42736,7 @@ ] }, { - "id": 3198, + "id": 3246, "name": "EmbedErrorDetailsEvent", "kind": 256, "kindString": "Interface", @@ -41880,7 +42765,7 @@ }, "children": [ { - "id": 3201, + "id": 3249, "name": "code", "kind": 1024, "kindString": "Property", @@ -41891,18 +42776,18 @@ "sources": [ { "fileName": "types.ts", - "line": 8616, + "line": 8928, "character": 4 } ], "type": { "type": "reference", - "id": 3180, + "id": 3228, "name": "EmbedErrorCodes" } }, { - "id": 3199, + "id": 3247, "name": "errorType", "kind": 1024, "kindString": "Property", @@ -41913,18 +42798,18 @@ "sources": [ { "fileName": "types.ts", - "line": 8612, + "line": 8924, "character": 4 } ], "type": { "type": "reference", - "id": 3204, + "id": 3252, "name": "ErrorDetailsTypes" } }, { - "id": 3200, + "id": 3248, "name": "message", "kind": 1024, "kindString": "Property", @@ -41935,7 +42820,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8614, + "line": 8926, "character": 4 } ], @@ -41962,21 +42847,21 @@ "title": "Properties", "kind": 1024, "children": [ - 3201, - 3199, - 3200 + 3249, + 3247, + 3248 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8610, + "line": 8922, "character": 17 } ], "indexSignature": { - "id": 3202, + "id": 3250, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -41986,7 +42871,7 @@ }, "parameters": [ { - "id": 3203, + "id": 3251, "name": "key", "kind": 32768, "flags": {}, @@ -42003,7 +42888,7 @@ } }, { - "id": 2778, + "id": 2826, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -42019,7 +42904,7 @@ }, "children": [ { - "id": 2780, + "id": 2828, "name": "height", "kind": 1024, "kindString": "Property", @@ -42051,7 +42936,7 @@ } }, { - "id": 2781, + "id": 2829, "name": "loading", "kind": 1024, "kindString": "Property", @@ -42087,7 +42972,7 @@ } }, { - "id": 2779, + "id": 2827, "name": "width", "kind": 1024, "kindString": "Property", @@ -42124,9 +43009,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2780, - 2781, - 2779 + 2828, + 2829, + 2827 ] } ], @@ -42138,7 +43023,7 @@ } ], "indexSignature": { - "id": 2782, + "id": 2830, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -42148,7 +43033,7 @@ }, "parameters": [ { - "id": 2783, + "id": 2831, "name": "key", "kind": 32768, "flags": {}, @@ -42182,7 +43067,7 @@ } }, { - "id": 2543, + "id": 2590, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -42198,7 +43083,7 @@ }, "children": [ { - "id": 2555, + "id": 2602, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -42232,7 +43117,7 @@ } }, { - "id": 2587, + "id": 2634, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -42263,20 +43148,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2588, + "id": 2635, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2589, + "id": 2636, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2590, + "id": 2637, "name": "key", "kind": 32768, "flags": {}, @@ -42312,7 +43197,7 @@ } }, { - "id": 2620, + "id": 2667, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -42354,7 +43239,7 @@ } }, { - "id": 2617, + "id": 2664, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -42384,7 +43269,7 @@ ], "type": { "type": "reference", - "id": 2371, + "id": 2418, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -42393,7 +43278,7 @@ } }, { - "id": 2634, + "id": 2681, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -42431,7 +43316,7 @@ } }, { - "id": 2608, + "id": 2655, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -42480,7 +43365,7 @@ } }, { - "id": 2591, + "id": 2638, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -42509,7 +43394,7 @@ ], "type": { "type": "reference", - "id": 2820, + "id": 2868, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -42518,7 +43403,7 @@ } }, { - "id": 2621, + "id": 2668, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -42560,7 +43445,7 @@ } }, { - "id": 2545, + "id": 2592, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -42602,7 +43487,7 @@ } }, { - "id": 2600, + "id": 2647, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -42640,7 +43525,7 @@ } }, { - "id": 2583, + "id": 2630, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -42678,7 +43563,7 @@ } }, { - "id": 2582, + "id": 2629, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -42710,7 +43595,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -42720,7 +43605,7 @@ } }, { - "id": 2595, + "id": 2642, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -42761,7 +43646,7 @@ } }, { - "id": 2628, + "id": 2675, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -42803,7 +43688,7 @@ } }, { - "id": 2633, + "id": 2680, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -42845,7 +43730,7 @@ } }, { - "id": 2622, + "id": 2669, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -42887,7 +43772,7 @@ } }, { - "id": 2604, + "id": 2651, "name": "enableLinkOverridesV2", "kind": 1024, "kindString": "Property", @@ -42925,7 +43810,7 @@ } }, { - "id": 2577, + "id": 2624, "name": "enableLiveboardDataCache", "kind": 1024, "kindString": "Property", @@ -42948,7 +43833,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 606, + "line": 611, "character": 4 } ], @@ -42958,7 +43843,7 @@ } }, { - "id": 2570, + "id": 2617, "name": "enableScrollableContainerLazyLoading", "kind": 1024, "kindString": "Property", @@ -42978,7 +43863,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 477, + "line": 482, "character": 4 } ], @@ -42988,7 +43873,7 @@ } }, { - "id": 2574, + "id": 2621, "name": "enableStopAnswerGenerationEmbed", "kind": 1024, "kindString": "Property", @@ -43012,7 +43897,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 540, + "line": 545, "character": 4 } ], @@ -43022,7 +43907,7 @@ } }, { - "id": 2597, + "id": 2644, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -43060,7 +43945,7 @@ } }, { - "id": 2547, + "id": 2594, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -43097,7 +43982,7 @@ } }, { - "id": 2618, + "id": 2665, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -43135,7 +44020,7 @@ } }, { - "id": 2619, + "id": 2666, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -43173,7 +44058,7 @@ } }, { - "id": 2599, + "id": 2646, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -43210,7 +44095,7 @@ } }, { - "id": 2579, + "id": 2626, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -43240,7 +44125,7 @@ ], "type": { "type": "reference", - "id": 2778, + "id": 2826, "name": "FrameParams" }, "inheritedFrom": { @@ -43249,7 +44134,7 @@ } }, { - "id": 2544, + "id": 2591, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -43283,7 +44168,7 @@ } }, { - "id": 2584, + "id": 2631, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -43319,7 +44204,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -43329,7 +44214,7 @@ } }, { - "id": 2562, + "id": 2609, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -43366,7 +44251,7 @@ } }, { - "id": 2631, + "id": 2678, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -43408,7 +44293,7 @@ } }, { - "id": 2624, + "id": 2671, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -43450,7 +44335,7 @@ } }, { - "id": 2557, + "id": 2604, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -43484,7 +44369,7 @@ } }, { - "id": 2592, + "id": 2639, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -43522,7 +44407,7 @@ } }, { - "id": 2614, + "id": 2661, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -43545,7 +44430,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8739, + "line": 9051, "character": 4 } ], @@ -43559,7 +44444,7 @@ } }, { - "id": 2613, + "id": 2660, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -43582,7 +44467,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8722, + "line": 9034, "character": 4 } ], @@ -43599,7 +44484,7 @@ } }, { - "id": 2635, + "id": 2682, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -43637,7 +44522,7 @@ } }, { - "id": 2566, + "id": 2613, "name": "isContinuousLiveboardPDFEnabled", "kind": 1024, "kindString": "Property", @@ -43645,13 +44530,17 @@ "isOptional": true }, "comment": { - "shortText": "Enables the 'what you see is what you get' PDF export for Liveboards. Each tab is rendered on a single page\nfollowing the exact UI layout, instead of splitting visualizations across multiple A4 pages.\nThis feature is GA from version 26.5.0.cl. It is disabled by default in embed deployments.", + "shortText": "Enables the 'what you see is what you get' PDF export for Liveboards. Each tab is rendered on a single page\nfollowing the exact UI layout, instead of splitting visualizations across multiple A4 pages.\nThis feature is GA from SDK version 1.50.0 and ThoughtSpot version 26.8.0.cl.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", "tags": [ { "tag": "version", "text": "SDK: 1.48.0 | ThoughtSpot: 26.5.0.cl" }, + { + "tag": "default", + "text": "true" + }, { "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 isContinuousLiveboardPDFEnabled: true,\n})\n```\n" @@ -43661,7 +44550,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 419, + "line": 420, "character": 4 } ], @@ -43671,7 +44560,7 @@ } }, { - "id": 2637, + "id": 2684, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -43709,7 +44598,7 @@ } }, { - "id": 2568, + "id": 2615, "name": "isGranularXLSXCSVSchedulesEnabled", "kind": 1024, "kindString": "Property", @@ -43717,13 +44606,17 @@ "isOptional": true }, "comment": { - "shortText": "This flag is used to enable/disable the granular XLSX/CSV schedules feature", + "shortText": "This flag is used to enable/disable the granular XLSX/CSV schedules feature\nThis feature is GA from SDK version 1.50.0 and ThoughtSpot version 26.6.0.cl.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", "tags": [ { "tag": "version", "text": "SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl" }, + { + "tag": "default", + "text": "true" + }, { "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 isGranularXLSXCSVSchedulesEnabled: true,\n})\n```\n" @@ -43733,7 +44626,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 451, + "line": 456, "character": 4 } ], @@ -43743,7 +44636,7 @@ } }, { - "id": 2636, + "id": 2683, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -43781,7 +44674,7 @@ } }, { - "id": 2629, + "id": 2676, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -43823,7 +44716,7 @@ } }, { - "id": 2627, + "id": 2674, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -43861,7 +44754,7 @@ } }, { - "id": 2639, + "id": 2686, "name": "isLiveboardMasterpiecesEnabled", "kind": 1024, "kindString": "Property", @@ -43903,7 +44796,7 @@ } }, { - "id": 2564, + "id": 2611, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -43940,7 +44833,7 @@ } }, { - "id": 2567, + "id": 2614, "name": "isLiveboardXLSXCSVDownloadEnabled", "kind": 1024, "kindString": "Property", @@ -43948,13 +44841,17 @@ "isOptional": true }, "comment": { - "shortText": "This flag is used to enable/disable the XLSX/CSV download option for Liveboards", + "shortText": "This flag is used to enable/disable the XLSX/CSV download option for Liveboards\nThis feature is GA from SDK version 1.50.0 and ThoughtSpot version 26.6.0.cl.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", "tags": [ { "tag": "version", "text": "SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl" }, + { + "tag": "default", + "text": "true" + }, { "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 isLiveboardXLSXCSVDownloadEnabled: true,\n})\n```\n" @@ -43964,7 +44861,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 435, + "line": 438, "character": 4 } ], @@ -43974,7 +44871,7 @@ } }, { - "id": 2612, + "id": 2659, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -43994,7 +44891,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8706, + "line": 9018, "character": 4 } ], @@ -44008,7 +44905,7 @@ } }, { - "id": 2565, + "id": 2612, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -44042,7 +44939,7 @@ } }, { - "id": 2623, + "id": 2670, "name": "isThisPeriodInDateFiltersEnabled", "kind": 1024, "kindString": "Property", @@ -44080,7 +44977,7 @@ } }, { - "id": 2569, + "id": 2616, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -44107,7 +45004,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 467, + "line": 472, "character": 4 } ], @@ -44117,7 +45014,7 @@ } }, { - "id": 2571, + "id": 2618, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -44141,7 +45038,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 500, + "line": 505, "character": 4 } ], @@ -44151,7 +45048,7 @@ } }, { - "id": 2603, + "id": 2650, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -44189,7 +45086,7 @@ } }, { - "id": 2548, + "id": 2595, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -44223,7 +45120,7 @@ } }, { - "id": 2554, + "id": 2601, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -44257,7 +45154,7 @@ } }, { - "id": 2586, + "id": 2633, "name": "locale", "kind": 1024, "kindString": "Property", @@ -44295,7 +45192,7 @@ } }, { - "id": 2546, + "id": 2593, "name": "minimumHeight", "kind": 1024, "kindString": "Property", @@ -44332,7 +45229,7 @@ } }, { - "id": 2640, + "id": 2687, "name": "newChartsLibrary", "kind": 1024, "kindString": "Property", @@ -44374,7 +45271,7 @@ } }, { - "id": 2602, + "id": 2649, "name": "overrideHistoryState", "kind": 1024, "kindString": "Property", @@ -44412,7 +45309,7 @@ } }, { - "id": 2601, + "id": 2648, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -44450,7 +45347,7 @@ } }, { - "id": 2556, + "id": 2603, "name": "personalizedViewId", "kind": 1024, "kindString": "Property", @@ -44484,7 +45381,7 @@ } }, { - "id": 2596, + "id": 2643, "name": "preRenderContainer", "kind": 1024, "kindString": "Property", @@ -44531,7 +45428,7 @@ } }, { - "id": 2594, + "id": 2641, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -44569,7 +45466,7 @@ } }, { - "id": 2551, + "id": 2598, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -44603,7 +45500,7 @@ } }, { - "id": 2605, + "id": 2652, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -44641,7 +45538,7 @@ } }, { - "id": 2609, + "id": 2656, "name": "refreshAuthTokenOnNearExpiry", "kind": 1024, "kindString": "Property", @@ -44682,7 +45579,7 @@ } }, { - "id": 2615, + "id": 2662, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -44714,7 +45611,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1956, + "id": 1977, "name": "RuntimeFilter" } }, @@ -44724,7 +45621,7 @@ } }, { - "id": 2616, + "id": 2663, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -44756,7 +45653,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3076, + "id": 3124, "name": "RuntimeParameter" } }, @@ -44766,7 +45663,7 @@ } }, { - "id": 2610, + "id": 2657, "name": "shouldBypassPayloadValidation", "kind": 1024, "kindString": "Property", @@ -44807,7 +45704,7 @@ } }, { - "id": 2607, + "id": 2654, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -44844,7 +45741,7 @@ } }, { - "id": 2626, + "id": 2673, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -44886,7 +45783,7 @@ } }, { - "id": 2632, + "id": 2679, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -44928,7 +45825,7 @@ } }, { - "id": 2625, + "id": 2672, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -44970,7 +45867,7 @@ } }, { - "id": 2630, + "id": 2677, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -45012,7 +45909,7 @@ } }, { - "id": 2638, + "id": 2685, "name": "showMaskedFilterChip", "kind": 1024, "kindString": "Property", @@ -45054,7 +45951,7 @@ } }, { - "id": 2558, + "id": 2605, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -45088,7 +45985,7 @@ } }, { - "id": 2572, + "id": 2619, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -45111,7 +46008,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 516, + "line": 521, "character": 4 } ], @@ -45121,7 +46018,7 @@ } }, { - "id": 2575, + "id": 2622, "name": "spotterChatConfig", "kind": 1024, "kindString": "Property", @@ -45145,18 +46042,18 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 558, + "line": 563, "character": 4 } ], "type": { "type": "reference", - "id": 1514, + "id": 1516, "name": "SpotterChatViewConfig" } }, { - "id": 2576, + "id": 2623, "name": "spotterViz", "kind": 1024, "kindString": "Property", @@ -45180,18 +46077,18 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 593, + "line": 598, "character": 4 } ], "type": { "type": "reference", - "id": 2641, + "id": 2688, "name": "SpotterVizConfig" } }, { - "id": 2573, + "id": 2620, "name": "updatedSpotterChatPrompt", "kind": 1024, "kindString": "Property", @@ -45219,7 +46116,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 531, + "line": 536, "character": 4 } ], @@ -45229,7 +46126,7 @@ } }, { - "id": 2611, + "id": 2658, "name": "useHostEventsV2", "kind": 1024, "kindString": "Property", @@ -45270,7 +46167,7 @@ } }, { - "id": 2585, + "id": 2632, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -45306,7 +46203,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -45316,7 +46213,7 @@ } }, { - "id": 2563, + "id": 2610, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -45353,7 +46250,7 @@ } }, { - "id": 2552, + "id": 2599, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -45390,7 +46287,7 @@ } }, { - "id": 2550, + "id": 2597, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -45429,89 +46326,89 @@ "title": "Properties", "kind": 1024, "children": [ - 2555, - 2587, - 2620, - 2617, + 2602, 2634, - 2608, - 2591, - 2621, - 2545, - 2600, - 2583, - 2582, - 2595, - 2628, - 2633, - 2622, - 2604, - 2577, - 2570, - 2574, - 2597, - 2547, - 2618, - 2619, - 2599, - 2579, - 2544, - 2584, - 2562, - 2631, - 2624, - 2557, + 2667, + 2664, + 2681, + 2655, + 2638, + 2668, 2592, - 2614, - 2613, - 2635, - 2566, - 2637, - 2568, - 2636, + 2647, + 2630, 2629, - 2627, - 2639, - 2564, - 2567, - 2612, - 2565, - 2623, - 2569, - 2571, - 2603, - 2548, - 2554, - 2586, - 2546, - 2640, - 2602, - 2601, - 2556, - 2596, + 2642, + 2675, + 2680, + 2669, + 2651, + 2624, + 2617, + 2621, + 2644, 2594, - 2551, - 2605, + 2665, + 2666, + 2646, + 2626, + 2591, + 2631, 2609, + 2678, + 2671, + 2604, + 2639, + 2661, + 2660, + 2682, + 2613, + 2684, 2615, + 2683, + 2676, + 2674, + 2686, + 2611, + 2614, + 2659, + 2612, + 2670, 2616, - 2610, - 2607, - 2626, + 2618, + 2650, + 2595, + 2601, + 2633, + 2593, + 2687, + 2649, + 2648, + 2603, + 2643, + 2641, + 2598, + 2652, + 2656, + 2662, + 2663, + 2657, + 2654, + 2673, + 2679, + 2672, + 2677, + 2685, + 2605, + 2619, + 2622, + 2623, + 2620, + 2658, 2632, - 2625, - 2630, - 2638, - 2558, - 2572, - 2575, - 2576, - 2573, - 2611, - 2585, - 2563, - 2552, - 2550 + 2610, + 2599, + 2597 ] } ], @@ -45538,7 +46435,7 @@ ] }, { - "id": 1956, + "id": 1977, "name": "RuntimeFilter", "kind": 256, "kindString": "Interface", @@ -45548,7 +46445,7 @@ }, "children": [ { - "id": 1957, + "id": 1978, "name": "columnName", "kind": 1024, "kindString": "Property", @@ -45569,7 +46466,7 @@ } }, { - "id": 1958, + "id": 1979, "name": "operator", "kind": 1024, "kindString": "Property", @@ -45586,12 +46483,12 @@ ], "type": { "type": "reference", - "id": 1960, + "id": 1981, "name": "RuntimeFilterOp" } }, { - "id": 1959, + "id": 1980, "name": "values", "kind": 1024, "kindString": "Property", @@ -45637,9 +46534,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1957, - 1958, - 1959 + 1978, + 1979, + 1980 ] } ], @@ -45652,7 +46549,7 @@ ] }, { - "id": 3076, + "id": 3124, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -45662,7 +46559,7 @@ }, "children": [ { - "id": 3077, + "id": 3125, "name": "name", "kind": 1024, "kindString": "Property", @@ -45683,7 +46580,7 @@ } }, { - "id": 3078, + "id": 3126, "name": "value", "kind": 1024, "kindString": "Property", @@ -45722,8 +46619,8 @@ "title": "Properties", "kind": 1024, "children": [ - 3077, - 3078 + 3125, + 3126 ] } ], @@ -45736,7 +46633,7 @@ ] }, { - "id": 2491, + "id": 2538, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -45751,7 +46648,7 @@ }, "children": [ { - "id": 2506, + "id": 2553, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -45782,20 +46679,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2507, + "id": 2554, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2508, + "id": 2555, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2509, + "id": 2556, "name": "key", "kind": 32768, "flags": {}, @@ -45831,7 +46728,7 @@ } }, { - "id": 2539, + "id": 2586, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -45873,7 +46770,7 @@ } }, { - "id": 2536, + "id": 2583, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -45903,7 +46800,7 @@ ], "type": { "type": "reference", - "id": 2371, + "id": 2418, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -45912,7 +46809,7 @@ } }, { - "id": 2527, + "id": 2574, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -45961,7 +46858,7 @@ } }, { - "id": 2510, + "id": 2557, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -45990,7 +46887,7 @@ ], "type": { "type": "reference", - "id": 2820, + "id": 2868, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -45999,7 +46896,7 @@ } }, { - "id": 2540, + "id": 2587, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -46041,7 +46938,7 @@ } }, { - "id": 2493, + "id": 2540, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -46075,7 +46972,7 @@ } }, { - "id": 2492, + "id": 2539, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -46116,7 +47013,7 @@ } }, { - "id": 2519, + "id": 2566, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -46154,7 +47051,7 @@ } }, { - "id": 2502, + "id": 2549, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -46192,7 +47089,7 @@ } }, { - "id": 2501, + "id": 2548, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -46224,7 +47121,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -46234,7 +47131,7 @@ } }, { - "id": 2514, + "id": 2561, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -46275,7 +47172,7 @@ } }, { - "id": 2541, + "id": 2588, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -46317,7 +47214,7 @@ } }, { - "id": 2523, + "id": 2570, "name": "enableLinkOverridesV2", "kind": 1024, "kindString": "Property", @@ -46355,7 +47252,7 @@ } }, { - "id": 2516, + "id": 2563, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -46393,7 +47290,7 @@ } }, { - "id": 2537, + "id": 2584, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -46431,7 +47328,7 @@ } }, { - "id": 2538, + "id": 2585, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -46469,7 +47366,7 @@ } }, { - "id": 2496, + "id": 2543, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -46503,7 +47400,7 @@ } }, { - "id": 2518, + "id": 2565, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -46540,7 +47437,7 @@ } }, { - "id": 2498, + "id": 2545, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -46570,7 +47467,7 @@ ], "type": { "type": "reference", - "id": 2778, + "id": 2826, "name": "FrameParams" }, "inheritedFrom": { @@ -46579,7 +47476,7 @@ } }, { - "id": 2503, + "id": 2550, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -46615,7 +47512,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -46625,7 +47522,7 @@ } }, { - "id": 2511, + "id": 2558, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -46663,7 +47560,7 @@ } }, { - "id": 2533, + "id": 2580, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -46686,7 +47583,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8739, + "line": 9051, "character": 4 } ], @@ -46700,7 +47597,7 @@ } }, { - "id": 2532, + "id": 2579, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -46723,7 +47620,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8722, + "line": 9034, "character": 4 } ], @@ -46740,7 +47637,7 @@ } }, { - "id": 2531, + "id": 2578, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -46760,7 +47657,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8706, + "line": 9018, "character": 4 } ], @@ -46774,7 +47671,7 @@ } }, { - "id": 2542, + "id": 2589, "name": "isThisPeriodInDateFiltersEnabled", "kind": 1024, "kindString": "Property", @@ -46812,7 +47709,7 @@ } }, { - "id": 2522, + "id": 2569, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -46850,7 +47747,7 @@ } }, { - "id": 2505, + "id": 2552, "name": "locale", "kind": 1024, "kindString": "Property", @@ -46888,7 +47785,7 @@ } }, { - "id": 2521, + "id": 2568, "name": "overrideHistoryState", "kind": 1024, "kindString": "Property", @@ -46926,7 +47823,7 @@ } }, { - "id": 2520, + "id": 2567, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -46964,7 +47861,7 @@ } }, { - "id": 2515, + "id": 2562, "name": "preRenderContainer", "kind": 1024, "kindString": "Property", @@ -47011,7 +47908,7 @@ } }, { - "id": 2513, + "id": 2560, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -47049,7 +47946,7 @@ } }, { - "id": 2524, + "id": 2571, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -47087,7 +47984,7 @@ } }, { - "id": 2528, + "id": 2575, "name": "refreshAuthTokenOnNearExpiry", "kind": 1024, "kindString": "Property", @@ -47128,7 +48025,7 @@ } }, { - "id": 2534, + "id": 2581, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -47160,7 +48057,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1956, + "id": 1977, "name": "RuntimeFilter" } }, @@ -47170,7 +48067,7 @@ } }, { - "id": 2535, + "id": 2582, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -47202,7 +48099,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3076, + "id": 3124, "name": "RuntimeParameter" } }, @@ -47212,7 +48109,7 @@ } }, { - "id": 2495, + "id": 2542, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -47246,7 +48143,7 @@ } }, { - "id": 2529, + "id": 2576, "name": "shouldBypassPayloadValidation", "kind": 1024, "kindString": "Property", @@ -47287,7 +48184,7 @@ } }, { - "id": 2526, + "id": 2573, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -47324,7 +48221,7 @@ } }, { - "id": 2530, + "id": 2577, "name": "useHostEventsV2", "kind": 1024, "kindString": "Property", @@ -47365,7 +48262,7 @@ } }, { - "id": 2494, + "id": 2541, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -47399,7 +48296,7 @@ } }, { - "id": 2504, + "id": 2551, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -47435,7 +48332,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -47450,48 +48347,48 @@ "title": "Properties", "kind": 1024, "children": [ - 2506, - 2539, - 2536, - 2527, - 2510, + 2553, + 2586, + 2583, + 2574, + 2557, + 2587, 2540, - 2493, - 2492, - 2519, - 2502, - 2501, - 2514, - 2541, - 2523, - 2516, - 2537, - 2538, - 2496, - 2518, - 2498, - 2503, - 2511, - 2533, - 2532, - 2531, + 2539, + 2566, + 2549, + 2548, + 2561, + 2588, + 2570, + 2563, + 2584, + 2585, + 2543, + 2565, + 2545, + 2550, + 2558, + 2580, + 2579, + 2578, + 2589, + 2569, + 2552, + 2568, + 2567, + 2562, + 2560, + 2571, + 2575, + 2581, + 2582, 2542, - 2522, - 2505, - 2521, - 2520, - 2515, - 2513, - 2524, - 2528, - 2534, - 2535, - 2495, - 2529, - 2526, - 2530, - 2494, - 2504 + 2576, + 2573, + 2577, + 2541, + 2551 ] } ], @@ -47514,7 +48411,7 @@ ] }, { - "id": 2426, + "id": 2473, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -47530,7 +48427,7 @@ }, "children": [ { - "id": 2464, + "id": 2511, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -47561,20 +48458,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2465, + "id": 2512, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2466, + "id": 2513, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2467, + "id": 2514, "name": "key", "kind": 32768, "flags": {}, @@ -47610,7 +48507,7 @@ } }, { - "id": 2438, + "id": 2485, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -47644,7 +48541,7 @@ } }, { - "id": 2428, + "id": 2475, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -47678,7 +48575,7 @@ } }, { - "id": 2427, + "id": 2474, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -47712,7 +48609,7 @@ } }, { - "id": 2451, + "id": 2498, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -47754,7 +48651,7 @@ } }, { - "id": 2441, + "id": 2488, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -47791,7 +48688,7 @@ } }, { - "id": 2448, + "id": 2495, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -47821,7 +48718,7 @@ ], "type": { "type": "reference", - "id": 2371, + "id": 2418, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -47830,7 +48727,7 @@ } }, { - "id": 2484, + "id": 2531, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -47879,7 +48776,7 @@ } }, { - "id": 2468, + "id": 2515, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -47908,7 +48805,7 @@ ], "type": { "type": "reference", - "id": 2820, + "id": 2868, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -47917,7 +48814,7 @@ } }, { - "id": 2442, + "id": 2489, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -47955,7 +48852,7 @@ } }, { - "id": 2452, + "id": 2499, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -47997,7 +48894,7 @@ } }, { - "id": 2434, + "id": 2481, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -48031,7 +48928,7 @@ } }, { - "id": 2433, + "id": 2480, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -48067,7 +48964,7 @@ } }, { - "id": 2477, + "id": 2524, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -48105,7 +49002,7 @@ } }, { - "id": 2460, + "id": 2507, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -48143,7 +49040,7 @@ } }, { - "id": 2459, + "id": 2506, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -48175,7 +49072,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -48185,7 +49082,7 @@ } }, { - "id": 2472, + "id": 2519, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -48226,7 +49123,7 @@ } }, { - "id": 2453, + "id": 2500, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -48268,7 +49165,7 @@ } }, { - "id": 2481, + "id": 2528, "name": "enableLinkOverridesV2", "kind": 1024, "kindString": "Property", @@ -48306,7 +49203,7 @@ } }, { - "id": 2431, + "id": 2478, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -48340,7 +49237,7 @@ } }, { - "id": 2474, + "id": 2521, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -48378,7 +49275,7 @@ } }, { - "id": 2449, + "id": 2496, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -48416,7 +49313,7 @@ } }, { - "id": 2450, + "id": 2497, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -48454,7 +49351,7 @@ } }, { - "id": 2437, + "id": 2484, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -48488,7 +49385,7 @@ } }, { - "id": 2476, + "id": 2523, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -48525,7 +49422,7 @@ } }, { - "id": 2443, + "id": 2490, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -48563,7 +49460,7 @@ } }, { - "id": 2432, + "id": 2479, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -48597,7 +49494,7 @@ } }, { - "id": 2456, + "id": 2503, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -48627,7 +49524,7 @@ ], "type": { "type": "reference", - "id": 2778, + "id": 2826, "name": "FrameParams" }, "inheritedFrom": { @@ -48636,7 +49533,7 @@ } }, { - "id": 2461, + "id": 2508, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -48672,7 +49569,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -48682,7 +49579,7 @@ } }, { - "id": 2429, + "id": 2476, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -48716,7 +49613,7 @@ } }, { - "id": 2430, + "id": 2477, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -48750,7 +49647,7 @@ } }, { - "id": 2439, + "id": 2486, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -48784,7 +49681,7 @@ } }, { - "id": 2469, + "id": 2516, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -48822,7 +49719,7 @@ } }, { - "id": 2490, + "id": 2537, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -48845,7 +49742,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8739, + "line": 9051, "character": 4 } ], @@ -48859,7 +49756,7 @@ } }, { - "id": 2489, + "id": 2536, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -48882,7 +49779,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8722, + "line": 9034, "character": 4 } ], @@ -48899,7 +49796,7 @@ } }, { - "id": 2488, + "id": 2535, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -48919,7 +49816,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8706, + "line": 9018, "character": 4 } ], @@ -48933,7 +49830,7 @@ } }, { - "id": 2454, + "id": 2501, "name": "isThisPeriodInDateFiltersEnabled", "kind": 1024, "kindString": "Property", @@ -48971,7 +49868,7 @@ } }, { - "id": 2480, + "id": 2527, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -49009,7 +49906,7 @@ } }, { - "id": 2463, + "id": 2510, "name": "locale", "kind": 1024, "kindString": "Property", @@ -49047,7 +49944,7 @@ } }, { - "id": 2444, + "id": 2491, "name": "newChartsLibrary", "kind": 1024, "kindString": "Property", @@ -49085,7 +49982,7 @@ } }, { - "id": 2479, + "id": 2526, "name": "overrideHistoryState", "kind": 1024, "kindString": "Property", @@ -49123,7 +50020,7 @@ } }, { - "id": 2478, + "id": 2525, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -49161,7 +50058,7 @@ } }, { - "id": 2473, + "id": 2520, "name": "preRenderContainer", "kind": 1024, "kindString": "Property", @@ -49208,7 +50105,7 @@ } }, { - "id": 2471, + "id": 2518, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -49246,7 +50143,7 @@ } }, { - "id": 2485, + "id": 2532, "name": "refreshAuthTokenOnNearExpiry", "kind": 1024, "kindString": "Property", @@ -49287,7 +50184,7 @@ } }, { - "id": 2446, + "id": 2493, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -49319,7 +50216,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1956, + "id": 1977, "name": "RuntimeFilter" } }, @@ -49329,7 +50226,7 @@ } }, { - "id": 2447, + "id": 2494, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -49361,7 +50258,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3076, + "id": 3124, "name": "RuntimeParameter" } }, @@ -49371,7 +50268,7 @@ } }, { - "id": 2436, + "id": 2483, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -49401,7 +50298,7 @@ } }, { - "id": 2435, + "id": 2482, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -49430,7 +50327,7 @@ } }, { - "id": 2486, + "id": 2533, "name": "shouldBypassPayloadValidation", "kind": 1024, "kindString": "Property", @@ -49471,7 +50368,7 @@ } }, { - "id": 2483, + "id": 2530, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -49508,7 +50405,7 @@ } }, { - "id": 2487, + "id": 2534, "name": "useHostEventsV2", "kind": 1024, "kindString": "Property", @@ -49549,7 +50446,7 @@ } }, { - "id": 2440, + "id": 2487, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -49579,7 +50476,7 @@ } }, { - "id": 2462, + "id": 2509, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -49615,7 +50512,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -49625,7 +50522,7 @@ } }, { - "id": 2445, + "id": 2492, "name": "visualOverrides", "kind": 1024, "kindString": "Property", @@ -49650,7 +50547,7 @@ ], "type": { "type": "reference", - "id": 3209, + "id": 3257, "name": "VisualizationOverrides" } } @@ -49660,61 +50557,61 @@ "title": "Properties", "kind": 1024, "children": [ - 2464, - 2438, - 2428, - 2427, - 2451, - 2441, - 2448, - 2484, - 2468, - 2442, - 2452, - 2434, - 2433, - 2477, - 2460, - 2459, - 2472, - 2453, - 2481, - 2431, + 2511, + 2485, + 2475, 2474, - 2449, - 2450, - 2437, - 2476, - 2443, - 2432, - 2456, - 2461, - 2429, - 2430, - 2439, - 2469, - 2490, - 2489, + 2498, 2488, - 2454, + 2495, + 2531, + 2515, + 2489, + 2499, + 2481, 2480, - 2463, - 2444, - 2479, + 2524, + 2507, + 2506, + 2519, + 2500, + 2528, 2478, - 2473, - 2471, - 2485, - 2446, - 2447, - 2436, - 2435, + 2521, + 2496, + 2497, + 2484, + 2523, + 2490, + 2479, + 2503, + 2508, + 2476, + 2477, 2486, + 2516, + 2537, + 2536, + 2535, + 2501, + 2527, + 2510, + 2491, + 2526, + 2525, + 2520, + 2518, + 2532, + 2493, + 2494, 2483, + 2482, + 2533, + 2530, + 2534, 2487, - 2440, - 2462, - 2445 + 2509, + 2492 ] } ], @@ -49747,14 +50644,14 @@ ] }, { - "id": 1924, + "id": 1945, "name": "SessionInterface", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1927, + "id": 1948, "name": "acSession", "kind": 1024, "kindString": "Property", @@ -49769,14 +50666,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1928, + "id": 1949, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1930, + "id": 1951, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -49794,7 +50691,7 @@ } }, { - "id": 1929, + "id": 1950, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -49817,8 +50714,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1930, - 1929 + 1951, + 1950 ] } ] @@ -49826,7 +50723,7 @@ } }, { - "id": 1926, + "id": 1947, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -49844,7 +50741,7 @@ } }, { - "id": 1925, + "id": 1946, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -49867,9 +50764,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1927, - 1926, - 1925 + 1948, + 1947, + 1946 ] } ], @@ -50056,7 +50953,7 @@ ], "type": { "type": "reference", - "id": 2820, + "id": 2868, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -50173,7 +51070,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -50367,7 +51264,7 @@ ], "type": { "type": "reference", - "id": 2778, + "id": 2826, "name": "FrameParams" }, "inheritedFrom": { @@ -50412,7 +51309,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -50483,7 +51380,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8739, + "line": 9051, "character": 4 } ], @@ -50520,7 +51417,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8722, + "line": 9034, "character": 4 } ], @@ -50557,7 +51454,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8706, + "line": 9018, "character": 4 } ], @@ -51004,7 +51901,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -51103,7 +52000,7 @@ ] }, { - "id": 1514, + "id": 1516, "name": "SpotterChatViewConfig", "kind": 256, "kindString": "Interface", @@ -51123,7 +52020,7 @@ }, "children": [ { - "id": 1519, + "id": 1521, "name": "enableStarterPrompts", "kind": 1024, "kindString": "Property", @@ -51147,7 +52044,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 159, + "line": 293, "character": 4 } ], @@ -51157,7 +52054,7 @@ } }, { - "id": 1515, + "id": 1517, "name": "hideToolResponseCardBranding", "kind": 1024, "kindString": "Property", @@ -51176,7 +52073,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 128, + "line": 262, "character": 4 } ], @@ -51186,7 +52083,7 @@ } }, { - "id": 1517, + "id": 1519, "name": "spotterFileUploadEnabled", "kind": 1024, "kindString": "Property", @@ -51210,7 +52107,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 144, + "line": 278, "character": 4 } ], @@ -51220,7 +52117,7 @@ } }, { - "id": 1518, + "id": 1520, "name": "spotterFileUploadFileTypes", "kind": 1024, "kindString": "Property", @@ -51240,7 +52137,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 151, + "line": 285, "character": 4 } ], @@ -51250,7 +52147,7 @@ } }, { - "id": 1516, + "id": 1518, "name": "toolResponseCardBrandingLabel", "kind": 1024, "kindString": "Property", @@ -51263,7 +52160,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 136, + "line": 270, "character": 4 } ], @@ -51278,18 +52175,18 @@ "title": "Properties", "kind": 1024, "children": [ - 1519, - 1515, + 1521, 1517, - 1518, - 1516 + 1519, + 1520, + 1518 ] } ], "sources": [ { "fileName": "embed/conversation.ts", - "line": 120, + "line": 254, "character": 17 } ] @@ -51311,7 +52208,7 @@ }, "children": [ { - "id": 1487, + "id": 1489, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -51342,20 +52239,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1488, + "id": 1490, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1489, + "id": 1491, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1490, + "id": 1492, "name": "key", "kind": 32768, "flags": {}, @@ -51391,7 +52288,7 @@ } }, { - "id": 1507, + "id": 1509, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -51440,7 +52337,7 @@ } }, { - "id": 1491, + "id": 1493, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -51469,7 +52366,7 @@ ], "type": { "type": "reference", - "id": 2820, + "id": 2868, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -51506,7 +52403,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 220, + "line": 354, "character": 4 } ], @@ -51544,18 +52441,18 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 348, + "line": 482, "character": 4 } ], "type": { "type": "reference", - "id": 1534, + "id": 1537, "name": "SpotterQueryMode" } }, { - "id": 1500, + "id": 1502, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -51617,7 +52514,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 190, + "line": 324, "character": 4 } ], @@ -51627,7 +52524,7 @@ } }, { - "id": 1483, + "id": 1485, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -51665,7 +52562,7 @@ } }, { - "id": 1482, + "id": 1484, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -51697,7 +52594,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -51707,7 +52604,7 @@ } }, { - "id": 1495, + "id": 1497, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -51748,7 +52645,7 @@ } }, { - "id": 1504, + "id": 1506, "name": "enableLinkOverridesV2", "kind": 1024, "kindString": "Property", @@ -51814,7 +52711,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 367, + "line": 501, "character": 4 } ], @@ -51848,7 +52745,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 357, + "line": 491, "character": 4 } ], @@ -51858,7 +52755,7 @@ } }, { - "id": 1497, + "id": 1499, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -51920,7 +52817,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 284, + "line": 418, "character": 4 } ], @@ -51954,7 +52851,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 315, + "line": 449, "character": 4 } ], @@ -51964,7 +52861,7 @@ } }, { - "id": 1499, + "id": 1501, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -52001,7 +52898,7 @@ } }, { - "id": 1479, + "id": 1481, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -52031,7 +52928,7 @@ ], "type": { "type": "reference", - "id": 2778, + "id": 2826, "name": "FrameParams" }, "inheritedFrom": { @@ -52040,7 +52937,7 @@ } }, { - "id": 1484, + "id": 1486, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -52076,7 +52973,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -52110,7 +53007,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 251, + "line": 385, "character": 4 } ], @@ -52144,7 +53041,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 204, + "line": 338, "character": 4 } ], @@ -52154,7 +53051,7 @@ } }, { - "id": 1492, + "id": 1494, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -52192,7 +53089,7 @@ } }, { - "id": 1513, + "id": 1515, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -52215,7 +53112,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8739, + "line": 9051, "character": 4 } ], @@ -52229,7 +53126,7 @@ } }, { - "id": 1512, + "id": 1514, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -52252,7 +53149,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8722, + "line": 9034, "character": 4 } ], @@ -52269,7 +53166,7 @@ } }, { - "id": 1511, + "id": 1513, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -52289,7 +53186,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8706, + "line": 9018, "character": 4 } ], @@ -52303,7 +53200,7 @@ } }, { - "id": 1503, + "id": 1505, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -52341,7 +53238,7 @@ } }, { - "id": 1486, + "id": 1488, "name": "locale", "kind": 1024, "kindString": "Property", @@ -52379,7 +53276,7 @@ } }, { - "id": 1502, + "id": 1504, "name": "overrideHistoryState", "kind": 1024, "kindString": "Property", @@ -52417,7 +53314,7 @@ } }, { - "id": 1501, + "id": 1503, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -52455,7 +53352,7 @@ } }, { - "id": 1496, + "id": 1498, "name": "preRenderContainer", "kind": 1024, "kindString": "Property", @@ -52502,7 +53399,7 @@ } }, { - "id": 1494, + "id": 1496, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -52540,7 +53437,7 @@ } }, { - "id": 1508, + "id": 1510, "name": "refreshAuthTokenOnNearExpiry", "kind": 1024, "kindString": "Property", @@ -52605,7 +53502,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 272, + "line": 406, "character": 4 } ], @@ -52613,7 +53510,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1956, + "id": 1977, "name": "RuntimeFilter" } } @@ -52643,7 +53540,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 303, + "line": 437, "character": 4 } ], @@ -52651,7 +53548,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3076, + "id": 3124, "name": "RuntimeParameter" } } @@ -52670,7 +53567,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 175, + "line": 309, "character": 4 } ], @@ -52680,7 +53577,41 @@ } }, { - "id": 1509, + "id": 1479, + "name": "sharedConversationId", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The ID of a shared Spotter conversation to open directly in the read-only\nreader view. Use this to land a share recipient in the shared conversation\nwhen they open a host-configured `CONVERSATION_URL` share link: read the\n`{conversation-id}` from your page URL and pass it here.", + "text": "Requires the Spotter conversation-sharing feature to be enabled\n(`spotterShareConversationConfig.enableShareConversation`). The recipient\nmust be an authorized sharee — the server returns access-denied otherwise.\n\nSupported embed types: `SpotterEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst convId = new URLSearchParams(window.location.search).get('conversation-id');\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... //other embed view config\n sharedConversationId: convId,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 578, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1511, "name": "shouldBypassPayloadValidation", "kind": 1024, "kindString": "Property", @@ -52721,7 +53652,7 @@ } }, { - "id": 1506, + "id": 1508, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -52782,7 +53713,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 236, + "line": 370, "character": 4 } ], @@ -52816,16 +53747,51 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 406, + "line": 540, "character": 4 } ], "type": { "type": "reference", - "id": 1514, + "id": 1516, "name": "SpotterChatViewConfig" } }, + { + "id": 1478, + "name": "spotterShareConversationConfig", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Configuration for the Spotter conversation sharing feature.", + "text": "Supported embed types: `SpotterEmbed`, `AppEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... //other embed view config\n spotterShareConversationConfig: {\n enableShareConversation: true,\n },\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 556, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 1540, + "name": "SpotterShareConversationConfig" + } + }, { "id": 1476, "name": "spotterSidebarConfig", @@ -52851,13 +53817,13 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 388, + "line": 522, "character": 4 } ], "type": { "type": "reference", - "id": 1520, + "id": 1522, "name": "SpotterSidebarViewConfig" } }, @@ -52890,7 +53856,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 330, + "line": 464, "character": 4 } ], @@ -52900,7 +53866,7 @@ } }, { - "id": 1510, + "id": 1512, "name": "useHostEventsV2", "kind": 1024, "kindString": "Property", @@ -52941,7 +53907,7 @@ } }, { - "id": 1485, + "id": 1487, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -52977,7 +53943,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2189, + "id": 2227, "name": "Action" } }, @@ -52998,7 +53964,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 171, + "line": 305, "character": 4 } ], @@ -53013,49 +53979,51 @@ "title": "Properties", "kind": 1024, "children": [ - 1487, - 1507, - 1491, + 1489, + 1509, + 1493, 1465, 1473, - 1500, + 1502, 1463, - 1483, - 1482, - 1495, - 1504, + 1485, + 1484, + 1497, + 1506, 1475, 1474, - 1497, + 1499, 1469, 1471, - 1499, - 1479, - 1484, + 1501, + 1481, + 1486, 1467, 1464, - 1492, + 1494, + 1515, + 1514, 1513, - 1512, - 1511, + 1505, + 1488, + 1504, 1503, - 1486, - 1502, - 1501, + 1498, 1496, - 1494, - 1508, + 1510, 1468, 1470, 1462, - 1509, - 1506, + 1479, + 1511, + 1508, 1466, 1477, + 1478, 1476, 1472, - 1510, - 1485, + 1512, + 1487, 1461 ] } @@ -53063,7 +54031,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 166, + "line": 300, "character": 17 } ], @@ -53086,13 +54054,528 @@ "extendedBy": [ { "type": "reference", - "id": 1537, + "id": 1556, "name": "ConversationViewConfig" } ] }, { - "id": 1520, + "id": 1540, + "name": "SpotterShareConversationConfig", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "Configuration for the Spotter conversation sharing feature.\nCan be used in SpotterEmbed and AppEmbed.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl" + }, + { + "tag": "group", + "text": "Embed components\n" + } + ] + }, + "children": [ + { + "id": 1541, + "name": "enableShareConversation", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Enables sharing of the conversation.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl" + }, + { + "tag": "default", + "text": "false\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 170, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1546, + "name": "spotterShareAddUsersLabel", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "\"Add users or groups\" label.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 198, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1545, + "name": "spotterShareCancelLabel", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Modal cancel button label.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl" + }, + { + "tag": "default", + "text": "\"Cancel\"\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 193, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1544, + "name": "spotterShareConfirmLabel", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Modal confirm button label.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl" + }, + { + "tag": "default", + "text": "\"Share\"\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 187, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1548, + "name": "spotterShareEmptySubtitle", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Empty-state subtitle (\"Not shared with any user\").", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 208, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1547, + "name": "spotterShareEmptyTitle", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Empty-state title (\"No users added yet\").", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 203, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1555, + "name": "spotterShareGroupIcon", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Empty-state group icon id (radiant IconID string).", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl" + }, + { + "tag": "default", + "text": "\"userGroup\"\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 246, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1554, + "name": "spotterShareIcon", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Share icon id (radiant IconID string).", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl" + }, + { + "tag": "default", + "text": "\"share\"\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 240, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1549, + "name": "spotterShareIncludeNewMessagesLabel", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "\"Include new messages since last shared version\" checkbox label.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 213, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1542, + "name": "spotterShareLabel", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Header Share button + sidebar Share item label.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl" + }, + { + "tag": "default", + "text": "\"Share\"\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 176, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1543, + "name": "spotterShareModalTitle", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Share modal title.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 181, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1551, + "name": "spotterShareStaleInfoLabel", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Stale-snapshot info banner text (\"All added users and groups will receive…\").", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 223, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1550, + "name": "spotterShareUpToCurrentLabel", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Footer note when the snapshot is current (\"…up to the current moment…\").", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 218, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1552, + "name": "spotterSharedConversationBannerMessage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Read-only shared-view data-access banner message.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 228, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1553, + "name": "spotterSharedConversationExitLabel", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Read-only shared-view Exit button label.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl" + }, + { + "tag": "default", + "text": "\"Exit\"\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 234, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1541, + 1546, + 1545, + 1544, + 1548, + 1547, + 1555, + 1554, + 1549, + 1542, + 1543, + 1551, + 1550, + 1552, + 1553 + ] + } + ], + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 164, + "character": 17 + } + ] + }, + { + "id": 1522, "name": "SpotterSidebarViewConfig", "kind": 256, "kindString": "Interface", @@ -53112,7 +54595,7 @@ }, "children": [ { - "id": 1521, + "id": 1523, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -53135,7 +54618,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 39, + "line": 76, "character": 4 } ], @@ -53145,7 +54628,7 @@ } }, { - "id": 1532, + "id": 1535, "name": "spotterAnalystLabel", "kind": 1024, "kindString": "Property", @@ -53168,7 +54651,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 106, + "line": 149, "character": 4 } ], @@ -53178,7 +54661,7 @@ } }, { - "id": 1533, + "id": 1536, "name": "spotterAnalystsLabel", "kind": 1024, "kindString": "Property", @@ -53201,7 +54684,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 112, + "line": 155, "character": 4 } ], @@ -53211,7 +54694,7 @@ } }, { - "id": 1529, + "id": 1532, "name": "spotterBestPracticesLabel", "kind": 1024, "kindString": "Property", @@ -53230,7 +54713,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 88, + "line": 131, "character": 4 } ], @@ -53240,7 +54723,7 @@ } }, { - "id": 1525, + "id": 1527, "name": "spotterChatDeleteLabel", "kind": 1024, "kindString": "Property", @@ -53259,7 +54742,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 63, + "line": 100, "character": 4 } ], @@ -53269,7 +54752,36 @@ } }, { - "id": 1524, + "id": 1528, + "name": "spotterChatPinConfig", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Pin/unpin conversation feature config (enable + label/icon overrides).\nOff by default in embed — hosts opt in via `enabled`.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.52.0 | ThoughtSpot Cloud: 26.10.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 106, + "character": 4 + } + ], + "type": { + "type": "reference", + "name": "SpotterChatPinConfig" + } + }, + { + "id": 1526, "name": "spotterChatRenameLabel", "kind": 1024, "kindString": "Property", @@ -53288,7 +54800,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 57, + "line": 94, "character": 4 } ], @@ -53298,7 +54810,7 @@ } }, { - "id": 1530, + "id": 1533, "name": "spotterConversationsBatchSize", "kind": 1024, "kindString": "Property", @@ -53321,7 +54833,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 94, + "line": 137, "character": 4 } ], @@ -53331,7 +54843,7 @@ } }, { - "id": 1526, + "id": 1529, "name": "spotterDeleteConversationModalTitle", "kind": 1024, "kindString": "Property", @@ -53350,7 +54862,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 69, + "line": 112, "character": 4 } ], @@ -53360,7 +54872,7 @@ } }, { - "id": 1528, + "id": 1531, "name": "spotterDocumentationUrl", "kind": 1024, "kindString": "Property", @@ -53379,7 +54891,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 82, + "line": 125, "character": 4 } ], @@ -53389,7 +54901,7 @@ } }, { - "id": 1531, + "id": 1534, "name": "spotterNewChatButtonTitle", "kind": 1024, "kindString": "Property", @@ -53408,7 +54920,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 100, + "line": 143, "character": 4 } ], @@ -53418,7 +54930,7 @@ } }, { - "id": 1527, + "id": 1530, "name": "spotterPastConversationAlertMessage", "kind": 1024, "kindString": "Property", @@ -53437,7 +54949,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 75, + "line": 118, "character": 4 } ], @@ -53447,7 +54959,7 @@ } }, { - "id": 1523, + "id": 1525, "name": "spotterSidebarDefaultExpanded", "kind": 1024, "kindString": "Property", @@ -53470,7 +54982,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 51, + "line": 88, "character": 4 } ], @@ -53480,7 +54992,7 @@ } }, { - "id": 1522, + "id": 1524, "name": "spotterSidebarTitle", "kind": 1024, "kindString": "Property", @@ -53499,7 +55011,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 45, + "line": 82, "character": 4 } ], @@ -53514,32 +55026,33 @@ "title": "Properties", "kind": 1024, "children": [ - 1521, + 1523, + 1535, + 1536, 1532, + 1527, + 1528, + 1526, 1533, 1529, - 1525, - 1524, - 1530, - 1526, - 1528, 1531, - 1527, - 1523, - 1522 + 1534, + 1530, + 1525, + 1524 ] } ], "sources": [ { "fileName": "embed/conversation.ts", - "line": 33, + "line": 70, "character": 17 } ] }, { - "id": 2641, + "id": 2688, "name": "SpotterVizConfig", "kind": 256, "kindString": "Interface", @@ -53563,7 +55076,7 @@ }, "children": [ { - "id": 2643, + "id": 2690, "name": "brandHeadline", "kind": 1024, "kindString": "Property", @@ -53596,7 +55109,7 @@ } }, { - "id": 2642, + "id": 2689, "name": "brandName", "kind": 1024, "kindString": "Property", @@ -53629,7 +55142,7 @@ } }, { - "id": 2645, + "id": 2692, "name": "customStarterPrompts", "kind": 1024, "kindString": "Property", @@ -53656,13 +55169,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2655, + "id": 2702, "name": "SpotterVizStarterPrompt" } } }, { - "id": 2646, + "id": 2693, "name": "description", "kind": 1024, "kindString": "Property", @@ -53691,7 +55204,7 @@ } }, { - "id": 2644, + "id": 2691, "name": "hideStarterPrompts", "kind": 1024, "kindString": "Property", @@ -53724,7 +55237,7 @@ } }, { - "id": 2647, + "id": 2694, "name": "inputChatPlaceholder", "kind": 1024, "kindString": "Property", @@ -53753,7 +55266,7 @@ } }, { - "id": 2652, + "id": 2699, "name": "insightTileBrandName", "kind": 1024, "kindString": "Property", @@ -53786,7 +55299,7 @@ } }, { - "id": 2654, + "id": 2701, "name": "insightTileLoaderText", "kind": 1024, "kindString": "Property", @@ -53815,7 +55328,7 @@ } }, { - "id": 2653, + "id": 2700, "name": "insightTileViewPlanLabel", "kind": 1024, "kindString": "Property", @@ -53844,7 +55357,7 @@ } }, { - "id": 2650, + "id": 2697, "name": "liveboardBrandName", "kind": 1024, "kindString": "Property", @@ -53877,7 +55390,7 @@ } }, { - "id": 2648, + "id": 2695, "name": "loaderHeadline", "kind": 1024, "kindString": "Property", @@ -53906,7 +55419,7 @@ } }, { - "id": 2649, + "id": 2696, "name": "loaderTips", "kind": 1024, "kindString": "Property", @@ -53933,13 +55446,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2659, + "id": 2706, "name": "SpotterVizLoaderTip" } } }, { - "id": 2651, + "id": 2698, "name": "spotterBrandName", "kind": 1024, "kindString": "Property", @@ -53977,19 +55490,19 @@ "title": "Properties", "kind": 1024, "children": [ - 2643, - 2642, - 2645, - 2646, - 2644, - 2647, - 2652, - 2654, - 2653, - 2650, - 2648, - 2649, - 2651 + 2690, + 2689, + 2692, + 2693, + 2691, + 2694, + 2699, + 2701, + 2700, + 2697, + 2695, + 2696, + 2698 ] } ], @@ -54002,7 +55515,7 @@ ] }, { - "id": 2659, + "id": 2706, "name": "SpotterVizLoaderTip", "kind": 256, "kindString": "Interface", @@ -54022,7 +55535,7 @@ }, "children": [ { - "id": 2660, + "id": 2707, "name": "label", "kind": 1024, "kindString": "Property", @@ -54043,7 +55556,7 @@ } }, { - "id": 2661, + "id": 2708, "name": "text", "kind": 1024, "kindString": "Property", @@ -54069,8 +55582,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2660, - 2661 + 2707, + 2708 ] } ], @@ -54083,7 +55596,7 @@ ] }, { - "id": 2655, + "id": 2702, "name": "SpotterVizStarterPrompt", "kind": 256, "kindString": "Interface", @@ -54103,7 +55616,7 @@ }, "children": [ { - "id": 2657, + "id": 2704, "name": "displayText", "kind": 1024, "kindString": "Property", @@ -54124,7 +55637,7 @@ } }, { - "id": 2658, + "id": 2705, "name": "fullPrompt", "kind": 1024, "kindString": "Property", @@ -54145,7 +55658,7 @@ } }, { - "id": 2656, + "id": 2703, "name": "id", "kind": 1024, "kindString": "Property", @@ -54171,9 +55684,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2657, - 2658, - 2656 + 2704, + 2705, + 2703 ] } ], @@ -54186,14 +55699,14 @@ ] }, { - "id": 1931, + "id": 1952, "name": "UnderlyingDataPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1932, + "id": 1953, "name": "columnId", "kind": 1024, "kindString": "Property", @@ -54211,7 +55724,7 @@ } }, { - "id": 1933, + "id": 1954, "name": "dataValue", "kind": 1024, "kindString": "Property", @@ -54234,8 +55747,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1932, - 1933 + 1953, + 1954 ] } ], @@ -54248,7 +55761,7 @@ ] }, { - "id": 3209, + "id": 3257, "name": "VisualizationOverrides", "kind": 256, "kindString": "Interface", @@ -54268,7 +55781,7 @@ }, "children": [ { - "id": 3210, + "id": 3258, "name": "chart", "kind": 1024, "kindString": "Property", @@ -54281,7 +55794,7 @@ "sources": [ { "fileName": "types.ts", - "line": 9232, + "line": 9544, "character": 4 } ], @@ -54291,7 +55804,7 @@ } }, { - "id": 3211, + "id": 3259, "name": "table", "kind": 1024, "kindString": "Property", @@ -54304,7 +55817,7 @@ "sources": [ { "fileName": "types.ts", - "line": 9234, + "line": 9546, "character": 4 } ], @@ -54319,28 +55832,28 @@ "title": "Properties", "kind": 1024, "children": [ - 3210, - 3211 + 3258, + 3259 ] } ], "sources": [ { "fileName": "types.ts", - "line": 9230, + "line": 9542, "character": 17 } ] }, { - "id": 3115, + "id": 3163, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 3116, + "id": 3164, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -54348,7 +55861,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8224, + "line": 8536, "character": 4 } ], @@ -54361,7 +55874,7 @@ } }, { - "id": 3117, + "id": 3165, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -54369,7 +55882,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8225, + "line": 8537, "character": 4 } ], @@ -54387,21 +55900,21 @@ "title": "Properties", "kind": 1024, "children": [ - 3116, - 3117 + 3164, + 3165 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8223, + "line": 8535, "character": 17 } ] }, { - "id": 2833, + "id": 2881, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -54411,7 +55924,7 @@ }, "children": [ { - "id": 2835, + "id": 2883, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -54441,20 +55954,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2836, + "id": 2884, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2837, + "id": 2885, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2838, + "id": 2886, "name": "selector", "kind": 32768, "flags": {}, @@ -54467,7 +55980,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2839, + "id": 2887, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -54480,14 +55993,14 @@ } ], "indexSignature": { - "id": 2840, + "id": 2888, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2841, + "id": 2889, "name": "declaration", "kind": 32768, "flags": {}, @@ -54509,7 +56022,7 @@ } }, { - "id": 2834, + "id": 2882, "name": "variables", "kind": 1024, "kindString": "Property", @@ -54528,7 +56041,7 @@ ], "type": { "type": "reference", - "id": 2842, + "id": 2890, "name": "CustomCssVariables" } } @@ -54538,8 +56051,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2835, - 2834 + 2883, + 2882 ] } ], @@ -54844,7 +56357,7 @@ ] }, { - "id": 3208, + "id": 3256, "name": "AutoMCPFrameRendererViewConfig", "kind": 4194304, "kindString": "Type alias", @@ -54901,7 +56414,7 @@ } }, { - "id": 2803, + "id": 2851, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -54928,7 +56441,7 @@ } }, { - "id": 2807, + "id": 2855, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -54943,7 +56456,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2808, + "id": 2856, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -54966,7 +56479,7 @@ ], "signatures": [ { - "id": 2809, + "id": 2857, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -54976,19 +56489,19 @@ }, "parameters": [ { - "id": 2810, + "id": 2858, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2815, + "id": 2863, "name": "MessagePayload" } }, { - "id": 2811, + "id": 2859, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -54998,7 +56511,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2812, + "id": 2860, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -55012,7 +56525,7 @@ ], "signatures": [ { - "id": 2813, + "id": 2861, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -55022,7 +56535,7 @@ }, "parameters": [ { - "id": 2814, + "id": 2862, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -55053,7 +56566,7 @@ } }, { - "id": 2804, + "id": 2852, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -55077,14 +56590,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2805, + "id": 2853, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2806, + "id": 2854, "name": "start", "kind": 1024, "kindString": "Property", @@ -55112,7 +56625,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2806 + 2854 ] } ], @@ -55127,7 +56640,7 @@ } }, { - "id": 2815, + "id": 2863, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -55151,14 +56664,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2816, + "id": 2864, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2818, + "id": 2866, "name": "data", "kind": 1024, "kindString": "Property", @@ -55176,7 +56689,7 @@ } }, { - "id": 2819, + "id": 2867, "name": "status", "kind": 1024, "kindString": "Property", @@ -55196,7 +56709,7 @@ } }, { - "id": 2817, + "id": 2865, "name": "type", "kind": 1024, "kindString": "Property", @@ -55219,9 +56732,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2818, - 2819, - 2817 + 2866, + 2867, + 2865 ] } ], @@ -55286,7 +56799,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1847, + "id": 1868, "name": "AnswerService" } } @@ -55548,7 +57061,7 @@ ], "type": { "type": "reference", - "id": 1847, + "id": 1868, "name": "AnswerService" } }, @@ -55635,7 +57148,7 @@ }, "type": { "type": "reference", - "id": 2375, + "id": 2422, "name": "EmbedConfig" } } @@ -55735,14 +57248,14 @@ }, "type": { "type": "reference", - "id": 2375, + "id": 2422, "name": "EmbedConfig" } } ], "type": { "type": "reference", - "id": 1794, + "id": 1815, "name": "AuthEventEmitter" } } @@ -55882,7 +57395,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2773, + "id": 2821, "name": "PrefetchFeatures" } } @@ -56010,7 +57523,7 @@ ] }, { - "id": 3254, + "id": 3302, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -56026,7 +57539,7 @@ ], "signatures": [ { - "id": 3255, + "id": 3303, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -56056,7 +57569,7 @@ ] }, { - "id": 3256, + "id": 3304, "name": "startAutoMCPFrameRenderer", "kind": 64, "kindString": "Function", @@ -56070,7 +57583,7 @@ ], "signatures": [ { - "id": 3257, + "id": 3305, "name": "startAutoMCPFrameRenderer", "kind": 4096, "kindString": "Call signature", @@ -56092,7 +57605,7 @@ }, "parameters": [ { - "id": 3258, + "id": 3306, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", @@ -56102,7 +57615,7 @@ }, "type": { "type": "reference", - "id": 3208, + "id": 3256, "name": "AutoMCPFrameRendererViewConfig" }, "defaultValue": "{}" @@ -56280,7 +57793,7 @@ ] }, { - "id": 3086, + "id": 3134, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -56294,7 +57807,7 @@ ], "signatures": [ { - "id": 3087, + "id": 3135, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -56304,7 +57817,7 @@ }, "parameters": [ { - "id": 3088, + "id": 3136, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -56316,7 +57829,7 @@ } }, { - "id": 3089, + "id": 3137, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -56327,7 +57840,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3090, + "id": 3138, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -56350,52 +57863,52 @@ "title": "Enumerations", "kind": 4, "children": [ - 2189, - 1792, - 1777, - 1784, - 1944, - 3217, - 3220, + 2227, + 1813, + 1798, + 1805, + 1965, + 3265, + 3268, + 3272, + 2418, + 2217, + 3219, + 3215, + 3288, + 3211, + 2223, + 3228, + 1997, + 3252, + 2832, + 3156, + 3150, + 2844, + 2126, 3224, - 2371, - 2179, - 3171, - 3167, - 3240, - 3163, - 2185, - 3180, - 1976, - 3204, - 2784, - 3108, - 3102, - 2796, - 2093, - 3176, - 3212, - 3112, - 3155, - 3079, - 1934, - 2773, - 3106, - 1960, - 1534, - 3251, - 3247, - 3138 + 3260, + 3160, + 3203, + 3127, + 1955, + 2821, + 3154, + 1981, + 1537, + 3299, + 3295, + 3186 ] }, { "title": "Classes", "kind": 128, "children": [ - 1847, + 1868, 903, 1243, - 1591, + 1612, 655, 254, 58, @@ -56407,34 +57920,35 @@ "title": "Interfaces", "kind": 256, "children": [ - 2662, - 1794, + 2709, + 1815, 1205, - 1537, - 3118, - 2842, - 2830, - 2820, - 2375, - 3198, - 2778, - 2543, - 1956, - 3076, - 2491, - 2426, - 1924, + 1556, + 3166, + 2890, + 2878, + 2868, + 2422, + 3246, + 2826, + 2590, + 1977, + 3124, + 2538, + 2473, + 1945, 1167, - 1514, + 1516, 1460, - 1520, - 2641, - 2659, - 2655, - 1931, - 3209, - 3115, - 2833, + 1540, + 1522, + 2688, + 2706, + 2702, + 1952, + 3257, + 3163, + 2881, 21, 28 ] @@ -56443,11 +57957,11 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 3208, - 2803, - 2807, - 2804, - 2815 + 3256, + 2851, + 2855, + 2852, + 2863 ] }, { @@ -56464,10 +57978,10 @@ 4, 7, 25, - 3254, - 3256, + 3302, + 3304, 40, - 3086 + 3134 ] } ],