From 4b66b5e28e29721e3b4609ee4be90a087af24dd5 Mon Sep 17 00:00:00 2001 From: "fathima.kottangodan" Date: Tue, 30 Jun 2026 14:54:58 +0530 Subject: [PATCH 1/2] SCAL-311824 enabled flags by default in embed --- src/embed/app.spec.ts | 4 ++-- src/embed/app.ts | 13 +++++++++---- src/embed/liveboard.spec.ts | 4 ++-- src/embed/liveboard.ts | 13 +++++++++---- 4 files changed, 22 insertions(+), 12 deletions(-) diff --git a/src/embed/app.spec.ts b/src/embed/app.spec.ts index b9cc3307..ab4210d3 100644 --- a/src/embed/app.spec.ts +++ b/src/embed/app.spec.ts @@ -481,7 +481,7 @@ describe('App embed tests', () => { }); }); - test('should disable isWYSIWYGLiveboardPDFEnabled by default in url', async () => { + test('should not set isWYSIWYGLiveboardPDFEnabled in url by default', async () => { const appEmbed = new AppEmbed(getRootEl(), { ...defaultViewConfig, } as AppViewConfig); @@ -489,7 +489,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${defaultParamsPost}#/home`, ); }); }); diff --git a/src/embed/app.ts b/src/embed/app.ts index 428b8f15..fa96da4c 100644 --- a/src/embed/app.ts +++ b/src/embed/app.ts @@ -616,11 +616,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 @@ -634,10 +635,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 @@ -651,10 +654,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 @@ -981,8 +986,8 @@ export class AppEmbed extends V1Embed { coverAndFilterOptionInPDF = false, isLiveboardStylingAndGroupingEnabled, isPNGInScheduledEmailsEnabled = false, - isLiveboardXLSXCSVDownloadEnabled = false, - isGranularXLSXCSVSchedulesEnabled = false, + isLiveboardXLSXCSVDownloadEnabled, + isGranularXLSXCSVSchedulesEnabled, isCentralizedLiveboardFilterUXEnabled = false, isLinkParametersEnabled, updatedSpotterChatPrompt, @@ -991,7 +996,7 @@ export class AppEmbed extends V1Embed { minimumHeight, isThisPeriodInDateFiltersEnabled, enableHomepageAnnouncement = false, - isContinuousLiveboardPDFEnabled = false, + isContinuousLiveboardPDFEnabled, enableLiveboardDataCache, } = this.viewConfig; diff --git a/src/embed/liveboard.spec.ts b/src/embed/liveboard.spec.ts index da5befb6..5f6c5d18 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 not set isWYSIWYGLiveboardPDFEnabled in url by default', 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}${prefixParams}#/embed/viz/${liveboardId}`, ); }); }); diff --git a/src/embed/liveboard.ts b/src/embed/liveboard.ts index 4a17d75f..1dee429d 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 @@ -691,8 +696,8 @@ export class LiveboardEmbed extends V1Embed { coverAndFilterOptionInPDF = false, isLiveboardStylingAndGroupingEnabled, isPNGInScheduledEmailsEnabled = false, - isLiveboardXLSXCSVDownloadEnabled = false, - isGranularXLSXCSVSchedulesEnabled = false, + isLiveboardXLSXCSVDownloadEnabled, + isGranularXLSXCSVSchedulesEnabled, showSpotterLimitations, isCentralizedLiveboardFilterUXEnabled = false, isLinkParametersEnabled, @@ -700,7 +705,7 @@ export class LiveboardEmbed extends V1Embed { enableStopAnswerGenerationEmbed, spotterChatConfig, isThisPeriodInDateFiltersEnabled, - isContinuousLiveboardPDFEnabled = false, + isContinuousLiveboardPDFEnabled, enableLiveboardDataCache, } = this.viewConfig; From 9f5d2aba1343e650561bd4fc11de390e0e388215 Mon Sep 17 00:00:00 2001 From: "fathima.kottangodan" Date: Tue, 30 Jun 2026 14:55:14 +0530 Subject: [PATCH 2/2] SCAL-311824 generated docs --- static/typedoc/typedoc.json | 7510 ++++++++++++++++++----------------- 1 file changed, 3888 insertions(+), 3622 deletions(-) diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index c5c5851d..42c981d8 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 2176, + "id": 2178, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -28,7 +28,7 @@ }, "children": [ { - "id": 2299, + "id": 2301, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -49,14 +49,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7422, + "line": 7425, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2196, + "id": 2198, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -77,14 +77,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6455, + "line": 6458, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 2189, + "id": 2191, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -105,14 +105,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6384, + "line": 6387, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 2188, + "id": 2190, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -129,14 +129,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6373, + "line": 6376, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 2194, + "id": 2196, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -153,14 +153,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6436, + "line": 6439, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 2195, + "id": 2197, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -177,14 +177,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6445, + "line": 6448, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 2197, + "id": 2199, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -205,14 +205,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6465, + "line": 6468, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 2279, + "id": 2281, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -233,14 +233,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7190, + "line": 7193, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 2249, + "id": 2251, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -261,14 +261,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6883, + "line": 6886, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 2295, + "id": 2297, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -289,14 +289,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7375, + "line": 7378, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 2248, + "id": 2250, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -317,14 +317,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6871, + "line": 6874, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2247, + "id": 2249, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -345,14 +345,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6859, + "line": 6862, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2294, + "id": 2296, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -374,14 +374,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7364, + "line": 7367, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 2261, + "id": 2263, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -402,14 +402,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7005, + "line": 7008, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 2273, + "id": 2275, "name": "AxisMenuCompare", "kind": 16, "kindString": "Enumeration member", @@ -430,14 +430,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7136, + "line": 7139, "character": 4 } ], "defaultValue": "\"axisMenuCompare\"" }, { - "id": 2264, + "id": 2266, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -458,14 +458,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7039, + "line": 7042, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 2269, + "id": 2271, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -486,14 +486,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7094, + "line": 7097, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 2263, + "id": 2265, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -514,14 +514,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7028, + "line": 7031, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 2266, + "id": 2268, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -542,14 +542,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7062, + "line": 7065, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 2274, + "id": 2276, "name": "AxisMenuMerge", "kind": 16, "kindString": "Enumeration member", @@ -570,14 +570,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7146, + "line": 7149, "character": 4 } ], "defaultValue": "\"axisMenuMerge\"" }, { - "id": 2270, + "id": 2272, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -598,14 +598,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7104, + "line": 7107, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 2267, + "id": 2269, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -626,14 +626,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7073, + "line": 7076, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 2272, + "id": 2274, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -654,14 +654,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7126, + "line": 7129, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 2268, + "id": 2270, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -682,14 +682,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7083, + "line": 7086, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 2265, + "id": 2267, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -710,14 +710,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7050, + "line": 7053, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 2271, + "id": 2273, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -738,14 +738,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7114, + "line": 7117, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 2262, + "id": 2264, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -766,14 +766,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7016, + "line": 7019, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 2308, + "id": 2310, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -794,14 +794,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7520, + "line": 7523, "character": 4 } ], "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 2193, + "id": 2195, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -818,14 +818,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6427, + "line": 6430, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 2192, + "id": 2194, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -846,14 +846,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6418, + "line": 6421, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 2191, + "id": 2193, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -874,14 +874,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6406, + "line": 6409, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 2316, + "id": 2318, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -902,14 +902,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7608, + "line": 7611, "character": 4 } ], "defaultValue": "\"columnRename\"" }, { - "id": 2190, + "id": 2192, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -926,14 +926,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6395, + "line": 6398, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 2240, + "id": 2242, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -941,14 +941,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6808, + "line": 6811, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 2183, + "id": 2185, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -965,14 +965,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6332, + "line": 6335, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2239, + "id": 2241, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -989,14 +989,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6807, + "line": 6810, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2317, + "id": 2319, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -1017,14 +1017,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7618, + "line": 7621, "character": 4 } ], "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 2331, + "id": 2333, "name": "CreateGroup", "kind": 16, "kindString": "Enumeration member", @@ -1045,14 +1045,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7778, + "line": 7781, "character": 4 } ], "defaultValue": "\"createGroup\"" }, { - "id": 2292, + "id": 2294, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -1073,14 +1073,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7339, + "line": 7342, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 2252, + "id": 2254, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1101,14 +1101,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6913, + "line": 6916, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2257, + "id": 2259, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1129,14 +1129,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6963, + "line": 6966, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 2309, + "id": 2311, "name": "DataModelInstructions", "kind": 16, "kindString": "Enumeration member", @@ -1157,14 +1157,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7532, + "line": 7535, "character": 4 } ], "defaultValue": "\"DataModelInstructions\"" }, { - "id": 2314, + "id": 2316, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1185,14 +1185,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7589, + "line": 7592, "character": 4 } ], "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 2305, + "id": 2307, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1213,14 +1213,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7489, + "line": 7492, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 2307, + "id": 2309, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1241,14 +1241,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7508, + "line": 7511, "character": 4 } ], "defaultValue": "\"disableChipReorder\"" }, { - "id": 2205, + "id": 2207, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1265,14 +1265,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6515, + "line": 6518, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 2208, + "id": 2210, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1289,14 +1289,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6548, + "line": 6551, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2207, + "id": 2209, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1314,14 +1314,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6538, + "line": 6541, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2206, + "id": 2208, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1338,14 +1338,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6525, + "line": 6528, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2209, + "id": 2211, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1362,14 +1362,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6558, + "line": 6561, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2210, + "id": 2212, "name": "DownloadLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -1390,14 +1390,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6568, + "line": 6571, "character": 4 } ], "defaultValue": "\"downloadLiveboard\"" }, { - "id": 2212, + "id": 2214, "name": "DownloadLiveboardAsA4Pdf", "kind": 16, "kindString": "Enumeration member", @@ -1418,14 +1418,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6592, + "line": 6595, "character": 4 } ], "defaultValue": "\"downloadLiveboardAsA4Pdf\"" }, { - "id": 2211, + "id": 2213, "name": "DownloadLiveboardAsContinuousPDF", "kind": 16, "kindString": "Enumeration member", @@ -1446,14 +1446,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6578, + "line": 6581, "character": 4 } ], "defaultValue": "\"downloadLiveboardAsContinuousPDF\"" }, { - "id": 2214, + "id": 2216, "name": "DownloadLiveboardAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1474,14 +1474,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6612, + "line": 6615, "character": 4 } ], "defaultValue": "\"downloadLiveboardAsCsv\"" }, { - "id": 2213, + "id": 2215, "name": "DownloadLiveboardAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1502,14 +1502,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6602, + "line": 6605, "character": 4 } ], "defaultValue": "\"downloadLiveboardAsXlsx\"" }, { - "id": 2244, + "id": 2246, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1526,14 +1526,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6824, + "line": 6827, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 2238, + "id": 2240, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1550,14 +1550,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6797, + "line": 6800, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 2237, + "id": 2239, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1574,14 +1574,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6788, + "line": 6791, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 2222, + "id": 2224, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1598,14 +1598,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6688, + "line": 6691, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2182, + "id": 2184, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1622,14 +1622,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6323, + "line": 6326, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 2251, + "id": 2253, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1650,14 +1650,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6902, + "line": 6905, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 2242, + "id": 2244, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1665,14 +1665,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6813, + "line": 6816, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 2313, + "id": 2315, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1693,14 +1693,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7578, + "line": 7581, "character": 4 } ], "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 2283, + "id": 2285, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1721,14 +1721,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7234, + "line": 7237, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 2300, + "id": 2302, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1749,14 +1749,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7435, + "line": 7438, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 2219, + "id": 2221, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1773,14 +1773,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6656, + "line": 6659, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2223, + "id": 2225, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1797,14 +1797,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6696, + "line": 6699, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 2315, + "id": 2317, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1825,14 +1825,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7599, + "line": 7602, "character": 4 } ], "defaultValue": "\"editTokens\"" }, { - "id": 2280, + "id": 2282, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1853,14 +1853,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7200, + "line": 7203, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 2281, + "id": 2283, "name": "EnableIterativeChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1881,14 +1881,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7211, + "line": 7214, "character": 4 } ], "defaultValue": "\"enableIterativeChangeAnalysis\"" }, { - "id": 2236, + "id": 2238, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1905,14 +1905,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6777, + "line": 6780, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2216, + "id": 2218, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1930,14 +1930,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6628, + "line": 6631, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2217, + "id": 2219, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1954,14 +1954,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6638, + "line": 6641, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 2318, + "id": 2320, "name": "InConversationTraining", "kind": 16, "kindString": "Enumeration member", @@ -1982,14 +1982,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7633, + "line": 7636, "character": 4 } ], "defaultValue": "\"InConversationTraining\"" }, { - "id": 2345, + "id": 2347, "name": "IncludeCurrentPeriod", "kind": 16, "kindString": "Enumeration member", @@ -2010,14 +2010,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7923, + "line": 7926, "character": 4 } ], "defaultValue": "\"includeCurrentPeriod\"" }, { - "id": 2306, + "id": 2308, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -2038,14 +2038,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7499, + "line": 7502, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 2230, + "id": 2232, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -2062,14 +2062,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6738, + "line": 6741, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2324, + "id": 2326, "name": "LiveboardStylePanel", "kind": 16, "kindString": "Enumeration member", @@ -2090,14 +2090,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7699, + "line": 7702, "character": 4 } ], "defaultValue": "\"liveboardStylePanel\"" }, { - "id": 2290, + "id": 2292, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -2118,14 +2118,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7307, + "line": 7310, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 2181, + "id": 2183, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -2142,14 +2142,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6314, + "line": 6317, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2287, + "id": 2289, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -2166,14 +2166,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7275, + "line": 7278, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2256, + "id": 2258, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -2194,14 +2194,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6953, + "line": 6956, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2326, + "id": 2328, "name": "ManagePublishing", "kind": 16, "kindString": "Enumeration member", @@ -2222,14 +2222,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7725, + "line": 7728, "character": 4 } ], "defaultValue": "\"managePublishing\"" }, { - "id": 2304, + "id": 2306, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -2250,14 +2250,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7478, + "line": 7481, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 2278, + "id": 2280, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -2278,14 +2278,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7180, + "line": 7183, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 2285, + "id": 2287, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -2305,14 +2305,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7255, + "line": 7258, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 2330, + "id": 2332, "name": "MoveOutOfGroup", "kind": 16, "kindString": "Enumeration member", @@ -2333,14 +2333,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7768, + "line": 7771, "character": 4 } ], "defaultValue": "\"moveOutOfGroup\"" }, { - "id": 2329, + "id": 2331, "name": "MoveToGroup", "kind": 16, "kindString": "Enumeration member", @@ -2361,14 +2361,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7758, + "line": 7761, "character": 4 } ], "defaultValue": "\"moveToGroup\"" }, { - "id": 2286, + "id": 2288, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -2385,14 +2385,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7264, + "line": 7267, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 2297, + "id": 2299, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -2417,14 +2417,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7399, + "line": 7402, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 2298, + "id": 2300, "name": "OrganizeFavorites", "kind": 16, "kindString": "Enumeration member", @@ -2445,14 +2445,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7411, + "line": 7414, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 2328, + "id": 2330, "name": "Parameterize", "kind": 16, "kindString": "Enumeration member", @@ -2473,14 +2473,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7748, + "line": 7751, "character": 4 } ], "defaultValue": "\"parameterise\"" }, { - "id": 2301, + "id": 2303, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2501,14 +2501,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7446, + "line": 7449, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 2288, + "id": 2290, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2533,14 +2533,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7287, + "line": 7290, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 2289, + "id": 2291, "name": "PersonalizedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2561,14 +2561,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7297, + "line": 7300, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 2233, + "id": 2235, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2585,14 +2585,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6755, + "line": 6758, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2322, + "id": 2324, "name": "PngScreenshotInEmail", "kind": 16, "kindString": "Enumeration member", @@ -2609,14 +2609,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7677, + "line": 7680, "character": 4 } ], "defaultValue": "\"pngScreenshotInEmail\"" }, { - "id": 2220, + "id": 2222, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2633,14 +2633,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6666, + "line": 6669, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2310, + "id": 2312, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2661,14 +2661,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7544, + "line": 7547, "character": 4 } ], "defaultValue": "\"previewDataSpotter\"" }, { - "id": 2325, + "id": 2327, "name": "Publish", "kind": 16, "kindString": "Enumeration member", @@ -2689,14 +2689,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7712, + "line": 7715, "character": 4 } ], "defaultValue": "\"publish\"" }, { - "id": 2246, + "id": 2248, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2714,14 +2714,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6849, + "line": 6852, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 2351, + "id": 2353, "name": "RefreshLiveboardBrowserCache", "kind": 16, "kindString": "Enumeration member", @@ -2742,14 +2742,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7996, + "line": 7999, "character": 4 } ], "defaultValue": "\"refreshLiveboardBrowserCache\"" }, { - "id": 2224, + "id": 2226, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2766,14 +2766,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6706, + "line": 6709, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2323, + "id": 2325, "name": "RemoveAttachment", "kind": 16, "kindString": "Enumeration member", @@ -2794,14 +2794,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7689, + "line": 7692, "character": 4 } ], "defaultValue": "\"removeAttachment\"" }, { - "id": 2260, + "id": 2262, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2822,14 +2822,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6994, + "line": 6997, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 2250, + "id": 2252, "name": "RemoveFromFavorites", "kind": 16, "kindString": "Enumeration member", @@ -2850,14 +2850,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6893, + "line": 6896, "character": 4 } ], "defaultValue": "\"removeFromFavorites\"" }, { - "id": 2296, + "id": 2298, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2878,14 +2878,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7386, + "line": 7389, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 2276, + "id": 2278, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2906,14 +2906,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7160, + "line": 7163, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 2253, + "id": 2255, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2937,14 +2937,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6922, + "line": 6925, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 2245, + "id": 2247, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2961,14 +2961,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6833, + "line": 6836, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 2277, + "id": 2279, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2989,14 +2989,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7170, + "line": 7173, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 2311, + "id": 2313, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -3017,14 +3017,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7556, + "line": 7559, "character": 4 } ], "defaultValue": "\"resetSpotterChat\"" }, { - "id": 2284, + "id": 2286, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -3045,14 +3045,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7246, + "line": 7249, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 2177, + "id": 2179, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -3069,14 +3069,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6283, + "line": 6286, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2180, + "id": 2182, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -3093,14 +3093,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6301, + "line": 6304, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 2185, + "id": 2187, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -3117,14 +3117,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6346, + "line": 6349, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2186, + "id": 2188, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -3141,14 +3141,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6355, + "line": 6358, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2346, + "id": 2348, "name": "SendTestScheduleEmail", "kind": 16, "kindString": "Enumeration member", @@ -3169,14 +3169,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7935, + "line": 7938, "character": 4 } ], "defaultValue": "\"sendTestScheduleEmail\"" }, { - "id": 2243, + "id": 2245, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -3184,14 +3184,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6814, + "line": 6817, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 2187, + "id": 2189, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -3208,14 +3208,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6364, + "line": 6367, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2202, + "id": 2204, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -3226,14 +3226,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6490, + "line": 6493, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 2282, + "id": 2284, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -3254,14 +3254,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7221, + "line": 7224, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 2204, + "id": 2206, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -3278,14 +3278,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6505, + "line": 6508, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2199, + "id": 2201, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -3302,14 +3302,182 @@ "sources": [ { "fileName": "types.ts", - "line": 6478, + "line": 6481, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2342, + "id": 2356, + "name": "SpotterAnalystCreate", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Controls visibility and disable state of the create action\nin the Spotter Analyst interface.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nhiddenActions: [Action.SpotterAnalystCreate]\ndisabledActions: [Action.SpotterAnalystCreate]\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 8032, + "character": 4 + } + ], + "defaultValue": "\"spotterAnalystCreate\"" + }, + { + "id": 2357, + "name": "SpotterAnalystDelete", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Controls visibility and disable state of the delete action\nin the Spotter Analyst interface.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nhiddenActions: [Action.SpotterAnalystDelete]\ndisabledActions: [Action.SpotterAnalystDelete]\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 8043, + "character": 4 + } + ], + "defaultValue": "\"spotterAnalystDelete\"" + }, + { + "id": 2355, + "name": "SpotterAnalystEdit", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Controls visibility and disable state of the edit action\nin the Spotter Analyst interface.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nhiddenActions: [Action.SpotterAnalystEdit]\ndisabledActions: [Action.SpotterAnalystEdit]\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 8021, + "character": 4 + } + ], + "defaultValue": "\"spotterAnalystEdit\"" + }, + { + "id": 2358, + "name": "SpotterAnalystMakeACopy", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Controls visibility and disable state of the make a copy action\nin the Spotter Analyst interface.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nhiddenActions: [Action.SpotterAnalystMakeACopy]\ndisabledActions: [Action.SpotterAnalystMakeACopy]\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 8054, + "character": 4 + } + ], + "defaultValue": "\"spotterAnalystMakeACopy\"" + }, + { + "id": 2354, + "name": "SpotterAnalystShare", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Controls visibility and disable state of the share action\nin the Spotter Analyst interface.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nhiddenActions: [Action.SpotterAnalystShare]\ndisabledActions: [Action.SpotterAnalystShare]\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 8010, + "character": 4 + } + ], + "defaultValue": "\"spotterAnalystShare\"" + }, + { + "id": 2359, + "name": "SpotterAnalystSidebar", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Controls visibility and disable state of the sidebar\nin the Spotter Analyst interface.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nhiddenActions: [Action.SpotterAnalystSidebar]\ndisabledActions: [Action.SpotterAnalystSidebar]\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 8065, + "character": 4 + } + ], + "defaultValue": "\"spotterAnalystSidebar\"" + }, + { + "id": 2344, "name": "SpotterChatConnectorResources", "kind": 16, "kindString": "Enumeration member", @@ -3330,14 +3498,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7889, + "line": 7892, "character": 4 } ], "defaultValue": "\"spotterChatConnectorResources\"" }, { - "id": 2343, + "id": 2345, "name": "SpotterChatConnectors", "kind": 16, "kindString": "Enumeration member", @@ -3358,14 +3526,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7900, + "line": 7903, "character": 4 } ], "defaultValue": "\"spotterChatConnectors\"" }, { - "id": 2340, + "id": 2342, "name": "SpotterChatDelete", "kind": 16, "kindString": "Enumeration member", @@ -3386,14 +3554,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7868, + "line": 7871, "character": 4 } ], "defaultValue": "\"spotterChatDelete\"" }, { - "id": 2338, + "id": 2340, "name": "SpotterChatMenu", "kind": 16, "kindString": "Enumeration member", @@ -3414,14 +3582,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7848, + "line": 7851, "character": 4 } ], "defaultValue": "\"spotterChatMenu\"" }, { - "id": 2344, + "id": 2346, "name": "SpotterChatModeSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -3442,14 +3610,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7911, + "line": 7914, "character": 4 } ], "defaultValue": "\"spotterChatModeSwitcher\"" }, { - "id": 2339, + "id": 2341, "name": "SpotterChatRename", "kind": 16, "kindString": "Enumeration member", @@ -3470,14 +3638,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7858, + "line": 7861, "character": 4 } ], "defaultValue": "\"spotterChatRename\"" }, { - "id": 2341, + "id": 2343, "name": "SpotterDocs", "kind": 16, "kindString": "Enumeration member", @@ -3498,14 +3666,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7878, + "line": 7881, "character": 4 } ], "defaultValue": "\"spotterDocs\"" }, { - "id": 2312, + "id": 2314, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -3526,14 +3694,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7567, + "line": 7570, "character": 4 } ], "defaultValue": "\"spotterFeedback\"" }, { - "id": 2336, + "id": 2338, "name": "SpotterNewChat", "kind": 16, "kindString": "Enumeration member", @@ -3554,14 +3722,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7828, + "line": 7831, "character": 4 } ], "defaultValue": "\"spotterNewChat\"" }, { - "id": 2337, + "id": 2339, "name": "SpotterPastChatBanner", "kind": 16, "kindString": "Enumeration member", @@ -3582,14 +3750,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7838, + "line": 7841, "character": 4 } ], "defaultValue": "\"spotterPastChatBanner\"" }, { - "id": 2334, + "id": 2336, "name": "SpotterSidebarFooter", "kind": 16, "kindString": "Enumeration member", @@ -3610,14 +3778,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7808, + "line": 7811, "character": 4 } ], "defaultValue": "\"spotterSidebarFooter\"" }, { - "id": 2333, + "id": 2335, "name": "SpotterSidebarHeader", "kind": 16, "kindString": "Enumeration member", @@ -3638,14 +3806,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7798, + "line": 7801, "character": 4 } ], "defaultValue": "\"spotterSidebarHeader\"" }, { - "id": 2335, + "id": 2337, "name": "SpotterSidebarToggle", "kind": 16, "kindString": "Enumeration member", @@ -3666,14 +3834,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7818, + "line": 7821, "character": 4 } ], "defaultValue": "\"spotterSidebarToggle\"" }, { - "id": 2321, + "id": 2323, "name": "SpotterTokenQuickEdit", "kind": 16, "kindString": "Enumeration member", @@ -3694,14 +3862,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7666, + "line": 7669, "character": 4 } ], "defaultValue": "\"SpotterTokenQuickEdit\"" }, { - "id": 2349, + "id": 2351, "name": "SpotterViz", "kind": 16, "kindString": "Enumeration member", @@ -3722,14 +3890,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7971, + "line": 7974, "character": 4 } ], "defaultValue": "\"spotterViz\"" }, { - "id": 2348, + "id": 2350, "name": "SpotterVizCheckpointRestore", "kind": 16, "kindString": "Enumeration member", @@ -3750,14 +3918,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7959, + "line": 7962, "character": 4 } ], "defaultValue": "\"spotterVizCheckpointRestore\"" }, { - "id": 2347, + "id": 2349, "name": "SpotterVizFeedback", "kind": 16, "kindString": "Enumeration member", @@ -3778,14 +3946,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7947, + "line": 7950, "character": 4 } ], "defaultValue": "\"spotterVizFeedback\"" }, { - "id": 2350, + "id": 2352, "name": "SpotterVizReferenceMode", "kind": 16, "kindString": "Enumeration member", @@ -3806,14 +3974,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7985, + "line": 7988, "character": 4 } ], "defaultValue": "\"spotterVizReferenceMode\"" }, { - "id": 2319, + "id": 2321, "name": "SpotterWarningsBanner", "kind": 16, "kindString": "Enumeration member", @@ -3834,14 +4002,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7644, + "line": 7647, "character": 4 } ], "defaultValue": "\"SpotterWarningsBanner\"" }, { - "id": 2320, + "id": 2322, "name": "SpotterWarningsOnTokens", "kind": 16, "kindString": "Enumeration member", @@ -3862,14 +4030,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7655, + "line": 7658, "character": 4 } ], "defaultValue": "\"SpotterWarningsOnTokens\"" }, { - "id": 2235, + "id": 2237, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -3886,14 +4054,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6769, + "line": 6772, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2255, + "id": 2257, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -3914,14 +4082,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6943, + "line": 6946, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2254, + "id": 2256, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -3942,14 +4110,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6932, + "line": 6935, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2258, + "id": 2260, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -3970,14 +4138,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6973, + "line": 6976, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 2259, + "id": 2261, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -3998,14 +4166,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6983, + "line": 6986, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 2291, + "id": 2293, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -4030,14 +4198,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7326, + "line": 7329, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 2221, + "id": 2223, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -4054,14 +4222,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6678, + "line": 6681, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 2332, + "id": 2334, "name": "UngroupLiveboardGroup", "kind": 16, "kindString": "Enumeration member", @@ -4082,14 +4250,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7788, + "line": 7791, "character": 4 } ], "defaultValue": "\"ungroupLiveboardGroup\"" }, { - "id": 2327, + "id": 2329, "name": "Unpublish", "kind": 16, "kindString": "Enumeration member", @@ -4110,14 +4278,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7737, + "line": 7740, "character": 4 } ], "defaultValue": "\"unpublish\"" }, { - "id": 2303, + "id": 2305, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -4138,14 +4306,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7468, + "line": 7471, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 2218, + "id": 2220, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -4162,14 +4330,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6647, + "line": 6650, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2293, + "id": 2295, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -4190,14 +4358,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7350, + "line": 7353, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 2302, + "id": 2304, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -4218,7 +4386,7 @@ "sources": [ { "fileName": "types.ts", - "line": 7457, + "line": 7460, "character": 4 } ], @@ -4230,176 +4398,182 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2299, + 2301, + 2198, + 2191, + 2190, 2196, - 2189, - 2188, - 2194, - 2195, 2197, - 2279, + 2199, + 2281, + 2251, + 2297, + 2250, 2249, - 2295, - 2248, - 2247, - 2294, - 2261, - 2273, - 2264, - 2269, + 2296, 2263, + 2275, 2266, + 2271, + 2265, + 2268, + 2276, + 2272, + 2269, 2274, 2270, 2267, - 2272, - 2268, - 2265, - 2271, - 2262, - 2308, + 2273, + 2264, + 2310, + 2195, + 2194, 2193, + 2318, 2192, - 2191, + 2242, + 2185, + 2241, + 2319, + 2333, + 2294, + 2254, + 2259, + 2311, 2316, - 2190, - 2240, - 2183, - 2239, - 2317, - 2331, - 2292, - 2252, - 2257, - 2309, - 2314, - 2305, 2307, - 2205, - 2208, + 2309, 2207, - 2206, - 2209, 2210, - 2212, + 2209, + 2208, 2211, + 2212, 2214, 2213, + 2216, + 2215, + 2246, + 2240, + 2239, + 2224, + 2184, + 2253, 2244, - 2238, - 2237, - 2222, - 2182, - 2251, - 2242, - 2313, + 2315, + 2285, + 2302, + 2221, + 2225, + 2317, + 2282, 2283, - 2300, + 2238, + 2218, 2219, - 2223, - 2315, - 2280, - 2281, - 2236, - 2216, - 2217, - 2318, - 2345, - 2306, - 2230, - 2324, - 2290, - 2181, - 2287, - 2256, + 2320, + 2347, + 2308, + 2232, 2326, - 2304, - 2278, - 2285, - 2330, - 2329, - 2286, - 2297, - 2298, + 2292, + 2183, + 2289, + 2258, 2328, - 2301, + 2306, + 2280, + 2287, + 2332, + 2331, 2288, - 2289, - 2233, - 2322, - 2220, - 2310, + 2299, + 2300, + 2330, + 2303, + 2290, + 2291, + 2235, + 2324, + 2222, + 2312, + 2327, + 2248, + 2353, + 2226, 2325, - 2246, - 2351, - 2224, - 2323, - 2260, - 2250, - 2296, - 2276, - 2253, - 2245, - 2277, - 2311, - 2284, - 2177, - 2180, - 2185, - 2186, - 2346, - 2243, + 2262, + 2252, + 2298, + 2278, + 2255, + 2247, + 2279, + 2313, + 2286, + 2179, + 2182, 2187, - 2202, - 2282, + 2188, + 2348, + 2245, + 2189, 2204, - 2199, + 2284, + 2206, + 2201, + 2356, + 2357, + 2355, + 2358, + 2354, + 2359, + 2344, + 2345, 2342, - 2343, 2340, + 2346, + 2341, + 2343, + 2314, 2338, - 2344, 2339, - 2341, - 2312, 2336, - 2337, - 2334, - 2333, 2335, - 2321, - 2349, - 2348, - 2347, + 2337, + 2323, + 2351, 2350, - 2319, - 2320, - 2235, - 2255, - 2254, - 2258, - 2259, - 2291, - 2221, - 2332, - 2327, - 2303, - 2218, + 2349, + 2352, + 2321, + 2322, + 2237, + 2257, + 2256, + 2260, + 2261, 2293, - 2302 + 2223, + 2334, + 2329, + 2305, + 2220, + 2295, + 2304 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6274, + "line": 6277, "character": 12 } ] }, { - "id": 1781, + "id": 1783, "name": "AuthEvent", "kind": 4, "kindString": "Enumeration", @@ -4415,7 +4589,7 @@ }, "children": [ { - "id": 1782, + "id": 1784, "name": "TRIGGER_SSO_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -4438,7 +4612,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1782 + 1784 ] } ], @@ -4451,7 +4625,7 @@ ] }, { - "id": 1766, + "id": 1768, "name": "AuthFailureType", "kind": 4, "kindString": "Enumeration", @@ -4467,7 +4641,7 @@ }, "children": [ { - "id": 1769, + "id": 1771, "name": "EXPIRY", "kind": 16, "kindString": "Enumeration member", @@ -4486,7 +4660,7 @@ "defaultValue": "\"EXPIRY\"" }, { - "id": 1771, + "id": 1773, "name": "IDLE_SESSION_TIMEOUT", "kind": 16, "kindString": "Enumeration member", @@ -4505,7 +4679,7 @@ "defaultValue": "\"IDLE_SESSION_TIMEOUT\"" }, { - "id": 1768, + "id": 1770, "name": "NO_COOKIE_ACCESS", "kind": 16, "kindString": "Enumeration member", @@ -4524,7 +4698,7 @@ "defaultValue": "\"NO_COOKIE_ACCESS\"" }, { - "id": 1770, + "id": 1772, "name": "OTHER", "kind": 16, "kindString": "Enumeration member", @@ -4543,7 +4717,7 @@ "defaultValue": "\"OTHER\"" }, { - "id": 1767, + "id": 1769, "name": "SDK", "kind": 16, "kindString": "Enumeration member", @@ -4562,7 +4736,7 @@ "defaultValue": "\"SDK\"" }, { - "id": 1772, + "id": 1774, "name": "UNAUTHENTICATED_FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -4586,12 +4760,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1769, 1771, - 1768, + 1773, 1770, - 1767, - 1772 + 1772, + 1769, + 1774 ] } ], @@ -4604,7 +4778,7 @@ ] }, { - "id": 1773, + "id": 1775, "name": "AuthStatus", "kind": 4, "kindString": "Enumeration", @@ -4620,7 +4794,7 @@ }, "children": [ { - "id": 1774, + "id": 1776, "name": "FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -4638,7 +4812,7 @@ "defaultValue": "\"FAILURE\"" }, { - "id": 1778, + "id": 1780, "name": "LOGOUT", "kind": 16, "kindString": "Enumeration member", @@ -4656,7 +4830,7 @@ "defaultValue": "\"LOGOUT\"" }, { - "id": 1780, + "id": 1782, "name": "SAML_POPUP_CLOSED_NO_AUTH", "kind": 16, "kindString": "Enumeration member", @@ -4674,7 +4848,7 @@ "defaultValue": "\"SAML_POPUP_CLOSED_NO_AUTH\"" }, { - "id": 1775, + "id": 1777, "name": "SDK_SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -4698,7 +4872,7 @@ "defaultValue": "\"SDK_SUCCESS\"" }, { - "id": 1777, + "id": 1779, "name": "SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -4731,7 +4905,7 @@ "defaultValue": "\"SUCCESS\"" }, { - "id": 1779, + "id": 1781, "name": "WAITING_FOR_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -4760,12 +4934,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1774, - 1778, + 1776, 1780, - 1775, + 1782, 1777, - 1779 + 1779, + 1781 ] } ], @@ -4778,7 +4952,7 @@ ] }, { - "id": 1932, + "id": 1934, "name": "AuthType", "kind": 4, "kindString": "Enumeration", @@ -4794,7 +4968,7 @@ }, "children": [ { - "id": 1943, + "id": 1945, "name": "Basic", "kind": 16, "kindString": "Enumeration member", @@ -4813,7 +4987,7 @@ "defaultValue": "\"Basic\"" }, { - "id": 1934, + "id": 1936, "name": "EmbeddedSSO", "kind": 16, "kindString": "Enumeration member", @@ -4842,7 +5016,7 @@ "defaultValue": "\"EmbeddedSSO\"" }, { - "id": 1933, + "id": 1935, "name": "None", "kind": 16, "kindString": "Enumeration member", @@ -4866,7 +5040,7 @@ "defaultValue": "\"None\"" }, { - "id": 1939, + "id": 1941, "name": "OIDCRedirect", "kind": 16, "kindString": "Enumeration member", @@ -4884,7 +5058,7 @@ "defaultValue": "\"SSO_OIDC\"" }, { - "id": 1937, + "id": 1939, "name": "SAMLRedirect", "kind": 16, "kindString": "Enumeration member", @@ -4917,7 +5091,7 @@ "defaultValue": "\"SSO_SAML\"" }, { - "id": 1941, + "id": 1943, "name": "TrustedAuthToken", "kind": 16, "kindString": "Enumeration member", @@ -4941,7 +5115,7 @@ "defaultValue": "\"AuthServer\"" }, { - "id": 1942, + "id": 1944, "name": "TrustedAuthTokenCookieless", "kind": 16, "kindString": "Enumeration member", @@ -4974,13 +5148,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1943, - 1934, - 1933, - 1939, - 1937, + 1945, + 1936, + 1935, 1941, - 1942 + 1939, + 1943, + 1944 ] } ], @@ -4993,7 +5167,7 @@ ] }, { - "id": 3172, + "id": 3180, "name": "BackgroundFormatType", "kind": 4, "kindString": "Enumeration", @@ -5009,7 +5183,7 @@ }, "children": [ { - "id": 3174, + "id": 3182, "name": "Gradient", "kind": 16, "kindString": "Enumeration member", @@ -5020,14 +5194,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8698, + "line": 8767, "character": 4 } ], "defaultValue": "\"GRADIENT\"" }, { - "id": 3173, + "id": 3181, "name": "Solid", "kind": 16, "kindString": "Enumeration member", @@ -5038,7 +5212,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8696, + "line": 8765, "character": 4 } ], @@ -5050,21 +5224,21 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3174, - 3173 + 3182, + 3181 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8694, + "line": 8763, "character": 12 } ] }, { - "id": 3175, + "id": 3183, "name": "ConditionalFormattingComparisonType", "kind": 4, "kindString": "Enumeration", @@ -5080,7 +5254,7 @@ }, "children": [ { - "id": 3177, + "id": 3185, "name": "ColumnBased", "kind": 16, "kindString": "Enumeration member", @@ -5091,14 +5265,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8709, + "line": 8778, "character": 4 } ], "defaultValue": "\"COLUMN_BASED\"" }, { - "id": 3178, + "id": 3186, "name": "ParameterBased", "kind": 16, "kindString": "Enumeration member", @@ -5109,14 +5283,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8711, + "line": 8780, "character": 4 } ], "defaultValue": "\"PARAMETER_BASED\"" }, { - "id": 3176, + "id": 3184, "name": "ValueBased", "kind": 16, "kindString": "Enumeration member", @@ -5127,7 +5301,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8707, + "line": 8776, "character": 4 } ], @@ -5139,22 +5313,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3177, - 3178, - 3176 + 3185, + 3186, + 3184 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8705, + "line": 8774, "character": 12 } ] }, { - "id": 3179, + "id": 3187, "name": "ConditionalFormattingOperator", "kind": 4, "kindString": "Enumeration", @@ -5170,7 +5344,7 @@ }, "children": [ { - "id": 3182, + "id": 3190, "name": "Contains", "kind": 16, "kindString": "Enumeration member", @@ -5181,14 +5355,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8663, + "line": 8732, "character": 4 } ], "defaultValue": "\"CONTAINS\"" }, { - "id": 3183, + "id": 3191, "name": "DoesNotContain", "kind": 16, "kindString": "Enumeration member", @@ -5199,14 +5373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8665, + "line": 8734, "character": 4 } ], "defaultValue": "\"DOES_NOT_CONTAIN\"" }, { - "id": 3185, + "id": 3193, "name": "EndsWith", "kind": 16, "kindString": "Enumeration member", @@ -5217,14 +5391,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8669, + "line": 8738, "character": 4 } ], "defaultValue": "\"ENDS_WITH\"" }, { - "id": 3190, + "id": 3198, "name": "EqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5235,14 +5409,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8679, + "line": 8748, "character": 4 } ], "defaultValue": "\"EQUAL_TO\"" }, { - "id": 3186, + "id": 3194, "name": "GreaterThan", "kind": 16, "kindString": "Enumeration member", @@ -5253,14 +5427,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8671, + "line": 8740, "character": 4 } ], "defaultValue": "\"GREATER_THAN\"" }, { - "id": 3188, + "id": 3196, "name": "GreaterThanEqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5271,14 +5445,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8675, + "line": 8744, "character": 4 } ], "defaultValue": "\"GREATER_THAN_EQUAL_TO\"" }, { - "id": 3180, + "id": 3188, "name": "Is", "kind": 16, "kindString": "Enumeration member", @@ -5289,14 +5463,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8659, + "line": 8728, "character": 4 } ], "defaultValue": "\"IS\"" }, { - "id": 3192, + "id": 3200, "name": "IsBetween", "kind": 16, "kindString": "Enumeration member", @@ -5307,14 +5481,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8683, + "line": 8752, "character": 4 } ], "defaultValue": "\"IS_BETWEEN\"" }, { - "id": 3181, + "id": 3189, "name": "IsNot", "kind": 16, "kindString": "Enumeration member", @@ -5325,14 +5499,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8661, + "line": 8730, "character": 4 } ], "defaultValue": "\"IS_NOT\"" }, { - "id": 3194, + "id": 3202, "name": "IsNotNull", "kind": 16, "kindString": "Enumeration member", @@ -5343,14 +5517,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8687, + "line": 8756, "character": 4 } ], "defaultValue": "\"IS_NOT_NULL\"" }, { - "id": 3193, + "id": 3201, "name": "IsNull", "kind": 16, "kindString": "Enumeration member", @@ -5361,14 +5535,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8685, + "line": 8754, "character": 4 } ], "defaultValue": "\"IS_NULL\"" }, { - "id": 3187, + "id": 3195, "name": "LessThan", "kind": 16, "kindString": "Enumeration member", @@ -5379,14 +5553,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8673, + "line": 8742, "character": 4 } ], "defaultValue": "\"LESS_THAN\"" }, { - "id": 3189, + "id": 3197, "name": "LessThanEqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5397,14 +5571,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8677, + "line": 8746, "character": 4 } ], "defaultValue": "\"LESS_THAN_EQUAL_TO\"" }, { - "id": 3191, + "id": 3199, "name": "NotEqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5415,14 +5589,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8681, + "line": 8750, "character": 4 } ], "defaultValue": "\"NOT_EQUAL_TO\"" }, { - "id": 3184, + "id": 3192, "name": "StartsWith", "kind": 16, "kindString": "Enumeration member", @@ -5433,7 +5607,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8667, + "line": 8736, "character": 4 } ], @@ -5445,34 +5619,34 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3182, - 3183, - 3185, 3190, - 3186, - 3188, - 3180, - 3192, - 3181, - 3194, + 3191, 3193, - 3187, + 3198, + 3194, + 3196, + 3188, + 3200, 3189, - 3191, - 3184 + 3202, + 3201, + 3195, + 3197, + 3199, + 3192 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8657, + "line": 8726, "character": 12 } ] }, { - "id": 2352, + "id": 2360, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -5482,7 +5656,7 @@ }, "children": [ { - "id": 2355, + "id": 2363, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -5490,14 +5664,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8016, + "line": 8085, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 2353, + "id": 2361, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -5505,14 +5679,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8014, + "line": 8083, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 2354, + "id": 2362, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -5520,7 +5694,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8015, + "line": 8084, "character": 4 } ], @@ -5532,22 +5706,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2355, - 2353, - 2354 + 2363, + 2361, + 2362 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8013, + "line": 8082, "character": 12 } ] }, { - "id": 2166, + "id": 2168, "name": "ContextType", "kind": 4, "kindString": "Enumeration", @@ -5571,7 +5745,7 @@ }, "children": [ { - "id": 2169, + "id": 2171, "name": "Answer", "kind": 16, "kindString": "Enumeration member", @@ -5582,14 +5756,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8461, + "line": 8530, "character": 4 } ], "defaultValue": "\"answer\"" }, { - "id": 2168, + "id": 2170, "name": "Liveboard", "kind": 16, "kindString": "Enumeration member", @@ -5600,14 +5774,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8457, + "line": 8526, "character": 4 } ], "defaultValue": "\"liveboard\"" }, { - "id": 2171, + "id": 2173, "name": "Other", "kind": 16, "kindString": "Enumeration member", @@ -5618,14 +5792,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8470, + "line": 8539, "character": 4 } ], "defaultValue": "\"other\"" }, { - "id": 2167, + "id": 2169, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -5636,14 +5810,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8453, + "line": 8522, "character": 4 } ], "defaultValue": "\"search-answer\"" }, { - "id": 2170, + "id": 2172, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -5654,7 +5828,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8465, + "line": 8534, "character": 4 } ], @@ -5666,24 +5840,24 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2169, - 2168, 2171, - 2167, - 2170 + 2170, + 2173, + 2169, + 2172 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8449, + "line": 8518, "character": 12 } ] }, { - "id": 3127, + "id": 3135, "name": "CustomActionTarget", "kind": 4, "kindString": "Enumeration", @@ -5693,7 +5867,7 @@ }, "children": [ { - "id": 3130, + "id": 3138, "name": "ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -5704,14 +5878,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8153, + "line": 8222, "character": 4 } ], "defaultValue": "\"ANSWER\"" }, { - "id": 3128, + "id": 3136, "name": "LIVEBOARD", "kind": 16, "kindString": "Enumeration member", @@ -5722,14 +5896,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8126, + "line": 8195, "character": 4 } ], "defaultValue": "\"LIVEBOARD\"" }, { - "id": 3131, + "id": 3139, "name": "SPOTTER", "kind": 16, "kindString": "Enumeration member", @@ -5740,14 +5914,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8164, + "line": 8233, "character": 4 } ], "defaultValue": "\"SPOTTER\"" }, { - "id": 3129, + "id": 3137, "name": "VIZ", "kind": 16, "kindString": "Enumeration member", @@ -5758,7 +5932,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8140, + "line": 8209, "character": 4 } ], @@ -5770,23 +5944,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3130, - 3128, - 3131, - 3129 + 3138, + 3136, + 3139, + 3137 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8116, + "line": 8185, "character": 12 } ] }, { - "id": 3123, + "id": 3131, "name": "CustomActionsPosition", "kind": 4, "kindString": "Enumeration", @@ -5796,7 +5970,7 @@ }, "children": [ { - "id": 3126, + "id": 3134, "name": "CONTEXTMENU", "kind": 16, "kindString": "Enumeration member", @@ -5807,14 +5981,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8107, + "line": 8176, "character": 4 } ], "defaultValue": "\"CONTEXTMENU\"" }, { - "id": 3125, + "id": 3133, "name": "MENU", "kind": 16, "kindString": "Enumeration member", @@ -5825,14 +5999,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8099, + "line": 8168, "character": 4 } ], "defaultValue": "\"MENU\"" }, { - "id": 3124, + "id": 3132, "name": "PRIMARY", "kind": 16, "kindString": "Enumeration member", @@ -5843,7 +6017,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8094, + "line": 8163, "character": 4 } ], @@ -5855,22 +6029,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3126, - 3125, - 3124 + 3134, + 3133, + 3132 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8089, + "line": 8158, "character": 12 } ] }, { - "id": 3195, + "id": 3203, "name": "DataLabelFilterOperator", "kind": 4, "kindString": "Enumeration", @@ -5886,7 +6060,7 @@ }, "children": [ { - "id": 3200, + "id": 3208, "name": "EqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5897,14 +6071,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8648, + "line": 8717, "character": 4 } ], "defaultValue": "\"EQUAL_TO\"" }, { - "id": 3196, + "id": 3204, "name": "GreaterThan", "kind": 16, "kindString": "Enumeration member", @@ -5915,14 +6089,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8640, + "line": 8709, "character": 4 } ], "defaultValue": "\"GREATER_THAN\"" }, { - "id": 3198, + "id": 3206, "name": "GreaterThanOrEqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5933,14 +6107,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8644, + "line": 8713, "character": 4 } ], "defaultValue": "\"GREATER_THAN_OR_EQUAL_TO\"" }, { - "id": 3197, + "id": 3205, "name": "LessThan", "kind": 16, "kindString": "Enumeration member", @@ -5951,14 +6125,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8642, + "line": 8711, "character": 4 } ], "defaultValue": "\"LESS_THAN\"" }, { - "id": 3199, + "id": 3207, "name": "LessThanOrEqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5969,14 +6143,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8646, + "line": 8715, "character": 4 } ], "defaultValue": "\"LESS_THAN_OR_EQUAL_TO\"" }, { - "id": 3201, + "id": 3209, "name": "NotEqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5987,7 +6161,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8650, + "line": 8719, "character": 4 } ], @@ -5999,25 +6173,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3200, - 3196, - 3198, - 3197, - 3199, - 3201 + 3208, + 3204, + 3206, + 3205, + 3207, + 3209 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8638, + "line": 8707, "character": 12 } ] }, { - "id": 3119, + "id": 3127, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -6027,7 +6201,7 @@ }, "children": [ { - "id": 3121, + "id": 3129, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -6045,7 +6219,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 3120, + "id": 3128, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -6063,7 +6237,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 3122, + "id": 3130, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -6086,9 +6260,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3121, - 3120, - 3122 + 3129, + 3128, + 3130 ] } ], @@ -6101,7 +6275,7 @@ ] }, { - "id": 2172, + "id": 2174, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -6111,7 +6285,7 @@ }, "children": [ { - "id": 2174, + "id": 2176, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -6122,14 +6296,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6065, + "line": 6068, "character": 4 } ], "defaultValue": "\"collapse\"" }, { - "id": 2175, + "id": 2177, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -6140,14 +6314,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6069, + "line": 6072, "character": 4 } ], "defaultValue": "\"expand\"" }, { - "id": 2173, + "id": 2175, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -6158,7 +6332,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6061, + "line": 6064, "character": 4 } ], @@ -6170,22 +6344,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2174, - 2175, - 2173 + 2176, + 2177, + 2175 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6057, + "line": 6060, "character": 12 } ] }, { - "id": 3136, + "id": 3144, "name": "EmbedErrorCodes", "kind": 4, "kindString": "Enumeration", @@ -6209,7 +6383,7 @@ }, "children": [ { - "id": 3139, + "id": 3147, "name": "CONFLICTING_ACTIONS_CONFIG", "kind": 16, "kindString": "Enumeration member", @@ -6220,14 +6394,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8330, + "line": 8399, "character": 4 } ], "defaultValue": "\"CONFLICTING_ACTIONS_CONFIG\"" }, { - "id": 3140, + "id": 3148, "name": "CONFLICTING_TABS_CONFIG", "kind": 16, "kindString": "Enumeration member", @@ -6238,14 +6412,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8333, + "line": 8402, "character": 4 } ], "defaultValue": "\"CONFLICTING_TABS_CONFIG\"" }, { - "id": 3143, + "id": 3151, "name": "CUSTOM_ACTION_VALIDATION", "kind": 16, "kindString": "Enumeration member", @@ -6256,14 +6430,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8342, + "line": 8411, "character": 4 } ], "defaultValue": "\"CUSTOM_ACTION_VALIDATION\"" }, { - "id": 3152, + "id": 3160, "name": "DRILLDOWN_INVALID_PAYLOAD", "kind": 16, "kindString": "Enumeration member", @@ -6274,14 +6448,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8369, + "line": 8438, "character": 4 } ], "defaultValue": "\"DRILLDOWN_INVALID_PAYLOAD\"" }, { - "id": 3146, + "id": 3154, "name": "HOST_EVENT_TYPE_UNDEFINED", "kind": 16, "kindString": "Enumeration member", @@ -6292,14 +6466,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8351, + "line": 8420, "character": 4 } ], "defaultValue": "\"HOST_EVENT_TYPE_UNDEFINED\"" }, { - "id": 3150, + "id": 3158, "name": "HOST_EVENT_VALIDATION", "kind": 16, "kindString": "Enumeration member", @@ -6310,14 +6484,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8363, + "line": 8432, "character": 4 } ], "defaultValue": "\"HOST_EVENT_VALIDATION\"" }, { - "id": 3141, + "id": 3149, "name": "INIT_ERROR", "kind": 16, "kindString": "Enumeration member", @@ -6328,14 +6502,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8336, + "line": 8405, "character": 4 } ], "defaultValue": "\"INIT_ERROR\"" }, { - "id": 3149, + "id": 3157, "name": "INVALID_URL", "kind": 16, "kindString": "Enumeration member", @@ -6346,14 +6520,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8360, + "line": 8429, "character": 4 } ], "defaultValue": "\"INVALID_URL\"" }, { - "id": 3138, + "id": 3146, "name": "LIVEBOARD_ID_MISSING", "kind": 16, "kindString": "Enumeration member", @@ -6364,14 +6538,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8327, + "line": 8396, "character": 4 } ], "defaultValue": "\"LIVEBOARD_ID_MISSING\"" }, { - "id": 3144, + "id": 3152, "name": "LOGIN_FAILED", "kind": 16, "kindString": "Enumeration member", @@ -6382,14 +6556,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8345, + "line": 8414, "character": 4 } ], "defaultValue": "\"LOGIN_FAILED\"" }, { - "id": 3142, + "id": 3150, "name": "NETWORK_ERROR", "kind": 16, "kindString": "Enumeration member", @@ -6400,14 +6574,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8339, + "line": 8408, "character": 4 } ], "defaultValue": "\"NETWORK_ERROR\"" }, { - "id": 3147, + "id": 3155, "name": "PARSING_API_INTERCEPT_BODY_ERROR", "kind": 16, "kindString": "Enumeration member", @@ -6418,14 +6592,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8354, + "line": 8423, "character": 4 } ], "defaultValue": "\"PARSING_API_INTERCEPT_BODY_ERROR\"" }, { - "id": 3145, + "id": 3153, "name": "RENDER_NOT_CALLED", "kind": 16, "kindString": "Enumeration member", @@ -6436,14 +6610,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8348, + "line": 8417, "character": 4 } ], "defaultValue": "\"RENDER_NOT_CALLED\"" }, { - "id": 3151, + "id": 3159, "name": "UPDATEFILTERS_INVALID_PAYLOAD", "kind": 16, "kindString": "Enumeration member", @@ -6454,14 +6628,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8366, + "line": 8435, "character": 4 } ], "defaultValue": "\"UPDATEFILTERS_INVALID_PAYLOAD\"" }, { - "id": 3148, + "id": 3156, "name": "UPDATE_PARAMS_FAILED", "kind": 16, "kindString": "Enumeration member", @@ -6472,14 +6646,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8357, + "line": 8426, "character": 4 } ], "defaultValue": "\"UPDATE_PARAMS_FAILED\"" }, { - "id": 3137, + "id": 3145, "name": "WORKSHEET_ID_NOT_FOUND", "kind": 16, "kindString": "Enumeration member", @@ -6490,7 +6664,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8324, + "line": 8393, "character": 4 } ], @@ -6502,35 +6676,35 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3139, - 3140, - 3143, - 3152, - 3146, - 3150, - 3141, - 3149, - 3138, - 3144, - 3142, 3147, - 3145, - 3151, 3148, - 3137 + 3151, + 3160, + 3154, + 3158, + 3149, + 3157, + 3146, + 3152, + 3150, + 3155, + 3153, + 3159, + 3156, + 3145 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8322, + "line": 8391, "character": 12 } ] }, { - "id": 1964, + "id": 1966, "name": "EmbedEvent", "kind": 4, "kindString": "Enumeration", @@ -6555,7 +6729,7 @@ }, "children": [ { - "id": 2001, + "id": 2003, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -6576,14 +6750,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2883, + "line": 2885, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 1992, + "id": 1994, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -6604,14 +6778,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2746, + "line": 2748, "character": 4 } ], "defaultValue": "\"*\"" }, { - "id": 1972, + "id": 1974, "name": "AddRemoveColumns", "kind": 16, "kindString": "Enumeration member", @@ -6636,14 +6810,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2494, + "line": 2496, "character": 4 } ], "defaultValue": "\"addRemoveColumns\"" }, { - "id": 2054, + "id": 2056, "name": "AddToCoaching", "kind": 16, "kindString": "Enumeration member", @@ -6664,14 +6838,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3533, + "line": 3535, "character": 4 } ], "defaultValue": "\"addToCoaching\"" }, { - "id": 2018, + "id": 2020, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -6692,14 +6866,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3096, + "line": 3098, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 1977, + "id": 1979, "name": "Alert", "kind": 16, "kindString": "Enumeration member", @@ -6724,14 +6898,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2604, + "line": 2606, "character": 4 } ], "defaultValue": "\"alert\"" }, { - "id": 2014, + "id": 2016, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -6752,14 +6926,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3064, + "line": 3066, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2000, + "id": 2002, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -6780,14 +6954,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2872, + "line": 2874, "character": 4 } ], "defaultValue": "\"answerDelete\"" }, { - "id": 2064, + "id": 2066, "name": "ApiIntercept", "kind": 16, "kindString": "Enumeration member", @@ -6809,14 +6983,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3699, + "line": 3701, "character": 4 } ], "defaultValue": "\"ApiIntercept\"" }, { - "id": 2043, + "id": 2045, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -6849,14 +7023,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3345, + "line": 3347, "character": 4 } ], "defaultValue": "\"AskSageInit\"" }, { - "id": 1978, + "id": 1980, "name": "AuthExpire", "kind": 16, "kindString": "Enumeration member", @@ -6877,14 +7051,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2617, + "line": 2619, "character": 4 } ], "defaultValue": "\"ThoughtspotAuthExpired\"" }, { - "id": 1966, + "id": 1968, "name": "AuthInit", "kind": 16, "kindString": "Enumeration member", @@ -6909,14 +7083,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2396, + "line": 2398, "character": 4 } ], "defaultValue": "\"authInit\"" }, { - "id": 2025, + "id": 2027, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -6937,14 +7111,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3172, + "line": 3174, "character": 4 } ], "defaultValue": "\"cancel\"" }, { - "id": 2041, + "id": 2043, "name": "ChangePersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -6981,14 +7155,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3331, + "line": 3333, "character": 4 } ], "defaultValue": "\"changePersonalisedView\"" }, { - "id": 2012, + "id": 2014, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -7009,14 +7183,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3042, + "line": 3044, "character": 4 } ], "defaultValue": "\"copyAEdit\"" }, { - "id": 2027, + "id": 2029, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -7037,14 +7211,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3192, + "line": 3194, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2007, + "id": 2009, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -7065,14 +7239,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2975, + "line": 2977, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2033, + "id": 2035, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -7089,14 +7263,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3243, + "line": 3245, "character": 4 } ], "defaultValue": "\"createConnection\"" }, { - "id": 2048, + "id": 2050, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -7114,14 +7288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3483, + "line": 3485, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 2049, + "id": 2051, "name": "CreateModel", "kind": 16, "kindString": "Enumeration member", @@ -7138,14 +7312,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3488, + "line": 3490, "character": 4 } ], "defaultValue": "\"createModel\"" }, { - "id": 2042, + "id": 2044, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -7162,14 +7336,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3336, + "line": 3338, "character": 4 } ], "defaultValue": "\"createWorksheet\"" }, { - "id": 2028, + "id": 2030, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -7190,14 +7364,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3203, + "line": 3205, "character": 4 } ], "defaultValue": "\"cross-filter-changed\"" }, { - "id": 1973, + "id": 1975, "name": "CustomAction", "kind": 16, "kindString": "Enumeration member", @@ -7226,14 +7400,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2511, + "line": 2513, "character": 4 } ], "defaultValue": "\"customAction\"" }, { - "id": 1968, + "id": 1970, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -7262,14 +7436,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2424, + "line": 2426, "character": 4 } ], "defaultValue": "\"data\"" }, { - "id": 2055, + "id": 2057, "name": "DataModelInstructions", "kind": 16, "kindString": "Enumeration member", @@ -7290,14 +7464,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3544, + "line": 3546, "character": 4 } ], "defaultValue": "\"DataModelInstructions\"" }, { - "id": 1971, + "id": 1973, "name": "DataSourceSelected", "kind": 16, "kindString": "Enumeration member", @@ -7322,14 +7496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2482, + "line": 2484, "character": 4 } ], "defaultValue": "\"dataSourceSelected\"" }, { - "id": 2023, + "id": 2025, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -7350,14 +7524,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3154, + "line": 3156, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2039, + "id": 2041, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -7386,14 +7560,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3303, + "line": 3305, "character": 4 } ], "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 2040, + "id": 2042, "name": "DeletePersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -7418,14 +7592,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3310, + "line": 3312, "character": 4 } ], "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 1990, + "id": 1992, "name": "DialogClose", "kind": 16, "kindString": "Enumeration member", @@ -7446,14 +7620,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2713, + "line": 2715, "character": 4 } ], "defaultValue": "\"dialog-close\"" }, { - "id": 1989, + "id": 1991, "name": "DialogOpen", "kind": 16, "kindString": "Enumeration member", @@ -7474,14 +7648,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2702, + "line": 2704, "character": 4 } ], "defaultValue": "\"dialog-open\"" }, { - "id": 1994, + "id": 1996, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -7503,14 +7677,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2781, + "line": 2783, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 1997, + "id": 1999, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -7531,14 +7705,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2829, + "line": 2831, "character": 4 } ], "defaultValue": "\"downloadAsCsv\"" }, { - "id": 1996, + "id": 1998, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -7559,14 +7733,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2813, + "line": 2815, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1995, + "id": 1997, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -7587,14 +7761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2797, + "line": 2799, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1998, + "id": 2000, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -7615,14 +7789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2845, + "line": 2847, "character": 4 } ], "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 1999, + "id": 2001, "name": "DownloadLiveboardAsContinuousPDF", "kind": 16, "kindString": "Enumeration member", @@ -7643,14 +7817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2856, + "line": 2858, "character": 4 } ], "defaultValue": "\"downloadLiveboardAsContinuousPDF\"" }, { - "id": 2006, + "id": 2008, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -7671,14 +7845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2964, + "line": 2966, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 2005, + "id": 2007, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -7699,14 +7873,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2952, + "line": 2954, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1970, + "id": 1972, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -7743,14 +7917,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2470, + "line": 2472, "character": 4 } ], "defaultValue": "\"drillDown\"" }, { - "id": 2020, + "id": 2022, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -7771,14 +7945,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3118, + "line": 3120, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2009, + "id": 2011, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -7799,14 +7973,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2998, + "line": 3000, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2069, + "id": 2071, "name": "EmbedPageContextChanged", "kind": 16, "kindString": "Enumeration member", @@ -7827,14 +8001,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3760, + "line": 3762, "character": 4 } ], "defaultValue": "\"EmbedPageContextChanged\"" }, { - "id": 1976, + "id": 1978, "name": "Error", "kind": 16, "kindString": "Enumeration member", @@ -7864,14 +8038,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2594, + "line": 2596, "character": 4 } ], "defaultValue": "\"Error\"" }, { - "id": 2026, + "id": 2028, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -7892,14 +8066,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3182, + "line": 3184, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2010, + "id": 2012, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -7920,14 +8094,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3015, + "line": 3017, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2031, + "id": 2033, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -7948,14 +8122,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3233, + "line": 3235, "character": 4 } ], "defaultValue": "\"filterChanged\"" }, { - "id": 1984, + "id": 1986, "name": "GetDataClick", "kind": 16, "kindString": "Enumeration member", @@ -7976,14 +8150,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2659, + "line": 2661, "character": 4 } ], "defaultValue": "\"getDataClick\"" }, { - "id": 1965, + "id": 1967, "name": "Init", "kind": 16, "kindString": "Enumeration member", @@ -8004,14 +8178,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2384, + "line": 2386, "character": 4 } ], "defaultValue": "\"init\"" }, { - "id": 2058, + "id": 2060, "name": "LastPromptDeleted", "kind": 16, "kindString": "Enumeration member", @@ -8032,14 +8206,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3577, + "line": 3579, "character": 4 } ], "defaultValue": "\"LastPromptDeleted\"" }, { - "id": 2057, + "id": 2059, "name": "LastPromptEdited", "kind": 16, "kindString": "Enumeration member", @@ -8060,14 +8234,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3566, + "line": 3568, "character": 4 } ], "defaultValue": "\"LastPromptEdited\"" }, { - "id": 2017, + "id": 2019, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -8088,14 +8262,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3085, + "line": 3087, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1991, + "id": 1993, "name": "LiveboardRendered", "kind": 16, "kindString": "Enumeration member", @@ -8120,14 +8294,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2735, + "line": 2737, "character": 4 } ], "defaultValue": "\"PinboardRendered\"" }, { - "id": 1967, + "id": 1969, "name": "Load", "kind": 16, "kindString": "Enumeration member", @@ -8152,14 +8326,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2410, + "line": 2412, "character": 4 } ], "defaultValue": "\"load\"" }, { - "id": 2021, + "id": 2023, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -8180,14 +8354,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3129, + "line": 3131, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1987, + "id": 1989, "name": "NoCookieAccess", "kind": 16, "kindString": "Enumeration member", @@ -8208,14 +8382,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2685, + "line": 2687, "character": 4 } ], "defaultValue": "\"noCookieAccess\"" }, { - "id": 2045, + "id": 2047, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", @@ -8246,14 +8420,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3416, + "line": 3418, "character": 4 } ], "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 2063, + "id": 2065, "name": "OrgSwitched", "kind": 16, "kindString": "Enumeration member", @@ -8274,14 +8448,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3633, + "line": 3635, "character": 4 } ], "defaultValue": "\"orgSwitched\"" }, { - "id": 2046, + "id": 2048, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", @@ -8298,14 +8472,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3427, + "line": 3429, "character": 4 } ], "defaultValue": "\"parameterChanged\"" }, { - "id": 2002, + "id": 2004, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -8326,14 +8500,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2904, + "line": 2906, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2022, + "id": 2024, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -8358,14 +8532,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3144, + "line": 3146, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2053, + "id": 2055, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -8386,14 +8560,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3522, + "line": 3524, "character": 4 } ], "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 1969, + "id": 1971, "name": "QueryChanged", "kind": 16, "kindString": "Enumeration member", @@ -8414,14 +8588,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2433, + "line": 2435, "character": 4 } ], "defaultValue": "\"queryChanged\"" }, { - "id": 2079, + "id": 2081, "name": "RefreshLiveboardBrowserCache", "kind": 16, "kindString": "Enumeration member", @@ -8442,14 +8616,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3901, + "line": 3904, "character": 4 } ], "defaultValue": "\"refreshLiveboardBrowserCache\"" }, { - "id": 2044, + "id": 2046, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -8466,14 +8640,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3350, + "line": 3352, "character": 4 } ], "defaultValue": "\"rename\"" }, { - "id": 2038, + "id": 2040, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -8506,14 +8680,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3294, + "line": 3296, "character": 4 } ], "defaultValue": "\"resetLiveboard\"" }, { - "id": 2059, + "id": 2061, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -8534,14 +8708,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3588, + "line": 3590, "character": 4 } ], "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 1985, + "id": 1987, "name": "RouteChange", "kind": 16, "kindString": "Enumeration member", @@ -8562,14 +8736,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2669, + "line": 2671, "character": 4 } ], "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 1993, + "id": 1995, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -8590,14 +8764,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2765, + "line": 2767, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2011, + "id": 2013, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -8618,14 +8792,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3026, + "line": 3028, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 2036, + "id": 2038, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8662,14 +8836,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3276, + "line": 3278, "character": 4 } ], "defaultValue": "\"savePersonalisedView\"" }, { - "id": 2037, + "id": 2039, "name": "SavePersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -8702,14 +8876,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3285, + "line": 3287, "character": 4 } ], "defaultValue": "\"savePersonalisedView\"" }, { - "id": 2019, + "id": 2021, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -8730,14 +8904,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3107, + "line": 3109, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2024, + "id": 2026, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -8758,14 +8932,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3163, + "line": 3165, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2071, + "id": 2073, "name": "SendTestScheduleEmail", "kind": 16, "kindString": "Enumeration member", @@ -8786,14 +8960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3798, + "line": 3801, "character": 4 } ], "defaultValue": "\"sendTestScheduleEmail\"" }, { - "id": 2004, + "id": 2006, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8814,14 +8988,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2940, + "line": 2942, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2013, + "id": 2015, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -8842,14 +9016,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3053, + "line": 3055, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2003, + "id": 2005, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -8870,14 +9044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2922, + "line": 2924, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2066, + "id": 2068, "name": "SpotterConversationDeleted", "kind": 16, "kindString": "Enumeration member", @@ -8898,14 +9072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3723, + "line": 3725, "character": 4 } ], "defaultValue": "\"spotterConversationDeleted\"" }, { - "id": 2065, + "id": 2067, "name": "SpotterConversationRenamed", "kind": 16, "kindString": "Enumeration member", @@ -8926,14 +9100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3711, + "line": 3713, "character": 4 } ], "defaultValue": "\"spotterConversationRenamed\"" }, { - "id": 2067, + "id": 2069, "name": "SpotterConversationSelected", "kind": 16, "kindString": "Enumeration member", @@ -8954,14 +9128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3735, + "line": 3737, "character": 4 } ], "defaultValue": "\"spotterConversationSelected\"" }, { - "id": 2052, + "id": 2054, "name": "SpotterData", "kind": 16, "kindString": "Enumeration member", @@ -8982,14 +9156,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3511, + "line": 3513, "character": 4 } ], "defaultValue": "\"SpotterData\"" }, { - "id": 2060, + "id": 2062, "name": "SpotterInit", "kind": 16, "kindString": "Enumeration member", @@ -9010,14 +9184,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3599, + "line": 3601, "character": 4 } ], "defaultValue": "\"spotterInit\"" }, { - "id": 2061, + "id": 2063, "name": "SpotterLoadComplete", "kind": 16, "kindString": "Enumeration member", @@ -9038,14 +9212,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3610, + "line": 3612, "character": 4 } ], "defaultValue": "\"spotterLoadComplete\"" }, { - "id": 2056, + "id": 2058, "name": "SpotterQueryTriggered", "kind": 16, "kindString": "Enumeration member", @@ -9066,14 +9240,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3555, + "line": 3557, "character": 4 } ], "defaultValue": "\"SpotterQueryTriggered\"" }, { - "id": 2075, + "id": 2077, "name": "SpotterVizCheckpointCreated", "kind": 16, "kindString": "Enumeration member", @@ -9094,14 +9268,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3850, + "line": 3853, "character": 4 } ], "defaultValue": "\"SpotterVizCheckpointCreated\"" }, { - "id": 2076, + "id": 2078, "name": "SpotterVizCheckpointRestored", "kind": 16, "kindString": "Enumeration member", @@ -9122,14 +9296,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3863, + "line": 3866, "character": 4 } ], "defaultValue": "\"SpotterVizCheckpointRestored\"" }, { - "id": 2078, + "id": 2080, "name": "SpotterVizClosed", "kind": 16, "kindString": "Enumeration member", @@ -9150,14 +9324,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3887, + "line": 3890, "character": 4 } ], "defaultValue": "\"SpotterVizClosed\"" }, { - "id": 2077, + "id": 2079, "name": "SpotterVizError", "kind": 16, "kindString": "Enumeration member", @@ -9178,14 +9352,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3875, + "line": 3878, "character": 4 } ], "defaultValue": "\"SpotterVizError\"" }, { - "id": 2072, + "id": 2074, "name": "SpotterVizInit", "kind": 16, "kindString": "Enumeration member", @@ -9206,14 +9380,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3811, + "line": 3814, "character": 4 } ], "defaultValue": "\"SpotterVizInit\"" }, { - "id": 2073, + "id": 2075, "name": "SpotterVizQueryTriggered", "kind": 16, "kindString": "Enumeration member", @@ -9234,14 +9408,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3824, + "line": 3827, "character": 4 } ], "defaultValue": "\"SpotterVizQueryTriggered\"" }, { - "id": 2074, + "id": 2076, "name": "SpotterVizResponseComplete", "kind": 16, "kindString": "Enumeration member", @@ -9262,21 +9436,21 @@ "sources": [ { "fileName": "types.ts", - "line": 3837, + "line": 3840, "character": 4 } ], "defaultValue": "\"SpotterVizResponseComplete\"" }, { - "id": 2070, + "id": 2072, "name": "Subscribed", "kind": 16, "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Represents a special embed event that is triggered whenever any host event is subscribed.", - "text": "You can listen to this event when you need to dispatch a host event during load or render,\nparticularly in situations where timing issues may occur.\n", + "shortText": "Represents a special embed event that is triggered whenever any host event is\nsubscribed.", + "text": "You can listen to this event when you need to dispatch a host event during load or\nrender, particularly in situations where timing issues may occur.\n", "tags": [ { "tag": "example", @@ -9295,14 +9469,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3783, + "line": 3786, "character": 4 } ], "defaultValue": "\"Subscribed\"" }, { - "id": 2047, + "id": 2049, "name": "TableVizRendered", "kind": 16, "kindString": "Enumeration member", @@ -9324,14 +9498,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3470, + "line": 3472, "character": 4 } ], "defaultValue": "\"TableVizRendered\"" }, { - "id": 2032, + "id": 2034, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -9348,14 +9522,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3238, + "line": 3240, "character": 4 } ], "defaultValue": "\"updateConnection\"" }, { - "id": 2034, + "id": 2036, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -9392,14 +9566,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3255, + "line": 3257, "character": 4 } ], "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 2035, + "id": 2037, "name": "UpdatePersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -9432,14 +9606,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3265, + "line": 3267, "character": 4 } ], "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 2008, + "id": 2010, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -9460,14 +9634,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2986, + "line": 2988, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1975, + "id": 1977, "name": "VizPointClick", "kind": 16, "kindString": "Enumeration member", @@ -9496,14 +9670,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2542, + "line": 2544, "character": 4 } ], "defaultValue": "\"vizPointClick\"" }, { - "id": 1974, + "id": 1976, "name": "VizPointDoubleClick", "kind": 16, "kindString": "Enumeration member", @@ -9528,14 +9702,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2523, + "line": 2525, "character": 4 } ], "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 2029, + "id": 2031, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -9556,7 +9730,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3214, + "line": 3216, "character": 4 } ], @@ -9568,120 +9742,120 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2001, - 1992, - 1972, - 2054, - 2018, - 1977, - 2014, - 2000, - 2064, + 2003, + 1994, + 1974, + 2056, + 2020, + 1979, + 2016, + 2002, + 2066, + 2045, + 1980, + 1968, + 2027, 2043, - 1978, - 1966, + 2014, + 2029, + 2009, + 2035, + 2050, + 2051, + 2044, + 2030, + 1975, + 1970, + 2057, + 1973, 2025, 2041, - 2012, - 2027, + 2042, + 1992, + 1991, + 1996, + 1999, + 1998, + 1997, + 2000, + 2001, + 2008, 2007, + 1972, + 2022, + 2011, + 2071, + 1978, + 2028, + 2012, 2033, + 1986, + 1967, + 2060, + 2059, + 2019, + 1993, + 1969, + 2023, + 1989, + 2047, + 2065, 2048, - 2049, - 2042, - 2028, - 1973, - 1968, + 2004, + 2024, 2055, 1971, - 2023, - 2039, + 2081, + 2046, 2040, - 1990, - 1989, - 1994, - 1997, - 1996, + 2061, + 1987, 1995, - 1998, - 1999, + 2013, + 2038, + 2039, + 2021, + 2026, + 2073, 2006, + 2015, 2005, - 1970, - 2020, - 2009, + 2068, + 2067, 2069, - 1976, - 2026, - 2010, - 2031, - 1984, - 1965, - 2058, - 2057, - 2017, - 1991, - 1967, - 2021, - 1987, - 2045, + 2054, + 2062, 2063, - 2046, - 2002, - 2022, - 2053, - 1969, + 2058, + 2077, + 2078, + 2080, 2079, - 2044, - 2038, - 2059, - 1985, - 1993, - 2011, - 2036, - 2037, - 2019, - 2024, - 2071, - 2004, - 2013, - 2003, - 2066, - 2065, - 2067, - 2052, - 2060, - 2061, - 2056, + 2074, 2075, 2076, - 2078, - 2077, 2072, - 2073, - 2074, - 2070, - 2047, - 2032, + 2049, 2034, - 2035, - 2008, - 1975, - 1974, - 2029 + 2036, + 2037, + 2010, + 1977, + 1976, + 2031 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2371, + "line": 2373, "character": 12 } ] }, { - "id": 3159, + "id": 3167, "name": "ErrorDetailsTypes", "kind": 4, "kindString": "Enumeration", @@ -9706,7 +9880,7 @@ }, "children": [ { - "id": 3160, + "id": 3168, "name": "API", "kind": 16, "kindString": "Enumeration member", @@ -9717,14 +9891,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8284, + "line": 8353, "character": 4 } ], "defaultValue": "\"API\"" }, { - "id": 3162, + "id": 3170, "name": "NETWORK", "kind": 16, "kindString": "Enumeration member", @@ -9735,14 +9909,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8288, + "line": 8357, "character": 4 } ], "defaultValue": "\"NETWORK\"" }, { - "id": 3161, + "id": 3169, "name": "VALIDATION_ERROR", "kind": 16, "kindString": "Enumeration member", @@ -9753,7 +9927,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8286, + "line": 8355, "character": 4 } ], @@ -9765,22 +9939,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3160, - 3162, - 3161 + 3168, + 3170, + 3169 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8282, + "line": 8351, "character": 12 } ] }, { - "id": 2755, + "id": 2763, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -9790,7 +9964,7 @@ }, "children": [ { - "id": 2759, + "id": 2767, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -9814,7 +9988,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2763, + "id": 2771, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -9838,7 +10012,7 @@ "defaultValue": "\"create\"" }, { - "id": 2765, + "id": 2773, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -9862,7 +10036,7 @@ "defaultValue": "\"favorites\"" }, { - "id": 2757, + "id": 2765, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -9886,7 +10060,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2762, + "id": 2770, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -9910,7 +10084,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2758, + "id": 2766, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -9934,7 +10108,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2760, + "id": 2768, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -9958,7 +10132,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2756, + "id": 2764, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -9982,7 +10156,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2761, + "id": 2769, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -10006,7 +10180,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2764, + "id": 2772, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -10035,16 +10209,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2759, - 2763, + 2767, + 2771, + 2773, 2765, - 2757, - 2762, - 2758, - 2760, - 2756, - 2761, - 2764 + 2770, + 2766, + 2768, + 2764, + 2769, + 2772 ] } ], @@ -10057,7 +10231,7 @@ ] }, { - "id": 3064, + "id": 3072, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -10073,7 +10247,7 @@ }, "children": [ { - "id": 3067, + "id": 3075, "name": "Focused", "kind": 16, "kindString": "Enumeration member", @@ -10097,7 +10271,7 @@ "defaultValue": "\"v4\"" }, { - "id": 3065, + "id": 3073, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -10115,7 +10289,7 @@ "defaultValue": "\"v2\"" }, { - "id": 3066, + "id": 3074, "name": "ModularWithStylingChanges", "kind": 16, "kindString": "Enumeration member", @@ -10138,9 +10312,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3067, - 3065, - 3066 + 3075, + 3073, + 3074 ] } ], @@ -10153,14 +10327,14 @@ ] }, { - "id": 3058, + "id": 3066, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 3060, + "id": 3068, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -10175,7 +10349,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 3061, + "id": 3069, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -10190,7 +10364,7 @@ "defaultValue": "\"none\"" }, { - "id": 3059, + "id": 3067, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -10210,9 +10384,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3060, - 3061, - 3059 + 3068, + 3069, + 3067 ] } ], @@ -10225,7 +10399,7 @@ ] }, { - "id": 2766, + "id": 2774, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -10242,7 +10416,7 @@ }, "children": [ { - "id": 2769, + "id": 2777, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -10253,14 +10427,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2243, + "line": 2245, "character": 4 } ], "defaultValue": "\"FAVORITE\"" }, { - "id": 2772, + "id": 2780, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -10271,14 +10445,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2255, + "line": 2257, "character": 4 } ], "defaultValue": "\"LEARNING\"" }, { - "id": 2770, + "id": 2778, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -10289,14 +10463,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2247, + "line": 2249, "character": 4 } ], "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2767, + "id": 2775, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -10307,14 +10481,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2235, + "line": 2237, "character": 4 } ], "defaultValue": "\"SEARCH\"" }, { - "id": 2771, + "id": 2779, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -10325,14 +10499,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2251, + "line": 2253, "character": 4 } ], "defaultValue": "\"TRENDING\"" }, { - "id": 2768, + "id": 2776, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -10343,7 +10517,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2239, + "line": 2241, "character": 4 } ], @@ -10355,25 +10529,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2769, - 2772, - 2770, - 2767, - 2771, - 2768 + 2777, + 2780, + 2778, + 2775, + 2779, + 2776 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2231, + "line": 2233, "character": 12 } ] }, { - "id": 2080, + "id": 2082, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -10406,7 +10580,7 @@ }, "children": [ { - "id": 2103, + "id": 2105, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -10427,14 +10601,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4567, + "line": 4570, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2091, + "id": 2093, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -10464,14 +10638,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4265, + "line": 4268, "character": 4 } ], "defaultValue": "\"addColumns\"" }, { - "id": 2148, + "id": 2150, "name": "AddToCoaching", "kind": 16, "kindString": "Enumeration member", @@ -10497,14 +10671,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5849, + "line": 5852, "character": 4 } ], "defaultValue": "\"addToCoaching\"" }, { - "id": 2152, + "id": 2154, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -10530,14 +10704,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5891, + "line": 5894, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2132, + "id": 2134, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -10558,14 +10732,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5534, + "line": 5537, "character": 4 } ], "defaultValue": "\"AskSage\"" }, { - "id": 2155, + "id": 2157, "name": "AskSpotter", "kind": 16, "kindString": "Enumeration member", @@ -10591,14 +10765,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5929, + "line": 5932, "character": 4 } ], "defaultValue": "\"AskSpotter\"" }, { - "id": 2164, + "id": 2166, "name": "CloseSpotterVizPanel", "kind": 16, "kindString": "Enumeration member", @@ -10619,14 +10793,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6038, + "line": 6041, "character": 4 } ], "defaultValue": "\"CloseSpotterVizPanel\"" }, { - "id": 2110, + "id": 2112, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -10668,14 +10842,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4800, + "line": 4803, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2107, + "id": 2109, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -10713,14 +10887,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4675, + "line": 4678, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2149, + "id": 2151, "name": "DataModelInstructions", "kind": 16, "kindString": "Enumeration member", @@ -10741,14 +10915,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5858, + "line": 5861, "character": 4 } ], "defaultValue": "\"DataModelInstructions\"" }, { - "id": 2114, + "id": 2116, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -10782,14 +10956,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4953, + "line": 4956, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2151, + "id": 2153, "name": "DeleteLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -10810,14 +10984,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5876, + "line": 5879, "character": 4 } ], "defaultValue": "\"DeleteLastPrompt\"" }, { - "id": 2157, + "id": 2159, "name": "DestroyEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10838,14 +11012,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5949, + "line": 5952, "character": 4 } ], "defaultValue": "\"EmbedDestroyed\"" }, { - "id": 2116, + "id": 2118, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -10875,14 +11049,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5015, + "line": 5018, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2118, + "id": 2120, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -10916,14 +11090,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5085, + "line": 5088, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2101, + "id": 2103, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -10961,14 +11135,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4545, + "line": 4548, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2117, + "id": 2119, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -10993,14 +11167,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5046, + "line": 5049, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2119, + "id": 2121, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -11034,14 +11208,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5124, + "line": 5127, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2102, + "id": 2104, "name": "DownloadLiveboardAsContinuousPDF", "kind": 16, "kindString": "Enumeration member", @@ -11062,14 +11236,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4557, + "line": 4560, "character": 4 } ], "defaultValue": "\"downloadLiveboardAsContinuousPDF\"" }, { - "id": 2082, + "id": 2084, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -11107,14 +11281,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4076, + "line": 4079, "character": 4 } ], "defaultValue": "\"triggerDrillDown\"" }, { - "id": 2109, + "id": 2111, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -11153,14 +11327,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4755, + "line": 4758, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2146, + "id": 2148, "name": "EditLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -11190,14 +11364,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5823, + "line": 5826, "character": 4 } ], "defaultValue": "\"EditLastPrompt\"" }, { - "id": 2099, + "id": 2101, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -11226,14 +11400,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4491, + "line": 4494, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2106, + "id": 2108, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -11263,14 +11437,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4644, + "line": 4647, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2098, + "id": 2100, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -11299,14 +11473,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4469, + "line": 4472, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2131, + "id": 2133, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -11332,14 +11506,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5524, + "line": 5527, "character": 4 } ], "defaultValue": "\"getAnswerSession\"" }, { - "id": 2126, + "id": 2128, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -11364,14 +11538,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5326, + "line": 5329, "character": 4 } ], "defaultValue": "\"getFilters\"" }, { - "id": 2085, + "id": 2087, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -11396,14 +11570,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4103, + "line": 4106, "character": 4 } ], "defaultValue": "\"GetIframeUrl\"" }, { - "id": 2137, + "id": 2139, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -11429,14 +11603,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5628, + "line": 5631, "character": 4 } ], "defaultValue": "\"GetParameters\"" }, { - "id": 2112, + "id": 2114, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -11473,14 +11647,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4891, + "line": 4894, "character": 4 } ], "defaultValue": "\"getTML\"" }, { - "id": 2128, + "id": 2130, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -11505,14 +11679,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5450, + "line": 5453, "character": 4 } ], "defaultValue": "\"getTabs\"" }, { - "id": 2162, + "id": 2164, "name": "InitSpotterVizConversation", "kind": 16, "kindString": "Enumeration member", @@ -11533,14 +11707,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6018, + "line": 6021, "character": 4 } ], "defaultValue": "\"InitSpotterVizConversation\"" }, { - "id": 2095, + "id": 2097, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -11565,14 +11739,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4417, + "line": 4420, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2104, + "id": 2106, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -11617,14 +11791,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4612, + "line": 4615, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2108, + "id": 2110, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -11666,14 +11840,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4710, + "line": 4713, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2124, + "id": 2126, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -11707,14 +11881,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5290, + "line": 5293, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2089, + "id": 2091, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -11741,14 +11915,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4219, + "line": 4222, "character": 4 } ], "defaultValue": "\"Navigate\"" }, { - "id": 2090, + "id": 2092, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -11782,14 +11956,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4247, + "line": 4250, "character": 4 } ], "defaultValue": "\"openFilter\"" }, { - "id": 2163, + "id": 2165, "name": "OpenSpotterVizPanel", "kind": 16, "kindString": "Enumeration member", @@ -11810,14 +11984,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6028, + "line": 6031, "character": 4 } ], "defaultValue": "\"OpenSpotterVizPanel\"" }, { - "id": 2094, + "id": 2096, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -11871,14 +12045,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4401, + "line": 4404, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2111, + "id": 2113, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -11920,14 +12094,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4845, + "line": 4848, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2147, + "id": 2149, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -11952,14 +12126,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5838, + "line": 5841, "character": 4 } ], "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 2165, + "id": 2167, "name": "RefreshLiveboardBrowserCache", "kind": 16, "kindString": "Enumeration member", @@ -11980,14 +12154,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6049, + "line": 6052, "character": 4 } ], "defaultValue": "\"refreshLiveboardBrowserCache\"" }, { - "id": 2105, + "id": 2107, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -12016,14 +12190,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4626, + "line": 4629, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2092, + "id": 2094, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -12053,14 +12227,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4283, + "line": 4286, "character": 4 } ], "defaultValue": "\"removeColumn\"" }, { - "id": 2134, + "id": 2136, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -12085,14 +12259,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5561, + "line": 5564, "character": 4 } ], "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 2135, + "id": 2137, "name": "ResetLiveboardPersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -12113,14 +12287,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5570, + "line": 5573, "character": 4 } ], "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 2125, + "id": 2127, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -12145,14 +12319,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5308, + "line": 5311, "character": 4 } ], "defaultValue": "\"resetSearch\"" }, { - "id": 2150, + "id": 2152, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -12173,14 +12347,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5867, + "line": 5870, "character": 4 } ], "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 2121, + "id": 2123, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -12214,14 +12388,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5201, + "line": 5204, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2142, + "id": 2144, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -12263,14 +12437,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5757, + "line": 5760, "character": 4 } ], "defaultValue": "\"saveAnswer\"" }, { - "id": 2096, + "id": 2098, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -12295,14 +12469,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4432, + "line": 4435, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2097, + "id": 2099, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -12327,14 +12501,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4447, + "line": 4450, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2081, + "id": 2083, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -12360,14 +12534,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4007, + "line": 4010, "character": 4 } ], "defaultValue": "\"search\"" }, { - "id": 2140, + "id": 2142, "name": "SelectPersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -12396,14 +12570,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5687, + "line": 5690, "character": 4 } ], "defaultValue": "\"SelectPersonalisedView\"" }, { - "id": 2160, + "id": 2162, "name": "SendTestScheduleEmail", "kind": 16, "kindString": "Enumeration member", @@ -12428,14 +12602,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5995, + "line": 5998, "character": 4 } ], "defaultValue": "\"sendTestScheduleEmail\"" }, { - "id": 2087, + "id": 2089, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -12465,14 +12639,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4145, + "line": 4148, "character": 4 } ], "defaultValue": "\"SetActiveTab\"" }, { - "id": 2130, + "id": 2132, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -12502,14 +12676,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5494, + "line": 5497, "character": 4 } ], "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 2129, + "id": 2131, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -12539,14 +12713,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5472, + "line": 5475, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 2086, + "id": 2088, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -12576,14 +12750,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4125, + "line": 4128, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 2120, + "id": 2122, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -12612,14 +12786,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5149, + "line": 5152, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2113, + "id": 2115, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -12653,14 +12827,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4924, + "line": 4927, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2115, + "id": 2117, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -12694,14 +12868,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4987, + "line": 4990, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2145, + "id": 2147, "name": "SpotterSearch", "kind": 16, "kindString": "Enumeration member", @@ -12731,14 +12905,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5807, + "line": 5810, "character": 4 } ], "defaultValue": "\"SpotterSearch\"" }, { - "id": 2161, + "id": 2163, "name": "SpotterVizSendUserMessage", "kind": 16, "kindString": "Enumeration member", @@ -12764,14 +12938,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6008, + "line": 6011, "character": 4 } ], "defaultValue": "\"SpotterVizSendUserMessage\"" }, { - "id": 2158, + "id": 2160, "name": "StartNewSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -12793,14 +12967,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5963, + "line": 5966, "character": 4 } ], "defaultValue": "\"StartNewSpotterConversation\"" }, { - "id": 2123, + "id": 2125, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -12834,14 +13008,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5260, + "line": 5263, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2122, + "id": 2124, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -12875,14 +13049,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5230, + "line": 5233, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2144, + "id": 2146, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -12908,14 +13082,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5782, + "line": 5785, "character": 4 } ], "defaultValue": "\"TransformTableVizData\"" }, { - "id": 2133, + "id": 2135, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -12936,14 +13110,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5550, + "line": 5553, "character": 4 } ], "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 2127, + "id": 2129, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -12985,14 +13159,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5429, + "line": 5432, "character": 4 } ], "defaultValue": "\"updateFilters\"" }, { - "id": 2136, + "id": 2138, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -13022,14 +13196,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5599, + "line": 5602, "character": 4 } ], "defaultValue": "\"UpdateParameters\"" }, { - "id": 2138, + "id": 2140, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -13054,14 +13228,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5646, + "line": 5649, "character": 4 } ], "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 2139, + "id": 2141, "name": "UpdatePersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -13078,14 +13252,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5654, + "line": 5657, "character": 4 } ], "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 2088, + "id": 2090, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -13120,14 +13294,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4188, + "line": 4191, "character": 4 } ], "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 2100, + "id": 2102, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -13152,14 +13326,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4506, + "line": 4509, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2093, + "id": 2095, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -13180,7 +13354,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4299, + "line": 4302, "character": 4 } ], @@ -13192,96 +13366,96 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2103, - 2091, - 2148, - 2152, - 2132, - 2155, - 2164, - 2110, - 2107, - 2149, - 2114, - 2151, + 2105, + 2093, + 2150, + 2154, + 2134, 2157, + 2166, + 2112, + 2109, + 2151, 2116, + 2153, + 2159, 2118, - 2101, - 2117, + 2120, + 2103, 2119, - 2102, - 2082, - 2109, - 2146, - 2099, + 2121, + 2104, + 2084, + 2111, + 2148, + 2101, + 2108, + 2100, + 2133, + 2128, + 2087, + 2139, + 2114, + 2130, + 2164, + 2097, 2106, - 2098, - 2131, + 2110, 2126, - 2085, + 2091, + 2092, + 2165, + 2096, + 2113, + 2149, + 2167, + 2107, + 2094, + 2136, 2137, - 2112, - 2128, + 2127, + 2152, + 2123, + 2144, + 2098, + 2099, + 2083, + 2142, 2162, - 2095, - 2104, - 2108, - 2124, 2089, - 2090, - 2163, - 2094, - 2111, + 2132, + 2131, + 2088, + 2122, + 2115, + 2117, 2147, - 2165, - 2105, - 2092, - 2134, - 2135, - 2125, - 2150, - 2121, - 2142, - 2096, - 2097, - 2081, - 2140, + 2163, 2160, - 2087, - 2130, + 2125, + 2124, + 2146, + 2135, 2129, - 2086, - 2120, - 2113, - 2115, - 2145, - 2161, - 2158, - 2123, - 2122, - 2144, - 2133, - 2127, - 2136, 2138, - 2139, - 2088, - 2100, - 2093 + 2140, + 2141, + 2090, + 2102, + 2095 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3977, + "line": 3980, "character": 12 } ] }, { - "id": 3132, + "id": 3140, "name": "InterceptedApiType", "kind": 4, "kindString": "Enumeration", @@ -13291,7 +13465,7 @@ }, "children": [ { - "id": 3134, + "id": 3142, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -13302,14 +13476,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8503, + "line": 8572, "character": 4 } ], "defaultValue": "\"ALL\"" }, { - "id": 3133, + "id": 3141, "name": "AnswerData", "kind": 16, "kindString": "Enumeration member", @@ -13320,14 +13494,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8499, + "line": 8568, "character": 4 } ], "defaultValue": "\"AnswerData\"" }, { - "id": 3135, + "id": 3143, "name": "LiveboardData", "kind": 16, "kindString": "Enumeration member", @@ -13338,7 +13512,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8507, + "line": 8576, "character": 4 } ], @@ -13350,22 +13524,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3134, - 3133, - 3135 + 3142, + 3141, + 3143 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8495, + "line": 8564, "character": 12 } ] }, { - "id": 3167, + "id": 3175, "name": "LegendPosition", "kind": 4, "kindString": "Enumeration", @@ -13381,7 +13555,7 @@ }, "children": [ { - "id": 3169, + "id": 3177, "name": "Bottom", "kind": 16, "kindString": "Enumeration member", @@ -13392,14 +13566,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8773, + "line": 8842, "character": 4 } ], "defaultValue": "\"bottom\"" }, { - "id": 3170, + "id": 3178, "name": "Left", "kind": 16, "kindString": "Enumeration member", @@ -13410,14 +13584,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8775, + "line": 8844, "character": 4 } ], "defaultValue": "\"left\"" }, { - "id": 3171, + "id": 3179, "name": "Right", "kind": 16, "kindString": "Enumeration member", @@ -13428,14 +13602,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8777, + "line": 8846, "character": 4 } ], "defaultValue": "\"right\"" }, { - "id": 3168, + "id": 3176, "name": "Top", "kind": 16, "kindString": "Enumeration member", @@ -13446,7 +13620,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8771, + "line": 8840, "character": 4 } ], @@ -13458,23 +13632,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3169, - 3170, - 3171, - 3168 + 3177, + 3178, + 3179, + 3176 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8769, + "line": 8838, "character": 12 } ] }, { - "id": 3068, + "id": 3076, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -13490,7 +13664,7 @@ }, "children": [ { - "id": 3069, + "id": 3077, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -13508,7 +13682,7 @@ "defaultValue": "\"v2\"" }, { - "id": 3070, + "id": 3078, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -13531,8 +13705,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3069, - 3070 + 3077, + 3078 ] } ], @@ -13545,7 +13719,7 @@ ] }, { - "id": 3111, + "id": 3119, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -13561,7 +13735,7 @@ }, "children": [ { - "id": 3115, + "id": 3123, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -13572,14 +13746,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2281, + "line": 2283, "character": 4 } ], "defaultValue": "\"AUTHOR\"" }, { - "id": 3116, + "id": 3124, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -13590,14 +13764,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2285, + "line": 2287, "character": 4 } ], "defaultValue": "\"DATE_SORT\"" }, { - "id": 3112, + "id": 3120, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -13608,14 +13782,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2268, + "line": 2270, "character": 4 } ], "defaultValue": "\"FAVOURITE\"" }, { - "id": 3113, + "id": 3121, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -13632,14 +13806,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2273, + "line": 2275, "character": 4 } ], "defaultValue": "\"FAVOURITE\"" }, { - "id": 3117, + "id": 3125, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -13650,14 +13824,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2289, + "line": 2291, "character": 4 } ], "defaultValue": "\"SHARE\"" }, { - "id": 3114, + "id": 3122, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -13668,14 +13842,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2277, + "line": 2279, "character": 4 } ], "defaultValue": "\"TAGS\"" }, { - "id": 3118, + "id": 3126, "name": "Verified", "kind": 16, "kindString": "Enumeration member", @@ -13686,7 +13860,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2293, + "line": 2295, "character": 4 } ], @@ -13698,26 +13872,26 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3115, - 3116, - 3112, - 3113, - 3117, - 3114, - 3118 + 3123, + 3124, + 3120, + 3121, + 3125, + 3122, + 3126 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2264, + "line": 2266, "character": 12 } ] }, { - "id": 3035, + "id": 3043, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -13727,7 +13901,7 @@ }, "children": [ { - "id": 3040, + "id": 3048, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -13748,14 +13922,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8238, + "line": 8307, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 3037, + "id": 3045, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -13776,14 +13950,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8199, + "line": 8268, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 3039, + "id": 3047, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -13804,14 +13978,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8224, + "line": 8293, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 3036, + "id": 3044, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -13832,14 +14006,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8187, + "line": 8256, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 3041, + "id": 3049, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -13860,14 +14034,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8250, + "line": 8319, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 3038, + "id": 3046, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -13888,7 +14062,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8211, + "line": 8280, "character": 4 } ], @@ -13900,25 +14074,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3040, - 3037, - 3039, - 3036, - 3041, - 3038 + 3048, + 3045, + 3047, + 3044, + 3049, + 3046 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8174, + "line": 8243, "character": 12 } ] }, { - "id": 1923, + "id": 1925, "name": "Page", "kind": 4, "kindString": "Enumeration", @@ -13928,7 +14102,7 @@ }, "children": [ { - "id": 1926, + "id": 1928, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -13946,7 +14120,7 @@ "defaultValue": "\"answers\"" }, { - "id": 1929, + "id": 1931, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -13964,7 +14138,7 @@ "defaultValue": "\"data\"" }, { - "id": 1924, + "id": 1926, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -13982,7 +14156,7 @@ "defaultValue": "\"home\"" }, { - "id": 1927, + "id": 1929, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -14000,7 +14174,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 1931, + "id": 1933, "name": "Monitor", "kind": 16, "kindString": "Enumeration member", @@ -14018,7 +14192,7 @@ "defaultValue": "\"monitor\"" }, { - "id": 1925, + "id": 1927, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -14036,7 +14210,7 @@ "defaultValue": "\"search\"" }, { - "id": 1930, + "id": 1932, "name": "SpotIQ", "kind": 16, "kindString": "Enumeration member", @@ -14059,13 +14233,13 @@ "title": "Enumeration members", "kind": 16, "children": [ + 1928, + 1931, 1926, 1929, - 1924, + 1933, 1927, - 1931, - 1925, - 1930 + 1932 ] } ], @@ -14078,14 +14252,14 @@ ] }, { - "id": 2744, + "id": 2752, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2745, + "id": 2753, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -14093,14 +14267,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8003, + "line": 8072, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2747, + "id": 2755, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -14108,14 +14282,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8005, + "line": 8074, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2746, + "id": 2754, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -14123,14 +14297,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8004, + "line": 8073, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2748, + "id": 2756, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -14138,7 +14312,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8006, + "line": 8075, "character": 4 } ], @@ -14150,23 +14324,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2745, - 2747, - 2746, - 2748 + 2753, + 2755, + 2754, + 2756 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8002, + "line": 8071, "character": 12 } ] }, { - "id": 3062, + "id": 3070, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -14182,7 +14356,7 @@ }, "children": [ { - "id": 3063, + "id": 3071, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -14205,7 +14379,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3063 + 3071 ] } ], @@ -14218,7 +14392,7 @@ ] }, { - "id": 1948, + "id": 1950, "name": "RuntimeFilterOp", "kind": 4, "kindString": "Enumeration", @@ -14228,7 +14402,7 @@ }, "children": [ { - "id": 1956, + "id": 1958, "name": "BEGINS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -14239,14 +14413,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2191, + "line": 2193, "character": 4 } ], "defaultValue": "\"BEGINS_WITH\"" }, { - "id": 1961, + "id": 1963, "name": "BW", "kind": 16, "kindString": "Enumeration member", @@ -14257,14 +14431,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2211, + "line": 2213, "character": 4 } ], "defaultValue": "\"BW\"" }, { - "id": 1960, + "id": 1962, "name": "BW_INC", "kind": 16, "kindString": "Enumeration member", @@ -14275,14 +14449,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2207, + "line": 2209, "character": 4 } ], "defaultValue": "\"BW_INC\"" }, { - "id": 1958, + "id": 1960, "name": "BW_INC_MAX", "kind": 16, "kindString": "Enumeration member", @@ -14293,14 +14467,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2199, + "line": 2201, "character": 4 } ], "defaultValue": "\"BW_INC_MAX\"" }, { - "id": 1959, + "id": 1961, "name": "BW_INC_MIN", "kind": 16, "kindString": "Enumeration member", @@ -14311,14 +14485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2203, + "line": 2205, "character": 4 } ], "defaultValue": "\"BW_INC_MIN\"" }, { - "id": 1955, + "id": 1957, "name": "CONTAINS", "kind": 16, "kindString": "Enumeration member", @@ -14329,14 +14503,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2187, + "line": 2189, "character": 4 } ], "defaultValue": "\"CONTAINS\"" }, { - "id": 1957, + "id": 1959, "name": "ENDS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -14347,14 +14521,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2195, + "line": 2197, "character": 4 } ], "defaultValue": "\"ENDS_WITH\"" }, { - "id": 1949, + "id": 1951, "name": "EQ", "kind": 16, "kindString": "Enumeration member", @@ -14365,14 +14539,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2163, + "line": 2165, "character": 4 } ], "defaultValue": "\"EQ\"" }, { - "id": 1954, + "id": 1956, "name": "GE", "kind": 16, "kindString": "Enumeration member", @@ -14383,14 +14557,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2183, + "line": 2185, "character": 4 } ], "defaultValue": "\"GE\"" }, { - "id": 1953, + "id": 1955, "name": "GT", "kind": 16, "kindString": "Enumeration member", @@ -14401,14 +14575,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2179, + "line": 2181, "character": 4 } ], "defaultValue": "\"GT\"" }, { - "id": 1962, + "id": 1964, "name": "IN", "kind": 16, "kindString": "Enumeration member", @@ -14419,14 +14593,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2215, + "line": 2217, "character": 4 } ], "defaultValue": "\"IN\"" }, { - "id": 1952, + "id": 1954, "name": "LE", "kind": 16, "kindString": "Enumeration member", @@ -14437,14 +14611,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2175, + "line": 2177, "character": 4 } ], "defaultValue": "\"LE\"" }, { - "id": 1951, + "id": 1953, "name": "LT", "kind": 16, "kindString": "Enumeration member", @@ -14455,14 +14629,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2171, + "line": 2173, "character": 4 } ], "defaultValue": "\"LT\"" }, { - "id": 1950, + "id": 1952, "name": "NE", "kind": 16, "kindString": "Enumeration member", @@ -14473,14 +14647,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2167, + "line": 2169, "character": 4 } ], "defaultValue": "\"NE\"" }, { - "id": 1963, + "id": 1965, "name": "NOT_IN", "kind": 16, "kindString": "Enumeration member", @@ -14491,7 +14665,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2219, + "line": 2221, "character": 4 } ], @@ -14503,34 +14677,34 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1956, - 1961, - 1960, 1958, + 1963, + 1962, + 1960, + 1961, + 1957, 1959, + 1951, + 1956, 1955, - 1957, - 1949, + 1964, 1954, 1953, - 1962, 1952, - 1951, - 1950, - 1963 + 1965 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2159, + "line": 2161, "character": 12 } ] }, { - "id": 3206, + "id": 3214, "name": "TableContentDensity", "kind": 4, "kindString": "Enumeration", @@ -14546,7 +14720,7 @@ }, "children": [ { - "id": 3208, + "id": 3216, "name": "Compact", "kind": 16, "kindString": "Enumeration member", @@ -14557,14 +14731,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8801, + "line": 8870, "character": 4 } ], "defaultValue": "\"COMPACT\"" }, { - "id": 3207, + "id": 3215, "name": "Regular", "kind": 16, "kindString": "Enumeration member", @@ -14575,7 +14749,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8799, + "line": 8868, "character": 4 } ], @@ -14587,21 +14761,21 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3208, - 3207 + 3216, + 3215 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8797, + "line": 8866, "character": 12 } ] }, { - "id": 3202, + "id": 3210, "name": "TableTheme", "kind": 4, "kindString": "Enumeration", @@ -14617,7 +14791,7 @@ }, "children": [ { - "id": 3203, + "id": 3211, "name": "Outline", "kind": 16, "kindString": "Enumeration member", @@ -14628,14 +14802,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8786, + "line": 8855, "character": 4 } ], "defaultValue": "\"OUTLINE\"" }, { - "id": 3204, + "id": 3212, "name": "Row", "kind": 16, "kindString": "Enumeration member", @@ -14646,14 +14820,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8788, + "line": 8857, "character": 4 } ], "defaultValue": "\"ROW\"" }, { - "id": 3205, + "id": 3213, "name": "Zebra", "kind": 16, "kindString": "Enumeration member", @@ -14664,7 +14838,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8790, + "line": 8859, "character": 4 } ], @@ -14676,29 +14850,29 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3203, - 3204, - 3205 + 3211, + 3212, + 3213 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8784, + "line": 8853, "character": 12 } ] }, { - "id": 3094, + "id": 3102, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 3103, + "id": 3111, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -14713,7 +14887,7 @@ "defaultValue": "\"drillDown\"" }, { - "id": 3099, + "id": 3107, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -14728,7 +14902,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 3104, + "id": 3112, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -14743,7 +14917,7 @@ "defaultValue": "\"getAnswerSession\"" }, { - "id": 3098, + "id": 3106, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -14758,7 +14932,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 3097, + "id": 3105, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -14773,7 +14947,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 3110, + "id": 3118, "name": "GetExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -14788,7 +14962,7 @@ "defaultValue": "\"getExportRequestForCurrentPinboard\"" }, { - "id": 3105, + "id": 3113, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -14803,7 +14977,7 @@ "defaultValue": "\"getFilters\"" }, { - "id": 3106, + "id": 3114, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -14818,7 +14992,7 @@ "defaultValue": "\"getIframeUrl\"" }, { - "id": 3100, + "id": 3108, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -14833,7 +15007,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 3107, + "id": 3115, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -14848,7 +15022,7 @@ "defaultValue": "\"getParameters\"" }, { - "id": 3108, + "id": 3116, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -14863,7 +15037,7 @@ "defaultValue": "\"getTML\"" }, { - "id": 3109, + "id": 3117, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -14878,7 +15052,7 @@ "defaultValue": "\"getTabs\"" }, { - "id": 3101, + "id": 3109, "name": "GetUnsavedAnswerTML", "kind": 16, "kindString": "Enumeration member", @@ -14893,7 +15067,7 @@ "defaultValue": "\"getUnsavedAnswerTML\"" }, { - "id": 3095, + "id": 3103, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -14908,7 +15082,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 3096, + "id": 3104, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -14923,7 +15097,7 @@ "defaultValue": "\"saveAnswer\"" }, { - "id": 3102, + "id": 3110, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -14943,22 +15117,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3103, - 3099, - 3104, - 3098, - 3097, - 3110, - 3105, - 3106, - 3100, + 3111, 3107, + 3112, + 3106, + 3105, + 3118, + 3113, + 3114, 3108, + 3115, + 3116, + 3117, 3109, - 3101, - 3095, - 3096, - 3102 + 3103, + 3104, + 3110 ] } ], @@ -14971,7 +15145,7 @@ ] }, { - "id": 1836, + "id": 1838, "name": "AnswerService", "kind": 128, "kindString": "Class", @@ -15000,7 +15174,7 @@ }, "children": [ { - "id": 1837, + "id": 1839, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -15017,7 +15191,7 @@ ], "signatures": [ { - "id": 1838, + "id": 1840, "name": "new AnswerService", "kind": 16384, "kindString": "Constructor signature", @@ -15027,7 +15201,7 @@ }, "parameters": [ { - "id": 1839, + "id": 1841, "name": "session", "kind": 32768, "kindString": "Parameter", @@ -15035,12 +15209,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1913, + "id": 1915, "name": "SessionInterface" } }, { - "id": 1840, + "id": 1842, "name": "answer", "kind": 32768, "kindString": "Parameter", @@ -15052,7 +15226,7 @@ } }, { - "id": 1841, + "id": 1843, "name": "thoughtSpotHost", "kind": 32768, "kindString": "Parameter", @@ -15064,7 +15238,7 @@ } }, { - "id": 1842, + "id": 1844, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -15078,7 +15252,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3071, + "id": 3079, "name": "VizPoint" } } @@ -15086,14 +15260,14 @@ ], "type": { "type": "reference", - "id": 1836, + "id": 1838, "name": "AnswerService" } } ] }, { - "id": 1851, + "id": 1853, "name": "addColumns", "kind": 2048, "kindString": "Method", @@ -15109,7 +15283,7 @@ ], "signatures": [ { - "id": 1852, + "id": 1854, "name": "addColumns", "kind": 4096, "kindString": "Call signature", @@ -15120,7 +15294,7 @@ }, "parameters": [ { - "id": 1853, + "id": 1855, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -15149,7 +15323,7 @@ ] }, { - "id": 1854, + "id": 1856, "name": "addColumnsByName", "kind": 2048, "kindString": "Method", @@ -15165,7 +15339,7 @@ ], "signatures": [ { - "id": 1855, + "id": 1857, "name": "addColumnsByName", "kind": 4096, "kindString": "Call signature", @@ -15181,7 +15355,7 @@ }, "parameters": [ { - "id": 1856, + "id": 1858, "name": "columnNames", "kind": 32768, "kindString": "Parameter", @@ -15210,7 +15384,7 @@ ] }, { - "id": 1907, + "id": 1909, "name": "addDisplayedVizToLiveboard", "kind": 2048, "kindString": "Method", @@ -15226,14 +15400,14 @@ ], "signatures": [ { - "id": 1908, + "id": 1910, "name": "addDisplayedVizToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1909, + "id": 1911, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -15258,7 +15432,7 @@ ] }, { - "id": 1857, + "id": 1859, "name": "addFilter", "kind": 2048, "kindString": "Method", @@ -15274,7 +15448,7 @@ ], "signatures": [ { - "id": 1858, + "id": 1860, "name": "addFilter", "kind": 4096, "kindString": "Call signature", @@ -15285,7 +15459,7 @@ }, "parameters": [ { - "id": 1859, + "id": 1861, "name": "columnName", "kind": 32768, "kindString": "Parameter", @@ -15297,7 +15471,7 @@ } }, { - "id": 1860, + "id": 1862, "name": "operator", "kind": 32768, "kindString": "Parameter", @@ -15305,12 +15479,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1948, + "id": 1950, "name": "RuntimeFilterOp" } }, { - "id": 1861, + "id": 1863, "name": "values", "kind": 32768, "kindString": "Parameter", @@ -15356,7 +15530,7 @@ ] }, { - "id": 1897, + "id": 1899, "name": "executeQuery", "kind": 2048, "kindString": "Method", @@ -15372,7 +15546,7 @@ ], "signatures": [ { - "id": 1898, + "id": 1900, "name": "executeQuery", "kind": 4096, "kindString": "Call signature", @@ -15383,7 +15557,7 @@ }, "parameters": [ { - "id": 1899, + "id": 1901, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -15397,7 +15571,7 @@ } }, { - "id": 1900, + "id": 1902, "name": "variables", "kind": 32768, "kindString": "Parameter", @@ -15425,7 +15599,7 @@ ] }, { - "id": 1875, + "id": 1877, "name": "fetchCSVBlob", "kind": 2048, "kindString": "Method", @@ -15441,7 +15615,7 @@ ], "signatures": [ { - "id": 1876, + "id": 1878, "name": "fetchCSVBlob", "kind": 4096, "kindString": "Call signature", @@ -15452,7 +15626,7 @@ }, "parameters": [ { - "id": 1877, + "id": 1879, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -15465,7 +15639,7 @@ "defaultValue": "'en-us'" }, { - "id": 1878, + "id": 1880, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -15494,7 +15668,7 @@ ] }, { - "id": 1868, + "id": 1870, "name": "fetchData", "kind": 2048, "kindString": "Method", @@ -15510,7 +15684,7 @@ ], "signatures": [ { - "id": 1869, + "id": 1871, "name": "fetchData", "kind": 4096, "kindString": "Call signature", @@ -15521,7 +15695,7 @@ }, "parameters": [ { - "id": 1870, + "id": 1872, "name": "offset", "kind": 32768, "kindString": "Parameter", @@ -15534,7 +15708,7 @@ "defaultValue": "0" }, { - "id": 1871, + "id": 1873, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -15553,14 +15727,14 @@ { "type": "reflection", "declaration": { - "id": 1872, + "id": 1874, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1873, + "id": 1875, "name": "columns", "kind": 1024, "kindString": "Property", @@ -15571,7 +15745,7 @@ } }, { - "id": 1874, + "id": 1876, "name": "data", "kind": 1024, "kindString": "Property", @@ -15587,8 +15761,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1873, - 1874 + 1875, + 1876 ] } ] @@ -15601,7 +15775,7 @@ ] }, { - "id": 1879, + "id": 1881, "name": "fetchPNGBlob", "kind": 2048, "kindString": "Method", @@ -15617,7 +15791,7 @@ ], "signatures": [ { - "id": 1880, + "id": 1882, "name": "fetchPNGBlob", "kind": 4096, "kindString": "Call signature", @@ -15628,7 +15802,7 @@ }, "parameters": [ { - "id": 1881, + "id": 1883, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -15641,7 +15815,7 @@ "defaultValue": "'en-us'" }, { - "id": 1882, + "id": 1884, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -15656,7 +15830,7 @@ "defaultValue": "false" }, { - "id": 1883, + "id": 1885, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -15685,7 +15859,7 @@ ] }, { - "id": 1903, + "id": 1905, "name": "getAnswer", "kind": 2048, "kindString": "Method", @@ -15701,7 +15875,7 @@ ], "signatures": [ { - "id": 1904, + "id": 1906, "name": "getAnswer", "kind": 4096, "kindString": "Call signature", @@ -15720,7 +15894,7 @@ ] }, { - "id": 1884, + "id": 1886, "name": "getFetchCSVBlobUrl", "kind": 2048, "kindString": "Method", @@ -15736,7 +15910,7 @@ ], "signatures": [ { - "id": 1885, + "id": 1887, "name": "getFetchCSVBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -15747,7 +15921,7 @@ }, "parameters": [ { - "id": 1886, + "id": 1888, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -15760,7 +15934,7 @@ "defaultValue": "'en-us'" }, { - "id": 1887, + "id": 1889, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -15781,7 +15955,7 @@ ] }, { - "id": 1888, + "id": 1890, "name": "getFetchPNGBlobUrl", "kind": 2048, "kindString": "Method", @@ -15797,7 +15971,7 @@ ], "signatures": [ { - "id": 1889, + "id": 1891, "name": "getFetchPNGBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -15807,7 +15981,7 @@ }, "parameters": [ { - "id": 1890, + "id": 1892, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -15820,7 +15994,7 @@ "defaultValue": "'en-us'" }, { - "id": 1891, + "id": 1893, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -15833,7 +16007,7 @@ "defaultValue": "false" }, { - "id": 1892, + "id": 1894, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -15856,7 +16030,7 @@ ] }, { - "id": 1865, + "id": 1867, "name": "getSQLQuery", "kind": 2048, "kindString": "Method", @@ -15872,14 +16046,14 @@ ], "signatures": [ { - "id": 1866, + "id": 1868, "name": "getSQLQuery", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1867, + "id": 1869, "name": "fetchSQLWithAllColumns", "kind": 32768, "kindString": "Parameter", @@ -15905,7 +16079,7 @@ ] }, { - "id": 1901, + "id": 1903, "name": "getSession", "kind": 2048, "kindString": "Method", @@ -15921,7 +16095,7 @@ ], "signatures": [ { - "id": 1902, + "id": 1904, "name": "getSession", "kind": 4096, "kindString": "Call signature", @@ -15932,14 +16106,14 @@ }, "type": { "type": "reference", - "id": 1913, + "id": 1915, "name": "SessionInterface" } } ] }, { - "id": 1846, + "id": 1848, "name": "getSourceDetail", "kind": 2048, "kindString": "Method", @@ -15955,7 +16129,7 @@ ], "signatures": [ { - "id": 1847, + "id": 1849, "name": "getSourceDetail", "kind": 4096, "kindString": "Call signature", @@ -15977,7 +16151,7 @@ ] }, { - "id": 1905, + "id": 1907, "name": "getTML", "kind": 2048, "kindString": "Method", @@ -15993,7 +16167,7 @@ ], "signatures": [ { - "id": 1906, + "id": 1908, "name": "getTML", "kind": 4096, "kindString": "Call signature", @@ -16012,7 +16186,7 @@ ] }, { - "id": 1893, + "id": 1895, "name": "getUnderlyingDataForPoint", "kind": 2048, "kindString": "Method", @@ -16028,7 +16202,7 @@ ], "signatures": [ { - "id": 1894, + "id": 1896, "name": "getUnderlyingDataForPoint", "kind": 4096, "kindString": "Call signature", @@ -16048,7 +16222,7 @@ }, "parameters": [ { - "id": 1895, + "id": 1897, "name": "outputColumnNames", "kind": 32768, "kindString": "Parameter", @@ -16063,7 +16237,7 @@ } }, { - "id": 1896, + "id": 1898, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -16075,7 +16249,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1920, + "id": 1922, "name": "UnderlyingDataPoint" } } @@ -16086,7 +16260,7 @@ "typeArguments": [ { "type": "reference", - "id": 1836, + "id": 1838, "name": "AnswerService" } ], @@ -16096,7 +16270,7 @@ ] }, { - "id": 1848, + "id": 1850, "name": "removeColumns", "kind": 2048, "kindString": "Method", @@ -16112,7 +16286,7 @@ ], "signatures": [ { - "id": 1849, + "id": 1851, "name": "removeColumns", "kind": 4096, "kindString": "Call signature", @@ -16123,7 +16297,7 @@ }, "parameters": [ { - "id": 1850, + "id": 1852, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -16152,7 +16326,7 @@ ] }, { - "id": 1910, + "id": 1912, "name": "setTMLOverride", "kind": 2048, "kindString": "Method", @@ -16168,14 +16342,14 @@ ], "signatures": [ { - "id": 1911, + "id": 1913, "name": "setTMLOverride", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1912, + "id": 1914, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -16194,7 +16368,7 @@ ] }, { - "id": 1862, + "id": 1864, "name": "updateDisplayMode", "kind": 2048, "kindString": "Method", @@ -16210,14 +16384,14 @@ ], "signatures": [ { - "id": 1863, + "id": 1865, "name": "updateDisplayMode", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1864, + "id": 1866, "name": "displayMode", "kind": 32768, "kindString": "Parameter", @@ -16248,32 +16422,32 @@ "title": "Constructors", "kind": 512, "children": [ - 1837 + 1839 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1851, - 1854, - 1907, - 1857, - 1897, - 1875, - 1868, - 1879, - 1903, - 1884, - 1888, - 1865, - 1901, - 1846, + 1853, + 1856, + 1909, + 1859, + 1899, + 1877, + 1870, + 1881, 1905, - 1893, + 1886, + 1890, + 1867, + 1903, 1848, - 1910, - 1862 + 1907, + 1895, + 1850, + 1912, + 1864 ] } ], @@ -16310,7 +16484,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 900, + "line": 905, "character": 4 } ], @@ -16330,7 +16504,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2773, + "id": 2781, "name": "DOMSelector" } }, @@ -16342,7 +16516,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2635, + "id": 2643, "name": "AppViewConfig" } } @@ -16374,7 +16548,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1390, + "line": 1401, "character": 11 } ], @@ -16463,7 +16637,7 @@ "typeArguments": [ { "type": "reference", - "id": 1836, + "id": 1838, "name": "AnswerService" } ], @@ -16548,7 +16722,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1259, + "line": 1270, "character": 11 } ], @@ -16898,7 +17072,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1364, + "line": 1375, "character": 11 } ], @@ -17008,7 +17182,7 @@ }, "type": { "type": "reference", - "id": 1964, + "id": 1966, "name": "EmbedEvent" } }, @@ -17023,7 +17197,7 @@ }, "type": { "type": "reference", - "id": 2777, + "id": 2785, "name": "MessageCallback" } } @@ -17090,7 +17264,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1964, + "id": 1966, "name": "EmbedEvent" } }, @@ -17102,7 +17276,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2777, + "id": 2785, "name": "MessageCallback" } }, @@ -17114,7 +17288,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2774, + "id": 2782, "name": "MessageOptions" }, "defaultValue": "..." @@ -17274,7 +17448,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1446, + "line": 1457, "character": 17 } ], @@ -17404,12 +17578,12 @@ "types": [ { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" }, { "type": "reference", - "id": 2080, + "id": 2082, "name": "HostEvent" } ] @@ -17522,7 +17696,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2080, + "id": 2082, "name": "HostEvent" } }, @@ -17541,7 +17715,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2166, + "id": 2168, "name": "ContextType" } } @@ -17673,7 +17847,7 @@ "flags": {}, "type": { "type": "reference", - "id": 3094, + "id": 3102, "name": "UIPassthroughEvent" } } @@ -17780,7 +17954,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 891, + "line": 896, "character": 13 } ], @@ -18324,7 +18498,7 @@ ] }, { - "id": 1580, + "id": 1582, "name": "ConversationEmbed", "kind": 128, "kindString": "Class", @@ -18352,7 +18526,7 @@ }, "children": [ { - "id": 1581, + "id": 1583, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -18360,20 +18534,20 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 555, + "line": 567, "character": 4 } ], "signatures": [ { - "id": 1582, + "id": 1584, "name": "new ConversationEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1583, + "id": 1585, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -18384,21 +18558,21 @@ } }, { - "id": 1584, + "id": 1586, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1528, + "id": 1530, "name": "ConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1580, + "id": 1582, "name": "ConversationEmbed" }, "overwrites": { @@ -18415,7 +18589,7 @@ } }, { - "id": 1741, + "id": 1743, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -18431,7 +18605,7 @@ ], "signatures": [ { - "id": 1742, + "id": 1744, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -18463,7 +18637,7 @@ } }, { - "id": 1763, + "id": 1765, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -18479,7 +18653,7 @@ ], "signatures": [ { - "id": 1764, + "id": 1766, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -18495,7 +18669,7 @@ }, "parameters": [ { - "id": 1765, + "id": 1767, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -18516,7 +18690,7 @@ "typeArguments": [ { "type": "reference", - "id": 1836, + "id": 1838, "name": "AnswerService" } ], @@ -18536,7 +18710,7 @@ } }, { - "id": 1726, + "id": 1728, "name": "getCurrentContext", "kind": 2048, "kindString": "Method", @@ -18552,7 +18726,7 @@ ], "signatures": [ { - "id": 1727, + "id": 1729, "name": "getCurrentContext", "kind": 4096, "kindString": "Call signature", @@ -18595,7 +18769,7 @@ } }, { - "id": 1590, + "id": 1592, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -18605,13 +18779,13 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 493, + "line": 505, "character": 11 } ], "signatures": [ { - "id": 1591, + "id": 1593, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -18634,7 +18808,7 @@ } }, { - "id": 1757, + "id": 1759, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -18650,7 +18824,7 @@ ], "signatures": [ { - "id": 1758, + "id": 1760, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -18672,14 +18846,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1759, + "id": 1761, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1761, + "id": 1763, "name": "child", "kind": 1024, "kindString": "Property", @@ -18691,7 +18865,7 @@ "defaultValue": "..." }, { - "id": 1762, + "id": 1764, "name": "placeHolder", "kind": 1024, "kindString": "Property", @@ -18703,7 +18877,7 @@ "defaultValue": "..." }, { - "id": 1760, + "id": 1762, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -18720,9 +18894,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1761, - 1762, - 1760 + 1763, + 1764, + 1762 ] } ] @@ -18742,7 +18916,7 @@ } }, { - "id": 1735, + "id": 1737, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -18758,7 +18932,7 @@ ], "signatures": [ { - "id": 1736, + "id": 1738, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -18774,7 +18948,7 @@ }, "parameters": [ { - "id": 1737, + "id": 1739, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -18782,20 +18956,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1738, + "id": 1740, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1739, + "id": 1741, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1740, + "id": 1742, "name": "key", "kind": 32768, "flags": {}, @@ -18842,7 +19016,7 @@ } }, { - "id": 1743, + "id": 1745, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -18858,7 +19032,7 @@ ], "signatures": [ { - "id": 1744, + "id": 1746, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -18881,7 +19055,7 @@ } }, { - "id": 1755, + "id": 1757, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -18897,7 +19071,7 @@ ], "signatures": [ { - "id": 1756, + "id": 1758, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -18923,7 +19097,7 @@ } }, { - "id": 1693, + "id": 1695, "name": "off", "kind": 2048, "kindString": "Method", @@ -18939,7 +19113,7 @@ ], "signatures": [ { - "id": 1694, + "id": 1696, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -18955,7 +19129,7 @@ }, "parameters": [ { - "id": 1695, + "id": 1697, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18965,12 +19139,12 @@ }, "type": { "type": "reference", - "id": 1964, + "id": 1966, "name": "EmbedEvent" } }, { - "id": 1696, + "id": 1698, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18980,7 +19154,7 @@ }, "type": { "type": "reference", - "id": 2777, + "id": 2785, "name": "MessageCallback" } } @@ -19003,7 +19177,7 @@ } }, { - "id": 1687, + "id": 1689, "name": "on", "kind": 2048, "kindString": "Method", @@ -19019,7 +19193,7 @@ ], "signatures": [ { - "id": 1688, + "id": 1690, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -19039,7 +19213,7 @@ }, "parameters": [ { - "id": 1689, + "id": 1691, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19049,12 +19223,12 @@ }, "type": { "type": "reference", - "id": 1964, + "id": 1966, "name": "EmbedEvent" } }, { - "id": 1690, + "id": 1692, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19064,12 +19238,12 @@ }, "type": { "type": "reference", - "id": 2777, + "id": 2785, "name": "MessageCallback" } }, { - "id": 1691, + "id": 1693, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -19079,13 +19253,13 @@ }, "type": { "type": "reference", - "id": 2774, + "id": 2782, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1692, + "id": 1694, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -19116,7 +19290,7 @@ } }, { - "id": 1731, + "id": 1733, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -19132,7 +19306,7 @@ ], "signatures": [ { - "id": 1732, + "id": 1734, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -19142,7 +19316,7 @@ }, "parameters": [ { - "id": 1733, + "id": 1735, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -19157,7 +19331,7 @@ "defaultValue": "false" }, { - "id": 1734, + "id": 1736, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -19193,7 +19367,7 @@ } }, { - "id": 1745, + "id": 1747, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -19209,7 +19383,7 @@ ], "signatures": [ { - "id": 1746, + "id": 1748, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -19248,7 +19422,7 @@ } }, { - "id": 1592, + "id": 1594, "name": "render", "kind": 2048, "kindString": "Method", @@ -19258,13 +19432,13 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 528, + "line": 540, "character": 17 } ], "signatures": [ { - "id": 1593, + "id": 1595, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -19294,7 +19468,7 @@ } }, { - "id": 1749, + "id": 1751, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -19310,7 +19484,7 @@ ], "signatures": [ { - "id": 1750, + "id": 1752, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -19342,7 +19516,7 @@ } }, { - "id": 1728, + "id": 1730, "name": "subscribedEvent", "kind": 2048, "kindString": "Method", @@ -19358,7 +19532,7 @@ ], "signatures": [ { - "id": 1729, + "id": 1731, "name": "subscribedEvent", "kind": 4096, "kindString": "Call signature", @@ -19376,7 +19550,7 @@ }, "parameters": [ { - "id": 1730, + "id": 1732, "name": "eventName", "kind": 32768, "kindString": "Parameter", @@ -19389,12 +19563,12 @@ "types": [ { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" }, { "type": "reference", - "id": 2080, + "id": 2082, "name": "HostEvent" } ] @@ -19419,7 +19593,7 @@ } }, { - "id": 1753, + "id": 1755, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -19435,7 +19609,7 @@ ], "signatures": [ { - "id": 1754, + "id": 1756, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -19467,7 +19641,7 @@ } }, { - "id": 1711, + "id": 1713, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -19483,7 +19657,7 @@ ], "signatures": [ { - "id": 1712, + "id": 1714, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -19504,40 +19678,40 @@ }, "typeParameter": [ { - "id": 1713, + "id": 1715, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2080, + "id": 2082, "name": "HostEvent" } }, { - "id": 1714, + "id": 1716, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", "flags": {} }, { - "id": 1715, + "id": 1717, "name": "ContextT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2166, + "id": 2168, "name": "ContextType" } } ], "parameters": [ { - "id": 1716, + "id": 1718, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19551,7 +19725,7 @@ } }, { - "id": 1717, + "id": 1719, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -19576,7 +19750,7 @@ "defaultValue": "..." }, { - "id": 1718, + "id": 1720, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -19630,7 +19804,7 @@ } }, { - "id": 1719, + "id": 1721, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -19646,7 +19820,7 @@ ], "signatures": [ { - "id": 1720, + "id": 1722, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -19657,21 +19831,21 @@ }, "typeParameter": [ { - "id": 1721, + "id": 1723, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 3094, + "id": 3102, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1722, + "id": 1724, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -19685,7 +19859,7 @@ } }, { - "id": 1723, + "id": 1725, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -19740,38 +19914,38 @@ "title": "Constructors", "kind": 512, "children": [ - 1581 + 1583 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1741, - 1763, - 1726, - 1590, - 1757, - 1735, 1743, - 1755, - 1693, - 1687, - 1731, - 1745, - 1592, - 1749, + 1765, 1728, - 1753, - 1711, - 1719 + 1592, + 1759, + 1737, + 1745, + 1757, + 1695, + 1689, + 1733, + 1747, + 1594, + 1751, + 1730, + 1755, + 1713, + 1721 ] } ], "sources": [ { "fileName": "embed/conversation.ts", - "line": 554, + "line": 566, "character": 13 } ], @@ -19812,7 +19986,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 628, + "line": 633, "character": 4 } ], @@ -19832,7 +20006,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2773, + "id": 2781, "name": "DOMSelector" } }, @@ -19844,7 +20018,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2522, + "id": 2530, "name": "LiveboardViewConfig" } } @@ -19876,7 +20050,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 1095, + "line": 1100, "character": 11 } ], @@ -19965,7 +20139,7 @@ "typeArguments": [ { "type": "reference", - "id": 1836, + "id": 1838, "name": "AnswerService" } ], @@ -20087,7 +20261,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 1187, + "line": 1192, "character": 11 } ], @@ -20401,7 +20575,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 1162, + "line": 1167, "character": 11 } ], @@ -20514,7 +20688,7 @@ }, "type": { "type": "reference", - "id": 1964, + "id": 1966, "name": "EmbedEvent" } }, @@ -20529,7 +20703,7 @@ }, "type": { "type": "reference", - "id": 2777, + "id": 2785, "name": "MessageCallback" } } @@ -20596,7 +20770,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1964, + "id": 1966, "name": "EmbedEvent" } }, @@ -20608,7 +20782,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2777, + "id": 2785, "name": "MessageCallback" } }, @@ -20620,7 +20794,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2774, + "id": 2782, "name": "MessageOptions" }, "defaultValue": "..." @@ -20780,7 +20954,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 1151, + "line": 1156, "character": 17 } ], @@ -20910,12 +21084,12 @@ "types": [ { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" }, { "type": "reference", - "id": 2080, + "id": 2082, "name": "HostEvent" } ] @@ -20994,7 +21168,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 1076, + "line": 1081, "character": 11 } ], @@ -21018,7 +21192,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2080, + "id": 2082, "name": "HostEvent" } }, @@ -21037,7 +21211,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2166, + "id": 2168, "name": "ContextType" } } @@ -21166,7 +21340,7 @@ "flags": {}, "type": { "type": "reference", - "id": 3094, + "id": 3102, "name": "UIPassthroughEvent" } } @@ -21273,7 +21447,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 618, + "line": 623, "character": 13 } ], @@ -21344,7 +21518,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2471, + "id": 2479, "name": "SearchBarViewConfig" } } @@ -21465,7 +21639,7 @@ "typeArguments": [ { "type": "reference", - "id": 1836, + "id": 1838, "name": "AnswerService" } ], @@ -21900,7 +22074,7 @@ }, "type": { "type": "reference", - "id": 1964, + "id": 1966, "name": "EmbedEvent" } }, @@ -21915,7 +22089,7 @@ }, "type": { "type": "reference", - "id": 2777, + "id": 2785, "name": "MessageCallback" } } @@ -21982,7 +22156,7 @@ }, "type": { "type": "reference", - "id": 1964, + "id": 1966, "name": "EmbedEvent" } }, @@ -21997,7 +22171,7 @@ }, "type": { "type": "reference", - "id": 2777, + "id": 2785, "name": "MessageCallback" } }, @@ -22012,7 +22186,7 @@ }, "type": { "type": "reference", - "id": 2774, + "id": 2782, "name": "MessageOptions" }, "defaultValue": "..." @@ -22315,12 +22489,12 @@ "types": [ { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" }, { "type": "reference", - "id": 2080, + "id": 2082, "name": "HostEvent" } ] @@ -22433,7 +22607,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2080, + "id": 2082, "name": "HostEvent" } }, @@ -22452,7 +22626,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2166, + "id": 2168, "name": "ContextType" } } @@ -22584,7 +22758,7 @@ "flags": {}, "type": { "type": "reference", - "id": 3094, + "id": 3102, "name": "UIPassthroughEvent" } } @@ -22745,7 +22919,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2773, + "id": 2781, "name": "DOMSelector" } }, @@ -22757,7 +22931,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2407, + "id": 2415, "name": "SearchViewConfig" } } @@ -22878,7 +23052,7 @@ "typeArguments": [ { "type": "reference", - "id": 1836, + "id": 1838, "name": "AnswerService" } ], @@ -23345,7 +23519,7 @@ }, "type": { "type": "reference", - "id": 1964, + "id": 1966, "name": "EmbedEvent" } }, @@ -23360,7 +23534,7 @@ }, "type": { "type": "reference", - "id": 2777, + "id": 2785, "name": "MessageCallback" } } @@ -23427,7 +23601,7 @@ }, "type": { "type": "reference", - "id": 1964, + "id": 1966, "name": "EmbedEvent" } }, @@ -23442,7 +23616,7 @@ }, "type": { "type": "reference", - "id": 2777, + "id": 2785, "name": "MessageCallback" } }, @@ -23457,7 +23631,7 @@ }, "type": { "type": "reference", - "id": 2774, + "id": 2782, "name": "MessageOptions" }, "defaultValue": "..." @@ -23760,12 +23934,12 @@ "types": [ { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" }, { "type": "reference", - "id": 2080, + "id": 2082, "name": "HostEvent" } ] @@ -23878,7 +24052,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2080, + "id": 2082, "name": "HostEvent" } }, @@ -23897,7 +24071,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2166, + "id": 2168, "name": "ContextType" } } @@ -24029,7 +24203,7 @@ "flags": {}, "type": { "type": "reference", - "id": 3094, + "id": 3102, "name": "UIPassthroughEvent" } } @@ -24681,7 +24855,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 406, + "line": 418, "character": 4 } ], @@ -24833,7 +25007,7 @@ "typeArguments": [ { "type": "reference", - "id": 1836, + "id": 1838, "name": "AnswerService" } ], @@ -24918,7 +25092,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 493, + "line": 505, "character": 11 } ], @@ -25268,7 +25442,7 @@ }, "type": { "type": "reference", - "id": 1964, + "id": 1966, "name": "EmbedEvent" } }, @@ -25283,7 +25457,7 @@ }, "type": { "type": "reference", - "id": 2777, + "id": 2785, "name": "MessageCallback" } } @@ -25350,7 +25524,7 @@ }, "type": { "type": "reference", - "id": 1964, + "id": 1966, "name": "EmbedEvent" } }, @@ -25365,7 +25539,7 @@ }, "type": { "type": "reference", - "id": 2777, + "id": 2785, "name": "MessageCallback" } }, @@ -25380,7 +25554,7 @@ }, "type": { "type": "reference", - "id": 2774, + "id": 2782, "name": "MessageOptions" }, "defaultValue": "..." @@ -25553,7 +25727,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 528, + "line": 540, "character": 17 } ], @@ -25680,12 +25854,12 @@ "types": [ { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" }, { "type": "reference", - "id": 2080, + "id": 2082, "name": "HostEvent" } ] @@ -25798,7 +25972,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2080, + "id": 2082, "name": "HostEvent" } }, @@ -25817,7 +25991,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2166, + "id": 2168, "name": "ContextType" } } @@ -25949,7 +26123,7 @@ "flags": {}, "type": { "type": "reference", - "id": 3094, + "id": 3102, "name": "UIPassthroughEvent" } } @@ -26054,7 +26228,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 405, + "line": 417, "character": 13 } ], @@ -26067,13 +26241,13 @@ "extendedBy": [ { "type": "reference", - "id": 1580, + "id": 1582, "name": "ConversationEmbed" } ] }, { - "id": 2635, + "id": 2643, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -26089,7 +26263,7 @@ }, "children": [ { - "id": 2687, + "id": 2695, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -26113,27 +26287,27 @@ "sources": [ { "fileName": "types.ts", - "line": 1039, + "line": 1041, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2688, + "id": 2696, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2689, + "id": 2697, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2690, + "id": 2698, "name": "key", "kind": 32768, "flags": {}, @@ -26169,7 +26343,7 @@ } }, { - "id": 2719, + "id": 2727, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -26197,7 +26371,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1754, + "line": 1756, "character": 4 } ], @@ -26211,7 +26385,7 @@ } }, { - "id": 2655, + "id": 2663, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -26248,7 +26422,7 @@ } }, { - "id": 2716, + "id": 2724, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -26272,13 +26446,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1712, + "line": 1714, "character": 4 } ], "type": { "type": "reference", - "id": 2352, + "id": 2360, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -26287,7 +26461,7 @@ } }, { - "id": 2737, + "id": 2745, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -26311,7 +26485,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1992, + "line": 1994, "character": 4 } ], @@ -26325,7 +26499,7 @@ } }, { - "id": 2707, + "id": 2715, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -26357,7 +26531,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1491, + "line": 1493, "character": 4 } ], @@ -26374,7 +26548,7 @@ } }, { - "id": 2691, + "id": 2699, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -26397,13 +26571,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1046, + "line": 1048, "character": 4 } ], "type": { "type": "reference", - "id": 2790, + "id": 2798, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -26412,7 +26586,7 @@ } }, { - "id": 2656, + "id": 2664, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -26446,12 +26620,12 @@ ], "type": { "type": "reference", - "id": 3119, + "id": 3127, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2720, + "id": 2728, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -26479,7 +26653,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1770, + "line": 1772, "character": 4 } ], @@ -26493,7 +26667,7 @@ } }, { - "id": 2638, + "id": 2646, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -26531,7 +26705,7 @@ } }, { - "id": 2700, + "id": 2708, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -26555,7 +26729,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1201, + "line": 1203, "character": 4 } ], @@ -26569,7 +26743,7 @@ } }, { - "id": 2683, + "id": 2691, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -26607,7 +26781,7 @@ } }, { - "id": 2682, + "id": 2690, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -26639,7 +26813,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -26649,7 +26823,7 @@ } }, { - "id": 2654, + "id": 2662, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -26686,7 +26860,7 @@ } }, { - "id": 2695, + "id": 2703, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -26713,7 +26887,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1110, + "line": 1112, "character": 4 } ], @@ -26727,7 +26901,7 @@ } }, { - "id": 2731, + "id": 2739, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -26755,7 +26929,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1888, + "line": 1890, "character": 4 } ], @@ -26769,7 +26943,7 @@ } }, { - "id": 2736, + "id": 2744, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -26797,7 +26971,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1976, + "line": 1978, "character": 4 } ], @@ -26811,7 +26985,7 @@ } }, { - "id": 2721, + "id": 2729, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -26839,7 +27013,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1786, + "line": 1788, "character": 4 } ], @@ -26853,7 +27027,7 @@ } }, { - "id": 2675, + "id": 2683, "name": "enableHomepageAnnouncement", "kind": 1024, "kindString": "Property", @@ -26877,7 +27051,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 854, + "line": 859, "character": 4 } ], @@ -26887,7 +27061,7 @@ } }, { - "id": 2703, + "id": 2711, "name": "enableLinkOverridesV2", "kind": 1024, "kindString": "Property", @@ -26911,7 +27085,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1276, + "line": 1278, "character": 4 } ], @@ -26925,7 +27099,7 @@ } }, { - "id": 2676, + "id": 2684, "name": "enableLiveboardDataCache", "kind": 1024, "kindString": "Property", @@ -26948,7 +27122,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 867, + "line": 872, "character": 4 } ], @@ -26958,7 +27132,7 @@ } }, { - "id": 2669, + "id": 2677, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -26986,7 +27160,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 745, + "line": 750, "character": 4 } ], @@ -26996,7 +27170,7 @@ } }, { - "id": 2639, + "id": 2647, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -27034,7 +27208,7 @@ } }, { - "id": 2651, + "id": 2659, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -27072,7 +27246,7 @@ } }, { - "id": 2673, + "id": 2681, "name": "enableStopAnswerGenerationEmbed", "kind": 1024, "kindString": "Property", @@ -27096,7 +27270,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 821, + "line": 826, "character": 4 } ], @@ -27106,7 +27280,7 @@ } }, { - "id": 2697, + "id": 2705, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -27130,7 +27304,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1166, + "line": 1168, "character": 4 } ], @@ -27144,7 +27318,7 @@ } }, { - "id": 2717, + "id": 2725, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -27168,7 +27342,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1725, + "line": 1727, "character": 4 } ], @@ -27182,7 +27356,7 @@ } }, { - "id": 2718, + "id": 2726, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -27206,7 +27380,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1738, + "line": 1740, "character": 4 } ], @@ -27220,7 +27394,7 @@ } }, { - "id": 2699, + "id": 2707, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -27243,7 +27417,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1177, + "line": 1179, "character": 4 } ], @@ -27257,7 +27431,7 @@ } }, { - "id": 2679, + "id": 2687, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -27287,7 +27461,7 @@ ], "type": { "type": "reference", - "id": 2749, + "id": 2757, "name": "FrameParams" }, "inheritedFrom": { @@ -27296,7 +27470,7 @@ } }, { - "id": 2652, + "id": 2660, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -27330,7 +27504,7 @@ } }, { - "id": 2684, + "id": 2692, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -27338,7 +27512,7 @@ "isOptional": true }, "comment": { - "shortText": "The list of actions to completely remove from the embedded view.\nHidden actions are not visible to the user at all (fully removed from the UI).\nUse this when you want to remove an action entirely.\nTo keep an action visible but non-interactive (grayed out), use {@link disabledActions} instead.", + "shortText": "The list of actions to completely remove from the embedded view.\nHidden actions are not visible to the user at all (fully removed from the UI).\nUse this when you want to remove an action entirely.\nTo keep an action visible but non-interactive (grayed out), use {@link\ndisabledActions} instead.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", "tags": [ { @@ -27358,7 +27532,7 @@ "sources": [ { "fileName": "types.ts", - "line": 980, + "line": 981, "character": 4 } ], @@ -27366,7 +27540,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -27376,7 +27550,7 @@ } }, { - "id": 2726, + "id": 2734, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -27400,7 +27574,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1648, + "line": 1650, "character": 4 } ], @@ -27408,7 +27582,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2755, + "id": 2763, "name": "HomeLeftNavItem" } }, @@ -27418,7 +27592,7 @@ } }, { - "id": 2724, + "id": 2732, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -27442,7 +27616,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1606, + "line": 1608, "character": 4 } ], @@ -27450,7 +27624,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2766, + "id": 2774, "name": "HomepageModule" } }, @@ -27460,7 +27634,7 @@ } }, { - "id": 2723, + "id": 2731, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -27484,7 +27658,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1585, + "line": 1587, "character": 4 } ], @@ -27492,7 +27666,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3111, + "id": 3119, "name": "ListPageColumns" } }, @@ -27502,7 +27676,7 @@ } }, { - "id": 2643, + "id": 2651, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -27540,7 +27714,7 @@ } }, { - "id": 2640, + "id": 2648, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -27578,7 +27752,7 @@ } }, { - "id": 2637, + "id": 2645, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -27616,7 +27790,7 @@ } }, { - "id": 2734, + "id": 2742, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -27644,7 +27818,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1943, + "line": 1945, "character": 4 } ], @@ -27658,7 +27832,7 @@ } }, { - "id": 2727, + "id": 2735, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -27686,7 +27860,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1824, + "line": 1826, "character": 4 } ], @@ -27700,7 +27874,7 @@ } }, { - "id": 2642, + "id": 2650, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -27738,7 +27912,7 @@ } }, { - "id": 2641, + "id": 2649, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -27776,7 +27950,7 @@ } }, { - "id": 2649, + "id": 2657, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -27813,7 +27987,7 @@ } }, { - "id": 2644, + "id": 2652, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -27851,7 +28025,7 @@ } }, { - "id": 2648, + "id": 2656, "name": "hideTagFilterChips", "kind": 1024, "kindString": "Property", @@ -27885,7 +28059,7 @@ } }, { - "id": 2657, + "id": 2665, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -27911,12 +28085,12 @@ ], "type": { "type": "reference", - "id": 3058, + "id": 3066, "name": "HomePageSearchBarMode" } }, { - "id": 2692, + "id": 2700, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -27940,7 +28114,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1062, + "line": 1064, "character": 4 } ], @@ -27954,7 +28128,7 @@ } }, { - "id": 2713, + "id": 2721, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -27977,7 +28151,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8551, + "line": 8620, "character": 4 } ], @@ -27991,7 +28165,7 @@ } }, { - "id": 2712, + "id": 2720, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -28014,7 +28188,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8534, + "line": 8603, "character": 4 } ], @@ -28031,7 +28205,7 @@ } }, { - "id": 2738, + "id": 2746, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -28055,7 +28229,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2010, + "line": 2012, "character": 4 } ], @@ -28069,7 +28243,7 @@ } }, { - "id": 2662, + "id": 2670, "name": "isContinuousLiveboardPDFEnabled", "kind": 1024, "kindString": "Property", @@ -28077,13 +28251,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" @@ -28093,7 +28271,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 633, + "line": 634, "character": 4 } ], @@ -28103,7 +28281,7 @@ } }, { - "id": 2740, + "id": 2748, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -28127,7 +28305,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2042, + "line": 2044, "character": 4 } ], @@ -28141,7 +28319,7 @@ } }, { - "id": 2664, + "id": 2672, "name": "isGranularXLSXCSVSchedulesEnabled", "kind": 1024, "kindString": "Property", @@ -28149,13 +28327,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" @@ -28165,7 +28347,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 667, + "line": 672, "character": 4 } ], @@ -28175,7 +28357,7 @@ } }, { - "id": 2739, + "id": 2747, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -28199,7 +28381,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2025, + "line": 2027, "character": 4 } ], @@ -28213,7 +28395,7 @@ } }, { - "id": 2732, + "id": 2740, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -28241,7 +28423,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1905, + "line": 1907, "character": 4 } ], @@ -28255,7 +28437,7 @@ } }, { - "id": 2730, + "id": 2738, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -28279,7 +28461,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1871, + "line": 1873, "character": 4 } ], @@ -28293,7 +28475,7 @@ } }, { - "id": 2742, + "id": 2750, "name": "isLiveboardMasterpiecesEnabled", "kind": 1024, "kindString": "Property", @@ -28321,7 +28503,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2074, + "line": 2076, "character": 4 } ], @@ -28335,7 +28517,7 @@ } }, { - "id": 2660, + "id": 2668, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -28372,7 +28554,7 @@ } }, { - "id": 2663, + "id": 2671, "name": "isLiveboardXLSXCSVDownloadEnabled", "kind": 1024, "kindString": "Property", @@ -28380,13 +28562,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" @@ -28396,7 +28582,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 650, + "line": 653, "character": 4 } ], @@ -28406,7 +28592,7 @@ } }, { - "id": 2711, + "id": 2719, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -28426,7 +28612,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8518, + "line": 8587, "character": 4 } ], @@ -28440,7 +28626,7 @@ } }, { - "id": 2661, + "id": 2669, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -28474,7 +28660,7 @@ } }, { - "id": 2722, + "id": 2730, "name": "isThisPeriodInDateFiltersEnabled", "kind": 1024, "kindString": "Property", @@ -28498,7 +28684,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1802, + "line": 1804, "character": 4 } ], @@ -28512,7 +28698,7 @@ } }, { - "id": 2658, + "id": 2666, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -28550,7 +28736,7 @@ } }, { - "id": 2665, + "id": 2673, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -28577,7 +28763,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 684, + "line": 689, "character": 4 } ], @@ -28587,7 +28773,7 @@ } }, { - "id": 2667, + "id": 2675, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -28611,7 +28797,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 719, + "line": 724, "character": 4 } ], @@ -28621,7 +28807,7 @@ } }, { - "id": 2702, + "id": 2710, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -28645,7 +28831,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1245, + "line": 1247, "character": 4 } ], @@ -28659,7 +28845,7 @@ } }, { - "id": 2686, + "id": 2694, "name": "locale", "kind": 1024, "kindString": "Property", @@ -28683,7 +28869,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1015, + "line": 1017, "character": 4 } ], @@ -28697,7 +28883,7 @@ } }, { - "id": 2674, + "id": 2682, "name": "minimumHeight", "kind": 1024, "kindString": "Property", @@ -28724,7 +28910,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 838, + "line": 843, "character": 4 } ], @@ -28734,7 +28920,7 @@ } }, { - "id": 2653, + "id": 2661, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -28771,7 +28957,7 @@ } }, { - "id": 2743, + "id": 2751, "name": "newChartsLibrary", "kind": 1024, "kindString": "Property", @@ -28799,7 +28985,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2090, + "line": 2092, "character": 4 } ], @@ -28813,7 +28999,7 @@ } }, { - "id": 2659, + "id": 2667, "name": "newConnectionsExperience", "kind": 1024, "kindString": "Property", @@ -28851,7 +29037,7 @@ } }, { - "id": 2701, + "id": 2709, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -28875,7 +29061,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1220, + "line": 1222, "character": 4 } ], @@ -28889,7 +29075,7 @@ } }, { - "id": 2646, + "id": 2654, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -28919,12 +29105,12 @@ ], "type": { "type": "reference", - "id": 1923, + "id": 1925, "name": "Page" } }, { - "id": 2645, + "id": 2653, "name": "path", "kind": 1024, "kindString": "Property", @@ -28958,7 +29144,7 @@ } }, { - "id": 2696, + "id": 2704, "name": "preRenderContainer", "kind": 1024, "kindString": "Property", @@ -28982,7 +29168,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1149, + "line": 1151, "character": 4 } ], @@ -29005,7 +29191,7 @@ } }, { - "id": 2694, + "id": 2702, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -29029,7 +29215,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1089, + "line": 1091, "character": 4 } ], @@ -29043,7 +29229,7 @@ } }, { - "id": 2704, + "id": 2712, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -29067,7 +29253,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1292, + "line": 1294, "character": 4 } ], @@ -29081,7 +29267,7 @@ } }, { - "id": 2708, + "id": 2716, "name": "refreshAuthTokenOnNearExpiry", "kind": 1024, "kindString": "Property", @@ -29108,7 +29294,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1505, + "line": 1507, "character": 4 } ], @@ -29122,7 +29308,7 @@ } }, { - "id": 2725, + "id": 2733, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -29146,7 +29332,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1627, + "line": 1629, "character": 4 } ], @@ -29154,7 +29340,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2766, + "id": 2774, "name": "HomepageModule" } }, @@ -29164,7 +29350,7 @@ } }, { - "id": 2714, + "id": 2722, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -29188,7 +29374,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1676, + "line": 1678, "character": 4 } ], @@ -29196,7 +29382,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1944, + "id": 1946, "name": "RuntimeFilter" } }, @@ -29206,7 +29392,7 @@ } }, { - "id": 2715, + "id": 2723, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -29230,7 +29416,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1697, + "line": 1699, "character": 4 } ], @@ -29238,7 +29424,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3032, + "id": 3040, "name": "RuntimeParameter" } }, @@ -29248,7 +29434,7 @@ } }, { - "id": 2709, + "id": 2717, "name": "shouldBypassPayloadValidation", "kind": 1024, "kindString": "Property", @@ -29275,7 +29461,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1518, + "line": 1520, "character": 4 } ], @@ -29289,7 +29475,7 @@ } }, { - "id": 2706, + "id": 2714, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -29312,7 +29498,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1312, + "line": 1314, "character": 4 } ], @@ -29326,7 +29512,7 @@ } }, { - "id": 2729, + "id": 2737, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -29354,7 +29540,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1856, + "line": 1858, "character": 4 } ], @@ -29368,7 +29554,7 @@ } }, { - "id": 2735, + "id": 2743, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -29396,7 +29582,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1960, + "line": 1962, "character": 4 } ], @@ -29410,7 +29596,7 @@ } }, { - "id": 2728, + "id": 2736, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -29438,7 +29624,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1840, + "line": 1842, "character": 4 } ], @@ -29452,7 +29638,7 @@ } }, { - "id": 2733, + "id": 2741, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -29480,7 +29666,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1922, + "line": 1924, "character": 4 } ], @@ -29494,7 +29680,7 @@ } }, { - "id": 2741, + "id": 2749, "name": "showMaskedFilterChip", "kind": 1024, "kindString": "Property", @@ -29522,7 +29708,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2058, + "line": 2060, "character": 4 } ], @@ -29536,7 +29722,7 @@ } }, { - "id": 2636, + "id": 2644, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -29574,7 +29760,7 @@ } }, { - "id": 2671, + "id": 2679, "name": "spotterChatConfig", "kind": 1024, "kindString": "Property", @@ -29598,7 +29784,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 783, + "line": 788, "character": 4 } ], @@ -29609,7 +29795,7 @@ } }, { - "id": 2670, + "id": 2678, "name": "spotterSidebarConfig", "kind": 1024, "kindString": "Property", @@ -29633,7 +29819,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 765, + "line": 770, "character": 4 } ], @@ -29644,7 +29830,7 @@ } }, { - "id": 2672, + "id": 2680, "name": "spotterViz", "kind": 1024, "kindString": "Property", @@ -29668,18 +29854,18 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 812, + "line": 817, "character": 4 } ], "type": { "type": "reference", - "id": 2619, + "id": 2627, "name": "SpotterVizConfig" } }, { - "id": 2647, + "id": 2655, "name": "tag", "kind": 1024, "kindString": "Property", @@ -29713,7 +29899,7 @@ } }, { - "id": 2668, + "id": 2676, "name": "updatedSpotterChatPrompt", "kind": 1024, "kindString": "Property", @@ -29741,7 +29927,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 735, + "line": 740, "character": 4 } ], @@ -29751,7 +29937,7 @@ } }, { - "id": 2710, + "id": 2718, "name": "useHostEventsV2", "kind": 1024, "kindString": "Property", @@ -29778,7 +29964,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1532, + "line": 1534, "character": 4 } ], @@ -29792,7 +29978,7 @@ } }, { - "id": 2685, + "id": 2693, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -29800,7 +29986,7 @@ "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this as an allowlist — only the actions listed here will be shown.\nAll other actions will be hidden. Use either this or {@link hiddenActions}, not both.", + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this as an allowlist — only the actions listed here will be shown.\nAll other actions will be hidden. Use either this or {@link hiddenActions}, not\nboth.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", "tags": [ { @@ -29820,7 +30006,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1000, + "line": 1002, "character": 4 } ], @@ -29828,7 +30014,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -29838,7 +30024,7 @@ } }, { - "id": 2677, + "id": 2685, "name": "visualOverrides", "kind": 1024, "kindString": "Property", @@ -29857,13 +30043,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 873, + "line": 878, "character": 4 } ], "type": { "type": "reference", - "id": 3164, + "id": 3172, "name": "VisualizationOverrides" } } @@ -29873,103 +30059,103 @@ "title": "Properties", "kind": 1024, "children": [ - 2687, - 2719, - 2655, - 2716, - 2737, - 2707, - 2691, - 2656, - 2720, - 2638, - 2700, - 2683, - 2682, - 2654, 2695, - 2731, - 2736, - 2721, - 2675, - 2703, - 2676, - 2669, - 2639, - 2651, - 2673, - 2697, - 2717, - 2718, + 2727, + 2663, + 2724, + 2745, + 2715, 2699, - 2679, - 2652, + 2664, + 2728, + 2646, + 2708, + 2691, + 2690, + 2662, + 2703, + 2739, + 2744, + 2729, + 2683, + 2711, 2684, + 2677, + 2647, + 2659, + 2681, + 2705, + 2725, 2726, - 2724, - 2723, - 2643, - 2640, - 2637, + 2707, + 2687, + 2660, + 2692, 2734, - 2727, - 2642, - 2641, - 2649, - 2644, + 2732, + 2731, + 2651, 2648, + 2645, + 2742, + 2735, + 2650, + 2649, 2657, - 2692, - 2713, - 2712, - 2738, - 2662, + 2652, + 2656, + 2665, + 2700, + 2721, + 2720, + 2746, + 2670, + 2748, + 2672, + 2747, 2740, - 2664, - 2739, - 2732, + 2738, + 2750, + 2668, + 2671, + 2719, + 2669, 2730, - 2742, - 2660, - 2663, - 2711, + 2666, + 2673, + 2675, + 2710, + 2694, + 2682, 2661, - 2722, - 2658, - 2665, + 2751, 2667, - 2702, - 2686, - 2674, + 2709, + 2654, 2653, - 2743, - 2659, - 2701, - 2646, - 2645, - 2696, - 2694, 2704, - 2708, - 2725, - 2714, - 2715, - 2709, - 2706, - 2729, - 2735, - 2728, + 2702, + 2712, + 2716, 2733, + 2722, + 2723, + 2717, + 2714, + 2737, + 2743, + 2736, 2741, - 2636, - 2671, - 2670, - 2672, - 2647, - 2668, - 2710, - 2685, - 2677 + 2749, + 2644, + 2679, + 2678, + 2680, + 2655, + 2676, + 2718, + 2693, + 2685 ] } ], @@ -29988,7 +30174,7 @@ ] }, { - "id": 1783, + "id": 1785, "name": "AuthEventEmitter", "kind": 256, "kindString": "Interface", @@ -30004,14 +30190,14 @@ }, "children": [ { - "id": 1820, + "id": 1822, "name": "emit", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1821, + "id": 1823, "name": "emit", "kind": 4096, "kindString": "Call signature", @@ -30021,19 +30207,19 @@ }, "parameters": [ { - "id": 1822, + "id": 1824, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1782, + "id": 1784, "name": "TRIGGER_SSO_POPUP" } }, { - "id": 1823, + "id": 1825, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -30057,14 +30243,14 @@ ] }, { - "id": 1824, + "id": 1826, "name": "off", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1825, + "id": 1827, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -30074,7 +30260,7 @@ }, "parameters": [ { - "id": 1826, + "id": 1828, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -30082,12 +30268,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1773, + "id": 1775, "name": "AuthStatus" } }, { - "id": 1827, + "id": 1829, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -30096,21 +30282,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1828, + "id": 1830, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1829, + "id": 1831, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1830, + "id": 1832, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -30136,7 +30322,7 @@ } }, { - "id": 1831, + "id": 1833, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -30148,7 +30334,7 @@ } }, { - "id": 1832, + "id": 1834, "name": "once", "kind": 32768, "kindString": "Parameter", @@ -30164,21 +30350,21 @@ ], "type": { "type": "reference", - "id": 1783, + "id": 1785, "name": "AuthEventEmitter" } } ] }, { - "id": 1784, + "id": 1786, "name": "on", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1785, + "id": 1787, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -30188,7 +30374,7 @@ }, "parameters": [ { - "id": 1786, + "id": 1788, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -30196,12 +30382,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1774, + "id": 1776, "name": "FAILURE" } }, { - "id": 1787, + "id": 1789, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -30212,28 +30398,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1788, + "id": 1790, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1789, + "id": 1791, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1790, + "id": 1792, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1766, + "id": 1768, "name": "AuthFailureType" } } @@ -30250,12 +30436,12 @@ ], "type": { "type": "reference", - "id": 1783, + "id": 1785, "name": "AuthEventEmitter" } }, { - "id": 1791, + "id": 1793, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -30265,7 +30451,7 @@ }, "parameters": [ { - "id": 1792, + "id": 1794, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -30276,29 +30462,29 @@ "types": [ { "type": "reference", - "id": 1775, + "id": 1777, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1778, + "id": 1780, "name": "LOGOUT" }, { "type": "reference", - "id": 1779, + "id": 1781, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1780, + "id": 1782, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1793, + "id": 1795, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -30309,14 +30495,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1794, + "id": 1796, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1795, + "id": 1797, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -30333,31 +30519,31 @@ ], "type": { "type": "reference", - "id": 1783, + "id": 1785, "name": "AuthEventEmitter" } }, { - "id": 1796, + "id": 1798, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1797, + "id": 1799, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1777, + "id": 1779, "name": "SUCCESS" } }, { - "id": 1798, + "id": 1800, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -30365,21 +30551,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1799, + "id": 1801, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1800, + "id": 1802, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1801, + "id": 1803, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -30402,40 +30588,40 @@ ], "type": { "type": "reference", - "id": 1783, + "id": 1785, "name": "AuthEventEmitter" } } ] }, { - "id": 1802, + "id": 1804, "name": "once", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1803, + "id": 1805, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1804, + "id": 1806, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1774, + "id": 1776, "name": "FAILURE" } }, { - "id": 1805, + "id": 1807, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -30443,28 +30629,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1806, + "id": 1808, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1807, + "id": 1809, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1808, + "id": 1810, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1766, + "id": 1768, "name": "AuthFailureType" } } @@ -30481,19 +30667,19 @@ ], "type": { "type": "reference", - "id": 1783, + "id": 1785, "name": "AuthEventEmitter" } }, { - "id": 1809, + "id": 1811, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1810, + "id": 1812, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -30503,29 +30689,29 @@ "types": [ { "type": "reference", - "id": 1775, + "id": 1777, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1778, + "id": 1780, "name": "LOGOUT" }, { "type": "reference", - "id": 1779, + "id": 1781, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1780, + "id": 1782, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1811, + "id": 1813, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -30533,14 +30719,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1812, + "id": 1814, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1813, + "id": 1815, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -30557,31 +30743,31 @@ ], "type": { "type": "reference", - "id": 1783, + "id": 1785, "name": "AuthEventEmitter" } }, { - "id": 1814, + "id": 1816, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1815, + "id": 1817, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1777, + "id": 1779, "name": "SUCCESS" } }, { - "id": 1816, + "id": 1818, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -30589,21 +30775,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1817, + "id": 1819, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1818, + "id": 1820, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1819, + "id": 1821, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -30626,21 +30812,21 @@ ], "type": { "type": "reference", - "id": 1783, + "id": 1785, "name": "AuthEventEmitter" } } ] }, { - "id": 1833, + "id": 1835, "name": "removeAllListeners", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1834, + "id": 1836, "name": "removeAllListeners", "kind": 4096, "kindString": "Call signature", @@ -30650,7 +30836,7 @@ }, "parameters": [ { - "id": 1835, + "id": 1837, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -30660,14 +30846,14 @@ }, "type": { "type": "reference", - "id": 1773, + "id": 1775, "name": "AuthStatus" } } ], "type": { "type": "reference", - "id": 1783, + "id": 1785, "name": "AuthEventEmitter" } } @@ -30679,11 +30865,11 @@ "title": "Methods", "kind": 2048, "children": [ - 1820, - 1824, - 1784, - 1802, - 1833 + 1822, + 1826, + 1786, + 1804, + 1835 ] } ], @@ -30740,7 +30926,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1039, + "line": 1041, "character": 4 } ], @@ -30829,7 +31015,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1491, + "line": 1493, "character": 4 } ], @@ -30870,13 +31056,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1046, + "line": 1048, "character": 4 } ], "type": { "type": "reference", - "id": 2790, + "id": 2798, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -30910,7 +31096,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1201, + "line": 1203, "character": 4 } ], @@ -30996,7 +31182,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -31034,7 +31220,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1110, + "line": 1112, "character": 4 } ], @@ -31073,7 +31259,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1276, + "line": 1278, "character": 4 } ], @@ -31112,7 +31298,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1166, + "line": 1168, "character": 4 } ], @@ -31150,7 +31336,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1177, + "line": 1179, "character": 4 } ], @@ -31195,7 +31381,7 @@ ], "type": { "type": "reference", - "id": 2749, + "id": 2757, "name": "FrameParams" }, "inheritedFrom": { @@ -31213,7 +31399,7 @@ "isOptional": true }, "comment": { - "shortText": "The list of actions to completely remove from the embedded view.\nHidden actions are not visible to the user at all (fully removed from the UI).\nUse this when you want to remove an action entirely.\nTo keep an action visible but non-interactive (grayed out), use {@link disabledActions} instead.", + "shortText": "The list of actions to completely remove from the embedded view.\nHidden actions are not visible to the user at all (fully removed from the UI).\nUse this when you want to remove an action entirely.\nTo keep an action visible but non-interactive (grayed out), use {@link\ndisabledActions} instead.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", "tags": [ { @@ -31233,7 +31419,7 @@ "sources": [ { "fileName": "types.ts", - "line": 980, + "line": 981, "character": 4 } ], @@ -31241,7 +31427,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -31276,7 +31462,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1062, + "line": 1064, "character": 4 } ], @@ -31314,7 +31500,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8551, + "line": 8620, "character": 4 } ], @@ -31352,7 +31538,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8534, + "line": 8603, "character": 4 } ], @@ -31390,7 +31576,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8518, + "line": 8587, "character": 4 } ], @@ -31429,7 +31615,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1245, + "line": 1247, "character": 4 } ], @@ -31468,7 +31654,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1015, + "line": 1017, "character": 4 } ], @@ -31507,7 +31693,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1220, + "line": 1222, "character": 4 } ], @@ -31546,7 +31732,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1149, + "line": 1151, "character": 4 } ], @@ -31594,7 +31780,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1089, + "line": 1091, "character": 4 } ], @@ -31636,7 +31822,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1505, + "line": 1507, "character": 4 } ], @@ -31678,7 +31864,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1518, + "line": 1520, "character": 4 } ], @@ -31716,7 +31902,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1312, + "line": 1314, "character": 4 } ], @@ -31758,7 +31944,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1532, + "line": 1534, "character": 4 } ], @@ -31781,7 +31967,7 @@ "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this as an allowlist — only the actions listed here will be shown.\nAll other actions will be hidden. Use either this or {@link hiddenActions}, not both.", + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this as an allowlist — only the actions listed here will be shown.\nAll other actions will be hidden. Use either this or {@link hiddenActions}, not\nboth.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", "tags": [ { @@ -31801,7 +31987,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1000, + "line": 1002, "character": 4 } ], @@ -31809,7 +31995,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -31897,7 +32083,7 @@ ] }, { - "id": 1528, + "id": 1530, "name": "ConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -31917,7 +32103,7 @@ }, "children": [ { - "id": 1554, + "id": 1556, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -31941,27 +32127,27 @@ "sources": [ { "fileName": "types.ts", - "line": 1039, + "line": 1041, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1555, + "id": 1557, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1556, + "id": 1558, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1557, + "id": 1559, "name": "key", "kind": 32768, "flags": {}, @@ -31998,7 +32184,7 @@ } }, { - "id": 1573, + "id": 1575, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -32030,7 +32216,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1491, + "line": 1493, "character": 4 } ], @@ -32048,7 +32234,7 @@ } }, { - "id": 1558, + "id": 1560, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -32071,13 +32257,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1046, + "line": 1048, "character": 4 } ], "type": { "type": "reference", - "id": 2790, + "id": 2798, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -32087,7 +32273,7 @@ } }, { - "id": 1533, + "id": 1535, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -32115,7 +32301,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 199, + "line": 211, "character": 4 } ], @@ -32130,7 +32316,7 @@ } }, { - "id": 1567, + "id": 1569, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -32154,7 +32340,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1201, + "line": 1203, "character": 4 } ], @@ -32169,7 +32355,7 @@ } }, { - "id": 1531, + "id": 1533, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -32193,7 +32379,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 169, + "line": 181, "character": 4 } ], @@ -32208,7 +32394,7 @@ } }, { - "id": 1550, + "id": 1552, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -32247,7 +32433,7 @@ } }, { - "id": 1549, + "id": 1551, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -32279,7 +32465,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -32290,7 +32476,7 @@ } }, { - "id": 1562, + "id": 1564, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -32317,7 +32503,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1110, + "line": 1112, "character": 4 } ], @@ -32332,7 +32518,7 @@ } }, { - "id": 1570, + "id": 1572, "name": "enableLinkOverridesV2", "kind": 1024, "kindString": "Property", @@ -32356,7 +32542,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1276, + "line": 1278, "character": 4 } ], @@ -32371,7 +32557,7 @@ } }, { - "id": 1542, + "id": 1544, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -32399,7 +32585,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 328, + "line": 340, "character": 4 } ], @@ -32414,7 +32600,7 @@ } }, { - "id": 1541, + "id": 1543, "name": "enableStopAnswerGenerationEmbed", "kind": 1024, "kindString": "Property", @@ -32438,7 +32624,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 318, + "line": 330, "character": 4 } ], @@ -32453,7 +32639,7 @@ } }, { - "id": 1564, + "id": 1566, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -32477,7 +32663,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1166, + "line": 1168, "character": 4 } ], @@ -32492,7 +32678,7 @@ } }, { - "id": 1537, + "id": 1539, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -32516,7 +32702,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 263, + "line": 275, "character": 4 } ], @@ -32531,7 +32717,7 @@ } }, { - "id": 1539, + "id": 1541, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -32555,7 +32741,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 294, + "line": 306, "character": 4 } ], @@ -32570,7 +32756,7 @@ } }, { - "id": 1566, + "id": 1568, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -32593,7 +32779,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1177, + "line": 1179, "character": 4 } ], @@ -32608,7 +32794,7 @@ } }, { - "id": 1546, + "id": 1548, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -32638,7 +32824,7 @@ ], "type": { "type": "reference", - "id": 2749, + "id": 2757, "name": "FrameParams" }, "inheritedFrom": { @@ -32648,7 +32834,7 @@ } }, { - "id": 1551, + "id": 1553, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -32656,7 +32842,7 @@ "isOptional": true }, "comment": { - "shortText": "The list of actions to completely remove from the embedded view.\nHidden actions are not visible to the user at all (fully removed from the UI).\nUse this when you want to remove an action entirely.\nTo keep an action visible but non-interactive (grayed out), use {@link disabledActions} instead.", + "shortText": "The list of actions to completely remove from the embedded view.\nHidden actions are not visible to the user at all (fully removed from the UI).\nUse this when you want to remove an action entirely.\nTo keep an action visible but non-interactive (grayed out), use {@link\ndisabledActions} instead.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", "tags": [ { @@ -32676,7 +32862,7 @@ "sources": [ { "fileName": "types.ts", - "line": 980, + "line": 981, "character": 4 } ], @@ -32684,7 +32870,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -32695,7 +32881,7 @@ } }, { - "id": 1535, + "id": 1537, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -32719,7 +32905,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 230, + "line": 242, "character": 4 } ], @@ -32734,7 +32920,7 @@ } }, { - "id": 1532, + "id": 1534, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -32758,7 +32944,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 183, + "line": 195, "character": 4 } ], @@ -32773,7 +32959,7 @@ } }, { - "id": 1559, + "id": 1561, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -32797,7 +32983,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1062, + "line": 1064, "character": 4 } ], @@ -32812,7 +32998,7 @@ } }, { - "id": 1579, + "id": 1581, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -32835,7 +33021,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8551, + "line": 8620, "character": 4 } ], @@ -32850,7 +33036,7 @@ } }, { - "id": 1578, + "id": 1580, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -32873,7 +33059,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8534, + "line": 8603, "character": 4 } ], @@ -32891,7 +33077,7 @@ } }, { - "id": 1577, + "id": 1579, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -32911,7 +33097,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8518, + "line": 8587, "character": 4 } ], @@ -32926,7 +33112,7 @@ } }, { - "id": 1569, + "id": 1571, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -32950,7 +33136,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1245, + "line": 1247, "character": 4 } ], @@ -32965,7 +33151,7 @@ } }, { - "id": 1553, + "id": 1555, "name": "locale", "kind": 1024, "kindString": "Property", @@ -32989,7 +33175,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1015, + "line": 1017, "character": 4 } ], @@ -33004,7 +33190,7 @@ } }, { - "id": 1568, + "id": 1570, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -33028,7 +33214,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1220, + "line": 1222, "character": 4 } ], @@ -33043,7 +33229,7 @@ } }, { - "id": 1563, + "id": 1565, "name": "preRenderContainer", "kind": 1024, "kindString": "Property", @@ -33067,7 +33253,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1149, + "line": 1151, "character": 4 } ], @@ -33091,7 +33277,7 @@ } }, { - "id": 1561, + "id": 1563, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -33115,7 +33301,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1089, + "line": 1091, "character": 4 } ], @@ -33130,7 +33316,7 @@ } }, { - "id": 1574, + "id": 1576, "name": "refreshAuthTokenOnNearExpiry", "kind": 1024, "kindString": "Property", @@ -33157,7 +33343,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1505, + "line": 1507, "character": 4 } ], @@ -33172,7 +33358,7 @@ } }, { - "id": 1536, + "id": 1538, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -33196,7 +33382,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 251, + "line": 263, "character": 4 } ], @@ -33204,7 +33390,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1944, + "id": 1946, "name": "RuntimeFilter" } }, @@ -33215,7 +33401,7 @@ } }, { - "id": 1538, + "id": 1540, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -33239,7 +33425,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 282, + "line": 294, "character": 4 } ], @@ -33247,7 +33433,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3032, + "id": 3040, "name": "RuntimeParameter" } }, @@ -33258,7 +33444,7 @@ } }, { - "id": 1530, + "id": 1532, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -33271,7 +33457,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 154, + "line": 166, "character": 4 } ], @@ -33286,7 +33472,7 @@ } }, { - "id": 1575, + "id": 1577, "name": "shouldBypassPayloadValidation", "kind": 1024, "kindString": "Property", @@ -33313,7 +33499,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1518, + "line": 1520, "character": 4 } ], @@ -33328,7 +33514,7 @@ } }, { - "id": 1572, + "id": 1574, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -33351,7 +33537,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1312, + "line": 1314, "character": 4 } ], @@ -33366,7 +33552,7 @@ } }, { - "id": 1534, + "id": 1536, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -33390,7 +33576,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 215, + "line": 227, "character": 4 } ], @@ -33405,7 +33591,7 @@ } }, { - "id": 1544, + "id": 1546, "name": "spotterChatConfig", "kind": 1024, "kindString": "Property", @@ -33429,7 +33615,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 367, + "line": 379, "character": 4 } ], @@ -33445,7 +33631,7 @@ } }, { - "id": 1543, + "id": 1545, "name": "spotterSidebarConfig", "kind": 1024, "kindString": "Property", @@ -33469,7 +33655,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 349, + "line": 361, "character": 4 } ], @@ -33485,7 +33671,7 @@ } }, { - "id": 1540, + "id": 1542, "name": "updatedSpotterChatPrompt", "kind": 1024, "kindString": "Property", @@ -33513,7 +33699,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 309, + "line": 321, "character": 4 } ], @@ -33528,7 +33714,7 @@ } }, { - "id": 1576, + "id": 1578, "name": "useHostEventsV2", "kind": 1024, "kindString": "Property", @@ -33555,7 +33741,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1532, + "line": 1534, "character": 4 } ], @@ -33570,7 +33756,7 @@ } }, { - "id": 1552, + "id": 1554, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -33578,7 +33764,7 @@ "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this as an allowlist — only the actions listed here will be shown.\nAll other actions will be hidden. Use either this or {@link hiddenActions}, not both.", + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this as an allowlist — only the actions listed here will be shown.\nAll other actions will be hidden. Use either this or {@link hiddenActions}, not\nboth.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", "tags": [ { @@ -33598,7 +33784,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1000, + "line": 1002, "character": 4 } ], @@ -33606,7 +33792,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -33617,7 +33803,7 @@ } }, { - "id": 1529, + "id": 1531, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -33628,7 +33814,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 150, + "line": 162, "character": 4 } ], @@ -33648,55 +33834,55 @@ "title": "Properties", "kind": 1024, "children": [ - 1554, - 1573, - 1558, + 1556, + 1575, + 1560, + 1535, + 1569, 1533, - 1567, - 1531, - 1550, - 1549, - 1562, - 1570, - 1542, - 1541, + 1552, + 1551, 1564, - 1537, - 1539, + 1572, + 1544, + 1543, 1566, - 1546, - 1551, - 1535, - 1532, - 1559, - 1579, - 1578, - 1577, - 1569, - 1553, + 1539, + 1541, 1568, - 1563, + 1548, + 1553, + 1537, + 1534, 1561, - 1574, - 1536, + 1581, + 1580, + 1579, + 1571, + 1555, + 1570, + 1565, + 1563, + 1576, 1538, - 1530, - 1575, - 1572, - 1534, - 1544, - 1543, 1540, - 1576, - 1552, - 1529 + 1532, + 1577, + 1574, + 1536, + 1546, + 1545, + 1542, + 1578, + 1554, + 1531 ] } ], "sources": [ { "fileName": "embed/conversation.ts", - "line": 377, + "line": 389, "character": 17 } ], @@ -33709,7 +33895,7 @@ ] }, { - "id": 3074, + "id": 3082, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -33724,7 +33910,7 @@ }, "children": [ { - "id": 3075, + "id": 3083, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -33734,21 +33920,21 @@ "sources": [ { "fileName": "types.ts", - "line": 8047, + "line": 8116, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 3076, + "id": 3084, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 3077, + "id": 3085, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -33756,18 +33942,18 @@ "sources": [ { "fileName": "types.ts", - "line": 8048, + "line": 8117, "character": 8 } ], "type": { "type": "reference", - "id": 3071, + "id": 3079, "name": "VizPoint" } }, { - "id": 3078, + "id": 3086, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -33775,7 +33961,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8049, + "line": 8118, "character": 8 } ], @@ -33783,7 +33969,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3071, + "id": 3079, "name": "VizPoint" } } @@ -33794,8 +33980,8 @@ "title": "Properties", "kind": 1024, "children": [ - 3077, - 3078 + 3085, + 3086 ] } ] @@ -33803,7 +33989,7 @@ } }, { - "id": 3079, + "id": 3087, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -33811,21 +33997,21 @@ "sources": [ { "fileName": "types.ts", - "line": 8051, + "line": 8120, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 3080, + "id": 3088, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 3088, + "id": 3096, "name": "columns", "kind": 1024, "kindString": "Property", @@ -33833,7 +34019,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8059, + "line": 8128, "character": 8 } ], @@ -33846,7 +34032,7 @@ } }, { - "id": 3089, + "id": 3097, "name": "data", "kind": 1024, "kindString": "Property", @@ -33854,7 +34040,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8060, + "line": 8129, "character": 8 } ], @@ -33867,7 +34053,7 @@ } }, { - "id": 3082, + "id": 3090, "name": "id", "kind": 1024, "kindString": "Property", @@ -33875,7 +34061,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8053, + "line": 8122, "character": 8 } ], @@ -33885,7 +34071,7 @@ } }, { - "id": 3081, + "id": 3089, "name": "name", "kind": 1024, "kindString": "Property", @@ -33893,7 +34079,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8052, + "line": 8121, "character": 8 } ], @@ -33903,7 +34089,7 @@ } }, { - "id": 3083, + "id": 3091, "name": "sources", "kind": 1024, "kindString": "Property", @@ -33911,21 +34097,21 @@ "sources": [ { "fileName": "types.ts", - "line": 8054, + "line": 8123, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 3084, + "id": 3092, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 3085, + "id": 3093, "name": "header", "kind": 1024, "kindString": "Property", @@ -33933,21 +34119,21 @@ "sources": [ { "fileName": "types.ts", - "line": 8055, + "line": 8124, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 3086, + "id": 3094, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 3087, + "id": 3095, "name": "guid", "kind": 1024, "kindString": "Property", @@ -33955,7 +34141,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8056, + "line": 8125, "character": 16 } ], @@ -33970,7 +34156,7 @@ "title": "Properties", "kind": 1024, "children": [ - 3087 + 3095 ] } ] @@ -33983,7 +34169,7 @@ "title": "Properties", "kind": 1024, "children": [ - 3085 + 3093 ] } ] @@ -33996,23 +34182,23 @@ "title": "Properties", "kind": 1024, "children": [ - 3088, + 3096, + 3097, + 3090, 3089, - 3082, - 3081, - 3083 + 3091 ] } ], "indexSignature": { - "id": 3090, + "id": 3098, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 3091, + "id": 3099, "name": "key", "kind": 32768, "flags": {}, @@ -34031,7 +34217,7 @@ } }, { - "id": 3092, + "id": 3100, "name": "session", "kind": 1024, "kindString": "Property", @@ -34039,18 +34225,18 @@ "sources": [ { "fileName": "types.ts", - "line": 8063, + "line": 8132, "character": 4 } ], "type": { "type": "reference", - "id": 1913, + "id": 1915, "name": "SessionInterface" } }, { - "id": 3093, + "id": 3101, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -34060,7 +34246,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8064, + "line": 8133, "character": 4 } ], @@ -34075,23 +34261,23 @@ "title": "Properties", "kind": 1024, "children": [ - 3075, - 3079, - 3092, - 3093 + 3083, + 3087, + 3100, + 3101 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8046, + "line": 8115, "character": 17 } ] }, { - "id": 2812, + "id": 2820, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -34101,7 +34287,7 @@ }, "children": [ { - "id": 2866, + "id": 2874, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -34124,7 +34310,7 @@ } }, { - "id": 2865, + "id": 2873, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -34147,7 +34333,7 @@ } }, { - "id": 2835, + "id": 2843, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -34170,7 +34356,7 @@ } }, { - "id": 2836, + "id": 2844, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -34193,7 +34379,7 @@ } }, { - "id": 2838, + "id": 2846, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -34216,7 +34402,7 @@ } }, { - "id": 2837, + "id": 2845, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -34239,7 +34425,7 @@ } }, { - "id": 2817, + "id": 2825, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -34262,7 +34448,7 @@ } }, { - "id": 2878, + "id": 2886, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -34285,7 +34471,7 @@ } }, { - "id": 2879, + "id": 2887, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -34308,7 +34494,7 @@ } }, { - "id": 2876, + "id": 2884, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -34331,7 +34517,7 @@ } }, { - "id": 2877, + "id": 2885, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -34354,7 +34540,7 @@ } }, { - "id": 2840, + "id": 2848, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -34377,7 +34563,7 @@ } }, { - "id": 2845, + "id": 2853, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -34400,7 +34586,7 @@ } }, { - "id": 2842, + "id": 2850, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -34423,7 +34609,7 @@ } }, { - "id": 2844, + "id": 2852, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -34446,7 +34632,7 @@ } }, { - "id": 2843, + "id": 2851, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -34469,7 +34655,7 @@ } }, { - "id": 2841, + "id": 2849, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -34492,7 +34678,7 @@ } }, { - "id": 2850, + "id": 2858, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -34515,7 +34701,7 @@ } }, { - "id": 2847, + "id": 2855, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -34538,7 +34724,7 @@ } }, { - "id": 2849, + "id": 2857, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -34561,7 +34747,7 @@ } }, { - "id": 2848, + "id": 2856, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -34584,7 +34770,7 @@ } }, { - "id": 2846, + "id": 2854, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -34607,7 +34793,7 @@ } }, { - "id": 2854, + "id": 2862, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -34630,7 +34816,7 @@ } }, { - "id": 2853, + "id": 2861, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -34653,7 +34839,7 @@ } }, { - "id": 2852, + "id": 2860, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -34676,7 +34862,7 @@ } }, { - "id": 2851, + "id": 2859, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -34699,7 +34885,7 @@ } }, { - "id": 2839, + "id": 2847, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -34722,7 +34908,7 @@ } }, { - "id": 2972, + "id": 2980, "name": "--ts-var-cca-modal-summary-header-background", "kind": 1024, "kindString": "Property", @@ -34745,7 +34931,7 @@ } }, { - "id": 2967, + "id": 2975, "name": "--ts-var-change-analysis-insights-background", "kind": 1024, "kindString": "Property", @@ -34768,7 +34954,7 @@ } }, { - "id": 2962, + "id": 2970, "name": "--ts-var-chart-heatmap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -34791,7 +34977,7 @@ } }, { - "id": 2961, + "id": 2969, "name": "--ts-var-chart-heatmap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -34814,7 +35000,7 @@ } }, { - "id": 2964, + "id": 2972, "name": "--ts-var-chart-treemap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -34837,7 +35023,7 @@ } }, { - "id": 2963, + "id": 2971, "name": "--ts-var-chart-treemap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -34860,7 +35046,7 @@ } }, { - "id": 2901, + "id": 2909, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -34883,7 +35069,7 @@ } }, { - "id": 2904, + "id": 2912, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -34906,7 +35092,7 @@ } }, { - "id": 2899, + "id": 2907, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -34929,7 +35115,7 @@ } }, { - "id": 2902, + "id": 2910, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -34952,7 +35138,7 @@ } }, { - "id": 2903, + "id": 2911, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -34975,7 +35161,7 @@ } }, { - "id": 2898, + "id": 2906, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -34998,7 +35184,7 @@ } }, { - "id": 2900, + "id": 2908, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -35021,7 +35207,7 @@ } }, { - "id": 2871, + "id": 2879, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -35044,7 +35230,7 @@ } }, { - "id": 2870, + "id": 2878, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -35067,7 +35253,7 @@ } }, { - "id": 2873, + "id": 2881, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -35090,7 +35276,7 @@ } }, { - "id": 2872, + "id": 2880, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -35113,7 +35299,7 @@ } }, { - "id": 2869, + "id": 2877, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -35136,7 +35322,7 @@ } }, { - "id": 2867, + "id": 2875, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -35159,7 +35345,7 @@ } }, { - "id": 2868, + "id": 2876, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -35182,7 +35368,7 @@ } }, { - "id": 2874, + "id": 2882, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -35205,7 +35391,7 @@ } }, { - "id": 2875, + "id": 2883, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -35228,7 +35414,7 @@ } }, { - "id": 2886, + "id": 2894, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -35251,7 +35437,7 @@ } }, { - "id": 2887, + "id": 2895, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -35274,7 +35460,7 @@ } }, { - "id": 2890, + "id": 2898, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -35297,7 +35483,7 @@ } }, { - "id": 2888, + "id": 2896, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -35320,7 +35506,7 @@ } }, { - "id": 2889, + "id": 2897, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -35343,7 +35529,7 @@ } }, { - "id": 2897, + "id": 2905, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -35366,7 +35552,7 @@ } }, { - "id": 2896, + "id": 2904, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -35389,7 +35575,7 @@ } }, { - "id": 2895, + "id": 2903, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -35412,7 +35598,7 @@ } }, { - "id": 2894, + "id": 2902, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -35435,7 +35621,7 @@ } }, { - "id": 2960, + "id": 2968, "name": "--ts-var-kpi-analyze-text-color", "kind": 1024, "kindString": "Property", @@ -35458,7 +35644,7 @@ } }, { - "id": 2959, + "id": 2967, "name": "--ts-var-kpi-comparison-color", "kind": 1024, "kindString": "Property", @@ -35481,7 +35667,7 @@ } }, { - "id": 2958, + "id": 2966, "name": "--ts-var-kpi-hero-color", "kind": 1024, "kindString": "Property", @@ -35504,7 +35690,7 @@ } }, { - "id": 2966, + "id": 2974, "name": "--ts-var-kpi-negative-change-color", "kind": 1024, "kindString": "Property", @@ -35527,7 +35713,7 @@ } }, { - "id": 2965, + "id": 2973, "name": "--ts-var-kpi-positive-change-color", "kind": 1024, "kindString": "Property", @@ -35550,7 +35736,7 @@ } }, { - "id": 2892, + "id": 2900, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -35573,7 +35759,7 @@ } }, { - "id": 2891, + "id": 2899, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -35596,7 +35782,7 @@ } }, { - "id": 2919, + "id": 2927, "name": "--ts-var-liveboard-answer-viz-padding", "kind": 1024, "kindString": "Property", @@ -35619,7 +35805,7 @@ } }, { - "id": 2932, + "id": 2940, "name": "--ts-var-liveboard-chip--active-background", "kind": 1024, "kindString": "Property", @@ -35643,7 +35829,7 @@ } }, { - "id": 2931, + "id": 2939, "name": "--ts-var-liveboard-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -35667,7 +35853,7 @@ } }, { - "id": 2929, + "id": 2937, "name": "--ts-var-liveboard-chip-background", "kind": 1024, "kindString": "Property", @@ -35691,7 +35877,7 @@ } }, { - "id": 2930, + "id": 2938, "name": "--ts-var-liveboard-chip-color", "kind": 1024, "kindString": "Property", @@ -35715,7 +35901,7 @@ } }, { - "id": 2937, + "id": 2945, "name": "--ts-var-liveboard-cross-filter-layout-background", "kind": 1024, "kindString": "Property", @@ -35738,7 +35924,7 @@ } }, { - "id": 2935, + "id": 2943, "name": "--ts-var-liveboard-dual-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -35761,7 +35947,7 @@ } }, { - "id": 2934, + "id": 2942, "name": "--ts-var-liveboard-edit-bar-background", "kind": 1024, "kindString": "Property", @@ -35784,7 +35970,7 @@ } }, { - "id": 3021, + "id": 3029, "name": "--ts-var-liveboard-edit-toolbar-border", "kind": 1024, "kindString": "Property", @@ -35807,7 +35993,7 @@ } }, { - "id": 3025, + "id": 3033, "name": "--ts-var-liveboard-edit-toolbar-hover-background", "kind": 1024, "kindString": "Property", @@ -35830,7 +36016,7 @@ } }, { - "id": 3026, + "id": 3034, "name": "--ts-var-liveboard-edit-toolbar-hover-text-color", "kind": 1024, "kindString": "Property", @@ -35853,7 +36039,7 @@ } }, { - "id": 3022, + "id": 3030, "name": "--ts-var-liveboard-edit-toolbar-selected-background", "kind": 1024, "kindString": "Property", @@ -35876,7 +36062,7 @@ } }, { - "id": 3023, + "id": 3031, "name": "--ts-var-liveboard-edit-toolbar-selected-text-color", "kind": 1024, "kindString": "Property", @@ -35899,7 +36085,7 @@ } }, { - "id": 3024, + "id": 3032, "name": "--ts-var-liveboard-edit-toolbar-text", "kind": 1024, "kindString": "Property", @@ -35922,7 +36108,7 @@ } }, { - "id": 2920, + "id": 2928, "name": "--ts-var-liveboard-group-background", "kind": 1024, "kindString": "Property", @@ -35946,7 +36132,7 @@ } }, { - "id": 2921, + "id": 2929, "name": "--ts-var-liveboard-group-border-color", "kind": 1024, "kindString": "Property", @@ -35970,7 +36156,7 @@ } }, { - "id": 2925, + "id": 2933, "name": "--ts-var-liveboard-group-description-font-color", "kind": 1024, "kindString": "Property", @@ -35994,7 +36180,7 @@ } }, { - "id": 2913, + "id": 2921, "name": "--ts-var-liveboard-group-padding", "kind": 1024, "kindString": "Property", @@ -36018,7 +36204,7 @@ } }, { - "id": 2928, + "id": 2936, "name": "--ts-var-liveboard-group-tile-background", "kind": 1024, "kindString": "Property", @@ -36042,7 +36228,7 @@ } }, { - "id": 2927, + "id": 2935, "name": "--ts-var-liveboard-group-tile-description-font-color", "kind": 1024, "kindString": "Property", @@ -36066,7 +36252,7 @@ } }, { - "id": 2918, + "id": 2926, "name": "--ts-var-liveboard-group-tile-padding", "kind": 1024, "kindString": "Property", @@ -36090,7 +36276,7 @@ } }, { - "id": 2926, + "id": 2934, "name": "--ts-var-liveboard-group-tile-title-font-color", "kind": 1024, "kindString": "Property", @@ -36114,7 +36300,7 @@ } }, { - "id": 2916, + "id": 2924, "name": "--ts-var-liveboard-group-tile-title-font-size", "kind": 1024, "kindString": "Property", @@ -36138,7 +36324,7 @@ } }, { - "id": 2917, + "id": 2925, "name": "--ts-var-liveboard-group-tile-title-font-weight", "kind": 1024, "kindString": "Property", @@ -36162,7 +36348,7 @@ } }, { - "id": 2924, + "id": 2932, "name": "--ts-var-liveboard-group-title-font-color", "kind": 1024, "kindString": "Property", @@ -36186,7 +36372,7 @@ } }, { - "id": 2914, + "id": 2922, "name": "--ts-var-liveboard-group-title-font-size", "kind": 1024, "kindString": "Property", @@ -36210,7 +36396,7 @@ } }, { - "id": 2915, + "id": 2923, "name": "--ts-var-liveboard-group-title-font-weight", "kind": 1024, "kindString": "Property", @@ -36234,7 +36420,7 @@ } }, { - "id": 2951, + "id": 2959, "name": "--ts-var-liveboard-header-action-button-active-color", "kind": 1024, "kindString": "Property", @@ -36257,7 +36443,7 @@ } }, { - "id": 2948, + "id": 2956, "name": "--ts-var-liveboard-header-action-button-background", "kind": 1024, "kindString": "Property", @@ -36280,7 +36466,7 @@ } }, { - "id": 2949, + "id": 2957, "name": "--ts-var-liveboard-header-action-button-font-color", "kind": 1024, "kindString": "Property", @@ -36303,7 +36489,7 @@ } }, { - "id": 2950, + "id": 2958, "name": "--ts-var-liveboard-header-action-button-hover-color", "kind": 1024, "kindString": "Property", @@ -36326,7 +36512,7 @@ } }, { - "id": 2906, + "id": 2914, "name": "--ts-var-liveboard-header-background", "kind": 1024, "kindString": "Property", @@ -36349,7 +36535,7 @@ } }, { - "id": 2957, + "id": 2965, "name": "--ts-var-liveboard-header-badge-active-color", "kind": 1024, "kindString": "Property", @@ -36372,7 +36558,7 @@ } }, { - "id": 2952, + "id": 2960, "name": "--ts-var-liveboard-header-badge-background", "kind": 1024, "kindString": "Property", @@ -36395,7 +36581,7 @@ } }, { - "id": 2953, + "id": 2961, "name": "--ts-var-liveboard-header-badge-font-color", "kind": 1024, "kindString": "Property", @@ -36418,7 +36604,7 @@ } }, { - "id": 2956, + "id": 2964, "name": "--ts-var-liveboard-header-badge-hover-color", "kind": 1024, "kindString": "Property", @@ -36441,7 +36627,7 @@ } }, { - "id": 2954, + "id": 2962, "name": "--ts-var-liveboard-header-badge-modified-background", "kind": 1024, "kindString": "Property", @@ -36464,7 +36650,7 @@ } }, { - "id": 2955, + "id": 2963, "name": "--ts-var-liveboard-header-badge-modified-font-color", "kind": 1024, "kindString": "Property", @@ -36487,7 +36673,7 @@ } }, { - "id": 2907, + "id": 2915, "name": "--ts-var-liveboard-header-font-color", "kind": 1024, "kindString": "Property", @@ -36510,7 +36696,7 @@ } }, { - "id": 2905, + "id": 2913, "name": "--ts-var-liveboard-layout-background", "kind": 1024, "kindString": "Property", @@ -36533,7 +36719,7 @@ } }, { - "id": 2923, + "id": 2931, "name": "--ts-var-liveboard-notetitle-body-font-color", "kind": 1024, "kindString": "Property", @@ -36556,7 +36742,7 @@ } }, { - "id": 2922, + "id": 2930, "name": "--ts-var-liveboard-notetitle-heading-font-color", "kind": 1024, "kindString": "Property", @@ -36579,7 +36765,7 @@ } }, { - "id": 2936, + "id": 2944, "name": "--ts-var-liveboard-single-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -36602,7 +36788,7 @@ } }, { - "id": 2991, + "id": 2999, "name": "--ts-var-liveboard-styling-button-active-background", "kind": 1024, "kindString": "Property", @@ -36625,7 +36811,7 @@ } }, { - "id": 2988, + "id": 2996, "name": "--ts-var-liveboard-styling-button-background", "kind": 1024, "kindString": "Property", @@ -36648,7 +36834,7 @@ } }, { - "id": 2990, + "id": 2998, "name": "--ts-var-liveboard-styling-button-hover-background", "kind": 1024, "kindString": "Property", @@ -36671,7 +36857,7 @@ } }, { - "id": 2992, + "id": 3000, "name": "--ts-var-liveboard-styling-button-hover-text-color", "kind": 1024, "kindString": "Property", @@ -36694,7 +36880,7 @@ } }, { - "id": 2993, + "id": 3001, "name": "--ts-var-liveboard-styling-button-shadow", "kind": 1024, "kindString": "Property", @@ -36717,7 +36903,7 @@ } }, { - "id": 2989, + "id": 2997, "name": "--ts-var-liveboard-styling-button-text-color", "kind": 1024, "kindString": "Property", @@ -36740,7 +36926,7 @@ } }, { - "id": 2994, + "id": 3002, "name": "--ts-var-liveboard-styling-color-palette-background", "kind": 1024, "kindString": "Property", @@ -36763,7 +36949,7 @@ } }, { - "id": 2987, + "id": 2995, "name": "--ts-var-liveboard-styling-panel-border-color", "kind": 1024, "kindString": "Property", @@ -36786,7 +36972,7 @@ } }, { - "id": 2986, + "id": 2994, "name": "--ts-var-liveboard-styling-panel-text-color", "kind": 1024, "kindString": "Property", @@ -36809,7 +36995,7 @@ } }, { - "id": 2938, + "id": 2946, "name": "--ts-var-liveboard-tab-active-border-color", "kind": 1024, "kindString": "Property", @@ -36832,7 +37018,7 @@ } }, { - "id": 2939, + "id": 2947, "name": "--ts-var-liveboard-tab-hover-color", "kind": 1024, "kindString": "Property", @@ -36855,7 +37041,7 @@ } }, { - "id": 2909, + "id": 2917, "name": "--ts-var-liveboard-tile-background", "kind": 1024, "kindString": "Property", @@ -36878,7 +37064,7 @@ } }, { - "id": 2908, + "id": 2916, "name": "--ts-var-liveboard-tile-border-color", "kind": 1024, "kindString": "Property", @@ -36901,7 +37087,7 @@ } }, { - "id": 2910, + "id": 2918, "name": "--ts-var-liveboard-tile-border-radius", "kind": 1024, "kindString": "Property", @@ -36924,7 +37110,7 @@ } }, { - "id": 2911, + "id": 2919, "name": "--ts-var-liveboard-tile-padding", "kind": 1024, "kindString": "Property", @@ -36947,7 +37133,7 @@ } }, { - "id": 2912, + "id": 2920, "name": "--ts-var-liveboard-tile-table-header-background", "kind": 1024, "kindString": "Property", @@ -36970,7 +37156,7 @@ } }, { - "id": 2940, + "id": 2948, "name": "--ts-var-liveboard-tile-title-fontsize", "kind": 1024, "kindString": "Property", @@ -36993,7 +37179,7 @@ } }, { - "id": 2941, + "id": 2949, "name": "--ts-var-liveboard-tile-title-fontweight", "kind": 1024, "kindString": "Property", @@ -37016,7 +37202,7 @@ } }, { - "id": 2884, + "id": 2892, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -37039,7 +37225,7 @@ } }, { - "id": 2881, + "id": 2889, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -37062,7 +37248,7 @@ } }, { - "id": 2880, + "id": 2888, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -37085,7 +37271,7 @@ } }, { - "id": 2882, + "id": 2890, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -37108,7 +37294,7 @@ } }, { - "id": 2885, + "id": 2893, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -37131,7 +37317,7 @@ } }, { - "id": 2883, + "id": 2891, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -37154,7 +37340,7 @@ } }, { - "id": 2818, + "id": 2826, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -37177,7 +37363,7 @@ } }, { - "id": 2819, + "id": 2827, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -37200,7 +37386,7 @@ } }, { - "id": 2946, + "id": 2954, "name": "--ts-var-parameter-chip-active-background", "kind": 1024, "kindString": "Property", @@ -37223,7 +37409,7 @@ } }, { - "id": 2947, + "id": 2955, "name": "--ts-var-parameter-chip-active-text-color", "kind": 1024, "kindString": "Property", @@ -37246,7 +37432,7 @@ } }, { - "id": 2942, + "id": 2950, "name": "--ts-var-parameter-chip-background", "kind": 1024, "kindString": "Property", @@ -37269,7 +37455,7 @@ } }, { - "id": 2944, + "id": 2952, "name": "--ts-var-parameter-chip-hover-background", "kind": 1024, "kindString": "Property", @@ -37292,7 +37478,7 @@ } }, { - "id": 2945, + "id": 2953, "name": "--ts-var-parameter-chip-hover-text-color", "kind": 1024, "kindString": "Property", @@ -37315,7 +37501,7 @@ } }, { - "id": 2943, + "id": 2951, "name": "--ts-var-parameter-chip-text-color", "kind": 1024, "kindString": "Property", @@ -37338,7 +37524,7 @@ } }, { - "id": 2813, + "id": 2821, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -37361,7 +37547,7 @@ } }, { - "id": 2814, + "id": 2822, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -37384,7 +37570,7 @@ } }, { - "id": 2815, + "id": 2823, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -37407,7 +37593,7 @@ } }, { - "id": 2816, + "id": 2824, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -37430,7 +37616,7 @@ } }, { - "id": 2975, + "id": 2983, "name": "--ts-var-saved-chats-bg", "kind": 1024, "kindString": "Property", @@ -37453,7 +37639,7 @@ } }, { - "id": 2974, + "id": 2982, "name": "--ts-var-saved-chats-border-color", "kind": 1024, "kindString": "Property", @@ -37476,7 +37662,7 @@ } }, { - "id": 2979, + "id": 2987, "name": "--ts-var-saved-chats-btn-bg", "kind": 1024, "kindString": "Property", @@ -37499,7 +37685,7 @@ } }, { - "id": 2980, + "id": 2988, "name": "--ts-var-saved-chats-btn-hover-bg", "kind": 1024, "kindString": "Property", @@ -37522,7 +37708,7 @@ } }, { - "id": 2983, + "id": 2991, "name": "--ts-var-saved-chats-conv-active-bg", "kind": 1024, "kindString": "Property", @@ -37545,7 +37731,7 @@ } }, { - "id": 2982, + "id": 2990, "name": "--ts-var-saved-chats-conv-hover-bg", "kind": 1024, "kindString": "Property", @@ -37568,7 +37754,7 @@ } }, { - "id": 2981, + "id": 2989, "name": "--ts-var-saved-chats-conv-text-color", "kind": 1024, "kindString": "Property", @@ -37591,7 +37777,7 @@ } }, { - "id": 2984, + "id": 2992, "name": "--ts-var-saved-chats-footer-border", "kind": 1024, "kindString": "Property", @@ -37614,7 +37800,7 @@ } }, { - "id": 2977, + "id": 2985, "name": "--ts-var-saved-chats-header-border", "kind": 1024, "kindString": "Property", @@ -37637,7 +37823,7 @@ } }, { - "id": 2985, + "id": 2993, "name": "--ts-var-saved-chats-section-title-color", "kind": 1024, "kindString": "Property", @@ -37660,7 +37846,7 @@ } }, { - "id": 2976, + "id": 2984, "name": "--ts-var-saved-chats-text-color", "kind": 1024, "kindString": "Property", @@ -37683,7 +37869,7 @@ } }, { - "id": 2978, + "id": 2986, "name": "--ts-var-saved-chats-title-color", "kind": 1024, "kindString": "Property", @@ -37706,7 +37892,7 @@ } }, { - "id": 2827, + "id": 2835, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -37729,7 +37915,7 @@ } }, { - "id": 2831, + "id": 2839, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -37752,7 +37938,7 @@ } }, { - "id": 2832, + "id": 2840, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -37775,7 +37961,7 @@ } }, { - "id": 2830, + "id": 2838, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -37798,7 +37984,7 @@ } }, { - "id": 2826, + "id": 2834, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -37821,7 +38007,7 @@ } }, { - "id": 2829, + "id": 2837, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -37844,7 +38030,7 @@ } }, { - "id": 2823, + "id": 2831, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -37867,7 +38053,7 @@ } }, { - "id": 2824, + "id": 2832, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -37890,7 +38076,7 @@ } }, { - "id": 2825, + "id": 2833, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -37913,7 +38099,7 @@ } }, { - "id": 2820, + "id": 2828, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -37936,7 +38122,7 @@ } }, { - "id": 2821, + "id": 2829, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -37959,7 +38145,7 @@ } }, { - "id": 2822, + "id": 2830, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -37982,7 +38168,7 @@ } }, { - "id": 2828, + "id": 2836, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -38005,7 +38191,7 @@ } }, { - "id": 2893, + "id": 2901, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -38028,7 +38214,7 @@ } }, { - "id": 2933, + "id": 2941, "name": "--ts-var-side-panel-width", "kind": 1024, "kindString": "Property", @@ -38051,7 +38237,7 @@ } }, { - "id": 2971, + "id": 2979, "name": "--ts-var-spotiq-analyze-crosscorrelation-card-background", "kind": 1024, "kindString": "Property", @@ -38074,7 +38260,7 @@ } }, { - "id": 2968, + "id": 2976, "name": "--ts-var-spotiq-analyze-forecasting-card-background", "kind": 1024, "kindString": "Property", @@ -38097,7 +38283,7 @@ } }, { - "id": 2969, + "id": 2977, "name": "--ts-var-spotiq-analyze-outlier-card-background", "kind": 1024, "kindString": "Property", @@ -38120,7 +38306,7 @@ } }, { - "id": 2970, + "id": 2978, "name": "--ts-var-spotiq-analyze-trend-card-background", "kind": 1024, "kindString": "Property", @@ -38143,7 +38329,7 @@ } }, { - "id": 2973, + "id": 2981, "name": "--ts-var-spotter-chat-width", "kind": 1024, "kindString": "Property", @@ -38166,7 +38352,7 @@ } }, { - "id": 2833, + "id": 2841, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -38189,7 +38375,7 @@ } }, { - "id": 2834, + "id": 2842, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -38212,7 +38398,7 @@ } }, { - "id": 3028, + "id": 3036, "name": "--ts-var-spotterviz-border-color", "kind": 1024, "kindString": "Property", @@ -38235,7 +38421,7 @@ } }, { - "id": 3000, + "id": 3008, "name": "--ts-var-spotterviz-emptystate-spotterviz-color", "kind": 1024, "kindString": "Property", @@ -38258,7 +38444,7 @@ } }, { - "id": 3027, + "id": 3035, "name": "--ts-var-spotterviz-footer-text-color", "kind": 1024, "kindString": "Property", @@ -38281,7 +38467,7 @@ } }, { - "id": 2996, + "id": 3004, "name": "--ts-var-spotterviz-input-background", "kind": 1024, "kindString": "Property", @@ -38304,7 +38490,7 @@ } }, { - "id": 2998, + "id": 3006, "name": "--ts-var-spotterviz-input-cta-color", "kind": 1024, "kindString": "Property", @@ -38327,7 +38513,7 @@ } }, { - "id": 2999, + "id": 3007, "name": "--ts-var-spotterviz-input-cta-hover-color", "kind": 1024, "kindString": "Property", @@ -38350,7 +38536,7 @@ } }, { - "id": 2997, + "id": 3005, "name": "--ts-var-spotterviz-input-placeholder-color", "kind": 1024, "kindString": "Property", @@ -38373,7 +38559,7 @@ } }, { - "id": 3019, + "id": 3027, "name": "--ts-var-spotterviz-last-checkpoint-background", "kind": 1024, "kindString": "Property", @@ -38396,7 +38582,7 @@ } }, { - "id": 3020, + "id": 3028, "name": "--ts-var-spotterviz-last-checkpoint-border", "kind": 1024, "kindString": "Property", @@ -38419,7 +38605,7 @@ } }, { - "id": 3005, + "id": 3013, "name": "--ts-var-spotterviz-message-background", "kind": 1024, "kindString": "Property", @@ -38442,7 +38628,7 @@ } }, { - "id": 2995, + "id": 3003, "name": "--ts-var-spotterviz-panel-background", "kind": 1024, "kindString": "Property", @@ -38465,7 +38651,7 @@ } }, { - "id": 3001, + "id": 3009, "name": "--ts-var-spotterviz-prompt-card-background", "kind": 1024, "kindString": "Property", @@ -38488,7 +38674,7 @@ } }, { - "id": 3002, + "id": 3010, "name": "--ts-var-spotterviz-prompt-card-hover-background", "kind": 1024, "kindString": "Property", @@ -38511,7 +38697,7 @@ } }, { - "id": 3029, + "id": 3037, "name": "--ts-var-spotterviz-reference-icon-hover-background", "kind": 1024, "kindString": "Property", @@ -38534,7 +38720,7 @@ } }, { - "id": 3031, + "id": 3039, "name": "--ts-var-spotterviz-reference-icon-selected-background", "kind": 1024, "kindString": "Property", @@ -38557,7 +38743,7 @@ } }, { - "id": 3030, + "id": 3038, "name": "--ts-var-spotterviz-reference-icon-selected-color", "kind": 1024, "kindString": "Property", @@ -38580,7 +38766,7 @@ } }, { - "id": 3003, + "id": 3011, "name": "--ts-var-spotterviz-text-primary", "kind": 1024, "kindString": "Property", @@ -38603,7 +38789,7 @@ } }, { - "id": 3004, + "id": 3012, "name": "--ts-var-spotterviz-text-secondary", "kind": 1024, "kindString": "Property", @@ -38626,7 +38812,7 @@ } }, { - "id": 3009, + "id": 3017, "name": "--ts-var-spotterviz-thinking-completed-header-color", "kind": 1024, "kindString": "Property", @@ -38649,7 +38835,7 @@ } }, { - "id": 3011, + "id": 3019, "name": "--ts-var-spotterviz-thinking-cta-hover-background", "kind": 1024, "kindString": "Property", @@ -38672,7 +38858,7 @@ } }, { - "id": 3008, + "id": 3016, "name": "--ts-var-spotterviz-thinking-inprogress-header-color", "kind": 1024, "kindString": "Property", @@ -38695,7 +38881,7 @@ } }, { - "id": 3010, + "id": 3018, "name": "--ts-var-spotterviz-thinking-work-done-icon-color", "kind": 1024, "kindString": "Property", @@ -38718,7 +38904,7 @@ } }, { - "id": 3014, + "id": 3022, "name": "--ts-var-spotterviz-tool-border-color", "kind": 1024, "kindString": "Property", @@ -38741,7 +38927,7 @@ } }, { - "id": 3012, + "id": 3020, "name": "--ts-var-spotterviz-tool-call-background", "kind": 1024, "kindString": "Property", @@ -38764,7 +38950,7 @@ } }, { - "id": 3016, + "id": 3024, "name": "--ts-var-spotterviz-tool-feedback-button-background", "kind": 1024, "kindString": "Property", @@ -38787,7 +38973,7 @@ } }, { - "id": 3017, + "id": 3025, "name": "--ts-var-spotterviz-tool-feedback-button-hover", "kind": 1024, "kindString": "Property", @@ -38810,7 +38996,7 @@ } }, { - "id": 3015, + "id": 3023, "name": "--ts-var-spotterviz-tool-json-input-background", "kind": 1024, "kindString": "Property", @@ -38833,7 +39019,7 @@ } }, { - "id": 3018, + "id": 3026, "name": "--ts-var-spotterviz-tool-json-input-color", "kind": 1024, "kindString": "Property", @@ -38856,7 +39042,7 @@ } }, { - "id": 3013, + "id": 3021, "name": "--ts-var-spotterviz-tool-title-color", "kind": 1024, "kindString": "Property", @@ -38879,7 +39065,7 @@ } }, { - "id": 3007, + "id": 3015, "name": "--ts-var-spotterviz-usermessage-icon-background", "kind": 1024, "kindString": "Property", @@ -38902,7 +39088,7 @@ } }, { - "id": 3006, + "id": 3014, "name": "--ts-var-spotterviz-usermessage-icon-hover", "kind": 1024, "kindString": "Property", @@ -38925,7 +39111,7 @@ } }, { - "id": 2863, + "id": 2871, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -38948,7 +39134,7 @@ } }, { - "id": 2861, + "id": 2869, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -38971,7 +39157,7 @@ } }, { - "id": 2862, + "id": 2870, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -38994,7 +39180,7 @@ } }, { - "id": 2858, + "id": 2866, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -39017,7 +39203,7 @@ } }, { - "id": 2859, + "id": 2867, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -39040,7 +39226,7 @@ } }, { - "id": 2860, + "id": 2868, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -39063,7 +39249,7 @@ } }, { - "id": 2864, + "id": 2872, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -39086,7 +39272,7 @@ } }, { - "id": 2855, + "id": 2863, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -39109,7 +39295,7 @@ } }, { - "id": 2856, + "id": 2864, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -39132,7 +39318,7 @@ } }, { - "id": 2857, + "id": 2865, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -39160,225 +39346,225 @@ "title": "Properties", "kind": 1024, "children": [ - 2866, - 2865, - 2835, - 2836, - 2838, - 2837, - 2817, - 2878, - 2879, - 2876, - 2877, - 2840, - 2845, - 2842, - 2844, + 2874, + 2873, 2843, - 2841, - 2850, - 2847, - 2849, - 2848, + 2844, 2846, - 2854, + 2845, + 2825, + 2886, + 2887, + 2884, + 2885, + 2848, 2853, + 2850, 2852, 2851, - 2839, + 2849, + 2858, + 2855, + 2857, + 2856, + 2854, + 2862, + 2861, + 2860, + 2859, + 2847, + 2980, + 2975, + 2970, + 2969, 2972, - 2967, - 2962, - 2961, - 2964, - 2963, - 2901, - 2904, - 2899, - 2902, - 2903, - 2898, - 2900, - 2871, - 2870, - 2873, - 2872, - 2869, - 2867, - 2868, - 2874, + 2971, + 2909, + 2912, + 2907, + 2910, + 2911, + 2906, + 2908, + 2879, + 2878, + 2881, + 2880, + 2877, 2875, - 2886, - 2887, - 2890, - 2888, - 2889, - 2897, - 2896, - 2895, + 2876, + 2882, + 2883, 2894, - 2960, - 2959, - 2958, + 2895, + 2898, + 2896, + 2897, + 2905, + 2904, + 2903, + 2902, + 2968, + 2967, 2966, - 2965, - 2892, - 2891, - 2919, - 2932, - 2931, - 2929, - 2930, + 2974, + 2973, + 2900, + 2899, + 2927, + 2940, + 2939, 2937, - 2935, - 2934, - 3021, - 3025, - 3026, - 3022, - 3023, - 3024, - 2920, - 2921, - 2925, - 2913, + 2938, + 2945, + 2943, + 2942, + 3029, + 3033, + 3034, + 3030, + 3031, + 3032, 2928, - 2927, - 2918, + 2929, + 2933, + 2921, + 2936, + 2935, 2926, - 2916, - 2917, + 2934, 2924, + 2925, + 2932, + 2922, + 2923, + 2959, + 2956, + 2957, + 2958, 2914, + 2965, + 2960, + 2961, + 2964, + 2962, + 2963, 2915, - 2951, + 2913, + 2931, + 2930, + 2944, + 2999, + 2996, + 2998, + 3000, + 3001, + 2997, + 3002, + 2995, + 2994, + 2946, + 2947, + 2917, + 2916, + 2918, + 2919, + 2920, 2948, 2949, + 2892, + 2889, + 2888, + 2890, + 2893, + 2891, + 2826, + 2827, + 2954, + 2955, 2950, - 2906, - 2957, 2952, 2953, - 2956, - 2954, - 2955, - 2907, - 2905, - 2923, - 2922, - 2936, - 2991, + 2951, + 2821, + 2822, + 2823, + 2824, + 2983, + 2982, + 2987, 2988, + 2991, 2990, + 2989, 2992, + 2985, 2993, - 2989, - 2994, - 2987, + 2984, 2986, - 2938, - 2939, - 2909, - 2908, - 2910, - 2911, - 2912, - 2940, + 2835, + 2839, + 2840, + 2838, + 2834, + 2837, + 2831, + 2832, + 2833, + 2828, + 2829, + 2830, + 2836, + 2901, 2941, - 2884, - 2881, - 2880, - 2882, - 2885, - 2883, - 2818, - 2819, - 2946, - 2947, - 2942, - 2944, - 2945, - 2943, - 2813, - 2814, - 2815, - 2816, - 2975, - 2974, 2979, - 2980, - 2983, - 2982, - 2981, - 2984, - 2977, - 2985, 2976, + 2977, 2978, - 2827, - 2831, - 2832, - 2830, - 2826, - 2829, - 2823, - 2824, - 2825, - 2820, - 2821, - 2822, - 2828, - 2893, - 2933, - 2971, - 2968, - 2969, - 2970, - 2973, - 2833, - 2834, - 3028, - 3000, - 3027, - 2996, - 2998, - 2999, - 2997, - 3019, - 3020, + 2981, + 2841, + 2842, + 3036, + 3008, + 3035, + 3004, + 3006, + 3007, 3005, - 2995, - 3001, - 3002, - 3029, - 3031, - 3030, + 3027, + 3028, + 3013, 3003, - 3004, 3009, - 3011, - 3008, 3010, - 3014, + 3037, + 3039, + 3038, + 3011, 3012, - 3016, 3017, - 3015, + 3019, + 3016, 3018, - 3013, - 3007, - 3006, + 3022, + 3020, + 3024, + 3025, + 3023, + 3026, + 3021, + 3015, + 3014, + 2871, + 2869, + 2870, + 2866, + 2867, + 2868, + 2872, 2863, - 2861, - 2862, - 2858, - 2859, - 2860, 2864, - 2855, - 2856, - 2857 + 2865 ] } ], @@ -39391,7 +39577,7 @@ ] }, { - "id": 2800, + "id": 2808, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -39401,7 +39587,7 @@ }, "children": [ { - "id": 2802, + "id": 2810, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -39417,12 +39603,12 @@ ], "type": { "type": "reference", - "id": 2803, + "id": 2811, "name": "customCssInterface" } }, { - "id": 2801, + "id": 2809, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -39447,8 +39633,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2802, - 2801 + 2810, + 2809 ] } ], @@ -39461,7 +39647,7 @@ ] }, { - "id": 2790, + "id": 2798, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -39477,7 +39663,7 @@ }, "children": [ { - "id": 2792, + "id": 2800, "name": "content", "kind": 1024, "kindString": "Property", @@ -39494,14 +39680,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2793, + "id": 2801, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2795, + "id": 2803, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -39531,7 +39717,7 @@ } }, { - "id": 2796, + "id": 2804, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -39551,7 +39737,7 @@ } }, { - "id": 2794, + "id": 2802, "name": "strings", "kind": 1024, "kindString": "Property", @@ -39594,21 +39780,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2795, - 2796, - 2794 + 2803, + 2804, + 2802 ] } ], "indexSignature": { - "id": 2797, + "id": 2805, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2798, + "id": 2806, "name": "key", "kind": 32768, "flags": {}, @@ -39627,7 +39813,7 @@ } }, { - "id": 2799, + "id": 2807, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -39647,7 +39833,7 @@ } }, { - "id": 2791, + "id": 2799, "name": "style", "kind": 1024, "kindString": "Property", @@ -39663,7 +39849,7 @@ ], "type": { "type": "reference", - "id": 2800, + "id": 2808, "name": "CustomStyles" } } @@ -39673,9 +39859,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2792, - 2799, - 2791 + 2800, + 2807, + 2799 ] } ], @@ -39688,7 +39874,7 @@ ] }, { - "id": 2356, + "id": 2364, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -39704,7 +39890,7 @@ }, "children": [ { - "id": 2397, + "id": 2405, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -39734,20 +39920,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2398, + "id": 2406, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2399, + "id": 2407, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2400, + "id": 2408, "name": "key", "kind": 32768, "flags": {}, @@ -39779,7 +39965,7 @@ } }, { - "id": 2359, + "id": 2367, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -39802,7 +39988,7 @@ } }, { - "id": 2379, + "id": 2387, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -39844,7 +40030,7 @@ } }, { - "id": 2381, + "id": 2389, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -39873,7 +40059,7 @@ } }, { - "id": 2358, + "id": 2366, "name": "authType", "kind": 1024, "kindString": "Property", @@ -39890,12 +40076,12 @@ ], "type": { "type": "reference", - "id": 1932, + "id": 1934, "name": "AuthType" } }, { - "id": 2371, + "id": 2379, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -39924,7 +40110,7 @@ } }, { - "id": 2382, + "id": 2390, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -39957,7 +40143,7 @@ } }, { - "id": 2374, + "id": 2382, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -39986,7 +40172,7 @@ } }, { - "id": 2406, + "id": 2414, "name": "cleanupTimeout", "kind": 1024, "kindString": "Property", @@ -40019,7 +40205,7 @@ } }, { - "id": 2394, + "id": 2402, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -40048,7 +40234,7 @@ } }, { - "id": 2404, + "id": 2412, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -40092,7 +40278,7 @@ } }, { - "id": 2401, + "id": 2409, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -40135,7 +40321,7 @@ } }, { - "id": 2378, + "id": 2386, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -40160,12 +40346,12 @@ ], "type": { "type": "reference", - "id": 2790, + "id": 2798, "name": "CustomisationsInterface" } }, { - "id": 2392, + "id": 2400, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -40194,7 +40380,7 @@ } }, { - "id": 2376, + "id": 2384, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -40224,7 +40410,7 @@ } }, { - "id": 2403, + "id": 2411, "name": "disableFullscreenPresentation", "kind": 1024, "kindString": "Property", @@ -40261,7 +40447,7 @@ } }, { - "id": 2396, + "id": 2404, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -40290,7 +40476,7 @@ } }, { - "id": 2372, + "id": 2380, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -40323,7 +40509,7 @@ } }, { - "id": 2402, + "id": 2410, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -40343,7 +40529,7 @@ } }, { - "id": 2370, + "id": 2378, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -40372,7 +40558,7 @@ } }, { - "id": 2365, + "id": 2373, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -40406,7 +40592,7 @@ } }, { - "id": 2390, + "id": 2398, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -40439,12 +40625,12 @@ ], "type": { "type": "reference", - "id": 3035, + "id": 3043, "name": "LogLevel" } }, { - "id": 2373, + "id": 2381, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -40473,7 +40659,7 @@ } }, { - "id": 2364, + "id": 2372, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -40506,7 +40692,7 @@ } }, { - "id": 2393, + "id": 2401, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -40535,7 +40721,7 @@ } }, { - "id": 2363, + "id": 2371, "name": "password", "kind": 1024, "kindString": "Property", @@ -40559,7 +40745,7 @@ } }, { - "id": 2388, + "id": 2396, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -40588,7 +40774,7 @@ } }, { - "id": 2375, + "id": 2383, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -40621,7 +40807,7 @@ } }, { - "id": 2366, + "id": 2374, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -40651,7 +40837,7 @@ } }, { - "id": 2368, + "id": 2376, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -40680,7 +40866,7 @@ } }, { - "id": 2389, + "id": 2397, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -40709,7 +40895,7 @@ } }, { - "id": 2369, + "id": 2377, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -40738,7 +40924,7 @@ } }, { - "id": 2377, + "id": 2385, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -40767,7 +40953,7 @@ } }, { - "id": 2357, + "id": 2365, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -40788,7 +40974,7 @@ } }, { - "id": 2380, + "id": 2388, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -40811,7 +40997,7 @@ } }, { - "id": 2362, + "id": 2370, "name": "username", "kind": 1024, "kindString": "Property", @@ -40834,7 +41020,7 @@ } }, { - "id": 2405, + "id": 2413, "name": "waitForCleanupOnDestroy", "kind": 1024, "kindString": "Property", @@ -40867,7 +41053,7 @@ } }, { - "id": 2360, + "id": 2368, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -40883,7 +41069,7 @@ ], "signatures": [ { - "id": 2361, + "id": 2369, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -40911,50 +41097,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2397, - 2359, + 2405, + 2367, + 2387, + 2389, + 2366, 2379, - 2381, - 2358, - 2371, + 2390, 2382, - 2374, - 2406, - 2394, + 2414, + 2402, + 2412, + 2409, + 2386, + 2400, + 2384, + 2411, 2404, - 2401, + 2380, + 2410, 2378, - 2392, - 2376, - 2403, - 2396, + 2373, + 2398, + 2381, 2372, - 2402, - 2370, + 2401, + 2371, + 2396, + 2383, + 2374, + 2376, + 2397, + 2377, + 2385, 2365, - 2390, - 2373, - 2364, - 2393, - 2363, 2388, - 2375, - 2366, - 2368, - 2389, - 2369, - 2377, - 2357, - 2380, - 2362, - 2405 + 2370, + 2413 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2360 + 2368 ] } ], @@ -40967,7 +41153,7 @@ ] }, { - "id": 3153, + "id": 3161, "name": "EmbedErrorDetailsEvent", "kind": 256, "kindString": "Interface", @@ -40996,7 +41182,7 @@ }, "children": [ { - "id": 3156, + "id": 3164, "name": "code", "kind": 1024, "kindString": "Property", @@ -41007,18 +41193,18 @@ "sources": [ { "fileName": "types.ts", - "line": 8428, + "line": 8497, "character": 4 } ], "type": { "type": "reference", - "id": 3136, + "id": 3144, "name": "EmbedErrorCodes" } }, { - "id": 3154, + "id": 3162, "name": "errorType", "kind": 1024, "kindString": "Property", @@ -41029,18 +41215,18 @@ "sources": [ { "fileName": "types.ts", - "line": 8424, + "line": 8493, "character": 4 } ], "type": { "type": "reference", - "id": 3159, + "id": 3167, "name": "ErrorDetailsTypes" } }, { - "id": 3155, + "id": 3163, "name": "message", "kind": 1024, "kindString": "Property", @@ -41051,7 +41237,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8426, + "line": 8495, "character": 4 } ], @@ -41078,21 +41264,21 @@ "title": "Properties", "kind": 1024, "children": [ - 3156, - 3154, - 3155 + 3164, + 3162, + 3163 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8422, + "line": 8491, "character": 17 } ], "indexSignature": { - "id": 3157, + "id": 3165, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -41102,7 +41288,7 @@ }, "parameters": [ { - "id": 3158, + "id": 3166, "name": "key", "kind": 32768, "flags": {}, @@ -41119,7 +41305,7 @@ } }, { - "id": 2749, + "id": 2757, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -41135,7 +41321,7 @@ }, "children": [ { - "id": 2751, + "id": 2759, "name": "height", "kind": 1024, "kindString": "Property", @@ -41167,7 +41353,7 @@ } }, { - "id": 2752, + "id": 2760, "name": "loading", "kind": 1024, "kindString": "Property", @@ -41203,7 +41389,7 @@ } }, { - "id": 2750, + "id": 2758, "name": "width", "kind": 1024, "kindString": "Property", @@ -41240,9 +41426,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2751, - 2752, - 2750 + 2759, + 2760, + 2758 ] } ], @@ -41254,7 +41440,7 @@ } ], "indexSignature": { - "id": 2753, + "id": 2761, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -41264,7 +41450,7 @@ }, "parameters": [ { - "id": 2754, + "id": 2762, "name": "key", "kind": 32768, "flags": {}, @@ -41298,7 +41484,7 @@ } }, { - "id": 2522, + "id": 2530, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -41314,7 +41500,7 @@ }, "children": [ { - "id": 2534, + "id": 2542, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -41348,7 +41534,7 @@ } }, { - "id": 2566, + "id": 2574, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -41372,27 +41558,27 @@ "sources": [ { "fileName": "types.ts", - "line": 1039, + "line": 1041, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2567, + "id": 2575, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2568, + "id": 2576, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2569, + "id": 2577, "name": "key", "kind": 32768, "flags": {}, @@ -41428,7 +41614,7 @@ } }, { - "id": 2598, + "id": 2606, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -41456,7 +41642,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1754, + "line": 1756, "character": 4 } ], @@ -41470,7 +41656,7 @@ } }, { - "id": 2595, + "id": 2603, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -41494,13 +41680,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1712, + "line": 1714, "character": 4 } ], "type": { "type": "reference", - "id": 2352, + "id": 2360, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -41509,7 +41695,7 @@ } }, { - "id": 2612, + "id": 2620, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -41533,7 +41719,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1992, + "line": 1994, "character": 4 } ], @@ -41547,7 +41733,7 @@ } }, { - "id": 2586, + "id": 2594, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -41579,7 +41765,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1491, + "line": 1493, "character": 4 } ], @@ -41596,7 +41782,7 @@ } }, { - "id": 2570, + "id": 2578, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -41619,13 +41805,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1046, + "line": 1048, "character": 4 } ], "type": { "type": "reference", - "id": 2790, + "id": 2798, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -41634,7 +41820,7 @@ } }, { - "id": 2599, + "id": 2607, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -41662,7 +41848,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1770, + "line": 1772, "character": 4 } ], @@ -41676,7 +41862,7 @@ } }, { - "id": 2524, + "id": 2532, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -41718,7 +41904,7 @@ } }, { - "id": 2579, + "id": 2587, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -41742,7 +41928,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1201, + "line": 1203, "character": 4 } ], @@ -41756,7 +41942,7 @@ } }, { - "id": 2562, + "id": 2570, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -41794,7 +41980,7 @@ } }, { - "id": 2561, + "id": 2569, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -41826,7 +42012,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -41836,7 +42022,7 @@ } }, { - "id": 2574, + "id": 2582, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -41863,7 +42049,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1110, + "line": 1112, "character": 4 } ], @@ -41877,7 +42063,7 @@ } }, { - "id": 2606, + "id": 2614, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -41905,7 +42091,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1888, + "line": 1890, "character": 4 } ], @@ -41919,7 +42105,7 @@ } }, { - "id": 2611, + "id": 2619, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -41947,7 +42133,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1976, + "line": 1978, "character": 4 } ], @@ -41961,7 +42147,7 @@ } }, { - "id": 2600, + "id": 2608, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -41989,7 +42175,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1786, + "line": 1788, "character": 4 } ], @@ -42003,7 +42189,7 @@ } }, { - "id": 2582, + "id": 2590, "name": "enableLinkOverridesV2", "kind": 1024, "kindString": "Property", @@ -42027,7 +42213,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1276, + "line": 1278, "character": 4 } ], @@ -42041,7 +42227,7 @@ } }, { - "id": 2556, + "id": 2564, "name": "enableLiveboardDataCache", "kind": 1024, "kindString": "Property", @@ -42064,7 +42250,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 600, + "line": 605, "character": 4 } ], @@ -42074,7 +42260,7 @@ } }, { - "id": 2549, + "id": 2557, "name": "enableScrollableContainerLazyLoading", "kind": 1024, "kindString": "Property", @@ -42094,7 +42280,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 477, + "line": 482, "character": 4 } ], @@ -42104,7 +42290,7 @@ } }, { - "id": 2553, + "id": 2561, "name": "enableStopAnswerGenerationEmbed", "kind": 1024, "kindString": "Property", @@ -42128,7 +42314,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 540, + "line": 545, "character": 4 } ], @@ -42138,7 +42324,7 @@ } }, { - "id": 2576, + "id": 2584, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -42162,7 +42348,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1166, + "line": 1168, "character": 4 } ], @@ -42176,7 +42362,7 @@ } }, { - "id": 2526, + "id": 2534, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -42213,7 +42399,7 @@ } }, { - "id": 2596, + "id": 2604, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -42237,7 +42423,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1725, + "line": 1727, "character": 4 } ], @@ -42251,7 +42437,7 @@ } }, { - "id": 2597, + "id": 2605, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -42275,7 +42461,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1738, + "line": 1740, "character": 4 } ], @@ -42289,7 +42475,7 @@ } }, { - "id": 2578, + "id": 2586, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -42312,7 +42498,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1177, + "line": 1179, "character": 4 } ], @@ -42326,7 +42512,7 @@ } }, { - "id": 2558, + "id": 2566, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -42356,7 +42542,7 @@ ], "type": { "type": "reference", - "id": 2749, + "id": 2757, "name": "FrameParams" }, "inheritedFrom": { @@ -42365,7 +42551,7 @@ } }, { - "id": 2523, + "id": 2531, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -42399,7 +42585,7 @@ } }, { - "id": 2563, + "id": 2571, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -42407,7 +42593,7 @@ "isOptional": true }, "comment": { - "shortText": "The list of actions to completely remove from the embedded view.\nHidden actions are not visible to the user at all (fully removed from the UI).\nUse this when you want to remove an action entirely.\nTo keep an action visible but non-interactive (grayed out), use {@link disabledActions} instead.", + "shortText": "The list of actions to completely remove from the embedded view.\nHidden actions are not visible to the user at all (fully removed from the UI).\nUse this when you want to remove an action entirely.\nTo keep an action visible but non-interactive (grayed out), use {@link\ndisabledActions} instead.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", "tags": [ { @@ -42427,7 +42613,7 @@ "sources": [ { "fileName": "types.ts", - "line": 980, + "line": 981, "character": 4 } ], @@ -42435,7 +42621,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -42445,7 +42631,7 @@ } }, { - "id": 2541, + "id": 2549, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -42482,7 +42668,7 @@ } }, { - "id": 2609, + "id": 2617, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -42510,7 +42696,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1943, + "line": 1945, "character": 4 } ], @@ -42524,7 +42710,7 @@ } }, { - "id": 2602, + "id": 2610, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -42552,7 +42738,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1824, + "line": 1826, "character": 4 } ], @@ -42566,7 +42752,7 @@ } }, { - "id": 2536, + "id": 2544, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -42600,7 +42786,7 @@ } }, { - "id": 2571, + "id": 2579, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -42624,7 +42810,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1062, + "line": 1064, "character": 4 } ], @@ -42638,7 +42824,7 @@ } }, { - "id": 2592, + "id": 2600, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -42661,7 +42847,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8551, + "line": 8620, "character": 4 } ], @@ -42675,7 +42861,7 @@ } }, { - "id": 2591, + "id": 2599, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -42698,7 +42884,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8534, + "line": 8603, "character": 4 } ], @@ -42715,7 +42901,7 @@ } }, { - "id": 2613, + "id": 2621, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -42739,7 +42925,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2010, + "line": 2012, "character": 4 } ], @@ -42753,7 +42939,7 @@ } }, { - "id": 2545, + "id": 2553, "name": "isContinuousLiveboardPDFEnabled", "kind": 1024, "kindString": "Property", @@ -42761,13 +42947,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" @@ -42777,7 +42967,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 419, + "line": 420, "character": 4 } ], @@ -42787,7 +42977,7 @@ } }, { - "id": 2615, + "id": 2623, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -42811,7 +43001,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2042, + "line": 2044, "character": 4 } ], @@ -42825,7 +43015,7 @@ } }, { - "id": 2547, + "id": 2555, "name": "isGranularXLSXCSVSchedulesEnabled", "kind": 1024, "kindString": "Property", @@ -42833,13 +43023,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" @@ -42849,7 +43043,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 451, + "line": 456, "character": 4 } ], @@ -42859,7 +43053,7 @@ } }, { - "id": 2614, + "id": 2622, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -42883,7 +43077,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2025, + "line": 2027, "character": 4 } ], @@ -42897,7 +43091,7 @@ } }, { - "id": 2607, + "id": 2615, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -42925,7 +43119,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1905, + "line": 1907, "character": 4 } ], @@ -42939,7 +43133,7 @@ } }, { - "id": 2605, + "id": 2613, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -42963,7 +43157,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1871, + "line": 1873, "character": 4 } ], @@ -42977,7 +43171,7 @@ } }, { - "id": 2617, + "id": 2625, "name": "isLiveboardMasterpiecesEnabled", "kind": 1024, "kindString": "Property", @@ -43005,7 +43199,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2074, + "line": 2076, "character": 4 } ], @@ -43019,7 +43213,7 @@ } }, { - "id": 2543, + "id": 2551, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -43056,7 +43250,7 @@ } }, { - "id": 2546, + "id": 2554, "name": "isLiveboardXLSXCSVDownloadEnabled", "kind": 1024, "kindString": "Property", @@ -43064,13 +43258,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" @@ -43080,7 +43278,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 435, + "line": 438, "character": 4 } ], @@ -43090,7 +43288,7 @@ } }, { - "id": 2590, + "id": 2598, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -43110,7 +43308,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8518, + "line": 8587, "character": 4 } ], @@ -43124,7 +43322,7 @@ } }, { - "id": 2544, + "id": 2552, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -43158,7 +43356,7 @@ } }, { - "id": 2601, + "id": 2609, "name": "isThisPeriodInDateFiltersEnabled", "kind": 1024, "kindString": "Property", @@ -43182,7 +43380,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1802, + "line": 1804, "character": 4 } ], @@ -43196,7 +43394,7 @@ } }, { - "id": 2548, + "id": 2556, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -43223,7 +43421,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 467, + "line": 472, "character": 4 } ], @@ -43233,7 +43431,7 @@ } }, { - "id": 2550, + "id": 2558, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -43257,7 +43455,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 500, + "line": 505, "character": 4 } ], @@ -43267,7 +43465,7 @@ } }, { - "id": 2581, + "id": 2589, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -43291,7 +43489,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1245, + "line": 1247, "character": 4 } ], @@ -43305,7 +43503,7 @@ } }, { - "id": 2527, + "id": 2535, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -43339,7 +43537,7 @@ } }, { - "id": 2533, + "id": 2541, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -43373,7 +43571,7 @@ } }, { - "id": 2565, + "id": 2573, "name": "locale", "kind": 1024, "kindString": "Property", @@ -43397,7 +43595,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1015, + "line": 1017, "character": 4 } ], @@ -43411,7 +43609,7 @@ } }, { - "id": 2525, + "id": 2533, "name": "minimumHeight", "kind": 1024, "kindString": "Property", @@ -43448,7 +43646,7 @@ } }, { - "id": 2618, + "id": 2626, "name": "newChartsLibrary", "kind": 1024, "kindString": "Property", @@ -43476,7 +43674,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2090, + "line": 2092, "character": 4 } ], @@ -43490,7 +43688,7 @@ } }, { - "id": 2580, + "id": 2588, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -43514,7 +43712,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1220, + "line": 1222, "character": 4 } ], @@ -43528,7 +43726,7 @@ } }, { - "id": 2535, + "id": 2543, "name": "personalizedViewId", "kind": 1024, "kindString": "Property", @@ -43562,7 +43760,7 @@ } }, { - "id": 2575, + "id": 2583, "name": "preRenderContainer", "kind": 1024, "kindString": "Property", @@ -43586,7 +43784,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1149, + "line": 1151, "character": 4 } ], @@ -43609,7 +43807,7 @@ } }, { - "id": 2573, + "id": 2581, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -43633,7 +43831,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1089, + "line": 1091, "character": 4 } ], @@ -43647,7 +43845,7 @@ } }, { - "id": 2530, + "id": 2538, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -43681,7 +43879,7 @@ } }, { - "id": 2583, + "id": 2591, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -43705,7 +43903,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1292, + "line": 1294, "character": 4 } ], @@ -43719,7 +43917,7 @@ } }, { - "id": 2587, + "id": 2595, "name": "refreshAuthTokenOnNearExpiry", "kind": 1024, "kindString": "Property", @@ -43746,7 +43944,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1505, + "line": 1507, "character": 4 } ], @@ -43760,7 +43958,7 @@ } }, { - "id": 2593, + "id": 2601, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -43784,7 +43982,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1676, + "line": 1678, "character": 4 } ], @@ -43792,7 +43990,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1944, + "id": 1946, "name": "RuntimeFilter" } }, @@ -43802,7 +44000,7 @@ } }, { - "id": 2594, + "id": 2602, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -43826,7 +44024,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1697, + "line": 1699, "character": 4 } ], @@ -43834,7 +44032,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3032, + "id": 3040, "name": "RuntimeParameter" } }, @@ -43844,7 +44042,7 @@ } }, { - "id": 2588, + "id": 2596, "name": "shouldBypassPayloadValidation", "kind": 1024, "kindString": "Property", @@ -43871,7 +44069,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1518, + "line": 1520, "character": 4 } ], @@ -43885,7 +44083,7 @@ } }, { - "id": 2585, + "id": 2593, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -43908,7 +44106,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1312, + "line": 1314, "character": 4 } ], @@ -43922,7 +44120,7 @@ } }, { - "id": 2604, + "id": 2612, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -43950,7 +44148,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1856, + "line": 1858, "character": 4 } ], @@ -43964,7 +44162,7 @@ } }, { - "id": 2610, + "id": 2618, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -43992,7 +44190,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1960, + "line": 1962, "character": 4 } ], @@ -44006,7 +44204,7 @@ } }, { - "id": 2603, + "id": 2611, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -44034,7 +44232,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1840, + "line": 1842, "character": 4 } ], @@ -44048,7 +44246,7 @@ } }, { - "id": 2608, + "id": 2616, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -44076,7 +44274,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1922, + "line": 1924, "character": 4 } ], @@ -44090,7 +44288,7 @@ } }, { - "id": 2616, + "id": 2624, "name": "showMaskedFilterChip", "kind": 1024, "kindString": "Property", @@ -44118,7 +44316,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2058, + "line": 2060, "character": 4 } ], @@ -44132,7 +44330,7 @@ } }, { - "id": 2537, + "id": 2545, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -44166,7 +44364,7 @@ } }, { - "id": 2551, + "id": 2559, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -44189,7 +44387,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 516, + "line": 521, "character": 4 } ], @@ -44199,7 +44397,7 @@ } }, { - "id": 2554, + "id": 2562, "name": "spotterChatConfig", "kind": 1024, "kindString": "Property", @@ -44223,7 +44421,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 558, + "line": 563, "character": 4 } ], @@ -44234,7 +44432,7 @@ } }, { - "id": 2555, + "id": 2563, "name": "spotterViz", "kind": 1024, "kindString": "Property", @@ -44258,18 +44456,18 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 587, + "line": 592, "character": 4 } ], "type": { "type": "reference", - "id": 2619, + "id": 2627, "name": "SpotterVizConfig" } }, { - "id": 2552, + "id": 2560, "name": "updatedSpotterChatPrompt", "kind": 1024, "kindString": "Property", @@ -44297,7 +44495,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 531, + "line": 536, "character": 4 } ], @@ -44307,7 +44505,7 @@ } }, { - "id": 2589, + "id": 2597, "name": "useHostEventsV2", "kind": 1024, "kindString": "Property", @@ -44334,7 +44532,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1532, + "line": 1534, "character": 4 } ], @@ -44348,7 +44546,7 @@ } }, { - "id": 2564, + "id": 2572, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -44356,7 +44554,7 @@ "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this as an allowlist — only the actions listed here will be shown.\nAll other actions will be hidden. Use either this or {@link hiddenActions}, not both.", + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this as an allowlist — only the actions listed here will be shown.\nAll other actions will be hidden. Use either this or {@link hiddenActions}, not\nboth.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", "tags": [ { @@ -44376,7 +44574,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1000, + "line": 1002, "character": 4 } ], @@ -44384,7 +44582,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -44394,7 +44592,7 @@ } }, { - "id": 2542, + "id": 2550, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -44431,7 +44629,7 @@ } }, { - "id": 2531, + "id": 2539, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -44468,7 +44666,7 @@ } }, { - "id": 2529, + "id": 2537, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -44507,88 +44705,88 @@ "title": "Properties", "kind": 1024, "children": [ - 2534, - 2566, - 2598, - 2595, - 2612, - 2586, - 2570, - 2599, - 2524, - 2579, - 2562, - 2561, + 2542, 2574, 2606, - 2611, - 2600, - 2582, - 2556, - 2549, - 2553, - 2576, - 2526, - 2596, - 2597, + 2603, + 2620, + 2594, 2578, - 2558, - 2523, - 2563, - 2541, - 2609, - 2602, - 2536, - 2571, - 2592, - 2591, - 2613, - 2545, - 2615, - 2547, - 2614, 2607, + 2532, + 2587, + 2570, + 2569, + 2582, + 2614, + 2619, + 2608, + 2590, + 2564, + 2557, + 2561, + 2584, + 2534, + 2604, 2605, + 2586, + 2566, + 2531, + 2571, + 2549, 2617, - 2543, - 2546, - 2590, + 2610, 2544, - 2601, - 2548, - 2550, - 2581, - 2527, - 2533, - 2565, - 2525, - 2618, - 2580, + 2579, + 2600, + 2599, + 2621, + 2553, + 2623, + 2555, + 2622, + 2615, + 2613, + 2625, + 2551, + 2554, + 2598, + 2552, + 2609, + 2556, + 2558, + 2589, 2535, - 2575, + 2541, 2573, - 2530, + 2533, + 2626, + 2588, + 2543, 2583, - 2587, + 2581, + 2538, + 2591, + 2595, + 2601, + 2602, + 2596, 2593, - 2594, - 2588, - 2585, - 2604, - 2610, - 2603, - 2608, + 2612, + 2618, + 2611, 2616, - 2537, - 2551, - 2554, - 2555, - 2552, - 2589, - 2564, - 2542, - 2531, - 2529 + 2624, + 2545, + 2559, + 2562, + 2563, + 2560, + 2597, + 2572, + 2550, + 2539, + 2537 ] } ], @@ -44615,7 +44813,7 @@ ] }, { - "id": 1944, + "id": 1946, "name": "RuntimeFilter", "kind": 256, "kindString": "Interface", @@ -44625,7 +44823,7 @@ }, "children": [ { - "id": 1945, + "id": 1947, "name": "columnName", "kind": 1024, "kindString": "Property", @@ -44636,7 +44834,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2304, + "line": 2306, "character": 4 } ], @@ -44646,7 +44844,7 @@ } }, { - "id": 1946, + "id": 1948, "name": "operator", "kind": 1024, "kindString": "Property", @@ -44657,18 +44855,18 @@ "sources": [ { "fileName": "types.ts", - "line": 2308, + "line": 2310, "character": 4 } ], "type": { "type": "reference", - "id": 1948, + "id": 1950, "name": "RuntimeFilterOp" } }, { - "id": 1947, + "id": 1949, "name": "values", "kind": 1024, "kindString": "Property", @@ -44679,7 +44877,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2314, + "line": 2316, "character": 4 } ], @@ -44714,22 +44912,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1945, - 1946, - 1947 + 1947, + 1948, + 1949 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2300, + "line": 2302, "character": 17 } ] }, { - "id": 3032, + "id": 3040, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -44739,7 +44937,7 @@ }, "children": [ { - "id": 3033, + "id": 3041, "name": "name", "kind": 1024, "kindString": "Property", @@ -44750,7 +44948,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2324, + "line": 2326, "character": 4 } ], @@ -44760,7 +44958,7 @@ } }, { - "id": 3034, + "id": 3042, "name": "value", "kind": 1024, "kindString": "Property", @@ -44771,7 +44969,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2328, + "line": 2330, "character": 4 } ], @@ -44799,21 +44997,21 @@ "title": "Properties", "kind": 1024, "children": [ - 3033, - 3034 + 3041, + 3042 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2320, + "line": 2322, "character": 17 } ] }, { - "id": 2471, + "id": 2479, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -44828,7 +45026,7 @@ }, "children": [ { - "id": 2486, + "id": 2494, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -44852,27 +45050,27 @@ "sources": [ { "fileName": "types.ts", - "line": 1039, + "line": 1041, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2487, + "id": 2495, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2488, + "id": 2496, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2489, + "id": 2497, "name": "key", "kind": 32768, "flags": {}, @@ -44908,7 +45106,7 @@ } }, { - "id": 2518, + "id": 2526, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -44936,7 +45134,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1754, + "line": 1756, "character": 4 } ], @@ -44950,7 +45148,7 @@ } }, { - "id": 2515, + "id": 2523, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -44974,13 +45172,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1712, + "line": 1714, "character": 4 } ], "type": { "type": "reference", - "id": 2352, + "id": 2360, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -44989,7 +45187,7 @@ } }, { - "id": 2506, + "id": 2514, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -45021,7 +45219,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1491, + "line": 1493, "character": 4 } ], @@ -45038,7 +45236,7 @@ } }, { - "id": 2490, + "id": 2498, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -45061,13 +45259,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1046, + "line": 1048, "character": 4 } ], "type": { "type": "reference", - "id": 2790, + "id": 2798, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -45076,7 +45274,7 @@ } }, { - "id": 2519, + "id": 2527, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -45104,7 +45302,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1770, + "line": 1772, "character": 4 } ], @@ -45118,7 +45316,7 @@ } }, { - "id": 2473, + "id": 2481, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -45152,7 +45350,7 @@ } }, { - "id": 2472, + "id": 2480, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -45193,7 +45391,7 @@ } }, { - "id": 2499, + "id": 2507, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -45217,7 +45415,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1201, + "line": 1203, "character": 4 } ], @@ -45231,7 +45429,7 @@ } }, { - "id": 2482, + "id": 2490, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -45269,7 +45467,7 @@ } }, { - "id": 2481, + "id": 2489, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -45301,7 +45499,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -45311,7 +45509,7 @@ } }, { - "id": 2494, + "id": 2502, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -45338,7 +45536,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1110, + "line": 1112, "character": 4 } ], @@ -45352,7 +45550,7 @@ } }, { - "id": 2520, + "id": 2528, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -45380,7 +45578,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1786, + "line": 1788, "character": 4 } ], @@ -45394,7 +45592,7 @@ } }, { - "id": 2502, + "id": 2510, "name": "enableLinkOverridesV2", "kind": 1024, "kindString": "Property", @@ -45418,7 +45616,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1276, + "line": 1278, "character": 4 } ], @@ -45432,7 +45630,7 @@ } }, { - "id": 2496, + "id": 2504, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -45456,7 +45654,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1166, + "line": 1168, "character": 4 } ], @@ -45470,7 +45668,7 @@ } }, { - "id": 2516, + "id": 2524, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -45494,7 +45692,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1725, + "line": 1727, "character": 4 } ], @@ -45508,7 +45706,7 @@ } }, { - "id": 2517, + "id": 2525, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -45532,7 +45730,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1738, + "line": 1740, "character": 4 } ], @@ -45546,7 +45744,7 @@ } }, { - "id": 2476, + "id": 2484, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -45580,7 +45778,7 @@ } }, { - "id": 2498, + "id": 2506, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -45603,7 +45801,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1177, + "line": 1179, "character": 4 } ], @@ -45617,7 +45815,7 @@ } }, { - "id": 2478, + "id": 2486, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -45647,7 +45845,7 @@ ], "type": { "type": "reference", - "id": 2749, + "id": 2757, "name": "FrameParams" }, "inheritedFrom": { @@ -45656,7 +45854,7 @@ } }, { - "id": 2483, + "id": 2491, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -45664,7 +45862,7 @@ "isOptional": true }, "comment": { - "shortText": "The list of actions to completely remove from the embedded view.\nHidden actions are not visible to the user at all (fully removed from the UI).\nUse this when you want to remove an action entirely.\nTo keep an action visible but non-interactive (grayed out), use {@link disabledActions} instead.", + "shortText": "The list of actions to completely remove from the embedded view.\nHidden actions are not visible to the user at all (fully removed from the UI).\nUse this when you want to remove an action entirely.\nTo keep an action visible but non-interactive (grayed out), use {@link\ndisabledActions} instead.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", "tags": [ { @@ -45684,7 +45882,7 @@ "sources": [ { "fileName": "types.ts", - "line": 980, + "line": 981, "character": 4 } ], @@ -45692,7 +45890,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -45702,7 +45900,7 @@ } }, { - "id": 2491, + "id": 2499, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -45726,7 +45924,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1062, + "line": 1064, "character": 4 } ], @@ -45740,7 +45938,7 @@ } }, { - "id": 2512, + "id": 2520, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -45763,7 +45961,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8551, + "line": 8620, "character": 4 } ], @@ -45777,7 +45975,7 @@ } }, { - "id": 2511, + "id": 2519, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -45800,7 +45998,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8534, + "line": 8603, "character": 4 } ], @@ -45817,7 +46015,7 @@ } }, { - "id": 2510, + "id": 2518, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -45837,7 +46035,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8518, + "line": 8587, "character": 4 } ], @@ -45851,7 +46049,7 @@ } }, { - "id": 2521, + "id": 2529, "name": "isThisPeriodInDateFiltersEnabled", "kind": 1024, "kindString": "Property", @@ -45875,7 +46073,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1802, + "line": 1804, "character": 4 } ], @@ -45889,7 +46087,7 @@ } }, { - "id": 2501, + "id": 2509, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -45913,7 +46111,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1245, + "line": 1247, "character": 4 } ], @@ -45927,7 +46125,7 @@ } }, { - "id": 2485, + "id": 2493, "name": "locale", "kind": 1024, "kindString": "Property", @@ -45951,7 +46149,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1015, + "line": 1017, "character": 4 } ], @@ -45965,7 +46163,7 @@ } }, { - "id": 2500, + "id": 2508, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -45989,7 +46187,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1220, + "line": 1222, "character": 4 } ], @@ -46003,7 +46201,7 @@ } }, { - "id": 2495, + "id": 2503, "name": "preRenderContainer", "kind": 1024, "kindString": "Property", @@ -46027,7 +46225,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1149, + "line": 1151, "character": 4 } ], @@ -46050,7 +46248,7 @@ } }, { - "id": 2493, + "id": 2501, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -46074,7 +46272,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1089, + "line": 1091, "character": 4 } ], @@ -46088,7 +46286,7 @@ } }, { - "id": 2503, + "id": 2511, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -46112,7 +46310,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1292, + "line": 1294, "character": 4 } ], @@ -46126,7 +46324,7 @@ } }, { - "id": 2507, + "id": 2515, "name": "refreshAuthTokenOnNearExpiry", "kind": 1024, "kindString": "Property", @@ -46153,7 +46351,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1505, + "line": 1507, "character": 4 } ], @@ -46167,7 +46365,7 @@ } }, { - "id": 2513, + "id": 2521, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -46191,7 +46389,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1676, + "line": 1678, "character": 4 } ], @@ -46199,7 +46397,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1944, + "id": 1946, "name": "RuntimeFilter" } }, @@ -46209,7 +46407,7 @@ } }, { - "id": 2514, + "id": 2522, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -46233,7 +46431,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1697, + "line": 1699, "character": 4 } ], @@ -46241,7 +46439,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3032, + "id": 3040, "name": "RuntimeParameter" } }, @@ -46251,7 +46449,7 @@ } }, { - "id": 2475, + "id": 2483, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -46285,7 +46483,7 @@ } }, { - "id": 2508, + "id": 2516, "name": "shouldBypassPayloadValidation", "kind": 1024, "kindString": "Property", @@ -46312,7 +46510,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1518, + "line": 1520, "character": 4 } ], @@ -46326,7 +46524,7 @@ } }, { - "id": 2505, + "id": 2513, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -46349,7 +46547,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1312, + "line": 1314, "character": 4 } ], @@ -46363,7 +46561,7 @@ } }, { - "id": 2509, + "id": 2517, "name": "useHostEventsV2", "kind": 1024, "kindString": "Property", @@ -46390,7 +46588,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1532, + "line": 1534, "character": 4 } ], @@ -46404,7 +46602,7 @@ } }, { - "id": 2474, + "id": 2482, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -46438,7 +46636,7 @@ } }, { - "id": 2484, + "id": 2492, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -46446,7 +46644,7 @@ "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this as an allowlist — only the actions listed here will be shown.\nAll other actions will be hidden. Use either this or {@link hiddenActions}, not both.", + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this as an allowlist — only the actions listed here will be shown.\nAll other actions will be hidden. Use either this or {@link hiddenActions}, not\nboth.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", "tags": [ { @@ -46466,7 +46664,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1000, + "line": 1002, "character": 4 } ], @@ -46474,7 +46672,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -46489,47 +46687,47 @@ "title": "Properties", "kind": 1024, "children": [ - 2486, - 2518, - 2515, - 2506, - 2490, - 2519, - 2473, - 2472, - 2499, - 2482, - 2481, 2494, - 2520, - 2502, - 2496, - 2516, - 2517, - 2476, + 2526, + 2523, + 2514, 2498, - 2478, - 2483, - 2491, - 2512, - 2511, + 2527, + 2481, + 2480, + 2507, + 2490, + 2489, + 2502, + 2528, 2510, - 2521, - 2501, - 2485, - 2500, - 2495, + 2504, + 2524, + 2525, + 2484, + 2506, + 2486, + 2491, + 2499, + 2520, + 2519, + 2518, + 2529, + 2509, 2493, + 2508, 2503, - 2507, + 2501, + 2511, + 2515, + 2521, + 2522, + 2483, + 2516, 2513, - 2514, - 2475, - 2508, - 2505, - 2509, - 2474, - 2484 + 2517, + 2482, + 2492 ] } ], @@ -46552,7 +46750,7 @@ ] }, { - "id": 2407, + "id": 2415, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -46568,7 +46766,7 @@ }, "children": [ { - "id": 2445, + "id": 2453, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -46592,27 +46790,27 @@ "sources": [ { "fileName": "types.ts", - "line": 1039, + "line": 1041, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2446, + "id": 2454, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2447, + "id": 2455, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2448, + "id": 2456, "name": "key", "kind": 32768, "flags": {}, @@ -46648,7 +46846,7 @@ } }, { - "id": 2419, + "id": 2427, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -46682,7 +46880,7 @@ } }, { - "id": 2409, + "id": 2417, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -46716,7 +46914,7 @@ } }, { - "id": 2408, + "id": 2416, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -46750,7 +46948,7 @@ } }, { - "id": 2432, + "id": 2440, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -46778,7 +46976,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1754, + "line": 1756, "character": 4 } ], @@ -46792,7 +46990,7 @@ } }, { - "id": 2422, + "id": 2430, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -46829,7 +47027,7 @@ } }, { - "id": 2429, + "id": 2437, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -46853,13 +47051,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1712, + "line": 1714, "character": 4 } ], "type": { "type": "reference", - "id": 2352, + "id": 2360, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -46868,7 +47066,7 @@ } }, { - "id": 2464, + "id": 2472, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -46900,7 +47098,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1491, + "line": 1493, "character": 4 } ], @@ -46917,7 +47115,7 @@ } }, { - "id": 2449, + "id": 2457, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -46940,13 +47138,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1046, + "line": 1048, "character": 4 } ], "type": { "type": "reference", - "id": 2790, + "id": 2798, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -46955,7 +47153,7 @@ } }, { - "id": 2423, + "id": 2431, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -46993,7 +47191,7 @@ } }, { - "id": 2433, + "id": 2441, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -47021,7 +47219,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1770, + "line": 1772, "character": 4 } ], @@ -47035,7 +47233,7 @@ } }, { - "id": 2415, + "id": 2423, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -47069,7 +47267,7 @@ } }, { - "id": 2414, + "id": 2422, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -47105,7 +47303,7 @@ } }, { - "id": 2458, + "id": 2466, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -47129,7 +47327,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1201, + "line": 1203, "character": 4 } ], @@ -47143,7 +47341,7 @@ } }, { - "id": 2441, + "id": 2449, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -47181,7 +47379,7 @@ } }, { - "id": 2440, + "id": 2448, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -47213,7 +47411,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -47223,7 +47421,7 @@ } }, { - "id": 2453, + "id": 2461, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -47250,7 +47448,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1110, + "line": 1112, "character": 4 } ], @@ -47264,7 +47462,7 @@ } }, { - "id": 2434, + "id": 2442, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -47292,7 +47490,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1786, + "line": 1788, "character": 4 } ], @@ -47306,7 +47504,7 @@ } }, { - "id": 2461, + "id": 2469, "name": "enableLinkOverridesV2", "kind": 1024, "kindString": "Property", @@ -47330,7 +47528,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1276, + "line": 1278, "character": 4 } ], @@ -47344,7 +47542,7 @@ } }, { - "id": 2412, + "id": 2420, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -47378,7 +47576,7 @@ } }, { - "id": 2455, + "id": 2463, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -47402,7 +47600,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1166, + "line": 1168, "character": 4 } ], @@ -47416,7 +47614,7 @@ } }, { - "id": 2430, + "id": 2438, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -47440,7 +47638,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1725, + "line": 1727, "character": 4 } ], @@ -47454,7 +47652,7 @@ } }, { - "id": 2431, + "id": 2439, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -47478,7 +47676,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1738, + "line": 1740, "character": 4 } ], @@ -47492,7 +47690,7 @@ } }, { - "id": 2418, + "id": 2426, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -47526,7 +47724,7 @@ } }, { - "id": 2457, + "id": 2465, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -47549,7 +47747,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1177, + "line": 1179, "character": 4 } ], @@ -47563,7 +47761,7 @@ } }, { - "id": 2424, + "id": 2432, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -47601,7 +47799,7 @@ } }, { - "id": 2413, + "id": 2421, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -47635,7 +47833,7 @@ } }, { - "id": 2437, + "id": 2445, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -47665,7 +47863,7 @@ ], "type": { "type": "reference", - "id": 2749, + "id": 2757, "name": "FrameParams" }, "inheritedFrom": { @@ -47674,7 +47872,7 @@ } }, { - "id": 2442, + "id": 2450, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -47682,7 +47880,7 @@ "isOptional": true }, "comment": { - "shortText": "The list of actions to completely remove from the embedded view.\nHidden actions are not visible to the user at all (fully removed from the UI).\nUse this when you want to remove an action entirely.\nTo keep an action visible but non-interactive (grayed out), use {@link disabledActions} instead.", + "shortText": "The list of actions to completely remove from the embedded view.\nHidden actions are not visible to the user at all (fully removed from the UI).\nUse this when you want to remove an action entirely.\nTo keep an action visible but non-interactive (grayed out), use {@link\ndisabledActions} instead.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", "tags": [ { @@ -47702,7 +47900,7 @@ "sources": [ { "fileName": "types.ts", - "line": 980, + "line": 981, "character": 4 } ], @@ -47710,7 +47908,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -47720,7 +47918,7 @@ } }, { - "id": 2410, + "id": 2418, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -47754,7 +47952,7 @@ } }, { - "id": 2411, + "id": 2419, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -47788,7 +47986,7 @@ } }, { - "id": 2420, + "id": 2428, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -47822,7 +48020,7 @@ } }, { - "id": 2450, + "id": 2458, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -47846,7 +48044,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1062, + "line": 1064, "character": 4 } ], @@ -47860,7 +48058,7 @@ } }, { - "id": 2470, + "id": 2478, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -47883,7 +48081,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8551, + "line": 8620, "character": 4 } ], @@ -47897,7 +48095,7 @@ } }, { - "id": 2469, + "id": 2477, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -47920,7 +48118,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8534, + "line": 8603, "character": 4 } ], @@ -47937,7 +48135,7 @@ } }, { - "id": 2468, + "id": 2476, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -47957,7 +48155,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8518, + "line": 8587, "character": 4 } ], @@ -47971,7 +48169,7 @@ } }, { - "id": 2435, + "id": 2443, "name": "isThisPeriodInDateFiltersEnabled", "kind": 1024, "kindString": "Property", @@ -47995,7 +48193,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1802, + "line": 1804, "character": 4 } ], @@ -48009,7 +48207,7 @@ } }, { - "id": 2460, + "id": 2468, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -48033,7 +48231,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1245, + "line": 1247, "character": 4 } ], @@ -48047,7 +48245,7 @@ } }, { - "id": 2444, + "id": 2452, "name": "locale", "kind": 1024, "kindString": "Property", @@ -48071,7 +48269,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1015, + "line": 1017, "character": 4 } ], @@ -48085,7 +48283,7 @@ } }, { - "id": 2425, + "id": 2433, "name": "newChartsLibrary", "kind": 1024, "kindString": "Property", @@ -48123,7 +48321,7 @@ } }, { - "id": 2459, + "id": 2467, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -48147,7 +48345,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1220, + "line": 1222, "character": 4 } ], @@ -48161,7 +48359,7 @@ } }, { - "id": 2454, + "id": 2462, "name": "preRenderContainer", "kind": 1024, "kindString": "Property", @@ -48185,7 +48383,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1149, + "line": 1151, "character": 4 } ], @@ -48208,7 +48406,7 @@ } }, { - "id": 2452, + "id": 2460, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -48232,7 +48430,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1089, + "line": 1091, "character": 4 } ], @@ -48246,7 +48444,7 @@ } }, { - "id": 2465, + "id": 2473, "name": "refreshAuthTokenOnNearExpiry", "kind": 1024, "kindString": "Property", @@ -48273,7 +48471,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1505, + "line": 1507, "character": 4 } ], @@ -48287,7 +48485,7 @@ } }, { - "id": 2427, + "id": 2435, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -48311,7 +48509,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1676, + "line": 1678, "character": 4 } ], @@ -48319,7 +48517,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1944, + "id": 1946, "name": "RuntimeFilter" } }, @@ -48329,7 +48527,7 @@ } }, { - "id": 2428, + "id": 2436, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -48353,7 +48551,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1697, + "line": 1699, "character": 4 } ], @@ -48361,7 +48559,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3032, + "id": 3040, "name": "RuntimeParameter" } }, @@ -48371,7 +48569,7 @@ } }, { - "id": 2417, + "id": 2425, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -48401,7 +48599,7 @@ } }, { - "id": 2416, + "id": 2424, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -48430,7 +48628,7 @@ } }, { - "id": 2466, + "id": 2474, "name": "shouldBypassPayloadValidation", "kind": 1024, "kindString": "Property", @@ -48457,7 +48655,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1518, + "line": 1520, "character": 4 } ], @@ -48471,7 +48669,7 @@ } }, { - "id": 2463, + "id": 2471, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -48494,7 +48692,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1312, + "line": 1314, "character": 4 } ], @@ -48508,7 +48706,7 @@ } }, { - "id": 2467, + "id": 2475, "name": "useHostEventsV2", "kind": 1024, "kindString": "Property", @@ -48535,7 +48733,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1532, + "line": 1534, "character": 4 } ], @@ -48549,7 +48747,7 @@ } }, { - "id": 2421, + "id": 2429, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -48579,7 +48777,7 @@ } }, { - "id": 2443, + "id": 2451, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -48587,7 +48785,7 @@ "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this as an allowlist — only the actions listed here will be shown.\nAll other actions will be hidden. Use either this or {@link hiddenActions}, not both.", + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this as an allowlist — only the actions listed here will be shown.\nAll other actions will be hidden. Use either this or {@link hiddenActions}, not\nboth.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", "tags": [ { @@ -48607,7 +48805,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1000, + "line": 1002, "character": 4 } ], @@ -48615,7 +48813,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -48625,7 +48823,7 @@ } }, { - "id": 2426, + "id": 2434, "name": "visualOverrides", "kind": 1024, "kindString": "Property", @@ -48650,7 +48848,7 @@ ], "type": { "type": "reference", - "id": 3164, + "id": 3172, "name": "VisualizationOverrides" } } @@ -48660,60 +48858,60 @@ "title": "Properties", "kind": 1024, "children": [ - 2445, - 2419, - 2409, - 2408, - 2432, - 2422, - 2429, - 2464, - 2449, - 2423, - 2433, - 2415, - 2414, - 2458, - 2441, - 2440, 2453, - 2434, - 2461, - 2412, - 2455, + 2427, + 2417, + 2416, + 2440, 2430, - 2431, - 2418, - 2457, - 2424, - 2413, 2437, + 2472, + 2457, + 2431, + 2441, + 2423, + 2422, + 2466, + 2449, + 2448, + 2461, 2442, - 2410, - 2411, + 2469, 2420, + 2463, + 2438, + 2439, + 2426, + 2465, + 2432, + 2421, + 2445, 2450, - 2470, - 2469, + 2418, + 2419, + 2428, + 2458, + 2478, + 2477, + 2476, + 2443, 2468, - 2435, - 2460, - 2444, - 2425, - 2459, - 2454, 2452, - 2465, - 2427, - 2428, - 2417, - 2416, - 2466, - 2463, + 2433, 2467, - 2421, - 2443, - 2426 + 2462, + 2460, + 2473, + 2435, + 2436, + 2425, + 2424, + 2474, + 2471, + 2475, + 2429, + 2451, + 2434 ] } ], @@ -48746,14 +48944,14 @@ ] }, { - "id": 1913, + "id": 1915, "name": "SessionInterface", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1916, + "id": 1918, "name": "acSession", "kind": 1024, "kindString": "Property", @@ -48768,14 +48966,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1917, + "id": 1919, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1919, + "id": 1921, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -48793,7 +48991,7 @@ } }, { - "id": 1918, + "id": 1920, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -48816,8 +49014,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1919, - 1918 + 1921, + 1920 ] } ] @@ -48825,7 +49023,7 @@ } }, { - "id": 1915, + "id": 1917, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -48843,7 +49041,7 @@ } }, { - "id": 1914, + "id": 1916, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -48866,9 +49064,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1916, - 1915, - 1914 + 1918, + 1917, + 1916 ] } ], @@ -48921,7 +49119,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1039, + "line": 1041, "character": 4 } ], @@ -49009,7 +49207,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1491, + "line": 1493, "character": 4 } ], @@ -49049,13 +49247,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1046, + "line": 1048, "character": 4 } ], "type": { "type": "reference", - "id": 2790, + "id": 2798, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -49088,7 +49286,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1201, + "line": 1203, "character": 4 } ], @@ -49172,7 +49370,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -49209,7 +49407,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1110, + "line": 1112, "character": 4 } ], @@ -49247,7 +49445,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1276, + "line": 1278, "character": 4 } ], @@ -49285,7 +49483,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1166, + "line": 1168, "character": 4 } ], @@ -49322,7 +49520,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1177, + "line": 1179, "character": 4 } ], @@ -49366,7 +49564,7 @@ ], "type": { "type": "reference", - "id": 2749, + "id": 2757, "name": "FrameParams" }, "inheritedFrom": { @@ -49383,7 +49581,7 @@ "isOptional": true }, "comment": { - "shortText": "The list of actions to completely remove from the embedded view.\nHidden actions are not visible to the user at all (fully removed from the UI).\nUse this when you want to remove an action entirely.\nTo keep an action visible but non-interactive (grayed out), use {@link disabledActions} instead.", + "shortText": "The list of actions to completely remove from the embedded view.\nHidden actions are not visible to the user at all (fully removed from the UI).\nUse this when you want to remove an action entirely.\nTo keep an action visible but non-interactive (grayed out), use {@link\ndisabledActions} instead.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", "tags": [ { @@ -49403,7 +49601,7 @@ "sources": [ { "fileName": "types.ts", - "line": 980, + "line": 981, "character": 4 } ], @@ -49411,7 +49609,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -49445,7 +49643,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1062, + "line": 1064, "character": 4 } ], @@ -49482,7 +49680,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8551, + "line": 8620, "character": 4 } ], @@ -49519,7 +49717,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8534, + "line": 8603, "character": 4 } ], @@ -49556,7 +49754,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8518, + "line": 8587, "character": 4 } ], @@ -49594,7 +49792,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1245, + "line": 1247, "character": 4 } ], @@ -49632,7 +49830,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1015, + "line": 1017, "character": 4 } ], @@ -49670,7 +49868,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1220, + "line": 1222, "character": 4 } ], @@ -49708,7 +49906,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1149, + "line": 1151, "character": 4 } ], @@ -49755,7 +49953,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1089, + "line": 1091, "character": 4 } ], @@ -49796,7 +49994,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1505, + "line": 1507, "character": 4 } ], @@ -49837,7 +50035,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1518, + "line": 1520, "character": 4 } ], @@ -49874,7 +50072,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1312, + "line": 1314, "character": 4 } ], @@ -49915,7 +50113,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1532, + "line": 1534, "character": 4 } ], @@ -49937,7 +50135,7 @@ "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this as an allowlist — only the actions listed here will be shown.\nAll other actions will be hidden. Use either this or {@link hiddenActions}, not both.", + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this as an allowlist — only the actions listed here will be shown.\nAll other actions will be hidden. Use either this or {@link hiddenActions}, not\nboth.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", "tags": [ { @@ -49957,7 +50155,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1000, + "line": 1002, "character": 4 } ], @@ -49965,7 +50163,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -50107,7 +50305,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 138, + "line": 150, "character": 4 } ], @@ -50136,7 +50334,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 107, + "line": 119, "character": 4 } ], @@ -50170,7 +50368,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 123, + "line": 135, "character": 4 } ], @@ -50200,7 +50398,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 130, + "line": 142, "character": 4 } ], @@ -50223,7 +50421,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 115, + "line": 127, "character": 4 } ], @@ -50249,7 +50447,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 99, + "line": 111, "character": 17 } ] @@ -50295,7 +50493,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1039, + "line": 1041, "character": 4 } ], @@ -50383,7 +50581,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1491, + "line": 1493, "character": 4 } ], @@ -50423,13 +50621,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1046, + "line": 1048, "character": 4 } ], "type": { "type": "reference", - "id": 2790, + "id": 2798, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -50466,7 +50664,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 199, + "line": 211, "character": 4 } ], @@ -50500,7 +50698,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1201, + "line": 1203, "character": 4 } ], @@ -50538,7 +50736,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 169, + "line": 181, "character": 4 } ], @@ -50618,7 +50816,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -50655,7 +50853,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1110, + "line": 1112, "character": 4 } ], @@ -50693,7 +50891,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1276, + "line": 1278, "character": 4 } ], @@ -50735,7 +50933,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 328, + "line": 340, "character": 4 } ], @@ -50769,7 +50967,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 318, + "line": 330, "character": 4 } ], @@ -50803,7 +51001,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1166, + "line": 1168, "character": 4 } ], @@ -50841,7 +51039,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 263, + "line": 275, "character": 4 } ], @@ -50875,7 +51073,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 294, + "line": 306, "character": 4 } ], @@ -50908,7 +51106,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1177, + "line": 1179, "character": 4 } ], @@ -50952,7 +51150,7 @@ ], "type": { "type": "reference", - "id": 2749, + "id": 2757, "name": "FrameParams" }, "inheritedFrom": { @@ -50969,7 +51167,7 @@ "isOptional": true }, "comment": { - "shortText": "The list of actions to completely remove from the embedded view.\nHidden actions are not visible to the user at all (fully removed from the UI).\nUse this when you want to remove an action entirely.\nTo keep an action visible but non-interactive (grayed out), use {@link disabledActions} instead.", + "shortText": "The list of actions to completely remove from the embedded view.\nHidden actions are not visible to the user at all (fully removed from the UI).\nUse this when you want to remove an action entirely.\nTo keep an action visible but non-interactive (grayed out), use {@link\ndisabledActions} instead.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", "tags": [ { @@ -50989,7 +51187,7 @@ "sources": [ { "fileName": "types.ts", - "line": 980, + "line": 981, "character": 4 } ], @@ -50997,7 +51195,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -51031,7 +51229,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 230, + "line": 242, "character": 4 } ], @@ -51065,7 +51263,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 183, + "line": 195, "character": 4 } ], @@ -51099,7 +51297,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1062, + "line": 1064, "character": 4 } ], @@ -51136,7 +51334,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8551, + "line": 8620, "character": 4 } ], @@ -51173,7 +51371,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8534, + "line": 8603, "character": 4 } ], @@ -51210,7 +51408,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8518, + "line": 8587, "character": 4 } ], @@ -51248,7 +51446,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1245, + "line": 1247, "character": 4 } ], @@ -51286,7 +51484,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1015, + "line": 1017, "character": 4 } ], @@ -51324,7 +51522,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1220, + "line": 1222, "character": 4 } ], @@ -51362,7 +51560,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1149, + "line": 1151, "character": 4 } ], @@ -51409,7 +51607,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1089, + "line": 1091, "character": 4 } ], @@ -51450,7 +51648,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1505, + "line": 1507, "character": 4 } ], @@ -51488,7 +51686,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 251, + "line": 263, "character": 4 } ], @@ -51496,7 +51694,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1944, + "id": 1946, "name": "RuntimeFilter" } } @@ -51526,7 +51724,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 282, + "line": 294, "character": 4 } ], @@ -51534,7 +51732,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3032, + "id": 3040, "name": "RuntimeParameter" } } @@ -51553,7 +51751,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 154, + "line": 166, "character": 4 } ], @@ -51590,7 +51788,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1518, + "line": 1520, "character": 4 } ], @@ -51627,7 +51825,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1312, + "line": 1314, "character": 4 } ], @@ -51665,7 +51863,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 215, + "line": 227, "character": 4 } ], @@ -51699,7 +51897,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 367, + "line": 379, "character": 4 } ], @@ -51734,7 +51932,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 349, + "line": 361, "character": 4 } ], @@ -51773,7 +51971,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 309, + "line": 321, "character": 4 } ], @@ -51810,7 +52008,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1532, + "line": 1534, "character": 4 } ], @@ -51832,7 +52030,7 @@ "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this as an allowlist — only the actions listed here will be shown.\nAll other actions will be hidden. Use either this or {@link hiddenActions}, not both.", + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this as an allowlist — only the actions listed here will be shown.\nAll other actions will be hidden. Use either this or {@link hiddenActions}, not\nboth.", "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", "tags": [ { @@ -51852,7 +52050,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1000, + "line": 1002, "character": 4 } ], @@ -51860,7 +52058,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2176, + "id": 2178, "name": "Action" } }, @@ -51881,7 +52079,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 150, + "line": 162, "character": 4 } ], @@ -51944,7 +52142,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 145, + "line": 157, "character": 17 } ], @@ -51967,7 +52165,7 @@ "extendedBy": [ { "type": "reference", - "id": 1528, + "id": 1530, "name": "ConversationViewConfig" } ] @@ -52025,6 +52223,72 @@ "name": "boolean" } }, + { + "id": 1528, + "name": "spotterAnalystLabel", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Custom label text for the Spotter Analyst section in the sidebar.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.51.0 | ThoughtSpot: 26.8.0.cl" + }, + { + "tag": "default", + "text": "Analyst\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 97, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1529, + "name": "spotterAnalystsLabel", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Custom label text for the Spotter Analysts section in the sidebar.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.51.0 | ThoughtSpot: 26.8.0.cl" + }, + { + "tag": "default", + "text": "Analysts\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 103, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, { "id": 1525, "name": "spotterBestPracticesLabel", @@ -52330,6 +52594,8 @@ "kind": 1024, "children": [ 1517, + 1528, + 1529, 1525, 1521, 1520, @@ -52352,7 +52618,7 @@ ] }, { - "id": 2619, + "id": 2627, "name": "SpotterVizConfig", "kind": 256, "kindString": "Interface", @@ -52376,7 +52642,7 @@ }, "children": [ { - "id": 2621, + "id": 2629, "name": "brandHeadline", "kind": 1024, "kindString": "Property", @@ -52409,7 +52675,7 @@ } }, { - "id": 2620, + "id": 2628, "name": "brandName", "kind": 1024, "kindString": "Property", @@ -52442,7 +52708,7 @@ } }, { - "id": 2623, + "id": 2631, "name": "customStarterPrompts", "kind": 1024, "kindString": "Property", @@ -52469,13 +52735,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2628, + "id": 2636, "name": "SpotterVizStarterPrompt" } } }, { - "id": 2624, + "id": 2632, "name": "description", "kind": 1024, "kindString": "Property", @@ -52504,7 +52770,7 @@ } }, { - "id": 2622, + "id": 2630, "name": "hideStarterPrompts", "kind": 1024, "kindString": "Property", @@ -52537,7 +52803,7 @@ } }, { - "id": 2625, + "id": 2633, "name": "inputChatPlaceholder", "kind": 1024, "kindString": "Property", @@ -52566,7 +52832,7 @@ } }, { - "id": 2626, + "id": 2634, "name": "loaderHeadline", "kind": 1024, "kindString": "Property", @@ -52595,7 +52861,7 @@ } }, { - "id": 2627, + "id": 2635, "name": "loaderTips", "kind": 1024, "kindString": "Property", @@ -52622,7 +52888,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2632, + "id": 2640, "name": "SpotterVizLoaderTip" } } @@ -52633,14 +52899,14 @@ "title": "Properties", "kind": 1024, "children": [ - 2621, - 2620, - 2623, - 2624, - 2622, - 2625, - 2626, - 2627 + 2629, + 2628, + 2631, + 2632, + 2630, + 2633, + 2634, + 2635 ] } ], @@ -52653,7 +52919,7 @@ ] }, { - "id": 2632, + "id": 2640, "name": "SpotterVizLoaderTip", "kind": 256, "kindString": "Interface", @@ -52673,7 +52939,7 @@ }, "children": [ { - "id": 2633, + "id": 2641, "name": "label", "kind": 1024, "kindString": "Property", @@ -52694,7 +52960,7 @@ } }, { - "id": 2634, + "id": 2642, "name": "text", "kind": 1024, "kindString": "Property", @@ -52720,8 +52986,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2633, - 2634 + 2641, + 2642 ] } ], @@ -52734,7 +53000,7 @@ ] }, { - "id": 2628, + "id": 2636, "name": "SpotterVizStarterPrompt", "kind": 256, "kindString": "Interface", @@ -52754,7 +53020,7 @@ }, "children": [ { - "id": 2630, + "id": 2638, "name": "displayText", "kind": 1024, "kindString": "Property", @@ -52775,7 +53041,7 @@ } }, { - "id": 2631, + "id": 2639, "name": "fullPrompt", "kind": 1024, "kindString": "Property", @@ -52796,7 +53062,7 @@ } }, { - "id": 2629, + "id": 2637, "name": "id", "kind": 1024, "kindString": "Property", @@ -52822,9 +53088,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2630, - 2631, - 2629 + 2638, + 2639, + 2637 ] } ], @@ -52837,14 +53103,14 @@ ] }, { - "id": 1920, + "id": 1922, "name": "UnderlyingDataPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1921, + "id": 1923, "name": "columnId", "kind": 1024, "kindString": "Property", @@ -52862,7 +53128,7 @@ } }, { - "id": 1922, + "id": 1924, "name": "dataValue", "kind": 1024, "kindString": "Property", @@ -52885,8 +53151,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1921, - 1922 + 1923, + 1924 ] } ], @@ -52899,7 +53165,7 @@ ] }, { - "id": 3164, + "id": 3172, "name": "VisualizationOverrides", "kind": 256, "kindString": "Interface", @@ -52919,7 +53185,7 @@ }, "children": [ { - "id": 3165, + "id": 3173, "name": "chart", "kind": 1024, "kindString": "Property", @@ -52932,7 +53198,7 @@ "sources": [ { "fileName": "types.ts", - "line": 9044, + "line": 9113, "character": 4 } ], @@ -52942,7 +53208,7 @@ } }, { - "id": 3166, + "id": 3174, "name": "table", "kind": 1024, "kindString": "Property", @@ -52955,7 +53221,7 @@ "sources": [ { "fileName": "types.ts", - "line": 9046, + "line": 9115, "character": 4 } ], @@ -52970,28 +53236,28 @@ "title": "Properties", "kind": 1024, "children": [ - 3165, - 3166 + 3173, + 3174 ] } ], "sources": [ { "fileName": "types.ts", - "line": 9042, + "line": 9111, "character": 17 } ] }, { - "id": 3071, + "id": 3079, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 3072, + "id": 3080, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -52999,7 +53265,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8039, + "line": 8108, "character": 4 } ], @@ -53012,7 +53278,7 @@ } }, { - "id": 3073, + "id": 3081, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -53020,7 +53286,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8040, + "line": 8109, "character": 4 } ], @@ -53038,21 +53304,21 @@ "title": "Properties", "kind": 1024, "children": [ - 3072, - 3073 + 3080, + 3081 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8038, + "line": 8107, "character": 17 } ] }, { - "id": 2803, + "id": 2811, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -53062,7 +53328,7 @@ }, "children": [ { - "id": 2805, + "id": 2813, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -53092,20 +53358,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2806, + "id": 2814, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2807, + "id": 2815, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2808, + "id": 2816, "name": "selector", "kind": 32768, "flags": {}, @@ -53118,7 +53384,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2809, + "id": 2817, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -53131,14 +53397,14 @@ } ], "indexSignature": { - "id": 2810, + "id": 2818, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2811, + "id": 2819, "name": "declaration", "kind": 32768, "flags": {}, @@ -53160,7 +53426,7 @@ } }, { - "id": 2804, + "id": 2812, "name": "variables", "kind": 1024, "kindString": "Property", @@ -53179,7 +53445,7 @@ ], "type": { "type": "reference", - "id": 2812, + "id": 2820, "name": "CustomCssVariables" } } @@ -53189,8 +53455,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2805, - 2804 + 2813, + 2812 ] } ], @@ -53495,7 +53761,7 @@ ] }, { - "id": 3163, + "id": 3171, "name": "AutoMCPFrameRendererViewConfig", "kind": 4194304, "kindString": "Type alias", @@ -53507,7 +53773,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1549, + "line": 1551, "character": 12 } ], @@ -53552,7 +53818,7 @@ } }, { - "id": 2773, + "id": 2781, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -53579,7 +53845,7 @@ } }, { - "id": 2777, + "id": 2785, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -53587,14 +53853,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2127, + "line": 2129, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2778, + "id": 2786, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -53611,13 +53877,13 @@ "sources": [ { "fileName": "types.ts", - "line": 2127, + "line": 2129, "character": 30 } ], "signatures": [ { - "id": 2779, + "id": 2787, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -53627,19 +53893,19 @@ }, "parameters": [ { - "id": 2780, + "id": 2788, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2785, + "id": 2793, "name": "MessagePayload" } }, { - "id": 2781, + "id": 2789, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -53649,7 +53915,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2782, + "id": 2790, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -53657,13 +53923,13 @@ "sources": [ { "fileName": "types.ts", - "line": 2134, + "line": 2136, "character": 16 } ], "signatures": [ { - "id": 2783, + "id": 2791, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -53673,7 +53939,7 @@ }, "parameters": [ { - "id": 2784, + "id": 2792, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -53704,7 +53970,7 @@ } }, { - "id": 2774, + "id": 2782, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -53721,21 +53987,21 @@ "sources": [ { "fileName": "types.ts", - "line": 2116, + "line": 2118, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2775, + "id": 2783, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2776, + "id": 2784, "name": "start", "kind": 1024, "kindString": "Property", @@ -53748,7 +54014,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2121, + "line": 2123, "character": 4 } ], @@ -53763,14 +54029,14 @@ "title": "Properties", "kind": 1024, "children": [ - 2776 + 2784 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2116, + "line": 2118, "character": 29 } ] @@ -53778,7 +54044,7 @@ } }, { - "id": 2785, + "id": 2793, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -53795,21 +54061,21 @@ "sources": [ { "fileName": "types.ts", - "line": 2103, + "line": 2105, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2786, + "id": 2794, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2788, + "id": 2796, "name": "data", "kind": 1024, "kindString": "Property", @@ -53817,7 +54083,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2107, + "line": 2109, "character": 4 } ], @@ -53827,7 +54093,7 @@ } }, { - "id": 2789, + "id": 2797, "name": "status", "kind": 1024, "kindString": "Property", @@ -53837,7 +54103,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2109, + "line": 2111, "character": 4 } ], @@ -53847,7 +54113,7 @@ } }, { - "id": 2787, + "id": 2795, "name": "type", "kind": 1024, "kindString": "Property", @@ -53855,7 +54121,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2105, + "line": 2107, "character": 4 } ], @@ -53870,16 +54136,16 @@ "title": "Properties", "kind": 1024, "children": [ - 2788, - 2789, - 2787 + 2796, + 2797, + 2795 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2103, + "line": 2105, "character": 29 } ] @@ -53937,7 +54203,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1836, + "id": 1838, "name": "AnswerService" } } @@ -54199,7 +54465,7 @@ ], "type": { "type": "reference", - "id": 1836, + "id": 1838, "name": "AnswerService" } }, @@ -54286,7 +54552,7 @@ }, "type": { "type": "reference", - "id": 2356, + "id": 2364, "name": "EmbedConfig" } } @@ -54386,14 +54652,14 @@ }, "type": { "type": "reference", - "id": 2356, + "id": 2364, "name": "EmbedConfig" } } ], "type": { "type": "reference", - "id": 1783, + "id": 1785, "name": "AuthEventEmitter" } } @@ -54533,7 +54799,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2744, + "id": 2752, "name": "PrefetchFeatures" } } @@ -54661,7 +54927,7 @@ ] }, { - "id": 3209, + "id": 3217, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -54677,7 +54943,7 @@ ], "signatures": [ { - "id": 3210, + "id": 3218, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -54707,7 +54973,7 @@ ] }, { - "id": 3211, + "id": 3219, "name": "startAutoMCPFrameRenderer", "kind": 64, "kindString": "Function", @@ -54721,7 +54987,7 @@ ], "signatures": [ { - "id": 3212, + "id": 3220, "name": "startAutoMCPFrameRenderer", "kind": 4096, "kindString": "Call signature", @@ -54743,7 +55009,7 @@ }, "parameters": [ { - "id": 3213, + "id": 3221, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", @@ -54753,7 +55019,7 @@ }, "type": { "type": "reference", - "id": 3163, + "id": 3171, "name": "AutoMCPFrameRendererViewConfig" }, "defaultValue": "{}" @@ -54931,7 +55197,7 @@ ] }, { - "id": 3042, + "id": 3050, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -54945,7 +55211,7 @@ ], "signatures": [ { - "id": 3043, + "id": 3051, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -54955,7 +55221,7 @@ }, "parameters": [ { - "id": 3044, + "id": 3052, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -54967,7 +55233,7 @@ } }, { - "id": 3045, + "id": 3053, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -54978,7 +55244,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3046, + "id": 3054, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -55001,51 +55267,51 @@ "title": "Enumerations", "kind": 4, "children": [ - 2176, - 1781, - 1766, - 1773, - 1932, - 3172, - 3175, - 3179, - 2352, - 2166, + 2178, + 1783, + 1768, + 1775, + 1934, + 3180, + 3183, + 3187, + 2360, + 2168, + 3135, + 3131, + 3203, 3127, - 3123, - 3195, - 3119, - 2172, - 3136, - 1964, - 3159, - 2755, - 3064, - 3058, - 2766, - 2080, - 3132, + 2174, + 3144, + 1966, 3167, - 3068, - 3111, - 3035, - 1923, - 2744, - 3062, - 1948, - 3206, - 3202, - 3094 + 2763, + 3072, + 3066, + 2774, + 2082, + 3140, + 3175, + 3076, + 3119, + 3043, + 1925, + 2752, + 3070, + 1950, + 3214, + 3210, + 3102 ] }, { "title": "Classes", "kind": 128, "children": [ - 1836, + 1838, 903, 1241, - 1580, + 1582, 655, 254, 58, @@ -55057,34 +55323,34 @@ "title": "Interfaces", "kind": 256, "children": [ - 2635, - 1783, + 2643, + 1785, 1204, - 1528, - 3074, - 2812, - 2800, - 2790, - 2356, - 3153, - 2749, - 2522, - 1944, - 3032, - 2471, - 2407, - 1913, + 1530, + 3082, + 2820, + 2808, + 2798, + 2364, + 3161, + 2757, + 2530, + 1946, + 3040, + 2479, + 2415, + 1915, 1167, 1510, 1458, 1516, - 2619, - 2632, - 2628, - 1920, - 3164, - 3071, - 2803, + 2627, + 2640, + 2636, + 1922, + 3172, + 3079, + 2811, 21, 28 ] @@ -55093,11 +55359,11 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 3163, - 2773, - 2777, - 2774, - 2785 + 3171, + 2781, + 2785, + 2782, + 2793 ] }, { @@ -55114,10 +55380,10 @@ 4, 7, 25, - 3209, - 3211, + 3217, + 3219, 40, - 3042 + 3050 ] } ],