From b02be4632ceb9a8a06f035f8f26913b9a07adce4 Mon Sep 17 00:00:00 2001 From: Justin Mathew <42416647+sastaachar@users.noreply.github.com> Date: Tue, 16 Sep 2025 17:27:13 +0530 Subject: [PATCH 01/31] SCAL-270176 : don't pre render if already present on screen (#300) --- src/embed/liveboard.spec.ts | 91 +++++++++++++++++++++++++++++++++---- src/embed/ts-embed.ts | 8 +++- src/react/index.tsx | 6 ++- 3 files changed, 92 insertions(+), 13 deletions(-) diff --git a/src/embed/liveboard.spec.ts b/src/embed/liveboard.spec.ts index 92b014d95..1849edf2e 100644 --- a/src/embed/liveboard.spec.ts +++ b/src/embed/liveboard.spec.ts @@ -41,6 +41,16 @@ const thoughtSpotHost = 'tshost'; const prefixParams = '&isLiveboardEmbed=true'; const prefixParamsVizEmbed = '&isLiveboardEmbed=true&isVizEmbed=true'; +const mockGetSessionInfo = (mockSessionInfo?: any) => { + jest.spyOn(SessionInfoService, 'getSessionInfo').mockResolvedValue(mockSessionInfo || { + releaseVersion: '1.0.0', + userGUID: '1234567890', + currentOrgId: 1, + privileges: [], + mixpanelToken: '1234567890', + }) +}; + beforeAll(() => { init({ thoughtSpotHost, @@ -646,6 +656,8 @@ describe('Liveboard/viz embed tests', () => { test('navigateToLiveboard should trigger the navigate event with the correct path', async (done) => { mockMessageChannel(); + // mock getSessionInfo + mockGetSessionInfo(); const liveboardEmbed = new LiveboardEmbed(getRootEl(), { ...defaultViewConfig, } as LiveboardViewConfig); @@ -656,16 +668,24 @@ describe('Liveboard/viz embed tests', () => { postMessageToParent(iframe.contentWindow, { type: EmbedEvent.APP_INIT, }); + postMessageToParent(iframe.contentWindow, { + type: EmbedEvent.AuthInit, + }); + liveboardEmbed.navigateToLiveboard('lb1', 'viz1'); }); + executeAfterWait(() => { - liveboardEmbed.navigateToLiveboard('lb1', 'viz1'); expect(onSpy).toHaveBeenCalledWith(HostEvent.Navigate, 'embed/viz/lb1/viz1'); done(); - }); + }, 1002); }); test('navigateToLiveboard with preRender', async (done) => { mockMessageChannel(); + + // mock getSessionInfo + mockGetSessionInfo(); + const liveboardEmbed = new LiveboardEmbed(getRootEl(), { ...defaultViewConfig, preRenderId: 'test', @@ -677,12 +697,15 @@ describe('Liveboard/viz embed tests', () => { postMessageToParent(iframe.contentWindow, { type: EmbedEvent.APP_INIT, }); + postMessageToParent(iframe.contentWindow, { + type: EmbedEvent.AuthInit, + }); }); executeAfterWait(() => { liveboardEmbed.navigateToLiveboard('lb1', 'viz1'); expect(onSpy).toHaveBeenCalledWith(HostEvent.Navigate, 'embed/viz/lb1/viz1'); done(); - }); + }, 1002); }); test('should set runtime parametere values in url params', async () => { const liveboardEmbed = new LiveboardEmbed(getRootEl(), { @@ -875,13 +898,7 @@ describe('Liveboard/viz embed tests', () => { preRenderId: testPreRenderId, }); - jest.spyOn(SessionInfoService, 'getSessionInfo').mockResolvedValue({ - releaseVersion: '1.0.0', - userGUID: '1234567890', - currentOrgId: 1, - privileges: [], - mixpanelToken: '1234567890', - }); + mockGetSessionInfo(); let resizeObserverCb: any; (window as any).ResizeObserver = window.ResizeObserver || @@ -930,6 +947,60 @@ describe('Liveboard/viz embed tests', () => { done(); }, 1005); }); + + + test('should replace existing preRender when replaceExistingPreRender is true', async () => { + const testPreRenderId = 'testReplacePreRender'; + + // Stub ResizeObserver for JSDOM + (window as any).ResizeObserver = (window as any).ResizeObserver + || jest.fn().mockImplementation(() => ({ + disconnect: jest.fn(), + observe: jest.fn(), + unobserve: jest.fn(), + })); + + // Create initial embed and show preRender (this will create the + // preRender wrapper/child) + const embedA = new LiveboardEmbed(getRootEl(), { + preRenderId: testPreRenderId, + }); + + await embedA.showPreRender(); + + await waitFor(() => !!getIFrameEl()); + + const ids = embedA.getPreRenderIds(); + const oldWrapper = document.getElementById(ids.wrapper); + const oldChild = document.getElementById(ids.child); + + const tsKey = '__tsEmbed'; + expect((oldWrapper as any)[tsKey]).toBe(embedA); + + // Create a new embed instance and preRender with + // replaceExistingPreRender = true + const embedB = new LiveboardEmbed(getRootEl(), { + preRenderId: testPreRenderId, + }); + const prerenderGenericSpy = jest.spyOn(embedB, 'prerenderGeneric'); + + await embedB.preRender(false, true); + + await waitFor(() => (document.getElementById(ids.wrapper) as any)?.[tsKey] === embedB); + + const newWrapper = document.getElementById(ids.wrapper); + const newChild = document.getElementById(ids.child); + + // Should have called prerenderGeneric for the new embed instance + expect(prerenderGenericSpy).toHaveBeenCalledTimes(1); + + // Wrapper should be replaced (new wrapper element), child iframe + // may be reused + expect(newWrapper).not.toBe(oldWrapper); + + // __tsEmbed on wrapper should now point to the new embed instance + expect((newWrapper as any)[tsKey]).toBe(embedB); + }); }); describe('LazyLoadingForFullHeight functionality', () => { diff --git a/src/embed/ts-embed.ts b/src/embed/ts-embed.ts index 546cb2228..fd00a8070 100644 --- a/src/embed/ts-embed.ts +++ b/src/embed/ts-embed.ts @@ -1279,13 +1279,19 @@ export class TsEmbed { * Creates the preRender shell * @param showPreRenderByDefault - Show the preRender after render, hidden by default */ - public async preRender(showPreRenderByDefault = false): Promise { + public async preRender(showPreRenderByDefault = false, replaceExistingPreRender = false): Promise { if (!this.viewConfig.preRenderId) { logger.error(ERROR_MESSAGE.PRERENDER_ID_MISSING); return this; } this.isPreRendered = true; this.showPreRenderByDefault = showPreRenderByDefault; + + const isAlreadyRendered = this.connectPreRendered(); + if (isAlreadyRendered && !replaceExistingPreRender) { + return this; + } + return this.handleRenderForPrerender(); } diff --git a/src/react/index.tsx b/src/react/index.tsx index 38fcc5a37..81c544984 100644 --- a/src/react/index.tsx +++ b/src/react/index.tsx @@ -94,10 +94,12 @@ const componentFactory = + ) : ( -
+
); }, ); From 31d4d15e5329f8f94689c1fad37bd952d1d79f29 Mon Sep 17 00:00:00 2001 From: shivam-kumar-ts Date: Wed, 24 Sep 2025 10:24:14 +0530 Subject: [PATCH 02/31] SCAL-249159 ensuring the token type is a string before proceeding token validation (#314) --- src/authToken.spec.ts | 49 ++++++++++++++++++++++++++++++++++++++++++- src/authToken.ts | 15 +++++++++++-- src/errors.ts | 1 + src/utils.spec.ts | 18 ++++++++++++++++ src/utils.ts | 21 +++++++++++++++++++ 5 files changed, 101 insertions(+), 3 deletions(-) diff --git a/src/authToken.spec.ts b/src/authToken.spec.ts index 0396a081a..a3adc792e 100644 --- a/src/authToken.spec.ts +++ b/src/authToken.spec.ts @@ -1,6 +1,9 @@ -import { getAuthenticationToken, resetCachedAuthToken } from './authToken'; +import { getAuthenticationToken, resetCachedAuthToken, validateAuthToken } from './authToken'; import * as authServiceInstance from './utils/authService/authService'; import { EmbedConfig } from './types'; +import { formatTemplate } from './utils'; +import { logger } from './utils/logger'; +import { ERROR_MESSAGE } from './errors'; describe('AuthToken Unit tests', () => { test('getAuthenticationToken: When verification is disabled', async () => { @@ -28,4 +31,48 @@ describe('AuthToken Unit tests', () => { expect(token).toBe('abc2'); expect(authServiceInstance.verifyTokenService).toBeCalledWith('test', 'abc2'); }); + + test('validateAuthToken : When token is invalid by type number', async () => { + jest.spyOn(logger, 'error').mockImplementation(() => {}); + const loggerSpy = jest.spyOn(logger, 'error'); + + const authToken = (123 as unknown) as string; + const errorMessage = formatTemplate(ERROR_MESSAGE.INVALID_TOKEN_TYPE_ERROR, { + invalidType: typeof authToken, + }); + + await expect( + validateAuthToken( + { + thoughtSpotHost: 'test', + } as EmbedConfig, + authToken, + ), + ).rejects.toThrow(errorMessage); + expect(loggerSpy).toHaveBeenCalledWith(errorMessage); + + loggerSpy.mockRestore(); + }); + + test('validateAuthToken : When token is invalid by type object', async () => { + jest.spyOn(logger, 'error').mockImplementation(() => {}); + const loggerSpy = jest.spyOn(logger, 'error'); + + const authToken = ({} as unknown) as string; + const errorMessage = formatTemplate(ERROR_MESSAGE.INVALID_TOKEN_TYPE_ERROR, { + invalidType: typeof authToken, + }); + + await expect( + validateAuthToken( + { + thoughtSpotHost: 'test', + } as EmbedConfig, + authToken, + ), + ).rejects.toThrow(errorMessage); + expect(loggerSpy).toHaveBeenCalledWith(errorMessage); + + loggerSpy.mockRestore(); + }); }); diff --git a/src/authToken.ts b/src/authToken.ts index cbfdea8d4..14cb0407c 100644 --- a/src/authToken.ts +++ b/src/authToken.ts @@ -1,6 +1,6 @@ import { ERROR_MESSAGE } from './errors'; import { EmbedConfig } from './types'; -import { getValueFromWindow, storeValueInWindow } from './utils'; +import { getValueFromWindow, storeValueInWindow, formatTemplate } from './utils'; import { fetchAuthTokenService, verifyTokenService } from './utils/authService/authService'; import { logger } from './utils/logger'; @@ -53,12 +53,23 @@ export async function getAuthenticationToken(embedConfig: EmbedConfig): Promise< return authToken; } -const validateAuthToken = async ( +export const validateAuthToken = async ( embedConfig: EmbedConfig, authToken: string, suppressAlert?: boolean, ): Promise => { + // even if token verification is disabled, we will still validate + // that the token is a string before proceeding. + if (typeof authToken !== 'string') { + const errorMessage = formatTemplate(ERROR_MESSAGE.INVALID_TOKEN_TYPE_ERROR, { + invalidType: typeof authToken, + }); + logger.error(errorMessage); + throw new Error(errorMessage); + } + const cachedAuthToken = getCacheAuthToken(); + if (embedConfig.disableTokenVerification) { logger.info('Token verification is disabled. Assuming token is valid.'); return true; diff --git a/src/errors.ts b/src/errors.ts index efbfc3edd..7cee84e6d 100644 --- a/src/errors.ts +++ b/src/errors.ts @@ -10,6 +10,7 @@ export const ERROR_MESSAGE = { SDK_NOT_INITIALIZED: 'SDK not initialized', SESSION_INFO_FAILED: 'Failed to get session information', INVALID_TOKEN_ERROR: 'Received invalid token from getAuthToken callback or authToken endpoint.', + INVALID_TOKEN_TYPE_ERROR: 'Expected getAuthToken to return a string, but received a {invalidType}.', MIXPANEL_TOKEN_NOT_FOUND: 'Mixpanel token not found in session info', PRERENDER_ID_MISSING: 'PreRender ID is required for preRender', SYNC_STYLE_CALLED_BEFORE_RENDER: 'PreRender should be called before using syncPreRenderStyle', diff --git a/src/utils.spec.ts b/src/utils.spec.ts index 06f91be5a..e50cdf630 100644 --- a/src/utils.spec.ts +++ b/src/utils.spec.ts @@ -18,6 +18,7 @@ import { getTypeFromValue, arrayIncludesString, calculateVisibleElementData, + formatTemplate, } from './utils'; import { RuntimeFilterOp } from './types'; import { logger } from './utils/logger'; @@ -718,3 +719,20 @@ describe('calculateVisibleElementData', () => { }); }); }); + +describe('formatTemplate', () => { + it('should replace placeholders with provided values', () => { + expect( + formatTemplate('Hello {name}, you are {age} years old', { name: 'John', age: 30 }), + ).toBe('Hello John, you are 30 years old'); + expect( + formatTemplate('Expected {type}, but received {actual}', { + type: 'string', + actual: 'number', + }), + ).toBe('Expected string, but received number'); + expect( + formatTemplate('Hello {name}, you are {age} years old', { name: 'John' }), + ).toBe('Hello John, you are {age} years old'); + }); +}); diff --git a/src/utils.ts b/src/utils.ts index af71550a0..160bad71b 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -499,3 +499,24 @@ export const calculateVisibleElementData = (element: HTMLElement) => { return data; } + +/** + * Replaces placeholders in a template string with provided values. + * Placeholders should be in the format {key}. + * @param template - The template string with placeholders + * @param values - An object containing key-value pairs to replace placeholders + * @returns The template string with placeholders replaced + * @example + * formatTemplate('Hello {name}, you are {age} years old', { name: 'John', age: 30 }) + * // Returns: 'Hello John, you are 30 years old' + * + * formatTemplate('Expected {type}, but received {actual}', { type: 'string', actual: 'number' }) + * // Returns: 'Expected string, but received number' + */ +export const formatTemplate = (template: string, values: Record): string => { + // This regex /\{(\w+)\}/g finds all placeholders in the format {word} + // and captures the word inside the braces for replacement. + return template.replace(/\{(\w+)\}/g, (match, key) => { + return values[key] !== undefined ? String(values[key]) : match; + }); +}; \ No newline at end of file From 575b6156092da20ffb692f472b10e1bcae529a69 Mon Sep 17 00:00:00 2001 From: ShashiSubramanya <76986173+ShashiSubramanya@users.noreply.github.com> Date: Wed, 24 Sep 2025 11:35:14 +0530 Subject: [PATCH 03/31] Scal 273568 and other doc fixes (#317) --- src/css-variables.ts | 3 +- src/types.ts | 2 +- static/typedoc/typedoc.json | 6761 ++++++++++++++++++----------------- 3 files changed, 3463 insertions(+), 3303 deletions(-) diff --git a/src/css-variables.ts b/src/css-variables.ts index ac28149dd..9982d7eb7 100644 --- a/src/css-variables.ts +++ b/src/css-variables.ts @@ -27,7 +27,8 @@ export interface CustomCssVariables { * Font color of the text on toggle buttons such as * **All**, **Answers**, and **Liveboards** on the Home page (Classic experience), * the text color of the chart and table tiles on Home page (New modular Homepage - * experience), and title text on the AI-generated charts and tables. + * experience), title text on the AI-generated charts and tables, and object titles on + * list pages such as *Liveboards* and *Answers*. * The default color code is #2770EF. * */ diff --git a/src/types.ts b/src/types.ts index 210ee6e56..6cda3a3cf 100644 --- a/src/types.ts +++ b/src/types.ts @@ -3823,7 +3823,7 @@ export enum HostEvent { * column: "Date", * oper: 'EQ', * values: ["2023-07-31"], - * types: "EXACT_DATE" + * type: "EXACT_DATE" * }] * }); * ``` diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 29a40beb4..41a2b95c2 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 2048, + "id": 2059, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 2161, + "id": 2172, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -55,7 +55,7 @@ "defaultValue": "\"AIHighlights\"" }, { - "id": 2068, + "id": 2079, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -83,7 +83,7 @@ "defaultValue": "\"addSimpleCohort\"" }, { - "id": 2061, + "id": 2072, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -111,7 +111,7 @@ "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 2060, + "id": 2071, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -135,7 +135,7 @@ "defaultValue": "\"addFilter\"" }, { - "id": 2066, + "id": 2077, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -159,7 +159,7 @@ "defaultValue": "\"addFormula\"" }, { - "id": 2067, + "id": 2078, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -183,7 +183,7 @@ "defaultValue": "\"addParameter\"" }, { - "id": 2069, + "id": 2080, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -211,7 +211,7 @@ "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 2143, + "id": 2154, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -239,7 +239,7 @@ "defaultValue": "\"addTab\"" }, { - "id": 2116, + "id": 2127, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -267,7 +267,7 @@ "defaultValue": "\"addToFavorites\"" }, { - "id": 2158, + "id": 2169, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -295,7 +295,7 @@ "defaultValue": "\"addToWatchlist\"" }, { - "id": 2115, + "id": 2126, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -323,7 +323,7 @@ "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2114, + "id": 2125, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -351,7 +351,7 @@ "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2157, + "id": 2168, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -380,7 +380,7 @@ "defaultValue": "\"AskAi\"" }, { - "id": 2127, + "id": 2138, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -408,7 +408,7 @@ "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 2130, + "id": 2141, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -436,7 +436,7 @@ "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 2135, + "id": 2146, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -464,7 +464,7 @@ "defaultValue": "\"axisMenuEdit\"" }, { - "id": 2129, + "id": 2140, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -492,7 +492,7 @@ "defaultValue": "\"axisMenuFilter\"" }, { - "id": 2132, + "id": 2143, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -520,7 +520,7 @@ "defaultValue": "\"axisMenuGroup\"" }, { - "id": 2136, + "id": 2147, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -548,7 +548,7 @@ "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 2133, + "id": 2144, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -576,7 +576,7 @@ "defaultValue": "\"axisMenuPosition\"" }, { - "id": 2138, + "id": 2149, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -604,7 +604,7 @@ "defaultValue": "\"axisMenuRemove\"" }, { - "id": 2134, + "id": 2145, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -632,7 +632,7 @@ "defaultValue": "\"axisMenuRename\"" }, { - "id": 2131, + "id": 2142, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -660,7 +660,7 @@ "defaultValue": "\"axisMenuSort\"" }, { - "id": 2137, + "id": 2148, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -688,7 +688,7 @@ "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 2128, + "id": 2139, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -716,7 +716,7 @@ "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 2170, + "id": 2181, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -744,7 +744,7 @@ "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 2065, + "id": 2076, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -768,7 +768,7 @@ "defaultValue": "\"chooseDataSources\"" }, { - "id": 2064, + "id": 2075, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -796,7 +796,7 @@ "defaultValue": "\"collapseDataPanel\"" }, { - "id": 2063, + "id": 2074, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -824,7 +824,7 @@ "defaultValue": "\"collapseDataSources\"" }, { - "id": 2177, + "id": 2188, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -852,7 +852,7 @@ "defaultValue": "\"columnRename\"" }, { - "id": 2062, + "id": 2073, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -876,7 +876,7 @@ "defaultValue": "\"configureFilter\"" }, { - "id": 2107, + "id": 2118, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -891,7 +891,7 @@ "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 2055, + "id": 2066, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -915,7 +915,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 2106, + "id": 2117, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -939,7 +939,7 @@ "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2178, + "id": 2189, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -967,7 +967,7 @@ "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 2155, + "id": 2166, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -995,7 +995,7 @@ "defaultValue": "\"createLiveboard\"" }, { - "id": 2118, + "id": 2129, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1023,7 +1023,7 @@ "defaultValue": "\"createMonitor\"" }, { - "id": 2123, + "id": 2134, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1051,7 +1051,7 @@ "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 2175, + "id": 2186, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1079,7 +1079,7 @@ "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 2167, + "id": 2178, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1107,7 +1107,7 @@ "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 2169, + "id": 2180, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1135,7 +1135,7 @@ "defaultValue": "\"disableChipReorder\"" }, { - "id": 2077, + "id": 2088, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1159,7 +1159,7 @@ "defaultValue": "\"download\"" }, { - "id": 2080, + "id": 2091, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1183,7 +1183,7 @@ "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2079, + "id": 2090, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1208,7 +1208,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2078, + "id": 2089, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1232,7 +1232,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 2081, + "id": 2092, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1256,7 +1256,7 @@ "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2111, + "id": 2122, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1280,7 +1280,7 @@ "defaultValue": "\"DRILL\"" }, { - "id": 2105, + "id": 2116, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1304,7 +1304,7 @@ "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 2104, + "id": 2115, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1328,7 +1328,7 @@ "defaultValue": "\"context-menu-item-include\"" }, { - "id": 2089, + "id": 2100, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1352,7 +1352,7 @@ "defaultValue": "\"edit\"" }, { - "id": 2054, + "id": 2065, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1376,7 +1376,7 @@ "defaultValue": "\"editACopy\"" }, { - "id": 2117, + "id": 2128, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1404,7 +1404,7 @@ "defaultValue": "\"editDetails\"" }, { - "id": 2109, + "id": 2120, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1419,7 +1419,7 @@ "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 2174, + "id": 2185, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1447,7 +1447,7 @@ "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 2147, + "id": 2158, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1475,7 +1475,7 @@ "defaultValue": "\"editSageAnswer\"" }, { - "id": 2162, + "id": 2173, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1503,7 +1503,7 @@ "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 2086, + "id": 2097, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1527,7 +1527,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 2090, + "id": 2101, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1551,7 +1551,7 @@ "defaultValue": "\"editTitle\"" }, { - "id": 2176, + "id": 2187, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1579,7 +1579,7 @@ "defaultValue": "\"editTokens\"" }, { - "id": 2144, + "id": 2155, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1607,7 +1607,7 @@ "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 2145, + "id": 2156, "name": "EnableIterativeChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1635,7 +1635,7 @@ "defaultValue": "\"enableIterativeChangeAnalysis\"" }, { - "id": 2103, + "id": 2114, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1659,7 +1659,7 @@ "defaultValue": "\"explore\"" }, { - "id": 2083, + "id": 2094, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1684,7 +1684,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 2084, + "id": 2095, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1708,7 +1708,7 @@ "defaultValue": "\"importTSL\"" }, { - "id": 2179, + "id": 2190, "name": "InConversationTraining", "kind": 16, "kindString": "Enumeration member", @@ -1736,7 +1736,7 @@ "defaultValue": "\"InConversationTraining\"" }, { - "id": 2168, + "id": 2179, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1764,7 +1764,7 @@ "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 2097, + "id": 2108, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1788,7 +1788,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 2153, + "id": 2164, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1816,7 +1816,7 @@ "defaultValue": "\"liveboardUsers\"" }, { - "id": 2053, + "id": 2064, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1840,7 +1840,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 2151, + "id": 2162, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1864,7 +1864,7 @@ "defaultValue": "\"manageMonitor\"" }, { - "id": 2122, + "id": 2133, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1892,7 +1892,7 @@ "defaultValue": "\"manage-pipeline\"" }, { - "id": 2166, + "id": 2177, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1920,7 +1920,7 @@ "defaultValue": "\"manageTags\"" }, { - "id": 2142, + "id": 2153, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1948,7 +1948,7 @@ "defaultValue": "\"markAsVerified\"" }, { - "id": 2149, + "id": 2160, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1975,7 +1975,7 @@ "defaultValue": "\"modifySageAnswer\"" }, { - "id": 2150, + "id": 2161, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -1999,7 +1999,7 @@ "defaultValue": "\"onContainerMove\"" }, { - "id": 2160, + "id": 2171, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -2027,7 +2027,7 @@ "defaultValue": "\"organiseFavourites\"" }, { - "id": 2163, + "id": 2174, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2055,7 +2055,7 @@ "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 2152, + "id": 2163, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2083,7 +2083,7 @@ "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 2100, + "id": 2111, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2107,7 +2107,7 @@ "defaultValue": "\"pin\"" }, { - "id": 2183, + "id": 2194, "name": "PngScreenshotInEmail", "kind": 16, "kindString": "Enumeration member", @@ -2131,7 +2131,7 @@ "defaultValue": "\"pngScreenshotInEmail\"" }, { - "id": 2087, + "id": 2098, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2155,7 +2155,7 @@ "defaultValue": "\"present\"" }, { - "id": 2171, + "id": 2182, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2183,7 +2183,7 @@ "defaultValue": "\"previewDataSpotter\"" }, { - "id": 2113, + "id": 2124, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2208,7 +2208,7 @@ "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 2091, + "id": 2102, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2232,7 +2232,7 @@ "defaultValue": "\"delete\"" }, { - "id": 2184, + "id": 2195, "name": "RemoveAttachment", "kind": 16, "kindString": "Enumeration member", @@ -2260,7 +2260,7 @@ "defaultValue": "\"removeAttachment\"" }, { - "id": 2126, + "id": 2137, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2288,7 +2288,7 @@ "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 2159, + "id": 2170, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2316,7 +2316,7 @@ "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 2140, + "id": 2151, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2344,7 +2344,7 @@ "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 2119, + "id": 2130, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2375,7 +2375,7 @@ "defaultValue": "\"reportError\"" }, { - "id": 2112, + "id": 2123, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2399,7 +2399,7 @@ "defaultValue": "\"requestAccess\"" }, { - "id": 2141, + "id": 2152, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2427,7 +2427,7 @@ "defaultValue": "\"requestVerification\"" }, { - "id": 2172, + "id": 2183, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2455,7 +2455,7 @@ "defaultValue": "\"resetSpotterChat\"" }, { - "id": 2148, + "id": 2159, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2483,7 +2483,7 @@ "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 2049, + "id": 2060, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2507,7 +2507,7 @@ "defaultValue": "\"save\"" }, { - "id": 2052, + "id": 2063, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2531,7 +2531,7 @@ "defaultValue": "\"saveAsView\"" }, { - "id": 2057, + "id": 2068, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2555,7 +2555,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 2058, + "id": 2069, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2579,7 +2579,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 2110, + "id": 2121, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2594,7 +2594,7 @@ "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 2059, + "id": 2070, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2618,7 +2618,7 @@ "defaultValue": "\"share\"" }, { - "id": 2074, + "id": 2085, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2636,7 +2636,7 @@ "defaultValue": "\"shareViz\"" }, { - "id": 2146, + "id": 2157, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2664,7 +2664,7 @@ "defaultValue": "\"showSageQuery\"" }, { - "id": 2076, + "id": 2087, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2688,7 +2688,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2071, + "id": 2082, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2712,7 +2712,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2173, + "id": 2184, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2740,7 +2740,7 @@ "defaultValue": "\"spotterFeedback\"" }, { - "id": 2182, + "id": 2193, "name": "SpotterTokenQuickEdit", "kind": 16, "kindString": "Enumeration member", @@ -2768,7 +2768,7 @@ "defaultValue": "\"SpotterTokenQuickEdit\"" }, { - "id": 2180, + "id": 2191, "name": "SpotterWarningsBanner", "kind": 16, "kindString": "Enumeration member", @@ -2796,7 +2796,7 @@ "defaultValue": "\"SpotterWarningsBanner\"" }, { - "id": 2181, + "id": 2192, "name": "SpotterWarningsOnTokens", "kind": 16, "kindString": "Enumeration member", @@ -2824,7 +2824,7 @@ "defaultValue": "\"SpotterWarningsOnTokens\"" }, { - "id": 2102, + "id": 2113, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2848,7 +2848,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 2121, + "id": 2132, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2876,7 +2876,7 @@ "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2120, + "id": 2131, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2904,7 +2904,7 @@ "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2124, + "id": 2135, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2932,7 +2932,7 @@ "defaultValue": "\"syncToSlack\"" }, { - "id": 2125, + "id": 2136, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2960,7 +2960,7 @@ "defaultValue": "\"syncToTeams\"" }, { - "id": 2154, + "id": 2165, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -2992,7 +2992,7 @@ "defaultValue": "\"tml\"" }, { - "id": 2088, + "id": 2099, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -3016,7 +3016,7 @@ "defaultValue": "\"toggleSize\"" }, { - "id": 2165, + "id": 2176, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3044,7 +3044,7 @@ "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 2085, + "id": 2096, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -3068,7 +3068,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 2156, + "id": 2167, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -3096,7 +3096,7 @@ "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 2164, + "id": 2175, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3129,124 +3129,124 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2161, - 2068, - 2061, - 2060, - 2066, - 2067, - 2069, - 2143, - 2116, - 2158, - 2115, - 2114, - 2157, - 2127, - 2130, - 2135, - 2129, - 2132, - 2136, - 2133, - 2138, - 2134, - 2131, - 2137, - 2128, - 2170, - 2065, - 2064, - 2063, - 2177, - 2062, - 2107, - 2055, - 2106, - 2178, - 2155, - 2118, - 2123, - 2175, - 2167, - 2169, - 2077, - 2080, + 2172, 2079, + 2072, + 2071, + 2077, 2078, - 2081, - 2111, - 2105, - 2104, - 2089, - 2054, - 2117, - 2109, - 2174, + 2080, + 2154, + 2127, + 2169, + 2126, + 2125, + 2168, + 2138, + 2141, + 2146, + 2140, + 2143, 2147, - 2162, - 2086, - 2090, - 2176, 2144, + 2149, 2145, - 2103, - 2083, - 2084, - 2179, - 2168, + 2142, + 2148, + 2139, + 2181, + 2076, + 2075, + 2074, + 2188, + 2073, + 2118, + 2066, + 2117, + 2189, + 2166, + 2129, + 2134, + 2186, + 2178, + 2180, + 2088, + 2091, + 2090, + 2089, + 2092, + 2122, + 2116, + 2115, + 2100, + 2065, + 2128, + 2120, + 2185, + 2158, + 2173, 2097, + 2101, + 2187, + 2155, + 2156, + 2114, + 2094, + 2095, + 2190, + 2179, + 2108, + 2164, + 2064, + 2162, + 2133, + 2177, 2153, - 2053, - 2151, - 2122, - 2166, - 2142, - 2149, - 2150, 2160, + 2161, + 2171, + 2174, 2163, + 2111, + 2194, + 2098, + 2182, + 2124, + 2102, + 2195, + 2137, + 2170, + 2151, + 2130, + 2123, 2152, - 2100, 2183, - 2087, - 2171, - 2113, - 2091, - 2184, - 2126, 2159, - 2140, - 2119, - 2112, - 2141, - 2172, - 2148, - 2049, - 2052, - 2057, - 2058, - 2110, - 2059, - 2074, - 2146, - 2076, - 2071, - 2173, - 2182, - 2180, - 2181, - 2102, + 2060, + 2063, + 2068, + 2069, 2121, - 2120, - 2124, - 2125, - 2154, - 2088, - 2165, + 2070, 2085, - 2156, - 2164 + 2157, + 2087, + 2082, + 2184, + 2193, + 2191, + 2192, + 2113, + 2132, + 2131, + 2135, + 2136, + 2165, + 2099, + 2176, + 2096, + 2167, + 2175 ] } ], @@ -3259,7 +3259,7 @@ ] }, { - "id": 1702, + "id": 1713, "name": "AuthEvent", "kind": 4, "kindString": "Enumeration", @@ -3275,7 +3275,7 @@ }, "children": [ { - "id": 1703, + "id": 1714, "name": "TRIGGER_SSO_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3298,7 +3298,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1703 + 1714 ] } ], @@ -3311,7 +3311,7 @@ ] }, { - "id": 1687, + "id": 1698, "name": "AuthFailureType", "kind": 4, "kindString": "Enumeration", @@ -3327,7 +3327,7 @@ }, "children": [ { - "id": 1690, + "id": 1701, "name": "EXPIRY", "kind": 16, "kindString": "Enumeration member", @@ -3342,7 +3342,7 @@ "defaultValue": "\"EXPIRY\"" }, { - "id": 1692, + "id": 1703, "name": "IDLE_SESSION_TIMEOUT", "kind": 16, "kindString": "Enumeration member", @@ -3357,7 +3357,7 @@ "defaultValue": "\"IDLE_SESSION_TIMEOUT\"" }, { - "id": 1689, + "id": 1700, "name": "NO_COOKIE_ACCESS", "kind": 16, "kindString": "Enumeration member", @@ -3372,7 +3372,7 @@ "defaultValue": "\"NO_COOKIE_ACCESS\"" }, { - "id": 1691, + "id": 1702, "name": "OTHER", "kind": 16, "kindString": "Enumeration member", @@ -3387,7 +3387,7 @@ "defaultValue": "\"OTHER\"" }, { - "id": 1688, + "id": 1699, "name": "SDK", "kind": 16, "kindString": "Enumeration member", @@ -3402,7 +3402,7 @@ "defaultValue": "\"SDK\"" }, { - "id": 1693, + "id": 1704, "name": "UNAUTHENTICATED_FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3422,12 +3422,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1690, - 1692, - 1689, - 1691, - 1688, - 1693 + 1701, + 1703, + 1700, + 1702, + 1699, + 1704 ] } ], @@ -3440,7 +3440,7 @@ ] }, { - "id": 1694, + "id": 1705, "name": "AuthStatus", "kind": 4, "kindString": "Enumeration", @@ -3456,7 +3456,7 @@ }, "children": [ { - "id": 1695, + "id": 1706, "name": "FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3474,7 +3474,7 @@ "defaultValue": "\"FAILURE\"" }, { - "id": 1699, + "id": 1710, "name": "LOGOUT", "kind": 16, "kindString": "Enumeration member", @@ -3492,7 +3492,7 @@ "defaultValue": "\"LOGOUT\"" }, { - "id": 1701, + "id": 1712, "name": "SAML_POPUP_CLOSED_NO_AUTH", "kind": 16, "kindString": "Enumeration member", @@ -3510,7 +3510,7 @@ "defaultValue": "\"SAML_POPUP_CLOSED_NO_AUTH\"" }, { - "id": 1696, + "id": 1707, "name": "SDK_SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3528,7 +3528,7 @@ "defaultValue": "\"SDK_SUCCESS\"" }, { - "id": 1698, + "id": 1709, "name": "SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3546,7 +3546,7 @@ "defaultValue": "\"SUCCESS\"" }, { - "id": 1700, + "id": 1711, "name": "WAITING_FOR_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3575,12 +3575,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1695, - 1699, - 1701, - 1696, - 1698, - 1700 + 1706, + 1710, + 1712, + 1707, + 1709, + 1711 ] } ], @@ -3593,7 +3593,7 @@ ] }, { - "id": 1849, + "id": 1860, "name": "AuthType", "kind": 4, "kindString": "Enumeration", @@ -3609,7 +3609,7 @@ }, "children": [ { - "id": 1860, + "id": 1871, "name": "Basic", "kind": 16, "kindString": "Enumeration member", @@ -3628,7 +3628,7 @@ "defaultValue": "\"Basic\"" }, { - "id": 1851, + "id": 1862, "name": "EmbeddedSSO", "kind": 16, "kindString": "Enumeration member", @@ -3657,7 +3657,7 @@ "defaultValue": "\"EmbeddedSSO\"" }, { - "id": 1850, + "id": 1861, "name": "None", "kind": 16, "kindString": "Enumeration member", @@ -3681,7 +3681,7 @@ "defaultValue": "\"None\"" }, { - "id": 1856, + "id": 1867, "name": "OIDCRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3699,7 +3699,7 @@ "defaultValue": "\"SSO_OIDC\"" }, { - "id": 1854, + "id": 1865, "name": "SAMLRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3732,7 +3732,7 @@ "defaultValue": "\"SSO_SAML\"" }, { - "id": 1858, + "id": 1869, "name": "TrustedAuthToken", "kind": 16, "kindString": "Enumeration member", @@ -3756,7 +3756,7 @@ "defaultValue": "\"AuthServer\"" }, { - "id": 1859, + "id": 1870, "name": "TrustedAuthTokenCookieless", "kind": 16, "kindString": "Enumeration member", @@ -3789,13 +3789,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1860, - 1851, - 1850, - 1856, - 1854, - 1858, - 1859 + 1871, + 1862, + 1861, + 1867, + 1865, + 1869, + 1870 ] } ], @@ -3808,7 +3808,7 @@ ] }, { - "id": 2185, + "id": 2196, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3818,7 +3818,7 @@ }, "children": [ { - "id": 2188, + "id": 2199, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3833,7 +3833,7 @@ "defaultValue": "\"both-clicks\"" }, { - "id": 2186, + "id": 2197, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3848,7 +3848,7 @@ "defaultValue": "\"left-click\"" }, { - "id": 2187, + "id": 2198, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3868,9 +3868,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2188, - 2186, - 2187 + 2199, + 2197, + 2198 ] } ], @@ -3883,7 +3883,7 @@ ] }, { - "id": 2855, + "id": 2866, "name": "CustomActionTarget", "kind": 4, "kindString": "Enumeration", @@ -3893,7 +3893,7 @@ }, "children": [ { - "id": 2858, + "id": 2869, "name": "ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -3908,7 +3908,7 @@ "defaultValue": "\"ANSWER\"" }, { - "id": 2856, + "id": 2867, "name": "LIVEBOARD", "kind": 16, "kindString": "Enumeration member", @@ -3923,7 +3923,7 @@ "defaultValue": "\"LIVEBOARD\"" }, { - "id": 2859, + "id": 2870, "name": "SPOTTER", "kind": 16, "kindString": "Enumeration member", @@ -3938,7 +3938,7 @@ "defaultValue": "\"SPOTTER\"" }, { - "id": 2857, + "id": 2868, "name": "VIZ", "kind": 16, "kindString": "Enumeration member", @@ -3958,10 +3958,10 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2858, - 2856, - 2859, - 2857 + 2869, + 2867, + 2870, + 2868 ] } ], @@ -3974,7 +3974,7 @@ ] }, { - "id": 2851, + "id": 2862, "name": "CustomActionsPosition", "kind": 4, "kindString": "Enumeration", @@ -3984,7 +3984,7 @@ }, "children": [ { - "id": 2854, + "id": 2865, "name": "CONTEXTMENU", "kind": 16, "kindString": "Enumeration member", @@ -3999,7 +3999,7 @@ "defaultValue": "\"CONTEXTMENU\"" }, { - "id": 2853, + "id": 2864, "name": "MENU", "kind": 16, "kindString": "Enumeration member", @@ -4014,7 +4014,7 @@ "defaultValue": "\"MENU\"" }, { - "id": 2852, + "id": 2863, "name": "PRIMARY", "kind": 16, "kindString": "Enumeration member", @@ -4034,9 +4034,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2854, - 2853, - 2852 + 2865, + 2864, + 2863 ] } ], @@ -4049,7 +4049,7 @@ ] }, { - "id": 2847, + "id": 2858, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -4059,7 +4059,7 @@ }, "children": [ { - "id": 2849, + "id": 2860, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4077,7 +4077,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 2848, + "id": 2859, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4095,7 +4095,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 2850, + "id": 2861, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -4118,9 +4118,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2849, - 2848, - 2850 + 2860, + 2859, + 2861 ] } ], @@ -4133,7 +4133,7 @@ ] }, { - "id": 2044, + "id": 2055, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -4143,7 +4143,7 @@ }, "children": [ { - "id": 2046, + "id": 2057, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -4161,7 +4161,7 @@ "defaultValue": "\"collapse\"" }, { - "id": 2047, + "id": 2058, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -4179,7 +4179,7 @@ "defaultValue": "\"expand\"" }, { - "id": 2045, + "id": 2056, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -4202,9 +4202,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2046, - 2047, - 2045 + 2057, + 2058, + 2056 ] } ], @@ -4217,7 +4217,7 @@ ] }, { - "id": 1881, + "id": 1892, "name": "EmbedEvent", "kind": 4, "kindString": "Enumeration", @@ -4242,7 +4242,7 @@ }, "children": [ { - "id": 1909, + "id": 1920, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -4270,7 +4270,7 @@ "defaultValue": "\"*\"" }, { - "id": 1889, + "id": 1900, "name": "AddRemoveColumns", "kind": 16, "kindString": "Enumeration member", @@ -4302,7 +4302,7 @@ "defaultValue": "\"addRemoveColumns\"" }, { - "id": 1933, + "id": 1944, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -4330,7 +4330,7 @@ "defaultValue": "\"addToFavorites\"" }, { - "id": 1894, + "id": 1905, "name": "Alert", "kind": 16, "kindString": "Enumeration member", @@ -4362,7 +4362,7 @@ "defaultValue": "\"alert\"" }, { - "id": 1929, + "id": 1940, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -4390,7 +4390,7 @@ "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1916, + "id": 1927, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -4418,7 +4418,7 @@ "defaultValue": "\"answerDelete\"" }, { - "id": 1956, + "id": 1967, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -4458,7 +4458,7 @@ "defaultValue": "\"AskSageInit\"" }, { - "id": 1895, + "id": 1906, "name": "AuthExpire", "kind": 16, "kindString": "Enumeration member", @@ -4486,7 +4486,7 @@ "defaultValue": "\"ThoughtspotAuthExpired\"" }, { - "id": 1883, + "id": 1894, "name": "AuthInit", "kind": 16, "kindString": "Enumeration member", @@ -4518,7 +4518,7 @@ "defaultValue": "\"authInit\"" }, { - "id": 1940, + "id": 1951, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -4546,7 +4546,7 @@ "defaultValue": "\"cancel\"" }, { - "id": 1927, + "id": 1938, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -4574,7 +4574,7 @@ "defaultValue": "\"copyAEdit\"" }, { - "id": 1942, + "id": 1953, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -4602,7 +4602,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 1922, + "id": 1933, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -4630,7 +4630,7 @@ "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1950, + "id": 1961, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -4654,7 +4654,7 @@ "defaultValue": "\"createConnection\"" }, { - "id": 1961, + "id": 1972, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -4679,7 +4679,7 @@ "defaultValue": "\"createLiveboard\"" }, { - "id": 1962, + "id": 1973, "name": "CreateModel", "kind": 16, "kindString": "Enumeration member", @@ -4703,7 +4703,7 @@ "defaultValue": "\"createModel\"" }, { - "id": 1955, + "id": 1966, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -4727,7 +4727,7 @@ "defaultValue": "\"createWorksheet\"" }, { - "id": 1943, + "id": 1954, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4755,7 +4755,7 @@ "defaultValue": "\"cross-filter-changed\"" }, { - "id": 1890, + "id": 1901, "name": "CustomAction", "kind": 16, "kindString": "Enumeration member", @@ -4791,7 +4791,7 @@ "defaultValue": "\"customAction\"" }, { - "id": 1885, + "id": 1896, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -4827,7 +4827,7 @@ "defaultValue": "\"data\"" }, { - "id": 1888, + "id": 1899, "name": "DataSourceSelected", "kind": 16, "kindString": "Enumeration member", @@ -4859,7 +4859,7 @@ "defaultValue": "\"dataSourceSelected\"" }, { - "id": 1938, + "id": 1949, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -4887,7 +4887,7 @@ "defaultValue": "\"delete\"" }, { - "id": 1954, + "id": 1965, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -4919,7 +4919,7 @@ "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 1907, + "id": 1918, "name": "DialogClose", "kind": 16, "kindString": "Enumeration member", @@ -4947,7 +4947,7 @@ "defaultValue": "\"dialog-close\"" }, { - "id": 1906, + "id": 1917, "name": "DialogOpen", "kind": 16, "kindString": "Enumeration member", @@ -4975,7 +4975,7 @@ "defaultValue": "\"dialog-open\"" }, { - "id": 1911, + "id": 1922, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -5004,7 +5004,7 @@ "defaultValue": "\"download\"" }, { - "id": 1914, + "id": 1925, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -5032,7 +5032,7 @@ "defaultValue": "\"downloadAsCsv\"" }, { - "id": 1913, + "id": 1924, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -5060,7 +5060,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1912, + "id": 1923, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -5088,7 +5088,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 1915, + "id": 1926, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -5116,7 +5116,7 @@ "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 1921, + "id": 1932, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -5144,7 +5144,7 @@ "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1920, + "id": 1931, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -5172,7 +5172,7 @@ "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1887, + "id": 1898, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -5216,7 +5216,7 @@ "defaultValue": "\"drillDown\"" }, { - "id": 1935, + "id": 1946, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -5244,7 +5244,7 @@ "defaultValue": "\"edit\"" }, { - "id": 1924, + "id": 1935, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -5272,7 +5272,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 1893, + "id": 1904, "name": "Error", "kind": 16, "kindString": "Enumeration member", @@ -5309,7 +5309,7 @@ "defaultValue": "\"Error\"" }, { - "id": 1941, + "id": 1952, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -5337,7 +5337,7 @@ "defaultValue": "\"explore\"" }, { - "id": 1925, + "id": 1936, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -5365,7 +5365,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 1946, + "id": 1957, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5389,7 +5389,7 @@ "defaultValue": "\"filterChanged\"" }, { - "id": 1901, + "id": 1912, "name": "GetDataClick", "kind": 16, "kindString": "Enumeration member", @@ -5417,7 +5417,7 @@ "defaultValue": "\"getDataClick\"" }, { - "id": 1882, + "id": 1893, "name": "Init", "kind": 16, "kindString": "Enumeration member", @@ -5445,7 +5445,7 @@ "defaultValue": "\"init\"" }, { - "id": 1969, + "id": 1980, "name": "LastPromptDeleted", "kind": 16, "kindString": "Enumeration member", @@ -5473,7 +5473,7 @@ "defaultValue": "\"LastPromptDeleted\"" }, { - "id": 1968, + "id": 1979, "name": "LastPromptEdited", "kind": 16, "kindString": "Enumeration member", @@ -5501,7 +5501,7 @@ "defaultValue": "\"LastPromptEdited\"" }, { - "id": 1932, + "id": 1943, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -5529,7 +5529,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 1908, + "id": 1919, "name": "LiveboardRendered", "kind": 16, "kindString": "Enumeration member", @@ -5561,7 +5561,7 @@ "defaultValue": "\"PinboardRendered\"" }, { - "id": 1884, + "id": 1895, "name": "Load", "kind": 16, "kindString": "Enumeration member", @@ -5593,7 +5593,7 @@ "defaultValue": "\"load\"" }, { - "id": 1936, + "id": 1947, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -5621,7 +5621,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 1904, + "id": 1915, "name": "NoCookieAccess", "kind": 16, "kindString": "Enumeration member", @@ -5649,7 +5649,7 @@ "defaultValue": "\"noCookieAccess\"" }, { - "id": 1958, + "id": 1969, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", @@ -5686,7 +5686,7 @@ "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 1973, + "id": 1984, "name": "OrgSwitched", "kind": 16, "kindString": "Enumeration member", @@ -5714,7 +5714,7 @@ "defaultValue": "\"orgSwitched\"" }, { - "id": 1959, + "id": 1970, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5738,7 +5738,7 @@ "defaultValue": "\"parameterChanged\"" }, { - "id": 1917, + "id": 1928, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -5766,7 +5766,7 @@ "defaultValue": "\"pin\"" }, { - "id": 1937, + "id": 1948, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -5798,7 +5798,7 @@ "defaultValue": "\"present\"" }, { - "id": 1966, + "id": 1977, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -5826,7 +5826,7 @@ "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 1886, + "id": 1897, "name": "QueryChanged", "kind": 16, "kindString": "Enumeration member", @@ -5854,7 +5854,7 @@ "defaultValue": "\"queryChanged\"" }, { - "id": 1957, + "id": 1968, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -5878,7 +5878,7 @@ "defaultValue": "\"rename\"" }, { - "id": 1953, + "id": 1964, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -5918,7 +5918,7 @@ "defaultValue": "\"resetLiveboard\"" }, { - "id": 1970, + "id": 1981, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -5946,7 +5946,7 @@ "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 1902, + "id": 1913, "name": "RouteChange", "kind": 16, "kindString": "Enumeration member", @@ -5974,7 +5974,7 @@ "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 1947, + "id": 1958, "name": "SageEmbedQuery", "kind": 16, "kindString": "Enumeration member", @@ -5998,7 +5998,7 @@ "defaultValue": "\"sageEmbedQuery\"" }, { - "id": 1948, + "id": 1959, "name": "SageWorksheetUpdated", "kind": 16, "kindString": "Enumeration member", @@ -6022,7 +6022,7 @@ "defaultValue": "\"sageWorksheetUpdated\"" }, { - "id": 1910, + "id": 1921, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -6050,7 +6050,7 @@ "defaultValue": "\"save\"" }, { - "id": 1926, + "id": 1937, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -6078,7 +6078,7 @@ "defaultValue": "\"saveAsView\"" }, { - "id": 1952, + "id": 1963, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6118,7 +6118,7 @@ "defaultValue": "\"savePersonalisedView\"" }, { - "id": 1934, + "id": 1945, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -6146,7 +6146,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 1939, + "id": 1950, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -6174,7 +6174,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 1919, + "id": 1930, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -6202,7 +6202,7 @@ "defaultValue": "\"share\"" }, { - "id": 1928, + "id": 1939, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -6230,7 +6230,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1918, + "id": 1929, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -6258,7 +6258,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1965, + "id": 1976, "name": "SpotterData", "kind": 16, "kindString": "Enumeration member", @@ -6286,7 +6286,7 @@ "defaultValue": "\"SpotterData\"" }, { - "id": 1971, + "id": 1982, "name": "SpotterInit", "kind": 16, "kindString": "Enumeration member", @@ -6314,7 +6314,7 @@ "defaultValue": "\"spotterInit\"" }, { - "id": 1967, + "id": 1978, "name": "SpotterQueryTriggered", "kind": 16, "kindString": "Enumeration member", @@ -6342,7 +6342,7 @@ "defaultValue": "\"SpotterQueryTriggered\"" }, { - "id": 1960, + "id": 1971, "name": "TableVizRendered", "kind": 16, "kindString": "Enumeration member", @@ -6371,7 +6371,7 @@ "defaultValue": "\"TableVizRendered\"" }, { - "id": 1949, + "id": 1960, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -6395,7 +6395,7 @@ "defaultValue": "\"updateConnection\"" }, { - "id": 1951, + "id": 1962, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6435,7 +6435,7 @@ "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 1923, + "id": 1934, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -6463,7 +6463,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 1892, + "id": 1903, "name": "VizPointClick", "kind": 16, "kindString": "Enumeration member", @@ -6499,7 +6499,7 @@ "defaultValue": "\"vizPointClick\"" }, { - "id": 1891, + "id": 1902, "name": "VizPointDoubleClick", "kind": 16, "kindString": "Enumeration member", @@ -6531,7 +6531,7 @@ "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 1944, + "id": 1955, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -6564,85 +6564,85 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1909, - 1889, - 1933, - 1894, - 1929, - 1916, - 1956, - 1895, - 1883, + 1920, + 1900, + 1944, + 1905, 1940, 1927, - 1942, - 1922, - 1950, - 1961, - 1962, - 1955, - 1943, - 1890, - 1885, - 1888, + 1967, + 1906, + 1894, + 1951, 1938, + 1953, + 1933, + 1961, + 1972, + 1973, + 1966, 1954, - 1907, - 1906, - 1911, - 1914, - 1913, - 1912, - 1915, - 1921, - 1920, - 1887, - 1935, - 1924, - 1893, - 1941, + 1901, + 1896, + 1899, + 1949, + 1965, + 1918, + 1917, + 1922, 1925, + 1924, + 1923, + 1926, + 1932, + 1931, + 1898, 1946, - 1901, - 1882, + 1935, + 1904, + 1952, + 1936, + 1957, + 1912, + 1893, + 1980, + 1979, + 1943, + 1919, + 1895, + 1947, + 1915, 1969, + 1984, + 1970, + 1928, + 1948, + 1977, + 1897, 1968, - 1932, - 1908, - 1884, - 1936, - 1904, + 1964, + 1981, + 1913, 1958, - 1973, 1959, - 1917, + 1921, 1937, - 1966, - 1886, - 1957, - 1953, - 1970, - 1902, - 1947, - 1948, - 1910, - 1926, - 1952, - 1934, + 1963, + 1945, + 1950, + 1930, 1939, - 1919, - 1928, - 1918, - 1965, + 1929, + 1976, + 1982, + 1978, 1971, - 1967, 1960, - 1949, - 1951, - 1923, - 1892, - 1891, - 1944 + 1962, + 1934, + 1903, + 1902, + 1955 ] } ], @@ -6655,7 +6655,7 @@ ] }, { - "id": 2544, + "id": 2555, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -6665,7 +6665,7 @@ }, "children": [ { - "id": 2548, + "id": 2559, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -6688,7 +6688,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2552, + "id": 2563, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6712,7 +6712,7 @@ "defaultValue": "\"create\"" }, { - "id": 2554, + "id": 2565, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -6736,7 +6736,7 @@ "defaultValue": "\"favorites\"" }, { - "id": 2546, + "id": 2557, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6759,7 +6759,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2551, + "id": 2562, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6782,7 +6782,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2547, + "id": 2558, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6805,7 +6805,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2549, + "id": 2560, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6828,7 +6828,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2545, + "id": 2556, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6851,7 +6851,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2550, + "id": 2561, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6874,7 +6874,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2553, + "id": 2564, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -6903,16 +6903,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2548, - 2552, - 2554, - 2546, - 2551, - 2547, - 2549, - 2545, - 2550, - 2553 + 2559, + 2563, + 2565, + 2557, + 2562, + 2558, + 2560, + 2556, + 2561, + 2564 ] } ], @@ -6925,7 +6925,7 @@ ] }, { - "id": 2805, + "id": 2816, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -6941,7 +6941,7 @@ }, "children": [ { - "id": 2806, + "id": 2817, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -6959,7 +6959,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2807, + "id": 2818, "name": "ModularWithStylingChanges", "kind": 16, "kindString": "Enumeration member", @@ -6982,8 +6982,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2806, - 2807 + 2817, + 2818 ] } ], @@ -6996,14 +6996,14 @@ ] }, { - "id": 2799, + "id": 2810, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2801, + "id": 2812, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -7018,7 +7018,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2802, + "id": 2813, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -7033,7 +7033,7 @@ "defaultValue": "\"none\"" }, { - "id": 2800, + "id": 2811, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -7053,9 +7053,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2801, - 2802, - 2800 + 2812, + 2813, + 2811 ] } ], @@ -7068,7 +7068,7 @@ ] }, { - "id": 2555, + "id": 2566, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -7084,7 +7084,7 @@ }, "children": [ { - "id": 2558, + "id": 2569, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -7102,7 +7102,7 @@ "defaultValue": "\"FAVORITE\"" }, { - "id": 2561, + "id": 2572, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -7120,7 +7120,7 @@ "defaultValue": "\"LEARNING\"" }, { - "id": 2559, + "id": 2570, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -7138,7 +7138,7 @@ "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2556, + "id": 2567, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7156,7 +7156,7 @@ "defaultValue": "\"SEARCH\"" }, { - "id": 2560, + "id": 2571, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -7174,7 +7174,7 @@ "defaultValue": "\"TRENDING\"" }, { - "id": 2557, + "id": 2568, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -7197,12 +7197,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2558, - 2561, - 2559, - 2556, - 2560, - 2557 + 2569, + 2572, + 2570, + 2567, + 2571, + 2568 ] } ], @@ -7215,7 +7215,7 @@ ] }, { - "id": 1974, + "id": 1985, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -7244,7 +7244,7 @@ }, "children": [ { - "id": 1985, + "id": 1996, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -7277,7 +7277,7 @@ "defaultValue": "\"addColumns\"" }, { - "id": 2040, + "id": 2051, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -7310,7 +7310,7 @@ "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2025, + "id": 2036, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -7338,7 +7338,7 @@ "defaultValue": "\"AskSage\"" }, { - "id": 2043, + "id": 2054, "name": "AskSpotter", "kind": 16, "kindString": "Enumeration member", @@ -7371,7 +7371,7 @@ "defaultValue": "\"AskSpotter\"" }, { - "id": 2002, + "id": 2013, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -7404,7 +7404,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 1999, + "id": 2010, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -7441,7 +7441,7 @@ "defaultValue": "\"createMonitor\"" }, { - "id": 2006, + "id": 2017, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -7474,7 +7474,7 @@ "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2039, + "id": 2050, "name": "DeleteLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -7502,7 +7502,7 @@ "defaultValue": "\"DeleteLastPrompt\"" }, { - "id": 2008, + "id": 2019, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -7539,7 +7539,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 2010, + "id": 2021, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -7572,7 +7572,7 @@ "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1995, + "id": 2006, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -7609,7 +7609,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2009, + "id": 2020, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -7637,7 +7637,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 2011, + "id": 2022, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -7670,7 +7670,7 @@ "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1976, + "id": 1987, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -7727,7 +7727,7 @@ "defaultValue": "\"triggerDrillDown\"" }, { - "id": 2001, + "id": 2012, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -7774,7 +7774,7 @@ "defaultValue": "\"edit\"" }, { - "id": 2036, + "id": 2047, "name": "EditLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -7807,7 +7807,7 @@ "defaultValue": "\"EditLastPrompt\"" }, { - "id": 1993, + "id": 2004, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -7835,7 +7835,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 1998, + "id": 2009, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -7868,7 +7868,7 @@ "defaultValue": "\"explore\"" }, { - "id": 1992, + "id": 2003, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -7896,7 +7896,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 2024, + "id": 2035, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -7929,7 +7929,7 @@ "defaultValue": "\"getAnswerSession\"" }, { - "id": 2018, + "id": 2029, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -7957,7 +7957,7 @@ "defaultValue": "\"getFilters\"" }, { - "id": 1979, + "id": 1990, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -7985,7 +7985,7 @@ "defaultValue": "\"GetIframeUrl\"" }, { - "id": 2029, + "id": 2040, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -8014,7 +8014,7 @@ "defaultValue": "\"GetParameters\"" }, { - "id": 2004, + "id": 2015, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -8050,7 +8050,7 @@ "defaultValue": "\"getTML\"" }, { - "id": 2020, + "id": 2031, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -8078,7 +8078,7 @@ "defaultValue": "\"getTabs\"" }, { - "id": 1989, + "id": 2000, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -8106,7 +8106,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 1996, + "id": 2007, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -8150,7 +8150,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 2000, + "id": 2011, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -8191,7 +8191,7 @@ "defaultValue": "\"manageMonitor\"" }, { - "id": 2016, + "id": 2027, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -8224,7 +8224,7 @@ "defaultValue": "\"manage-pipeline\"" }, { - "id": 1983, + "id": 1994, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -8257,7 +8257,7 @@ "defaultValue": "\"Navigate\"" }, { - "id": 1984, + "id": 1995, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -8294,7 +8294,7 @@ "defaultValue": "\"openFilter\"" }, { - "id": 1988, + "id": 1999, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -8362,7 +8362,7 @@ "defaultValue": "\"pin\"" }, { - "id": 2003, + "id": 2014, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -8395,7 +8395,7 @@ "defaultValue": "\"present\"" }, { - "id": 2037, + "id": 2048, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -8423,7 +8423,7 @@ "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 1997, + "id": 2008, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -8455,7 +8455,7 @@ "defaultValue": "\"delete\"" }, { - "id": 1986, + "id": 1997, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -8488,7 +8488,7 @@ "defaultValue": "\"removeColumn\"" }, { - "id": 2027, + "id": 2038, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8516,7 +8516,7 @@ "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 2017, + "id": 2028, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -8544,7 +8544,7 @@ "defaultValue": "\"resetSearch\"" }, { - "id": 2038, + "id": 2049, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -8572,7 +8572,7 @@ "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 2013, + "id": 2024, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -8605,7 +8605,7 @@ "defaultValue": "\"save\"" }, { - "id": 2032, + "id": 2043, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -8647,7 +8647,7 @@ "defaultValue": "\"saveAnswer\"" }, { - "id": 1990, + "id": 2001, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -8675,7 +8675,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 1991, + "id": 2002, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -8703,7 +8703,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 1975, + "id": 1986, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -8742,7 +8742,7 @@ "defaultValue": "\"search\"" }, { - "id": 1981, + "id": 1992, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -8775,7 +8775,7 @@ "defaultValue": "\"SetActiveTab\"" }, { - "id": 2022, + "id": 2033, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -8808,7 +8808,7 @@ "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 2021, + "id": 2032, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -8841,7 +8841,7 @@ "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 1980, + "id": 1991, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -8874,7 +8874,7 @@ "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 2012, + "id": 2023, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8902,7 +8902,7 @@ "defaultValue": "\"share\"" }, { - "id": 2005, + "id": 2016, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -8935,7 +8935,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2007, + "id": 2018, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -8968,7 +8968,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2035, + "id": 2046, "name": "SpotterSearch", "kind": 16, "kindString": "Enumeration member", @@ -9006,7 +9006,7 @@ "defaultValue": "\"SpotterSearch\"" }, { - "id": 2015, + "id": 2026, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -9039,7 +9039,7 @@ "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2014, + "id": 2025, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -9072,7 +9072,7 @@ "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2034, + "id": 2045, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -9105,7 +9105,7 @@ "defaultValue": "\"TransformTableVizData\"" }, { - "id": 2026, + "id": 2037, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -9133,7 +9133,7 @@ "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 2019, + "id": 2030, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -9161,7 +9161,7 @@ }, { "tag": "example", - "text": "\n\n```js\nliveboardEmbed.trigger(HostEvent.UpdateFilters, {\n filters: [{\n column: \"Item Type\",\n oper: 'IN',\n values: [\"bags\",\"shirts\"]\n },\n {\n column: \"Region\",\n oper: 'IN',\n values: [\"West\",\"Midwest\"]\n },\n {\n column: \"Date\",\n oper: 'EQ',\n values: [\"2023-07-31\"],\n types: \"EXACT_DATE\"\n }]\n});\n```\nIf there are multiple columns with the same name, consider\nusing `WORKSHEET_NAME::COLUMN_NAME` format.\n" + "text": "\n\n```js\nliveboardEmbed.trigger(HostEvent.UpdateFilters, {\n filters: [{\n column: \"Item Type\",\n oper: 'IN',\n values: [\"bags\",\"shirts\"]\n },\n {\n column: \"Region\",\n oper: 'IN',\n values: [\"West\",\"Midwest\"]\n },\n {\n column: \"Date\",\n oper: 'EQ',\n values: [\"2023-07-31\"],\n type: \"EXACT_DATE\"\n }]\n});\n```\nIf there are multiple columns with the same name, consider\nusing `WORKSHEET_NAME::COLUMN_NAME` format.\n" }, { "tag": "example", @@ -9183,7 +9183,7 @@ "defaultValue": "\"updateFilters\"" }, { - "id": 2028, + "id": 2039, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -9207,7 +9207,7 @@ "defaultValue": "\"UpdateParameters\"" }, { - "id": 2030, + "id": 2041, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -9231,7 +9231,7 @@ "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 1982, + "id": 1993, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -9269,7 +9269,7 @@ "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 2023, + "id": 2034, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -9307,7 +9307,7 @@ "defaultValue": "\"updateSageQuery\"" }, { - "id": 1994, + "id": 2005, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -9335,7 +9335,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 1987, + "id": 1998, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -9368,69 +9368,69 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1985, - 2040, - 2025, - 2043, - 2002, - 1999, - 2006, - 2039, - 2008, + 1996, + 2051, + 2036, + 2054, + 2013, 2010, - 1995, + 2017, + 2050, + 2019, + 2021, + 2006, + 2020, + 2022, + 1987, + 2012, + 2047, + 2004, 2009, - 2011, - 1976, - 2001, - 2036, - 1993, - 1998, - 1992, - 2024, - 2018, - 1979, + 2003, + 2035, 2029, - 2004, - 2020, - 1989, - 1996, + 1990, + 2040, + 2015, + 2031, 2000, - 2016, - 1983, - 1984, - 1988, - 2003, - 2037, - 1997, - 1986, + 2007, + 2011, 2027, - 2017, + 1994, + 1995, + 1999, + 2014, + 2048, + 2008, + 1997, 2038, - 2013, + 2028, + 2049, + 2024, + 2043, + 2001, + 2002, + 1986, + 1992, + 2033, 2032, - 1990, 1991, - 1975, - 1981, - 2022, - 2021, - 1980, - 2012, - 2005, - 2007, - 2035, - 2015, - 2014, - 2034, + 2023, + 2016, + 2018, + 2046, 2026, - 2019, - 2028, + 2025, + 2045, + 2037, 2030, - 1982, - 2023, - 1994, - 1987 + 2039, + 2041, + 1993, + 2034, + 2005, + 1998 ] } ], @@ -9443,7 +9443,7 @@ ] }, { - "id": 2808, + "id": 2819, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -9459,7 +9459,7 @@ }, "children": [ { - "id": 2809, + "id": 2820, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -9477,7 +9477,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2810, + "id": 2821, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -9500,8 +9500,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2809, - 2810 + 2820, + 2821 ] } ], @@ -9514,7 +9514,7 @@ ] }, { - "id": 2841, + "id": 2852, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -9530,7 +9530,7 @@ }, "children": [ { - "id": 2844, + "id": 2855, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -9548,7 +9548,7 @@ "defaultValue": "\"AUTHOR\"" }, { - "id": 2845, + "id": 2856, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -9566,7 +9566,7 @@ "defaultValue": "\"DATE_SORT\"" }, { - "id": 2842, + "id": 2853, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -9584,7 +9584,7 @@ "defaultValue": "\"FAVOURITE\"" }, { - "id": 2846, + "id": 2857, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -9602,7 +9602,7 @@ "defaultValue": "\"SHARE\"" }, { - "id": 2843, + "id": 2854, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -9625,11 +9625,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2844, - 2845, - 2842, - 2846, - 2843 + 2855, + 2856, + 2853, + 2857, + 2854 ] } ], @@ -9642,7 +9642,7 @@ ] }, { - "id": 2776, + "id": 2787, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -9652,7 +9652,7 @@ }, "children": [ { - "id": 2781, + "id": 2792, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -9680,7 +9680,7 @@ "defaultValue": "\"DEBUG\"" }, { - "id": 2778, + "id": 2789, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -9708,7 +9708,7 @@ "defaultValue": "\"ERROR\"" }, { - "id": 2780, + "id": 2791, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -9736,7 +9736,7 @@ "defaultValue": "\"INFO\"" }, { - "id": 2777, + "id": 2788, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -9764,7 +9764,7 @@ "defaultValue": "\"SILENT\"" }, { - "id": 2782, + "id": 2793, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -9792,7 +9792,7 @@ "defaultValue": "\"TRACE\"" }, { - "id": 2779, + "id": 2790, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -9825,12 +9825,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2781, - 2778, - 2780, - 2777, - 2782, - 2779 + 2792, + 2789, + 2791, + 2788, + 2793, + 2790 ] } ], @@ -9843,7 +9843,7 @@ ] }, { - "id": 1840, + "id": 1851, "name": "Page", "kind": 4, "kindString": "Enumeration", @@ -9853,7 +9853,7 @@ }, "children": [ { - "id": 1843, + "id": 1854, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -9871,7 +9871,7 @@ "defaultValue": "\"answers\"" }, { - "id": 1846, + "id": 1857, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -9889,7 +9889,7 @@ "defaultValue": "\"data\"" }, { - "id": 1841, + "id": 1852, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -9907,7 +9907,7 @@ "defaultValue": "\"home\"" }, { - "id": 1844, + "id": 1855, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -9925,7 +9925,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 1848, + "id": 1859, "name": "Monitor", "kind": 16, "kindString": "Enumeration member", @@ -9943,7 +9943,7 @@ "defaultValue": "\"monitor\"" }, { - "id": 1842, + "id": 1853, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -9961,7 +9961,7 @@ "defaultValue": "\"search\"" }, { - "id": 1847, + "id": 1858, "name": "SpotIQ", "kind": 16, "kindString": "Enumeration member", @@ -9984,13 +9984,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1843, - 1846, - 1841, - 1844, - 1848, - 1842, - 1847 + 1854, + 1857, + 1852, + 1855, + 1859, + 1853, + 1858 ] } ], @@ -10003,14 +10003,14 @@ ] }, { - "id": 2533, + "id": 2544, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2534, + "id": 2545, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -10025,7 +10025,7 @@ "defaultValue": "\"FullApp\"" }, { - "id": 2536, + "id": 2547, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10040,7 +10040,7 @@ "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2535, + "id": 2546, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10055,7 +10055,7 @@ "defaultValue": "\"SearchEmbed\"" }, { - "id": 2537, + "id": 2548, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10075,10 +10075,10 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2534, - 2536, - 2535, - 2537 + 2545, + 2547, + 2546, + 2548 ] } ], @@ -10091,7 +10091,7 @@ ] }, { - "id": 2803, + "id": 2814, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -10107,7 +10107,7 @@ }, "children": [ { - "id": 2804, + "id": 2815, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -10130,7 +10130,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2804 + 2815 ] } ], @@ -10143,7 +10143,7 @@ ] }, { - "id": 1865, + "id": 1876, "name": "RuntimeFilterOp", "kind": 4, "kindString": "Enumeration", @@ -10153,7 +10153,7 @@ }, "children": [ { - "id": 1873, + "id": 1884, "name": "BEGINS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -10171,7 +10171,7 @@ "defaultValue": "\"BEGINS_WITH\"" }, { - "id": 1878, + "id": 1889, "name": "BW", "kind": 16, "kindString": "Enumeration member", @@ -10189,7 +10189,7 @@ "defaultValue": "\"BW\"" }, { - "id": 1877, + "id": 1888, "name": "BW_INC", "kind": 16, "kindString": "Enumeration member", @@ -10207,7 +10207,7 @@ "defaultValue": "\"BW_INC\"" }, { - "id": 1875, + "id": 1886, "name": "BW_INC_MAX", "kind": 16, "kindString": "Enumeration member", @@ -10225,7 +10225,7 @@ "defaultValue": "\"BW_INC_MAX\"" }, { - "id": 1876, + "id": 1887, "name": "BW_INC_MIN", "kind": 16, "kindString": "Enumeration member", @@ -10243,7 +10243,7 @@ "defaultValue": "\"BW_INC_MIN\"" }, { - "id": 1872, + "id": 1883, "name": "CONTAINS", "kind": 16, "kindString": "Enumeration member", @@ -10261,7 +10261,7 @@ "defaultValue": "\"CONTAINS\"" }, { - "id": 1874, + "id": 1885, "name": "ENDS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -10279,7 +10279,7 @@ "defaultValue": "\"ENDS_WITH\"" }, { - "id": 1866, + "id": 1877, "name": "EQ", "kind": 16, "kindString": "Enumeration member", @@ -10297,7 +10297,7 @@ "defaultValue": "\"EQ\"" }, { - "id": 1871, + "id": 1882, "name": "GE", "kind": 16, "kindString": "Enumeration member", @@ -10315,7 +10315,7 @@ "defaultValue": "\"GE\"" }, { - "id": 1870, + "id": 1881, "name": "GT", "kind": 16, "kindString": "Enumeration member", @@ -10333,7 +10333,7 @@ "defaultValue": "\"GT\"" }, { - "id": 1879, + "id": 1890, "name": "IN", "kind": 16, "kindString": "Enumeration member", @@ -10351,7 +10351,7 @@ "defaultValue": "\"IN\"" }, { - "id": 1869, + "id": 1880, "name": "LE", "kind": 16, "kindString": "Enumeration member", @@ -10369,7 +10369,7 @@ "defaultValue": "\"LE\"" }, { - "id": 1868, + "id": 1879, "name": "LT", "kind": 16, "kindString": "Enumeration member", @@ -10387,7 +10387,7 @@ "defaultValue": "\"LT\"" }, { - "id": 1867, + "id": 1878, "name": "NE", "kind": 16, "kindString": "Enumeration member", @@ -10405,7 +10405,7 @@ "defaultValue": "\"NE\"" }, { - "id": 1880, + "id": 1891, "name": "NOT_IN", "kind": 16, "kindString": "Enumeration member", @@ -10428,21 +10428,21 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1873, - 1878, + 1884, + 1889, + 1888, + 1886, + 1887, + 1883, + 1885, 1877, - 1875, - 1876, - 1872, - 1874, - 1866, - 1871, - 1870, + 1882, + 1881, + 1890, + 1880, 1879, - 1869, - 1868, - 1867, - 1880 + 1878, + 1891 ] } ], @@ -10455,14 +10455,14 @@ ] }, { - "id": 2834, + "id": 2845, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2839, + "id": 2850, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -10477,7 +10477,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2838, + "id": 2849, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -10492,7 +10492,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2837, + "id": 2848, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -10507,7 +10507,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2840, + "id": 2851, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -10522,7 +10522,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2835, + "id": 2846, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -10537,7 +10537,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2836, + "id": 2847, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -10557,12 +10557,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2839, - 2838, - 2837, - 2840, - 2835, - 2836 + 2850, + 2849, + 2848, + 2851, + 2846, + 2847 ] } ], @@ -10575,7 +10575,7 @@ ] }, { - "id": 1757, + "id": 1768, "name": "AnswerService", "kind": 128, "kindString": "Class", @@ -10604,7 +10604,7 @@ }, "children": [ { - "id": 1758, + "id": 1769, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -10621,7 +10621,7 @@ ], "signatures": [ { - "id": 1759, + "id": 1770, "name": "new AnswerService", "kind": 16384, "kindString": "Constructor signature", @@ -10631,7 +10631,7 @@ }, "parameters": [ { - "id": 1760, + "id": 1771, "name": "session", "kind": 32768, "kindString": "Parameter", @@ -10639,12 +10639,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1830, + "id": 1841, "name": "SessionInterface" } }, { - "id": 1761, + "id": 1772, "name": "answer", "kind": 32768, "kindString": "Parameter", @@ -10656,7 +10656,7 @@ } }, { - "id": 1762, + "id": 1773, "name": "thoughtSpotHost", "kind": 32768, "kindString": "Parameter", @@ -10668,7 +10668,7 @@ } }, { - "id": 1763, + "id": 1774, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -10682,7 +10682,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2811, + "id": 2822, "name": "VizPoint" } } @@ -10690,14 +10690,14 @@ ], "type": { "type": "reference", - "id": 1757, + "id": 1768, "name": "AnswerService" } } ] }, { - "id": 1772, + "id": 1783, "name": "addColumns", "kind": 2048, "kindString": "Method", @@ -10713,7 +10713,7 @@ ], "signatures": [ { - "id": 1773, + "id": 1784, "name": "addColumns", "kind": 4096, "kindString": "Call signature", @@ -10724,7 +10724,7 @@ }, "parameters": [ { - "id": 1774, + "id": 1785, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -10753,7 +10753,7 @@ ] }, { - "id": 1775, + "id": 1786, "name": "addColumnsByName", "kind": 2048, "kindString": "Method", @@ -10769,7 +10769,7 @@ ], "signatures": [ { - "id": 1776, + "id": 1787, "name": "addColumnsByName", "kind": 4096, "kindString": "Call signature", @@ -10785,7 +10785,7 @@ }, "parameters": [ { - "id": 1777, + "id": 1788, "name": "columnNames", "kind": 32768, "kindString": "Parameter", @@ -10814,7 +10814,7 @@ ] }, { - "id": 1824, + "id": 1835, "name": "addDisplayedVizToLiveboard", "kind": 2048, "kindString": "Method", @@ -10830,14 +10830,14 @@ ], "signatures": [ { - "id": 1825, + "id": 1836, "name": "addDisplayedVizToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1826, + "id": 1837, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -10862,7 +10862,7 @@ ] }, { - "id": 1778, + "id": 1789, "name": "addFilter", "kind": 2048, "kindString": "Method", @@ -10878,7 +10878,7 @@ ], "signatures": [ { - "id": 1779, + "id": 1790, "name": "addFilter", "kind": 4096, "kindString": "Call signature", @@ -10889,7 +10889,7 @@ }, "parameters": [ { - "id": 1780, + "id": 1791, "name": "columnName", "kind": 32768, "kindString": "Parameter", @@ -10901,7 +10901,7 @@ } }, { - "id": 1781, + "id": 1792, "name": "operator", "kind": 32768, "kindString": "Parameter", @@ -10909,12 +10909,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1865, + "id": 1876, "name": "RuntimeFilterOp" } }, { - "id": 1782, + "id": 1793, "name": "values", "kind": 32768, "kindString": "Parameter", @@ -10960,7 +10960,7 @@ ] }, { - "id": 1814, + "id": 1825, "name": "executeQuery", "kind": 2048, "kindString": "Method", @@ -10976,7 +10976,7 @@ ], "signatures": [ { - "id": 1815, + "id": 1826, "name": "executeQuery", "kind": 4096, "kindString": "Call signature", @@ -10987,7 +10987,7 @@ }, "parameters": [ { - "id": 1816, + "id": 1827, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -11001,7 +11001,7 @@ } }, { - "id": 1817, + "id": 1828, "name": "variables", "kind": 32768, "kindString": "Parameter", @@ -11029,7 +11029,7 @@ ] }, { - "id": 1792, + "id": 1803, "name": "fetchCSVBlob", "kind": 2048, "kindString": "Method", @@ -11045,7 +11045,7 @@ ], "signatures": [ { - "id": 1793, + "id": 1804, "name": "fetchCSVBlob", "kind": 4096, "kindString": "Call signature", @@ -11056,7 +11056,7 @@ }, "parameters": [ { - "id": 1794, + "id": 1805, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11069,7 +11069,7 @@ "defaultValue": "'en-us'" }, { - "id": 1795, + "id": 1806, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -11098,7 +11098,7 @@ ] }, { - "id": 1785, + "id": 1796, "name": "fetchData", "kind": 2048, "kindString": "Method", @@ -11114,7 +11114,7 @@ ], "signatures": [ { - "id": 1786, + "id": 1797, "name": "fetchData", "kind": 4096, "kindString": "Call signature", @@ -11125,7 +11125,7 @@ }, "parameters": [ { - "id": 1787, + "id": 1798, "name": "offset", "kind": 32768, "kindString": "Parameter", @@ -11138,7 +11138,7 @@ "defaultValue": "0" }, { - "id": 1788, + "id": 1799, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -11157,14 +11157,14 @@ { "type": "reflection", "declaration": { - "id": 1789, + "id": 1800, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1790, + "id": 1801, "name": "columns", "kind": 1024, "kindString": "Property", @@ -11175,7 +11175,7 @@ } }, { - "id": 1791, + "id": 1802, "name": "data", "kind": 1024, "kindString": "Property", @@ -11191,8 +11191,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1790, - 1791 + 1801, + 1802 ] } ] @@ -11205,7 +11205,7 @@ ] }, { - "id": 1796, + "id": 1807, "name": "fetchPNGBlob", "kind": 2048, "kindString": "Method", @@ -11221,7 +11221,7 @@ ], "signatures": [ { - "id": 1797, + "id": 1808, "name": "fetchPNGBlob", "kind": 4096, "kindString": "Call signature", @@ -11232,7 +11232,7 @@ }, "parameters": [ { - "id": 1798, + "id": 1809, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11245,7 +11245,7 @@ "defaultValue": "'en-us'" }, { - "id": 1799, + "id": 1810, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -11260,7 +11260,7 @@ "defaultValue": "false" }, { - "id": 1800, + "id": 1811, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -11289,7 +11289,7 @@ ] }, { - "id": 1820, + "id": 1831, "name": "getAnswer", "kind": 2048, "kindString": "Method", @@ -11305,7 +11305,7 @@ ], "signatures": [ { - "id": 1821, + "id": 1832, "name": "getAnswer", "kind": 4096, "kindString": "Call signature", @@ -11324,7 +11324,7 @@ ] }, { - "id": 1801, + "id": 1812, "name": "getFetchCSVBlobUrl", "kind": 2048, "kindString": "Method", @@ -11340,7 +11340,7 @@ ], "signatures": [ { - "id": 1802, + "id": 1813, "name": "getFetchCSVBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -11351,7 +11351,7 @@ }, "parameters": [ { - "id": 1803, + "id": 1814, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11364,7 +11364,7 @@ "defaultValue": "'en-us'" }, { - "id": 1804, + "id": 1815, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -11385,7 +11385,7 @@ ] }, { - "id": 1805, + "id": 1816, "name": "getFetchPNGBlobUrl", "kind": 2048, "kindString": "Method", @@ -11401,7 +11401,7 @@ ], "signatures": [ { - "id": 1806, + "id": 1817, "name": "getFetchPNGBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -11411,7 +11411,7 @@ }, "parameters": [ { - "id": 1807, + "id": 1818, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11424,7 +11424,7 @@ "defaultValue": "'en-us'" }, { - "id": 1808, + "id": 1819, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -11437,7 +11437,7 @@ "defaultValue": "false" }, { - "id": 1809, + "id": 1820, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -11460,7 +11460,7 @@ ] }, { - "id": 1783, + "id": 1794, "name": "getSQLQuery", "kind": 2048, "kindString": "Method", @@ -11476,7 +11476,7 @@ ], "signatures": [ { - "id": 1784, + "id": 1795, "name": "getSQLQuery", "kind": 4096, "kindString": "Call signature", @@ -11495,7 +11495,7 @@ ] }, { - "id": 1818, + "id": 1829, "name": "getSession", "kind": 2048, "kindString": "Method", @@ -11511,7 +11511,7 @@ ], "signatures": [ { - "id": 1819, + "id": 1830, "name": "getSession", "kind": 4096, "kindString": "Call signature", @@ -11522,14 +11522,14 @@ }, "type": { "type": "reference", - "id": 1830, + "id": 1841, "name": "SessionInterface" } } ] }, { - "id": 1767, + "id": 1778, "name": "getSourceDetail", "kind": 2048, "kindString": "Method", @@ -11545,7 +11545,7 @@ ], "signatures": [ { - "id": 1768, + "id": 1779, "name": "getSourceDetail", "kind": 4096, "kindString": "Call signature", @@ -11567,7 +11567,7 @@ ] }, { - "id": 1822, + "id": 1833, "name": "getTML", "kind": 2048, "kindString": "Method", @@ -11583,7 +11583,7 @@ ], "signatures": [ { - "id": 1823, + "id": 1834, "name": "getTML", "kind": 4096, "kindString": "Call signature", @@ -11602,7 +11602,7 @@ ] }, { - "id": 1810, + "id": 1821, "name": "getUnderlyingDataForPoint", "kind": 2048, "kindString": "Method", @@ -11618,7 +11618,7 @@ ], "signatures": [ { - "id": 1811, + "id": 1822, "name": "getUnderlyingDataForPoint", "kind": 4096, "kindString": "Call signature", @@ -11638,7 +11638,7 @@ }, "parameters": [ { - "id": 1812, + "id": 1823, "name": "outputColumnNames", "kind": 32768, "kindString": "Parameter", @@ -11653,7 +11653,7 @@ } }, { - "id": 1813, + "id": 1824, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -11665,7 +11665,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1837, + "id": 1848, "name": "UnderlyingDataPoint" } } @@ -11676,7 +11676,7 @@ "typeArguments": [ { "type": "reference", - "id": 1757, + "id": 1768, "name": "AnswerService" } ], @@ -11686,7 +11686,7 @@ ] }, { - "id": 1769, + "id": 1780, "name": "removeColumns", "kind": 2048, "kindString": "Method", @@ -11702,7 +11702,7 @@ ], "signatures": [ { - "id": 1770, + "id": 1781, "name": "removeColumns", "kind": 4096, "kindString": "Call signature", @@ -11713,7 +11713,7 @@ }, "parameters": [ { - "id": 1771, + "id": 1782, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -11742,7 +11742,7 @@ ] }, { - "id": 1827, + "id": 1838, "name": "setTMLOverride", "kind": 2048, "kindString": "Method", @@ -11758,14 +11758,14 @@ ], "signatures": [ { - "id": 1828, + "id": 1839, "name": "setTMLOverride", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1829, + "id": 1840, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -11789,31 +11789,31 @@ "title": "Constructors", "kind": 512, "children": [ - 1758 + 1769 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1772, - 1775, - 1824, - 1778, - 1814, - 1792, - 1785, - 1796, - 1820, - 1801, - 1805, 1783, - 1818, - 1767, - 1822, - 1810, - 1769, - 1827 + 1786, + 1835, + 1789, + 1825, + 1803, + 1796, + 1807, + 1831, + 1812, + 1816, + 1794, + 1829, + 1778, + 1833, + 1821, + 1780, + 1838 ] } ], @@ -11826,7 +11826,7 @@ ] }, { - "id": 961, + "id": 969, "name": "AppEmbed", "kind": 128, "kindString": "Class", @@ -11842,7 +11842,7 @@ }, "children": [ { - "id": 962, + "id": 970, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -11856,40 +11856,40 @@ ], "signatures": [ { - "id": 963, + "id": 971, "name": "new AppEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 964, + "id": 972, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2562, + "id": 2573, "name": "DOMSelector" } }, { - "id": 965, + "id": 973, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2453, + "id": 2464, "name": "AppViewConfig" } } ], "type": { "type": "reference", - "id": 961, + "id": 969, "name": "AppEmbed" }, "overwrites": { @@ -11904,7 +11904,7 @@ } }, { - "id": 999, + "id": 1007, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -11920,7 +11920,7 @@ ], "signatures": [ { - "id": 1000, + "id": 1008, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -11950,7 +11950,7 @@ } }, { - "id": 1163, + "id": 1172, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -11960,13 +11960,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1511, + "line": 1517, "character": 17 } ], "signatures": [ { - "id": 1164, + "id": 1173, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -11982,7 +11982,7 @@ }, "parameters": [ { - "id": 1165, + "id": 1174, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -12003,7 +12003,7 @@ "typeArguments": [ { "type": "reference", - "id": 1757, + "id": 1768, "name": "AnswerService" } ], @@ -12021,7 +12021,7 @@ } }, { - "id": 976, + "id": 984, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -12037,7 +12037,7 @@ ], "signatures": [ { - "id": 977, + "id": 985, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -12053,7 +12053,7 @@ ] }, { - "id": 1133, + "id": 1141, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -12069,7 +12069,7 @@ ], "signatures": [ { - "id": 1134, + "id": 1142, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -12090,7 +12090,7 @@ } }, { - "id": 1158, + "id": 1167, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -12100,13 +12100,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1498, + "line": 1504, "character": 11 } ], "signatures": [ { - "id": 1159, + "id": 1168, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -12128,14 +12128,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1160, + "id": 1169, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1162, + "id": 1171, "name": "child", "kind": 1024, "kindString": "Property", @@ -12147,7 +12147,7 @@ "defaultValue": "..." }, { - "id": 1161, + "id": 1170, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -12164,8 +12164,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1162, - 1161 + 1171, + 1170 ] } ] @@ -12183,7 +12183,7 @@ } }, { - "id": 1140, + "id": 1149, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -12193,13 +12193,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1298, + "line": 1304, "character": 11 } ], "signatures": [ { - "id": 1141, + "id": 1150, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -12215,7 +12215,7 @@ }, "parameters": [ { - "id": 1142, + "id": 1151, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -12223,20 +12223,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1143, + "id": 1152, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1144, + "id": 1153, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1145, + "id": 1154, "name": "key", "kind": 32768, "flags": {}, @@ -12281,7 +12281,7 @@ } }, { - "id": 1146, + "id": 1155, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -12291,13 +12291,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1338, + "line": 1344, "character": 11 } ], "signatures": [ { - "id": 1147, + "id": 1156, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -12318,7 +12318,7 @@ } }, { - "id": 1156, + "id": 1165, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -12328,13 +12328,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1470, + "line": 1476, "character": 11 } ], "signatures": [ { - "id": 1157, + "id": 1166, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -12358,7 +12358,7 @@ } }, { - "id": 995, + "id": 1003, "name": "navigateToPage", "kind": 2048, "kindString": "Method", @@ -12374,7 +12374,7 @@ ], "signatures": [ { - "id": 996, + "id": 1004, "name": "navigateToPage", "kind": 4096, "kindString": "Call signature", @@ -12390,7 +12390,7 @@ }, "parameters": [ { - "id": 997, + "id": 1005, "name": "path", "kind": 32768, "kindString": "Parameter", @@ -12413,7 +12413,7 @@ } }, { - "id": 998, + "id": 1006, "name": "noReload", "kind": 32768, "kindString": "Parameter", @@ -12436,7 +12436,7 @@ ] }, { - "id": 1104, + "id": 1112, "name": "off", "kind": 2048, "kindString": "Method", @@ -12452,7 +12452,7 @@ ], "signatures": [ { - "id": 1105, + "id": 1113, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -12468,7 +12468,7 @@ }, "parameters": [ { - "id": 1106, + "id": 1114, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12478,12 +12478,12 @@ }, "type": { "type": "reference", - "id": 1881, + "id": 1892, "name": "EmbedEvent" } }, { - "id": 1107, + "id": 1115, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -12493,7 +12493,7 @@ }, "type": { "type": "reference", - "id": 2566, + "id": 2577, "name": "MessageCallback" } } @@ -12514,7 +12514,7 @@ } }, { - "id": 1014, + "id": 1022, "name": "on", "kind": 2048, "kindString": "Method", @@ -12524,13 +12524,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1620, + "line": 1626, "character": 11 } ], "signatures": [ { - "id": 1015, + "id": 1023, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -12553,38 +12553,38 @@ }, "parameters": [ { - "id": 1016, + "id": 1024, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1881, + "id": 1892, "name": "EmbedEvent" } }, { - "id": 1017, + "id": 1025, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2566, + "id": 2577, "name": "MessageCallback" } }, { - "id": 1018, + "id": 1026, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2563, + "id": 2574, "name": "MessageOptions" }, "defaultValue": "..." @@ -12606,7 +12606,7 @@ } }, { - "id": 1137, + "id": 1145, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -12622,7 +12622,7 @@ ], "signatures": [ { - "id": 1138, + "id": 1146, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -12632,7 +12632,7 @@ }, "parameters": [ { - "id": 1139, + "id": 1147, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -12645,6 +12645,18 @@ "name": "boolean" }, "defaultValue": "false" + }, + { + "id": 1148, + "name": "replaceExistingPreRender", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "defaultValue": "false" } ], "type": { @@ -12669,7 +12681,7 @@ } }, { - "id": 1148, + "id": 1157, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -12679,13 +12691,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1349, + "line": 1355, "character": 17 } ], "signatures": [ { - "id": 1149, + "id": 1158, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -12722,7 +12734,7 @@ } }, { - "id": 1007, + "id": 1015, "name": "render", "kind": 2048, "kindString": "Method", @@ -12738,7 +12750,7 @@ ], "signatures": [ { - "id": 1008, + "id": 1016, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -12751,7 +12763,7 @@ "typeArguments": [ { "type": "reference", - "id": 961, + "id": 969, "name": "AppEmbed" } ], @@ -12769,7 +12781,7 @@ } }, { - "id": 1152, + "id": 1161, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -12779,13 +12791,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1397, + "line": 1403, "character": 17 } ], "signatures": [ { - "id": 1153, + "id": 1162, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -12815,7 +12827,7 @@ } }, { - "id": 1154, + "id": 1163, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -12825,13 +12837,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1451, + "line": 1457, "character": 11 } ], "signatures": [ { - "id": 1155, + "id": 1164, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -12861,7 +12873,7 @@ } }, { - "id": 1122, + "id": 1130, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -12877,7 +12889,7 @@ ], "signatures": [ { - "id": 1123, + "id": 1131, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -12888,19 +12900,19 @@ }, "typeParameter": [ { - "id": 1124, + "id": 1132, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1974, + "id": 1985, "name": "HostEvent" } }, { - "id": 1125, + "id": 1133, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -12909,7 +12921,7 @@ ], "parameters": [ { - "id": 1126, + "id": 1134, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12923,7 +12935,7 @@ } }, { - "id": 1127, + "id": 1135, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -12980,7 +12992,7 @@ } }, { - "id": 1128, + "id": 1136, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -12996,7 +13008,7 @@ ], "signatures": [ { - "id": 1129, + "id": 1137, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -13007,21 +13019,21 @@ }, "typeParameter": [ { - "id": 1130, + "id": 1138, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2834, + "id": 2845, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1131, + "id": 1139, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -13035,7 +13047,7 @@ } }, { - "id": 1132, + "id": 1140, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -13088,31 +13100,31 @@ "title": "Constructors", "kind": 512, "children": [ - 962 + 970 ] }, { "title": "Methods", "kind": 2048, "children": [ - 999, - 1163, - 976, - 1133, - 1158, - 1140, - 1146, - 1156, - 995, - 1104, - 1014, - 1137, - 1148, 1007, - 1152, - 1154, - 1122, - 1128 + 1172, + 984, + 1141, + 1167, + 1149, + 1155, + 1165, + 1003, + 1112, + 1022, + 1145, + 1157, + 1015, + 1161, + 1163, + 1130, + 1136 ] } ], @@ -13131,7 +13143,7 @@ ] }, { - "id": 1256, + "id": 1265, "name": "BodylessConversation", "kind": 128, "kindString": "Class", @@ -13155,7 +13167,7 @@ }, "children": [ { - "id": 1257, + "id": 1266, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -13169,45 +13181,45 @@ ], "signatures": [ { - "id": 1258, + "id": 1267, "name": "new BodylessConversation", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1259, + "id": 1268, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1227, + "id": 1236, "name": "BodylessConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1256, + "id": 1265, "name": "BodylessConversation" }, "overwrites": { "type": "reference", - "id": 1168, + "id": 1177, "name": "SpotterAgentEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1167, + "id": 1176, "name": "SpotterAgentEmbed.constructor" } }, { - "id": 1260, + "id": 1269, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -13223,14 +13235,14 @@ ], "signatures": [ { - "id": 1261, + "id": 1270, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1262, + "id": 1271, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -13250,14 +13262,14 @@ { "type": "reflection", "declaration": { - "id": 1263, + "id": 1272, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1265, + "id": 1274, "name": "container", "kind": 1024, "kindString": "Property", @@ -13268,7 +13280,7 @@ } }, { - "id": 1264, + "id": 1273, "name": "error", "kind": 1024, "kindString": "Property", @@ -13279,7 +13291,7 @@ } }, { - "id": 1266, + "id": 1275, "name": "viz", "kind": 1024, "kindString": "Property", @@ -13296,9 +13308,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1265, - 1264, - 1266 + 1274, + 1273, + 1275 ] } ] @@ -13307,14 +13319,14 @@ { "type": "reflection", "declaration": { - "id": 1267, + "id": 1276, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1268, + "id": 1277, "name": "container", "kind": 1024, "kindString": "Property", @@ -13325,7 +13337,7 @@ } }, { - "id": 1270, + "id": 1279, "name": "error", "kind": 1024, "kindString": "Property", @@ -13336,7 +13348,7 @@ } }, { - "id": 1269, + "id": 1278, "name": "viz", "kind": 1024, "kindString": "Property", @@ -13353,9 +13365,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1268, - 1270, - 1269 + 1277, + 1279, + 1278 ] } ] @@ -13368,19 +13380,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1172, + "id": 1181, "name": "SpotterAgentEmbed.sendMessage" } } ], "inheritedFrom": { "type": "reference", - "id": 1171, + "id": 1180, "name": "SpotterAgentEmbed.sendMessage" } }, { - "id": 1271, + "id": 1280, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -13396,7 +13408,7 @@ ], "signatures": [ { - "id": 1272, + "id": 1281, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -13407,7 +13419,7 @@ }, "parameters": [ { - "id": 1273, + "id": 1282, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -13430,14 +13442,14 @@ { "type": "reflection", "declaration": { - "id": 1274, + "id": 1283, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1276, + "id": 1285, "name": "data", "kind": 1024, "kindString": "Property", @@ -13449,7 +13461,7 @@ "defaultValue": "..." }, { - "id": 1275, + "id": 1284, "name": "error", "kind": 1024, "kindString": "Property", @@ -13465,8 +13477,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1276, - 1275 + 1285, + 1284 ] } ] @@ -13475,14 +13487,14 @@ { "type": "reflection", "declaration": { - "id": 1277, + "id": 1286, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1278, + "id": 1287, "name": "data", "kind": 1024, "kindString": "Property", @@ -13490,14 +13502,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1279, + "id": 1288, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1285, + "id": 1294, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -13509,7 +13521,7 @@ "defaultValue": "..." }, { - "id": 1284, + "id": 1293, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -13521,7 +13533,7 @@ "defaultValue": "..." }, { - "id": 1280, + "id": 1289, "name": "convId", "kind": 1024, "kindString": "Property", @@ -13533,7 +13545,7 @@ "defaultValue": "..." }, { - "id": 1283, + "id": 1292, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -13545,7 +13557,7 @@ "defaultValue": "..." }, { - "id": 1281, + "id": 1290, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -13557,7 +13569,7 @@ "defaultValue": "..." }, { - "id": 1282, + "id": 1291, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -13574,12 +13586,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1285, - 1284, - 1280, - 1283, - 1281, - 1282 + 1294, + 1293, + 1289, + 1292, + 1290, + 1291 ] } ] @@ -13588,7 +13600,7 @@ "defaultValue": "..." }, { - "id": 1286, + "id": 1295, "name": "error", "kind": 1024, "kindString": "Property", @@ -13604,8 +13616,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1278, - 1286 + 1287, + 1295 ] } ] @@ -13618,14 +13630,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1183, + "id": 1192, "name": "SpotterAgentEmbed.sendMessageData" } } ], "inheritedFrom": { "type": "reference", - "id": 1182, + "id": 1191, "name": "SpotterAgentEmbed.sendMessageData" } } @@ -13635,15 +13647,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1257 + 1266 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1260, - 1271 + 1269, + 1280 ] } ], @@ -13657,13 +13669,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1166, + "id": 1175, "name": "SpotterAgentEmbed" } ] }, { - "id": 1526, + "id": 1536, "name": "ConversationEmbed", "kind": 128, "kindString": "Class", @@ -13691,7 +13703,7 @@ }, "children": [ { - "id": 1527, + "id": 1537, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -13705,14 +13717,14 @@ ], "signatures": [ { - "id": 1528, + "id": 1538, "name": "new ConversationEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1529, + "id": 1539, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -13723,38 +13735,38 @@ } }, { - "id": 1530, + "id": 1540, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1487, + "id": 1497, "name": "ConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1526, + "id": 1536, "name": "ConversationEmbed" }, "overwrites": { "type": "reference", - "id": 1289, + "id": 1298, "name": "SpotterEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1288, + "id": 1297, "name": "SpotterEmbed.constructor" } }, { - "id": 1665, + "id": 1676, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -13764,13 +13776,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1328, + "line": 1334, "character": 11 } ], "signatures": [ { - "id": 1666, + "id": 1677, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -13790,19 +13802,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1427, + "id": 1437, "name": "SpotterEmbed.destroy" } } ], "inheritedFrom": { "type": "reference", - "id": 1426, + "id": 1436, "name": "SpotterEmbed.destroy" } }, { - "id": 1684, + "id": 1695, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -13812,13 +13824,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1511, + "line": 1517, "character": 17 } ], "signatures": [ { - "id": 1685, + "id": 1696, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -13834,7 +13846,7 @@ }, "parameters": [ { - "id": 1686, + "id": 1697, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -13855,7 +13867,7 @@ "typeArguments": [ { "type": "reference", - "id": 1757, + "id": 1768, "name": "AnswerService" } ], @@ -13863,19 +13875,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1446, + "id": 1456, "name": "SpotterEmbed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "id": 1445, + "id": 1455, "name": "SpotterEmbed.getAnswerService" } }, { - "id": 1532, + "id": 1542, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -13891,7 +13903,7 @@ ], "signatures": [ { - "id": 1533, + "id": 1543, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -13902,19 +13914,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1294, + "id": 1303, "name": "SpotterEmbed.getIframeSrc" } } ], "inheritedFrom": { "type": "reference", - "id": 1293, + "id": 1302, "name": "SpotterEmbed.getIframeSrc" } }, { - "id": 1679, + "id": 1690, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -13924,13 +13936,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1498, + "line": 1504, "character": 11 } ], "signatures": [ { - "id": 1680, + "id": 1691, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -13952,14 +13964,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1681, + "id": 1692, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1683, + "id": 1694, "name": "child", "kind": 1024, "kindString": "Property", @@ -13971,7 +13983,7 @@ "defaultValue": "..." }, { - "id": 1682, + "id": 1693, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -13988,8 +14000,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1683, - 1682 + 1694, + 1693 ] } ] @@ -13997,19 +14009,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1441, + "id": 1451, "name": "SpotterEmbed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "id": 1440, + "id": 1450, "name": "SpotterEmbed.getPreRenderIds" } }, { - "id": 1659, + "id": 1670, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -14019,13 +14031,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1298, + "line": 1304, "character": 11 } ], "signatures": [ { - "id": 1660, + "id": 1671, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -14041,7 +14053,7 @@ }, "parameters": [ { - "id": 1661, + "id": 1672, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -14049,20 +14061,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1662, + "id": 1673, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1663, + "id": 1674, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1664, + "id": 1675, "name": "key", "kind": 32768, "flags": {}, @@ -14097,19 +14109,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1421, + "id": 1431, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "id": 1420, + "id": 1430, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } }, { - "id": 1667, + "id": 1678, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -14119,13 +14131,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1338, + "line": 1344, "character": 11 } ], "signatures": [ { - "id": 1668, + "id": 1679, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -14136,19 +14148,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1429, + "id": 1439, "name": "SpotterEmbed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "id": 1428, + "id": 1438, "name": "SpotterEmbed.getUnderlyingFrameElement" } }, { - "id": 1677, + "id": 1688, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -14158,13 +14170,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1470, + "line": 1476, "character": 11 } ], "signatures": [ { - "id": 1678, + "id": 1689, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -14178,19 +14190,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1439, + "id": 1449, "name": "SpotterEmbed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1438, + "id": 1448, "name": "SpotterEmbed.hidePreRender" } }, { - "id": 1625, + "id": 1635, "name": "off", "kind": 2048, "kindString": "Method", @@ -14206,7 +14218,7 @@ ], "signatures": [ { - "id": 1626, + "id": 1636, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -14222,7 +14234,7 @@ }, "parameters": [ { - "id": 1627, + "id": 1637, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14232,12 +14244,12 @@ }, "type": { "type": "reference", - "id": 1881, + "id": 1892, "name": "EmbedEvent" } }, { - "id": 1628, + "id": 1638, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14247,7 +14259,7 @@ }, "type": { "type": "reference", - "id": 2566, + "id": 2577, "name": "MessageCallback" } } @@ -14258,19 +14270,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1387, + "id": 1396, "name": "SpotterEmbed.off" } } ], "inheritedFrom": { "type": "reference", - "id": 1386, + "id": 1395, "name": "SpotterEmbed.off" } }, { - "id": 1619, + "id": 1629, "name": "on", "kind": 2048, "kindString": "Method", @@ -14286,7 +14298,7 @@ ], "signatures": [ { - "id": 1620, + "id": 1630, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -14306,7 +14318,7 @@ }, "parameters": [ { - "id": 1621, + "id": 1631, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14316,12 +14328,12 @@ }, "type": { "type": "reference", - "id": 1881, + "id": 1892, "name": "EmbedEvent" } }, { - "id": 1622, + "id": 1632, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14331,12 +14343,12 @@ }, "type": { "type": "reference", - "id": 2566, + "id": 2577, "name": "MessageCallback" } }, { - "id": 1623, + "id": 1633, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -14346,13 +14358,13 @@ }, "type": { "type": "reference", - "id": 2563, + "id": 2574, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1624, + "id": 1634, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -14371,19 +14383,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1381, + "id": 1390, "name": "SpotterEmbed.on" } } ], "inheritedFrom": { "type": "reference", - "id": 1380, + "id": 1389, "name": "SpotterEmbed.on" } }, { - "id": 1656, + "id": 1666, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -14399,7 +14411,7 @@ ], "signatures": [ { - "id": 1657, + "id": 1667, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -14409,7 +14421,7 @@ }, "parameters": [ { - "id": 1658, + "id": 1668, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -14422,6 +14434,18 @@ "name": "boolean" }, "defaultValue": "false" + }, + { + "id": 1669, + "name": "replaceExistingPreRender", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "defaultValue": "false" } ], "type": { @@ -14436,19 +14460,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1418, + "id": 1427, "name": "SpotterEmbed.preRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1417, + "id": 1426, "name": "SpotterEmbed.preRender" } }, { - "id": 1669, + "id": 1680, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -14458,13 +14482,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1349, + "line": 1355, "character": 17 } ], "signatures": [ { - "id": 1670, + "id": 1681, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -14491,19 +14515,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1431, + "id": 1441, "name": "SpotterEmbed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "id": 1430, + "id": 1440, "name": "SpotterEmbed.prerenderGeneric" } }, { - "id": 1534, + "id": 1544, "name": "render", "kind": 2048, "kindString": "Method", @@ -14519,7 +14543,7 @@ ], "signatures": [ { - "id": 1535, + "id": 1545, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -14529,7 +14553,7 @@ "typeArguments": [ { "type": "reference", - "id": 1287, + "id": 1296, "name": "SpotterEmbed" } ], @@ -14537,19 +14561,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1296, + "id": 1305, "name": "SpotterEmbed.render" } } ], "inheritedFrom": { "type": "reference", - "id": 1295, + "id": 1304, "name": "SpotterEmbed.render" } }, { - "id": 1673, + "id": 1684, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -14559,13 +14583,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1397, + "line": 1403, "character": 17 } ], "signatures": [ { - "id": 1674, + "id": 1685, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -14585,19 +14609,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1435, + "id": 1445, "name": "SpotterEmbed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1434, + "id": 1444, "name": "SpotterEmbed.showPreRender" } }, { - "id": 1675, + "id": 1686, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -14607,13 +14631,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1451, + "line": 1457, "character": 11 } ], "signatures": [ { - "id": 1676, + "id": 1687, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -14633,19 +14657,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1437, + "id": 1447, "name": "SpotterEmbed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "id": 1436, + "id": 1446, "name": "SpotterEmbed.syncPreRenderStyle" } }, { - "id": 1643, + "id": 1653, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -14661,7 +14685,7 @@ ], "signatures": [ { - "id": 1644, + "id": 1654, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -14672,19 +14696,19 @@ }, "typeParameter": [ { - "id": 1645, + "id": 1655, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1974, + "id": 1985, "name": "HostEvent" } }, { - "id": 1646, + "id": 1656, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -14693,7 +14717,7 @@ ], "parameters": [ { - "id": 1647, + "id": 1657, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14707,7 +14731,7 @@ } }, { - "id": 1648, + "id": 1658, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -14754,19 +14778,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1405, + "id": 1414, "name": "SpotterEmbed.trigger" } } ], "inheritedFrom": { "type": "reference", - "id": 1404, + "id": 1413, "name": "SpotterEmbed.trigger" } }, { - "id": 1649, + "id": 1659, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -14782,7 +14806,7 @@ ], "signatures": [ { - "id": 1650, + "id": 1660, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -14793,21 +14817,21 @@ }, "typeParameter": [ { - "id": 1651, + "id": 1661, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2834, + "id": 2845, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1652, + "id": 1662, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -14821,7 +14845,7 @@ } }, { - "id": 1653, + "id": 1663, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -14859,14 +14883,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1411, + "id": 1420, "name": "SpotterEmbed.triggerUIPassThrough" } } ], "inheritedFrom": { "type": "reference", - "id": 1410, + "id": 1419, "name": "SpotterEmbed.triggerUIPassThrough" } } @@ -14876,29 +14900,29 @@ "title": "Constructors", "kind": 512, "children": [ - 1527 + 1537 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1665, + 1676, + 1695, + 1542, + 1690, + 1670, + 1678, + 1688, + 1635, + 1629, + 1666, + 1680, + 1544, 1684, - 1532, - 1679, - 1659, - 1667, - 1677, - 1625, - 1619, - 1656, - 1669, - 1534, - 1673, - 1675, - 1643, - 1649 + 1686, + 1653, + 1659 ] } ], @@ -14912,13 +14936,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1287, + "id": 1296, "name": "SpotterEmbed" } ] }, { - "id": 572, + "id": 578, "name": "LiveboardEmbed", "kind": 128, "kindString": "Class", @@ -14938,7 +14962,7 @@ }, "children": [ { - "id": 573, + "id": 579, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -14952,40 +14976,40 @@ ], "signatures": [ { - "id": 574, + "id": 580, "name": "new LiveboardEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 575, + "id": 581, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2562, + "id": 2573, "name": "DOMSelector" } }, { - "id": 576, + "id": 582, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2335, + "id": 2346, "name": "LiveboardViewConfig" } } ], "type": { "type": "reference", - "id": 572, + "id": 578, "name": "LiveboardEmbed" }, "overwrites": { @@ -15000,7 +15024,7 @@ } }, { - "id": 626, + "id": 632, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -15016,7 +15040,7 @@ ], "signatures": [ { - "id": 627, + "id": 633, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -15046,7 +15070,7 @@ } }, { - "id": 787, + "id": 794, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -15056,13 +15080,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1511, + "line": 1517, "character": 17 } ], "signatures": [ { - "id": 788, + "id": 795, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -15078,7 +15102,7 @@ }, "parameters": [ { - "id": 789, + "id": 796, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15099,7 +15123,7 @@ "typeArguments": [ { "type": "reference", - "id": 1757, + "id": 1768, "name": "AnswerService" } ], @@ -15117,7 +15141,7 @@ } }, { - "id": 761, + "id": 767, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -15133,7 +15157,7 @@ ], "signatures": [ { - "id": 762, + "id": 768, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -15154,7 +15178,7 @@ } }, { - "id": 641, + "id": 647, "name": "getLiveboardUrl", "kind": 2048, "kindString": "Method", @@ -15170,7 +15194,7 @@ ], "signatures": [ { - "id": 642, + "id": 648, "name": "getLiveboardUrl", "kind": 4096, "kindString": "Call signature", @@ -15187,7 +15211,7 @@ ] }, { - "id": 782, + "id": 789, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -15197,13 +15221,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1498, + "line": 1504, "character": 11 } ], "signatures": [ { - "id": 783, + "id": 790, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -15225,14 +15249,14 @@ "type": { "type": "reflection", "declaration": { - "id": 784, + "id": 791, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 786, + "id": 793, "name": "child", "kind": 1024, "kindString": "Property", @@ -15244,7 +15268,7 @@ "defaultValue": "..." }, { - "id": 785, + "id": 792, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -15261,8 +15285,8 @@ "title": "Properties", "kind": 1024, "children": [ - 786, - 785 + 793, + 792 ] } ] @@ -15280,7 +15304,7 @@ } }, { - "id": 766, + "id": 773, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -15290,13 +15314,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1298, + "line": 1304, "character": 11 } ], "signatures": [ { - "id": 767, + "id": 774, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -15312,7 +15336,7 @@ }, "parameters": [ { - "id": 768, + "id": 775, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -15320,20 +15344,20 @@ "type": { "type": "reflection", "declaration": { - "id": 769, + "id": 776, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 770, + "id": 777, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 771, + "id": 778, "name": "key", "kind": 32768, "flags": {}, @@ -15378,7 +15402,7 @@ } }, { - "id": 772, + "id": 779, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -15388,13 +15412,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1338, + "line": 1344, "character": 11 } ], "signatures": [ { - "id": 773, + "id": 780, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -15415,7 +15439,7 @@ } }, { - "id": 780, + "id": 787, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -15425,13 +15449,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1470, + "line": 1476, "character": 11 } ], "signatures": [ { - "id": 781, + "id": 788, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -15455,7 +15479,7 @@ } }, { - "id": 636, + "id": 642, "name": "navigateToLiveboard", "kind": 2048, "kindString": "Method", @@ -15471,14 +15495,14 @@ ], "signatures": [ { - "id": 637, + "id": 643, "name": "navigateToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 638, + "id": 644, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -15489,7 +15513,7 @@ } }, { - "id": 639, + "id": 645, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15502,7 +15526,7 @@ } }, { - "id": 640, + "id": 646, "name": "activeTabId", "kind": 32768, "kindString": "Parameter", @@ -15523,7 +15547,7 @@ ] }, { - "id": 738, + "id": 744, "name": "off", "kind": 2048, "kindString": "Method", @@ -15539,7 +15563,7 @@ ], "signatures": [ { - "id": 739, + "id": 745, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -15555,7 +15579,7 @@ }, "parameters": [ { - "id": 740, + "id": 746, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15565,12 +15589,12 @@ }, "type": { "type": "reference", - "id": 1881, + "id": 1892, "name": "EmbedEvent" } }, { - "id": 741, + "id": 747, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -15580,7 +15604,7 @@ }, "type": { "type": "reference", - "id": 2566, + "id": 2577, "name": "MessageCallback" } } @@ -15601,7 +15625,7 @@ } }, { - "id": 648, + "id": 654, "name": "on", "kind": 2048, "kindString": "Method", @@ -15611,13 +15635,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1620, + "line": 1626, "character": 11 } ], "signatures": [ { - "id": 649, + "id": 655, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -15640,38 +15664,38 @@ }, "parameters": [ { - "id": 650, + "id": 656, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1881, + "id": 1892, "name": "EmbedEvent" } }, { - "id": 651, + "id": 657, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2566, + "id": 2577, "name": "MessageCallback" } }, { - "id": 652, + "id": 658, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2563, + "id": 2574, "name": "MessageOptions" }, "defaultValue": "..." @@ -15693,7 +15717,7 @@ } }, { - "id": 763, + "id": 769, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -15709,7 +15733,7 @@ ], "signatures": [ { - "id": 764, + "id": 770, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -15719,7 +15743,7 @@ }, "parameters": [ { - "id": 765, + "id": 771, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -15732,6 +15756,18 @@ "name": "boolean" }, "defaultValue": "false" + }, + { + "id": 772, + "name": "replaceExistingPreRender", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "defaultValue": "false" } ], "type": { @@ -15756,7 +15792,7 @@ } }, { - "id": 774, + "id": 781, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -15766,13 +15802,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1349, + "line": 1355, "character": 17 } ], "signatures": [ { - "id": 775, + "id": 782, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -15809,7 +15845,7 @@ } }, { - "id": 634, + "id": 640, "name": "render", "kind": 2048, "kindString": "Method", @@ -15825,7 +15861,7 @@ ], "signatures": [ { - "id": 635, + "id": 641, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -15838,7 +15874,7 @@ "typeArguments": [ { "type": "reference", - "id": 572, + "id": 578, "name": "LiveboardEmbed" } ], @@ -15856,7 +15892,7 @@ } }, { - "id": 776, + "id": 783, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -15866,13 +15902,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1397, + "line": 1403, "character": 17 } ], "signatures": [ { - "id": 777, + "id": 784, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -15902,7 +15938,7 @@ } }, { - "id": 778, + "id": 785, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -15912,13 +15948,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1451, + "line": 1457, "character": 11 } ], "signatures": [ { - "id": 779, + "id": 786, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -15948,7 +15984,7 @@ } }, { - "id": 620, + "id": 626, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -15964,7 +16000,7 @@ ], "signatures": [ { - "id": 621, + "id": 627, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -15975,19 +16011,19 @@ }, "typeParameter": [ { - "id": 622, + "id": 628, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1974, + "id": 1985, "name": "HostEvent" } }, { - "id": 623, + "id": 629, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -15996,7 +16032,7 @@ ], "parameters": [ { - "id": 624, + "id": 630, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16010,7 +16046,7 @@ } }, { - "id": 625, + "id": 631, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -16067,7 +16103,7 @@ } }, { - "id": 756, + "id": 762, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -16083,7 +16119,7 @@ ], "signatures": [ { - "id": 757, + "id": 763, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -16094,21 +16130,21 @@ }, "typeParameter": [ { - "id": 758, + "id": 764, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2834, + "id": 2845, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 759, + "id": 765, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -16122,7 +16158,7 @@ } }, { - "id": 760, + "id": 766, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -16175,31 +16211,31 @@ "title": "Constructors", "kind": 512, "children": [ - 573 + 579 ] }, { "title": "Methods", "kind": 2048, "children": [ - 626, + 632, + 794, + 767, + 647, + 789, + 773, + 779, 787, - 761, - 641, - 782, - 766, - 772, - 780, - 636, - 738, - 648, - 763, - 774, - 634, - 776, - 778, - 620, - 756 + 642, + 744, + 654, + 769, + 781, + 640, + 783, + 785, + 626, + 762 ] } ], @@ -16218,7 +16254,7 @@ ] }, { - "id": 790, + "id": 797, "name": "SageEmbed", "kind": 128, "kindString": "Class", @@ -16238,7 +16274,7 @@ }, "children": [ { - "id": 791, + "id": 798, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -16252,40 +16288,40 @@ ], "signatures": [ { - "id": 792, + "id": 799, "name": "new SageEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 793, + "id": 800, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2562, + "id": 2573, "name": "DOMSelector" } }, { - "id": 794, + "id": 801, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2406, + "id": 2417, "name": "SageViewConfig" } } ], "type": { "type": "reference", - "id": 790, + "id": 797, "name": "SageEmbed" }, "overwrites": { @@ -16300,7 +16336,7 @@ } }, { - "id": 939, + "id": 947, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -16310,13 +16346,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1328, + "line": 1334, "character": 11 } ], "signatures": [ { - "id": 940, + "id": 948, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -16346,7 +16382,7 @@ } }, { - "id": 958, + "id": 966, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -16356,13 +16392,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1511, + "line": 1517, "character": 17 } ], "signatures": [ { - "id": 959, + "id": 967, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -16378,7 +16414,7 @@ }, "parameters": [ { - "id": 960, + "id": 968, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -16399,7 +16435,7 @@ "typeArguments": [ { "type": "reference", - "id": 1757, + "id": 1768, "name": "AnswerService" } ], @@ -16417,7 +16453,7 @@ } }, { - "id": 798, + "id": 805, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -16433,7 +16469,7 @@ ], "signatures": [ { - "id": 799, + "id": 806, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -16450,7 +16486,7 @@ ] }, { - "id": 926, + "id": 933, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -16466,7 +16502,7 @@ ], "signatures": [ { - "id": 927, + "id": 934, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -16487,7 +16523,7 @@ } }, { - "id": 953, + "id": 961, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -16497,13 +16533,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1498, + "line": 1504, "character": 11 } ], "signatures": [ { - "id": 954, + "id": 962, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -16525,14 +16561,14 @@ "type": { "type": "reflection", "declaration": { - "id": 955, + "id": 963, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 957, + "id": 965, "name": "child", "kind": 1024, "kindString": "Property", @@ -16544,7 +16580,7 @@ "defaultValue": "..." }, { - "id": 956, + "id": 964, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -16561,8 +16597,8 @@ "title": "Properties", "kind": 1024, "children": [ - 957, - 956 + 965, + 964 ] } ] @@ -16580,7 +16616,7 @@ } }, { - "id": 933, + "id": 941, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -16590,13 +16626,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1298, + "line": 1304, "character": 11 } ], "signatures": [ { - "id": 934, + "id": 942, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -16612,7 +16648,7 @@ }, "parameters": [ { - "id": 935, + "id": 943, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -16620,20 +16656,20 @@ "type": { "type": "reflection", "declaration": { - "id": 936, + "id": 944, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 937, + "id": 945, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 938, + "id": 946, "name": "key", "kind": 32768, "flags": {}, @@ -16678,7 +16714,7 @@ } }, { - "id": 941, + "id": 949, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -16688,13 +16724,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1338, + "line": 1344, "character": 11 } ], "signatures": [ { - "id": 942, + "id": 950, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -16715,7 +16751,7 @@ } }, { - "id": 951, + "id": 959, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -16725,13 +16761,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1470, + "line": 1476, "character": 11 } ], "signatures": [ { - "id": 952, + "id": 960, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -16755,7 +16791,7 @@ } }, { - "id": 897, + "id": 904, "name": "off", "kind": 2048, "kindString": "Method", @@ -16771,7 +16807,7 @@ ], "signatures": [ { - "id": 898, + "id": 905, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -16787,7 +16823,7 @@ }, "parameters": [ { - "id": 899, + "id": 906, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16797,12 +16833,12 @@ }, "type": { "type": "reference", - "id": 1881, + "id": 1892, "name": "EmbedEvent" } }, { - "id": 900, + "id": 907, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -16812,7 +16848,7 @@ }, "type": { "type": "reference", - "id": 2566, + "id": 2577, "name": "MessageCallback" } } @@ -16833,7 +16869,7 @@ } }, { - "id": 807, + "id": 814, "name": "on", "kind": 2048, "kindString": "Method", @@ -16843,13 +16879,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1620, + "line": 1626, "character": 11 } ], "signatures": [ { - "id": 808, + "id": 815, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -16872,38 +16908,38 @@ }, "parameters": [ { - "id": 809, + "id": 816, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1881, + "id": 1892, "name": "EmbedEvent" } }, { - "id": 810, + "id": 817, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2566, + "id": 2577, "name": "MessageCallback" } }, { - "id": 811, + "id": 818, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2563, + "id": 2574, "name": "MessageOptions" }, "defaultValue": "..." @@ -16925,7 +16961,7 @@ } }, { - "id": 930, + "id": 937, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -16941,7 +16977,7 @@ ], "signatures": [ { - "id": 931, + "id": 938, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -16951,7 +16987,7 @@ }, "parameters": [ { - "id": 932, + "id": 939, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -16964,6 +17000,18 @@ "name": "boolean" }, "defaultValue": "false" + }, + { + "id": 940, + "name": "replaceExistingPreRender", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "defaultValue": "false" } ], "type": { @@ -16988,7 +17036,7 @@ } }, { - "id": 943, + "id": 951, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -16998,13 +17046,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1349, + "line": 1355, "character": 17 } ], "signatures": [ { - "id": 944, + "id": 952, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -17041,7 +17089,7 @@ } }, { - "id": 800, + "id": 807, "name": "render", "kind": 2048, "kindString": "Method", @@ -17057,7 +17105,7 @@ ], "signatures": [ { - "id": 801, + "id": 808, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -17071,7 +17119,7 @@ "typeArguments": [ { "type": "reference", - "id": 790, + "id": 797, "name": "SageEmbed" } ], @@ -17089,7 +17137,7 @@ } }, { - "id": 947, + "id": 955, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -17099,13 +17147,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1397, + "line": 1403, "character": 17 } ], "signatures": [ { - "id": 948, + "id": 956, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -17135,7 +17183,7 @@ } }, { - "id": 949, + "id": 957, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -17145,13 +17193,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1451, + "line": 1457, "character": 11 } ], "signatures": [ { - "id": 950, + "id": 958, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -17181,7 +17229,7 @@ } }, { - "id": 915, + "id": 922, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -17197,7 +17245,7 @@ ], "signatures": [ { - "id": 916, + "id": 923, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -17208,19 +17256,19 @@ }, "typeParameter": [ { - "id": 917, + "id": 924, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1974, + "id": 1985, "name": "HostEvent" } }, { - "id": 918, + "id": 925, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -17229,7 +17277,7 @@ ], "parameters": [ { - "id": 919, + "id": 926, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17243,7 +17291,7 @@ } }, { - "id": 920, + "id": 927, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -17300,7 +17348,7 @@ } }, { - "id": 921, + "id": 928, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -17316,7 +17364,7 @@ ], "signatures": [ { - "id": 922, + "id": 929, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -17327,21 +17375,21 @@ }, "typeParameter": [ { - "id": 923, + "id": 930, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2834, + "id": 2845, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 924, + "id": 931, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -17355,7 +17403,7 @@ } }, { - "id": 925, + "id": 932, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -17408,30 +17456,30 @@ "title": "Constructors", "kind": 512, "children": [ - 791 + 798 ] }, { "title": "Methods", "kind": 2048, "children": [ - 939, - 958, - 798, - 926, - 953, + 947, + 966, + 805, 933, + 961, 941, + 949, + 959, + 904, + 814, + 937, 951, - 897, 807, - 930, - 943, - 800, - 947, - 949, - 915, - 921 + 955, + 957, + 922, + 928 ] } ], @@ -17450,7 +17498,7 @@ ] }, { - "id": 223, + "id": 227, "name": "SearchBarEmbed", "kind": 128, "kindString": "Class", @@ -17470,7 +17518,7 @@ }, "children": [ { - "id": 224, + "id": 228, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -17484,14 +17532,14 @@ ], "signatures": [ { - "id": 225, + "id": 229, "name": "new SearchBarEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 226, + "id": 230, "name": "domSelector", "kind": 32768, "kindString": "Parameter", @@ -17502,21 +17550,21 @@ } }, { - "id": 227, + "id": 231, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2293, + "id": 2304, "name": "SearchBarViewConfig" } } ], "type": { "type": "reference", - "id": 223, + "id": 227, "name": "SearchBarEmbed" }, "overwrites": { @@ -17531,7 +17579,7 @@ } }, { - "id": 369, + "id": 374, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -17541,13 +17589,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1328, + "line": 1334, "character": 11 } ], "signatures": [ { - "id": 370, + "id": 375, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -17577,7 +17625,7 @@ } }, { - "id": 388, + "id": 393, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -17587,13 +17635,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1511, + "line": 1517, "character": 17 } ], "signatures": [ { - "id": 389, + "id": 394, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -17609,7 +17657,7 @@ }, "parameters": [ { - "id": 390, + "id": 395, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -17630,7 +17678,7 @@ "typeArguments": [ { "type": "reference", - "id": 1757, + "id": 1768, "name": "AnswerService" } ], @@ -17648,7 +17696,7 @@ } }, { - "id": 356, + "id": 360, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -17664,7 +17712,7 @@ ], "signatures": [ { - "id": 357, + "id": 361, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -17685,7 +17733,7 @@ } }, { - "id": 383, + "id": 388, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -17695,13 +17743,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1498, + "line": 1504, "character": 11 } ], "signatures": [ { - "id": 384, + "id": 389, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -17723,14 +17771,14 @@ "type": { "type": "reflection", "declaration": { - "id": 385, + "id": 390, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 387, + "id": 392, "name": "child", "kind": 1024, "kindString": "Property", @@ -17742,7 +17790,7 @@ "defaultValue": "..." }, { - "id": 386, + "id": 391, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -17759,8 +17807,8 @@ "title": "Properties", "kind": 1024, "children": [ - 387, - 386 + 392, + 391 ] } ] @@ -17778,7 +17826,7 @@ } }, { - "id": 363, + "id": 368, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -17788,13 +17836,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1298, + "line": 1304, "character": 11 } ], "signatures": [ { - "id": 364, + "id": 369, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -17810,7 +17858,7 @@ }, "parameters": [ { - "id": 365, + "id": 370, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -17818,20 +17866,20 @@ "type": { "type": "reflection", "declaration": { - "id": 366, + "id": 371, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 367, + "id": 372, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 368, + "id": 373, "name": "key", "kind": 32768, "flags": {}, @@ -17876,7 +17924,7 @@ } }, { - "id": 371, + "id": 376, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -17886,13 +17934,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1338, + "line": 1344, "character": 11 } ], "signatures": [ { - "id": 372, + "id": 377, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -17913,7 +17961,7 @@ } }, { - "id": 381, + "id": 386, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -17923,13 +17971,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1470, + "line": 1476, "character": 11 } ], "signatures": [ { - "id": 382, + "id": 387, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -17953,7 +18001,7 @@ } }, { - "id": 327, + "id": 331, "name": "off", "kind": 2048, "kindString": "Method", @@ -17969,7 +18017,7 @@ ], "signatures": [ { - "id": 328, + "id": 332, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -17985,7 +18033,7 @@ }, "parameters": [ { - "id": 329, + "id": 333, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17995,12 +18043,12 @@ }, "type": { "type": "reference", - "id": 1881, + "id": 1892, "name": "EmbedEvent" } }, { - "id": 330, + "id": 334, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18010,7 +18058,7 @@ }, "type": { "type": "reference", - "id": 2566, + "id": 2577, "name": "MessageCallback" } } @@ -18031,7 +18079,7 @@ } }, { - "id": 321, + "id": 325, "name": "on", "kind": 2048, "kindString": "Method", @@ -18047,7 +18095,7 @@ ], "signatures": [ { - "id": 322, + "id": 326, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -18067,7 +18115,7 @@ }, "parameters": [ { - "id": 323, + "id": 327, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18077,12 +18125,12 @@ }, "type": { "type": "reference", - "id": 1881, + "id": 1892, "name": "EmbedEvent" } }, { - "id": 324, + "id": 328, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18092,12 +18140,12 @@ }, "type": { "type": "reference", - "id": 2566, + "id": 2577, "name": "MessageCallback" } }, { - "id": 325, + "id": 329, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -18107,13 +18155,13 @@ }, "type": { "type": "reference", - "id": 2563, + "id": 2574, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 326, + "id": 330, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -18142,7 +18190,7 @@ } }, { - "id": 360, + "id": 364, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -18158,7 +18206,7 @@ ], "signatures": [ { - "id": 361, + "id": 365, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -18168,7 +18216,7 @@ }, "parameters": [ { - "id": 362, + "id": 366, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -18181,6 +18229,18 @@ "name": "boolean" }, "defaultValue": "false" + }, + { + "id": 367, + "name": "replaceExistingPreRender", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "defaultValue": "false" } ], "type": { @@ -18205,7 +18265,7 @@ } }, { - "id": 373, + "id": 378, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -18215,13 +18275,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1349, + "line": 1355, "character": 17 } ], "signatures": [ { - "id": 374, + "id": 379, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -18258,7 +18318,7 @@ } }, { - "id": 232, + "id": 236, "name": "render", "kind": 2048, "kindString": "Method", @@ -18274,7 +18334,7 @@ ], "signatures": [ { - "id": 233, + "id": 237, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -18287,7 +18347,7 @@ "typeArguments": [ { "type": "reference", - "id": 223, + "id": 227, "name": "SearchBarEmbed" } ], @@ -18305,7 +18365,7 @@ } }, { - "id": 377, + "id": 382, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -18315,13 +18375,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1397, + "line": 1403, "character": 17 } ], "signatures": [ { - "id": 378, + "id": 383, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -18351,7 +18411,7 @@ } }, { - "id": 379, + "id": 384, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -18361,13 +18421,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1451, + "line": 1457, "character": 11 } ], "signatures": [ { - "id": 380, + "id": 385, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -18397,7 +18457,7 @@ } }, { - "id": 345, + "id": 349, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -18413,7 +18473,7 @@ ], "signatures": [ { - "id": 346, + "id": 350, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -18424,19 +18484,19 @@ }, "typeParameter": [ { - "id": 347, + "id": 351, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1974, + "id": 1985, "name": "HostEvent" } }, { - "id": 348, + "id": 352, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -18445,7 +18505,7 @@ ], "parameters": [ { - "id": 349, + "id": 353, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18459,7 +18519,7 @@ } }, { - "id": 350, + "id": 354, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -18516,7 +18576,7 @@ } }, { - "id": 351, + "id": 355, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -18532,7 +18592,7 @@ ], "signatures": [ { - "id": 352, + "id": 356, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -18543,21 +18603,21 @@ }, "typeParameter": [ { - "id": 353, + "id": 357, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2834, + "id": 2845, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 354, + "id": 358, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -18571,7 +18631,7 @@ } }, { - "id": 355, + "id": 359, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -18624,29 +18684,29 @@ "title": "Constructors", "kind": 512, "children": [ - 224 + 228 ] }, { "title": "Methods", "kind": 2048, "children": [ - 369, - 388, - 356, - 383, - 363, - 371, - 381, - 327, - 321, + 374, + 393, 360, - 373, - 232, - 377, - 379, - 345, - 351 + 388, + 368, + 376, + 386, + 331, + 325, + 364, + 378, + 236, + 382, + 384, + 349, + 355 ] } ], @@ -18665,7 +18725,7 @@ ] }, { - "id": 52, + "id": 55, "name": "SearchEmbed", "kind": 128, "kindString": "Class", @@ -18681,7 +18741,7 @@ }, "children": [ { - "id": 53, + "id": 56, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -18695,40 +18755,40 @@ ], "signatures": [ { - "id": 54, + "id": 57, "name": "new SearchEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 55, + "id": 58, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2562, + "id": 2573, "name": "DOMSelector" } }, { - "id": 56, + "id": 59, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2239, + "id": 2250, "name": "SearchViewConfig" } } ], "type": { "type": "reference", - "id": 52, + "id": 55, "name": "SearchEmbed" }, "overwrites": { @@ -18743,7 +18803,7 @@ } }, { - "id": 201, + "id": 205, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -18753,13 +18813,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1328, + "line": 1334, "character": 11 } ], "signatures": [ { - "id": 202, + "id": 206, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -18789,7 +18849,7 @@ } }, { - "id": 220, + "id": 224, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -18799,13 +18859,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1511, + "line": 1517, "character": 17 } ], "signatures": [ { - "id": 221, + "id": 225, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -18821,7 +18881,7 @@ }, "parameters": [ { - "id": 222, + "id": 226, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -18842,7 +18902,7 @@ "typeArguments": [ { "type": "reference", - "id": 1757, + "id": 1768, "name": "AnswerService" } ], @@ -18860,7 +18920,7 @@ } }, { - "id": 70, + "id": 73, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -18876,7 +18936,7 @@ ], "signatures": [ { - "id": 71, + "id": 74, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -18892,7 +18952,7 @@ ] }, { - "id": 188, + "id": 191, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -18908,7 +18968,7 @@ ], "signatures": [ { - "id": 189, + "id": 192, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -18929,7 +18989,7 @@ } }, { - "id": 215, + "id": 219, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -18939,13 +18999,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1498, + "line": 1504, "character": 11 } ], "signatures": [ { - "id": 216, + "id": 220, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -18967,14 +19027,14 @@ "type": { "type": "reflection", "declaration": { - "id": 217, + "id": 221, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 219, + "id": 223, "name": "child", "kind": 1024, "kindString": "Property", @@ -18986,7 +19046,7 @@ "defaultValue": "..." }, { - "id": 218, + "id": 222, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -19003,8 +19063,8 @@ "title": "Properties", "kind": 1024, "children": [ - 219, - 218 + 223, + 222 ] } ] @@ -19022,7 +19082,7 @@ } }, { - "id": 195, + "id": 199, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -19032,13 +19092,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1298, + "line": 1304, "character": 11 } ], "signatures": [ { - "id": 196, + "id": 200, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -19054,7 +19114,7 @@ }, "parameters": [ { - "id": 197, + "id": 201, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -19062,20 +19122,20 @@ "type": { "type": "reflection", "declaration": { - "id": 198, + "id": 202, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 199, + "id": 203, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 200, + "id": 204, "name": "key", "kind": 32768, "flags": {}, @@ -19120,7 +19180,7 @@ } }, { - "id": 203, + "id": 207, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -19130,13 +19190,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1338, + "line": 1344, "character": 11 } ], "signatures": [ { - "id": 204, + "id": 208, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -19157,7 +19217,7 @@ } }, { - "id": 213, + "id": 217, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -19167,13 +19227,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1470, + "line": 1476, "character": 11 } ], "signatures": [ { - "id": 214, + "id": 218, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -19197,7 +19257,7 @@ } }, { - "id": 159, + "id": 162, "name": "off", "kind": 2048, "kindString": "Method", @@ -19213,7 +19273,7 @@ ], "signatures": [ { - "id": 160, + "id": 163, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -19229,7 +19289,7 @@ }, "parameters": [ { - "id": 161, + "id": 164, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19239,12 +19299,12 @@ }, "type": { "type": "reference", - "id": 1881, + "id": 1892, "name": "EmbedEvent" } }, { - "id": 162, + "id": 165, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19254,7 +19314,7 @@ }, "type": { "type": "reference", - "id": 2566, + "id": 2577, "name": "MessageCallback" } } @@ -19275,7 +19335,7 @@ } }, { - "id": 153, + "id": 156, "name": "on", "kind": 2048, "kindString": "Method", @@ -19291,7 +19351,7 @@ ], "signatures": [ { - "id": 154, + "id": 157, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -19311,7 +19371,7 @@ }, "parameters": [ { - "id": 155, + "id": 158, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19321,12 +19381,12 @@ }, "type": { "type": "reference", - "id": 1881, + "id": 1892, "name": "EmbedEvent" } }, { - "id": 156, + "id": 159, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19336,12 +19396,12 @@ }, "type": { "type": "reference", - "id": 2566, + "id": 2577, "name": "MessageCallback" } }, { - "id": 157, + "id": 160, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -19351,13 +19411,13 @@ }, "type": { "type": "reference", - "id": 2563, + "id": 2574, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 158, + "id": 161, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -19386,7 +19446,7 @@ } }, { - "id": 192, + "id": 195, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -19402,7 +19462,7 @@ ], "signatures": [ { - "id": 193, + "id": 196, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -19412,7 +19472,7 @@ }, "parameters": [ { - "id": 194, + "id": 197, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -19425,6 +19485,18 @@ "name": "boolean" }, "defaultValue": "false" + }, + { + "id": 198, + "name": "replaceExistingPreRender", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "defaultValue": "false" } ], "type": { @@ -19449,7 +19521,7 @@ } }, { - "id": 205, + "id": 209, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -19459,13 +19531,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1349, + "line": 1355, "character": 17 } ], "signatures": [ { - "id": 206, + "id": 210, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -19502,7 +19574,7 @@ } }, { - "id": 72, + "id": 75, "name": "render", "kind": 2048, "kindString": "Method", @@ -19518,7 +19590,7 @@ ], "signatures": [ { - "id": 73, + "id": 76, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -19531,7 +19603,7 @@ "typeArguments": [ { "type": "reference", - "id": 52, + "id": 55, "name": "SearchEmbed" } ], @@ -19549,7 +19621,7 @@ } }, { - "id": 209, + "id": 213, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -19559,13 +19631,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1397, + "line": 1403, "character": 17 } ], "signatures": [ { - "id": 210, + "id": 214, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -19595,7 +19667,7 @@ } }, { - "id": 211, + "id": 215, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -19605,13 +19677,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1451, + "line": 1457, "character": 11 } ], "signatures": [ { - "id": 212, + "id": 216, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -19641,7 +19713,7 @@ } }, { - "id": 177, + "id": 180, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -19657,7 +19729,7 @@ ], "signatures": [ { - "id": 178, + "id": 181, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -19668,19 +19740,19 @@ }, "typeParameter": [ { - "id": 179, + "id": 182, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1974, + "id": 1985, "name": "HostEvent" } }, { - "id": 180, + "id": 183, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -19689,7 +19761,7 @@ ], "parameters": [ { - "id": 181, + "id": 184, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19703,7 +19775,7 @@ } }, { - "id": 182, + "id": 185, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -19760,7 +19832,7 @@ } }, { - "id": 183, + "id": 186, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -19776,7 +19848,7 @@ ], "signatures": [ { - "id": 184, + "id": 187, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -19787,21 +19859,21 @@ }, "typeParameter": [ { - "id": 185, + "id": 188, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2834, + "id": 2845, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 186, + "id": 189, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -19815,7 +19887,7 @@ } }, { - "id": 187, + "id": 190, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -19868,30 +19940,30 @@ "title": "Constructors", "kind": 512, "children": [ - 53 + 56 ] }, { "title": "Methods", "kind": 2048, "children": [ - 201, - 220, - 70, - 188, - 215, - 195, - 203, - 213, - 159, - 153, - 192, 205, - 72, + 224, + 73, + 191, + 219, + 199, + 207, + 217, + 162, + 156, + 195, 209, - 211, - 177, - 183 + 75, + 213, + 215, + 180, + 186 ] } ], @@ -19910,7 +19982,7 @@ ] }, { - "id": 1166, + "id": 1175, "name": "SpotterAgentEmbed", "kind": 128, "kindString": "Class", @@ -19934,7 +20006,7 @@ }, "children": [ { - "id": 1167, + "id": 1176, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -19948,35 +20020,35 @@ ], "signatures": [ { - "id": 1168, + "id": 1177, "name": "new SpotterAgentEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1169, + "id": 1178, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1198, + "id": 1207, "name": "SpotterAgentEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1166, + "id": 1175, "name": "SpotterAgentEmbed" } } ] }, { - "id": 1171, + "id": 1180, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -19992,14 +20064,14 @@ ], "signatures": [ { - "id": 1172, + "id": 1181, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1173, + "id": 1182, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -20019,14 +20091,14 @@ { "type": "reflection", "declaration": { - "id": 1174, + "id": 1183, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1176, + "id": 1185, "name": "container", "kind": 1024, "kindString": "Property", @@ -20037,7 +20109,7 @@ } }, { - "id": 1175, + "id": 1184, "name": "error", "kind": 1024, "kindString": "Property", @@ -20048,7 +20120,7 @@ } }, { - "id": 1177, + "id": 1186, "name": "viz", "kind": 1024, "kindString": "Property", @@ -20065,9 +20137,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1176, - 1175, - 1177 + 1185, + 1184, + 1186 ] } ] @@ -20076,14 +20148,14 @@ { "type": "reflection", "declaration": { - "id": 1178, + "id": 1187, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1179, + "id": 1188, "name": "container", "kind": 1024, "kindString": "Property", @@ -20094,7 +20166,7 @@ } }, { - "id": 1181, + "id": 1190, "name": "error", "kind": 1024, "kindString": "Property", @@ -20105,7 +20177,7 @@ } }, { - "id": 1180, + "id": 1189, "name": "viz", "kind": 1024, "kindString": "Property", @@ -20122,9 +20194,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1179, - 1181, - 1180 + 1188, + 1190, + 1189 ] } ] @@ -20139,7 +20211,7 @@ ] }, { - "id": 1182, + "id": 1191, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -20155,7 +20227,7 @@ ], "signatures": [ { - "id": 1183, + "id": 1192, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -20166,7 +20238,7 @@ }, "parameters": [ { - "id": 1184, + "id": 1193, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -20189,14 +20261,14 @@ { "type": "reflection", "declaration": { - "id": 1185, + "id": 1194, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1187, + "id": 1196, "name": "data", "kind": 1024, "kindString": "Property", @@ -20208,7 +20280,7 @@ "defaultValue": "..." }, { - "id": 1186, + "id": 1195, "name": "error", "kind": 1024, "kindString": "Property", @@ -20224,8 +20296,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1187, - 1186 + 1196, + 1195 ] } ] @@ -20234,14 +20306,14 @@ { "type": "reflection", "declaration": { - "id": 1188, + "id": 1197, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1189, + "id": 1198, "name": "data", "kind": 1024, "kindString": "Property", @@ -20249,14 +20321,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1190, + "id": 1199, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1196, + "id": 1205, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -20268,7 +20340,7 @@ "defaultValue": "..." }, { - "id": 1195, + "id": 1204, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -20280,7 +20352,7 @@ "defaultValue": "..." }, { - "id": 1191, + "id": 1200, "name": "convId", "kind": 1024, "kindString": "Property", @@ -20292,7 +20364,7 @@ "defaultValue": "..." }, { - "id": 1194, + "id": 1203, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -20304,7 +20376,7 @@ "defaultValue": "..." }, { - "id": 1192, + "id": 1201, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -20316,7 +20388,7 @@ "defaultValue": "..." }, { - "id": 1193, + "id": 1202, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -20333,12 +20405,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1196, - 1195, - 1191, - 1194, - 1192, - 1193 + 1205, + 1204, + 1200, + 1203, + 1201, + 1202 ] } ] @@ -20347,7 +20419,7 @@ "defaultValue": "..." }, { - "id": 1197, + "id": 1206, "name": "error", "kind": 1024, "kindString": "Property", @@ -20363,8 +20435,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1189, - 1197 + 1198, + 1206 ] } ] @@ -20384,15 +20456,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1167 + 1176 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1171, - 1182 + 1180, + 1191 ] } ], @@ -20406,13 +20478,13 @@ "extendedBy": [ { "type": "reference", - "id": 1256, + "id": 1265, "name": "BodylessConversation" } ] }, { - "id": 1287, + "id": 1296, "name": "SpotterEmbed", "kind": 128, "kindString": "Class", @@ -20436,7 +20508,7 @@ }, "children": [ { - "id": 1288, + "id": 1297, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -20450,14 +20522,14 @@ ], "signatures": [ { - "id": 1289, + "id": 1298, "name": "new SpotterEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1290, + "id": 1299, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -20468,21 +20540,21 @@ } }, { - "id": 1291, + "id": 1300, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1448, + "id": 1458, "name": "SpotterEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1287, + "id": 1296, "name": "SpotterEmbed" }, "overwrites": { @@ -20497,7 +20569,7 @@ } }, { - "id": 1426, + "id": 1436, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -20507,13 +20579,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1328, + "line": 1334, "character": 11 } ], "signatures": [ { - "id": 1427, + "id": 1437, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -20543,7 +20615,7 @@ } }, { - "id": 1445, + "id": 1455, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -20553,13 +20625,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1511, + "line": 1517, "character": 17 } ], "signatures": [ { - "id": 1446, + "id": 1456, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -20575,7 +20647,7 @@ }, "parameters": [ { - "id": 1447, + "id": 1457, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -20596,7 +20668,7 @@ "typeArguments": [ { "type": "reference", - "id": 1757, + "id": 1768, "name": "AnswerService" } ], @@ -20614,7 +20686,7 @@ } }, { - "id": 1293, + "id": 1302, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -20630,7 +20702,7 @@ ], "signatures": [ { - "id": 1294, + "id": 1303, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -20651,7 +20723,7 @@ } }, { - "id": 1440, + "id": 1450, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -20661,13 +20733,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1498, + "line": 1504, "character": 11 } ], "signatures": [ { - "id": 1441, + "id": 1451, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -20689,14 +20761,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1442, + "id": 1452, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1444, + "id": 1454, "name": "child", "kind": 1024, "kindString": "Property", @@ -20708,7 +20780,7 @@ "defaultValue": "..." }, { - "id": 1443, + "id": 1453, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -20725,8 +20797,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1444, - 1443 + 1454, + 1453 ] } ] @@ -20744,7 +20816,7 @@ } }, { - "id": 1420, + "id": 1430, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -20754,13 +20826,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1298, + "line": 1304, "character": 11 } ], "signatures": [ { - "id": 1421, + "id": 1431, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -20776,7 +20848,7 @@ }, "parameters": [ { - "id": 1422, + "id": 1432, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -20784,20 +20856,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1423, + "id": 1433, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1424, + "id": 1434, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1425, + "id": 1435, "name": "key", "kind": 32768, "flags": {}, @@ -20842,7 +20914,7 @@ } }, { - "id": 1428, + "id": 1438, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -20852,13 +20924,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1338, + "line": 1344, "character": 11 } ], "signatures": [ { - "id": 1429, + "id": 1439, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -20879,7 +20951,7 @@ } }, { - "id": 1438, + "id": 1448, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -20889,13 +20961,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1470, + "line": 1476, "character": 11 } ], "signatures": [ { - "id": 1439, + "id": 1449, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -20919,7 +20991,7 @@ } }, { - "id": 1386, + "id": 1395, "name": "off", "kind": 2048, "kindString": "Method", @@ -20935,7 +21007,7 @@ ], "signatures": [ { - "id": 1387, + "id": 1396, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -20951,7 +21023,7 @@ }, "parameters": [ { - "id": 1388, + "id": 1397, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -20961,12 +21033,12 @@ }, "type": { "type": "reference", - "id": 1881, + "id": 1892, "name": "EmbedEvent" } }, { - "id": 1389, + "id": 1398, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -20976,7 +21048,7 @@ }, "type": { "type": "reference", - "id": 2566, + "id": 2577, "name": "MessageCallback" } } @@ -20997,7 +21069,7 @@ } }, { - "id": 1380, + "id": 1389, "name": "on", "kind": 2048, "kindString": "Method", @@ -21013,7 +21085,7 @@ ], "signatures": [ { - "id": 1381, + "id": 1390, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -21033,7 +21105,7 @@ }, "parameters": [ { - "id": 1382, + "id": 1391, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21043,12 +21115,12 @@ }, "type": { "type": "reference", - "id": 1881, + "id": 1892, "name": "EmbedEvent" } }, { - "id": 1383, + "id": 1392, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -21058,12 +21130,12 @@ }, "type": { "type": "reference", - "id": 2566, + "id": 2577, "name": "MessageCallback" } }, { - "id": 1384, + "id": 1393, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -21073,13 +21145,13 @@ }, "type": { "type": "reference", - "id": 2563, + "id": 2574, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1385, + "id": 1394, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -21108,7 +21180,7 @@ } }, { - "id": 1417, + "id": 1426, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -21124,7 +21196,7 @@ ], "signatures": [ { - "id": 1418, + "id": 1427, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -21134,7 +21206,7 @@ }, "parameters": [ { - "id": 1419, + "id": 1428, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -21147,6 +21219,18 @@ "name": "boolean" }, "defaultValue": "false" + }, + { + "id": 1429, + "name": "replaceExistingPreRender", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "defaultValue": "false" } ], "type": { @@ -21171,7 +21255,7 @@ } }, { - "id": 1430, + "id": 1440, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -21181,13 +21265,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1349, + "line": 1355, "character": 17 } ], "signatures": [ { - "id": 1431, + "id": 1441, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -21224,7 +21308,7 @@ } }, { - "id": 1295, + "id": 1304, "name": "render", "kind": 2048, "kindString": "Method", @@ -21240,7 +21324,7 @@ ], "signatures": [ { - "id": 1296, + "id": 1305, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -21250,7 +21334,7 @@ "typeArguments": [ { "type": "reference", - "id": 1287, + "id": 1296, "name": "SpotterEmbed" } ], @@ -21268,7 +21352,7 @@ } }, { - "id": 1434, + "id": 1444, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -21278,13 +21362,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1397, + "line": 1403, "character": 17 } ], "signatures": [ { - "id": 1435, + "id": 1445, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -21314,7 +21398,7 @@ } }, { - "id": 1436, + "id": 1446, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -21324,13 +21408,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1451, + "line": 1457, "character": 11 } ], "signatures": [ { - "id": 1437, + "id": 1447, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -21360,7 +21444,7 @@ } }, { - "id": 1404, + "id": 1413, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -21376,7 +21460,7 @@ ], "signatures": [ { - "id": 1405, + "id": 1414, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -21387,19 +21471,19 @@ }, "typeParameter": [ { - "id": 1406, + "id": 1415, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1974, + "id": 1985, "name": "HostEvent" } }, { - "id": 1407, + "id": 1416, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -21408,7 +21492,7 @@ ], "parameters": [ { - "id": 1408, + "id": 1417, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21422,7 +21506,7 @@ } }, { - "id": 1409, + "id": 1418, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -21479,7 +21563,7 @@ } }, { - "id": 1410, + "id": 1419, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -21495,7 +21579,7 @@ ], "signatures": [ { - "id": 1411, + "id": 1420, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -21506,21 +21590,21 @@ }, "typeParameter": [ { - "id": 1412, + "id": 1421, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2834, + "id": 2845, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1413, + "id": 1422, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -21534,7 +21618,7 @@ } }, { - "id": 1414, + "id": 1423, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -21587,29 +21671,29 @@ "title": "Constructors", "kind": 512, "children": [ - 1288 + 1297 ] }, { "title": "Methods", "kind": 2048, "children": [ + 1436, + 1455, + 1302, + 1450, + 1430, + 1438, + 1448, + 1395, + 1389, 1426, - 1445, - 1293, 1440, - 1420, - 1428, - 1438, - 1386, - 1380, - 1417, - 1430, - 1295, - 1434, - 1436, - 1404, - 1410 + 1304, + 1444, + 1446, + 1413, + 1419 ] } ], @@ -21629,13 +21713,13 @@ "extendedBy": [ { "type": "reference", - "id": 1526, + "id": 1536, "name": "ConversationEmbed" } ] }, { - "id": 2453, + "id": 2464, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -21651,7 +21735,7 @@ }, "children": [ { - "id": 2490, + "id": 2501, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -21682,20 +21766,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2491, + "id": 2502, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2492, + "id": 2503, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2493, + "id": 2504, "name": "key", "kind": 32768, "flags": {}, @@ -21731,7 +21815,7 @@ } }, { - "id": 2514, + "id": 2525, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -21773,7 +21857,7 @@ } }, { - "id": 2472, + "id": 2483, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -21810,7 +21894,7 @@ } }, { - "id": 2511, + "id": 2522, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -21840,7 +21924,7 @@ ], "type": { "type": "reference", - "id": 2185, + "id": 2196, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -21849,7 +21933,7 @@ } }, { - "id": 2531, + "id": 2542, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -21887,7 +21971,7 @@ } }, { - "id": 2508, + "id": 2519, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -21928,7 +22012,7 @@ } }, { - "id": 2494, + "id": 2505, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -21957,7 +22041,7 @@ ], "type": { "type": "reference", - "id": 2579, + "id": 2590, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -21966,7 +22050,7 @@ } }, { - "id": 2473, + "id": 2484, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -22000,12 +22084,12 @@ ], "type": { "type": "reference", - "id": 2847, + "id": 2858, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2515, + "id": 2526, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -22047,7 +22131,7 @@ } }, { - "id": 2456, + "id": 2467, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -22085,7 +22169,7 @@ } }, { - "id": 2502, + "id": 2513, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -22123,7 +22207,7 @@ } }, { - "id": 2486, + "id": 2497, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -22161,7 +22245,7 @@ } }, { - "id": 2485, + "id": 2496, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -22193,7 +22277,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -22203,7 +22287,7 @@ } }, { - "id": 2471, + "id": 2482, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -22241,7 +22325,7 @@ } }, { - "id": 2498, + "id": 2509, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -22282,7 +22366,7 @@ } }, { - "id": 2525, + "id": 2536, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -22324,7 +22408,7 @@ } }, { - "id": 2530, + "id": 2541, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -22366,7 +22450,7 @@ } }, { - "id": 2516, + "id": 2527, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -22408,7 +22492,7 @@ } }, { - "id": 2457, + "id": 2468, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -22444,7 +22528,7 @@ } }, { - "id": 2468, + "id": 2479, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -22482,7 +22566,7 @@ } }, { - "id": 2499, + "id": 2510, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -22520,7 +22604,7 @@ } }, { - "id": 2512, + "id": 2523, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -22558,7 +22642,7 @@ } }, { - "id": 2513, + "id": 2524, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -22596,7 +22680,7 @@ } }, { - "id": 2501, + "id": 2512, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -22633,7 +22717,7 @@ } }, { - "id": 2482, + "id": 2493, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -22663,7 +22747,7 @@ ], "type": { "type": "reference", - "id": 2538, + "id": 2549, "name": "FrameParams" }, "inheritedFrom": { @@ -22672,7 +22756,7 @@ } }, { - "id": 2469, + "id": 2480, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -22706,7 +22790,7 @@ } }, { - "id": 2487, + "id": 2498, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -22742,7 +22826,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -22752,7 +22836,7 @@ } }, { - "id": 2520, + "id": 2531, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -22784,7 +22868,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2544, + "id": 2555, "name": "HomeLeftNavItem" } }, @@ -22794,7 +22878,7 @@ } }, { - "id": 2518, + "id": 2529, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -22826,7 +22910,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2555, + "id": 2566, "name": "HomepageModule" } }, @@ -22836,7 +22920,7 @@ } }, { - "id": 2517, + "id": 2528, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -22868,7 +22952,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2841, + "id": 2852, "name": "ListPageColumns" } }, @@ -22878,7 +22962,7 @@ } }, { - "id": 2461, + "id": 2472, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -22916,7 +23000,7 @@ } }, { - "id": 2458, + "id": 2469, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -22954,7 +23038,7 @@ } }, { - "id": 2455, + "id": 2466, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -22992,7 +23076,7 @@ } }, { - "id": 2528, + "id": 2539, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -23034,7 +23118,7 @@ } }, { - "id": 2521, + "id": 2532, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -23076,7 +23160,7 @@ } }, { - "id": 2460, + "id": 2471, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -23114,7 +23198,7 @@ } }, { - "id": 2459, + "id": 2470, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -23152,7 +23236,7 @@ } }, { - "id": 2466, + "id": 2477, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -23189,7 +23273,7 @@ } }, { - "id": 2462, + "id": 2473, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -23227,7 +23311,7 @@ } }, { - "id": 2475, + "id": 2486, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -23253,12 +23337,12 @@ ], "type": { "type": "reference", - "id": 2799, + "id": 2810, "name": "HomePageSearchBarMode" } }, { - "id": 2495, + "id": 2506, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -23296,7 +23380,7 @@ } }, { - "id": 2526, + "id": 2537, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -23338,7 +23422,7 @@ } }, { - "id": 2524, + "id": 2535, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -23376,7 +23460,7 @@ } }, { - "id": 2477, + "id": 2488, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -23410,7 +23494,7 @@ } }, { - "id": 2474, + "id": 2485, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -23439,7 +23523,7 @@ } }, { - "id": 2478, + "id": 2489, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -23473,7 +23557,7 @@ } }, { - "id": 2476, + "id": 2487, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -23511,7 +23595,7 @@ } }, { - "id": 2479, + "id": 2490, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -23548,7 +23632,7 @@ } }, { - "id": 2480, + "id": 2491, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -23582,7 +23666,7 @@ } }, { - "id": 2504, + "id": 2515, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -23620,7 +23704,7 @@ } }, { - "id": 2532, + "id": 2543, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -23658,7 +23742,7 @@ } }, { - "id": 2489, + "id": 2500, "name": "locale", "kind": 1024, "kindString": "Property", @@ -23696,7 +23780,7 @@ } }, { - "id": 2470, + "id": 2481, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -23734,7 +23818,7 @@ } }, { - "id": 2503, + "id": 2514, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -23772,7 +23856,7 @@ } }, { - "id": 2464, + "id": 2475, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -23802,12 +23886,12 @@ ], "type": { "type": "reference", - "id": 1840, + "id": 1851, "name": "Page" } }, { - "id": 2463, + "id": 2474, "name": "path", "kind": 1024, "kindString": "Property", @@ -23841,7 +23925,7 @@ } }, { - "id": 2497, + "id": 2508, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -23879,7 +23963,7 @@ } }, { - "id": 2505, + "id": 2516, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -23917,7 +24001,7 @@ } }, { - "id": 2519, + "id": 2530, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -23949,7 +24033,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2555, + "id": 2566, "name": "HomepageModule" } }, @@ -23959,7 +24043,7 @@ } }, { - "id": 2509, + "id": 2520, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -23991,7 +24075,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1861, + "id": 1872, "name": "RuntimeFilter" } }, @@ -24001,7 +24085,7 @@ } }, { - "id": 2510, + "id": 2521, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -24033,7 +24117,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2773, + "id": 2784, "name": "RuntimeParameter" } }, @@ -24043,7 +24127,7 @@ } }, { - "id": 2507, + "id": 2518, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -24080,7 +24164,7 @@ } }, { - "id": 2523, + "id": 2534, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -24122,7 +24206,7 @@ } }, { - "id": 2529, + "id": 2540, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -24164,7 +24248,7 @@ } }, { - "id": 2522, + "id": 2533, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -24206,7 +24290,7 @@ } }, { - "id": 2527, + "id": 2538, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -24248,7 +24332,7 @@ } }, { - "id": 2454, + "id": 2465, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -24286,7 +24370,7 @@ } }, { - "id": 2465, + "id": 2476, "name": "tag", "kind": 1024, "kindString": "Property", @@ -24320,7 +24404,7 @@ } }, { - "id": 2488, + "id": 2499, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -24356,7 +24440,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -24371,75 +24455,75 @@ "title": "Properties", "kind": 1024, "children": [ - 2490, - 2514, - 2472, - 2511, - 2531, - 2508, - 2494, - 2473, - 2515, - 2456, - 2502, - 2486, - 2485, - 2471, - 2498, - 2525, - 2530, - 2516, - 2457, - 2468, - 2499, - 2512, - 2513, 2501, - 2482, - 2469, - 2487, - 2520, - 2518, - 2517, - 2461, - 2458, - 2455, - 2528, - 2521, - 2460, - 2459, - 2466, - 2462, - 2475, - 2495, + 2525, + 2483, + 2522, + 2542, + 2519, + 2505, + 2484, 2526, - 2524, - 2477, - 2474, - 2478, - 2476, - 2479, - 2480, - 2504, - 2532, - 2489, - 2470, - 2503, - 2464, - 2463, + 2467, + 2513, 2497, - 2505, - 2519, + 2496, + 2482, 2509, + 2536, + 2541, + 2527, + 2468, + 2479, 2510, - 2507, 2523, + 2524, + 2512, + 2493, + 2480, + 2498, + 2531, 2529, - 2522, - 2527, - 2454, + 2528, + 2472, + 2469, + 2466, + 2539, + 2532, + 2471, + 2470, + 2477, + 2473, + 2486, + 2506, + 2537, + 2535, + 2488, + 2485, + 2489, + 2487, + 2490, + 2491, + 2515, + 2543, + 2500, + 2481, + 2514, + 2475, + 2474, + 2508, + 2516, + 2530, + 2520, + 2521, + 2518, + 2534, + 2540, + 2533, + 2538, 2465, - 2488 + 2476, + 2499 ] } ], @@ -24458,7 +24542,7 @@ ] }, { - "id": 1704, + "id": 1715, "name": "AuthEventEmitter", "kind": 256, "kindString": "Interface", @@ -24474,14 +24558,14 @@ }, "children": [ { - "id": 1741, + "id": 1752, "name": "emit", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1742, + "id": 1753, "name": "emit", "kind": 4096, "kindString": "Call signature", @@ -24491,19 +24575,19 @@ }, "parameters": [ { - "id": 1743, + "id": 1754, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1703, + "id": 1714, "name": "TRIGGER_SSO_POPUP" } }, { - "id": 1744, + "id": 1755, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -24527,14 +24611,14 @@ ] }, { - "id": 1745, + "id": 1756, "name": "off", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1746, + "id": 1757, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -24544,7 +24628,7 @@ }, "parameters": [ { - "id": 1747, + "id": 1758, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24552,12 +24636,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1694, + "id": 1705, "name": "AuthStatus" } }, { - "id": 1748, + "id": 1759, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24566,21 +24650,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1749, + "id": 1760, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1750, + "id": 1761, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1751, + "id": 1762, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -24606,7 +24690,7 @@ } }, { - "id": 1752, + "id": 1763, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -24618,7 +24702,7 @@ } }, { - "id": 1753, + "id": 1764, "name": "once", "kind": 32768, "kindString": "Parameter", @@ -24634,21 +24718,21 @@ ], "type": { "type": "reference", - "id": 1704, + "id": 1715, "name": "AuthEventEmitter" } } ] }, { - "id": 1705, + "id": 1716, "name": "on", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1706, + "id": 1717, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -24658,7 +24742,7 @@ }, "parameters": [ { - "id": 1707, + "id": 1718, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24666,12 +24750,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1695, + "id": 1706, "name": "FAILURE" } }, { - "id": 1708, + "id": 1719, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24682,28 +24766,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1709, + "id": 1720, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1710, + "id": 1721, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1711, + "id": 1722, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1687, + "id": 1698, "name": "AuthFailureType" } } @@ -24720,12 +24804,12 @@ ], "type": { "type": "reference", - "id": 1704, + "id": 1715, "name": "AuthEventEmitter" } }, { - "id": 1712, + "id": 1723, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -24735,7 +24819,7 @@ }, "parameters": [ { - "id": 1713, + "id": 1724, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24746,29 +24830,29 @@ "types": [ { "type": "reference", - "id": 1696, + "id": 1707, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1699, + "id": 1710, "name": "LOGOUT" }, { "type": "reference", - "id": 1700, + "id": 1711, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1701, + "id": 1712, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1714, + "id": 1725, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24779,14 +24863,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1715, + "id": 1726, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1716, + "id": 1727, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -24803,31 +24887,31 @@ ], "type": { "type": "reference", - "id": 1704, + "id": 1715, "name": "AuthEventEmitter" } }, { - "id": 1717, + "id": 1728, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1718, + "id": 1729, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1698, + "id": 1709, "name": "SUCCESS" } }, { - "id": 1719, + "id": 1730, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24835,21 +24919,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1720, + "id": 1731, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1721, + "id": 1732, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1722, + "id": 1733, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -24872,40 +24956,40 @@ ], "type": { "type": "reference", - "id": 1704, + "id": 1715, "name": "AuthEventEmitter" } } ] }, { - "id": 1723, + "id": 1734, "name": "once", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1724, + "id": 1735, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1725, + "id": 1736, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1695, + "id": 1706, "name": "FAILURE" } }, { - "id": 1726, + "id": 1737, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24913,28 +24997,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1727, + "id": 1738, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1728, + "id": 1739, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1729, + "id": 1740, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1687, + "id": 1698, "name": "AuthFailureType" } } @@ -24951,19 +25035,19 @@ ], "type": { "type": "reference", - "id": 1704, + "id": 1715, "name": "AuthEventEmitter" } }, { - "id": 1730, + "id": 1741, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1731, + "id": 1742, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24973,29 +25057,29 @@ "types": [ { "type": "reference", - "id": 1696, + "id": 1707, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1699, + "id": 1710, "name": "LOGOUT" }, { "type": "reference", - "id": 1700, + "id": 1711, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1701, + "id": 1712, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1732, + "id": 1743, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25003,14 +25087,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1733, + "id": 1744, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1734, + "id": 1745, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -25027,31 +25111,31 @@ ], "type": { "type": "reference", - "id": 1704, + "id": 1715, "name": "AuthEventEmitter" } }, { - "id": 1735, + "id": 1746, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1736, + "id": 1747, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1698, + "id": 1709, "name": "SUCCESS" } }, { - "id": 1737, + "id": 1748, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25059,21 +25143,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1738, + "id": 1749, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1739, + "id": 1750, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1740, + "id": 1751, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -25096,21 +25180,21 @@ ], "type": { "type": "reference", - "id": 1704, + "id": 1715, "name": "AuthEventEmitter" } } ] }, { - "id": 1754, + "id": 1765, "name": "removeAllListeners", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1755, + "id": 1766, "name": "removeAllListeners", "kind": 4096, "kindString": "Call signature", @@ -25120,7 +25204,7 @@ }, "parameters": [ { - "id": 1756, + "id": 1767, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25130,14 +25214,14 @@ }, "type": { "type": "reference", - "id": 1694, + "id": 1705, "name": "AuthStatus" } } ], "type": { "type": "reference", - "id": 1704, + "id": 1715, "name": "AuthEventEmitter" } } @@ -25149,11 +25233,11 @@ "title": "Methods", "kind": 2048, "children": [ - 1741, - 1745, - 1705, - 1723, - 1754 + 1752, + 1756, + 1716, + 1734, + 1765 ] } ], @@ -25166,7 +25250,7 @@ ] }, { - "id": 1227, + "id": 1236, "name": "BodylessConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -25186,7 +25270,7 @@ }, "children": [ { - "id": 1238, + "id": 1247, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -25217,20 +25301,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1239, + "id": 1248, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1240, + "id": 1249, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1241, + "id": 1250, "name": "key", "kind": 32768, "flags": {}, @@ -25262,12 +25346,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1209, + "id": 1218, "name": "SpotterAgentEmbedViewConfig.additionalFlags" } }, { - "id": 1255, + "id": 1264, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -25304,12 +25388,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1226, + "id": 1235, "name": "SpotterAgentEmbedViewConfig.customActions" } }, { - "id": 1242, + "id": 1251, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -25338,17 +25422,17 @@ ], "type": { "type": "reference", - "id": 2579, + "id": 2590, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1213, + "id": 1222, "name": "SpotterAgentEmbedViewConfig.customizations" } }, { - "id": 1250, + "id": 1259, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -25382,12 +25466,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1221, + "id": 1230, "name": "SpotterAgentEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1234, + "id": 1243, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -25421,12 +25505,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1205, + "id": 1214, "name": "SpotterAgentEmbedViewConfig.disabledActionReason" } }, { - "id": 1233, + "id": 1242, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -25458,18 +25542,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1204, + "id": 1213, "name": "SpotterAgentEmbedViewConfig.disabledActions" } }, { - "id": 1246, + "id": 1255, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -25506,12 +25590,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1217, + "id": 1226, "name": "SpotterAgentEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1247, + "id": 1256, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -25545,12 +25629,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1218, + "id": 1227, "name": "SpotterAgentEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1249, + "id": 1258, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -25583,12 +25667,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1220, + "id": 1229, "name": "SpotterAgentEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1230, + "id": 1239, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -25618,17 +25702,17 @@ ], "type": { "type": "reference", - "id": 2538, + "id": 2549, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1201, + "id": 1210, "name": "SpotterAgentEmbedViewConfig.frameParams" } }, { - "id": 1235, + "id": 1244, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -25664,18 +25748,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1206, + "id": 1215, "name": "SpotterAgentEmbedViewConfig.hiddenActions" } }, { - "id": 1243, + "id": 1252, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -25709,12 +25793,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1214, + "id": 1223, "name": "SpotterAgentEmbedViewConfig.insertAsSibling" } }, { - "id": 1252, + "id": 1261, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -25748,12 +25832,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1223, + "id": 1232, "name": "SpotterAgentEmbedViewConfig.linkOverride" } }, { - "id": 1237, + "id": 1246, "name": "locale", "kind": 1024, "kindString": "Property", @@ -25787,12 +25871,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1208, + "id": 1217, "name": "SpotterAgentEmbedViewConfig.locale" } }, { - "id": 1251, + "id": 1260, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -25826,12 +25910,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1222, + "id": 1231, "name": "SpotterAgentEmbedViewConfig.overrideOrgId" } }, { - "id": 1245, + "id": 1254, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -25865,12 +25949,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1216, + "id": 1225, "name": "SpotterAgentEmbedViewConfig.preRenderId" } }, { - "id": 1254, + "id": 1263, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -25903,12 +25987,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1225, + "id": 1234, "name": "SpotterAgentEmbedViewConfig.showAlerts" } }, { - "id": 1236, + "id": 1245, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -25944,18 +26028,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1207, + "id": 1216, "name": "SpotterAgentEmbedViewConfig.visibleActions" } }, { - "id": 1228, + "id": 1237, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -25976,7 +26060,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1199, + "id": 1208, "name": "SpotterAgentEmbedViewConfig.worksheetId" } } @@ -25986,25 +26070,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1238, - 1255, - 1242, - 1250, - 1234, - 1233, - 1246, 1247, - 1249, - 1230, - 1235, + 1264, + 1251, + 1259, 1243, + 1242, + 1255, + 1256, + 1258, + 1239, + 1244, 1252, - 1237, - 1251, - 1245, + 1261, + 1246, + 1260, 1254, - 1236, - 1228 + 1263, + 1245, + 1237 ] } ], @@ -26018,13 +26102,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1198, + "id": 1207, "name": "SpotterAgentEmbedViewConfig" } ] }, { - "id": 1487, + "id": 1497, "name": "ConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -26044,7 +26128,7 @@ }, "children": [ { - "id": 1508, + "id": 1518, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -26075,20 +26159,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1509, + "id": 1519, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1510, + "id": 1520, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1511, + "id": 1521, "name": "key", "kind": 32768, "flags": {}, @@ -26120,12 +26204,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1469, + "id": 1479, "name": "SpotterEmbedViewConfig.additionalFlags" } }, { - "id": 1525, + "id": 1535, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -26162,12 +26246,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1486, + "id": 1496, "name": "SpotterEmbedViewConfig.customActions" } }, { - "id": 1512, + "id": 1522, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -26196,17 +26280,17 @@ ], "type": { "type": "reference", - "id": 2579, + "id": 2590, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1473, + "id": 1483, "name": "SpotterEmbedViewConfig.customizations" } }, { - "id": 1492, + "id": 1502, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -26244,12 +26328,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1453, + "id": 1463, "name": "SpotterEmbedViewConfig.dataPanelV2" } }, { - "id": 1520, + "id": 1530, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -26283,12 +26367,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1481, + "id": 1491, "name": "SpotterEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1490, + "id": 1500, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -26322,12 +26406,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1451, + "id": 1461, "name": "SpotterEmbedViewConfig.disableSourceSelection" } }, { - "id": 1504, + "id": 1514, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -26361,12 +26445,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1465, + "id": 1475, "name": "SpotterEmbedViewConfig.disabledActionReason" } }, { - "id": 1503, + "id": 1513, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -26398,18 +26482,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1464, + "id": 1474, "name": "SpotterEmbedViewConfig.disabledActions" } }, { - "id": 1516, + "id": 1526, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -26446,12 +26530,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1477, + "id": 1487, "name": "SpotterEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1517, + "id": 1527, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -26485,12 +26569,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1478, + "id": 1488, "name": "SpotterEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1496, + "id": 1506, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -26524,12 +26608,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1457, + "id": 1467, "name": "SpotterEmbedViewConfig.excludeRuntimeFiltersfromURL" } }, { - "id": 1498, + "id": 1508, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -26563,12 +26647,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1459, + "id": 1469, "name": "SpotterEmbedViewConfig.excludeRuntimeParametersfromURL" } }, { - "id": 1519, + "id": 1529, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -26601,12 +26685,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1480, + "id": 1490, "name": "SpotterEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1500, + "id": 1510, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -26636,17 +26720,17 @@ ], "type": { "type": "reference", - "id": 2538, + "id": 2549, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1461, + "id": 1471, "name": "SpotterEmbedViewConfig.frameParams" } }, { - "id": 1505, + "id": 1515, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -26682,18 +26766,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1466, + "id": 1476, "name": "SpotterEmbedViewConfig.hiddenActions" } }, { - "id": 1494, + "id": 1504, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -26727,12 +26811,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1455, + "id": 1465, "name": "SpotterEmbedViewConfig.hideSampleQuestions" } }, { - "id": 1491, + "id": 1501, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -26766,12 +26850,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1452, + "id": 1462, "name": "SpotterEmbedViewConfig.hideSourceSelection" } }, { - "id": 1513, + "id": 1523, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -26805,12 +26889,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1474, + "id": 1484, "name": "SpotterEmbedViewConfig.insertAsSibling" } }, { - "id": 1522, + "id": 1532, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -26844,12 +26928,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1483, + "id": 1493, "name": "SpotterEmbedViewConfig.linkOverride" } }, { - "id": 1507, + "id": 1517, "name": "locale", "kind": 1024, "kindString": "Property", @@ -26883,12 +26967,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1468, + "id": 1478, "name": "SpotterEmbedViewConfig.locale" } }, { - "id": 1521, + "id": 1531, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -26922,12 +27006,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1482, + "id": 1492, "name": "SpotterEmbedViewConfig.overrideOrgId" } }, { - "id": 1515, + "id": 1525, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -26961,12 +27045,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1476, + "id": 1486, "name": "SpotterEmbedViewConfig.preRenderId" } }, { - "id": 1495, + "id": 1505, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -26998,18 +27082,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 1861, + "id": 1872, "name": "RuntimeFilter" } }, "inheritedFrom": { "type": "reference", - "id": 1456, + "id": 1466, "name": "SpotterEmbedViewConfig.runtimeFilters" } }, { - "id": 1497, + "id": 1507, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -27041,18 +27125,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2773, + "id": 2784, "name": "RuntimeParameter" } }, "inheritedFrom": { "type": "reference", - "id": 1458, + "id": 1468, "name": "SpotterEmbedViewConfig.runtimeParameters" } }, { - "id": 1489, + "id": 1499, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -27075,12 +27159,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1450, + "id": 1460, "name": "SpotterEmbedViewConfig.searchOptions" } }, { - "id": 1524, + "id": 1534, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -27113,12 +27197,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1485, + "id": 1495, "name": "SpotterEmbedViewConfig.showAlerts" } }, { - "id": 1493, + "id": 1503, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -27152,12 +27236,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1454, + "id": 1464, "name": "SpotterEmbedViewConfig.showSpotterLimitations" } }, { - "id": 1506, + "id": 1516, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -27193,18 +27277,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1467, + "id": 1477, "name": "SpotterEmbedViewConfig.visibleActions" } }, { - "id": 1488, + "id": 1498, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -27225,7 +27309,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1449, + "id": 1459, "name": "SpotterEmbedViewConfig.worksheetId" } } @@ -27235,35 +27319,35 @@ "title": "Properties", "kind": 1024, "children": [ + 1518, + 1535, + 1522, + 1502, + 1530, + 1500, + 1514, + 1513, + 1526, + 1527, + 1506, 1508, - 1525, - 1512, - 1492, - 1520, - 1490, + 1529, + 1510, + 1515, 1504, - 1503, - 1516, + 1501, + 1523, + 1532, 1517, - 1496, - 1498, - 1519, - 1500, + 1531, + 1525, 1505, - 1494, - 1491, - 1513, - 1522, 1507, - 1521, - 1515, - 1495, - 1497, - 1489, - 1524, - 1493, - 1506, - 1488 + 1499, + 1534, + 1503, + 1516, + 1498 ] } ], @@ -27277,13 +27361,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1448, + "id": 1458, "name": "SpotterEmbedViewConfig" } ] }, { - "id": 2814, + "id": 2825, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -27298,7 +27382,7 @@ }, "children": [ { - "id": 2815, + "id": 2826, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -27315,14 +27399,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2816, + "id": 2827, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2817, + "id": 2828, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -27336,12 +27420,12 @@ ], "type": { "type": "reference", - "id": 2811, + "id": 2822, "name": "VizPoint" } }, { - "id": 2818, + "id": 2829, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -27357,7 +27441,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2811, + "id": 2822, "name": "VizPoint" } } @@ -27368,8 +27452,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2817, - 2818 + 2828, + 2829 ] } ] @@ -27377,7 +27461,7 @@ } }, { - "id": 2819, + "id": 2830, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -27392,14 +27476,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2820, + "id": 2831, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2828, + "id": 2839, "name": "columns", "kind": 1024, "kindString": "Property", @@ -27420,7 +27504,7 @@ } }, { - "id": 2829, + "id": 2840, "name": "data", "kind": 1024, "kindString": "Property", @@ -27441,7 +27525,7 @@ } }, { - "id": 2822, + "id": 2833, "name": "id", "kind": 1024, "kindString": "Property", @@ -27459,7 +27543,7 @@ } }, { - "id": 2821, + "id": 2832, "name": "name", "kind": 1024, "kindString": "Property", @@ -27477,7 +27561,7 @@ } }, { - "id": 2823, + "id": 2834, "name": "sources", "kind": 1024, "kindString": "Property", @@ -27492,14 +27576,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2824, + "id": 2835, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2825, + "id": 2836, "name": "header", "kind": 1024, "kindString": "Property", @@ -27514,14 +27598,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2826, + "id": 2837, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2827, + "id": 2838, "name": "guid", "kind": 1024, "kindString": "Property", @@ -27544,7 +27628,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2827 + 2838 ] } ] @@ -27557,7 +27641,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2825 + 2836 ] } ] @@ -27570,23 +27654,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2828, - 2829, - 2822, - 2821, - 2823 + 2839, + 2840, + 2833, + 2832, + 2834 ] } ], "indexSignature": { - "id": 2830, + "id": 2841, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2831, + "id": 2842, "name": "key", "kind": 32768, "flags": {}, @@ -27605,7 +27689,7 @@ } }, { - "id": 2832, + "id": 2843, "name": "session", "kind": 1024, "kindString": "Property", @@ -27619,12 +27703,12 @@ ], "type": { "type": "reference", - "id": 1830, + "id": 1841, "name": "SessionInterface" } }, { - "id": 2833, + "id": 2844, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -27649,10 +27733,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2815, - 2819, - 2832, - 2833 + 2826, + 2830, + 2843, + 2844 ] } ], @@ -27665,7 +27749,7 @@ ] }, { - "id": 2601, + "id": 2612, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -27675,7 +27759,7 @@ }, "children": [ { - "id": 2655, + "id": 2666, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -27688,7 +27772,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 291, + "line": 292, "character": 4 } ], @@ -27698,7 +27782,7 @@ } }, { - "id": 2654, + "id": 2665, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -27711,7 +27795,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 285, + "line": 286, "character": 4 } ], @@ -27721,7 +27805,7 @@ } }, { - "id": 2624, + "id": 2635, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -27734,7 +27818,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 127, + "line": 128, "character": 4 } ], @@ -27744,7 +27828,7 @@ } }, { - "id": 2625, + "id": 2636, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -27757,7 +27841,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 133, + "line": 134, "character": 4 } ], @@ -27767,7 +27851,7 @@ } }, { - "id": 2627, + "id": 2638, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -27780,7 +27864,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 143, + "line": 144, "character": 4 } ], @@ -27790,7 +27874,7 @@ } }, { - "id": 2626, + "id": 2637, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -27803,7 +27887,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 138, + "line": 139, "character": 4 } ], @@ -27813,7 +27897,7 @@ } }, { - "id": 2606, + "id": 2617, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -27821,12 +27905,12 @@ "isOptional": true }, "comment": { - "shortText": "Font color of the text on toggle buttons such as\n**All**, **Answers**, and **Liveboards** on the Home page (Classic experience),\nthe text color of the chart and table tiles on Home page (New modular Homepage\nexperience), and title text on the AI-generated charts and tables.\nThe default color code is #2770EF." + "shortText": "Font color of the text on toggle buttons such as\n**All**, **Answers**, and **Liveboards** on the Home page (Classic experience),\nthe text color of the chart and table tiles on Home page (New modular Homepage\nexperience), title text on the AI-generated charts and tables, and object titles on\nlist pages such as *Liveboards* and *Answers*.\nThe default color code is #2770EF." }, "sources": [ { "fileName": "css-variables.ts", - "line": 34, + "line": 35, "character": 4 } ], @@ -27836,7 +27920,7 @@ } }, { - "id": 2667, + "id": 2678, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -27849,7 +27933,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 351, + "line": 352, "character": 4 } ], @@ -27859,7 +27943,7 @@ } }, { - "id": 2668, + "id": 2679, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -27872,7 +27956,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 356, + "line": 357, "character": 4 } ], @@ -27882,7 +27966,7 @@ } }, { - "id": 2665, + "id": 2676, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -27895,7 +27979,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 341, + "line": 342, "character": 4 } ], @@ -27905,7 +27989,7 @@ } }, { - "id": 2666, + "id": 2677, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -27918,7 +28002,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 346, + "line": 347, "character": 4 } ], @@ -27928,7 +28012,7 @@ } }, { - "id": 2629, + "id": 2640, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -27941,7 +28025,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 155, + "line": 156, "character": 4 } ], @@ -27951,7 +28035,7 @@ } }, { - "id": 2634, + "id": 2645, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -27964,7 +28048,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 182, + "line": 183, "character": 4 } ], @@ -27974,7 +28058,7 @@ } }, { - "id": 2631, + "id": 2642, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -27987,7 +28071,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 166, + "line": 167, "character": 4 } ], @@ -27997,7 +28081,7 @@ } }, { - "id": 2633, + "id": 2644, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -28010,7 +28094,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 177, + "line": 178, "character": 4 } ], @@ -28020,7 +28104,7 @@ } }, { - "id": 2632, + "id": 2643, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -28033,7 +28117,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 172, + "line": 173, "character": 4 } ], @@ -28043,7 +28127,7 @@ } }, { - "id": 2630, + "id": 2641, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -28056,7 +28140,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 161, + "line": 162, "character": 4 } ], @@ -28066,7 +28150,7 @@ } }, { - "id": 2639, + "id": 2650, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -28079,7 +28163,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 207, + "line": 208, "character": 4 } ], @@ -28089,7 +28173,7 @@ } }, { - "id": 2636, + "id": 2647, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -28102,7 +28186,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 192, + "line": 193, "character": 4 } ], @@ -28112,7 +28196,7 @@ } }, { - "id": 2638, + "id": 2649, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -28125,7 +28209,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 202, + "line": 203, "character": 4 } ], @@ -28135,7 +28219,7 @@ } }, { - "id": 2637, + "id": 2648, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -28148,7 +28232,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 197, + "line": 198, "character": 4 } ], @@ -28158,7 +28242,7 @@ } }, { - "id": 2635, + "id": 2646, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -28171,7 +28255,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 187, + "line": 188, "character": 4 } ], @@ -28181,7 +28265,7 @@ } }, { - "id": 2643, + "id": 2654, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -28194,7 +28278,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 228, + "line": 229, "character": 4 } ], @@ -28204,7 +28288,7 @@ } }, { - "id": 2642, + "id": 2653, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -28217,7 +28301,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 223, + "line": 224, "character": 4 } ], @@ -28227,7 +28311,7 @@ } }, { - "id": 2641, + "id": 2652, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -28240,7 +28324,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 218, + "line": 219, "character": 4 } ], @@ -28250,7 +28334,7 @@ } }, { - "id": 2640, + "id": 2651, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -28263,7 +28347,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 213, + "line": 214, "character": 4 } ], @@ -28273,7 +28357,7 @@ } }, { - "id": 2628, + "id": 2639, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -28286,7 +28370,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 149, + "line": 150, "character": 4 } ], @@ -28296,7 +28380,7 @@ } }, { - "id": 2772, + "id": 2783, "name": "--ts-var-cca-modal-summary-header-background", "kind": 1024, "kindString": "Property", @@ -28309,7 +28393,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 869, + "line": 870, "character": 4 } ], @@ -28319,7 +28403,7 @@ } }, { - "id": 2767, + "id": 2778, "name": "--ts-var-change-analysis-insights-background", "kind": 1024, "kindString": "Property", @@ -28332,7 +28416,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 844, + "line": 845, "character": 4 } ], @@ -28342,7 +28426,7 @@ } }, { - "id": 2762, + "id": 2773, "name": "--ts-var-chart-heatmap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28355,7 +28439,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 819, + "line": 820, "character": 4 } ], @@ -28365,7 +28449,7 @@ } }, { - "id": 2761, + "id": 2772, "name": "--ts-var-chart-heatmap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28378,7 +28462,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 814, + "line": 815, "character": 4 } ], @@ -28388,7 +28472,7 @@ } }, { - "id": 2764, + "id": 2775, "name": "--ts-var-chart-treemap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28401,7 +28485,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 829, + "line": 830, "character": 4 } ], @@ -28411,7 +28495,7 @@ } }, { - "id": 2763, + "id": 2774, "name": "--ts-var-chart-treemap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28424,7 +28508,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 824, + "line": 825, "character": 4 } ], @@ -28434,7 +28518,7 @@ } }, { - "id": 2690, + "id": 2701, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -28447,7 +28531,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 462, + "line": 463, "character": 4 } ], @@ -28457,7 +28541,7 @@ } }, { - "id": 2693, + "id": 2704, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -28470,7 +28554,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 474, + "line": 475, "character": 4 } ], @@ -28480,7 +28564,7 @@ } }, { - "id": 2688, + "id": 2699, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -28493,7 +28577,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 454, + "line": 455, "character": 4 } ], @@ -28503,7 +28587,7 @@ } }, { - "id": 2691, + "id": 2702, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -28516,7 +28600,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 466, + "line": 467, "character": 4 } ], @@ -28526,7 +28610,7 @@ } }, { - "id": 2692, + "id": 2703, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -28539,7 +28623,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 470, + "line": 471, "character": 4 } ], @@ -28549,7 +28633,7 @@ } }, { - "id": 2687, + "id": 2698, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -28562,7 +28646,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 450, + "line": 451, "character": 4 } ], @@ -28572,7 +28656,7 @@ } }, { - "id": 2689, + "id": 2700, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -28585,7 +28669,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 458, + "line": 459, "character": 4 } ], @@ -28595,7 +28679,7 @@ } }, { - "id": 2660, + "id": 2671, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -28608,7 +28692,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 316, + "line": 317, "character": 4 } ], @@ -28618,7 +28702,7 @@ } }, { - "id": 2659, + "id": 2670, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -28631,7 +28715,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 311, + "line": 312, "character": 4 } ], @@ -28641,7 +28725,7 @@ } }, { - "id": 2662, + "id": 2673, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -28654,7 +28738,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 326, + "line": 327, "character": 4 } ], @@ -28664,7 +28748,7 @@ } }, { - "id": 2661, + "id": 2672, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -28677,7 +28761,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 321, + "line": 322, "character": 4 } ], @@ -28687,7 +28771,7 @@ } }, { - "id": 2658, + "id": 2669, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -28700,7 +28784,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 306, + "line": 307, "character": 4 } ], @@ -28710,7 +28794,7 @@ } }, { - "id": 2656, + "id": 2667, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -28723,7 +28807,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 296, + "line": 297, "character": 4 } ], @@ -28733,7 +28817,7 @@ } }, { - "id": 2657, + "id": 2668, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -28746,7 +28830,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 301, + "line": 302, "character": 4 } ], @@ -28756,7 +28840,7 @@ } }, { - "id": 2663, + "id": 2674, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -28769,7 +28853,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 331, + "line": 332, "character": 4 } ], @@ -28779,7 +28863,7 @@ } }, { - "id": 2664, + "id": 2675, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -28792,7 +28876,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 336, + "line": 337, "character": 4 } ], @@ -28802,7 +28886,7 @@ } }, { - "id": 2675, + "id": 2686, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -28815,7 +28899,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 391, + "line": 392, "character": 4 } ], @@ -28825,7 +28909,7 @@ } }, { - "id": 2676, + "id": 2687, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -28838,7 +28922,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 396, + "line": 397, "character": 4 } ], @@ -28848,7 +28932,7 @@ } }, { - "id": 2679, + "id": 2690, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -28861,7 +28945,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 411, + "line": 412, "character": 4 } ], @@ -28871,7 +28955,7 @@ } }, { - "id": 2677, + "id": 2688, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -28884,7 +28968,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 401, + "line": 402, "character": 4 } ], @@ -28894,7 +28978,7 @@ } }, { - "id": 2678, + "id": 2689, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -28907,7 +28991,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 406, + "line": 407, "character": 4 } ], @@ -28917,7 +29001,7 @@ } }, { - "id": 2686, + "id": 2697, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -28930,7 +29014,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 446, + "line": 447, "character": 4 } ], @@ -28940,7 +29024,7 @@ } }, { - "id": 2685, + "id": 2696, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -28953,7 +29037,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 441, + "line": 442, "character": 4 } ], @@ -28963,7 +29047,7 @@ } }, { - "id": 2684, + "id": 2695, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -28976,7 +29060,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 436, + "line": 437, "character": 4 } ], @@ -28986,7 +29070,7 @@ } }, { - "id": 2683, + "id": 2694, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -28999,7 +29083,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 431, + "line": 432, "character": 4 } ], @@ -29009,7 +29093,7 @@ } }, { - "id": 2760, + "id": 2771, "name": "--ts-var-kpi-analyze-text-color", "kind": 1024, "kindString": "Property", @@ -29022,7 +29106,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 809, + "line": 810, "character": 4 } ], @@ -29032,7 +29116,7 @@ } }, { - "id": 2759, + "id": 2770, "name": "--ts-var-kpi-comparison-color", "kind": 1024, "kindString": "Property", @@ -29045,7 +29129,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 804, + "line": 805, "character": 4 } ], @@ -29055,7 +29139,7 @@ } }, { - "id": 2758, + "id": 2769, "name": "--ts-var-kpi-hero-color", "kind": 1024, "kindString": "Property", @@ -29068,7 +29152,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 799, + "line": 800, "character": 4 } ], @@ -29078,7 +29162,7 @@ } }, { - "id": 2766, + "id": 2777, "name": "--ts-var-kpi-negative-change-color", "kind": 1024, "kindString": "Property", @@ -29091,7 +29175,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 839, + "line": 840, "character": 4 } ], @@ -29101,7 +29185,7 @@ } }, { - "id": 2765, + "id": 2776, "name": "--ts-var-kpi-positive-change-color", "kind": 1024, "kindString": "Property", @@ -29114,7 +29198,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 834, + "line": 835, "character": 4 } ], @@ -29124,7 +29208,7 @@ } }, { - "id": 2681, + "id": 2692, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -29137,7 +29221,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 421, + "line": 422, "character": 4 } ], @@ -29147,7 +29231,7 @@ } }, { - "id": 2680, + "id": 2691, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -29160,7 +29244,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 416, + "line": 417, "character": 4 } ], @@ -29170,7 +29254,7 @@ } }, { - "id": 2716, + "id": 2727, "name": "--ts-var-liveboard-answer-viz-padding", "kind": 1024, "kindString": "Property", @@ -29183,7 +29267,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 589, + "line": 590, "character": 4 } ], @@ -29193,7 +29277,7 @@ } }, { - "id": 2729, + "id": 2740, "name": "--ts-var-liveboard-chip--active-background", "kind": 1024, "kindString": "Property", @@ -29206,7 +29290,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 654, + "line": 655, "character": 4 } ], @@ -29216,7 +29300,7 @@ } }, { - "id": 2730, + "id": 2741, "name": "--ts-var-liveboard-chip--active-color", "kind": 1024, "kindString": "Property", @@ -29229,7 +29313,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 659, + "line": 660, "character": 4 } ], @@ -29239,7 +29323,7 @@ } }, { - "id": 2727, + "id": 2738, "name": "--ts-var-liveboard-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -29252,7 +29336,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 644, + "line": 645, "character": 4 } ], @@ -29262,7 +29346,7 @@ } }, { - "id": 2728, + "id": 2739, "name": "--ts-var-liveboard-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -29275,7 +29359,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 649, + "line": 650, "character": 4 } ], @@ -29285,7 +29369,7 @@ } }, { - "id": 2725, + "id": 2736, "name": "--ts-var-liveboard-chip-background", "kind": 1024, "kindString": "Property", @@ -29298,7 +29382,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 634, + "line": 635, "character": 4 } ], @@ -29308,7 +29392,7 @@ } }, { - "id": 2726, + "id": 2737, "name": "--ts-var-liveboard-chip-color", "kind": 1024, "kindString": "Property", @@ -29321,7 +29405,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 639, + "line": 640, "character": 4 } ], @@ -29331,7 +29415,7 @@ } }, { - "id": 2735, + "id": 2746, "name": "--ts-var-liveboard-cross-filter-layout-background", "kind": 1024, "kindString": "Property", @@ -29344,7 +29428,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 684, + "line": 685, "character": 4 } ], @@ -29354,7 +29438,7 @@ } }, { - "id": 2733, + "id": 2744, "name": "--ts-var-liveboard-dual-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -29367,7 +29451,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 674, + "line": 675, "character": 4 } ], @@ -29377,7 +29461,7 @@ } }, { - "id": 2732, + "id": 2743, "name": "--ts-var-liveboard-edit-bar-background", "kind": 1024, "kindString": "Property", @@ -29390,7 +29474,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 669, + "line": 670, "character": 4 } ], @@ -29400,7 +29484,7 @@ } }, { - "id": 2717, + "id": 2728, "name": "--ts-var-liveboard-group-background", "kind": 1024, "kindString": "Property", @@ -29413,7 +29497,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 594, + "line": 595, "character": 4 } ], @@ -29423,7 +29507,7 @@ } }, { - "id": 2718, + "id": 2729, "name": "--ts-var-liveboard-group-border-color", "kind": 1024, "kindString": "Property", @@ -29436,7 +29520,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 599, + "line": 600, "character": 4 } ], @@ -29446,7 +29530,7 @@ } }, { - "id": 2722, + "id": 2733, "name": "--ts-var-liveboard-group-description-font-color", "kind": 1024, "kindString": "Property", @@ -29459,7 +29543,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 619, + "line": 620, "character": 4 } ], @@ -29469,7 +29553,7 @@ } }, { - "id": 2712, + "id": 2723, "name": "--ts-var-liveboard-group-description-font-size", "kind": 1024, "kindString": "Property", @@ -29482,7 +29566,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 569, + "line": 570, "character": 4 } ], @@ -29492,7 +29576,7 @@ } }, { - "id": 2713, + "id": 2724, "name": "--ts-var-liveboard-group-description-font-weight", "kind": 1024, "kindString": "Property", @@ -29505,7 +29589,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 574, + "line": 575, "character": 4 } ], @@ -29515,7 +29599,7 @@ } }, { - "id": 2706, + "id": 2717, "name": "--ts-var-liveboard-group-padding", "kind": 1024, "kindString": "Property", @@ -29528,7 +29612,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 539, + "line": 540, "character": 4 } ], @@ -29538,7 +29622,7 @@ } }, { - "id": 2724, + "id": 2735, "name": "--ts-var-liveboard-group-tile-background", "kind": 1024, "kindString": "Property", @@ -29551,7 +29635,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 629, + "line": 630, "character": 4 } ], @@ -29561,7 +29645,7 @@ } }, { - "id": 2714, + "id": 2725, "name": "--ts-var-liveboard-group-tile-border", "kind": 1024, "kindString": "Property", @@ -29574,7 +29658,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 579, + "line": 580, "character": 4 } ], @@ -29584,7 +29668,7 @@ } }, { - "id": 2715, + "id": 2726, "name": "--ts-var-liveboard-group-tile-padding", "kind": 1024, "kindString": "Property", @@ -29597,7 +29681,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 584, + "line": 585, "character": 4 } ], @@ -29607,7 +29691,7 @@ } }, { - "id": 2723, + "id": 2734, "name": "--ts-var-liveboard-group-tile-title-font-color", "kind": 1024, "kindString": "Property", @@ -29620,7 +29704,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 624, + "line": 625, "character": 4 } ], @@ -29630,7 +29714,7 @@ } }, { - "id": 2710, + "id": 2721, "name": "--ts-var-liveboard-group-tile-title-font-size", "kind": 1024, "kindString": "Property", @@ -29643,7 +29727,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 559, + "line": 560, "character": 4 } ], @@ -29653,7 +29737,7 @@ } }, { - "id": 2711, + "id": 2722, "name": "--ts-var-liveboard-group-tile-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29666,7 +29750,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 564, + "line": 565, "character": 4 } ], @@ -29676,7 +29760,7 @@ } }, { - "id": 2721, + "id": 2732, "name": "--ts-var-liveboard-group-title-font-color", "kind": 1024, "kindString": "Property", @@ -29689,7 +29773,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 614, + "line": 615, "character": 4 } ], @@ -29699,7 +29783,7 @@ } }, { - "id": 2708, + "id": 2719, "name": "--ts-var-liveboard-group-title-font-size", "kind": 1024, "kindString": "Property", @@ -29712,7 +29796,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 549, + "line": 550, "character": 4 } ], @@ -29722,7 +29806,7 @@ } }, { - "id": 2709, + "id": 2720, "name": "--ts-var-liveboard-group-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29735,7 +29819,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 554, + "line": 555, "character": 4 } ], @@ -29745,7 +29829,7 @@ } }, { - "id": 2707, + "id": 2718, "name": "--ts-var-liveboard-group-title-padding", "kind": 1024, "kindString": "Property", @@ -29758,7 +29842,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 544, + "line": 545, "character": 4 } ], @@ -29768,7 +29852,7 @@ } }, { - "id": 2751, + "id": 2762, "name": "--ts-var-liveboard-header-action-button-active-color", "kind": 1024, "kindString": "Property", @@ -29781,7 +29865,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 764, + "line": 765, "character": 4 } ], @@ -29791,7 +29875,7 @@ } }, { - "id": 2748, + "id": 2759, "name": "--ts-var-liveboard-header-action-button-background", "kind": 1024, "kindString": "Property", @@ -29804,7 +29888,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 749, + "line": 750, "character": 4 } ], @@ -29814,7 +29898,7 @@ } }, { - "id": 2749, + "id": 2760, "name": "--ts-var-liveboard-header-action-button-font-color", "kind": 1024, "kindString": "Property", @@ -29827,7 +29911,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 754, + "line": 755, "character": 4 } ], @@ -29837,7 +29921,7 @@ } }, { - "id": 2750, + "id": 2761, "name": "--ts-var-liveboard-header-action-button-hover-color", "kind": 1024, "kindString": "Property", @@ -29850,7 +29934,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 759, + "line": 760, "character": 4 } ], @@ -29860,7 +29944,7 @@ } }, { - "id": 2698, + "id": 2709, "name": "--ts-var-liveboard-header-background", "kind": 1024, "kindString": "Property", @@ -29873,7 +29957,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 499, + "line": 500, "character": 4 } ], @@ -29883,7 +29967,7 @@ } }, { - "id": 2757, + "id": 2768, "name": "--ts-var-liveboard-header-badge-active-color", "kind": 1024, "kindString": "Property", @@ -29896,7 +29980,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 794, + "line": 795, "character": 4 } ], @@ -29906,7 +29990,7 @@ } }, { - "id": 2752, + "id": 2763, "name": "--ts-var-liveboard-header-badge-background", "kind": 1024, "kindString": "Property", @@ -29919,7 +30003,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 769, + "line": 770, "character": 4 } ], @@ -29929,7 +30013,7 @@ } }, { - "id": 2753, + "id": 2764, "name": "--ts-var-liveboard-header-badge-font-color", "kind": 1024, "kindString": "Property", @@ -29942,7 +30026,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 774, + "line": 775, "character": 4 } ], @@ -29952,7 +30036,7 @@ } }, { - "id": 2756, + "id": 2767, "name": "--ts-var-liveboard-header-badge-hover-color", "kind": 1024, "kindString": "Property", @@ -29965,7 +30049,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 789, + "line": 790, "character": 4 } ], @@ -29975,7 +30059,7 @@ } }, { - "id": 2754, + "id": 2765, "name": "--ts-var-liveboard-header-badge-modified-background", "kind": 1024, "kindString": "Property", @@ -29988,7 +30072,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 779, + "line": 780, "character": 4 } ], @@ -29998,7 +30082,7 @@ } }, { - "id": 2755, + "id": 2766, "name": "--ts-var-liveboard-header-badge-modified-font-color", "kind": 1024, "kindString": "Property", @@ -30011,7 +30095,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 784, + "line": 785, "character": 4 } ], @@ -30021,7 +30105,7 @@ } }, { - "id": 2700, + "id": 2711, "name": "--ts-var-liveboard-header-font-color", "kind": 1024, "kindString": "Property", @@ -30034,7 +30118,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 509, + "line": 510, "character": 4 } ], @@ -30044,7 +30128,7 @@ } }, { - "id": 2699, + "id": 2710, "name": "--ts-var-liveboard-header-fontsize", "kind": 1024, "kindString": "Property", @@ -30057,7 +30141,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 504, + "line": 505, "character": 4 } ], @@ -30067,7 +30151,7 @@ } }, { - "id": 2695, + "id": 2706, "name": "--ts-var-liveboard-layout-background", "kind": 1024, "kindString": "Property", @@ -30080,7 +30164,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 484, + "line": 485, "character": 4 } ], @@ -30090,7 +30174,7 @@ } }, { - "id": 2696, + "id": 2707, "name": "--ts-var-liveboard-layout-title-color", "kind": 1024, "kindString": "Property", @@ -30103,7 +30187,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 489, + "line": 490, "character": 4 } ], @@ -30113,7 +30197,7 @@ } }, { - "id": 2697, + "id": 2708, "name": "--ts-var-liveboard-layout-title-fontsize", "kind": 1024, "kindString": "Property", @@ -30126,7 +30210,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 494, + "line": 495, "character": 4 } ], @@ -30136,7 +30220,7 @@ } }, { - "id": 2720, + "id": 2731, "name": "--ts-var-liveboard-notetitle-body-font-color", "kind": 1024, "kindString": "Property", @@ -30149,7 +30233,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 609, + "line": 610, "character": 4 } ], @@ -30159,7 +30243,7 @@ } }, { - "id": 2719, + "id": 2730, "name": "--ts-var-liveboard-notetitle-heading-font-color", "kind": 1024, "kindString": "Property", @@ -30172,7 +30256,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 604, + "line": 605, "character": 4 } ], @@ -30182,7 +30266,7 @@ } }, { - "id": 2734, + "id": 2745, "name": "--ts-var-liveboard-single-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -30195,7 +30279,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 679, + "line": 680, "character": 4 } ], @@ -30205,7 +30289,7 @@ } }, { - "id": 2736, + "id": 2747, "name": "--ts-var-liveboard-tab-active-border-color", "kind": 1024, "kindString": "Property", @@ -30218,7 +30302,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 689, + "line": 690, "character": 4 } ], @@ -30228,7 +30312,7 @@ } }, { - "id": 2737, + "id": 2748, "name": "--ts-var-liveboard-tab-hover-color", "kind": 1024, "kindString": "Property", @@ -30241,7 +30325,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 694, + "line": 695, "character": 4 } ], @@ -30251,7 +30335,7 @@ } }, { - "id": 2702, + "id": 2713, "name": "--ts-var-liveboard-tile-background", "kind": 1024, "kindString": "Property", @@ -30264,7 +30348,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 519, + "line": 520, "character": 4 } ], @@ -30274,7 +30358,7 @@ } }, { - "id": 2701, + "id": 2712, "name": "--ts-var-liveboard-tile-border-color", "kind": 1024, "kindString": "Property", @@ -30287,7 +30371,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 514, + "line": 515, "character": 4 } ], @@ -30297,7 +30381,7 @@ } }, { - "id": 2703, + "id": 2714, "name": "--ts-var-liveboard-tile-border-radius", "kind": 1024, "kindString": "Property", @@ -30310,7 +30394,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 524, + "line": 525, "character": 4 } ], @@ -30320,7 +30404,7 @@ } }, { - "id": 2740, + "id": 2751, "name": "--ts-var-liveboard-tile-description-font-weight", "kind": 1024, "kindString": "Property", @@ -30333,7 +30417,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 709, + "line": 710, "character": 4 } ], @@ -30343,7 +30427,7 @@ } }, { - "id": 2741, + "id": 2752, "name": "--ts-var-liveboard-tile-description-opacity", "kind": 1024, "kindString": "Property", @@ -30356,7 +30440,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 714, + "line": 715, "character": 4 } ], @@ -30366,7 +30450,7 @@ } }, { - "id": 2704, + "id": 2715, "name": "--ts-var-liveboard-tile-padding", "kind": 1024, "kindString": "Property", @@ -30379,7 +30463,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 529, + "line": 530, "character": 4 } ], @@ -30389,7 +30473,7 @@ } }, { - "id": 2705, + "id": 2716, "name": "--ts-var-liveboard-tile-table-header-background", "kind": 1024, "kindString": "Property", @@ -30402,7 +30486,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 534, + "line": 535, "character": 4 } ], @@ -30412,7 +30496,7 @@ } }, { - "id": 2738, + "id": 2749, "name": "--ts-var-liveboard-tile-title-fontsize", "kind": 1024, "kindString": "Property", @@ -30425,7 +30509,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 699, + "line": 700, "character": 4 } ], @@ -30435,7 +30519,7 @@ } }, { - "id": 2739, + "id": 2750, "name": "--ts-var-liveboard-tile-title-fontweight", "kind": 1024, "kindString": "Property", @@ -30448,7 +30532,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 704, + "line": 705, "character": 4 } ], @@ -30458,7 +30542,7 @@ } }, { - "id": 2673, + "id": 2684, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -30471,7 +30555,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 381, + "line": 382, "character": 4 } ], @@ -30481,7 +30565,7 @@ } }, { - "id": 2670, + "id": 2681, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -30494,7 +30578,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 366, + "line": 367, "character": 4 } ], @@ -30504,7 +30588,7 @@ } }, { - "id": 2669, + "id": 2680, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -30517,7 +30601,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 361, + "line": 362, "character": 4 } ], @@ -30527,7 +30611,7 @@ } }, { - "id": 2671, + "id": 2682, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -30540,7 +30624,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 371, + "line": 372, "character": 4 } ], @@ -30550,7 +30634,7 @@ } }, { - "id": 2674, + "id": 2685, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -30563,7 +30647,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 386, + "line": 387, "character": 4 } ], @@ -30573,7 +30657,7 @@ } }, { - "id": 2672, + "id": 2683, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -30586,7 +30670,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 376, + "line": 377, "character": 4 } ], @@ -30596,7 +30680,7 @@ } }, { - "id": 2607, + "id": 2618, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -30609,7 +30693,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 39, + "line": 40, "character": 4 } ], @@ -30619,7 +30703,7 @@ } }, { - "id": 2608, + "id": 2619, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -30632,7 +30716,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 44, + "line": 45, "character": 4 } ], @@ -30642,7 +30726,7 @@ } }, { - "id": 2746, + "id": 2757, "name": "--ts-var-parameter-chip-active-background", "kind": 1024, "kindString": "Property", @@ -30655,7 +30739,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 739, + "line": 740, "character": 4 } ], @@ -30665,7 +30749,7 @@ } }, { - "id": 2747, + "id": 2758, "name": "--ts-var-parameter-chip-active-text-color", "kind": 1024, "kindString": "Property", @@ -30678,7 +30762,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 744, + "line": 745, "character": 4 } ], @@ -30688,7 +30772,7 @@ } }, { - "id": 2742, + "id": 2753, "name": "--ts-var-parameter-chip-background", "kind": 1024, "kindString": "Property", @@ -30701,7 +30785,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 719, + "line": 720, "character": 4 } ], @@ -30711,7 +30795,7 @@ } }, { - "id": 2744, + "id": 2755, "name": "--ts-var-parameter-chip-hover-background", "kind": 1024, "kindString": "Property", @@ -30724,7 +30808,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 729, + "line": 730, "character": 4 } ], @@ -30734,7 +30818,7 @@ } }, { - "id": 2745, + "id": 2756, "name": "--ts-var-parameter-chip-hover-text-color", "kind": 1024, "kindString": "Property", @@ -30747,7 +30831,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 734, + "line": 735, "character": 4 } ], @@ -30757,7 +30841,7 @@ } }, { - "id": 2743, + "id": 2754, "name": "--ts-var-parameter-chip-text-color", "kind": 1024, "kindString": "Property", @@ -30770,7 +30854,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 724, + "line": 725, "character": 4 } ], @@ -30780,7 +30864,7 @@ } }, { - "id": 2602, + "id": 2613, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -30803,7 +30887,7 @@ } }, { - "id": 2603, + "id": 2614, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -30826,7 +30910,7 @@ } }, { - "id": 2604, + "id": 2615, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -30849,7 +30933,7 @@ } }, { - "id": 2605, + "id": 2616, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -30872,7 +30956,7 @@ } }, { - "id": 2616, + "id": 2627, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -30885,7 +30969,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 84, + "line": 85, "character": 4 } ], @@ -30895,7 +30979,7 @@ } }, { - "id": 2620, + "id": 2631, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -30908,7 +30992,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 106, + "line": 107, "character": 4 } ], @@ -30918,7 +31002,7 @@ } }, { - "id": 2621, + "id": 2632, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -30931,7 +31015,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 112, + "line": 113, "character": 4 } ], @@ -30941,7 +31025,7 @@ } }, { - "id": 2619, + "id": 2630, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -30954,7 +31038,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 101, + "line": 102, "character": 4 } ], @@ -30964,7 +31048,7 @@ } }, { - "id": 2615, + "id": 2626, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -30977,7 +31061,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 79, + "line": 80, "character": 4 } ], @@ -30987,7 +31071,7 @@ } }, { - "id": 2618, + "id": 2629, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -31000,7 +31084,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 96, + "line": 97, "character": 4 } ], @@ -31010,7 +31094,7 @@ } }, { - "id": 2612, + "id": 2623, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -31023,7 +31107,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 64, + "line": 65, "character": 4 } ], @@ -31033,7 +31117,7 @@ } }, { - "id": 2613, + "id": 2624, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -31046,7 +31130,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 69, + "line": 70, "character": 4 } ], @@ -31056,7 +31140,7 @@ } }, { - "id": 2614, + "id": 2625, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -31069,7 +31153,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 74, + "line": 75, "character": 4 } ], @@ -31079,7 +31163,7 @@ } }, { - "id": 2609, + "id": 2620, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -31092,7 +31176,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 49, + "line": 50, "character": 4 } ], @@ -31102,7 +31186,7 @@ } }, { - "id": 2610, + "id": 2621, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -31115,7 +31199,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 54, + "line": 55, "character": 4 } ], @@ -31125,7 +31209,7 @@ } }, { - "id": 2611, + "id": 2622, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -31138,7 +31222,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 59, + "line": 60, "character": 4 } ], @@ -31148,7 +31232,7 @@ } }, { - "id": 2617, + "id": 2628, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -31161,7 +31245,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 90, + "line": 91, "character": 4 } ], @@ -31171,7 +31255,7 @@ } }, { - "id": 2682, + "id": 2693, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -31184,7 +31268,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 426, + "line": 427, "character": 4 } ], @@ -31194,7 +31278,7 @@ } }, { - "id": 2731, + "id": 2742, "name": "--ts-var-side-panel-width", "kind": 1024, "kindString": "Property", @@ -31207,7 +31291,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 664, + "line": 665, "character": 4 } ], @@ -31217,7 +31301,7 @@ } }, { - "id": 2771, + "id": 2782, "name": "--ts-var-spotiq-analyze-crosscorrelation-card-background", "kind": 1024, "kindString": "Property", @@ -31230,7 +31314,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 864, + "line": 865, "character": 4 } ], @@ -31240,7 +31324,7 @@ } }, { - "id": 2768, + "id": 2779, "name": "--ts-var-spotiq-analyze-forecasting-card-background", "kind": 1024, "kindString": "Property", @@ -31253,7 +31337,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 849, + "line": 850, "character": 4 } ], @@ -31263,7 +31347,7 @@ } }, { - "id": 2769, + "id": 2780, "name": "--ts-var-spotiq-analyze-outlier-card-background", "kind": 1024, "kindString": "Property", @@ -31276,7 +31360,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 854, + "line": 855, "character": 4 } ], @@ -31286,7 +31370,7 @@ } }, { - "id": 2770, + "id": 2781, "name": "--ts-var-spotiq-analyze-trend-card-background", "kind": 1024, "kindString": "Property", @@ -31299,7 +31383,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 859, + "line": 860, "character": 4 } ], @@ -31309,7 +31393,7 @@ } }, { - "id": 2622, + "id": 2633, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -31322,7 +31406,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 117, + "line": 118, "character": 4 } ], @@ -31332,7 +31416,7 @@ } }, { - "id": 2623, + "id": 2634, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -31345,7 +31429,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 122, + "line": 123, "character": 4 } ], @@ -31355,7 +31439,7 @@ } }, { - "id": 2652, + "id": 2663, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -31368,7 +31452,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 275, + "line": 276, "character": 4 } ], @@ -31378,7 +31462,7 @@ } }, { - "id": 2650, + "id": 2661, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -31391,7 +31475,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 265, + "line": 266, "character": 4 } ], @@ -31401,7 +31485,7 @@ } }, { - "id": 2651, + "id": 2662, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -31414,7 +31498,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 270, + "line": 271, "character": 4 } ], @@ -31424,7 +31508,7 @@ } }, { - "id": 2647, + "id": 2658, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -31437,7 +31521,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 248, + "line": 249, "character": 4 } ], @@ -31447,7 +31531,7 @@ } }, { - "id": 2648, + "id": 2659, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -31460,7 +31544,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 254, + "line": 255, "character": 4 } ], @@ -31470,7 +31554,7 @@ } }, { - "id": 2649, + "id": 2660, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -31483,7 +31567,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 260, + "line": 261, "character": 4 } ], @@ -31493,7 +31577,7 @@ } }, { - "id": 2653, + "id": 2664, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -31506,7 +31590,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 280, + "line": 281, "character": 4 } ], @@ -31516,7 +31600,7 @@ } }, { - "id": 2694, + "id": 2705, "name": "--ts-var-viz-tile-height", "kind": 1024, "kindString": "Property", @@ -31529,7 +31613,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 479, + "line": 480, "character": 4 } ], @@ -31539,7 +31623,7 @@ } }, { - "id": 2644, + "id": 2655, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -31552,7 +31636,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 233, + "line": 234, "character": 4 } ], @@ -31562,7 +31646,7 @@ } }, { - "id": 2645, + "id": 2656, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -31575,7 +31659,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 238, + "line": 239, "character": 4 } ], @@ -31585,7 +31669,7 @@ } }, { - "id": 2646, + "id": 2657, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -31598,7 +31682,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 243, + "line": 244, "character": 4 } ], @@ -31613,177 +31697,177 @@ "title": "Properties", "kind": 1024, "children": [ - 2655, - 2654, - 2624, - 2625, - 2627, - 2626, - 2606, - 2667, - 2668, - 2665, 2666, - 2629, - 2634, - 2631, - 2633, - 2632, - 2630, - 2639, + 2665, + 2635, 2636, 2638, 2637, - 2635, - 2643, + 2617, + 2678, + 2679, + 2676, + 2677, + 2640, + 2645, 2642, + 2644, + 2643, 2641, - 2640, - 2628, + 2650, + 2647, + 2649, + 2648, + 2646, + 2654, + 2653, + 2652, + 2651, + 2639, + 2783, + 2778, + 2773, 2772, - 2767, - 2762, - 2761, - 2764, - 2763, + 2775, + 2774, + 2701, + 2704, + 2699, + 2702, + 2703, + 2698, + 2700, + 2671, + 2670, + 2673, + 2672, + 2669, + 2667, + 2668, + 2674, + 2675, + 2686, + 2687, 2690, - 2693, 2688, - 2691, - 2692, - 2687, 2689, - 2660, - 2659, - 2662, - 2661, - 2658, - 2656, - 2657, - 2663, - 2664, - 2675, - 2676, - 2679, - 2677, - 2678, - 2686, - 2685, - 2684, - 2683, - 2760, - 2759, - 2758, - 2766, - 2765, - 2681, - 2680, - 2716, - 2729, - 2730, + 2697, + 2696, + 2695, + 2694, + 2771, + 2770, + 2769, + 2777, + 2776, + 2692, + 2691, 2727, + 2740, + 2741, + 2738, + 2739, + 2736, + 2737, + 2746, + 2744, + 2743, 2728, + 2729, + 2733, + 2723, + 2724, + 2717, + 2735, 2725, 2726, - 2735, - 2733, + 2734, + 2721, + 2722, 2732, - 2717, + 2719, + 2720, 2718, - 2722, - 2712, - 2713, - 2706, - 2724, - 2714, - 2715, - 2723, - 2710, - 2711, - 2721, - 2708, + 2762, + 2759, + 2760, + 2761, 2709, + 2768, + 2763, + 2764, + 2767, + 2765, + 2766, + 2711, + 2710, + 2706, 2707, - 2751, + 2708, + 2731, + 2730, + 2745, + 2747, 2748, + 2713, + 2712, + 2714, + 2751, + 2752, + 2715, + 2716, 2749, 2750, - 2698, + 2684, + 2681, + 2680, + 2682, + 2685, + 2683, + 2618, + 2619, 2757, - 2752, + 2758, 2753, + 2755, 2756, 2754, - 2755, - 2700, - 2699, - 2695, - 2696, - 2697, - 2720, - 2719, - 2734, - 2736, - 2737, - 2702, - 2701, - 2703, - 2740, - 2741, - 2704, - 2705, - 2738, - 2739, - 2673, - 2670, - 2669, - 2671, - 2674, - 2672, - 2607, - 2608, - 2746, - 2747, - 2742, - 2744, - 2745, - 2743, - 2602, - 2603, - 2604, - 2605, + 2613, + 2614, + 2615, 2616, + 2627, + 2631, + 2632, + 2630, + 2626, + 2629, + 2623, + 2624, + 2625, 2620, 2621, - 2619, - 2615, - 2618, - 2612, - 2613, - 2614, - 2609, - 2610, - 2611, - 2617, - 2682, - 2731, - 2771, - 2768, - 2769, - 2770, 2622, - 2623, - 2652, - 2650, - 2651, - 2647, - 2648, - 2649, - 2653, - 2694, - 2644, - 2645, - 2646 + 2628, + 2693, + 2742, + 2782, + 2779, + 2780, + 2781, + 2633, + 2634, + 2663, + 2661, + 2662, + 2658, + 2659, + 2660, + 2664, + 2705, + 2655, + 2656, + 2657 ] } ], @@ -31796,7 +31880,7 @@ ] }, { - "id": 2589, + "id": 2600, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -31806,7 +31890,7 @@ }, "children": [ { - "id": 2591, + "id": 2602, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -31822,12 +31906,12 @@ ], "type": { "type": "reference", - "id": 2592, + "id": 2603, "name": "customCssInterface" } }, { - "id": 2590, + "id": 2601, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -31852,8 +31936,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2591, - 2590 + 2602, + 2601 ] } ], @@ -31866,7 +31950,7 @@ ] }, { - "id": 2579, + "id": 2590, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -31882,7 +31966,7 @@ }, "children": [ { - "id": 2581, + "id": 2592, "name": "content", "kind": 1024, "kindString": "Property", @@ -31899,14 +31983,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2582, + "id": 2593, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2584, + "id": 2595, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -31936,7 +32020,7 @@ } }, { - "id": 2585, + "id": 2596, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -31956,7 +32040,7 @@ } }, { - "id": 2583, + "id": 2594, "name": "strings", "kind": 1024, "kindString": "Property", @@ -31999,21 +32083,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2584, - 2585, - 2583 + 2595, + 2596, + 2594 ] } ], "indexSignature": { - "id": 2586, + "id": 2597, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2587, + "id": 2598, "name": "key", "kind": 32768, "flags": {}, @@ -32032,7 +32116,7 @@ } }, { - "id": 2588, + "id": 2599, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -32052,7 +32136,7 @@ } }, { - "id": 2580, + "id": 2591, "name": "style", "kind": 1024, "kindString": "Property", @@ -32068,7 +32152,7 @@ ], "type": { "type": "reference", - "id": 2589, + "id": 2600, "name": "CustomStyles" } } @@ -32078,9 +32162,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2581, - 2588, - 2580 + 2592, + 2599, + 2591 ] } ], @@ -32093,7 +32177,7 @@ ] }, { - "id": 2189, + "id": 2200, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -32109,7 +32193,7 @@ }, "children": [ { - "id": 2231, + "id": 2242, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -32139,20 +32223,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2232, + "id": 2243, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2233, + "id": 2244, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2234, + "id": 2245, "name": "key", "kind": 32768, "flags": {}, @@ -32184,7 +32268,7 @@ } }, { - "id": 2192, + "id": 2203, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -32207,7 +32291,7 @@ } }, { - "id": 2213, + "id": 2224, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -32249,7 +32333,7 @@ } }, { - "id": 2215, + "id": 2226, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -32278,7 +32362,7 @@ } }, { - "id": 2191, + "id": 2202, "name": "authType", "kind": 1024, "kindString": "Property", @@ -32295,12 +32379,12 @@ ], "type": { "type": "reference", - "id": 1849, + "id": 1860, "name": "AuthType" } }, { - "id": 2204, + "id": 2215, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -32329,7 +32413,7 @@ } }, { - "id": 2216, + "id": 2227, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -32362,7 +32446,7 @@ } }, { - "id": 2207, + "id": 2218, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -32391,7 +32475,7 @@ } }, { - "id": 2228, + "id": 2239, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -32420,7 +32504,7 @@ } }, { - "id": 2238, + "id": 2249, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -32456,7 +32540,7 @@ } }, { - "id": 2235, + "id": 2246, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -32499,7 +32583,7 @@ } }, { - "id": 2212, + "id": 2223, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -32524,12 +32608,12 @@ ], "type": { "type": "reference", - "id": 2579, + "id": 2590, "name": "CustomisationsInterface" } }, { - "id": 2226, + "id": 2237, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -32558,7 +32642,7 @@ } }, { - "id": 2209, + "id": 2220, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -32588,7 +32672,7 @@ } }, { - "id": 2237, + "id": 2248, "name": "disableFullscreenPresentation", "kind": 1024, "kindString": "Property", @@ -32625,7 +32709,7 @@ } }, { - "id": 2230, + "id": 2241, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -32654,7 +32738,7 @@ } }, { - "id": 2205, + "id": 2216, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -32687,7 +32771,7 @@ } }, { - "id": 2236, + "id": 2247, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -32707,7 +32791,7 @@ } }, { - "id": 2225, + "id": 2236, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -32736,7 +32820,7 @@ } }, { - "id": 2203, + "id": 2214, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -32765,7 +32849,7 @@ } }, { - "id": 2198, + "id": 2209, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -32799,7 +32883,7 @@ } }, { - "id": 2224, + "id": 2235, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -32832,12 +32916,12 @@ ], "type": { "type": "reference", - "id": 2776, + "id": 2787, "name": "LogLevel" } }, { - "id": 2206, + "id": 2217, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -32866,7 +32950,7 @@ } }, { - "id": 2197, + "id": 2208, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -32899,7 +32983,7 @@ } }, { - "id": 2227, + "id": 2238, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -32928,7 +33012,7 @@ } }, { - "id": 2196, + "id": 2207, "name": "password", "kind": 1024, "kindString": "Property", @@ -32952,7 +33036,7 @@ } }, { - "id": 2222, + "id": 2233, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -32981,7 +33065,7 @@ } }, { - "id": 2208, + "id": 2219, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -33014,7 +33098,7 @@ } }, { - "id": 2199, + "id": 2210, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -33044,7 +33128,7 @@ } }, { - "id": 2201, + "id": 2212, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -33073,7 +33157,7 @@ } }, { - "id": 2223, + "id": 2234, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -33102,7 +33186,7 @@ } }, { - "id": 2202, + "id": 2213, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -33131,7 +33215,7 @@ } }, { - "id": 2211, + "id": 2222, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -33154,7 +33238,7 @@ } }, { - "id": 2210, + "id": 2221, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -33183,7 +33267,7 @@ } }, { - "id": 2190, + "id": 2201, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -33204,7 +33288,7 @@ } }, { - "id": 2214, + "id": 2225, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -33227,7 +33311,7 @@ } }, { - "id": 2195, + "id": 2206, "name": "username", "kind": 1024, "kindString": "Property", @@ -33250,7 +33334,7 @@ } }, { - "id": 2193, + "id": 2204, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -33266,7 +33350,7 @@ ], "signatures": [ { - "id": 2194, + "id": 2205, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -33294,50 +33378,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2231, - 2192, - 2213, + 2242, + 2203, + 2224, + 2226, + 2202, 2215, - 2191, - 2204, + 2227, + 2218, + 2239, + 2249, + 2246, + 2223, + 2237, + 2220, + 2248, + 2241, 2216, - 2207, - 2228, - 2238, + 2247, + 2236, + 2214, + 2209, 2235, + 2217, + 2208, + 2238, + 2207, + 2233, + 2219, + 2210, 2212, - 2226, - 2209, - 2237, - 2230, - 2205, - 2236, - 2225, - 2203, - 2198, - 2224, - 2206, - 2197, - 2227, - 2196, + 2234, + 2213, 2222, - 2208, - 2199, + 2221, 2201, - 2223, - 2202, - 2211, - 2210, - 2190, - 2214, - 2195 + 2225, + 2206 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2193 + 2204 ] } ], @@ -33350,7 +33434,7 @@ ] }, { - "id": 2538, + "id": 2549, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -33366,7 +33450,7 @@ }, "children": [ { - "id": 2540, + "id": 2551, "name": "height", "kind": 1024, "kindString": "Property", @@ -33398,7 +33482,7 @@ } }, { - "id": 2541, + "id": 2552, "name": "loading", "kind": 1024, "kindString": "Property", @@ -33434,7 +33518,7 @@ } }, { - "id": 2539, + "id": 2550, "name": "width", "kind": 1024, "kindString": "Property", @@ -33471,9 +33555,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2540, - 2541, - 2539 + 2551, + 2552, + 2550 ] } ], @@ -33485,7 +33569,7 @@ } ], "indexSignature": { - "id": 2542, + "id": 2553, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -33495,7 +33579,7 @@ }, "parameters": [ { - "id": 2543, + "id": 2554, "name": "key", "kind": 32768, "flags": {}, @@ -33529,7 +33613,7 @@ } }, { - "id": 2335, + "id": 2346, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -33545,7 +33629,7 @@ }, "children": [ { - "id": 2346, + "id": 2357, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -33579,7 +33663,7 @@ } }, { - "id": 2367, + "id": 2378, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -33610,20 +33694,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2368, + "id": 2379, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2369, + "id": 2380, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2370, + "id": 2381, "name": "key", "kind": 32768, "flags": {}, @@ -33659,7 +33743,7 @@ } }, { - "id": 2391, + "id": 2402, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -33701,7 +33785,7 @@ } }, { - "id": 2388, + "id": 2399, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -33731,7 +33815,7 @@ ], "type": { "type": "reference", - "id": 2185, + "id": 2196, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -33740,7 +33824,7 @@ } }, { - "id": 2404, + "id": 2415, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -33778,7 +33862,7 @@ } }, { - "id": 2385, + "id": 2396, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -33819,7 +33903,7 @@ } }, { - "id": 2371, + "id": 2382, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -33848,7 +33932,7 @@ ], "type": { "type": "reference", - "id": 2579, + "id": 2590, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -33857,7 +33941,7 @@ } }, { - "id": 2392, + "id": 2403, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -33899,7 +33983,7 @@ } }, { - "id": 2337, + "id": 2348, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -33937,7 +34021,7 @@ } }, { - "id": 2379, + "id": 2390, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -33975,7 +34059,7 @@ } }, { - "id": 2363, + "id": 2374, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -34013,7 +34097,7 @@ } }, { - "id": 2362, + "id": 2373, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -34045,7 +34129,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -34055,7 +34139,7 @@ } }, { - "id": 2375, + "id": 2386, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -34096,7 +34180,7 @@ } }, { - "id": 2398, + "id": 2409, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -34138,7 +34222,7 @@ } }, { - "id": 2403, + "id": 2414, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -34180,7 +34264,7 @@ } }, { - "id": 2393, + "id": 2404, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -34222,7 +34306,7 @@ } }, { - "id": 2376, + "id": 2387, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -34260,7 +34344,7 @@ } }, { - "id": 2338, + "id": 2349, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -34296,7 +34380,7 @@ } }, { - "id": 2389, + "id": 2400, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -34334,7 +34418,7 @@ } }, { - "id": 2390, + "id": 2401, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -34372,7 +34456,7 @@ } }, { - "id": 2378, + "id": 2389, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -34409,7 +34493,7 @@ } }, { - "id": 2359, + "id": 2370, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -34439,7 +34523,7 @@ ], "type": { "type": "reference", - "id": 2538, + "id": 2549, "name": "FrameParams" }, "inheritedFrom": { @@ -34448,7 +34532,7 @@ } }, { - "id": 2336, + "id": 2347, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -34482,7 +34566,7 @@ } }, { - "id": 2364, + "id": 2375, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -34518,7 +34602,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -34528,7 +34612,7 @@ } }, { - "id": 2352, + "id": 2363, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -34565,7 +34649,7 @@ } }, { - "id": 2401, + "id": 2412, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -34607,7 +34691,7 @@ } }, { - "id": 2394, + "id": 2405, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -34649,7 +34733,7 @@ } }, { - "id": 2347, + "id": 2358, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -34683,7 +34767,7 @@ } }, { - "id": 2372, + "id": 2383, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -34721,7 +34805,7 @@ } }, { - "id": 2399, + "id": 2410, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -34763,7 +34847,7 @@ } }, { - "id": 2397, + "id": 2408, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -34801,7 +34885,7 @@ } }, { - "id": 2354, + "id": 2365, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -34835,7 +34919,7 @@ } }, { - "id": 2355, + "id": 2366, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -34869,7 +34953,7 @@ } }, { - "id": 2356, + "id": 2367, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -34906,7 +34990,7 @@ } }, { - "id": 2357, + "id": 2368, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -34940,7 +35024,7 @@ } }, { - "id": 2381, + "id": 2392, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -34978,7 +35062,7 @@ } }, { - "id": 2339, + "id": 2350, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -35012,7 +35096,7 @@ } }, { - "id": 2345, + "id": 2356, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -35046,7 +35130,7 @@ } }, { - "id": 2405, + "id": 2416, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -35084,7 +35168,7 @@ } }, { - "id": 2366, + "id": 2377, "name": "locale", "kind": 1024, "kindString": "Property", @@ -35122,7 +35206,7 @@ } }, { - "id": 2380, + "id": 2391, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -35160,7 +35244,7 @@ } }, { - "id": 2374, + "id": 2385, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -35198,7 +35282,7 @@ } }, { - "id": 2342, + "id": 2353, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -35232,7 +35316,7 @@ } }, { - "id": 2382, + "id": 2393, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -35270,7 +35354,7 @@ } }, { - "id": 2386, + "id": 2397, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -35302,7 +35386,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1861, + "id": 1872, "name": "RuntimeFilter" } }, @@ -35312,7 +35396,7 @@ } }, { - "id": 2387, + "id": 2398, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -35344,7 +35428,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2773, + "id": 2784, "name": "RuntimeParameter" } }, @@ -35354,7 +35438,7 @@ } }, { - "id": 2384, + "id": 2395, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -35391,7 +35475,7 @@ } }, { - "id": 2396, + "id": 2407, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -35433,7 +35517,7 @@ } }, { - "id": 2402, + "id": 2413, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -35475,7 +35559,7 @@ } }, { - "id": 2395, + "id": 2406, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -35517,7 +35601,7 @@ } }, { - "id": 2400, + "id": 2411, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -35559,7 +35643,7 @@ } }, { - "id": 2348, + "id": 2359, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -35593,7 +35677,7 @@ } }, { - "id": 2365, + "id": 2376, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -35629,7 +35713,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -35639,7 +35723,7 @@ } }, { - "id": 2353, + "id": 2364, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -35676,7 +35760,7 @@ } }, { - "id": 2343, + "id": 2354, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -35713,7 +35797,7 @@ } }, { - "id": 2341, + "id": 2352, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -35752,62 +35836,62 @@ "title": "Properties", "kind": 1024, "children": [ - 2346, - 2367, - 2391, - 2388, - 2404, - 2385, - 2371, - 2392, - 2337, - 2379, - 2363, - 2362, - 2375, - 2398, - 2403, - 2393, - 2376, - 2338, - 2389, - 2390, + 2357, 2378, - 2359, - 2336, - 2364, - 2352, - 2401, - 2394, - 2347, - 2372, + 2402, 2399, - 2397, - 2354, - 2355, - 2356, - 2357, - 2381, - 2339, - 2345, - 2405, - 2366, - 2380, - 2374, - 2342, + 2415, + 2396, 2382, + 2403, + 2348, + 2390, + 2374, + 2373, 2386, + 2409, + 2414, + 2404, 2387, - 2384, - 2396, - 2402, - 2395, + 2349, 2400, - 2348, + 2401, + 2389, + 2370, + 2347, + 2375, + 2363, + 2412, + 2405, + 2358, + 2383, + 2410, + 2408, 2365, + 2366, + 2367, + 2368, + 2392, + 2350, + 2356, + 2416, + 2377, + 2391, + 2385, 2353, - 2343, - 2341 + 2393, + 2397, + 2398, + 2395, + 2407, + 2413, + 2406, + 2411, + 2359, + 2376, + 2364, + 2354, + 2352 ] } ], @@ -35834,7 +35918,7 @@ ] }, { - "id": 1861, + "id": 1872, "name": "RuntimeFilter", "kind": 256, "kindString": "Interface", @@ -35844,7 +35928,7 @@ }, "children": [ { - "id": 1862, + "id": 1873, "name": "columnName", "kind": 1024, "kindString": "Property", @@ -35865,7 +35949,7 @@ } }, { - "id": 1863, + "id": 1874, "name": "operator", "kind": 1024, "kindString": "Property", @@ -35882,12 +35966,12 @@ ], "type": { "type": "reference", - "id": 1865, + "id": 1876, "name": "RuntimeFilterOp" } }, { - "id": 1864, + "id": 1875, "name": "values", "kind": 1024, "kindString": "Property", @@ -35933,9 +36017,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1862, - 1863, - 1864 + 1873, + 1874, + 1875 ] } ], @@ -35948,7 +36032,7 @@ ] }, { - "id": 2773, + "id": 2784, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -35958,7 +36042,7 @@ }, "children": [ { - "id": 2774, + "id": 2785, "name": "name", "kind": 1024, "kindString": "Property", @@ -35979,7 +36063,7 @@ } }, { - "id": 2775, + "id": 2786, "name": "value", "kind": 1024, "kindString": "Property", @@ -36018,8 +36102,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2774, - 2775 + 2785, + 2786 ] } ], @@ -36032,7 +36116,7 @@ ] }, { - "id": 2406, + "id": 2417, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -36052,7 +36136,7 @@ }, "children": [ { - "id": 2435, + "id": 2446, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -36083,20 +36167,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2436, + "id": 2447, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2437, + "id": 2448, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2438, + "id": 2449, "name": "key", "kind": 32768, "flags": {}, @@ -36132,7 +36216,7 @@ } }, { - "id": 2423, + "id": 2434, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -36174,7 +36258,7 @@ } }, { - "id": 2420, + "id": 2431, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -36204,7 +36288,7 @@ ], "type": { "type": "reference", - "id": 2185, + "id": 2196, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -36213,7 +36297,7 @@ } }, { - "id": 2452, + "id": 2463, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -36254,7 +36338,7 @@ } }, { - "id": 2439, + "id": 2450, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -36283,7 +36367,7 @@ ], "type": { "type": "reference", - "id": 2579, + "id": 2590, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -36292,7 +36376,7 @@ } }, { - "id": 2424, + "id": 2435, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -36334,7 +36418,7 @@ } }, { - "id": 2416, + "id": 2427, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -36357,7 +36441,7 @@ } }, { - "id": 2447, + "id": 2458, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -36395,7 +36479,7 @@ } }, { - "id": 2411, + "id": 2422, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -36424,7 +36508,7 @@ } }, { - "id": 2431, + "id": 2442, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -36462,7 +36546,7 @@ } }, { - "id": 2430, + "id": 2441, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -36494,7 +36578,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -36504,7 +36588,7 @@ } }, { - "id": 2443, + "id": 2454, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -36545,7 +36629,7 @@ } }, { - "id": 2425, + "id": 2436, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -36587,7 +36671,7 @@ } }, { - "id": 2444, + "id": 2455, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -36625,7 +36709,7 @@ } }, { - "id": 2421, + "id": 2432, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -36663,7 +36747,7 @@ } }, { - "id": 2422, + "id": 2433, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -36701,7 +36785,7 @@ } }, { - "id": 2446, + "id": 2457, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -36738,7 +36822,7 @@ } }, { - "id": 2427, + "id": 2438, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -36768,7 +36852,7 @@ ], "type": { "type": "reference", - "id": 2538, + "id": 2549, "name": "FrameParams" }, "inheritedFrom": { @@ -36777,7 +36861,7 @@ } }, { - "id": 2432, + "id": 2443, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -36813,7 +36897,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -36823,7 +36907,7 @@ } }, { - "id": 2413, + "id": 2424, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -36852,7 +36936,7 @@ } }, { - "id": 2410, + "id": 2421, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -36881,7 +36965,7 @@ } }, { - "id": 2415, + "id": 2426, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -36915,7 +36999,7 @@ } }, { - "id": 2409, + "id": 2420, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -36948,7 +37032,7 @@ } }, { - "id": 2412, + "id": 2423, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -36977,7 +37061,7 @@ } }, { - "id": 2440, + "id": 2451, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -37015,7 +37099,7 @@ } }, { - "id": 2449, + "id": 2460, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -37053,7 +37137,7 @@ } }, { - "id": 2434, + "id": 2445, "name": "locale", "kind": 1024, "kindString": "Property", @@ -37091,7 +37175,7 @@ } }, { - "id": 2448, + "id": 2459, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -37129,7 +37213,7 @@ } }, { - "id": 2442, + "id": 2453, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -37167,7 +37251,7 @@ } }, { - "id": 2418, + "id": 2429, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -37199,7 +37283,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1861, + "id": 1872, "name": "RuntimeFilter" } }, @@ -37209,7 +37293,7 @@ } }, { - "id": 2419, + "id": 2430, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -37241,7 +37325,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2773, + "id": 2784, "name": "RuntimeParameter" } }, @@ -37251,7 +37335,7 @@ } }, { - "id": 2417, + "id": 2428, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -37285,7 +37369,7 @@ } }, { - "id": 2451, + "id": 2462, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -37322,7 +37406,7 @@ } }, { - "id": 2407, + "id": 2418, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -37351,7 +37435,7 @@ } }, { - "id": 2414, + "id": 2425, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -37380,7 +37464,7 @@ } }, { - "id": 2433, + "id": 2444, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -37416,7 +37500,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -37431,42 +37515,42 @@ "title": "Properties", "kind": 1024, "children": [ - 2435, - 2423, - 2420, - 2452, - 2439, - 2424, - 2416, - 2447, - 2411, - 2431, - 2430, - 2443, - 2425, - 2444, - 2421, - 2422, 2446, - 2427, - 2432, - 2413, - 2410, - 2415, - 2409, - 2412, - 2440, - 2449, 2434, - 2448, + 2431, + 2463, + 2450, + 2435, + 2427, + 2458, + 2422, 2442, - 2418, - 2419, - 2417, + 2441, + 2454, + 2436, + 2455, + 2432, + 2433, + 2457, + 2438, + 2443, + 2424, + 2421, + 2426, + 2420, + 2423, 2451, - 2407, - 2414, - 2433 + 2460, + 2445, + 2459, + 2453, + 2429, + 2430, + 2428, + 2462, + 2418, + 2425, + 2444 ] } ], @@ -37520,7 +37604,7 @@ ] }, { - "id": 2293, + "id": 2304, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -37535,7 +37619,7 @@ }, "children": [ { - "id": 2308, + "id": 2319, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -37566,20 +37650,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2309, + "id": 2320, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2310, + "id": 2321, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2311, + "id": 2322, "name": "key", "kind": 32768, "flags": {}, @@ -37615,7 +37699,7 @@ } }, { - "id": 2332, + "id": 2343, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -37657,7 +37741,7 @@ } }, { - "id": 2329, + "id": 2340, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -37687,7 +37771,7 @@ ], "type": { "type": "reference", - "id": 2185, + "id": 2196, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -37696,7 +37780,7 @@ } }, { - "id": 2326, + "id": 2337, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -37737,7 +37821,7 @@ } }, { - "id": 2312, + "id": 2323, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -37766,7 +37850,7 @@ ], "type": { "type": "reference", - "id": 2579, + "id": 2590, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -37775,7 +37859,7 @@ } }, { - "id": 2333, + "id": 2344, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -37817,7 +37901,7 @@ } }, { - "id": 2295, + "id": 2306, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -37851,7 +37935,7 @@ } }, { - "id": 2294, + "id": 2305, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -37892,7 +37976,7 @@ } }, { - "id": 2320, + "id": 2331, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -37930,7 +38014,7 @@ } }, { - "id": 2304, + "id": 2315, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -37968,7 +38052,7 @@ } }, { - "id": 2303, + "id": 2314, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -38000,7 +38084,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -38010,7 +38094,7 @@ } }, { - "id": 2316, + "id": 2327, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -38051,7 +38135,7 @@ } }, { - "id": 2334, + "id": 2345, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -38093,7 +38177,7 @@ } }, { - "id": 2317, + "id": 2328, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -38131,7 +38215,7 @@ } }, { - "id": 2330, + "id": 2341, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -38169,7 +38253,7 @@ } }, { - "id": 2331, + "id": 2342, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -38207,7 +38291,7 @@ } }, { - "id": 2298, + "id": 2309, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -38241,7 +38325,7 @@ } }, { - "id": 2319, + "id": 2330, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -38278,7 +38362,7 @@ } }, { - "id": 2300, + "id": 2311, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -38308,7 +38392,7 @@ ], "type": { "type": "reference", - "id": 2538, + "id": 2549, "name": "FrameParams" }, "inheritedFrom": { @@ -38317,7 +38401,7 @@ } }, { - "id": 2305, + "id": 2316, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -38353,7 +38437,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -38363,7 +38447,7 @@ } }, { - "id": 2313, + "id": 2324, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -38401,7 +38485,7 @@ } }, { - "id": 2322, + "id": 2333, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -38439,7 +38523,7 @@ } }, { - "id": 2307, + "id": 2318, "name": "locale", "kind": 1024, "kindString": "Property", @@ -38477,7 +38561,7 @@ } }, { - "id": 2321, + "id": 2332, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -38515,7 +38599,7 @@ } }, { - "id": 2315, + "id": 2326, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -38553,7 +38637,7 @@ } }, { - "id": 2323, + "id": 2334, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -38591,7 +38675,7 @@ } }, { - "id": 2327, + "id": 2338, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -38623,7 +38707,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1861, + "id": 1872, "name": "RuntimeFilter" } }, @@ -38633,7 +38717,7 @@ } }, { - "id": 2328, + "id": 2339, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -38665,7 +38749,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2773, + "id": 2784, "name": "RuntimeParameter" } }, @@ -38675,7 +38759,7 @@ } }, { - "id": 2297, + "id": 2308, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -38709,7 +38793,7 @@ } }, { - "id": 2325, + "id": 2336, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -38746,7 +38830,7 @@ } }, { - "id": 2296, + "id": 2307, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -38780,7 +38864,7 @@ } }, { - "id": 2306, + "id": 2317, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -38816,7 +38900,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -38831,38 +38915,38 @@ "title": "Properties", "kind": 1024, "children": [ - 2308, - 2332, - 2329, - 2326, - 2312, - 2333, - 2295, - 2294, - 2320, - 2304, - 2303, - 2316, - 2334, - 2317, - 2330, - 2331, - 2298, 2319, - 2300, + 2343, + 2340, + 2337, + 2323, + 2344, + 2306, 2305, - 2313, - 2322, - 2307, - 2321, + 2331, 2315, - 2323, + 2314, 2327, + 2345, 2328, - 2297, - 2325, - 2296, - 2306 + 2341, + 2342, + 2309, + 2330, + 2311, + 2316, + 2324, + 2333, + 2318, + 2332, + 2326, + 2334, + 2338, + 2339, + 2308, + 2336, + 2307, + 2317 ] } ], @@ -38885,7 +38969,7 @@ ] }, { - "id": 2239, + "id": 2250, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -38901,7 +38985,7 @@ }, "children": [ { - "id": 2275, + "id": 2286, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -38932,20 +39016,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2276, + "id": 2287, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2277, + "id": 2288, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2278, + "id": 2289, "name": "key", "kind": 32768, "flags": {}, @@ -38981,7 +39065,7 @@ } }, { - "id": 2251, + "id": 2262, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -39015,7 +39099,7 @@ } }, { - "id": 2241, + "id": 2252, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -39049,7 +39133,7 @@ } }, { - "id": 2240, + "id": 2251, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -39083,7 +39167,7 @@ } }, { - "id": 2263, + "id": 2274, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -39125,7 +39209,7 @@ } }, { - "id": 2254, + "id": 2265, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -39162,7 +39246,7 @@ } }, { - "id": 2260, + "id": 2271, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -39192,7 +39276,7 @@ ], "type": { "type": "reference", - "id": 2185, + "id": 2196, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -39201,7 +39285,7 @@ } }, { - "id": 2292, + "id": 2303, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -39242,7 +39326,7 @@ } }, { - "id": 2279, + "id": 2290, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -39271,7 +39355,7 @@ ], "type": { "type": "reference", - "id": 2579, + "id": 2590, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -39280,7 +39364,7 @@ } }, { - "id": 2256, + "id": 2267, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -39318,7 +39402,7 @@ } }, { - "id": 2264, + "id": 2275, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -39360,7 +39444,7 @@ } }, { - "id": 2247, + "id": 2258, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -39394,7 +39478,7 @@ } }, { - "id": 2246, + "id": 2257, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -39430,7 +39514,7 @@ } }, { - "id": 2287, + "id": 2298, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -39468,7 +39552,7 @@ } }, { - "id": 2271, + "id": 2282, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -39506,7 +39590,7 @@ } }, { - "id": 2270, + "id": 2281, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -39538,7 +39622,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -39548,7 +39632,7 @@ } }, { - "id": 2283, + "id": 2294, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -39589,7 +39673,7 @@ } }, { - "id": 2265, + "id": 2276, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -39631,7 +39715,7 @@ } }, { - "id": 2244, + "id": 2255, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -39665,7 +39749,7 @@ } }, { - "id": 2284, + "id": 2295, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -39703,7 +39787,7 @@ } }, { - "id": 2261, + "id": 2272, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -39741,7 +39825,7 @@ } }, { - "id": 2262, + "id": 2273, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -39779,7 +39863,7 @@ } }, { - "id": 2250, + "id": 2261, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -39813,7 +39897,7 @@ } }, { - "id": 2286, + "id": 2297, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -39850,7 +39934,7 @@ } }, { - "id": 2257, + "id": 2268, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -39888,7 +39972,7 @@ } }, { - "id": 2245, + "id": 2256, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -39922,7 +40006,7 @@ } }, { - "id": 2267, + "id": 2278, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -39952,7 +40036,7 @@ ], "type": { "type": "reference", - "id": 2538, + "id": 2549, "name": "FrameParams" }, "inheritedFrom": { @@ -39961,7 +40045,7 @@ } }, { - "id": 2272, + "id": 2283, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -39997,7 +40081,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -40007,7 +40091,7 @@ } }, { - "id": 2242, + "id": 2253, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -40041,7 +40125,7 @@ } }, { - "id": 2243, + "id": 2254, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -40075,7 +40159,7 @@ } }, { - "id": 2252, + "id": 2263, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -40109,7 +40193,7 @@ } }, { - "id": 2280, + "id": 2291, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -40147,7 +40231,7 @@ } }, { - "id": 2255, + "id": 2266, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -40177,7 +40261,7 @@ } }, { - "id": 2289, + "id": 2300, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -40215,7 +40299,7 @@ } }, { - "id": 2274, + "id": 2285, "name": "locale", "kind": 1024, "kindString": "Property", @@ -40253,7 +40337,7 @@ } }, { - "id": 2288, + "id": 2299, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -40291,7 +40375,7 @@ } }, { - "id": 2282, + "id": 2293, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -40329,7 +40413,7 @@ } }, { - "id": 2258, + "id": 2269, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -40361,7 +40445,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1861, + "id": 1872, "name": "RuntimeFilter" } }, @@ -40371,7 +40455,7 @@ } }, { - "id": 2259, + "id": 2270, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -40403,7 +40487,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2773, + "id": 2784, "name": "RuntimeParameter" } }, @@ -40413,7 +40497,7 @@ } }, { - "id": 2249, + "id": 2260, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -40443,7 +40527,7 @@ } }, { - "id": 2248, + "id": 2259, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -40472,7 +40556,7 @@ } }, { - "id": 2291, + "id": 2302, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -40509,7 +40593,7 @@ } }, { - "id": 2253, + "id": 2264, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -40539,7 +40623,7 @@ } }, { - "id": 2273, + "id": 2284, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -40575,7 +40659,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -40590,50 +40674,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2275, - 2251, - 2241, - 2240, - 2263, - 2254, - 2260, - 2292, - 2279, - 2256, - 2264, - 2247, - 2246, - 2287, - 2271, - 2270, - 2283, - 2265, - 2244, - 2284, - 2261, - 2262, - 2250, 2286, - 2257, - 2245, - 2267, - 2272, - 2242, - 2243, + 2262, 2252, - 2280, - 2255, - 2289, + 2251, 2274, - 2288, - 2282, + 2265, + 2271, + 2303, + 2290, + 2267, + 2275, 2258, - 2259, - 2249, - 2248, - 2291, + 2257, + 2298, + 2282, + 2281, + 2294, + 2276, + 2255, + 2295, + 2272, + 2273, + 2261, + 2297, + 2268, + 2256, + 2278, + 2283, 2253, - 2273 + 2254, + 2263, + 2291, + 2266, + 2300, + 2285, + 2299, + 2293, + 2269, + 2270, + 2260, + 2259, + 2302, + 2264, + 2284 ] } ], @@ -40666,14 +40750,14 @@ ] }, { - "id": 1830, + "id": 1841, "name": "SessionInterface", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1833, + "id": 1844, "name": "acSession", "kind": 1024, "kindString": "Property", @@ -40688,14 +40772,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1834, + "id": 1845, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1836, + "id": 1847, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -40713,7 +40797,7 @@ } }, { - "id": 1835, + "id": 1846, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -40736,8 +40820,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1836, - 1835 + 1847, + 1846 ] } ] @@ -40745,7 +40829,7 @@ } }, { - "id": 1832, + "id": 1843, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -40763,7 +40847,7 @@ } }, { - "id": 1831, + "id": 1842, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -40786,9 +40870,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1833, - 1832, - 1831 + 1844, + 1843, + 1842 ] } ], @@ -40801,7 +40885,7 @@ ] }, { - "id": 1198, + "id": 1207, "name": "SpotterAgentEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -40817,7 +40901,7 @@ }, "children": [ { - "id": 1209, + "id": 1218, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -40848,20 +40932,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1210, + "id": 1219, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1211, + "id": 1220, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1212, + "id": 1221, "name": "key", "kind": 32768, "flags": {}, @@ -40897,7 +40981,7 @@ } }, { - "id": 1226, + "id": 1235, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -40938,7 +41022,7 @@ } }, { - "id": 1213, + "id": 1222, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -40967,7 +41051,7 @@ ], "type": { "type": "reference", - "id": 2579, + "id": 2590, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -40976,7 +41060,7 @@ } }, { - "id": 1221, + "id": 1230, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -41014,7 +41098,7 @@ } }, { - "id": 1205, + "id": 1214, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -41052,7 +41136,7 @@ } }, { - "id": 1204, + "id": 1213, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -41084,7 +41168,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -41094,7 +41178,7 @@ } }, { - "id": 1217, + "id": 1226, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -41135,7 +41219,7 @@ } }, { - "id": 1218, + "id": 1227, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -41173,7 +41257,7 @@ } }, { - "id": 1220, + "id": 1229, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -41210,7 +41294,7 @@ } }, { - "id": 1201, + "id": 1210, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -41240,7 +41324,7 @@ ], "type": { "type": "reference", - "id": 2538, + "id": 2549, "name": "FrameParams" }, "inheritedFrom": { @@ -41249,7 +41333,7 @@ } }, { - "id": 1206, + "id": 1215, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -41285,7 +41369,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -41295,7 +41379,7 @@ } }, { - "id": 1214, + "id": 1223, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -41333,7 +41417,7 @@ } }, { - "id": 1223, + "id": 1232, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -41371,7 +41455,7 @@ } }, { - "id": 1208, + "id": 1217, "name": "locale", "kind": 1024, "kindString": "Property", @@ -41409,7 +41493,7 @@ } }, { - "id": 1222, + "id": 1231, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -41447,7 +41531,7 @@ } }, { - "id": 1216, + "id": 1225, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -41485,7 +41569,7 @@ } }, { - "id": 1225, + "id": 1234, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -41522,7 +41606,7 @@ } }, { - "id": 1207, + "id": 1216, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -41558,7 +41642,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -41568,7 +41652,7 @@ } }, { - "id": 1199, + "id": 1208, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -41594,25 +41678,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1209, - 1226, - 1213, - 1221, - 1205, - 1204, - 1217, 1218, - 1220, - 1201, - 1206, + 1235, + 1222, + 1230, 1214, + 1213, + 1226, + 1227, + 1229, + 1210, + 1215, 1223, - 1208, - 1222, - 1216, + 1232, + 1217, + 1231, 1225, - 1207, - 1199 + 1234, + 1216, + 1208 ] } ], @@ -41642,13 +41726,13 @@ "extendedBy": [ { "type": "reference", - "id": 1227, + "id": 1236, "name": "BodylessConversationViewConfig" } ] }, { - "id": 1448, + "id": 1458, "name": "SpotterEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -41664,7 +41748,7 @@ }, "children": [ { - "id": 1469, + "id": 1479, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -41695,20 +41779,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1470, + "id": 1480, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1471, + "id": 1481, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1472, + "id": 1482, "name": "key", "kind": 32768, "flags": {}, @@ -41744,7 +41828,7 @@ } }, { - "id": 1486, + "id": 1496, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -41785,7 +41869,7 @@ } }, { - "id": 1473, + "id": 1483, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -41814,7 +41898,7 @@ ], "type": { "type": "reference", - "id": 2579, + "id": 2590, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -41823,7 +41907,7 @@ } }, { - "id": 1453, + "id": 1463, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -41861,7 +41945,7 @@ } }, { - "id": 1481, + "id": 1491, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -41899,7 +41983,7 @@ } }, { - "id": 1451, + "id": 1461, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -41933,7 +42017,7 @@ } }, { - "id": 1465, + "id": 1475, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -41971,7 +42055,7 @@ } }, { - "id": 1464, + "id": 1474, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -42003,7 +42087,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -42013,7 +42097,7 @@ } }, { - "id": 1477, + "id": 1487, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -42054,7 +42138,7 @@ } }, { - "id": 1478, + "id": 1488, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -42092,7 +42176,7 @@ } }, { - "id": 1457, + "id": 1467, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -42126,7 +42210,7 @@ } }, { - "id": 1459, + "id": 1469, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -42160,7 +42244,7 @@ } }, { - "id": 1480, + "id": 1490, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -42197,7 +42281,7 @@ } }, { - "id": 1461, + "id": 1471, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -42227,7 +42311,7 @@ ], "type": { "type": "reference", - "id": 2538, + "id": 2549, "name": "FrameParams" }, "inheritedFrom": { @@ -42236,7 +42320,7 @@ } }, { - "id": 1466, + "id": 1476, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -42272,7 +42356,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -42282,7 +42366,7 @@ } }, { - "id": 1455, + "id": 1465, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -42316,7 +42400,7 @@ } }, { - "id": 1452, + "id": 1462, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -42350,7 +42434,7 @@ } }, { - "id": 1474, + "id": 1484, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -42388,7 +42472,7 @@ } }, { - "id": 1483, + "id": 1493, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -42426,7 +42510,7 @@ } }, { - "id": 1468, + "id": 1478, "name": "locale", "kind": 1024, "kindString": "Property", @@ -42464,7 +42548,7 @@ } }, { - "id": 1482, + "id": 1492, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -42502,7 +42586,7 @@ } }, { - "id": 1476, + "id": 1486, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -42540,7 +42624,7 @@ } }, { - "id": 1456, + "id": 1466, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -42572,13 +42656,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1861, + "id": 1872, "name": "RuntimeFilter" } } }, { - "id": 1458, + "id": 1468, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -42610,13 +42694,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2773, + "id": 2784, "name": "RuntimeParameter" } } }, { - "id": 1450, + "id": 1460, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -42639,7 +42723,7 @@ } }, { - "id": 1485, + "id": 1495, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -42676,7 +42760,7 @@ } }, { - "id": 1454, + "id": 1464, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -42710,7 +42794,7 @@ } }, { - "id": 1467, + "id": 1477, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -42746,7 +42830,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2048, + "id": 2059, "name": "Action" } }, @@ -42756,7 +42840,7 @@ } }, { - "id": 1449, + "id": 1459, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -42782,35 +42866,35 @@ "title": "Properties", "kind": 1024, "children": [ + 1479, + 1496, + 1483, + 1463, + 1491, + 1461, + 1475, + 1474, + 1487, + 1488, + 1467, 1469, - 1486, - 1473, - 1453, - 1481, - 1451, + 1490, + 1471, + 1476, 1465, - 1464, - 1477, + 1462, + 1484, + 1493, 1478, - 1457, - 1459, - 1480, - 1461, + 1492, + 1486, 1466, - 1455, - 1452, - 1474, - 1483, 1468, - 1482, - 1476, - 1456, - 1458, - 1450, - 1485, - 1454, - 1467, - 1449 + 1460, + 1495, + 1464, + 1477, + 1459 ] } ], @@ -42840,20 +42924,20 @@ "extendedBy": [ { "type": "reference", - "id": 1487, + "id": 1497, "name": "ConversationViewConfig" } ] }, { - "id": 1837, + "id": 1848, "name": "UnderlyingDataPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1838, + "id": 1849, "name": "columnId", "kind": 1024, "kindString": "Property", @@ -42871,7 +42955,7 @@ } }, { - "id": 1839, + "id": 1850, "name": "dataValue", "kind": 1024, "kindString": "Property", @@ -42894,8 +42978,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1838, - 1839 + 1849, + 1850 ] } ], @@ -42908,14 +42992,14 @@ ] }, { - "id": 2811, + "id": 2822, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2812, + "id": 2823, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -42936,7 +43020,7 @@ } }, { - "id": 2813, + "id": 2824, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -42962,8 +43046,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2812, - 2813 + 2823, + 2824 ] } ], @@ -42976,7 +43060,7 @@ ] }, { - "id": 2592, + "id": 2603, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -42986,7 +43070,7 @@ }, "children": [ { - "id": 2594, + "id": 2605, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -43016,20 +43100,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2595, + "id": 2606, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2596, + "id": 2607, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2597, + "id": 2608, "name": "selector", "kind": 32768, "flags": {}, @@ -43042,7 +43126,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2598, + "id": 2609, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43055,14 +43139,14 @@ } ], "indexSignature": { - "id": 2599, + "id": 2610, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2600, + "id": 2611, "name": "declaration", "kind": 32768, "flags": {}, @@ -43084,7 +43168,7 @@ } }, { - "id": 2593, + "id": 2604, "name": "variables", "kind": 1024, "kindString": "Property", @@ -43103,7 +43187,7 @@ ], "type": { "type": "reference", - "id": 2601, + "id": 2612, "name": "CustomCssVariables" } } @@ -43113,8 +43197,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2594, - 2593 + 2605, + 2604 ] } ], @@ -43419,7 +43503,7 @@ ] }, { - "id": 2562, + "id": 2573, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -43446,7 +43530,7 @@ } }, { - "id": 2566, + "id": 2577, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -43461,7 +43545,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2567, + "id": 2578, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43484,7 +43568,7 @@ ], "signatures": [ { - "id": 2568, + "id": 2579, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43494,19 +43578,19 @@ }, "parameters": [ { - "id": 2569, + "id": 2580, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2574, + "id": 2585, "name": "MessagePayload" } }, { - "id": 2570, + "id": 2581, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -43516,7 +43600,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2571, + "id": 2582, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43530,7 +43614,7 @@ ], "signatures": [ { - "id": 2572, + "id": 2583, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43540,7 +43624,7 @@ }, "parameters": [ { - "id": 2573, + "id": 2584, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -43571,7 +43655,7 @@ } }, { - "id": 2563, + "id": 2574, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -43595,14 +43679,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2564, + "id": 2575, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2565, + "id": 2576, "name": "start", "kind": 1024, "kindString": "Property", @@ -43630,7 +43714,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2565 + 2576 ] } ], @@ -43645,7 +43729,7 @@ } }, { - "id": 2574, + "id": 2585, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -43669,14 +43753,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2575, + "id": 2586, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2577, + "id": 2588, "name": "data", "kind": 1024, "kindString": "Property", @@ -43694,7 +43778,7 @@ } }, { - "id": 2578, + "id": 2589, "name": "status", "kind": 1024, "kindString": "Property", @@ -43714,7 +43798,7 @@ } }, { - "id": 2576, + "id": 2587, "name": "type", "kind": 1024, "kindString": "Property", @@ -43737,9 +43821,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2577, - 2578, - 2576 + 2588, + 2589, + 2587 ] } ], @@ -43754,7 +43838,7 @@ } }, { - "id": 48, + "id": 51, "name": "createLiveboardWithAnswers", "kind": 64, "kindString": "Function", @@ -43770,7 +43854,7 @@ ], "signatures": [ { - "id": 49, + "id": 52, "name": "createLiveboardWithAnswers", "kind": 4096, "kindString": "Call signature", @@ -43792,7 +43876,7 @@ }, "parameters": [ { - "id": 50, + "id": 53, "name": "answers", "kind": 32768, "kindString": "Parameter", @@ -43804,13 +43888,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1757, + "id": 1768, "name": "AnswerService" } } }, { - "id": 51, + "id": 54, "name": "name", "kind": 32768, "kindString": "Parameter", @@ -43974,7 +44058,7 @@ ] }, { - "id": 41, + "id": 44, "name": "getAnswerFromQuery", "kind": 64, "kindString": "Function", @@ -43990,7 +44074,7 @@ ], "signatures": [ { - "id": 42, + "id": 45, "name": "getAnswerFromQuery", "kind": 4096, "kindString": "Call signature", @@ -44011,7 +44095,7 @@ }, "parameters": [ { - "id": 43, + "id": 46, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -44025,7 +44109,7 @@ } }, { - "id": 44, + "id": 47, "name": "worksheetId", "kind": 32768, "kindString": "Parameter", @@ -44045,14 +44129,14 @@ { "type": "reflection", "declaration": { - "id": 45, + "id": 48, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 46, + "id": 49, "name": "answer", "kind": 1024, "kindString": "Property", @@ -44066,12 +44150,12 @@ ], "type": { "type": "reference", - "id": 1757, + "id": 1768, "name": "AnswerService" } }, { - "id": 47, + "id": 50, "name": "suggestion", "kind": 1024, "kindString": "Property", @@ -44094,8 +44178,8 @@ "title": "Properties", "kind": 1024, "children": [ - 46, - 47 + 49, + 50 ] } ] @@ -44153,7 +44237,7 @@ }, "type": { "type": "reference", - "id": 2189, + "id": 2200, "name": "EmbedConfig" } } @@ -44253,14 +44337,14 @@ }, "type": { "type": "reference", - "id": 2189, + "id": 2200, "name": "EmbedConfig" } } ], "type": { "type": "reference", - "id": 1704, + "id": 1715, "name": "AuthEventEmitter" } } @@ -44400,7 +44484,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2533, + "id": 2544, "name": "PrefetchFeatures" } } @@ -44472,7 +44556,7 @@ ] }, { - "id": 2860, + "id": 2871, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -44488,7 +44572,7 @@ ], "signatures": [ { - "id": 2861, + "id": 2872, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -44603,11 +44687,86 @@ ], "name": "Promise" } + }, + { + "id": 41, + "name": "tokenizedFetch", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Fetch wrapper that adds the authentication token to the request.\nUse this to call the ThoughtSpot APIs when using the visual embed sdk.\nThe interface for this method is the same as Web `Fetch`.", + "tags": [ + { + "tag": "example", + "text": "\n```js\ntokenizedFetch(\"/api/rest/2.0/auth/session/user\", {\n // .. fetch options ..\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.28.0" + }, + { + "tag": "group", + "text": "Global methods\n" + } + ] + }, + "parameters": [ + { + "id": 42, + "name": "input", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "name": "URL" + }, + { + "type": "reference", + "name": "globalThis.Request" + } + ] + } + }, + { + "id": 43, + "name": "init", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "comment": {}, + "type": { + "type": "reference", + "name": "RequestInit" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "Response" + } + ], + "name": "Promise" + } } ] }, { - "id": 2783, + "id": 2794, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -44621,7 +44780,7 @@ ], "signatures": [ { - "id": 2784, + "id": 2795, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -44631,7 +44790,7 @@ }, "parameters": [ { - "id": 2785, + "id": 2796, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -44643,7 +44802,7 @@ } }, { - "id": 2786, + "id": 2797, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -44654,7 +44813,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2787, + "id": 2798, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -44677,74 +44836,74 @@ "title": "Enumerations", "kind": 4, "children": [ - 2048, - 1702, - 1687, - 1694, - 1849, - 2185, - 2855, - 2851, - 2847, - 2044, - 1881, - 2544, - 2805, - 2799, + 2059, + 1713, + 1698, + 1705, + 1860, + 2196, + 2866, + 2862, + 2858, + 2055, + 1892, 2555, - 1974, - 2808, - 2841, - 2776, - 1840, - 2533, - 2803, - 1865, - 2834 + 2816, + 2810, + 2566, + 1985, + 2819, + 2852, + 2787, + 1851, + 2544, + 2814, + 1876, + 2845 ] }, { "title": "Classes", "kind": 128, "children": [ - 1757, - 961, - 1256, - 1526, - 572, - 790, - 223, - 52, - 1166, - 1287 + 1768, + 969, + 1265, + 1536, + 578, + 797, + 227, + 55, + 1175, + 1296 ] }, { "title": "Interfaces", "kind": 256, "children": [ - 2453, - 1704, - 1227, - 1487, - 2814, - 2601, - 2589, - 2579, - 2189, - 2538, - 2335, - 1861, - 2773, - 2406, - 2293, - 2239, - 1830, - 1198, - 1448, - 1837, - 2811, - 2592, + 2464, + 1715, + 1236, + 1497, + 2825, + 2612, + 2600, + 2590, + 2200, + 2549, + 2346, + 1872, + 2784, + 2417, + 2304, + 2250, + 1841, + 1207, + 1458, + 1848, + 2822, + 2603, 21, 25 ] @@ -44753,28 +44912,28 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2562, - 2566, - 2563, - 2574 + 2573, + 2577, + 2574, + 2585 ] }, { "title": "Functions", "kind": 64, "children": [ - 48, + 51, 15, 18, - 41, + 44, 33, 35, 1, 4, 7, - 2860, + 2871, 37, - 2783 + 2794 ] } ], From 023f99dfbf82cda318f2328ee55700ecf2ccadf3 Mon Sep 17 00:00:00 2001 From: Mourya Balabhadra <162541770+mouryabalabhadra@users.noreply.github.com> Date: Wed, 24 Sep 2025 18:20:54 -0700 Subject: [PATCH 04/31] SCAL-274576: Add showSpotterLimitations TSE flag for liveboard (#318) --- src/embed/liveboard.spec.ts | 15 + src/embed/liveboard.ts | 67 +- static/typedoc/typedoc.json | 1762 ++++++++++++++++++----------------- 3 files changed, 957 insertions(+), 887 deletions(-) diff --git a/src/embed/liveboard.spec.ts b/src/embed/liveboard.spec.ts index 1849edf2e..3885a5635 100644 --- a/src/embed/liveboard.spec.ts +++ b/src/embed/liveboard.spec.ts @@ -727,6 +727,21 @@ describe('Liveboard/viz embed tests', () => { }); }); + test('should set showSpotterLimitations parameter in url params', async () => { + const liveboardEmbed = new LiveboardEmbed(getRootEl(), { + ...defaultViewConfig, + liveboardId, + showSpotterLimitations: true, + } as LiveboardViewConfig); + await liveboardEmbed.render(); + await executeAfterWait(() => { + expectUrlMatchesWithParams( + getIFrameSrc(), + `http://${thoughtSpotHost}/?embedApp=true${defaultParams}${prefixParams}&showSpotterLimitations=true#/embed/viz/${liveboardId}`, + ); + }); + }); + test('SetActiveTab Hostevent should not trigger the navigate event with the correct path, for vizEmbed', async () => { const mockProcessTrigger = jest.spyOn(tsEmbed.TsEmbed.prototype, 'trigger'); const liveboardEmbed = new LiveboardEmbed(getRootEl(), { diff --git a/src/embed/liveboard.ts b/src/embed/liveboard.ts index f39eb9118..703ccdda2 100644 --- a/src/embed/liveboard.ts +++ b/src/embed/liveboard.ts @@ -46,7 +46,7 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC * incrementally as users scroll the page to view the charts and tables. * * @version SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1 - * + * * Supported embed types: `LiveboardEmbed` * @example * ```js @@ -61,7 +61,7 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC * This is the minimum height(in pixels) for a full-height Liveboard. * Setting this height helps resolve issues with empty Liveboards and * other screens navigable from a Liveboard. - * + * * Supported embed types: `LiveboardEmbed` * @version SDK: 1.5.0 | ThoughtSpot: ts7.oct.cl, 7.2.1 * @default 500 @@ -90,7 +90,7 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC /** * The Liveboard to display in the embedded view. * Use either liveboardId or pinboardId to reference the Liveboard to embed. - * + * * Supported embed types: `LiveboardEmbed` * @version SDK: 1.3.0 | ThoughtSpot ts7.aug.cl, 7.2.1 * @example @@ -108,7 +108,7 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC pinboardId?: string; /** * The visualization within the Liveboard to display. - * + * * Supported embed types: `LiveboardEmbed` * @version SDK: 1.9.1 | ThoughtSpot: 8.1.0.cl, 8.4.1-sw * @example @@ -123,7 +123,7 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC /** * If set to true, all filter chips from a * Liveboard page will be read-only (no X buttons) - * + * * Supported embed types: `LiveboardEmbed` * @version SDK: 1.3.0 | ThoughtSpot ts7.aug.cl, 7.2.1.sw * @example @@ -139,7 +139,7 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC * Array of visualization IDs which should be visible when the Liveboard * renders. This can be changed by triggering the `SetVisibleVizs` * event. - * + * * Supported embed types: `LiveboardEmbed` * @version SDK: 1.9.1 | ThoughtSpot: 8.1.0.cl, 8.4.1-sw * @example @@ -161,7 +161,7 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC /** * Render embedded Liveboards and visualizations in the * new Liveboard experience mode. - * + * * Supported embed types: `LiveboardEmbed` * @version SDK: 1.14.0 | ThoughtSpot: 8.6.0.cl, 8.8.1-sw * @example @@ -176,7 +176,7 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC /** * Set a Liveboard tab as an active tab. * Specify the tab ID. - * + * * Supported embed types: `LiveboardEmbed` * @example * ```js @@ -190,7 +190,7 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC activeTabId?: string; /** * Show or hide the tab panel of the embedded Liveboard. - * + * * Supported embed types: `LiveboardEmbed` * @version SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw * @example @@ -211,7 +211,7 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC * * Since, this will show preview images, be careful that it may show * undesired data to the user when using row level security. - * + * * Supported embed types: `LiveboardEmbed` * @example * ```js @@ -227,8 +227,8 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC showPreviewLoader?: boolean; /** * The Liveboard to run on regular intervals to fetch the cdw token. - * - * Supported embed types: `LiveboardEmbed` + * + * Supported embed types: `LiveboardEmbed` * @hidden * @version SDK: 1.35.0 | ThoughtSpot:10.6.0.cl * @example @@ -242,7 +242,7 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC /** * The Liveboard is set to force a token fetch during the initial load. - * + * * Supported embed types: `LiveboardEmbed` * @hidden * @version SDK: 1.35.0 | ThoughtSpot:10.6.0.cl @@ -259,7 +259,7 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC * The source connection ID for authentication. * @hidden * @version SDK: 1.35.0 | ThoughtSpot:10.6.0.cl - * + * * Supported embed types: `LiveboardEmbed` * @example * ```js @@ -273,7 +273,7 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC * The list of tab IDs to hide from the embedded. * This Tabs will be hidden from their respective LBs. * Use this to hide an tabID. - * + * * Supported embed types: `LiveboardEmbed` * @example * ```js @@ -293,7 +293,7 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC * Only the tabs specified in the array will be shown in the Liveboard. * * Use either `visibleTabs` or `hiddenTabs`. - * + * * Supported embed types: `LiveboardEmbed` * @version SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw * @example @@ -310,7 +310,7 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC visibleTabs?: string[]; /** * This flag is used to enable/disable the styling and grouping in a Liveboard - * + * * Supported embed types: `LiveboardEmbed`, `AppEmbed` * @type {boolean} * @version SDK: 1.40.0 | ThoughtSpot: 10.11.0.cl @@ -326,7 +326,7 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC isLiveboardStylingAndGroupingEnabled?: boolean; /** * This flag is used to enable/disable the png embedding of liveboard in scheduled mails - * + * * Supported embed types: `AppEmbed`, `LiveboardEmbed` * @type {boolean} * @version SDK: 1.42.0 | ThoughtSpot: 10.14.0.cl @@ -342,7 +342,7 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC isPNGInScheduledEmailsEnabled?: boolean; /** * This flag is used to enable the full height lazy load data. - * + * * @example * ```js * const embed = new LiveboardEmbed('#embed-container', { @@ -351,7 +351,7 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC * lazyLoadingForFullHeight: true, * }) * ``` - * + * * @type {boolean} * @default false * @version SDK: 1.40.0 | ThoughtSpot:10.12.0.cl @@ -359,13 +359,13 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC lazyLoadingForFullHeight?: boolean; /** * The margin to be used for lazy loading. - * + * * For example, if the margin is set to '10px', * the visualization will be loaded 10px before the its top edge is visible in the * viewport. - * + * * The format is similar to CSS margin. - * + * * @example * ```js * const embed = new LiveboardEmbed('#embed-container', { @@ -380,6 +380,22 @@ export interface LiveboardViewConfig extends BaseViewConfig, LiveboardOtherViewC * @version SDK: 1.40.0 | ThoughtSpot:10.12.0.cl */ lazyLoadingMargin?: string; + /** + * showSpotterLimitations : show limitation text + * of the spotter underneath the chat input. + * default is false. + * + * @example + * ```js + * const embed = new LiveboardEmbed('#embed-container', { + * // ...other options + * showSpotterLimitations: true, + * }) + * ``` + * @type {boolean} + * @version SDK: 1.41.1 | ThoughtSpot: 10.5.0.cl + */ + showSpotterLimitations?: boolean; } /** @@ -454,6 +470,7 @@ export class LiveboardEmbed extends V1Embed { liveboardXLSXCSVDownload = false, isLiveboardStylingAndGroupingEnabled, isPNGInScheduledEmailsEnabled = false, + showSpotterLimitations, } = this.viewConfig; const preventLiveboardFilterRemoval = this.viewConfig.preventLiveboardFilterRemoval @@ -525,6 +542,10 @@ export class LiveboardEmbed extends V1Embed { params[Param.isPNGInScheduledEmailsEnabled] = isPNGInScheduledEmailsEnabled; } + if (showSpotterLimitations !== undefined) { + params[Param.ShowSpotterLimitations] = showSpotterLimitations; + } + params[Param.LiveboardHeaderSticky] = isLiveboardHeaderSticky; params[Param.LiveboardHeaderV2] = isLiveboardCompactHeaderEnabled; params[Param.ShowLiveboardVerifiedBadge] = showLiveboardVerifiedBadge; diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 41a2b95c2..34bacb08a 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -3883,7 +3883,7 @@ ] }, { - "id": 2866, + "id": 2867, "name": "CustomActionTarget", "kind": 4, "kindString": "Enumeration", @@ -3893,7 +3893,7 @@ }, "children": [ { - "id": 2869, + "id": 2870, "name": "ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -3908,7 +3908,7 @@ "defaultValue": "\"ANSWER\"" }, { - "id": 2867, + "id": 2868, "name": "LIVEBOARD", "kind": 16, "kindString": "Enumeration member", @@ -3923,7 +3923,7 @@ "defaultValue": "\"LIVEBOARD\"" }, { - "id": 2870, + "id": 2871, "name": "SPOTTER", "kind": 16, "kindString": "Enumeration member", @@ -3938,7 +3938,7 @@ "defaultValue": "\"SPOTTER\"" }, { - "id": 2868, + "id": 2869, "name": "VIZ", "kind": 16, "kindString": "Enumeration member", @@ -3958,10 +3958,10 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2869, - 2867, 2870, - 2868 + 2868, + 2871, + 2869 ] } ], @@ -3974,7 +3974,7 @@ ] }, { - "id": 2862, + "id": 2863, "name": "CustomActionsPosition", "kind": 4, "kindString": "Enumeration", @@ -3984,7 +3984,7 @@ }, "children": [ { - "id": 2865, + "id": 2866, "name": "CONTEXTMENU", "kind": 16, "kindString": "Enumeration member", @@ -3999,7 +3999,7 @@ "defaultValue": "\"CONTEXTMENU\"" }, { - "id": 2864, + "id": 2865, "name": "MENU", "kind": 16, "kindString": "Enumeration member", @@ -4014,7 +4014,7 @@ "defaultValue": "\"MENU\"" }, { - "id": 2863, + "id": 2864, "name": "PRIMARY", "kind": 16, "kindString": "Enumeration member", @@ -4034,9 +4034,9 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2866, 2865, - 2864, - 2863 + 2864 ] } ], @@ -4049,7 +4049,7 @@ ] }, { - "id": 2858, + "id": 2859, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -4059,7 +4059,7 @@ }, "children": [ { - "id": 2860, + "id": 2861, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4077,7 +4077,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 2859, + "id": 2860, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4095,7 +4095,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 2861, + "id": 2862, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -4118,9 +4118,9 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2861, 2860, - 2859, - 2861 + 2862 ] } ], @@ -6655,7 +6655,7 @@ ] }, { - "id": 2555, + "id": 2556, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -6665,7 +6665,7 @@ }, "children": [ { - "id": 2559, + "id": 2560, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -6688,7 +6688,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2563, + "id": 2564, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6712,7 +6712,7 @@ "defaultValue": "\"create\"" }, { - "id": 2565, + "id": 2566, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -6736,7 +6736,7 @@ "defaultValue": "\"favorites\"" }, { - "id": 2557, + "id": 2558, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6759,7 +6759,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2562, + "id": 2563, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6782,7 +6782,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2558, + "id": 2559, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6805,7 +6805,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2560, + "id": 2561, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6828,7 +6828,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2556, + "id": 2557, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6851,7 +6851,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2561, + "id": 2562, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6874,7 +6874,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2564, + "id": 2565, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -6903,16 +6903,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2559, + 2560, + 2564, + 2566, + 2558, 2563, - 2565, + 2559, + 2561, 2557, 2562, - 2558, - 2560, - 2556, - 2561, - 2564 + 2565 ] } ], @@ -6925,7 +6925,7 @@ ] }, { - "id": 2816, + "id": 2817, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -6941,7 +6941,7 @@ }, "children": [ { - "id": 2817, + "id": 2818, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -6959,7 +6959,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2818, + "id": 2819, "name": "ModularWithStylingChanges", "kind": 16, "kindString": "Enumeration member", @@ -6982,8 +6982,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2817, - 2818 + 2818, + 2819 ] } ], @@ -6996,14 +6996,14 @@ ] }, { - "id": 2810, + "id": 2811, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2812, + "id": 2813, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -7018,7 +7018,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2813, + "id": 2814, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -7033,7 +7033,7 @@ "defaultValue": "\"none\"" }, { - "id": 2811, + "id": 2812, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -7053,9 +7053,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2812, 2813, - 2811 + 2814, + 2812 ] } ], @@ -7068,7 +7068,7 @@ ] }, { - "id": 2566, + "id": 2567, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -7084,7 +7084,7 @@ }, "children": [ { - "id": 2569, + "id": 2570, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -7102,7 +7102,7 @@ "defaultValue": "\"FAVORITE\"" }, { - "id": 2572, + "id": 2573, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -7120,7 +7120,7 @@ "defaultValue": "\"LEARNING\"" }, { - "id": 2570, + "id": 2571, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -7138,7 +7138,7 @@ "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2567, + "id": 2568, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7156,7 +7156,7 @@ "defaultValue": "\"SEARCH\"" }, { - "id": 2571, + "id": 2572, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -7174,7 +7174,7 @@ "defaultValue": "\"TRENDING\"" }, { - "id": 2568, + "id": 2569, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -7197,12 +7197,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2569, - 2572, 2570, - 2567, + 2573, 2571, - 2568 + 2568, + 2572, + 2569 ] } ], @@ -9443,7 +9443,7 @@ ] }, { - "id": 2819, + "id": 2820, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -9459,7 +9459,7 @@ }, "children": [ { - "id": 2820, + "id": 2821, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -9477,7 +9477,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2821, + "id": 2822, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -9500,8 +9500,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2820, - 2821 + 2821, + 2822 ] } ], @@ -9514,7 +9514,7 @@ ] }, { - "id": 2852, + "id": 2853, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -9530,7 +9530,7 @@ }, "children": [ { - "id": 2855, + "id": 2856, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -9548,7 +9548,7 @@ "defaultValue": "\"AUTHOR\"" }, { - "id": 2856, + "id": 2857, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -9566,7 +9566,7 @@ "defaultValue": "\"DATE_SORT\"" }, { - "id": 2853, + "id": 2854, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -9584,7 +9584,7 @@ "defaultValue": "\"FAVOURITE\"" }, { - "id": 2857, + "id": 2858, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -9602,7 +9602,7 @@ "defaultValue": "\"SHARE\"" }, { - "id": 2854, + "id": 2855, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -9625,11 +9625,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2855, 2856, - 2853, 2857, - 2854 + 2854, + 2858, + 2855 ] } ], @@ -9642,7 +9642,7 @@ ] }, { - "id": 2787, + "id": 2788, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -9652,7 +9652,7 @@ }, "children": [ { - "id": 2792, + "id": 2793, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -9680,7 +9680,7 @@ "defaultValue": "\"DEBUG\"" }, { - "id": 2789, + "id": 2790, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -9708,7 +9708,7 @@ "defaultValue": "\"ERROR\"" }, { - "id": 2791, + "id": 2792, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -9736,7 +9736,7 @@ "defaultValue": "\"INFO\"" }, { - "id": 2788, + "id": 2789, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -9764,7 +9764,7 @@ "defaultValue": "\"SILENT\"" }, { - "id": 2793, + "id": 2794, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -9792,7 +9792,7 @@ "defaultValue": "\"TRACE\"" }, { - "id": 2790, + "id": 2791, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -9825,12 +9825,12 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2793, + 2790, 2792, 2789, - 2791, - 2788, - 2793, - 2790 + 2794, + 2791 ] } ], @@ -10003,14 +10003,14 @@ ] }, { - "id": 2544, + "id": 2545, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2545, + "id": 2546, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -10025,7 +10025,7 @@ "defaultValue": "\"FullApp\"" }, { - "id": 2547, + "id": 2548, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10040,7 +10040,7 @@ "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2546, + "id": 2547, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10055,7 +10055,7 @@ "defaultValue": "\"SearchEmbed\"" }, { - "id": 2548, + "id": 2549, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10075,10 +10075,10 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2545, - 2547, 2546, - 2548 + 2548, + 2547, + 2549 ] } ], @@ -10091,7 +10091,7 @@ ] }, { - "id": 2814, + "id": 2815, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -10107,7 +10107,7 @@ }, "children": [ { - "id": 2815, + "id": 2816, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -10130,7 +10130,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2815 + 2816 ] } ], @@ -10455,14 +10455,14 @@ ] }, { - "id": 2845, + "id": 2846, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2850, + "id": 2851, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -10477,7 +10477,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2849, + "id": 2850, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -10492,7 +10492,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2848, + "id": 2849, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -10507,7 +10507,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2851, + "id": 2852, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -10522,7 +10522,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2846, + "id": 2847, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -10537,7 +10537,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2847, + "id": 2848, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -10557,12 +10557,12 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2851, 2850, 2849, - 2848, - 2851, - 2846, - 2847 + 2852, + 2847, + 2848 ] } ], @@ -10682,7 +10682,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2823, "name": "VizPoint" } } @@ -11870,7 +11870,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2573, + "id": 2574, "name": "DOMSelector" } }, @@ -11882,7 +11882,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2464, + "id": 2465, "name": "AppViewConfig" } } @@ -12493,7 +12493,7 @@ }, "type": { "type": "reference", - "id": 2577, + "id": 2578, "name": "MessageCallback" } } @@ -12572,7 +12572,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2577, + "id": 2578, "name": "MessageCallback" } }, @@ -12584,7 +12584,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2574, + "id": 2575, "name": "MessageOptions" }, "defaultValue": "..." @@ -13026,7 +13026,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2845, + "id": 2846, "name": "UIPassthroughEvent" } } @@ -14259,7 +14259,7 @@ }, "type": { "type": "reference", - "id": 2577, + "id": 2578, "name": "MessageCallback" } } @@ -14343,7 +14343,7 @@ }, "type": { "type": "reference", - "id": 2577, + "id": 2578, "name": "MessageCallback" } }, @@ -14358,7 +14358,7 @@ }, "type": { "type": "reference", - "id": 2574, + "id": 2575, "name": "MessageOptions" }, "defaultValue": "..." @@ -14824,7 +14824,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2845, + "id": 2846, "name": "UIPassthroughEvent" } } @@ -14970,7 +14970,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 406, + "line": 422, "character": 4 } ], @@ -14990,7 +14990,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2573, + "id": 2574, "name": "DOMSelector" } }, @@ -15034,7 +15034,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 727, + "line": 748, "character": 11 } ], @@ -15188,7 +15188,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 786, + "line": 807, "character": 11 } ], @@ -15489,7 +15489,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 767, + "line": 788, "character": 11 } ], @@ -15604,7 +15604,7 @@ }, "type": { "type": "reference", - "id": 2577, + "id": 2578, "name": "MessageCallback" } } @@ -15683,7 +15683,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2577, + "id": 2578, "name": "MessageCallback" } }, @@ -15695,7 +15695,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2574, + "id": 2575, "name": "MessageOptions" }, "defaultValue": "..." @@ -15855,7 +15855,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 756, + "line": 777, "character": 17 } ], @@ -15994,7 +15994,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 709, + "line": 730, "character": 11 } ], @@ -16137,7 +16137,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2845, + "id": 2846, "name": "UIPassthroughEvent" } } @@ -16242,7 +16242,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 400, + "line": 416, "character": 13 } ], @@ -16302,7 +16302,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2573, + "id": 2574, "name": "DOMSelector" } }, @@ -16314,7 +16314,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2417, + "id": 2418, "name": "SageViewConfig" } } @@ -16848,7 +16848,7 @@ }, "type": { "type": "reference", - "id": 2577, + "id": 2578, "name": "MessageCallback" } } @@ -16927,7 +16927,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2577, + "id": 2578, "name": "MessageCallback" } }, @@ -16939,7 +16939,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2574, + "id": 2575, "name": "MessageOptions" }, "defaultValue": "..." @@ -17382,7 +17382,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2845, + "id": 2846, "name": "UIPassthroughEvent" } } @@ -18058,7 +18058,7 @@ }, "type": { "type": "reference", - "id": 2577, + "id": 2578, "name": "MessageCallback" } } @@ -18140,7 +18140,7 @@ }, "type": { "type": "reference", - "id": 2577, + "id": 2578, "name": "MessageCallback" } }, @@ -18155,7 +18155,7 @@ }, "type": { "type": "reference", - "id": 2574, + "id": 2575, "name": "MessageOptions" }, "defaultValue": "..." @@ -18610,7 +18610,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2845, + "id": 2846, "name": "UIPassthroughEvent" } } @@ -18769,7 +18769,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2573, + "id": 2574, "name": "DOMSelector" } }, @@ -19314,7 +19314,7 @@ }, "type": { "type": "reference", - "id": 2577, + "id": 2578, "name": "MessageCallback" } } @@ -19396,7 +19396,7 @@ }, "type": { "type": "reference", - "id": 2577, + "id": 2578, "name": "MessageCallback" } }, @@ -19411,7 +19411,7 @@ }, "type": { "type": "reference", - "id": 2574, + "id": 2575, "name": "MessageOptions" }, "defaultValue": "..." @@ -19866,7 +19866,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2845, + "id": 2846, "name": "UIPassthroughEvent" } } @@ -21048,7 +21048,7 @@ }, "type": { "type": "reference", - "id": 2577, + "id": 2578, "name": "MessageCallback" } } @@ -21130,7 +21130,7 @@ }, "type": { "type": "reference", - "id": 2577, + "id": 2578, "name": "MessageCallback" } }, @@ -21145,7 +21145,7 @@ }, "type": { "type": "reference", - "id": 2574, + "id": 2575, "name": "MessageOptions" }, "defaultValue": "..." @@ -21597,7 +21597,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2845, + "id": 2846, "name": "UIPassthroughEvent" } } @@ -21719,7 +21719,7 @@ ] }, { - "id": 2464, + "id": 2465, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -21735,7 +21735,7 @@ }, "children": [ { - "id": 2501, + "id": 2502, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -21766,20 +21766,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2502, + "id": 2503, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2503, + "id": 2504, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2504, + "id": 2505, "name": "key", "kind": 32768, "flags": {}, @@ -21815,7 +21815,7 @@ } }, { - "id": 2525, + "id": 2526, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -21857,7 +21857,7 @@ } }, { - "id": 2483, + "id": 2484, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -21894,7 +21894,7 @@ } }, { - "id": 2522, + "id": 2523, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -21933,7 +21933,7 @@ } }, { - "id": 2542, + "id": 2543, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -21971,7 +21971,7 @@ } }, { - "id": 2519, + "id": 2520, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -22012,7 +22012,7 @@ } }, { - "id": 2505, + "id": 2506, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -22041,7 +22041,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2591, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -22050,7 +22050,7 @@ } }, { - "id": 2484, + "id": 2485, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -22084,12 +22084,12 @@ ], "type": { "type": "reference", - "id": 2858, + "id": 2859, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2526, + "id": 2527, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -22131,7 +22131,7 @@ } }, { - "id": 2467, + "id": 2468, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -22169,7 +22169,7 @@ } }, { - "id": 2513, + "id": 2514, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -22207,7 +22207,7 @@ } }, { - "id": 2497, + "id": 2498, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -22245,7 +22245,7 @@ } }, { - "id": 2496, + "id": 2497, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -22287,7 +22287,7 @@ } }, { - "id": 2482, + "id": 2483, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -22325,7 +22325,7 @@ } }, { - "id": 2509, + "id": 2510, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -22366,7 +22366,7 @@ } }, { - "id": 2536, + "id": 2537, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -22408,7 +22408,7 @@ } }, { - "id": 2541, + "id": 2542, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -22450,7 +22450,7 @@ } }, { - "id": 2527, + "id": 2528, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -22492,7 +22492,7 @@ } }, { - "id": 2468, + "id": 2469, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -22528,7 +22528,7 @@ } }, { - "id": 2479, + "id": 2480, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -22566,7 +22566,7 @@ } }, { - "id": 2510, + "id": 2511, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -22604,7 +22604,7 @@ } }, { - "id": 2523, + "id": 2524, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -22642,7 +22642,7 @@ } }, { - "id": 2524, + "id": 2525, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -22680,7 +22680,7 @@ } }, { - "id": 2512, + "id": 2513, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -22717,7 +22717,7 @@ } }, { - "id": 2493, + "id": 2494, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -22747,7 +22747,7 @@ ], "type": { "type": "reference", - "id": 2549, + "id": 2550, "name": "FrameParams" }, "inheritedFrom": { @@ -22756,7 +22756,7 @@ } }, { - "id": 2480, + "id": 2481, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -22790,7 +22790,7 @@ } }, { - "id": 2498, + "id": 2499, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -22836,7 +22836,7 @@ } }, { - "id": 2531, + "id": 2532, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -22868,7 +22868,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2555, + "id": 2556, "name": "HomeLeftNavItem" } }, @@ -22878,7 +22878,7 @@ } }, { - "id": 2529, + "id": 2530, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -22910,7 +22910,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2566, + "id": 2567, "name": "HomepageModule" } }, @@ -22920,7 +22920,7 @@ } }, { - "id": 2528, + "id": 2529, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -22952,7 +22952,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2852, + "id": 2853, "name": "ListPageColumns" } }, @@ -22962,7 +22962,7 @@ } }, { - "id": 2472, + "id": 2473, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -23000,7 +23000,7 @@ } }, { - "id": 2469, + "id": 2470, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -23038,7 +23038,7 @@ } }, { - "id": 2466, + "id": 2467, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -23076,7 +23076,7 @@ } }, { - "id": 2539, + "id": 2540, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -23118,7 +23118,7 @@ } }, { - "id": 2532, + "id": 2533, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -23160,7 +23160,7 @@ } }, { - "id": 2471, + "id": 2472, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -23198,7 +23198,7 @@ } }, { - "id": 2470, + "id": 2471, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -23236,7 +23236,7 @@ } }, { - "id": 2477, + "id": 2478, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -23273,7 +23273,7 @@ } }, { - "id": 2473, + "id": 2474, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -23311,7 +23311,7 @@ } }, { - "id": 2486, + "id": 2487, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -23337,12 +23337,12 @@ ], "type": { "type": "reference", - "id": 2810, + "id": 2811, "name": "HomePageSearchBarMode" } }, { - "id": 2506, + "id": 2507, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -23380,7 +23380,7 @@ } }, { - "id": 2537, + "id": 2538, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -23422,7 +23422,7 @@ } }, { - "id": 2535, + "id": 2536, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -23460,7 +23460,7 @@ } }, { - "id": 2488, + "id": 2489, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -23494,7 +23494,7 @@ } }, { - "id": 2485, + "id": 2486, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -23523,7 +23523,7 @@ } }, { - "id": 2489, + "id": 2490, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -23557,7 +23557,7 @@ } }, { - "id": 2487, + "id": 2488, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -23595,7 +23595,7 @@ } }, { - "id": 2490, + "id": 2491, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -23632,7 +23632,7 @@ } }, { - "id": 2491, + "id": 2492, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -23666,7 +23666,7 @@ } }, { - "id": 2515, + "id": 2516, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -23704,7 +23704,7 @@ } }, { - "id": 2543, + "id": 2544, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -23742,7 +23742,7 @@ } }, { - "id": 2500, + "id": 2501, "name": "locale", "kind": 1024, "kindString": "Property", @@ -23780,7 +23780,7 @@ } }, { - "id": 2481, + "id": 2482, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -23818,7 +23818,7 @@ } }, { - "id": 2514, + "id": 2515, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -23856,7 +23856,7 @@ } }, { - "id": 2475, + "id": 2476, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -23891,7 +23891,7 @@ } }, { - "id": 2474, + "id": 2475, "name": "path", "kind": 1024, "kindString": "Property", @@ -23925,7 +23925,7 @@ } }, { - "id": 2508, + "id": 2509, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -23963,7 +23963,7 @@ } }, { - "id": 2516, + "id": 2517, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -24001,7 +24001,7 @@ } }, { - "id": 2530, + "id": 2531, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -24033,7 +24033,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2566, + "id": 2567, "name": "HomepageModule" } }, @@ -24043,7 +24043,7 @@ } }, { - "id": 2520, + "id": 2521, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -24085,7 +24085,7 @@ } }, { - "id": 2521, + "id": 2522, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -24117,7 +24117,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2784, + "id": 2785, "name": "RuntimeParameter" } }, @@ -24127,7 +24127,7 @@ } }, { - "id": 2518, + "id": 2519, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -24164,7 +24164,7 @@ } }, { - "id": 2534, + "id": 2535, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -24206,7 +24206,7 @@ } }, { - "id": 2540, + "id": 2541, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -24248,7 +24248,7 @@ } }, { - "id": 2533, + "id": 2534, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -24290,7 +24290,7 @@ } }, { - "id": 2538, + "id": 2539, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -24332,7 +24332,7 @@ } }, { - "id": 2465, + "id": 2466, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -24370,7 +24370,7 @@ } }, { - "id": 2476, + "id": 2477, "name": "tag", "kind": 1024, "kindString": "Property", @@ -24404,7 +24404,7 @@ } }, { - "id": 2499, + "id": 2500, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -24455,75 +24455,75 @@ "title": "Properties", "kind": 1024, "children": [ - 2501, - 2525, - 2483, - 2522, - 2542, - 2519, - 2505, - 2484, + 2502, 2526, - 2467, - 2513, - 2497, - 2496, - 2482, - 2509, - 2536, - 2541, + 2484, + 2523, + 2543, + 2520, + 2506, + 2485, 2527, 2468, - 2479, - 2510, - 2523, - 2524, - 2512, - 2493, - 2480, + 2514, 2498, - 2531, - 2529, + 2497, + 2483, + 2510, + 2537, + 2542, 2528, - 2472, 2469, - 2466, - 2539, + 2480, + 2511, + 2524, + 2525, + 2513, + 2494, + 2481, + 2499, 2532, - 2471, - 2470, - 2477, + 2530, + 2529, 2473, - 2486, - 2506, - 2537, - 2535, - 2488, - 2485, - 2489, + 2470, + 2467, + 2540, + 2533, + 2472, + 2471, + 2478, + 2474, 2487, + 2507, + 2538, + 2536, + 2489, + 2486, 2490, + 2488, 2491, + 2492, + 2516, + 2544, + 2501, + 2482, 2515, - 2543, - 2500, - 2481, - 2514, + 2476, 2475, - 2474, - 2508, - 2516, - 2530, - 2520, + 2509, + 2517, + 2531, 2521, - 2518, + 2522, + 2519, + 2535, + 2541, 2534, - 2540, - 2533, - 2538, - 2465, - 2476, - 2499 + 2539, + 2466, + 2477, + 2500 ] } ], @@ -25422,7 +25422,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2591, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -25702,7 +25702,7 @@ ], "type": { "type": "reference", - "id": 2549, + "id": 2550, "name": "FrameParams" }, "inheritedFrom": { @@ -26280,7 +26280,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2591, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -26720,7 +26720,7 @@ ], "type": { "type": "reference", - "id": 2549, + "id": 2550, "name": "FrameParams" }, "inheritedFrom": { @@ -27125,7 +27125,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2784, + "id": 2785, "name": "RuntimeParameter" } }, @@ -27367,7 +27367,7 @@ ] }, { - "id": 2825, + "id": 2826, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -27382,7 +27382,7 @@ }, "children": [ { - "id": 2826, + "id": 2827, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -27399,14 +27399,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2827, + "id": 2828, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2828, + "id": 2829, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -27420,12 +27420,12 @@ ], "type": { "type": "reference", - "id": 2822, + "id": 2823, "name": "VizPoint" } }, { - "id": 2829, + "id": 2830, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -27441,7 +27441,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2823, "name": "VizPoint" } } @@ -27452,8 +27452,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2828, - 2829 + 2829, + 2830 ] } ] @@ -27461,7 +27461,7 @@ } }, { - "id": 2830, + "id": 2831, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -27476,14 +27476,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2831, + "id": 2832, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2839, + "id": 2840, "name": "columns", "kind": 1024, "kindString": "Property", @@ -27504,7 +27504,7 @@ } }, { - "id": 2840, + "id": 2841, "name": "data", "kind": 1024, "kindString": "Property", @@ -27525,7 +27525,7 @@ } }, { - "id": 2833, + "id": 2834, "name": "id", "kind": 1024, "kindString": "Property", @@ -27543,7 +27543,7 @@ } }, { - "id": 2832, + "id": 2833, "name": "name", "kind": 1024, "kindString": "Property", @@ -27561,7 +27561,7 @@ } }, { - "id": 2834, + "id": 2835, "name": "sources", "kind": 1024, "kindString": "Property", @@ -27576,14 +27576,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2835, + "id": 2836, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2836, + "id": 2837, "name": "header", "kind": 1024, "kindString": "Property", @@ -27598,14 +27598,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2837, + "id": 2838, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2838, + "id": 2839, "name": "guid", "kind": 1024, "kindString": "Property", @@ -27628,7 +27628,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2838 + 2839 ] } ] @@ -27641,7 +27641,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2836 + 2837 ] } ] @@ -27654,23 +27654,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2839, 2840, + 2841, + 2834, 2833, - 2832, - 2834 + 2835 ] } ], "indexSignature": { - "id": 2841, + "id": 2842, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2842, + "id": 2843, "name": "key", "kind": 32768, "flags": {}, @@ -27689,7 +27689,7 @@ } }, { - "id": 2843, + "id": 2844, "name": "session", "kind": 1024, "kindString": "Property", @@ -27708,7 +27708,7 @@ } }, { - "id": 2844, + "id": 2845, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -27733,10 +27733,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2826, - 2830, - 2843, - 2844 + 2827, + 2831, + 2844, + 2845 ] } ], @@ -27749,7 +27749,7 @@ ] }, { - "id": 2612, + "id": 2613, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -27759,7 +27759,7 @@ }, "children": [ { - "id": 2666, + "id": 2667, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -27782,7 +27782,7 @@ } }, { - "id": 2665, + "id": 2666, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -27805,7 +27805,7 @@ } }, { - "id": 2635, + "id": 2636, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -27828,7 +27828,7 @@ } }, { - "id": 2636, + "id": 2637, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -27851,7 +27851,7 @@ } }, { - "id": 2638, + "id": 2639, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -27874,7 +27874,7 @@ } }, { - "id": 2637, + "id": 2638, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -27897,7 +27897,7 @@ } }, { - "id": 2617, + "id": 2618, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -27920,7 +27920,7 @@ } }, { - "id": 2678, + "id": 2679, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -27943,7 +27943,7 @@ } }, { - "id": 2679, + "id": 2680, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -27966,7 +27966,7 @@ } }, { - "id": 2676, + "id": 2677, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -27989,7 +27989,7 @@ } }, { - "id": 2677, + "id": 2678, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -28012,7 +28012,7 @@ } }, { - "id": 2640, + "id": 2641, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -28035,7 +28035,7 @@ } }, { - "id": 2645, + "id": 2646, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -28058,7 +28058,7 @@ } }, { - "id": 2642, + "id": 2643, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -28081,7 +28081,7 @@ } }, { - "id": 2644, + "id": 2645, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -28104,7 +28104,7 @@ } }, { - "id": 2643, + "id": 2644, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -28127,7 +28127,7 @@ } }, { - "id": 2641, + "id": 2642, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -28150,7 +28150,7 @@ } }, { - "id": 2650, + "id": 2651, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -28173,7 +28173,7 @@ } }, { - "id": 2647, + "id": 2648, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -28196,7 +28196,7 @@ } }, { - "id": 2649, + "id": 2650, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -28219,7 +28219,7 @@ } }, { - "id": 2648, + "id": 2649, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -28242,7 +28242,7 @@ } }, { - "id": 2646, + "id": 2647, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -28265,7 +28265,7 @@ } }, { - "id": 2654, + "id": 2655, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -28288,7 +28288,7 @@ } }, { - "id": 2653, + "id": 2654, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -28311,7 +28311,7 @@ } }, { - "id": 2652, + "id": 2653, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -28334,7 +28334,7 @@ } }, { - "id": 2651, + "id": 2652, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -28357,7 +28357,7 @@ } }, { - "id": 2639, + "id": 2640, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -28380,7 +28380,7 @@ } }, { - "id": 2783, + "id": 2784, "name": "--ts-var-cca-modal-summary-header-background", "kind": 1024, "kindString": "Property", @@ -28403,7 +28403,7 @@ } }, { - "id": 2778, + "id": 2779, "name": "--ts-var-change-analysis-insights-background", "kind": 1024, "kindString": "Property", @@ -28426,7 +28426,7 @@ } }, { - "id": 2773, + "id": 2774, "name": "--ts-var-chart-heatmap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28449,7 +28449,7 @@ } }, { - "id": 2772, + "id": 2773, "name": "--ts-var-chart-heatmap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28472,7 +28472,7 @@ } }, { - "id": 2775, + "id": 2776, "name": "--ts-var-chart-treemap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28495,7 +28495,7 @@ } }, { - "id": 2774, + "id": 2775, "name": "--ts-var-chart-treemap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28518,7 +28518,7 @@ } }, { - "id": 2701, + "id": 2702, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -28541,7 +28541,7 @@ } }, { - "id": 2704, + "id": 2705, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -28564,7 +28564,7 @@ } }, { - "id": 2699, + "id": 2700, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -28587,7 +28587,7 @@ } }, { - "id": 2702, + "id": 2703, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -28610,7 +28610,7 @@ } }, { - "id": 2703, + "id": 2704, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -28633,7 +28633,7 @@ } }, { - "id": 2698, + "id": 2699, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -28656,7 +28656,7 @@ } }, { - "id": 2700, + "id": 2701, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -28679,7 +28679,7 @@ } }, { - "id": 2671, + "id": 2672, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -28702,7 +28702,7 @@ } }, { - "id": 2670, + "id": 2671, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -28725,7 +28725,7 @@ } }, { - "id": 2673, + "id": 2674, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -28748,7 +28748,7 @@ } }, { - "id": 2672, + "id": 2673, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -28771,7 +28771,7 @@ } }, { - "id": 2669, + "id": 2670, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -28794,7 +28794,7 @@ } }, { - "id": 2667, + "id": 2668, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -28817,7 +28817,7 @@ } }, { - "id": 2668, + "id": 2669, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -28840,7 +28840,7 @@ } }, { - "id": 2674, + "id": 2675, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -28863,7 +28863,7 @@ } }, { - "id": 2675, + "id": 2676, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -28886,7 +28886,7 @@ } }, { - "id": 2686, + "id": 2687, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -28909,7 +28909,7 @@ } }, { - "id": 2687, + "id": 2688, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -28932,7 +28932,7 @@ } }, { - "id": 2690, + "id": 2691, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -28955,7 +28955,7 @@ } }, { - "id": 2688, + "id": 2689, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -28978,7 +28978,7 @@ } }, { - "id": 2689, + "id": 2690, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -29001,7 +29001,7 @@ } }, { - "id": 2697, + "id": 2698, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -29024,7 +29024,7 @@ } }, { - "id": 2696, + "id": 2697, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -29047,7 +29047,7 @@ } }, { - "id": 2695, + "id": 2696, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -29070,7 +29070,7 @@ } }, { - "id": 2694, + "id": 2695, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -29093,7 +29093,7 @@ } }, { - "id": 2771, + "id": 2772, "name": "--ts-var-kpi-analyze-text-color", "kind": 1024, "kindString": "Property", @@ -29116,7 +29116,7 @@ } }, { - "id": 2770, + "id": 2771, "name": "--ts-var-kpi-comparison-color", "kind": 1024, "kindString": "Property", @@ -29139,7 +29139,7 @@ } }, { - "id": 2769, + "id": 2770, "name": "--ts-var-kpi-hero-color", "kind": 1024, "kindString": "Property", @@ -29162,7 +29162,7 @@ } }, { - "id": 2777, + "id": 2778, "name": "--ts-var-kpi-negative-change-color", "kind": 1024, "kindString": "Property", @@ -29185,7 +29185,7 @@ } }, { - "id": 2776, + "id": 2777, "name": "--ts-var-kpi-positive-change-color", "kind": 1024, "kindString": "Property", @@ -29208,7 +29208,7 @@ } }, { - "id": 2692, + "id": 2693, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -29231,7 +29231,7 @@ } }, { - "id": 2691, + "id": 2692, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -29254,7 +29254,7 @@ } }, { - "id": 2727, + "id": 2728, "name": "--ts-var-liveboard-answer-viz-padding", "kind": 1024, "kindString": "Property", @@ -29277,7 +29277,7 @@ } }, { - "id": 2740, + "id": 2741, "name": "--ts-var-liveboard-chip--active-background", "kind": 1024, "kindString": "Property", @@ -29300,7 +29300,7 @@ } }, { - "id": 2741, + "id": 2742, "name": "--ts-var-liveboard-chip--active-color", "kind": 1024, "kindString": "Property", @@ -29323,7 +29323,7 @@ } }, { - "id": 2738, + "id": 2739, "name": "--ts-var-liveboard-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -29346,7 +29346,7 @@ } }, { - "id": 2739, + "id": 2740, "name": "--ts-var-liveboard-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -29369,7 +29369,7 @@ } }, { - "id": 2736, + "id": 2737, "name": "--ts-var-liveboard-chip-background", "kind": 1024, "kindString": "Property", @@ -29392,7 +29392,7 @@ } }, { - "id": 2737, + "id": 2738, "name": "--ts-var-liveboard-chip-color", "kind": 1024, "kindString": "Property", @@ -29415,7 +29415,7 @@ } }, { - "id": 2746, + "id": 2747, "name": "--ts-var-liveboard-cross-filter-layout-background", "kind": 1024, "kindString": "Property", @@ -29438,7 +29438,7 @@ } }, { - "id": 2744, + "id": 2745, "name": "--ts-var-liveboard-dual-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -29461,7 +29461,7 @@ } }, { - "id": 2743, + "id": 2744, "name": "--ts-var-liveboard-edit-bar-background", "kind": 1024, "kindString": "Property", @@ -29484,7 +29484,7 @@ } }, { - "id": 2728, + "id": 2729, "name": "--ts-var-liveboard-group-background", "kind": 1024, "kindString": "Property", @@ -29507,7 +29507,7 @@ } }, { - "id": 2729, + "id": 2730, "name": "--ts-var-liveboard-group-border-color", "kind": 1024, "kindString": "Property", @@ -29530,7 +29530,7 @@ } }, { - "id": 2733, + "id": 2734, "name": "--ts-var-liveboard-group-description-font-color", "kind": 1024, "kindString": "Property", @@ -29553,7 +29553,7 @@ } }, { - "id": 2723, + "id": 2724, "name": "--ts-var-liveboard-group-description-font-size", "kind": 1024, "kindString": "Property", @@ -29576,7 +29576,7 @@ } }, { - "id": 2724, + "id": 2725, "name": "--ts-var-liveboard-group-description-font-weight", "kind": 1024, "kindString": "Property", @@ -29599,7 +29599,7 @@ } }, { - "id": 2717, + "id": 2718, "name": "--ts-var-liveboard-group-padding", "kind": 1024, "kindString": "Property", @@ -29622,7 +29622,7 @@ } }, { - "id": 2735, + "id": 2736, "name": "--ts-var-liveboard-group-tile-background", "kind": 1024, "kindString": "Property", @@ -29645,7 +29645,7 @@ } }, { - "id": 2725, + "id": 2726, "name": "--ts-var-liveboard-group-tile-border", "kind": 1024, "kindString": "Property", @@ -29668,7 +29668,7 @@ } }, { - "id": 2726, + "id": 2727, "name": "--ts-var-liveboard-group-tile-padding", "kind": 1024, "kindString": "Property", @@ -29691,7 +29691,7 @@ } }, { - "id": 2734, + "id": 2735, "name": "--ts-var-liveboard-group-tile-title-font-color", "kind": 1024, "kindString": "Property", @@ -29714,7 +29714,7 @@ } }, { - "id": 2721, + "id": 2722, "name": "--ts-var-liveboard-group-tile-title-font-size", "kind": 1024, "kindString": "Property", @@ -29737,7 +29737,7 @@ } }, { - "id": 2722, + "id": 2723, "name": "--ts-var-liveboard-group-tile-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29760,7 +29760,7 @@ } }, { - "id": 2732, + "id": 2733, "name": "--ts-var-liveboard-group-title-font-color", "kind": 1024, "kindString": "Property", @@ -29783,7 +29783,7 @@ } }, { - "id": 2719, + "id": 2720, "name": "--ts-var-liveboard-group-title-font-size", "kind": 1024, "kindString": "Property", @@ -29806,7 +29806,7 @@ } }, { - "id": 2720, + "id": 2721, "name": "--ts-var-liveboard-group-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29829,7 +29829,7 @@ } }, { - "id": 2718, + "id": 2719, "name": "--ts-var-liveboard-group-title-padding", "kind": 1024, "kindString": "Property", @@ -29852,7 +29852,7 @@ } }, { - "id": 2762, + "id": 2763, "name": "--ts-var-liveboard-header-action-button-active-color", "kind": 1024, "kindString": "Property", @@ -29875,7 +29875,7 @@ } }, { - "id": 2759, + "id": 2760, "name": "--ts-var-liveboard-header-action-button-background", "kind": 1024, "kindString": "Property", @@ -29898,7 +29898,7 @@ } }, { - "id": 2760, + "id": 2761, "name": "--ts-var-liveboard-header-action-button-font-color", "kind": 1024, "kindString": "Property", @@ -29921,7 +29921,7 @@ } }, { - "id": 2761, + "id": 2762, "name": "--ts-var-liveboard-header-action-button-hover-color", "kind": 1024, "kindString": "Property", @@ -29944,7 +29944,7 @@ } }, { - "id": 2709, + "id": 2710, "name": "--ts-var-liveboard-header-background", "kind": 1024, "kindString": "Property", @@ -29967,7 +29967,7 @@ } }, { - "id": 2768, + "id": 2769, "name": "--ts-var-liveboard-header-badge-active-color", "kind": 1024, "kindString": "Property", @@ -29990,7 +29990,7 @@ } }, { - "id": 2763, + "id": 2764, "name": "--ts-var-liveboard-header-badge-background", "kind": 1024, "kindString": "Property", @@ -30013,7 +30013,7 @@ } }, { - "id": 2764, + "id": 2765, "name": "--ts-var-liveboard-header-badge-font-color", "kind": 1024, "kindString": "Property", @@ -30036,7 +30036,7 @@ } }, { - "id": 2767, + "id": 2768, "name": "--ts-var-liveboard-header-badge-hover-color", "kind": 1024, "kindString": "Property", @@ -30059,7 +30059,7 @@ } }, { - "id": 2765, + "id": 2766, "name": "--ts-var-liveboard-header-badge-modified-background", "kind": 1024, "kindString": "Property", @@ -30082,7 +30082,7 @@ } }, { - "id": 2766, + "id": 2767, "name": "--ts-var-liveboard-header-badge-modified-font-color", "kind": 1024, "kindString": "Property", @@ -30105,7 +30105,7 @@ } }, { - "id": 2711, + "id": 2712, "name": "--ts-var-liveboard-header-font-color", "kind": 1024, "kindString": "Property", @@ -30128,7 +30128,7 @@ } }, { - "id": 2710, + "id": 2711, "name": "--ts-var-liveboard-header-fontsize", "kind": 1024, "kindString": "Property", @@ -30151,7 +30151,7 @@ } }, { - "id": 2706, + "id": 2707, "name": "--ts-var-liveboard-layout-background", "kind": 1024, "kindString": "Property", @@ -30174,7 +30174,7 @@ } }, { - "id": 2707, + "id": 2708, "name": "--ts-var-liveboard-layout-title-color", "kind": 1024, "kindString": "Property", @@ -30197,7 +30197,7 @@ } }, { - "id": 2708, + "id": 2709, "name": "--ts-var-liveboard-layout-title-fontsize", "kind": 1024, "kindString": "Property", @@ -30220,7 +30220,7 @@ } }, { - "id": 2731, + "id": 2732, "name": "--ts-var-liveboard-notetitle-body-font-color", "kind": 1024, "kindString": "Property", @@ -30243,7 +30243,7 @@ } }, { - "id": 2730, + "id": 2731, "name": "--ts-var-liveboard-notetitle-heading-font-color", "kind": 1024, "kindString": "Property", @@ -30266,7 +30266,7 @@ } }, { - "id": 2745, + "id": 2746, "name": "--ts-var-liveboard-single-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -30289,7 +30289,7 @@ } }, { - "id": 2747, + "id": 2748, "name": "--ts-var-liveboard-tab-active-border-color", "kind": 1024, "kindString": "Property", @@ -30312,7 +30312,7 @@ } }, { - "id": 2748, + "id": 2749, "name": "--ts-var-liveboard-tab-hover-color", "kind": 1024, "kindString": "Property", @@ -30335,7 +30335,7 @@ } }, { - "id": 2713, + "id": 2714, "name": "--ts-var-liveboard-tile-background", "kind": 1024, "kindString": "Property", @@ -30358,7 +30358,7 @@ } }, { - "id": 2712, + "id": 2713, "name": "--ts-var-liveboard-tile-border-color", "kind": 1024, "kindString": "Property", @@ -30381,7 +30381,7 @@ } }, { - "id": 2714, + "id": 2715, "name": "--ts-var-liveboard-tile-border-radius", "kind": 1024, "kindString": "Property", @@ -30404,7 +30404,7 @@ } }, { - "id": 2751, + "id": 2752, "name": "--ts-var-liveboard-tile-description-font-weight", "kind": 1024, "kindString": "Property", @@ -30427,7 +30427,7 @@ } }, { - "id": 2752, + "id": 2753, "name": "--ts-var-liveboard-tile-description-opacity", "kind": 1024, "kindString": "Property", @@ -30450,7 +30450,7 @@ } }, { - "id": 2715, + "id": 2716, "name": "--ts-var-liveboard-tile-padding", "kind": 1024, "kindString": "Property", @@ -30473,7 +30473,7 @@ } }, { - "id": 2716, + "id": 2717, "name": "--ts-var-liveboard-tile-table-header-background", "kind": 1024, "kindString": "Property", @@ -30496,7 +30496,7 @@ } }, { - "id": 2749, + "id": 2750, "name": "--ts-var-liveboard-tile-title-fontsize", "kind": 1024, "kindString": "Property", @@ -30519,7 +30519,7 @@ } }, { - "id": 2750, + "id": 2751, "name": "--ts-var-liveboard-tile-title-fontweight", "kind": 1024, "kindString": "Property", @@ -30542,7 +30542,7 @@ } }, { - "id": 2684, + "id": 2685, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -30565,7 +30565,7 @@ } }, { - "id": 2681, + "id": 2682, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -30588,7 +30588,7 @@ } }, { - "id": 2680, + "id": 2681, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -30611,7 +30611,7 @@ } }, { - "id": 2682, + "id": 2683, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -30634,7 +30634,7 @@ } }, { - "id": 2685, + "id": 2686, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -30657,7 +30657,7 @@ } }, { - "id": 2683, + "id": 2684, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -30680,7 +30680,7 @@ } }, { - "id": 2618, + "id": 2619, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -30703,7 +30703,7 @@ } }, { - "id": 2619, + "id": 2620, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -30726,7 +30726,7 @@ } }, { - "id": 2757, + "id": 2758, "name": "--ts-var-parameter-chip-active-background", "kind": 1024, "kindString": "Property", @@ -30749,7 +30749,7 @@ } }, { - "id": 2758, + "id": 2759, "name": "--ts-var-parameter-chip-active-text-color", "kind": 1024, "kindString": "Property", @@ -30772,7 +30772,7 @@ } }, { - "id": 2753, + "id": 2754, "name": "--ts-var-parameter-chip-background", "kind": 1024, "kindString": "Property", @@ -30795,7 +30795,7 @@ } }, { - "id": 2755, + "id": 2756, "name": "--ts-var-parameter-chip-hover-background", "kind": 1024, "kindString": "Property", @@ -30818,7 +30818,7 @@ } }, { - "id": 2756, + "id": 2757, "name": "--ts-var-parameter-chip-hover-text-color", "kind": 1024, "kindString": "Property", @@ -30841,7 +30841,7 @@ } }, { - "id": 2754, + "id": 2755, "name": "--ts-var-parameter-chip-text-color", "kind": 1024, "kindString": "Property", @@ -30864,7 +30864,7 @@ } }, { - "id": 2613, + "id": 2614, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -30887,7 +30887,7 @@ } }, { - "id": 2614, + "id": 2615, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -30910,7 +30910,7 @@ } }, { - "id": 2615, + "id": 2616, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -30933,7 +30933,7 @@ } }, { - "id": 2616, + "id": 2617, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -30956,7 +30956,7 @@ } }, { - "id": 2627, + "id": 2628, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -30979,7 +30979,7 @@ } }, { - "id": 2631, + "id": 2632, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -31002,7 +31002,7 @@ } }, { - "id": 2632, + "id": 2633, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -31025,7 +31025,7 @@ } }, { - "id": 2630, + "id": 2631, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -31048,7 +31048,7 @@ } }, { - "id": 2626, + "id": 2627, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -31071,7 +31071,7 @@ } }, { - "id": 2629, + "id": 2630, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -31094,7 +31094,7 @@ } }, { - "id": 2623, + "id": 2624, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -31117,7 +31117,7 @@ } }, { - "id": 2624, + "id": 2625, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -31140,7 +31140,7 @@ } }, { - "id": 2625, + "id": 2626, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -31163,7 +31163,7 @@ } }, { - "id": 2620, + "id": 2621, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -31186,7 +31186,7 @@ } }, { - "id": 2621, + "id": 2622, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -31209,7 +31209,7 @@ } }, { - "id": 2622, + "id": 2623, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -31232,7 +31232,7 @@ } }, { - "id": 2628, + "id": 2629, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -31255,7 +31255,7 @@ } }, { - "id": 2693, + "id": 2694, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -31278,7 +31278,7 @@ } }, { - "id": 2742, + "id": 2743, "name": "--ts-var-side-panel-width", "kind": 1024, "kindString": "Property", @@ -31301,7 +31301,7 @@ } }, { - "id": 2782, + "id": 2783, "name": "--ts-var-spotiq-analyze-crosscorrelation-card-background", "kind": 1024, "kindString": "Property", @@ -31324,7 +31324,7 @@ } }, { - "id": 2779, + "id": 2780, "name": "--ts-var-spotiq-analyze-forecasting-card-background", "kind": 1024, "kindString": "Property", @@ -31347,7 +31347,7 @@ } }, { - "id": 2780, + "id": 2781, "name": "--ts-var-spotiq-analyze-outlier-card-background", "kind": 1024, "kindString": "Property", @@ -31370,7 +31370,7 @@ } }, { - "id": 2781, + "id": 2782, "name": "--ts-var-spotiq-analyze-trend-card-background", "kind": 1024, "kindString": "Property", @@ -31393,7 +31393,7 @@ } }, { - "id": 2633, + "id": 2634, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -31416,7 +31416,7 @@ } }, { - "id": 2634, + "id": 2635, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -31439,7 +31439,7 @@ } }, { - "id": 2663, + "id": 2664, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -31462,7 +31462,7 @@ } }, { - "id": 2661, + "id": 2662, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -31485,7 +31485,7 @@ } }, { - "id": 2662, + "id": 2663, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -31508,7 +31508,7 @@ } }, { - "id": 2658, + "id": 2659, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -31531,7 +31531,7 @@ } }, { - "id": 2659, + "id": 2660, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -31554,7 +31554,7 @@ } }, { - "id": 2660, + "id": 2661, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -31577,7 +31577,7 @@ } }, { - "id": 2664, + "id": 2665, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -31600,7 +31600,7 @@ } }, { - "id": 2705, + "id": 2706, "name": "--ts-var-viz-tile-height", "kind": 1024, "kindString": "Property", @@ -31623,7 +31623,7 @@ } }, { - "id": 2655, + "id": 2656, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -31646,7 +31646,7 @@ } }, { - "id": 2656, + "id": 2657, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -31669,7 +31669,7 @@ } }, { - "id": 2657, + "id": 2658, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -31697,177 +31697,177 @@ "title": "Properties", "kind": 1024, "children": [ + 2667, 2666, - 2665, - 2635, 2636, - 2638, 2637, - 2617, - 2678, + 2639, + 2638, + 2618, 2679, - 2676, + 2680, 2677, - 2640, + 2678, + 2641, + 2646, + 2643, 2645, - 2642, 2644, - 2643, - 2641, + 2642, + 2651, + 2648, 2650, - 2647, 2649, - 2648, - 2646, + 2647, + 2655, 2654, 2653, 2652, - 2651, - 2639, - 2783, - 2778, + 2640, + 2784, + 2779, + 2774, 2773, - 2772, + 2776, 2775, - 2774, - 2701, - 2704, - 2699, 2702, - 2703, - 2698, + 2705, 2700, + 2703, + 2704, + 2699, + 2701, + 2672, 2671, - 2670, + 2674, 2673, - 2672, - 2669, - 2667, + 2670, 2668, - 2674, + 2669, 2675, - 2686, + 2676, 2687, - 2690, 2688, + 2691, 2689, + 2690, + 2698, 2697, 2696, 2695, - 2694, + 2772, 2771, 2770, - 2769, + 2778, 2777, - 2776, + 2693, 2692, - 2691, - 2727, - 2740, + 2728, 2741, - 2738, + 2742, 2739, - 2736, + 2740, 2737, - 2746, + 2738, + 2747, + 2745, 2744, - 2743, - 2728, 2729, - 2733, - 2723, + 2730, + 2734, 2724, - 2717, - 2735, 2725, + 2718, + 2736, 2726, - 2734, - 2721, + 2727, + 2735, 2722, - 2732, - 2719, + 2723, + 2733, 2720, - 2718, - 2762, - 2759, + 2721, + 2719, + 2763, 2760, 2761, - 2709, - 2768, - 2763, + 2762, + 2710, + 2769, 2764, - 2767, 2765, + 2768, 2766, + 2767, + 2712, 2711, - 2710, - 2706, 2707, 2708, + 2709, + 2732, 2731, - 2730, - 2745, - 2747, + 2746, 2748, - 2713, - 2712, + 2749, 2714, - 2751, - 2752, + 2713, 2715, + 2752, + 2753, 2716, - 2749, + 2717, 2750, - 2684, - 2681, - 2680, - 2682, + 2751, 2685, + 2682, + 2681, 2683, - 2618, + 2686, + 2684, 2619, - 2757, + 2620, 2758, - 2753, - 2755, - 2756, + 2759, 2754, - 2613, + 2756, + 2757, + 2755, 2614, 2615, 2616, - 2627, - 2631, + 2617, + 2628, 2632, + 2633, + 2631, + 2627, 2630, - 2626, - 2629, - 2623, 2624, 2625, - 2620, + 2626, 2621, 2622, - 2628, - 2693, - 2742, - 2782, - 2779, + 2623, + 2629, + 2694, + 2743, + 2783, 2780, 2781, - 2633, + 2782, 2634, - 2663, - 2661, + 2635, + 2664, 2662, - 2658, + 2663, 2659, 2660, - 2664, - 2705, - 2655, + 2661, + 2665, + 2706, 2656, - 2657 + 2657, + 2658 ] } ], @@ -31880,7 +31880,7 @@ ] }, { - "id": 2600, + "id": 2601, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -31890,7 +31890,7 @@ }, "children": [ { - "id": 2602, + "id": 2603, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -31906,12 +31906,12 @@ ], "type": { "type": "reference", - "id": 2603, + "id": 2604, "name": "customCssInterface" } }, { - "id": 2601, + "id": 2602, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -31936,8 +31936,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2602, - 2601 + 2603, + 2602 ] } ], @@ -31950,7 +31950,7 @@ ] }, { - "id": 2590, + "id": 2591, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -31966,7 +31966,7 @@ }, "children": [ { - "id": 2592, + "id": 2593, "name": "content", "kind": 1024, "kindString": "Property", @@ -31983,14 +31983,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2593, + "id": 2594, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2595, + "id": 2596, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -32020,7 +32020,7 @@ } }, { - "id": 2596, + "id": 2597, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -32040,7 +32040,7 @@ } }, { - "id": 2594, + "id": 2595, "name": "strings", "kind": 1024, "kindString": "Property", @@ -32083,21 +32083,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2595, 2596, - 2594 + 2597, + 2595 ] } ], "indexSignature": { - "id": 2597, + "id": 2598, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2598, + "id": 2599, "name": "key", "kind": 32768, "flags": {}, @@ -32116,7 +32116,7 @@ } }, { - "id": 2599, + "id": 2600, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -32136,7 +32136,7 @@ } }, { - "id": 2591, + "id": 2592, "name": "style", "kind": 1024, "kindString": "Property", @@ -32152,7 +32152,7 @@ ], "type": { "type": "reference", - "id": 2600, + "id": 2601, "name": "CustomStyles" } } @@ -32162,9 +32162,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2592, - 2599, - 2591 + 2593, + 2600, + 2592 ] } ], @@ -32608,7 +32608,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2591, "name": "CustomisationsInterface" } }, @@ -32916,7 +32916,7 @@ ], "type": { "type": "reference", - "id": 2787, + "id": 2788, "name": "LogLevel" } }, @@ -33434,7 +33434,7 @@ ] }, { - "id": 2549, + "id": 2550, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -33450,7 +33450,7 @@ }, "children": [ { - "id": 2551, + "id": 2552, "name": "height", "kind": 1024, "kindString": "Property", @@ -33482,7 +33482,7 @@ } }, { - "id": 2552, + "id": 2553, "name": "loading", "kind": 1024, "kindString": "Property", @@ -33518,7 +33518,7 @@ } }, { - "id": 2550, + "id": 2551, "name": "width", "kind": 1024, "kindString": "Property", @@ -33555,9 +33555,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2551, 2552, - 2550 + 2553, + 2551 ] } ], @@ -33569,7 +33569,7 @@ } ], "indexSignature": { - "id": 2553, + "id": 2554, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -33579,7 +33579,7 @@ }, "parameters": [ { - "id": 2554, + "id": 2555, "name": "key", "kind": 32768, "flags": {}, @@ -33663,7 +33663,7 @@ } }, { - "id": 2378, + "id": 2379, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -33694,20 +33694,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2379, + "id": 2380, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2380, + "id": 2381, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2381, + "id": 2382, "name": "key", "kind": 32768, "flags": {}, @@ -33743,7 +33743,7 @@ } }, { - "id": 2402, + "id": 2403, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -33785,7 +33785,7 @@ } }, { - "id": 2399, + "id": 2400, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -33824,7 +33824,7 @@ } }, { - "id": 2415, + "id": 2416, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -33862,7 +33862,7 @@ } }, { - "id": 2396, + "id": 2397, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -33903,7 +33903,7 @@ } }, { - "id": 2382, + "id": 2383, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -33932,7 +33932,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2591, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -33941,7 +33941,7 @@ } }, { - "id": 2403, + "id": 2404, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -34021,7 +34021,7 @@ } }, { - "id": 2390, + "id": 2391, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -34059,7 +34059,7 @@ } }, { - "id": 2374, + "id": 2375, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -34097,7 +34097,7 @@ } }, { - "id": 2373, + "id": 2374, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -34139,7 +34139,7 @@ } }, { - "id": 2386, + "id": 2387, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -34180,7 +34180,7 @@ } }, { - "id": 2409, + "id": 2410, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -34222,7 +34222,7 @@ } }, { - "id": 2414, + "id": 2415, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -34264,7 +34264,7 @@ } }, { - "id": 2404, + "id": 2405, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -34306,7 +34306,7 @@ } }, { - "id": 2387, + "id": 2388, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -34380,7 +34380,7 @@ } }, { - "id": 2400, + "id": 2401, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -34418,7 +34418,7 @@ } }, { - "id": 2401, + "id": 2402, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -34456,7 +34456,7 @@ } }, { - "id": 2389, + "id": 2390, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -34493,7 +34493,7 @@ } }, { - "id": 2370, + "id": 2371, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -34523,7 +34523,7 @@ ], "type": { "type": "reference", - "id": 2549, + "id": 2550, "name": "FrameParams" }, "inheritedFrom": { @@ -34566,7 +34566,7 @@ } }, { - "id": 2375, + "id": 2376, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -34649,7 +34649,7 @@ } }, { - "id": 2412, + "id": 2413, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -34691,7 +34691,7 @@ } }, { - "id": 2405, + "id": 2406, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -34767,7 +34767,7 @@ } }, { - "id": 2383, + "id": 2384, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -34805,7 +34805,7 @@ } }, { - "id": 2410, + "id": 2411, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -34847,7 +34847,7 @@ } }, { - "id": 2408, + "id": 2409, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -35024,7 +35024,7 @@ } }, { - "id": 2392, + "id": 2393, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -35130,7 +35130,7 @@ } }, { - "id": 2416, + "id": 2417, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -35168,7 +35168,7 @@ } }, { - "id": 2377, + "id": 2378, "name": "locale", "kind": 1024, "kindString": "Property", @@ -35206,7 +35206,7 @@ } }, { - "id": 2391, + "id": 2392, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -35244,7 +35244,7 @@ } }, { - "id": 2385, + "id": 2386, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -35316,7 +35316,7 @@ } }, { - "id": 2393, + "id": 2394, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -35354,7 +35354,7 @@ } }, { - "id": 2397, + "id": 2398, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -35396,7 +35396,7 @@ } }, { - "id": 2398, + "id": 2399, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -35428,7 +35428,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2784, + "id": 2785, "name": "RuntimeParameter" } }, @@ -35438,7 +35438,7 @@ } }, { - "id": 2395, + "id": 2396, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -35475,7 +35475,7 @@ } }, { - "id": 2407, + "id": 2408, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -35517,7 +35517,7 @@ } }, { - "id": 2413, + "id": 2414, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -35559,7 +35559,7 @@ } }, { - "id": 2406, + "id": 2407, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -35601,7 +35601,7 @@ } }, { - "id": 2411, + "id": 2412, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -35677,7 +35677,40 @@ } }, { - "id": 2376, + "id": 2369, + "name": "showSpotterLimitations", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "showSpotterLimitations : show limitation text\nof the spotter underneath the chat input.\ndefault is false.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n // ...other options\n showSpotterLimitations: true,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.41.1 | ThoughtSpot: 10.5.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 398, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2377, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -35837,58 +35870,59 @@ "kind": 1024, "children": [ 2357, - 2378, - 2402, - 2399, - 2415, - 2396, - 2382, + 2379, 2403, + 2400, + 2416, + 2397, + 2383, + 2404, 2348, - 2390, + 2391, + 2375, 2374, - 2373, - 2386, - 2409, - 2414, - 2404, 2387, + 2410, + 2415, + 2405, + 2388, 2349, - 2400, 2401, - 2389, - 2370, + 2402, + 2390, + 2371, 2347, - 2375, + 2376, 2363, - 2412, - 2405, + 2413, + 2406, 2358, - 2383, - 2410, - 2408, + 2384, + 2411, + 2409, 2365, 2366, 2367, 2368, - 2392, + 2393, 2350, 2356, - 2416, - 2377, - 2391, - 2385, + 2417, + 2378, + 2392, + 2386, 2353, - 2393, - 2397, + 2394, 2398, - 2395, + 2399, + 2396, + 2408, + 2414, 2407, - 2413, - 2406, - 2411, + 2412, 2359, - 2376, + 2369, + 2377, 2364, 2354, 2352 @@ -36032,7 +36066,7 @@ ] }, { - "id": 2784, + "id": 2785, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -36042,7 +36076,7 @@ }, "children": [ { - "id": 2785, + "id": 2786, "name": "name", "kind": 1024, "kindString": "Property", @@ -36063,7 +36097,7 @@ } }, { - "id": 2786, + "id": 2787, "name": "value", "kind": 1024, "kindString": "Property", @@ -36102,8 +36136,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2785, - 2786 + 2786, + 2787 ] } ], @@ -36116,7 +36150,7 @@ ] }, { - "id": 2417, + "id": 2418, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -36136,7 +36170,7 @@ }, "children": [ { - "id": 2446, + "id": 2447, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -36167,20 +36201,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2447, + "id": 2448, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2448, + "id": 2449, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2449, + "id": 2450, "name": "key", "kind": 32768, "flags": {}, @@ -36216,7 +36250,7 @@ } }, { - "id": 2434, + "id": 2435, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -36258,7 +36292,7 @@ } }, { - "id": 2431, + "id": 2432, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -36297,7 +36331,7 @@ } }, { - "id": 2463, + "id": 2464, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -36338,7 +36372,7 @@ } }, { - "id": 2450, + "id": 2451, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -36367,7 +36401,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2591, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -36376,7 +36410,7 @@ } }, { - "id": 2435, + "id": 2436, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -36418,7 +36452,7 @@ } }, { - "id": 2427, + "id": 2428, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -36441,7 +36475,7 @@ } }, { - "id": 2458, + "id": 2459, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -36479,7 +36513,7 @@ } }, { - "id": 2422, + "id": 2423, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -36508,7 +36542,7 @@ } }, { - "id": 2442, + "id": 2443, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -36546,7 +36580,7 @@ } }, { - "id": 2441, + "id": 2442, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -36588,7 +36622,7 @@ } }, { - "id": 2454, + "id": 2455, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -36629,7 +36663,7 @@ } }, { - "id": 2436, + "id": 2437, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -36671,7 +36705,7 @@ } }, { - "id": 2455, + "id": 2456, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -36709,7 +36743,7 @@ } }, { - "id": 2432, + "id": 2433, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -36747,7 +36781,7 @@ } }, { - "id": 2433, + "id": 2434, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -36785,7 +36819,7 @@ } }, { - "id": 2457, + "id": 2458, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -36822,7 +36856,7 @@ } }, { - "id": 2438, + "id": 2439, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -36852,7 +36886,7 @@ ], "type": { "type": "reference", - "id": 2549, + "id": 2550, "name": "FrameParams" }, "inheritedFrom": { @@ -36861,7 +36895,7 @@ } }, { - "id": 2443, + "id": 2444, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -36907,7 +36941,7 @@ } }, { - "id": 2424, + "id": 2425, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -36936,7 +36970,7 @@ } }, { - "id": 2421, + "id": 2422, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -36965,7 +36999,7 @@ } }, { - "id": 2426, + "id": 2427, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -36999,7 +37033,7 @@ } }, { - "id": 2420, + "id": 2421, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -37032,7 +37066,7 @@ } }, { - "id": 2423, + "id": 2424, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -37061,7 +37095,7 @@ } }, { - "id": 2451, + "id": 2452, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -37099,7 +37133,7 @@ } }, { - "id": 2460, + "id": 2461, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -37137,7 +37171,7 @@ } }, { - "id": 2445, + "id": 2446, "name": "locale", "kind": 1024, "kindString": "Property", @@ -37175,7 +37209,7 @@ } }, { - "id": 2459, + "id": 2460, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -37213,7 +37247,7 @@ } }, { - "id": 2453, + "id": 2454, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -37251,7 +37285,7 @@ } }, { - "id": 2429, + "id": 2430, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -37293,7 +37327,7 @@ } }, { - "id": 2430, + "id": 2431, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -37325,7 +37359,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2784, + "id": 2785, "name": "RuntimeParameter" } }, @@ -37335,7 +37369,7 @@ } }, { - "id": 2428, + "id": 2429, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -37369,7 +37403,7 @@ } }, { - "id": 2462, + "id": 2463, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -37406,7 +37440,7 @@ } }, { - "id": 2418, + "id": 2419, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -37435,7 +37469,7 @@ } }, { - "id": 2425, + "id": 2426, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -37464,7 +37498,7 @@ } }, { - "id": 2444, + "id": 2445, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -37515,42 +37549,42 @@ "title": "Properties", "kind": 1024, "children": [ - 2446, - 2434, - 2431, - 2463, - 2450, + 2447, 2435, - 2427, - 2458, - 2422, - 2442, - 2441, - 2454, + 2432, + 2464, + 2451, 2436, + 2428, + 2459, + 2423, + 2443, + 2442, 2455, - 2432, + 2437, + 2456, 2433, - 2457, - 2438, - 2443, - 2424, + 2434, + 2458, + 2439, + 2444, + 2425, + 2422, + 2427, 2421, - 2426, - 2420, - 2423, - 2451, + 2424, + 2452, + 2461, + 2446, 2460, - 2445, - 2459, - 2453, - 2429, + 2454, 2430, - 2428, - 2462, - 2418, - 2425, - 2444 + 2431, + 2429, + 2463, + 2419, + 2426, + 2445 ] } ], @@ -37850,7 +37884,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2591, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -38392,7 +38426,7 @@ ], "type": { "type": "reference", - "id": 2549, + "id": 2550, "name": "FrameParams" }, "inheritedFrom": { @@ -38749,7 +38783,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2784, + "id": 2785, "name": "RuntimeParameter" } }, @@ -39355,7 +39389,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2591, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -40036,7 +40070,7 @@ ], "type": { "type": "reference", - "id": 2549, + "id": 2550, "name": "FrameParams" }, "inheritedFrom": { @@ -40487,7 +40521,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2784, + "id": 2785, "name": "RuntimeParameter" } }, @@ -41051,7 +41085,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2591, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -41324,7 +41358,7 @@ ], "type": { "type": "reference", - "id": 2549, + "id": 2550, "name": "FrameParams" }, "inheritedFrom": { @@ -41898,7 +41932,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2591, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -42311,7 +42345,7 @@ ], "type": { "type": "reference", - "id": 2549, + "id": 2550, "name": "FrameParams" }, "inheritedFrom": { @@ -42694,7 +42728,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2784, + "id": 2785, "name": "RuntimeParameter" } } @@ -42992,14 +43026,14 @@ ] }, { - "id": 2822, + "id": 2823, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2823, + "id": 2824, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -43020,7 +43054,7 @@ } }, { - "id": 2824, + "id": 2825, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -43046,8 +43080,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2823, - 2824 + 2824, + 2825 ] } ], @@ -43060,7 +43094,7 @@ ] }, { - "id": 2603, + "id": 2604, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -43070,7 +43104,7 @@ }, "children": [ { - "id": 2605, + "id": 2606, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -43100,20 +43134,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2606, + "id": 2607, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2607, + "id": 2608, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2608, + "id": 2609, "name": "selector", "kind": 32768, "flags": {}, @@ -43126,7 +43160,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2609, + "id": 2610, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43139,14 +43173,14 @@ } ], "indexSignature": { - "id": 2610, + "id": 2611, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2611, + "id": 2612, "name": "declaration", "kind": 32768, "flags": {}, @@ -43168,7 +43202,7 @@ } }, { - "id": 2604, + "id": 2605, "name": "variables", "kind": 1024, "kindString": "Property", @@ -43187,7 +43221,7 @@ ], "type": { "type": "reference", - "id": 2612, + "id": 2613, "name": "CustomCssVariables" } } @@ -43197,8 +43231,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2605, - 2604 + 2606, + 2605 ] } ], @@ -43503,7 +43537,7 @@ ] }, { - "id": 2573, + "id": 2574, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -43530,7 +43564,7 @@ } }, { - "id": 2577, + "id": 2578, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -43545,7 +43579,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2578, + "id": 2579, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43568,7 +43602,7 @@ ], "signatures": [ { - "id": 2579, + "id": 2580, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43578,19 +43612,19 @@ }, "parameters": [ { - "id": 2580, + "id": 2581, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2585, + "id": 2586, "name": "MessagePayload" } }, { - "id": 2581, + "id": 2582, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -43600,7 +43634,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2582, + "id": 2583, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43614,7 +43648,7 @@ ], "signatures": [ { - "id": 2583, + "id": 2584, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43624,7 +43658,7 @@ }, "parameters": [ { - "id": 2584, + "id": 2585, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -43655,7 +43689,7 @@ } }, { - "id": 2574, + "id": 2575, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -43679,14 +43713,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2575, + "id": 2576, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2576, + "id": 2577, "name": "start", "kind": 1024, "kindString": "Property", @@ -43714,7 +43748,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2576 + 2577 ] } ], @@ -43729,7 +43763,7 @@ } }, { - "id": 2585, + "id": 2586, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -43753,14 +43787,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2586, + "id": 2587, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2588, + "id": 2589, "name": "data", "kind": 1024, "kindString": "Property", @@ -43778,7 +43812,7 @@ } }, { - "id": 2589, + "id": 2590, "name": "status", "kind": 1024, "kindString": "Property", @@ -43798,7 +43832,7 @@ } }, { - "id": 2587, + "id": 2588, "name": "type", "kind": 1024, "kindString": "Property", @@ -43821,9 +43855,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2588, 2589, - 2587 + 2590, + 2588 ] } ], @@ -44484,7 +44518,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2544, + "id": 2545, "name": "PrefetchFeatures" } } @@ -44556,7 +44590,7 @@ ] }, { - "id": 2871, + "id": 2872, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -44566,13 +44600,13 @@ "sources": [ { "fileName": "authToken.ts", - "line": 93, + "line": 104, "character": 13 } ], "signatures": [ { - "id": 2872, + "id": 2873, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -44766,7 +44800,7 @@ ] }, { - "id": 2794, + "id": 2795, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -44780,7 +44814,7 @@ ], "signatures": [ { - "id": 2795, + "id": 2796, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -44790,7 +44824,7 @@ }, "parameters": [ { - "id": 2796, + "id": 2797, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -44802,7 +44836,7 @@ } }, { - "id": 2797, + "id": 2798, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -44813,7 +44847,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2798, + "id": 2799, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -44842,24 +44876,24 @@ 1705, 1860, 2196, - 2866, - 2862, - 2858, + 2867, + 2863, + 2859, 2055, 1892, - 2555, - 2816, - 2810, - 2566, + 2556, + 2817, + 2811, + 2567, 1985, - 2819, - 2852, - 2787, + 2820, + 2853, + 2788, 1851, - 2544, - 2814, + 2545, + 2815, 1876, - 2845 + 2846 ] }, { @@ -44882,28 +44916,28 @@ "title": "Interfaces", "kind": 256, "children": [ - 2464, + 2465, 1715, 1236, 1497, - 2825, - 2612, - 2600, - 2590, + 2826, + 2613, + 2601, + 2591, 2200, - 2549, + 2550, 2346, 1872, - 2784, - 2417, + 2785, + 2418, 2304, 2250, 1841, 1207, 1458, 1848, - 2822, - 2603, + 2823, + 2604, 21, 25 ] @@ -44912,10 +44946,10 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2573, - 2577, 2574, - 2585 + 2578, + 2575, + 2586 ] }, { @@ -44931,9 +44965,9 @@ 1, 4, 7, - 2871, + 2872, 37, - 2794 + 2795 ] } ], From f21a8b61bca22beaa3d67a8de1c9438b3ccf5e32 Mon Sep 17 00:00:00 2001 From: Ashish Shubham Date: Wed, 24 Sep 2025 23:03:48 -0700 Subject: [PATCH 05/31] Update README.md --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 106713553..772fe1e73 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ # ThoughtSpot Visual Embed SDK
[![Coverage Status](https://coveralls.io/repos/github/thoughtspot/visual-embed-sdk/badge.svg?branch=main)](https://coveralls.io/github/thoughtspot/visual-embed-sdk?branch=main) ![npm (scoped with tag)](https://img.shields.io/npm/v/@thoughtspot/visual-embed-sdk) [![](https://data.jsdelivr.com/v1/package/npm/@thoughtspot/visual-embed-sdk/badge?style=rounded)](https://www.jsdelivr.com/package/npm/@thoughtspot/visual-embed-sdk) ![npm](https://img.shields.io/npm/dm/@thoughtspot/visual-embed-sdk?label=npm%20downloads&style=flat-square) ![npm bundle size (scoped)](https://img.shields.io/bundlephobia/minzip/@thoughtspot/visual-embed-sdk?style=flat-square) Discord: ThoughtSpot -SDK to embed ThoughtSpot into your web apps. You need a ThoughtSpot account to use the SDK, [click here](https://www.thoughtspot.com/trial?tsref=trialtse) to start a trial. +SDK to embed ThoughtSpot into your web apps. You need a ThoughtSpot account to use the SDK, [click here](https://www.thoughtspot.com/trial?tsref=trialtse) to start a free trial. * [Installation](#installation) * [Live Playground](#live-playground) @@ -24,8 +24,6 @@ SDK to embed ThoughtSpot into your web apps. You need a ThoughtSpot account to u ## Installation -The SDK is compatible with ThoughtSpot SW version >= 7.1 and ThoughtSpot Cloud. - Install the Visual Embed SDK from [NPM](https://www.npmjs.com/package/@thoughtspot/visual-embed-sdk): ``` @@ -199,7 +197,7 @@ const MyComponent = ({ dataSources }) => { }; ``` -### Triggering events on React components (> version 1.9.2) +### Triggering events on React components ```jsx import { HostEvent } from '@thoughtspot/visual-embed-sdk'; From 12302553be6c56e843307b8795cadabcde10582b Mon Sep 17 00:00:00 2001 From: Mourya Balabhadra <162541770+mouryabalabhadra@users.noreply.github.com> Date: Thu, 25 Sep 2025 15:55:09 -0700 Subject: [PATCH 06/31] version bump to 1.41.1 (#320) --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index cd7602e7a..961f9bbca 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@thoughtspot/visual-embed-sdk", - "version": "1.40.1", + "version": "1.41.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@thoughtspot/visual-embed-sdk", - "version": "1.40.1", + "version": "1.41.1", "license": "ThoughtSpot Development Tools End User License Agreement", "dependencies": { "classnames": "^2.3.1", diff --git a/package.json b/package.json index 30f0cd155..95d57f3d5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@thoughtspot/visual-embed-sdk", - "version": "1.41.0", + "version": "1.41.1", "description": "ThoughtSpot Embed SDK", "module": "lib/src/index.js", "main": "dist/tsembed.js", From 153697b6adb53002c1b5d1da53209a46c2945560 Mon Sep 17 00:00:00 2001 From: shivam-kumar-ts Date: Mon, 29 Sep 2025 11:41:40 +0530 Subject: [PATCH 07/31] SCAL-244072 migration dts-bundle to dts-bundle-generator (#319) --- dts-config/dts-bundle-file.config.js | 20 ++ dts-config/dts-bundle-react-full.config.js | 20 ++ dts-config/dts-bundle-react.config.js | 20 ++ dts-config/dts-bundle.config.js | 20 ++ package-lock.json | 270 ++++++++------------- package.json | 16 +- src/embed/sage.ts | 4 +- src/react/all-types-export.spec.ts | 2 +- src/react/util.spec.tsx | 88 +++++++ src/react/util.ts | 6 +- tsconfig.build.json | 16 ++ tsconfig.json | 1 - 12 files changed, 299 insertions(+), 184 deletions(-) create mode 100644 dts-config/dts-bundle-file.config.js create mode 100644 dts-config/dts-bundle-react-full.config.js create mode 100644 dts-config/dts-bundle-react.config.js create mode 100644 dts-config/dts-bundle.config.js create mode 100644 src/react/util.spec.tsx create mode 100644 tsconfig.build.json diff --git a/dts-config/dts-bundle-file.config.js b/dts-config/dts-bundle-file.config.js new file mode 100644 index 000000000..5da684855 --- /dev/null +++ b/dts-config/dts-bundle-file.config.js @@ -0,0 +1,20 @@ +module.exports = { + compilationOptions: { + preferredConfigPath: '../tsconfig.json', + followSymlinks: false, + }, + entries: [ + { + filePath: '../lib/src/index.d.ts', + outFile: '../visual-embed-sdk.d.ts', + noCheck: true, + output: { + noBanner: false, + respectPreserveConstEnum: false, + }, + libraries: { + inlinedLibraries: ['@babel/types'], + }, + } + ], +}; diff --git a/dts-config/dts-bundle-react-full.config.js b/dts-config/dts-bundle-react-full.config.js new file mode 100644 index 000000000..c676d7b0e --- /dev/null +++ b/dts-config/dts-bundle-react-full.config.js @@ -0,0 +1,20 @@ +module.exports = { + compilationOptions: { + preferredConfigPath: '../tsconfig.json', + followSymlinks: false, + }, + entries: [ + { + filePath: '../lib/src/react/all-types-export.d.ts', + outFile: '../dist/visual-embed-sdk-react-full.d.ts', + noCheck: true, + output: { + noBanner: false, + respectPreserveConstEnum: false, + }, + libraries: { + inlinedLibraries: ['@babel/types'], + }, + } + ], +}; diff --git a/dts-config/dts-bundle-react.config.js b/dts-config/dts-bundle-react.config.js new file mode 100644 index 000000000..1df3f338a --- /dev/null +++ b/dts-config/dts-bundle-react.config.js @@ -0,0 +1,20 @@ +module.exports = { + compilationOptions: { + preferredConfigPath: '../tsconfig.json', + followSymlinks: false, + }, + entries: [ + { + filePath: '../lib/src/react/index.d.ts', + outFile: '../dist/visual-embed-sdk-react.d.ts', + noCheck: true, + output: { + noBanner: false, + respectPreserveConstEnum: false, + }, + libraries: { + inlinedLibraries: ['@babel/types'], + }, + } + ], +}; diff --git a/dts-config/dts-bundle.config.js b/dts-config/dts-bundle.config.js new file mode 100644 index 000000000..9ef1a6e25 --- /dev/null +++ b/dts-config/dts-bundle.config.js @@ -0,0 +1,20 @@ +module.exports = { + compilationOptions: { + preferredConfigPath: '../tsconfig.json', + followSymlinks: false, + }, + entries: [ + { + filePath: '../lib/src/index.d.ts', + outFile: '../dist/visual-embed-sdk.d.ts', + noCheck: true, + output: { + noBanner: false, + respectPreserveConstEnum: false, + }, + libraries: { + inlinedLibraries: ['@babel/types'], + }, + } + ], +}; diff --git a/package-lock.json b/package-lock.json index 961f9bbca..d0171ecdb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@thoughtspot/visual-embed-sdk", - "version": "1.41.1", + "version": "1.41.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@thoughtspot/visual-embed-sdk", - "version": "1.41.1", + "version": "1.41.2", "license": "ThoughtSpot Development Tools End User License Agreement", "dependencies": { "classnames": "^2.3.1", @@ -45,7 +45,7 @@ "coveralls-next": "^5.0.0", "crypto": "^1.0.1", "current-git-branch": "^1.1.0", - "dts-bundle": "^0.7.3", + "dts-bundle-generator": "^9.5.1", "eslint": "^9.23.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-config-prettier": "^10.1.1", @@ -4630,12 +4630,6 @@ "@types/responselike": "^1.0.0" } }, - "node_modules/@types/detect-indent": { - "version": "0.1.30", - "resolved": "https://registry.npmjs.org/@types/detect-indent/-/detect-indent-0.1.30.tgz", - "integrity": "sha512-AUmj9JHuHTD94slY1WR1VulFxRGC6D1pcNCN0MCulKFyiihvV/28lLS8oRHgfmc2Cxq954J8Vmosa8qzm7PLGQ==", - "dev": true - }, "node_modules/@types/eslint": { "version": "9.6.1", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", @@ -4664,16 +4658,6 @@ "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", "dev": true }, - "node_modules/@types/glob": { - "version": "5.0.30", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.30.tgz", - "integrity": "sha512-ZM05wDByI+WA153sfirJyEHoYYoIuZ7lA2dB/Gl8ymmpMTR78fNRtDMqa7Z6SdH4fZdLWZNRE6mZpx3XqBOrHw==", - "dev": true, - "dependencies": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, "node_modules/@types/graceful-fs": { "version": "4.1.9", "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", @@ -4764,24 +4748,12 @@ "@types/unist": "^2" } }, - "node_modules/@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", - "dev": true - }, "node_modules/@types/mixpanel-browser": { "version": "2.50.0", "resolved": "https://registry.npmjs.org/@types/mixpanel-browser/-/mixpanel-browser-2.50.0.tgz", "integrity": "sha512-RkGTkkDUw3Tm/GEmcS/x8t2mNrt34jgrEWLVM6oSnoe/+bk/WQP1EWaHLk3pCDc3IaXHNoweoNMa1iWLLF0yFQ==", "dev": true }, - "node_modules/@types/mkdirp": { - "version": "0.3.29", - "resolved": "https://registry.npmjs.org/@types/mkdirp/-/mkdirp-0.3.29.tgz", - "integrity": "sha512-QRLQpFsIQGO2k8pupga9abfei85GKotAtQ+F6xuQmSGomUt6C52TyMiTFpP8kUwuPKr00gNtu3itLlC6gvI/NA==", - "dev": true - }, "node_modules/@types/node": { "version": "22.7.5", "resolved": "https://registry.npmjs.org/@types/node/-/node-22.7.5.tgz", @@ -7607,28 +7579,6 @@ "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/detect-indent": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-0.2.0.tgz", - "integrity": "sha512-C6jyrDu/eGH4KT0ZxAzijiH+ts5YLy7DqGFoDuHGxZjMOdjzRltp3jByySnpFBVIy4Em0ZkLN8tIV6mcREdw5A==", - "dev": true, - "dependencies": { - "get-stdin": "^0.1.0", - "minimist": "^0.1.0" - }, - "bin": { - "detect-indent": "cli.js" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/detect-indent/node_modules/minimist": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.1.0.tgz", - "integrity": "sha512-wR5Ipl99t0mTGwLjQJnBjrP/O7zBbLZqvA3aw32DmLx+nXHfWctUjzDjnDx09pX1Po86WFQazF9xUzfMea3Cnw==", - "dev": true - }, "node_modules/detect-newline": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", @@ -7776,49 +7726,79 @@ "node": ">=8" } }, - "node_modules/dts-bundle": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/dts-bundle/-/dts-bundle-0.7.3.tgz", - "integrity": "sha512-EEAEuPRk8QyKhoN90NHTh+spSQujkkvOnKWUfuzpmC/fgryiWopL1SegSktx0UsoPfNidIGVDN7/AXpBDBv0WQ==", + "node_modules/dts-bundle-generator": { + "version": "9.5.1", + "resolved": "https://registry.npmjs.org/dts-bundle-generator/-/dts-bundle-generator-9.5.1.tgz", + "integrity": "sha512-DxpJOb2FNnEyOzMkG11sxO2dmxPjthoVWxfKqWYJ/bI/rT1rvTMktF5EKjAYrRZu6Z6t3NhOUZ0sZ5ZXevOfbA==", "dev": true, + "license": "MIT", "dependencies": { - "@types/detect-indent": "0.1.30", - "@types/glob": "5.0.30", - "@types/mkdirp": "0.3.29", - "@types/node": "8.0.0", - "commander": "^2.9.0", - "detect-indent": "^0.2.0", - "glob": "^6.0.4", - "mkdirp": "^0.5.0" + "typescript": ">=5.0.2", + "yargs": "^17.6.0" }, "bin": { - "dts-bundle": "lib/dts-bundle.js" + "dts-bundle-generator": "dist/bin/dts-bundle-generator.js" }, "engines": { - "node": ">= 0.10.0" + "node": ">=14.0.0" } }, - "node_modules/dts-bundle/node_modules/@types/node": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-8.0.0.tgz", - "integrity": "sha512-j2tekvJCO7j22cs+LO6i0kRPhmQ9MXaPZ55TzOc1lzkN5b6BWqq4AFjl04s1oRRQ1v5rSe+KEvnLUSTonuls/A==", - "dev": true + "node_modules/dts-bundle-generator/node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } }, - "node_modules/dts-bundle/node_modules/glob": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", - "integrity": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==", - "deprecated": "Glob versions prior to v9 are no longer supported", + "node_modules/dts-bundle-generator/node_modules/typescript": { + "version": "5.9.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz", + "integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==", "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/dts-bundle-generator/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "license": "MIT", "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "2 || 3", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" }, "engines": { - "node": "*" + "node": ">=12" + } + }, + "node_modules/dts-bundle-generator/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" } }, "node_modules/dunder-proto": { @@ -9837,15 +9817,6 @@ "node": ">= 0.4" } }, - "node_modules/get-stdin": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-0.1.0.tgz", - "integrity": "sha512-/WBu3IaQZxE3bs3BhBmR10ipDY4pjN+U4EZgXULa1eqKA0B/Lka/MVoAqhTVYBkkRlCrEGDOU9itrzIgm9Ksng==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/get-stream": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", @@ -23025,12 +22996,6 @@ "@types/responselike": "^1.0.0" } }, - "@types/detect-indent": { - "version": "0.1.30", - "resolved": "https://registry.npmjs.org/@types/detect-indent/-/detect-indent-0.1.30.tgz", - "integrity": "sha512-AUmj9JHuHTD94slY1WR1VulFxRGC6D1pcNCN0MCulKFyiihvV/28lLS8oRHgfmc2Cxq954J8Vmosa8qzm7PLGQ==", - "dev": true - }, "@types/eslint": { "version": "9.6.1", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", @@ -23057,16 +23022,6 @@ "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", "dev": true }, - "@types/glob": { - "version": "5.0.30", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.30.tgz", - "integrity": "sha512-ZM05wDByI+WA153sfirJyEHoYYoIuZ7lA2dB/Gl8ymmpMTR78fNRtDMqa7Z6SdH4fZdLWZNRE6mZpx3XqBOrHw==", - "dev": true, - "requires": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, "@types/graceful-fs": { "version": "4.1.9", "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", @@ -23157,24 +23112,12 @@ "@types/unist": "^2" } }, - "@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", - "dev": true - }, "@types/mixpanel-browser": { "version": "2.50.0", "resolved": "https://registry.npmjs.org/@types/mixpanel-browser/-/mixpanel-browser-2.50.0.tgz", "integrity": "sha512-RkGTkkDUw3Tm/GEmcS/x8t2mNrt34jgrEWLVM6oSnoe/+bk/WQP1EWaHLk3pCDc3IaXHNoweoNMa1iWLLF0yFQ==", "dev": true }, - "@types/mkdirp": { - "version": "0.3.29", - "resolved": "https://registry.npmjs.org/@types/mkdirp/-/mkdirp-0.3.29.tgz", - "integrity": "sha512-QRLQpFsIQGO2k8pupga9abfei85GKotAtQ+F6xuQmSGomUt6C52TyMiTFpP8kUwuPKr00gNtu3itLlC6gvI/NA==", - "dev": true - }, "@types/node": { "version": "22.7.5", "resolved": "https://registry.npmjs.org/@types/node/-/node-22.7.5.tgz", @@ -25231,24 +25174,6 @@ "repeat-string": "^1.5.4" } }, - "detect-indent": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-0.2.0.tgz", - "integrity": "sha512-C6jyrDu/eGH4KT0ZxAzijiH+ts5YLy7DqGFoDuHGxZjMOdjzRltp3jByySnpFBVIy4Em0ZkLN8tIV6mcREdw5A==", - "dev": true, - "requires": { - "get-stdin": "^0.1.0", - "minimist": "^0.1.0" - }, - "dependencies": { - "minimist": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.1.0.tgz", - "integrity": "sha512-wR5Ipl99t0mTGwLjQJnBjrP/O7zBbLZqvA3aw32DmLx+nXHfWctUjzDjnDx09pX1Po86WFQazF9xUzfMea3Cnw==", - "dev": true - } - } - }, "detect-newline": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", @@ -25359,40 +25284,53 @@ "is-obj": "^2.0.0" } }, - "dts-bundle": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/dts-bundle/-/dts-bundle-0.7.3.tgz", - "integrity": "sha512-EEAEuPRk8QyKhoN90NHTh+spSQujkkvOnKWUfuzpmC/fgryiWopL1SegSktx0UsoPfNidIGVDN7/AXpBDBv0WQ==", + "dts-bundle-generator": { + "version": "9.5.1", + "resolved": "https://registry.npmjs.org/dts-bundle-generator/-/dts-bundle-generator-9.5.1.tgz", + "integrity": "sha512-DxpJOb2FNnEyOzMkG11sxO2dmxPjthoVWxfKqWYJ/bI/rT1rvTMktF5EKjAYrRZu6Z6t3NhOUZ0sZ5ZXevOfbA==", "dev": true, "requires": { - "@types/detect-indent": "0.1.30", - "@types/glob": "5.0.30", - "@types/mkdirp": "0.3.29", - "@types/node": "8.0.0", - "commander": "^2.9.0", - "detect-indent": "^0.2.0", - "glob": "^6.0.4", - "mkdirp": "^0.5.0" + "typescript": ">=5.0.2", + "yargs": "^17.6.0" }, "dependencies": { - "@types/node": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-8.0.0.tgz", - "integrity": "sha512-j2tekvJCO7j22cs+LO6i0kRPhmQ9MXaPZ55TzOc1lzkN5b6BWqq4AFjl04s1oRRQ1v5rSe+KEvnLUSTonuls/A==", + "cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + } + }, + "typescript": { + "version": "5.9.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz", + "integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==", "dev": true }, - "glob": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", - "integrity": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==", + "yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, "requires": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "2 || 3", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" } + }, + "yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true } } }, @@ -26885,12 +26823,6 @@ "es-object-atoms": "^1.0.0" } }, - "get-stdin": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-0.1.0.tgz", - "integrity": "sha512-/WBu3IaQZxE3bs3BhBmR10ipDY4pjN+U4EZgXULa1eqKA0B/Lka/MVoAqhTVYBkkRlCrEGDOU9itrzIgm9Ksng==", - "dev": true - }, "get-stream": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", diff --git a/package.json b/package.json index 95d57f3d5..b182d53e5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@thoughtspot/visual-embed-sdk", - "version": "1.41.1", + "version": "1.41.2", "description": "ThoughtSpot Embed SDK", "module": "lib/src/index.js", "main": "dist/tsembed.js", @@ -44,15 +44,15 @@ "scripts": { "lint": "eslint 'src/**'", "lint:fix": "eslint 'src/**/*.*' --fix", - "tsc": "tsc -p . --incremental false; tsc -p . --incremental false --module commonjs --outDir cjs", + "tsc": "tsc -p tsconfig.build.json --incremental false; tsc -p tsconfig.build.json --incremental false --module commonjs --outDir cjs", "build-and-publish": "npm run build:gatsby && npm run publish", - "bundle-dts-file": "dts-bundle --name @thoughtspot/visual-embed-sdk --out visual-embed-sdk.d.ts --main lib/src/index.d.ts", - "bundle-dts": "dts-bundle --name ../../dist/visual-embed-sdk --main lib/src/index.d.ts --outputAsModuleFolder=true", - "bundle-dts-react": "dts-bundle --name ../../../dist/visual-embed-sdk-react --main lib/src/react/index.d.ts --outputAsModuleFolder=true", - "bundle-dts-react-full": "dts-bundle --name ../../../dist/visual-embed-sdk-react-full --main lib/src/react/all-types-export.d.ts --outputAsModuleFolder=true", + "bundle-dts-file": "dts-bundle-generator --config ./dts-config/dts-bundle-file.config.js", + "bundle-dts": "dts-bundle-generator --config ./dts-config/dts-bundle.config.js", + "bundle-dts-react": "dts-bundle-generator --config ./dts-config/dts-bundle-react.config.js", + "bundle-dts-react-full": "dts-bundle-generator --config ./dts-config/dts-bundle-react-full.config.js", "build": "rollup -c", "watch": "rollup -cw", - "docgen": "typedoc --tsconfig tsconfig.json --theme typedoc-theme --json static/typedoc/typedoc.json --disableOutputCheck", + "docgen": "typedoc --tsconfig tsconfig.build.json --theme typedoc-theme --json static/typedoc/typedoc.json --disableOutputCheck", "test-sdk": "jest -c jest.config.sdk.js --runInBand", "test": "npm run test-sdk", "posttest": "cat ./coverage/sdk/lcov.info | npx coveralls-next", @@ -104,7 +104,7 @@ "coveralls-next": "^5.0.0", "crypto": "^1.0.1", "current-git-branch": "^1.1.0", - "dts-bundle": "^0.7.3", + "dts-bundle-generator": "^9.5.1", "eslint": "^9.23.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-config-prettier": "^10.1.1", diff --git a/src/embed/sage.ts b/src/embed/sage.ts index 8b1c4d9b9..492b4ae06 100644 --- a/src/embed/sage.ts +++ b/src/embed/sage.ts @@ -200,9 +200,9 @@ export class SageEmbed extends V1Embed { dataSource, searchOptions, } = this.viewConfig; - if (dataSource) postHashObj[Param.WorksheetId] = dataSource; + if (dataSource) (postHashObj as any)[Param.WorksheetId] = dataSource; if (searchOptions?.searchQuery && searchOptions.executeSearch) { - postHashObj[Param.executeSearch] = true; + (postHashObj as any)[Param.executeSearch] = true; } let sagePostHashParams = new URLSearchParams(postHashObj).toString(); diff --git a/src/react/all-types-export.spec.ts b/src/react/all-types-export.spec.ts index 07af6fd2e..aa88f7335 100644 --- a/src/react/all-types-export.spec.ts +++ b/src/react/all-types-export.spec.ts @@ -6,6 +6,6 @@ describe('Exports', () => { }); it('should not have undefined exports', () => { - Object.keys(Exports).forEach((exportKey) => expect(Boolean(Exports[exportKey])).toBe(true)); + Object.entries(Exports).forEach(([, exportValue]) => {expect(Boolean(exportValue)).toBe(true);}); }); }); diff --git a/src/react/util.spec.tsx b/src/react/util.spec.tsx new file mode 100644 index 000000000..b09085107 --- /dev/null +++ b/src/react/util.spec.tsx @@ -0,0 +1,88 @@ +import { getViewPropsAndListeners } from './util'; +import { EmbedEvent, MessageCallback } from '../types'; + +describe('React util functions', () => { + describe('getViewPropsAndListeners', () => { + test('should return empty viewConfig and listeners for empty props', () => { + const props = {}; + const result = getViewPropsAndListeners(props); + + expect(result.viewConfig).toEqual({}); + expect(result.listeners).toEqual({}); + }); + + test('should separate view config properties from props', () => { + const props = { + frameParams: { width: 100, height: 200 }, + showLiveboardTitle: true, + liveboardId: 'test-liveboard-id', + vizId: 'test-viz-id', + className: 'test-class', + style: { color: 'red' }, + }; + + const result = getViewPropsAndListeners(props); + + expect(result.viewConfig).toEqual({ + frameParams: { width: 100, height: 200 }, + showLiveboardTitle: true, + liveboardId: 'test-liveboard-id', + vizId: 'test-viz-id', + className: 'test-class', + style: { color: 'red' }, + }); + expect(result.listeners).toEqual({}); + }); + + test('should separate event handlers from props', () => { + const onInit: MessageCallback = jest.fn(); + const onLoad: MessageCallback = jest.fn(); + const onData: MessageCallback = jest.fn(); + + const props = { + onInit, + onLoad, + onData, + }; + + const result = getViewPropsAndListeners(props); + + expect(result.viewConfig).toEqual({}); + expect(result.listeners).toEqual({ + [EmbedEvent.Init]: onInit, + [EmbedEvent.Load]: onLoad, + [EmbedEvent.Data]: onData, + }); + }); + + test('should handle both view config and event handlers', () => { + const onInit: MessageCallback = jest.fn(); + const onAuthInit: MessageCallback = jest.fn(); + const onQueryChanged: MessageCallback = jest.fn(); + + const props = { + liveboardId: 'test-liveboard-id', + showLiveboardTitle: false, + frameParams: { height: 500 }, + onInit, + onAuthInit, + onQueryChanged, + className: 'embed-container', + }; + + const result = getViewPropsAndListeners(props); + + expect(result.viewConfig).toEqual({ + liveboardId: 'test-liveboard-id', + showLiveboardTitle: false, + frameParams: { height: 500 }, + className: 'embed-container', + }); + expect(result.listeners).toEqual({ + [EmbedEvent.Init]: onInit, + [EmbedEvent.AuthInit]: onAuthInit, + [EmbedEvent.QueryChanged]: onQueryChanged, + }); + }); + }); +}); diff --git a/src/react/util.ts b/src/react/util.ts index c08e8fb05..d4a168a78 100644 --- a/src/react/util.ts +++ b/src/react/util.ts @@ -24,10 +24,10 @@ export function getViewPropsAndListeners< return Object.keys(props).reduce( (accu, key) => { if (key.startsWith('on')) { - const eventName = key.substr(2); - accu.listeners[EmbedEvent[eventName]] = props[key]; + const eventName = key.substr(2) as any; + (accu.listeners as any)[EmbedEvent[eventName as keyof typeof EmbedEvent] as any] = props[key as keyof T]; } else { - accu.viewConfig[key] = props[key]; + (accu.viewConfig as any)[key] = props[key as keyof T]; } return accu; }, diff --git a/tsconfig.build.json b/tsconfig.build.json new file mode 100644 index 000000000..4e1b0a33e --- /dev/null +++ b/tsconfig.build.json @@ -0,0 +1,16 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "suppressImplicitAnyIndexErrors": true + }, + "typedocOptions": { + "entryPoints": ["src/index.ts"], + "out": "static/typedoc", + "json": "static/typedoc/typedoc.json", + "excludePrivate": true, + "excludeProtected": true, + "excludeInternal": true, + "hideGenerator": true, + "categorizeByGroup": false + } +} diff --git a/tsconfig.json b/tsconfig.json index ed0ac673b..b1b281306 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,7 +19,6 @@ "strictNullChecks": false, "strictPropertyInitialization": false, "strictBindCallApply": true, - "suppressImplicitAnyIndexErrors": true, "noUnusedLocals": false, "noUnusedParameters": false, "esModuleInterop": true, From 1fb73e8e170be2eeb1e89ed98fc951b9742f2d0c Mon Sep 17 00:00:00 2001 From: sanjay-satheesh-thoughtspot Date: Mon, 29 Sep 2025 16:04:49 +0530 Subject: [PATCH 08/31] SCAL-270869 fix(css-variables): updated the documentation for liveboard styling variables (#313) --- src/css-variables.ts | 69 +++- static/typedoc/typedoc.json | 620 +++++++++++++++++------------------- 2 files changed, 341 insertions(+), 348 deletions(-) diff --git a/src/css-variables.ts b/src/css-variables.ts index 9982d7eb7..992a0159a 100644 --- a/src/css-variables.ts +++ b/src/css-variables.ts @@ -536,51 +536,71 @@ export interface CustomCssVariables { /** * Padding of the groups in the Liveboard. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-group-padding'?: string; /** * Padding of the title of the groups in the Liveboard. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-group-title-padding'?: string; /** * Font size of the title of the groups in the Liveboard. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-group-title-font-size'?: string; /** * Font weight of the title of the groups in the Liveboard. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-group-title-font-weight'?: string; /** * Font size of the title of the tiles inside the groups in the Liveboard. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-group-tile-title-font-size'?: string; /** * Font weight of the title of the tiles inside the groups in the Liveboard. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-group-tile-title-font-weight'?: string; /** * Font size of the description of the groups in the Liveboard. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-group-description-font-size'?: string; /** * Font weight of the description of the groups in the Liveboard. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-group-description-font-weight'?: string; /** - * Border of the tiles in the Liveboard. + * Border of the group tiles in the Liveboard. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-group-tile-border'?: string; /** - * Padding of the tiles in the Liveboard. + * Padding of the group tiles in the Liveboard. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-group-tile-padding'?: string; @@ -591,11 +611,15 @@ export interface CustomCssVariables { /** * Background color of the groups in the Liveboard. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-group-background'?: string; /** * Border color of the groups in the Liveboard. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-group-border-color'?: string; @@ -611,54 +635,67 @@ export interface CustomCssVariables { /** * Font color of the title of the groups in the Liveboard. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-group-title-font-color'?: string; /** * Font color of the description of the groups in the Liveboard. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-group-description-font-color'?: string; /** * Font color of the title of the tiles inside the groups in the Liveboard. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-group-tile-title-font-color'?: string; + /** + * Font color of the description of the tiles inside the groups in the Liveboard. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. + */ + '--ts-var-liveboard-group-tile-description-font-color'?: string; + /** * Background color of the tiles inside the groups in the Liveboard. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-group-tile-background'?: string; /** - * Background color of the chips in the Liveboard. + * Background color of the filter chips in the Liveboard. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-chip-background'?: string; /** - * Font color of the chips in the Liveboard. + * Font color of the filter chips in the Liveboard. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-chip-color'?: string; /** - * Background color of the chips in the Liveboard on hover. + * Background color of the filter chips in the Liveboard on hover. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-chip--hover-background'?: string; /** - * Font color of the chips in the Liveboard on hover. - */ - '--ts-var-liveboard-chip--hover-color'?: string; - - /** - * Background color of the chips in the Liveboard on active. + * Background color of the filter chips in the Liveboard on active. + * + * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. */ '--ts-var-liveboard-chip--active-background'?: string; - /** - * Font color of the chips in the Liveboard on active. - */ - '--ts-var-liveboard-chip--active-color'?: string; - /** * Width of the side panel in the Liveboard. */ diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 34bacb08a..a2c235ec6 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -3883,7 +3883,7 @@ ] }, { - "id": 2867, + "id": 2865, "name": "CustomActionTarget", "kind": 4, "kindString": "Enumeration", @@ -3893,7 +3893,7 @@ }, "children": [ { - "id": 2870, + "id": 2868, "name": "ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -3908,7 +3908,7 @@ "defaultValue": "\"ANSWER\"" }, { - "id": 2868, + "id": 2866, "name": "LIVEBOARD", "kind": 16, "kindString": "Enumeration member", @@ -3923,7 +3923,7 @@ "defaultValue": "\"LIVEBOARD\"" }, { - "id": 2871, + "id": 2869, "name": "SPOTTER", "kind": 16, "kindString": "Enumeration member", @@ -3938,7 +3938,7 @@ "defaultValue": "\"SPOTTER\"" }, { - "id": 2869, + "id": 2867, "name": "VIZ", "kind": 16, "kindString": "Enumeration member", @@ -3958,10 +3958,10 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2870, 2868, - 2871, - 2869 + 2866, + 2869, + 2867 ] } ], @@ -3974,7 +3974,7 @@ ] }, { - "id": 2863, + "id": 2861, "name": "CustomActionsPosition", "kind": 4, "kindString": "Enumeration", @@ -3984,7 +3984,7 @@ }, "children": [ { - "id": 2866, + "id": 2864, "name": "CONTEXTMENU", "kind": 16, "kindString": "Enumeration member", @@ -3999,7 +3999,7 @@ "defaultValue": "\"CONTEXTMENU\"" }, { - "id": 2865, + "id": 2863, "name": "MENU", "kind": 16, "kindString": "Enumeration member", @@ -4014,7 +4014,7 @@ "defaultValue": "\"MENU\"" }, { - "id": 2864, + "id": 2862, "name": "PRIMARY", "kind": 16, "kindString": "Enumeration member", @@ -4034,9 +4034,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2866, - 2865, - 2864 + 2864, + 2863, + 2862 ] } ], @@ -4049,7 +4049,7 @@ ] }, { - "id": 2859, + "id": 2857, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -4059,7 +4059,7 @@ }, "children": [ { - "id": 2861, + "id": 2859, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4077,7 +4077,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 2860, + "id": 2858, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4095,7 +4095,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 2862, + "id": 2860, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -4118,9 +4118,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2861, - 2860, - 2862 + 2859, + 2858, + 2860 ] } ], @@ -6925,7 +6925,7 @@ ] }, { - "id": 2817, + "id": 2815, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -6941,7 +6941,7 @@ }, "children": [ { - "id": 2818, + "id": 2816, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -6959,7 +6959,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2819, + "id": 2817, "name": "ModularWithStylingChanges", "kind": 16, "kindString": "Enumeration member", @@ -6982,8 +6982,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2818, - 2819 + 2816, + 2817 ] } ], @@ -6996,14 +6996,14 @@ ] }, { - "id": 2811, + "id": 2809, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2813, + "id": 2811, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -7018,7 +7018,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2814, + "id": 2812, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -7033,7 +7033,7 @@ "defaultValue": "\"none\"" }, { - "id": 2812, + "id": 2810, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -7053,9 +7053,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2813, - 2814, - 2812 + 2811, + 2812, + 2810 ] } ], @@ -9443,7 +9443,7 @@ ] }, { - "id": 2820, + "id": 2818, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -9459,7 +9459,7 @@ }, "children": [ { - "id": 2821, + "id": 2819, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -9477,7 +9477,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2822, + "id": 2820, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -9500,8 +9500,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2821, - 2822 + 2819, + 2820 ] } ], @@ -9514,7 +9514,7 @@ ] }, { - "id": 2853, + "id": 2851, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -9530,7 +9530,7 @@ }, "children": [ { - "id": 2856, + "id": 2854, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -9548,7 +9548,7 @@ "defaultValue": "\"AUTHOR\"" }, { - "id": 2857, + "id": 2855, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -9566,7 +9566,7 @@ "defaultValue": "\"DATE_SORT\"" }, { - "id": 2854, + "id": 2852, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -9584,7 +9584,7 @@ "defaultValue": "\"FAVOURITE\"" }, { - "id": 2858, + "id": 2856, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -9602,7 +9602,7 @@ "defaultValue": "\"SHARE\"" }, { - "id": 2855, + "id": 2853, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -9625,11 +9625,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2856, - 2857, 2854, - 2858, - 2855 + 2855, + 2852, + 2856, + 2853 ] } ], @@ -9642,7 +9642,7 @@ ] }, { - "id": 2788, + "id": 2786, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -9652,7 +9652,7 @@ }, "children": [ { - "id": 2793, + "id": 2791, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -9680,7 +9680,7 @@ "defaultValue": "\"DEBUG\"" }, { - "id": 2790, + "id": 2788, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -9708,7 +9708,7 @@ "defaultValue": "\"ERROR\"" }, { - "id": 2792, + "id": 2790, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -9736,7 +9736,7 @@ "defaultValue": "\"INFO\"" }, { - "id": 2789, + "id": 2787, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -9764,7 +9764,7 @@ "defaultValue": "\"SILENT\"" }, { - "id": 2794, + "id": 2792, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -9792,7 +9792,7 @@ "defaultValue": "\"TRACE\"" }, { - "id": 2791, + "id": 2789, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -9825,12 +9825,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2793, + 2791, + 2788, 2790, + 2787, 2792, - 2789, - 2794, - 2791 + 2789 ] } ], @@ -10091,7 +10091,7 @@ ] }, { - "id": 2815, + "id": 2813, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -10107,7 +10107,7 @@ }, "children": [ { - "id": 2816, + "id": 2814, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -10130,7 +10130,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2816 + 2814 ] } ], @@ -10455,14 +10455,14 @@ ] }, { - "id": 2846, + "id": 2844, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2851, + "id": 2849, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -10477,7 +10477,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2850, + "id": 2848, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -10492,7 +10492,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2849, + "id": 2847, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -10507,7 +10507,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2852, + "id": 2850, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -10522,7 +10522,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2847, + "id": 2845, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -10537,7 +10537,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2848, + "id": 2846, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -10557,12 +10557,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2851, - 2850, 2849, - 2852, + 2848, 2847, - 2848 + 2850, + 2845, + 2846 ] } ], @@ -10682,7 +10682,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2823, + "id": 2821, "name": "VizPoint" } } @@ -13026,7 +13026,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2846, + "id": 2844, "name": "UIPassthroughEvent" } } @@ -14824,7 +14824,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2846, + "id": 2844, "name": "UIPassthroughEvent" } } @@ -16137,7 +16137,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2846, + "id": 2844, "name": "UIPassthroughEvent" } } @@ -17382,7 +17382,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2846, + "id": 2844, "name": "UIPassthroughEvent" } } @@ -18610,7 +18610,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2846, + "id": 2844, "name": "UIPassthroughEvent" } } @@ -19866,7 +19866,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2846, + "id": 2844, "name": "UIPassthroughEvent" } } @@ -21597,7 +21597,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2846, + "id": 2844, "name": "UIPassthroughEvent" } } @@ -22084,7 +22084,7 @@ ], "type": { "type": "reference", - "id": 2859, + "id": 2857, "name": "DataPanelCustomColumnGroupsAccordionState" } }, @@ -22952,7 +22952,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2853, + "id": 2851, "name": "ListPageColumns" } }, @@ -23337,7 +23337,7 @@ ], "type": { "type": "reference", - "id": 2811, + "id": 2809, "name": "HomePageSearchBarMode" } }, @@ -24117,7 +24117,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2785, + "id": 2783, "name": "RuntimeParameter" } }, @@ -27125,7 +27125,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2785, + "id": 2783, "name": "RuntimeParameter" } }, @@ -27367,7 +27367,7 @@ ] }, { - "id": 2826, + "id": 2824, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -27382,7 +27382,7 @@ }, "children": [ { - "id": 2827, + "id": 2825, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -27399,14 +27399,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2828, + "id": 2826, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2829, + "id": 2827, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -27420,12 +27420,12 @@ ], "type": { "type": "reference", - "id": 2823, + "id": 2821, "name": "VizPoint" } }, { - "id": 2830, + "id": 2828, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -27441,7 +27441,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2823, + "id": 2821, "name": "VizPoint" } } @@ -27452,8 +27452,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2829, - 2830 + 2827, + 2828 ] } ] @@ -27461,7 +27461,7 @@ } }, { - "id": 2831, + "id": 2829, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -27476,14 +27476,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2832, + "id": 2830, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2840, + "id": 2838, "name": "columns", "kind": 1024, "kindString": "Property", @@ -27504,7 +27504,7 @@ } }, { - "id": 2841, + "id": 2839, "name": "data", "kind": 1024, "kindString": "Property", @@ -27525,7 +27525,7 @@ } }, { - "id": 2834, + "id": 2832, "name": "id", "kind": 1024, "kindString": "Property", @@ -27543,7 +27543,7 @@ } }, { - "id": 2833, + "id": 2831, "name": "name", "kind": 1024, "kindString": "Property", @@ -27561,7 +27561,7 @@ } }, { - "id": 2835, + "id": 2833, "name": "sources", "kind": 1024, "kindString": "Property", @@ -27576,14 +27576,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2836, + "id": 2834, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2837, + "id": 2835, "name": "header", "kind": 1024, "kindString": "Property", @@ -27598,14 +27598,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2838, + "id": 2836, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2839, + "id": 2837, "name": "guid", "kind": 1024, "kindString": "Property", @@ -27628,7 +27628,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2839 + 2837 ] } ] @@ -27641,7 +27641,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2837 + 2835 ] } ] @@ -27654,23 +27654,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2840, - 2841, - 2834, - 2833, - 2835 + 2838, + 2839, + 2832, + 2831, + 2833 ] } ], "indexSignature": { - "id": 2842, + "id": 2840, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2843, + "id": 2841, "name": "key", "kind": 32768, "flags": {}, @@ -27689,7 +27689,7 @@ } }, { - "id": 2844, + "id": 2842, "name": "session", "kind": 1024, "kindString": "Property", @@ -27708,7 +27708,7 @@ } }, { - "id": 2845, + "id": 2843, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -27733,10 +27733,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2827, - 2831, - 2844, - 2845 + 2825, + 2829, + 2842, + 2843 ] } ], @@ -28380,7 +28380,7 @@ } }, { - "id": 2784, + "id": 2782, "name": "--ts-var-cca-modal-summary-header-background", "kind": 1024, "kindString": "Property", @@ -28393,7 +28393,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 870, + "line": 868, "character": 4 } ], @@ -28403,7 +28403,7 @@ } }, { - "id": 2779, + "id": 2777, "name": "--ts-var-change-analysis-insights-background", "kind": 1024, "kindString": "Property", @@ -28416,7 +28416,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 845, + "line": 843, "character": 4 } ], @@ -28426,7 +28426,7 @@ } }, { - "id": 2774, + "id": 2772, "name": "--ts-var-chart-heatmap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28439,7 +28439,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 820, + "line": 818, "character": 4 } ], @@ -28449,7 +28449,7 @@ } }, { - "id": 2773, + "id": 2771, "name": "--ts-var-chart-heatmap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28462,7 +28462,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 815, + "line": 813, "character": 4 } ], @@ -28472,7 +28472,7 @@ } }, { - "id": 2776, + "id": 2774, "name": "--ts-var-chart-treemap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28485,7 +28485,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 830, + "line": 828, "character": 4 } ], @@ -28495,7 +28495,7 @@ } }, { - "id": 2775, + "id": 2773, "name": "--ts-var-chart-treemap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28508,7 +28508,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 825, + "line": 823, "character": 4 } ], @@ -29093,7 +29093,7 @@ } }, { - "id": 2772, + "id": 2770, "name": "--ts-var-kpi-analyze-text-color", "kind": 1024, "kindString": "Property", @@ -29106,7 +29106,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 810, + "line": 808, "character": 4 } ], @@ -29116,7 +29116,7 @@ } }, { - "id": 2771, + "id": 2769, "name": "--ts-var-kpi-comparison-color", "kind": 1024, "kindString": "Property", @@ -29129,7 +29129,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 805, + "line": 803, "character": 4 } ], @@ -29139,7 +29139,7 @@ } }, { - "id": 2770, + "id": 2768, "name": "--ts-var-kpi-hero-color", "kind": 1024, "kindString": "Property", @@ -29152,7 +29152,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 800, + "line": 798, "character": 4 } ], @@ -29162,7 +29162,7 @@ } }, { - "id": 2778, + "id": 2776, "name": "--ts-var-kpi-negative-change-color", "kind": 1024, "kindString": "Property", @@ -29175,7 +29175,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 840, + "line": 838, "character": 4 } ], @@ -29185,7 +29185,7 @@ } }, { - "id": 2777, + "id": 2775, "name": "--ts-var-kpi-positive-change-color", "kind": 1024, "kindString": "Property", @@ -29198,7 +29198,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 835, + "line": 833, "character": 4 } ], @@ -29277,7 +29277,7 @@ } }, { - "id": 2741, + "id": 2740, "name": "--ts-var-liveboard-chip--active-background", "kind": 1024, "kindString": "Property", @@ -29285,35 +29285,13 @@ "isOptional": true }, "comment": { - "shortText": "Background color of the chips in the Liveboard on active." + "shortText": "Background color of the filter chips in the Liveboard on active.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 655, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2742, - "name": "--ts-var-liveboard-chip--active-color", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Font color of the chips in the Liveboard on active." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 660, + "line": 658, "character": 4 } ], @@ -29331,35 +29309,13 @@ "isOptional": true }, "comment": { - "shortText": "Background color of the chips in the Liveboard on hover." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 645, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2740, - "name": "--ts-var-liveboard-chip--hover-color", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Font color of the chips in the Liveboard on hover." + "shortText": "Background color of the filter chips in the Liveboard on hover.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 650, + "line": 651, "character": 4 } ], @@ -29377,12 +29333,13 @@ "isOptional": true }, "comment": { - "shortText": "Background color of the chips in the Liveboard." + "shortText": "Background color of the filter chips in the Liveboard.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 635, + "line": 637, "character": 4 } ], @@ -29400,12 +29357,13 @@ "isOptional": true }, "comment": { - "shortText": "Font color of the chips in the Liveboard." + "shortText": "Font color of the filter chips in the Liveboard.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 640, + "line": 644, "character": 4 } ], @@ -29415,7 +29373,7 @@ } }, { - "id": 2747, + "id": 2745, "name": "--ts-var-liveboard-cross-filter-layout-background", "kind": 1024, "kindString": "Property", @@ -29428,7 +29386,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 685, + "line": 683, "character": 4 } ], @@ -29438,7 +29396,7 @@ } }, { - "id": 2745, + "id": 2743, "name": "--ts-var-liveboard-dual-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -29451,7 +29409,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 675, + "line": 673, "character": 4 } ], @@ -29461,7 +29419,7 @@ } }, { - "id": 2744, + "id": 2742, "name": "--ts-var-liveboard-edit-bar-background", "kind": 1024, "kindString": "Property", @@ -29474,7 +29432,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 670, + "line": 668, "character": 4 } ], @@ -29852,7 +29810,7 @@ } }, { - "id": 2763, + "id": 2761, "name": "--ts-var-liveboard-header-action-button-active-color", "kind": 1024, "kindString": "Property", @@ -29865,7 +29823,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 765, + "line": 763, "character": 4 } ], @@ -29875,7 +29833,7 @@ } }, { - "id": 2760, + "id": 2758, "name": "--ts-var-liveboard-header-action-button-background", "kind": 1024, "kindString": "Property", @@ -29888,7 +29846,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 750, + "line": 748, "character": 4 } ], @@ -29898,7 +29856,7 @@ } }, { - "id": 2761, + "id": 2759, "name": "--ts-var-liveboard-header-action-button-font-color", "kind": 1024, "kindString": "Property", @@ -29911,7 +29869,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 755, + "line": 753, "character": 4 } ], @@ -29921,7 +29879,7 @@ } }, { - "id": 2762, + "id": 2760, "name": "--ts-var-liveboard-header-action-button-hover-color", "kind": 1024, "kindString": "Property", @@ -29934,7 +29892,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 760, + "line": 758, "character": 4 } ], @@ -29967,7 +29925,7 @@ } }, { - "id": 2769, + "id": 2767, "name": "--ts-var-liveboard-header-badge-active-color", "kind": 1024, "kindString": "Property", @@ -29980,7 +29938,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 795, + "line": 793, "character": 4 } ], @@ -29990,7 +29948,7 @@ } }, { - "id": 2764, + "id": 2762, "name": "--ts-var-liveboard-header-badge-background", "kind": 1024, "kindString": "Property", @@ -30003,7 +29961,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 770, + "line": 768, "character": 4 } ], @@ -30013,7 +29971,7 @@ } }, { - "id": 2765, + "id": 2763, "name": "--ts-var-liveboard-header-badge-font-color", "kind": 1024, "kindString": "Property", @@ -30026,7 +29984,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 775, + "line": 773, "character": 4 } ], @@ -30036,7 +29994,7 @@ } }, { - "id": 2768, + "id": 2766, "name": "--ts-var-liveboard-header-badge-hover-color", "kind": 1024, "kindString": "Property", @@ -30049,7 +30007,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 790, + "line": 788, "character": 4 } ], @@ -30059,7 +30017,7 @@ } }, { - "id": 2766, + "id": 2764, "name": "--ts-var-liveboard-header-badge-modified-background", "kind": 1024, "kindString": "Property", @@ -30072,7 +30030,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 780, + "line": 778, "character": 4 } ], @@ -30082,7 +30040,7 @@ } }, { - "id": 2767, + "id": 2765, "name": "--ts-var-liveboard-header-badge-modified-font-color", "kind": 1024, "kindString": "Property", @@ -30095,7 +30053,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 785, + "line": 783, "character": 4 } ], @@ -30266,7 +30224,7 @@ } }, { - "id": 2746, + "id": 2744, "name": "--ts-var-liveboard-single-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -30279,7 +30237,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 680, + "line": 678, "character": 4 } ], @@ -30289,7 +30247,7 @@ } }, { - "id": 2748, + "id": 2746, "name": "--ts-var-liveboard-tab-active-border-color", "kind": 1024, "kindString": "Property", @@ -30302,7 +30260,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 690, + "line": 688, "character": 4 } ], @@ -30312,7 +30270,7 @@ } }, { - "id": 2749, + "id": 2747, "name": "--ts-var-liveboard-tab-hover-color", "kind": 1024, "kindString": "Property", @@ -30325,7 +30283,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 695, + "line": 693, "character": 4 } ], @@ -30404,7 +30362,7 @@ } }, { - "id": 2752, + "id": 2750, "name": "--ts-var-liveboard-tile-description-font-weight", "kind": 1024, "kindString": "Property", @@ -30417,7 +30375,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 710, + "line": 708, "character": 4 } ], @@ -30427,7 +30385,7 @@ } }, { - "id": 2753, + "id": 2751, "name": "--ts-var-liveboard-tile-description-opacity", "kind": 1024, "kindString": "Property", @@ -30440,7 +30398,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 715, + "line": 713, "character": 4 } ], @@ -30496,7 +30454,7 @@ } }, { - "id": 2750, + "id": 2748, "name": "--ts-var-liveboard-tile-title-fontsize", "kind": 1024, "kindString": "Property", @@ -30509,7 +30467,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 700, + "line": 698, "character": 4 } ], @@ -30519,7 +30477,7 @@ } }, { - "id": 2751, + "id": 2749, "name": "--ts-var-liveboard-tile-title-fontweight", "kind": 1024, "kindString": "Property", @@ -30532,7 +30490,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 705, + "line": 703, "character": 4 } ], @@ -30726,7 +30684,7 @@ } }, { - "id": 2758, + "id": 2756, "name": "--ts-var-parameter-chip-active-background", "kind": 1024, "kindString": "Property", @@ -30739,7 +30697,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 740, + "line": 738, "character": 4 } ], @@ -30749,7 +30707,7 @@ } }, { - "id": 2759, + "id": 2757, "name": "--ts-var-parameter-chip-active-text-color", "kind": 1024, "kindString": "Property", @@ -30762,7 +30720,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 745, + "line": 743, "character": 4 } ], @@ -30772,7 +30730,7 @@ } }, { - "id": 2754, + "id": 2752, "name": "--ts-var-parameter-chip-background", "kind": 1024, "kindString": "Property", @@ -30785,7 +30743,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 720, + "line": 718, "character": 4 } ], @@ -30795,7 +30753,7 @@ } }, { - "id": 2756, + "id": 2754, "name": "--ts-var-parameter-chip-hover-background", "kind": 1024, "kindString": "Property", @@ -30808,7 +30766,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 730, + "line": 728, "character": 4 } ], @@ -30818,7 +30776,7 @@ } }, { - "id": 2757, + "id": 2755, "name": "--ts-var-parameter-chip-hover-text-color", "kind": 1024, "kindString": "Property", @@ -30831,7 +30789,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 735, + "line": 733, "character": 4 } ], @@ -30841,7 +30799,7 @@ } }, { - "id": 2755, + "id": 2753, "name": "--ts-var-parameter-chip-text-color", "kind": 1024, "kindString": "Property", @@ -30854,7 +30812,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 725, + "line": 723, "character": 4 } ], @@ -31278,7 +31236,7 @@ } }, { - "id": 2743, + "id": 2741, "name": "--ts-var-side-panel-width", "kind": 1024, "kindString": "Property", @@ -31291,7 +31249,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 665, + "line": 663, "character": 4 } ], @@ -31301,7 +31259,7 @@ } }, { - "id": 2783, + "id": 2781, "name": "--ts-var-spotiq-analyze-crosscorrelation-card-background", "kind": 1024, "kindString": "Property", @@ -31314,7 +31272,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 865, + "line": 863, "character": 4 } ], @@ -31324,7 +31282,7 @@ } }, { - "id": 2780, + "id": 2778, "name": "--ts-var-spotiq-analyze-forecasting-card-background", "kind": 1024, "kindString": "Property", @@ -31337,7 +31295,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 850, + "line": 848, "character": 4 } ], @@ -31347,7 +31305,7 @@ } }, { - "id": 2781, + "id": 2779, "name": "--ts-var-spotiq-analyze-outlier-card-background", "kind": 1024, "kindString": "Property", @@ -31360,7 +31318,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 855, + "line": 853, "character": 4 } ], @@ -31370,7 +31328,7 @@ } }, { - "id": 2782, + "id": 2780, "name": "--ts-var-spotiq-analyze-trend-card-background", "kind": 1024, "kindString": "Property", @@ -31383,7 +31341,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 860, + "line": 858, "character": 4 } ], @@ -31724,12 +31682,12 @@ 2653, 2652, 2640, - 2784, - 2779, + 2782, + 2777, + 2772, + 2771, 2774, 2773, - 2776, - 2775, 2702, 2705, 2700, @@ -31755,23 +31713,21 @@ 2697, 2696, 2695, - 2772, - 2771, 2770, - 2778, - 2777, + 2769, + 2768, + 2776, + 2775, 2693, 2692, 2728, - 2741, - 2742, - 2739, 2740, + 2739, 2737, 2738, - 2747, 2745, - 2744, + 2743, + 2742, 2729, 2730, 2734, @@ -31788,17 +31744,17 @@ 2720, 2721, 2719, - 2763, - 2760, 2761, - 2762, + 2758, + 2759, + 2760, 2710, - 2769, + 2767, + 2762, + 2763, + 2766, 2764, 2765, - 2768, - 2766, - 2767, 2712, 2711, 2707, @@ -31806,18 +31762,18 @@ 2709, 2732, 2731, + 2744, 2746, - 2748, - 2749, + 2747, 2714, 2713, 2715, - 2752, - 2753, - 2716, - 2717, 2750, 2751, + 2716, + 2717, + 2748, + 2749, 2685, 2682, 2681, @@ -31826,12 +31782,12 @@ 2684, 2619, 2620, - 2758, - 2759, - 2754, 2756, 2757, + 2752, + 2754, 2755, + 2753, 2614, 2615, 2616, @@ -31850,11 +31806,11 @@ 2623, 2629, 2694, - 2743, - 2783, - 2780, + 2741, 2781, - 2782, + 2778, + 2779, + 2780, 2634, 2635, 2664, @@ -32916,7 +32872,7 @@ ], "type": { "type": "reference", - "id": 2788, + "id": 2786, "name": "LogLevel" } }, @@ -35428,7 +35384,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2785, + "id": 2783, "name": "RuntimeParameter" } }, @@ -36066,7 +36022,7 @@ ] }, { - "id": 2785, + "id": 2783, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -36076,7 +36032,7 @@ }, "children": [ { - "id": 2786, + "id": 2784, "name": "name", "kind": 1024, "kindString": "Property", @@ -36097,7 +36053,7 @@ } }, { - "id": 2787, + "id": 2785, "name": "value", "kind": 1024, "kindString": "Property", @@ -36136,8 +36092,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2786, - 2787 + 2784, + 2785 ] } ], @@ -37359,7 +37315,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2785, + "id": 2783, "name": "RuntimeParameter" } }, @@ -38783,7 +38739,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2785, + "id": 2783, "name": "RuntimeParameter" } }, @@ -40521,7 +40477,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2785, + "id": 2783, "name": "RuntimeParameter" } }, @@ -42728,7 +42684,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2785, + "id": 2783, "name": "RuntimeParameter" } } @@ -43026,14 +42982,14 @@ ] }, { - "id": 2823, + "id": 2821, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2824, + "id": 2822, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -43054,7 +43010,7 @@ } }, { - "id": 2825, + "id": 2823, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -43080,8 +43036,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2824, - 2825 + 2822, + 2823 ] } ], @@ -44590,7 +44546,7 @@ ] }, { - "id": 2872, + "id": 2870, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -44606,7 +44562,7 @@ ], "signatures": [ { - "id": 2873, + "id": 2871, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -44800,7 +44756,7 @@ ] }, { - "id": 2795, + "id": 2793, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -44814,7 +44770,7 @@ ], "signatures": [ { - "id": 2796, + "id": 2794, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -44824,7 +44780,7 @@ }, "parameters": [ { - "id": 2797, + "id": 2795, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -44836,7 +44792,7 @@ } }, { - "id": 2798, + "id": 2796, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -44847,7 +44803,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2799, + "id": 2797, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -44876,24 +44832,24 @@ 1705, 1860, 2196, - 2867, - 2863, - 2859, + 2865, + 2861, + 2857, 2055, 1892, 2556, - 2817, - 2811, + 2815, + 2809, 2567, 1985, - 2820, - 2853, - 2788, + 2818, + 2851, + 2786, 1851, 2545, - 2815, + 2813, 1876, - 2846 + 2844 ] }, { @@ -44920,7 +44876,7 @@ 1715, 1236, 1497, - 2826, + 2824, 2613, 2601, 2591, @@ -44928,7 +44884,7 @@ 2550, 2346, 1872, - 2785, + 2783, 2418, 2304, 2250, @@ -44936,7 +44892,7 @@ 1207, 1458, 1848, - 2823, + 2821, 2604, 21, 25 @@ -44965,9 +44921,9 @@ 1, 4, 7, - 2872, + 2870, 37, - 2795 + 2793 ] } ], From dd3b0b1589cd6d4667369d4b5de74071100b2747 Mon Sep 17 00:00:00 2001 From: Justin Mathew <42416647+sastaachar@users.noreply.github.com> Date: Tue, 30 Sep 2025 11:21:28 +0530 Subject: [PATCH 09/31] SCAL-273458 : Save doc udpated (#316) --- src/types.ts | 57 +++++++++++++++++++++++++++++++++++----------------- 1 file changed, 39 insertions(+), 18 deletions(-) diff --git a/src/types.ts b/src/types.ts index 6cda3a3cf..fe8206037 100644 --- a/src/types.ts +++ b/src/types.ts @@ -3670,24 +3670,45 @@ export enum HostEvent { * @version SDK: 1.19.0 | ThoughtSpot: 9.0.0.cl, 9.0.1.sw */ Share = 'share', - /** - * Trigger the **Save** action on a Liveboard or Answer. - * Saves the changes. - * @param - `vizId` refers to the Answer ID in Spotter embed and is required in Spotter embed. - * @example - * ```js - * liveboardEmbed.trigger(HostEvent.Save) - * ``` - * ```js - * searchEmbed.trigger(HostEvent.Save) - * ``` - * ```js - * spotterEmbed.trigger(HostEvent.Save, { - * vizId:"730496d6-6903-4601-937e-2c691821af3c" - * }) - * ``` - * @version SDK: 1.19.0 | ThoughtSpot: 9.0.0.cl, 9.0.1.sw - */ + /** + * Trigger the **Save** action on a Liveboard, Answer, or Spotter. + * Saves the changes. + * + * @param - `vizId` refers to the Spotter Visualization Id used in Spotter embed. + * It is required and can be retrieved from the data embed event. + * + * @example + * ```js + * // Save changes in a Liveboard + * liveboardEmbed.trigger(HostEvent.Save) + * ``` + * + * ```js + * // Save the current Answer in Search embed + * searchEmbed.trigger(HostEvent.Save) + * ``` + * + * ```js + * // Save an Answer in Spotter (requires vizId) + * spotterEmbed.trigger(HostEvent.Save, { + * vizId: "730496d6-6903-4601-937e-2c691821af3c" + * }) + * ``` + * + * ```js + * // How to get the vizId in Spotter? + * + * // You can use the Data event dispatched on each answer creation to get the vizId. + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; + * }); + * + * spotterEmbed.trigger(HostEvent.Save, { vizId: latestSpotterVizId }); + * ``` + * + * @version SDK: 1.19.0 | ThoughtSpot: 9.0.0.cl, 9.0.1.sw + */ Save = 'save', /** * Trigger the **Sync to Sheets** action on an embedded visualization or Answer From 8abb9dae3a57824ff38e0c9c077dd52795dc30e4 Mon Sep 17 00:00:00 2001 From: Justin Mathew <42416647+sastaachar@users.noreply.github.com> Date: Tue, 30 Sep 2025 23:01:19 +0530 Subject: [PATCH 10/31] SCAL-265064 : dynamic pre render (#271) --- src/embed/bodyless-conversation.ts | 11 ++- src/embed/conversation.ts | 19 ++++- src/embed/liveboard.spec.ts | 14 ++++ src/embed/liveboard.ts | 8 ++- src/embed/sage.ts | 19 +++-- src/embed/search-bar.tsx | 21 ++++-- src/embed/search.ts | 25 +++++-- src/embed/ts-embed.spec.ts | 2 +- src/embed/ts-embed.ts | 40 +++++++---- src/types.ts | 107 ++++++++++++++++------------- 10 files changed, 178 insertions(+), 88 deletions(-) diff --git a/src/embed/bodyless-conversation.ts b/src/embed/bodyless-conversation.ts index 8e081c7ba..bf560a9e7 100644 --- a/src/embed/bodyless-conversation.ts +++ b/src/embed/bodyless-conversation.ts @@ -39,6 +39,13 @@ export class ConversationMessage extends TsEmbed { super(container, viewConfig); } + protected getEmbedParamsObject() { + const queryParams = this.getBaseQueryParams(); + queryParams[Param.HideActions] = [...(queryParams[Param.HideActions] ?? [])]; + queryParams[Param.isSpotterAgentEmbed] = true; + return queryParams; + } + public getIframeSrc() { const { sessionId, @@ -49,10 +56,8 @@ export class ConversationMessage extends TsEmbed { messageId, } = this.viewConfig; const path = 'conv-assist-answer'; - const queryParams = this.getBaseQueryParams(); + const queryParams = this.getEmbedParamsObject(); - queryParams[Param.HideActions] = [...(queryParams[Param.HideActions] ?? [])]; - queryParams[Param.isSpotterAgentEmbed] = true; let query = ''; const queryParamsString = getQueryParamString(queryParams, true); if (queryParamsString) { diff --git a/src/embed/conversation.ts b/src/embed/conversation.ts index f9a73b807..139ba2052 100644 --- a/src/embed/conversation.ts +++ b/src/embed/conversation.ts @@ -196,7 +196,7 @@ export class SpotterEmbed extends TsEmbed { super(container, viewConfig); } - public getIframeSrc(): string { + protected getEmbedParamsObject() { const { worksheetId, searchOptions, @@ -210,7 +210,7 @@ export class SpotterEmbed extends TsEmbed { runtimeParameters, excludeRuntimeParametersfromURL, } = this.viewConfig; - const path = 'insights/conv-assist'; + if (!worksheetId) { this.handleError(ERROR_MESSAGE.SPOTTER_EMBED_WORKSHEED_ID_NOT_FOUND); } @@ -235,6 +235,21 @@ export class SpotterEmbed extends TsEmbed { queryParams[Param.HideSampleQuestions] = !!hideSampleQuestions; } + return queryParams; + } + + public getIframeSrc(): string { + const { + worksheetId, + searchOptions, + runtimeFilters, + excludeRuntimeFiltersfromURL, + runtimeParameters, + excludeRuntimeParametersfromURL, + } = this.viewConfig; + const path = 'insights/conv-assist'; + const queryParams = this.getEmbedParamsObject(); + let query = ''; const queryParamsString = getQueryParamString(queryParams, true); if (queryParamsString) { diff --git a/src/embed/liveboard.spec.ts b/src/embed/liveboard.spec.ts index 3885a5635..65ffa1fe1 100644 --- a/src/embed/liveboard.spec.ts +++ b/src/embed/liveboard.spec.ts @@ -657,6 +657,7 @@ describe('Liveboard/viz embed tests', () => { test('navigateToLiveboard should trigger the navigate event with the correct path', async (done) => { mockMessageChannel(); // mock getSessionInfo + mockGetSessionInfo(); const liveboardEmbed = new LiveboardEmbed(getRootEl(), { ...defaultViewConfig, @@ -684,6 +685,13 @@ describe('Liveboard/viz embed tests', () => { mockMessageChannel(); // mock getSessionInfo + jest.spyOn(SessionInfoService, 'getSessionInfo').mockResolvedValue({ + releaseVersion: '1.0.0', + userGUID: '1234567890', + currentOrgId: 1, + privileges: [], + mixpanelToken: '1234567890', + }); mockGetSessionInfo(); const liveboardEmbed = new LiveboardEmbed(getRootEl(), { @@ -779,6 +787,12 @@ describe('Liveboard/viz embed tests', () => { }); describe('PreRender flow for liveboard embed', () => { + beforeAll(() => { + init({ + thoughtSpotHost: "http://tshost", + authType: AuthType.None, + }); + }); test('it should preRender generic with liveboard id is not passed', async (done) => { const consoleSpy = jest.spyOn(console, 'error'); const libEmbed = new LiveboardEmbed(getRootEl(), { diff --git a/src/embed/liveboard.ts b/src/embed/liveboard.ts index 703ccdda2..5869e60b5 100644 --- a/src/embed/liveboard.ts +++ b/src/embed/liveboard.ts @@ -440,6 +440,12 @@ export class LiveboardEmbed extends V1Embed { * embedded Liveboard or visualization. */ protected getEmbedParams() { + const params = this.getEmbedParamsObject(); + const queryParams = getQueryParamString(params, true); + return queryParams; + } + + protected getEmbedParamsObject() { let params: any = {}; params = this.getBaseQueryParams(params); const { @@ -557,7 +563,7 @@ export class LiveboardEmbed extends V1Embed { params[Param.LiveboardXLSXCSVDownload] = !!liveboardXLSXCSVDownload; const queryParams = getQueryParamString(params, true); - return queryParams; + return params; } private getIframeSuffixSrc(liveboardId: string, vizId: string, activeTabId: string) { diff --git a/src/embed/sage.ts b/src/embed/sage.ts index 492b4ae06..8d4a582ca 100644 --- a/src/embed/sage.ts +++ b/src/embed/sage.ts @@ -153,12 +153,7 @@ export class SageEmbed extends V1Embed { super(domSelector, viewConfig); } - /** - * Constructs a map of parameters to be passed on to the - * embedded Eureka or Sage search page. - * @returns {string} query string - */ - protected getEmbedParams(): string { + protected getEmbedParamsObject() { const { disableWorksheetChange, hideWorksheetSelector, @@ -184,6 +179,16 @@ export class SageEmbed extends V1Embed { params[Param.IsProductTour] = !!isProductTour; params[Param.HideSageAnswerHeader] = !!hideSageAnswerHeader; + return params; + } + + /** + * Constructs a map of parameters to be passed on to the + * embedded Eureka or Sage search page. + * @returns {string} query string + */ + protected getEmbedParams(): string { + const params = this.getEmbedParamsObject(); return getQueryParamString(params, true); } @@ -194,7 +199,7 @@ export class SageEmbed extends V1Embed { */ public getIFrameSrc(): string { const path = 'eureka'; - const postHashObj = {}; + const postHashObj: Record = {}; const tsPostHashParams = this.getThoughtSpotPostUrlParams(); const { dataSource, searchOptions, diff --git a/src/embed/search-bar.tsx b/src/embed/search-bar.tsx index df45faea2..bc5f02627 100644 --- a/src/embed/search-bar.tsx +++ b/src/embed/search-bar.tsx @@ -118,12 +118,7 @@ export class SearchBarEmbed extends TsEmbed { this.viewConfig = viewConfig; } - /** - * Construct the URL of the embedded ThoughtSpot search to be - * loaded in the iframe - * @param dataSources A list of data source GUIDs - */ - private getIFrameSrc() { + protected getEmbedParamsObject() { const { searchOptions, dataSource, @@ -131,7 +126,6 @@ export class SearchBarEmbed extends TsEmbed { useLastSelectedSources = false, excludeSearchTokenStringFromURL, } = this.viewConfig; - const path = 'search-bar-embed'; const queryParams = this.getBaseQueryParams(); queryParams[Param.HideActions] = [...(queryParams[Param.HideActions] ?? [])]; @@ -159,6 +153,19 @@ export class SearchBarEmbed extends TsEmbed { queryParams[Param.UseLastSelectedDataSource] = false; } queryParams[Param.searchEmbed] = true; + + return queryParams; + } + + /** + * Construct the URL of the embedded ThoughtSpot search to be + * loaded in the iframe + * @param dataSources A list of data source GUIDs + */ + private getIFrameSrc() { + const queryParams = this.getEmbedParamsObject(); + const path = 'search-bar-embed'; + let query = ''; const queryParamsString = getQueryParamString(queryParams, true); if (queryParamsString) { diff --git a/src/embed/search.ts b/src/embed/search.ts index 40f9a4960..534db212f 100644 --- a/src/embed/search.ts +++ b/src/embed/search.ts @@ -331,7 +331,7 @@ export const HiddenActionItemByDefaultForSearchEmbed = [ ]; export interface SearchAppInitData extends DefaultAppInitData { - searchOptions?: SearchOptions; + searchOptions?: SearchOptions; } /** @@ -381,7 +381,7 @@ export class SearchEmbed extends TsEmbed { return { ...defaultAppInitData, ...this.getSearchInitData() }; } - protected getEmbedParams(): string { + protected getEmbedParamsObject() { const { hideResults, enableSearchAssist, @@ -398,7 +398,7 @@ export class SearchEmbed extends TsEmbed { collapseSearchBarInitially = false, enableCustomColumnGroups = false, isOnBeforeGetVizDataInterceptEnabled = false, - /* eslint-disable-next-line max-len */ + dataPanelCustomGroupsAccordionInitialState = DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL, focusSearchBarOnRender = true, excludeRuntimeParametersfromURL, @@ -443,7 +443,7 @@ export class SearchEmbed extends TsEmbed { } if (isOnBeforeGetVizDataInterceptEnabled) { - /* eslint-disable-next-line max-len */ + queryParams[Param.IsOnBeforeGetVizDataInterceptEnabled] = isOnBeforeGetVizDataInterceptEnabled; } @@ -460,7 +460,7 @@ export class SearchEmbed extends TsEmbed { } queryParams[Param.searchEmbed] = true; - /* eslint-disable-next-line max-len */ + queryParams[Param.CollapseSearchBarInitially] = collapseSearchBarInitially || collapseSearchBar; queryParams[Param.EnableCustomColumnGroups] = enableCustomColumnGroups; if (dataPanelCustomGroupsAccordionInitialState @@ -468,12 +468,23 @@ export class SearchEmbed extends TsEmbed { || dataPanelCustomGroupsAccordionInitialState === DataPanelCustomColumnGroupsAccordionState.EXPAND_FIRST ) { - /* eslint-disable-next-line max-len */ + queryParams[Param.DataPanelCustomGroupsAccordionInitialState] = dataPanelCustomGroupsAccordionInitialState; } else { - /* eslint-disable-next-line max-len */ + queryParams[Param.DataPanelCustomGroupsAccordionInitialState] = DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL; } + return queryParams; + } + + protected getEmbedParams() { + const { + runtimeParameters, + runtimeFilters, + excludeRuntimeParametersfromURL, + excludeRuntimeFiltersfromURL, + } = this.viewConfig; + const queryParams = this.getEmbedParamsObject(); let query = ''; const queryParamsString = getQueryParamString(queryParams, true); if (queryParamsString) { diff --git a/src/embed/ts-embed.spec.ts b/src/embed/ts-embed.spec.ts index 1c8708d1a..e3af45e6b 100644 --- a/src/embed/ts-embed.spec.ts +++ b/src/embed/ts-embed.spec.ts @@ -2488,7 +2488,7 @@ describe('Unit test case for ts embed', () => { }); afterAll((): void => { - window.location = location; + window.location = location as any; }); it('get url params for TS', () => { diff --git a/src/embed/ts-embed.ts b/src/embed/ts-embed.ts index fd00a8070..ec3b04986 100644 --- a/src/embed/ts-embed.ts +++ b/src/embed/ts-embed.ts @@ -199,11 +199,11 @@ export class TsEmbed { uploadMixpanelEvent(MIXPANEL_EVENT.VISUAL_SDK_EMBED_CREATE, { ...viewConfig, }); + const embedConfig = getEmbedConfig(); + this.embedConfig = embedConfig; + this.hostEventClient = new HostEventClient(this.iFrame); - this.isReadyForRenderPromise = getInitPromise().then(async () => { - const embedConfig = getEmbedConfig(); - this.embedConfig = embedConfig; if (!embedConfig.authTriggerContainer && !embedConfig.useEventForSAMLPopup) { this.embedConfig.authTriggerContainer = domSelector; } @@ -494,10 +494,10 @@ export class TsEmbed { this.on(EmbedEvent.APP_INIT, this.appInitCb, { start: false }, true); this.on(EmbedEvent.AuthExpire, this.updateAuthToken, { start: false }, true); this.on(EmbedEvent.IdleSessionTimeout, this.idleSessionTimeout, { start: false }, true); - - const embedListenerReadyHandler = this.createEmbedContainerHandler(EmbedEvent.EmbedListenerReady); + + const embedListenerReadyHandler = this.createEmbedContainerHandler(EmbedEvent.EmbedListenerReady); this.on(EmbedEvent.EmbedListenerReady, embedListenerReadyHandler, { start: false }, true); - + const authInitHandler = this.createEmbedContainerHandler(EmbedEvent.AuthInit); this.on(EmbedEvent.AuthInit, authInitHandler, { start: false }, true); }; @@ -520,6 +520,12 @@ export class TsEmbed { return `${basePath}#`; } + protected getUpdateEmbedParamsObject() { + let queryParams = this.getEmbedParamsObject(); + queryParams = { ...this.viewConfig, ...queryParams }; + return queryParams; + } + /** * Common query params set for all the embed modes. * @param queryParams @@ -702,10 +708,15 @@ export class TsEmbed { } protected getEmbedParams() { - const queryParams = this.getBaseQueryParams(); + const queryParams = this.getEmbedParamsObject(); return getQueryParamString(queryParams); } + protected getEmbedParamsObject() { + const params = this.getBaseQueryParams(); + return params; + } + protected getRootIframeSrc() { const query = this.getEmbedParams(); return this.getEmbedBasePath(query); @@ -1140,12 +1151,12 @@ export class TsEmbed { } } - /** + /** * @hidden * Internal state to track if the embed container is loaded. * This is used to trigger events after the embed container is loaded. */ - public isEmbedContainerLoaded = false; + public isEmbedContainerLoaded = false; /** * @hidden @@ -1191,7 +1202,7 @@ export class TsEmbed { } else { logger.debug('pushing callback to embedContainerReadyCallbacks', callback); this.embedContainerReadyCallbacks.push(callback); - } + } } protected createEmbedContainerHandler = (source: EmbedEvent.AuthInit | EmbedEvent.EmbedListenerReady) => () => { @@ -1279,6 +1290,7 @@ export class TsEmbed { * Creates the preRender shell * @param showPreRenderByDefault - Show the preRender after render, hidden by default */ + public async preRender(showPreRenderByDefault = false, replaceExistingPreRender = false): Promise { if (!this.viewConfig.preRenderId) { logger.error(ERROR_MESSAGE.PRERENDER_ID_MISSING); @@ -1413,8 +1425,14 @@ export class TsEmbed { return this.preRender(true); } this.validatePreRenderViewConfig(this.viewConfig); + logger.debug('triggering UpdateEmbedParams', this.viewConfig); + this.executeAfterEmbedContainerLoaded(() => { + this.trigger(HostEvent.UpdateEmbedParams, this.getUpdateEmbedParamsObject()); + }); } + this.beforePrerenderVisible(); + if (this.el) { this.syncPreRenderStyle(); if (!this.viewConfig.doNotTrackPreRenderSize) { @@ -1432,8 +1450,6 @@ export class TsEmbed { } } - this.beforePrerenderVisible(); - removeStyleProperties(this.preRenderWrapper, ['z-index', 'opacity', 'pointer-events']); this.subscribeToEvents(); diff --git a/src/types.ts b/src/types.ts index fe8206037..78723da55 100644 --- a/src/types.ts +++ b/src/types.ts @@ -231,12 +231,12 @@ export type DOMSelector = string | HTMLElement; * Use {@link CustomCssVariables} or css rules. */ export interface customCssInterface { - /** - * The custom css variables, which can be set. - * The variables are available in the {@link CustomCssVariables} - * interface. For more information, see - * link:https://developers.thoughtspot.com/docs/css-variables-reference[CSS variable reference]. - */ + /** + * The custom css variables, which can be set. + * The variables are available in the {@link CustomCssVariables} + * interface. For more information, see + * link:https://developers.thoughtspot.com/docs/css-variables-reference[CSS variable reference]. + */ variables?: CustomCssVariables; /** * Can be used to define a custom font face @@ -648,7 +648,7 @@ export interface EmbedConfig { * ``` * @version SDK 1.37.0 | ThoughtSpot: 10.8.0.cl */ - customVariablesForThirdPartyTools?: Record< string, any >; + customVariablesForThirdPartyTools?: Record; disablePreauthCache?: boolean; @@ -695,7 +695,7 @@ export interface EmbedConfig { } // eslint-disable-next-line @typescript-eslint/no-empty-object-type -export interface LayoutConfig {} +export interface LayoutConfig { } /** * Embedded iframe configuration @@ -1481,21 +1481,21 @@ export interface LiveboardAppEmbedViewConfig { * ``` */ enableAskSage?: boolean; - /** - * This flag is used to show or hide checkboxes for including or excluding - * the cover and filters pages in the Liveboard PDF. - * - * Supported embed types: `AppEmbed`, `LiveboardEmbed` - * @version SDK: 1.40.0 | ThoughtSpot:10.8.0.cl - * @example - * ```js - * // Replace with embed component name. For example, AppEmbed or LiveboardEmbed - * const embed = new ('#tsEmbed', { - * ... // other embed view config - * coverAndFilterOptionInPDF: false, - * }) - * ``` - */ + /** + * This flag is used to show or hide checkboxes for including or excluding + * the cover and filters pages in the Liveboard PDF. + * + * Supported embed types: `AppEmbed`, `LiveboardEmbed` + * @version SDK: 1.40.0 | ThoughtSpot:10.8.0.cl + * @example + * ```js + * // Replace with embed component name. For example, AppEmbed or LiveboardEmbed + * const embed = new ('#tsEmbed', { + * ... // other embed view config + * coverAndFilterOptionInPDF: false, + * }) + * ``` + */ coverAndFilterOptionInPDF?: boolean; /** * This flag is used to enable or disable the XLSX/CSV download option for Liveboards. @@ -1515,7 +1515,7 @@ export interface LiveboardAppEmbedViewConfig { } -export interface AllEmbedViewConfig extends BaseViewConfig, SearchLiveboardCommonViewConfig, HomePageConfig, LiveboardAppEmbedViewConfig {} +export interface AllEmbedViewConfig extends BaseViewConfig, SearchLiveboardCommonViewConfig, HomePageConfig, LiveboardAppEmbedViewConfig { } /** * MessagePayload: Embed event payload: message type, data and status (start/end) @@ -2774,25 +2774,25 @@ export enum EmbedEvent { * ``` * @version SDK: 1.37.0 | ThoughtSpot: 10.8.0.cl */ - TableVizRendered = 'TableVizRendered', - /** - * Emitted when the liveboard is created from pin modal or Liveboard list page. - * You can use this event as a hook to trigger - * other events on liveboard creation. - * - * ```js - * liveboardEmbed.on(EmbedEvent.CreateLiveboard, (payload) => { - * console.log('payload', payload); - * }) - *``` - * @version SDK : 1.37.0 | ThoughtSpot: 10.8.0.cl - */ + TableVizRendered = 'TableVizRendered', + /** + * Emitted when the liveboard is created from pin modal or Liveboard list page. + * You can use this event as a hook to trigger + * other events on liveboard creation. + * + * ```js + * liveboardEmbed.on(EmbedEvent.CreateLiveboard, (payload) => { + * console.log('payload', payload); + * }) + *``` + * @version SDK : 1.37.0 | ThoughtSpot: 10.8.0.cl + */ CreateLiveboard = 'createLiveboard', /** * Emitted when a user creates a Model. * @version SDK : 1.37.0 | ThoughtSpot: 10.8.0.cl */ - CreateModel = 'createModel', + CreateModel = 'createModel', /** * @hidden * Emitted when a user exits present mode. @@ -4036,7 +4036,7 @@ export enum HostEvent { *``` * @version SDK: 1.36.0 | ThoughtSpot: 10.6.0.cl */ - InfoSuccess = 'InfoSuccess', + InfoSuccess = 'InfoSuccess', /** * Trigger the save action for an Answer. * To programmatically save an answer without opening the @@ -4190,6 +4190,17 @@ export enum HostEvent { * @version SDK: 1.41.0 | ThoughtSpot: 10.12.0.cl */ AskSpotter = 'AskSpotter', + + /** + * @hidden + * Triggers the update of the embed params. + * + * @example + * ```js + * liveboardEmbed.trigger(HostEvent.UpdateEmbedParams, viewConfig); + * ``` + */ + UpdateEmbedParams = 'updateEmbedParams', } /** @@ -5692,15 +5703,15 @@ export interface ColumnValue { [key: string]: any; }; value: - | string - | number - | boolean - | { - v: { - s: number; - e: number; - }; - }; + | string + | number + | boolean + | { + v: { + s: number; + e: number; + }; + }; } export interface VizPoint { From 9443ef51afb6e981b7e095adce47446e37b81e58 Mon Sep 17 00:00:00 2001 From: Aditya Mittal <114516106+adityamittal3107@users.noreply.github.com> Date: Fri, 3 Oct 2025 06:29:28 +0530 Subject: [PATCH 11/31] Major Version Bump (#321) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b182d53e5..df51eefc5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@thoughtspot/visual-embed-sdk", - "version": "1.41.2", + "version": "1.42.0", "description": "ThoughtSpot Embed SDK", "module": "lib/src/index.js", "main": "dist/tsembed.js", From f2780d25fee6340c7161b52e6a34e70e1fded146 Mon Sep 17 00:00:00 2001 From: shivam-kumar-ts Date: Mon, 6 Oct 2025 10:19:56 +0530 Subject: [PATCH 12/31] SCAL-255099 Enhance event listener management in TsEmbed (#315) --- src/embed/ts-embed.spec.ts | 111 +++++++++++++++++++++++++++++++++++++ src/embed/ts-embed.ts | 98 ++++++++++++++++++++++++-------- src/errors.ts | 1 + 3 files changed, 186 insertions(+), 24 deletions(-) diff --git a/src/embed/ts-embed.spec.ts b/src/embed/ts-embed.spec.ts index e3af45e6b..8acfdbd05 100644 --- a/src/embed/ts-embed.spec.ts +++ b/src/embed/ts-embed.spec.ts @@ -3345,4 +3345,115 @@ describe('Unit test case for ts embed', () => { expect(searchEmbed.isEmbedContainerLoaded).toBe(true); }); }); + + describe('Online event listener registration after auth failure', () => { + beforeAll(() => { + init({ + thoughtSpotHost: 'tshost', + authType: AuthType.None, + loginFailedMessage: 'Not logged in', + }); + }); + + test('should register online event listener when authentication fails', async () => { + const addEventListenerSpy = jest.spyOn(window, 'addEventListener'); + jest.spyOn(baseInstance, 'getAuthPromise').mockRejectedValueOnce( + new Error('Auth failed'), + ); + const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); + addEventListenerSpy.mockClear(); + await searchEmbed.render(); + await executeAfterWait(() => { + expect(getRootEl().innerHTML).toContain('Not logged in'); + const onlineListenerCalls = addEventListenerSpy.mock.calls.filter( + (call) => call[0] === 'online', + ); + expect(onlineListenerCalls).toHaveLength(1); + const offlineListenerCalls = addEventListenerSpy.mock.calls.filter( + (call) => call[0] === 'offline', + ); + expect(offlineListenerCalls).toHaveLength(1); + const messageListenerCalls = addEventListenerSpy.mock.calls.filter( + (call) => call[0] === 'message', + ); + expect(messageListenerCalls).toHaveLength(0); + }); + + addEventListenerSpy.mockRestore(); + }); + + test('should attempt to trigger reload when online event occurs after auth failure', async () => { + jest.spyOn(baseInstance, 'getAuthPromise').mockRejectedValueOnce( + new Error('Auth failed'), + ); + const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); + const triggerSpy = jest.spyOn(searchEmbed, 'trigger').mockResolvedValue(null); + await searchEmbed.render(); + + await executeAfterWait(() => { + expect(getRootEl().innerHTML).toContain('Not logged in'); + triggerSpy.mockClear(); + const onlineEvent = new Event('online'); + window.dispatchEvent(onlineEvent); + expect(triggerSpy).toHaveBeenCalledWith(HostEvent.Reload); + }); + + triggerSpy.mockReset(); + }); + + test('should handle online event gracefully when no iframe exists', async () => { + jest.spyOn(baseInstance, 'getAuthPromise').mockRejectedValueOnce( + new Error('Auth failed'), + ); + const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); + const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {}); + await searchEmbed.render(); + await executeAfterWait(() => { + expect(getRootEl().innerHTML).toContain('Not logged in'); + const onlineEvent = new Event('online'); + expect(() => { + window.dispatchEvent(onlineEvent); + }).not.toThrow(); + }); + + errorSpy.mockReset(); + }); + + test('should register all event listeners when authentication succeeds', async () => { + const addEventListenerSpy = jest.spyOn(window, 'addEventListener'); + jest.spyOn(baseInstance, 'getAuthPromise').mockResolvedValueOnce(true); + const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); + addEventListenerSpy.mockClear(); + await searchEmbed.render(); + await executeAfterWait(() => { + const onlineListenerCalls = addEventListenerSpy.mock.calls.filter( + (call) => call[0] === 'online', + ); + expect(onlineListenerCalls).toHaveLength(1); + const offlineListenerCalls = addEventListenerSpy.mock.calls.filter( + (call) => call[0] === 'offline', + ); + expect(offlineListenerCalls).toHaveLength(1); + const messageListenerCalls = addEventListenerSpy.mock.calls.filter( + (call) => call[0] === 'message', + ); + expect(messageListenerCalls).toHaveLength(1); + }); + + addEventListenerSpy.mockRestore(); + }); + test('should successfully trigger reload when online event occurs after auth success', async () => { + jest.spyOn(baseInstance, 'getAuthPromise').mockResolvedValueOnce(true); + const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); + const triggerSpy = jest.spyOn(searchEmbed, 'trigger').mockResolvedValue({} as any); + await searchEmbed.render(); + await executeAfterWait(() => { + triggerSpy.mockClear(); + const onlineEvent = new Event('online'); + window.dispatchEvent(onlineEvent); + expect(triggerSpy).toHaveBeenCalledWith(HostEvent.Reload); + }); + triggerSpy.mockReset(); + }); + }); }); diff --git a/src/embed/ts-embed.ts b/src/embed/ts-embed.ts index ec3b04986..2d380e0a2 100644 --- a/src/embed/ts-embed.ts +++ b/src/embed/ts-embed.ts @@ -312,13 +312,36 @@ export class TsEmbed { private subscribedListeners: Record = {}; /** - * Adds a global event listener to window for "message" events. - * ThoughtSpot detects if a particular event is targeted to this - * embed instance through an identifier contained in the payload, - * and executes the registered callbacks accordingly. + * Subscribe to network events (online/offline) that should + * work regardless of auth status */ - private subscribeToEvents() { - this.unsubscribeToEvents(); + private subscribeToNetworkEvents() { + this.unsubscribeToNetworkEvents(); + + const onlineEventListener = (e: Event) => { + this.trigger(HostEvent.Reload); + }; + window.addEventListener('online', onlineEventListener); + + const offlineEventListener = (e: Event) => { + const offlineWarning = ERROR_MESSAGE.OFFLINE_WARNING; + this.executeCallbacks(EmbedEvent.Error, { + offlineWarning, + }); + logger.warn(offlineWarning); + }; + window.addEventListener('offline', offlineEventListener); + + this.subscribedListeners.online = onlineEventListener; + this.subscribedListeners.offline = offlineEventListener; + } + + /** + * Subscribe to message events that depend on successful iframe setup + */ + private subscribeToMessageEvents() { + this.unsubscribeToMessageEvents(); + const messageEventListener = (event: MessageEvent) => { const eventType = this.getEventType(event); const eventPort = this.getEventPort(event); @@ -338,25 +361,37 @@ export class TsEmbed { }; window.addEventListener('message', messageEventListener); - const onlineEventListener = (e: Event) => { - this.trigger(HostEvent.Reload); - }; - window.addEventListener('online', onlineEventListener); + this.subscribedListeners.message = messageEventListener; + } + /** + * Adds event listeners for both network and message events. + * This maintains backward compatibility with the existing method. + * Adds a global event listener to window for "message" events. + * ThoughtSpot detects if a particular event is targeted to this + * embed instance through an identifier contained in the payload, + * and executes the registered callbacks accordingly. + */ + private subscribeToEvents() { + this.subscribeToNetworkEvents(); + this.subscribeToMessageEvents(); + } - const offlineEventListener = (e: Event) => { - const offlineWarning = 'Network not Detected. Embed is offline. Please reconnect and refresh'; - this.executeCallbacks(EmbedEvent.Error, { - offlineWarning, - }); - logger.warn(offlineWarning); - }; - window.addEventListener('offline', offlineEventListener); + private unsubscribeToNetworkEvents() { + if (this.subscribedListeners.online) { + window.removeEventListener('online', this.subscribedListeners.online); + delete this.subscribedListeners.online; + } + if (this.subscribedListeners.offline) { + window.removeEventListener('offline', this.subscribedListeners.offline); + delete this.subscribedListeners.offline; + } + } - this.subscribedListeners = { - message: messageEventListener, - online: onlineEventListener, - offline: offlineEventListener, - }; + private unsubscribeToMessageEvents() { + if (this.subscribedListeners.message) { + window.removeEventListener('message', this.subscribedListeners.message); + delete this.subscribedListeners.message; + } } private unsubscribeToEvents() { @@ -798,6 +833,9 @@ export class TsEmbed { uploadMixpanelEvent(MIXPANEL_EVENT.VISUAL_SDK_RENDER_START); + // Always subscribe to network events, regardless of auth status + this.subscribeToNetworkEvents(); + return getAuthPromise() ?.then((isLoggedIn: boolean) => { if (!isLoggedIn) { @@ -843,7 +881,9 @@ export class TsEmbed { el.remove(); }); } - this.subscribeToEvents(); + // Subscribe to message events only after successful + // auth and iframe setup + this.subscribeToMessageEvents(); }) .catch((error) => { nextInQueue(); @@ -1243,6 +1283,16 @@ export class TsEmbed { this.handleError('Host event type is undefined'); return null; } + + // Check if iframe exists before triggering - + // this prevents the error when auth fails + if (!this.iFrame) { + logger.debug( + `Cannot trigger ${messageType} - iframe not available (likely due to auth failure)`, + ); + return null; + } + // send an empty object, this is needed for liveboard default handlers return this.hostEventClient.triggerHostEvent(messageType, data); } diff --git a/src/errors.ts b/src/errors.ts index 7cee84e6d..9ad860eb9 100644 --- a/src/errors.ts +++ b/src/errors.ts @@ -19,6 +19,7 @@ export const ERROR_MESSAGE = { MISSING_REPORTING_OBSERVER: 'ReportingObserver not supported', RENDER_CALLED_BEFORE_INIT: 'Looks like render was called before calling init, the render won\'t start until init is called.\nFor more info check\n1. https://developers.thoughtspot.com/docs/Function_init#_init\n2.https://developers.thoughtspot.com/docs/getting-started#initSdk', SPOTTER_AGENT_NOT_INITIALIZED: 'SpotterAgent not initialized', + OFFLINE_WARNING : 'Network not Detected. Embed is offline. Please reconnect and refresh', }; export const CUSTOM_ACTIONS_ERROR_MESSAGE = { From 3e6d3d483a44cbf117797ef2ec46f1e4a8dd2482 Mon Sep 17 00:00:00 2001 From: shivam-kumar-ts Date: Mon, 6 Oct 2025 14:30:32 +0530 Subject: [PATCH 13/31] minor version update (#323) --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index d0171ecdb..9673e28aa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@thoughtspot/visual-embed-sdk", - "version": "1.41.2", + "version": "1.42.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@thoughtspot/visual-embed-sdk", - "version": "1.41.2", + "version": "1.42.1", "license": "ThoughtSpot Development Tools End User License Agreement", "dependencies": { "classnames": "^2.3.1", diff --git a/package.json b/package.json index df51eefc5..c205d9fd8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@thoughtspot/visual-embed-sdk", - "version": "1.42.0", + "version": "1.42.1", "description": "ThoughtSpot Embed SDK", "module": "lib/src/index.js", "main": "dist/tsembed.js", From 6a522e9e306b2c19d090544df106c6f38472d0ac Mon Sep 17 00:00:00 2001 From: jishnupavithran007 Date: Wed, 8 Oct 2025 22:33:28 +0530 Subject: [PATCH 14/31] SCAL-266279:added tse flag for link parameters (#322) --- src/embed/app.spec.ts | 28 + src/embed/app.ts | 5 + src/embed/liveboard.spec.ts | 30 + src/embed/liveboard.ts | 5 + src/types.ts | 18 +- static/typedoc/typedoc.json | 7403 ++++++++++++++++++----------------- 6 files changed, 3846 insertions(+), 3643 deletions(-) diff --git a/src/embed/app.spec.ts b/src/embed/app.spec.ts index 676baa692..d6ef1842b 100644 --- a/src/embed/app.spec.ts +++ b/src/embed/app.spec.ts @@ -358,6 +358,34 @@ describe('App embed tests', () => { }); }); + test('should set isLinkParametersEnabled to true in url', async () => { + const appEmbed = new AppEmbed(getRootEl(), { + ...defaultViewConfig, + isLinkParametersEnabled: true, + } as AppViewConfig); + appEmbed.render(); + await executeAfterWait(() => { + expectUrlMatchesWithParams( + getIFrameSrc(), + `http://${thoughtSpotHost}/?embedApp=true&profileAndHelpInNavBarHidden=false&isLinkParametersEnabled=true${defaultParamsPost}#/home`, + ); + }); + }); + + test('should set isLinkParametersEnabled to false in url', async () => { + const appEmbed = new AppEmbed(getRootEl(), { + ...defaultViewConfig, + isLinkParametersEnabled: false, + } as AppViewConfig); + appEmbed.render(); + await executeAfterWait(() => { + expectUrlMatchesWithParams( + getIFrameSrc(), + `http://${thoughtSpotHost}/?embedApp=true&profileAndHelpInNavBarHidden=false&isLinkParametersEnabled=false${defaultParamsPost}#/home`, + ); + }); + }); + test('should set liveboardXLSXCSVDownload to true in url', async () => { const appEmbed = new AppEmbed(getRootEl(), { ...defaultViewConfig, diff --git a/src/embed/app.ts b/src/embed/app.ts index 71355be20..12fe87dc1 100644 --- a/src/embed/app.ts +++ b/src/embed/app.ts @@ -663,6 +663,7 @@ export class AppEmbed extends V1Embed { liveboardXLSXCSVDownload = false, isLiveboardStylingAndGroupingEnabled, isPNGInScheduledEmailsEnabled = false, + isLinkParametersEnabled, } = this.viewConfig; let params: any = {}; @@ -750,6 +751,10 @@ export class AppEmbed extends V1Embed { params[Param.isPNGInScheduledEmailsEnabled] = isPNGInScheduledEmailsEnabled; } + if (isLinkParametersEnabled !== undefined) { + params[Param.isLinkParametersEnabled] = isLinkParametersEnabled; + } + params[Param.DataPanelV2Enabled] = dataPanelV2; params[Param.HideHomepageLeftNav] = hideHomepageLeftNav; params[Param.ModularHomeExperienceEnabled] = modularHomeExperience; diff --git a/src/embed/liveboard.spec.ts b/src/embed/liveboard.spec.ts index 65ffa1fe1..f03053ecb 100644 --- a/src/embed/liveboard.spec.ts +++ b/src/embed/liveboard.spec.ts @@ -183,6 +183,36 @@ describe('Liveboard/viz embed tests', () => { }); }); + test('should set isLinkParametersEnabled to true in url', async () => { + const liveboardEmbed = new LiveboardEmbed(getRootEl(), { + isLinkParametersEnabled: true, + ...defaultViewConfig, + liveboardId, + } as LiveboardViewConfig); + liveboardEmbed.render(); + await executeAfterWait(() => { + expectUrlMatchesWithParams( + getIFrameSrc(), + `http://${thoughtSpotHost}/?embedApp=true${defaultParams}&isLinkParametersEnabled=true${prefixParams}#/embed/viz/${liveboardId}`, + ); + }); + }); + + test('should set isLinkParametersEnabled to false in url', async () => { + const liveboardEmbed = new LiveboardEmbed(getRootEl(), { + isLinkParametersEnabled: false, + ...defaultViewConfig, + liveboardId, + } as LiveboardViewConfig); + liveboardEmbed.render(); + await executeAfterWait(() => { + expectUrlMatchesWithParams( + getIFrameSrc(), + `http://${thoughtSpotHost}/?embedApp=true${defaultParams}&isLinkParametersEnabled=false${prefixParams}#/embed/viz/${liveboardId}`, + ); + }); + }); + test('should set visible actions as empty array', async () => { const liveboardEmbed = new LiveboardEmbed(getRootEl(), { visibleActions: [], diff --git a/src/embed/liveboard.ts b/src/embed/liveboard.ts index 5869e60b5..e374f2dab 100644 --- a/src/embed/liveboard.ts +++ b/src/embed/liveboard.ts @@ -477,6 +477,7 @@ export class LiveboardEmbed extends V1Embed { isLiveboardStylingAndGroupingEnabled, isPNGInScheduledEmailsEnabled = false, showSpotterLimitations, + isLinkParametersEnabled, } = this.viewConfig; const preventLiveboardFilterRemoval = this.viewConfig.preventLiveboardFilterRemoval @@ -552,6 +553,10 @@ export class LiveboardEmbed extends V1Embed { params[Param.ShowSpotterLimitations] = showSpotterLimitations; } + if (isLinkParametersEnabled !== undefined) { + params[Param.isLinkParametersEnabled] = isLinkParametersEnabled; + } + params[Param.LiveboardHeaderSticky] = isLiveboardHeaderSticky; params[Param.LiveboardHeaderV2] = isLiveboardCompactHeaderEnabled; params[Param.ShowLiveboardVerifiedBadge] = showLiveboardVerifiedBadge; diff --git a/src/types.ts b/src/types.ts index 78723da55..1dce2c82c 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1512,7 +1512,22 @@ export interface LiveboardAppEmbedViewConfig { * ``` */ liveboardXLSXCSVDownload?: boolean; - + /** + * This flag is used to enable or disable the link parameters in liveboard. + * + * Supported embed types: `AppEmbed`, `LiveboardEmbed` + * @version SDK: 1.42.0 | ThoughtSpot: 10.14.0.cl + * @example + * ```js + * // Replace with embed component name. For example, AppEmbed or LiveboardEmbed + * const embed = new ('#tsEmbed', { + * ... // other embed view config + * isLinkParametersEnabled: true, + * }) + * ``` + */ + isLinkParametersEnabled?: boolean; + } export interface AllEmbedViewConfig extends BaseViewConfig, SearchLiveboardCommonViewConfig, HomePageConfig, LiveboardAppEmbedViewConfig { } @@ -4350,6 +4365,7 @@ export enum Param { RootMarginForLazyLoad = 'rootMarginForLazyLoad', LiveboardXLSXCSVDownload = 'isLiveboardXLSXCSVDownloadEnabled', isPNGInScheduledEmailsEnabled = 'isPNGInScheduledEmailsEnabled', + isLinkParametersEnabled = 'isLinkParametersEnabled', } /** diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index a2c235ec6..67109e872 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 2059, + "id": 2092, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 2172, + "id": 2205, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -48,14 +48,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5386, + "line": 5434, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2079, + "id": 2112, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -76,14 +76,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4532, + "line": 4580, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 2072, + "id": 2105, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -104,14 +104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4461, + "line": 4509, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 2071, + "id": 2104, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -128,14 +128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4450, + "line": 4498, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 2077, + "id": 2110, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -152,14 +152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4513, + "line": 4561, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 2078, + "id": 2111, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -176,14 +176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4522, + "line": 4570, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 2080, + "id": 2113, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -204,14 +204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4542, + "line": 4590, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 2154, + "id": 2187, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -232,14 +232,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5180, + "line": 5228, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 2127, + "id": 2160, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -260,14 +260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4902, + "line": 4950, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 2169, + "id": 2202, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -288,14 +288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5353, + "line": 5401, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 2126, + "id": 2159, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -316,14 +316,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4890, + "line": 4938, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2125, + "id": 2158, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -344,14 +344,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4878, + "line": 4926, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2168, + "id": 2201, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -373,14 +373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5342, + "line": 5390, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 2138, + "id": 2171, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -401,14 +401,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5015, + "line": 5063, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 2141, + "id": 2174, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -429,14 +429,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5049, + "line": 5097, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 2146, + "id": 2179, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -457,14 +457,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5104, + "line": 5152, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 2140, + "id": 2173, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -485,14 +485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5038, + "line": 5086, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 2143, + "id": 2176, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -513,14 +513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5072, + "line": 5120, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 2147, + "id": 2180, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -541,14 +541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5114, + "line": 5162, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 2144, + "id": 2177, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -569,14 +569,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5083, + "line": 5131, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 2149, + "id": 2182, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -597,14 +597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5136, + "line": 5184, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 2145, + "id": 2178, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -625,14 +625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5093, + "line": 5141, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 2142, + "id": 2175, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -653,14 +653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5060, + "line": 5108, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 2148, + "id": 2181, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -681,14 +681,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5124, + "line": 5172, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 2139, + "id": 2172, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -709,14 +709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5026, + "line": 5074, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 2181, + "id": 2214, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -737,14 +737,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5484, + "line": 5532, "character": 4 } ], "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 2076, + "id": 2109, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -761,14 +761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4504, + "line": 4552, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 2075, + "id": 2108, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -789,14 +789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4495, + "line": 4543, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 2074, + "id": 2107, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -817,14 +817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4483, + "line": 4531, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 2188, + "id": 2221, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -845,14 +845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5560, + "line": 5608, "character": 4 } ], "defaultValue": "\"columnRename\"" }, { - "id": 2073, + "id": 2106, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -869,14 +869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4472, + "line": 4520, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 2118, + "id": 2151, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -884,14 +884,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4829, + "line": 4877, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 2066, + "id": 2099, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -908,14 +908,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4409, + "line": 4457, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2117, + "id": 2150, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -932,14 +932,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4828, + "line": 4876, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2189, + "id": 2222, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -960,14 +960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5570, + "line": 5618, "character": 4 } ], "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 2166, + "id": 2199, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -988,14 +988,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5317, + "line": 5365, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 2129, + "id": 2162, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1016,14 +1016,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4922, + "line": 4970, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2134, + "id": 2167, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1044,14 +1044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4973, + "line": 5021, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 2186, + "id": 2219, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1072,14 +1072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5541, + "line": 5589, "character": 4 } ], "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 2178, + "id": 2211, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1100,14 +1100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5453, + "line": 5501, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 2180, + "id": 2213, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1128,14 +1128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5472, + "line": 5520, "character": 4 } ], "defaultValue": "\"disableChipReorder\"" }, { - "id": 2088, + "id": 2121, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1152,14 +1152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4592, + "line": 4640, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 2091, + "id": 2124, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1176,14 +1176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4625, + "line": 4673, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2090, + "id": 2123, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1201,14 +1201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4615, + "line": 4663, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2089, + "id": 2122, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1225,14 +1225,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4602, + "line": 4650, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2092, + "id": 2125, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1249,14 +1249,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4635, + "line": 4683, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2122, + "id": 2155, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1273,14 +1273,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4845, + "line": 4893, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 2116, + "id": 2149, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1297,14 +1297,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4818, + "line": 4866, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 2115, + "id": 2148, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1321,14 +1321,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4809, + "line": 4857, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 2100, + "id": 2133, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1345,14 +1345,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4711, + "line": 4759, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2065, + "id": 2098, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1369,14 +1369,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4400, + "line": 4448, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 2128, + "id": 2161, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1397,14 +1397,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4911, + "line": 4959, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 2120, + "id": 2153, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1412,14 +1412,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4834, + "line": 4882, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 2185, + "id": 2218, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1440,14 +1440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5530, + "line": 5578, "character": 4 } ], "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 2158, + "id": 2191, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1468,14 +1468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5224, + "line": 5272, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 2173, + "id": 2206, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1496,14 +1496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5399, + "line": 5447, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 2097, + "id": 2130, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1520,14 +1520,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4679, + "line": 4727, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2101, + "id": 2134, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1544,14 +1544,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4719, + "line": 4767, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 2187, + "id": 2220, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1572,14 +1572,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5551, + "line": 5599, "character": 4 } ], "defaultValue": "\"editTokens\"" }, { - "id": 2155, + "id": 2188, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1600,14 +1600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5190, + "line": 5238, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 2156, + "id": 2189, "name": "EnableIterativeChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1628,14 +1628,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5201, + "line": 5249, "character": 4 } ], "defaultValue": "\"enableIterativeChangeAnalysis\"" }, { - "id": 2114, + "id": 2147, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1652,14 +1652,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4798, + "line": 4846, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2094, + "id": 2127, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1677,14 +1677,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4651, + "line": 4699, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2095, + "id": 2128, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1701,14 +1701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4661, + "line": 4709, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 2190, + "id": 2223, "name": "InConversationTraining", "kind": 16, "kindString": "Enumeration member", @@ -1729,14 +1729,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5586, + "line": 5634, "character": 4 } ], "defaultValue": "\"InConversationTraining\"" }, { - "id": 2179, + "id": 2212, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1757,14 +1757,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5463, + "line": 5511, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 2108, + "id": 2141, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1781,14 +1781,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4760, + "line": 4808, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2164, + "id": 2197, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1809,14 +1809,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5285, + "line": 5333, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 2064, + "id": 2097, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1833,14 +1833,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4391, + "line": 4439, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2162, + "id": 2195, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1857,14 +1857,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5265, + "line": 5313, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2133, + "id": 2166, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1885,14 +1885,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4963, + "line": 5011, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2177, + "id": 2210, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1913,14 +1913,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5442, + "line": 5490, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 2153, + "id": 2186, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1941,14 +1941,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5170, + "line": 5218, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 2160, + "id": 2193, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1968,14 +1968,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5245, + "line": 5293, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 2161, + "id": 2194, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -1992,14 +1992,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5254, + "line": 5302, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 2171, + "id": 2204, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -2020,14 +2020,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5375, + "line": 5423, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 2174, + "id": 2207, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2048,14 +2048,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5410, + "line": 5458, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 2163, + "id": 2196, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2076,14 +2076,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5275, + "line": 5323, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 2111, + "id": 2144, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2100,14 +2100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4777, + "line": 4825, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2194, + "id": 2227, "name": "PngScreenshotInEmail", "kind": 16, "kindString": "Enumeration member", @@ -2124,14 +2124,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5630, + "line": 5678, "character": 4 } ], "defaultValue": "\"pngScreenshotInEmail\"" }, { - "id": 2098, + "id": 2131, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2148,14 +2148,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4689, + "line": 4737, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2182, + "id": 2215, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2176,14 +2176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5496, + "line": 5544, "character": 4 } ], "defaultValue": "\"previewDataSpotter\"" }, { - "id": 2124, + "id": 2157, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2201,14 +2201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4868, + "line": 4916, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 2102, + "id": 2135, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2225,14 +2225,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4729, + "line": 4777, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2195, + "id": 2228, "name": "RemoveAttachment", "kind": 16, "kindString": "Enumeration member", @@ -2253,14 +2253,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5642, + "line": 5690, "character": 4 } ], "defaultValue": "\"removeAttachment\"" }, { - "id": 2137, + "id": 2170, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2281,14 +2281,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5004, + "line": 5052, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 2170, + "id": 2203, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2309,14 +2309,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5364, + "line": 5412, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 2151, + "id": 2184, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2337,14 +2337,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5150, + "line": 5198, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 2130, + "id": 2163, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2368,14 +2368,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4932, + "line": 4980, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 2123, + "id": 2156, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2392,14 +2392,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4854, + "line": 4902, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 2152, + "id": 2185, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2420,14 +2420,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5160, + "line": 5208, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 2183, + "id": 2216, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2448,14 +2448,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5508, + "line": 5556, "character": 4 } ], "defaultValue": "\"resetSpotterChat\"" }, { - "id": 2159, + "id": 2192, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2476,14 +2476,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5236, + "line": 5284, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 2060, + "id": 2093, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2500,14 +2500,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4360, + "line": 4408, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2063, + "id": 2096, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2524,14 +2524,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4378, + "line": 4426, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 2068, + "id": 2101, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2548,14 +2548,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4423, + "line": 4471, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2069, + "id": 2102, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2572,14 +2572,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4432, + "line": 4480, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2121, + "id": 2154, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2587,14 +2587,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4835, + "line": 4883, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 2070, + "id": 2103, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2611,14 +2611,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4441, + "line": 4489, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2085, + "id": 2118, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2629,14 +2629,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4567, + "line": 4615, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 2157, + "id": 2190, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2657,14 +2657,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5211, + "line": 5259, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 2087, + "id": 2120, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2681,14 +2681,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4582, + "line": 4630, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2082, + "id": 2115, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2705,14 +2705,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4555, + "line": 4603, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2184, + "id": 2217, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2733,14 +2733,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5519, + "line": 5567, "character": 4 } ], "defaultValue": "\"spotterFeedback\"" }, { - "id": 2193, + "id": 2226, "name": "SpotterTokenQuickEdit", "kind": 16, "kindString": "Enumeration member", @@ -2761,14 +2761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5619, + "line": 5667, "character": 4 } ], "defaultValue": "\"SpotterTokenQuickEdit\"" }, { - "id": 2191, + "id": 2224, "name": "SpotterWarningsBanner", "kind": 16, "kindString": "Enumeration member", @@ -2789,14 +2789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5597, + "line": 5645, "character": 4 } ], "defaultValue": "\"SpotterWarningsBanner\"" }, { - "id": 2192, + "id": 2225, "name": "SpotterWarningsOnTokens", "kind": 16, "kindString": "Enumeration member", @@ -2817,14 +2817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5608, + "line": 5656, "character": 4 } ], "defaultValue": "\"SpotterWarningsOnTokens\"" }, { - "id": 2113, + "id": 2146, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2841,14 +2841,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4790, + "line": 4838, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2132, + "id": 2165, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2869,14 +2869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4953, + "line": 5001, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2131, + "id": 2164, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2897,14 +2897,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4942, + "line": 4990, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2135, + "id": 2168, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2925,14 +2925,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4983, + "line": 5031, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 2136, + "id": 2169, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2953,14 +2953,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4993, + "line": 5041, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 2165, + "id": 2198, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -2985,14 +2985,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5304, + "line": 5352, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 2099, + "id": 2132, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -3009,14 +3009,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4701, + "line": 4749, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 2176, + "id": 2209, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3037,14 +3037,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5432, + "line": 5480, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 2096, + "id": 2129, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -3061,14 +3061,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4670, + "line": 4718, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2167, + "id": 2200, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -3089,14 +3089,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5328, + "line": 5376, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 2175, + "id": 2208, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3117,7 +3117,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5421, + "line": 5469, "character": 4 } ], @@ -3129,137 +3129,137 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2205, + 2112, + 2105, + 2104, + 2110, + 2111, + 2113, + 2187, + 2160, + 2202, + 2159, + 2158, + 2201, + 2171, + 2174, + 2179, + 2173, + 2176, + 2180, + 2177, + 2182, + 2178, + 2175, + 2181, 2172, - 2079, - 2072, - 2071, - 2077, - 2078, - 2080, - 2154, - 2127, - 2169, - 2126, + 2214, + 2109, + 2108, + 2107, + 2221, + 2106, + 2151, + 2099, + 2150, + 2222, + 2199, + 2162, + 2167, + 2219, + 2211, + 2213, + 2121, + 2124, + 2123, + 2122, 2125, - 2168, - 2138, - 2141, - 2146, - 2140, - 2143, - 2147, - 2144, + 2155, 2149, - 2145, - 2142, 2148, - 2139, - 2181, - 2076, - 2075, - 2074, + 2133, + 2098, + 2161, + 2153, + 2218, + 2191, + 2206, + 2130, + 2134, + 2220, 2188, - 2073, - 2118, - 2066, - 2117, 2189, - 2166, - 2129, - 2134, - 2186, - 2178, - 2180, - 2088, - 2091, - 2090, - 2089, - 2092, - 2122, - 2116, - 2115, - 2100, - 2065, + 2147, + 2127, 2128, - 2120, - 2185, - 2158, - 2173, + 2223, + 2212, + 2141, + 2197, 2097, - 2101, - 2187, - 2155, - 2156, - 2114, - 2094, - 2095, - 2190, - 2179, - 2108, - 2164, - 2064, - 2162, - 2133, - 2177, - 2153, - 2160, - 2161, - 2171, - 2174, - 2163, - 2111, - 2194, - 2098, - 2182, - 2124, - 2102, 2195, - 2137, - 2170, - 2151, - 2130, - 2123, - 2152, - 2183, - 2159, - 2060, - 2063, - 2068, - 2069, - 2121, - 2070, - 2085, - 2157, - 2087, - 2082, - 2184, + 2166, + 2210, + 2186, 2193, - 2191, - 2192, - 2113, - 2132, + 2194, + 2204, + 2207, + 2196, + 2144, + 2227, 2131, + 2215, + 2157, 2135, - 2136, - 2165, - 2099, - 2176, + 2228, + 2170, + 2203, + 2184, + 2163, + 2156, + 2185, + 2216, + 2192, + 2093, 2096, - 2167, - 2175 + 2101, + 2102, + 2154, + 2103, + 2118, + 2190, + 2120, + 2115, + 2217, + 2226, + 2224, + 2225, + 2146, + 2165, + 2164, + 2168, + 2169, + 2198, + 2132, + 2209, + 2129, + 2200, + 2208 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4351, + "line": 4399, "character": 12 } ] }, { - "id": 1713, + "id": 1745, "name": "AuthEvent", "kind": 4, "kindString": "Enumeration", @@ -3275,7 +3275,7 @@ }, "children": [ { - "id": 1714, + "id": 1746, "name": "TRIGGER_SSO_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3298,7 +3298,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1714 + 1746 ] } ], @@ -3311,7 +3311,7 @@ ] }, { - "id": 1698, + "id": 1730, "name": "AuthFailureType", "kind": 4, "kindString": "Enumeration", @@ -3327,7 +3327,7 @@ }, "children": [ { - "id": 1701, + "id": 1733, "name": "EXPIRY", "kind": 16, "kindString": "Enumeration member", @@ -3342,7 +3342,7 @@ "defaultValue": "\"EXPIRY\"" }, { - "id": 1703, + "id": 1735, "name": "IDLE_SESSION_TIMEOUT", "kind": 16, "kindString": "Enumeration member", @@ -3357,7 +3357,7 @@ "defaultValue": "\"IDLE_SESSION_TIMEOUT\"" }, { - "id": 1700, + "id": 1732, "name": "NO_COOKIE_ACCESS", "kind": 16, "kindString": "Enumeration member", @@ -3372,7 +3372,7 @@ "defaultValue": "\"NO_COOKIE_ACCESS\"" }, { - "id": 1702, + "id": 1734, "name": "OTHER", "kind": 16, "kindString": "Enumeration member", @@ -3387,7 +3387,7 @@ "defaultValue": "\"OTHER\"" }, { - "id": 1699, + "id": 1731, "name": "SDK", "kind": 16, "kindString": "Enumeration member", @@ -3402,7 +3402,7 @@ "defaultValue": "\"SDK\"" }, { - "id": 1704, + "id": 1736, "name": "UNAUTHENTICATED_FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3422,12 +3422,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1701, - 1703, - 1700, - 1702, - 1699, - 1704 + 1733, + 1735, + 1732, + 1734, + 1731, + 1736 ] } ], @@ -3440,7 +3440,7 @@ ] }, { - "id": 1705, + "id": 1737, "name": "AuthStatus", "kind": 4, "kindString": "Enumeration", @@ -3456,7 +3456,7 @@ }, "children": [ { - "id": 1706, + "id": 1738, "name": "FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3474,7 +3474,7 @@ "defaultValue": "\"FAILURE\"" }, { - "id": 1710, + "id": 1742, "name": "LOGOUT", "kind": 16, "kindString": "Enumeration member", @@ -3492,7 +3492,7 @@ "defaultValue": "\"LOGOUT\"" }, { - "id": 1712, + "id": 1744, "name": "SAML_POPUP_CLOSED_NO_AUTH", "kind": 16, "kindString": "Enumeration member", @@ -3510,7 +3510,7 @@ "defaultValue": "\"SAML_POPUP_CLOSED_NO_AUTH\"" }, { - "id": 1707, + "id": 1739, "name": "SDK_SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3528,7 +3528,7 @@ "defaultValue": "\"SDK_SUCCESS\"" }, { - "id": 1709, + "id": 1741, "name": "SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3546,7 +3546,7 @@ "defaultValue": "\"SUCCESS\"" }, { - "id": 1711, + "id": 1743, "name": "WAITING_FOR_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3575,12 +3575,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1706, - 1710, - 1712, - 1707, - 1709, - 1711 + 1738, + 1742, + 1744, + 1739, + 1741, + 1743 ] } ], @@ -3593,7 +3593,7 @@ ] }, { - "id": 1860, + "id": 1892, "name": "AuthType", "kind": 4, "kindString": "Enumeration", @@ -3609,7 +3609,7 @@ }, "children": [ { - "id": 1871, + "id": 1903, "name": "Basic", "kind": 16, "kindString": "Enumeration member", @@ -3628,7 +3628,7 @@ "defaultValue": "\"Basic\"" }, { - "id": 1862, + "id": 1894, "name": "EmbeddedSSO", "kind": 16, "kindString": "Enumeration member", @@ -3657,7 +3657,7 @@ "defaultValue": "\"EmbeddedSSO\"" }, { - "id": 1861, + "id": 1893, "name": "None", "kind": 16, "kindString": "Enumeration member", @@ -3681,7 +3681,7 @@ "defaultValue": "\"None\"" }, { - "id": 1867, + "id": 1899, "name": "OIDCRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3699,7 +3699,7 @@ "defaultValue": "\"SSO_OIDC\"" }, { - "id": 1865, + "id": 1897, "name": "SAMLRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3732,7 +3732,7 @@ "defaultValue": "\"SSO_SAML\"" }, { - "id": 1869, + "id": 1901, "name": "TrustedAuthToken", "kind": 16, "kindString": "Enumeration member", @@ -3756,7 +3756,7 @@ "defaultValue": "\"AuthServer\"" }, { - "id": 1870, + "id": 1902, "name": "TrustedAuthTokenCookieless", "kind": 16, "kindString": "Enumeration member", @@ -3789,13 +3789,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1871, - 1862, - 1861, - 1867, - 1865, - 1869, - 1870 + 1903, + 1894, + 1893, + 1899, + 1897, + 1901, + 1902 ] } ], @@ -3808,7 +3808,7 @@ ] }, { - "id": 2196, + "id": 2229, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3818,7 +3818,7 @@ }, "children": [ { - "id": 2199, + "id": 2232, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3826,14 +3826,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5663, + "line": 5711, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 2197, + "id": 2230, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3841,14 +3841,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5661, + "line": 5709, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 2198, + "id": 2231, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3856,7 +3856,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5662, + "line": 5710, "character": 4 } ], @@ -3868,22 +3868,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2199, - 2197, - 2198 + 2232, + 2230, + 2231 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5660, + "line": 5708, "character": 12 } ] }, { - "id": 2865, + "id": 2901, "name": "CustomActionTarget", "kind": 4, "kindString": "Enumeration", @@ -3893,7 +3893,7 @@ }, "children": [ { - "id": 2868, + "id": 2904, "name": "ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -3901,14 +3901,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5748, + "line": 5796, "character": 4 } ], "defaultValue": "\"ANSWER\"" }, { - "id": 2866, + "id": 2902, "name": "LIVEBOARD", "kind": 16, "kindString": "Enumeration member", @@ -3916,14 +3916,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5746, + "line": 5794, "character": 4 } ], "defaultValue": "\"LIVEBOARD\"" }, { - "id": 2869, + "id": 2905, "name": "SPOTTER", "kind": 16, "kindString": "Enumeration member", @@ -3931,14 +3931,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5749, + "line": 5797, "character": 4 } ], "defaultValue": "\"SPOTTER\"" }, { - "id": 2867, + "id": 2903, "name": "VIZ", "kind": 16, "kindString": "Enumeration member", @@ -3946,7 +3946,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5747, + "line": 5795, "character": 4 } ], @@ -3958,23 +3958,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2868, - 2866, - 2869, - 2867 + 2904, + 2902, + 2905, + 2903 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5745, + "line": 5793, "character": 12 } ] }, { - "id": 2861, + "id": 2897, "name": "CustomActionsPosition", "kind": 4, "kindString": "Enumeration", @@ -3984,7 +3984,7 @@ }, "children": [ { - "id": 2864, + "id": 2900, "name": "CONTEXTMENU", "kind": 16, "kindString": "Enumeration member", @@ -3992,14 +3992,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5739, + "line": 5787, "character": 4 } ], "defaultValue": "\"CONTEXTMENU\"" }, { - "id": 2863, + "id": 2899, "name": "MENU", "kind": 16, "kindString": "Enumeration member", @@ -4007,14 +4007,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5738, + "line": 5786, "character": 4 } ], "defaultValue": "\"MENU\"" }, { - "id": 2862, + "id": 2898, "name": "PRIMARY", "kind": 16, "kindString": "Enumeration member", @@ -4022,7 +4022,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5737, + "line": 5785, "character": 4 } ], @@ -4034,22 +4034,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2864, - 2863, - 2862 + 2900, + 2899, + 2898 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5736, + "line": 5784, "character": 12 } ] }, { - "id": 2857, + "id": 2893, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -4059,7 +4059,7 @@ }, "children": [ { - "id": 2859, + "id": 2895, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4077,7 +4077,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 2858, + "id": 2894, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4095,7 +4095,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 2860, + "id": 2896, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -4118,9 +4118,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2859, - 2858, - 2860 + 2895, + 2894, + 2896 ] } ], @@ -4133,7 +4133,7 @@ ] }, { - "id": 2055, + "id": 2088, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -4143,7 +4143,7 @@ }, "children": [ { - "id": 2057, + "id": 2090, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -4154,14 +4154,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4187, + "line": 4234, "character": 4 } ], "defaultValue": "\"collapse\"" }, { - "id": 2058, + "id": 2091, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -4172,14 +4172,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4191, + "line": 4238, "character": 4 } ], "defaultValue": "\"expand\"" }, { - "id": 2056, + "id": 2089, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -4190,7 +4190,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4183, + "line": 4230, "character": 4 } ], @@ -4202,22 +4202,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2057, - 2058, - 2056 + 2090, + 2091, + 2089 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4179, + "line": 4226, "character": 12 } ] }, { - "id": 1892, + "id": 1924, "name": "EmbedEvent", "kind": 4, "kindString": "Enumeration", @@ -4242,7 +4242,7 @@ }, "children": [ { - "id": 1920, + "id": 1952, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -4263,14 +4263,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2139, + "line": 2154, "character": 4 } ], "defaultValue": "\"*\"" }, { - "id": 1900, + "id": 1932, "name": "AddRemoveColumns", "kind": 16, "kindString": "Enumeration member", @@ -4295,14 +4295,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1905, + "line": 1920, "character": 4 } ], "defaultValue": "\"addRemoveColumns\"" }, { - "id": 1944, + "id": 1976, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -4323,14 +4323,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2450, + "line": 2465, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 1905, + "id": 1937, "name": "Alert", "kind": 16, "kindString": "Enumeration member", @@ -4355,14 +4355,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1997, + "line": 2012, "character": 4 } ], "defaultValue": "\"alert\"" }, { - "id": 1940, + "id": 1972, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -4383,14 +4383,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2418, + "line": 2433, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1927, + "id": 1959, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -4411,14 +4411,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2243, + "line": 2258, "character": 4 } ], "defaultValue": "\"answerDelete\"" }, { - "id": 1967, + "id": 1999, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -4451,14 +4451,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2659, + "line": 2674, "character": 4 } ], "defaultValue": "\"AskSageInit\"" }, { - "id": 1906, + "id": 1938, "name": "AuthExpire", "kind": 16, "kindString": "Enumeration member", @@ -4479,14 +4479,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2010, + "line": 2025, "character": 4 } ], "defaultValue": "\"ThoughtspotAuthExpired\"" }, { - "id": 1894, + "id": 1926, "name": "AuthInit", "kind": 16, "kindString": "Enumeration member", @@ -4511,14 +4511,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1807, + "line": 1822, "character": 4 } ], "defaultValue": "\"authInit\"" }, { - "id": 1951, + "id": 1983, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -4539,14 +4539,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2526, + "line": 2541, "character": 4 } ], "defaultValue": "\"cancel\"" }, { - "id": 1938, + "id": 1970, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -4567,14 +4567,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2396, + "line": 2411, "character": 4 } ], "defaultValue": "\"copyAEdit\"" }, { - "id": 1953, + "id": 1985, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -4595,14 +4595,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2546, + "line": 2561, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1933, + "id": 1965, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -4623,14 +4623,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2333, + "line": 2348, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1961, + "id": 1993, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -4647,14 +4647,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2610, + "line": 2625, "character": 4 } ], "defaultValue": "\"createConnection\"" }, { - "id": 1972, + "id": 2004, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -4672,14 +4672,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2790, + "line": 2805, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 1973, + "id": 2005, "name": "CreateModel", "kind": 16, "kindString": "Enumeration member", @@ -4696,14 +4696,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2795, - "character": 5 + "line": 2810, + "character": 4 } ], "defaultValue": "\"createModel\"" }, { - "id": 1966, + "id": 1998, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -4720,14 +4720,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2650, + "line": 2665, "character": 4 } ], "defaultValue": "\"createWorksheet\"" }, { - "id": 1954, + "id": 1986, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4748,14 +4748,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2557, + "line": 2572, "character": 4 } ], "defaultValue": "\"cross-filter-changed\"" }, { - "id": 1901, + "id": 1933, "name": "CustomAction", "kind": 16, "kindString": "Enumeration member", @@ -4784,14 +4784,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1922, + "line": 1937, "character": 4 } ], "defaultValue": "\"customAction\"" }, { - "id": 1896, + "id": 1928, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -4820,14 +4820,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1835, + "line": 1850, "character": 4 } ], "defaultValue": "\"data\"" }, { - "id": 1899, + "id": 1931, "name": "DataSourceSelected", "kind": 16, "kindString": "Enumeration member", @@ -4852,14 +4852,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1893, + "line": 1908, "character": 4 } ], "defaultValue": "\"dataSourceSelected\"" }, { - "id": 1949, + "id": 1981, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -4880,14 +4880,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2508, + "line": 2523, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1965, + "id": 1997, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -4912,14 +4912,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2645, + "line": 2660, "character": 4 } ], "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 1918, + "id": 1950, "name": "DialogClose", "kind": 16, "kindString": "Enumeration member", @@ -4940,14 +4940,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2106, + "line": 2121, "character": 4 } ], "defaultValue": "\"dialog-close\"" }, { - "id": 1917, + "id": 1949, "name": "DialogOpen", "kind": 16, "kindString": "Enumeration member", @@ -4968,14 +4968,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2095, + "line": 2110, "character": 4 } ], "defaultValue": "\"dialog-open\"" }, { - "id": 1922, + "id": 1954, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -4997,14 +4997,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2173, + "line": 2188, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 1925, + "id": 1957, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -5025,14 +5025,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2215, + "line": 2230, "character": 4 } ], "defaultValue": "\"downloadAsCsv\"" }, { - "id": 1924, + "id": 1956, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -5053,14 +5053,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2201, + "line": 2216, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1923, + "id": 1955, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -5081,14 +5081,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2187, + "line": 2202, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1926, + "id": 1958, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -5109,14 +5109,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2229, + "line": 2244, "character": 4 } ], "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 1932, + "id": 1964, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -5137,14 +5137,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2322, + "line": 2337, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1931, + "id": 1963, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -5165,14 +5165,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2310, + "line": 2325, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1898, + "id": 1930, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -5209,14 +5209,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1881, + "line": 1896, "character": 4 } ], "defaultValue": "\"drillDown\"" }, { - "id": 1946, + "id": 1978, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -5237,14 +5237,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2472, + "line": 2487, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1935, + "id": 1967, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -5265,14 +5265,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2356, + "line": 2371, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 1904, + "id": 1936, "name": "Error", "kind": 16, "kindString": "Enumeration member", @@ -5302,14 +5302,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1987, + "line": 2002, "character": 4 } ], "defaultValue": "\"Error\"" }, { - "id": 1952, + "id": 1984, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -5330,14 +5330,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2536, + "line": 2551, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1936, + "id": 1968, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -5358,14 +5358,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2371, + "line": 2386, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1957, + "id": 1989, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5382,14 +5382,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2587, + "line": 2602, "character": 4 } ], "defaultValue": "\"filterChanged\"" }, { - "id": 1912, + "id": 1944, "name": "GetDataClick", "kind": 16, "kindString": "Enumeration member", @@ -5410,14 +5410,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2052, + "line": 2067, "character": 4 } ], "defaultValue": "\"getDataClick\"" }, { - "id": 1893, + "id": 1925, "name": "Init", "kind": 16, "kindString": "Enumeration member", @@ -5438,14 +5438,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1795, + "line": 1810, "character": 4 } ], "defaultValue": "\"init\"" }, { - "id": 1980, + "id": 2012, "name": "LastPromptDeleted", "kind": 16, "kindString": "Enumeration member", @@ -5466,14 +5466,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2862, + "line": 2877, "character": 4 } ], "defaultValue": "\"LastPromptDeleted\"" }, { - "id": 1979, + "id": 2011, "name": "LastPromptEdited", "kind": 16, "kindString": "Enumeration member", @@ -5494,14 +5494,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2851, + "line": 2866, "character": 4 } ], "defaultValue": "\"LastPromptEdited\"" }, { - "id": 1943, + "id": 1975, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -5522,14 +5522,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2439, + "line": 2454, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1919, + "id": 1951, "name": "LiveboardRendered", "kind": 16, "kindString": "Enumeration member", @@ -5554,14 +5554,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2128, + "line": 2143, "character": 4 } ], "defaultValue": "\"PinboardRendered\"" }, { - "id": 1895, + "id": 1927, "name": "Load", "kind": 16, "kindString": "Enumeration member", @@ -5586,14 +5586,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1821, + "line": 1836, "character": 4 } ], "defaultValue": "\"load\"" }, { - "id": 1947, + "id": 1979, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -5614,14 +5614,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2483, + "line": 2498, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1915, + "id": 1947, "name": "NoCookieAccess", "kind": 16, "kindString": "Enumeration member", @@ -5642,14 +5642,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2078, + "line": 2093, "character": 4 } ], "defaultValue": "\"noCookieAccess\"" }, { - "id": 1969, + "id": 2001, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", @@ -5679,14 +5679,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2723, + "line": 2738, "character": 4 } ], "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 1984, + "id": 2016, "name": "OrgSwitched", "kind": 16, "kindString": "Enumeration member", @@ -5707,14 +5707,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2907, + "line": 2922, "character": 4 } ], "defaultValue": "\"orgSwitched\"" }, { - "id": 1970, + "id": 2002, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5731,14 +5731,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2734, + "line": 2749, "character": 4 } ], "defaultValue": "\"parameterChanged\"" }, { - "id": 1928, + "id": 1960, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -5759,14 +5759,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2262, + "line": 2277, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1948, + "id": 1980, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -5791,14 +5791,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2498, + "line": 2513, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 1977, + "id": 2009, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -5819,14 +5819,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2829, + "line": 2844, "character": 4 } ], "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 1897, + "id": 1929, "name": "QueryChanged", "kind": 16, "kindString": "Enumeration member", @@ -5847,14 +5847,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1844, + "line": 1859, "character": 4 } ], "defaultValue": "\"queryChanged\"" }, { - "id": 1968, + "id": 2000, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -5871,14 +5871,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2664, + "line": 2679, "character": 4 } ], "defaultValue": "\"rename\"" }, { - "id": 1964, + "id": 1996, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -5911,14 +5911,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2638, + "line": 2653, "character": 4 } ], "defaultValue": "\"resetLiveboard\"" }, { - "id": 1981, + "id": 2013, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -5939,14 +5939,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2873, + "line": 2888, "character": 4 } ], "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 1913, + "id": 1945, "name": "RouteChange", "kind": 16, "kindString": "Enumeration member", @@ -5967,14 +5967,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2062, + "line": 2077, "character": 4 } ], "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 1958, + "id": 1990, "name": "SageEmbedQuery", "kind": 16, "kindString": "Enumeration member", @@ -5991,14 +5991,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2593, + "line": 2608, "character": 4 } ], "defaultValue": "\"sageEmbedQuery\"" }, { - "id": 1959, + "id": 1991, "name": "SageWorksheetUpdated", "kind": 16, "kindString": "Enumeration member", @@ -6015,14 +6015,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2600, + "line": 2615, "character": 4 } ], "defaultValue": "\"sageWorksheetUpdated\"" }, { - "id": 1921, + "id": 1953, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -6043,14 +6043,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2157, + "line": 2172, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1937, + "id": 1969, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -6071,14 +6071,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2382, + "line": 2397, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 1963, + "id": 1995, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6111,14 +6111,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2629, + "line": 2644, "character": 4 } ], "defaultValue": "\"savePersonalisedView\"" }, { - "id": 1945, + "id": 1977, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -6139,14 +6139,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2461, + "line": 2476, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1950, + "id": 1982, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -6167,14 +6167,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2517, + "line": 2532, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1930, + "id": 1962, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -6195,14 +6195,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2298, + "line": 2313, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1939, + "id": 1971, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -6223,14 +6223,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2407, + "line": 2422, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1929, + "id": 1961, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -6251,14 +6251,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2280, + "line": 2295, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1976, + "id": 2008, "name": "SpotterData", "kind": 16, "kindString": "Enumeration member", @@ -6279,14 +6279,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2818, + "line": 2833, "character": 4 } ], "defaultValue": "\"SpotterData\"" }, { - "id": 1982, + "id": 2014, "name": "SpotterInit", "kind": 16, "kindString": "Enumeration member", @@ -6307,14 +6307,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2884, + "line": 2899, "character": 4 } ], "defaultValue": "\"spotterInit\"" }, { - "id": 1978, + "id": 2010, "name": "SpotterQueryTriggered", "kind": 16, "kindString": "Enumeration member", @@ -6335,14 +6335,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2840, + "line": 2855, "character": 4 } ], "defaultValue": "\"SpotterQueryTriggered\"" }, { - "id": 1971, + "id": 2003, "name": "TableVizRendered", "kind": 16, "kindString": "Enumeration member", @@ -6364,14 +6364,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2777, - "character": 5 + "line": 2792, + "character": 4 } ], "defaultValue": "\"TableVizRendered\"" }, { - "id": 1960, + "id": 1992, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -6388,14 +6388,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2605, + "line": 2620, "character": 4 } ], "defaultValue": "\"updateConnection\"" }, { - "id": 1962, + "id": 1994, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6428,14 +6428,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2620, + "line": 2635, "character": 4 } ], "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 1934, + "id": 1966, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -6456,14 +6456,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2344, + "line": 2359, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1903, + "id": 1935, "name": "VizPointClick", "kind": 16, "kindString": "Enumeration member", @@ -6492,14 +6492,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1953, + "line": 1968, "character": 4 } ], "defaultValue": "\"vizPointClick\"" }, { - "id": 1902, + "id": 1934, "name": "VizPointDoubleClick", "kind": 16, "kindString": "Enumeration member", @@ -6524,14 +6524,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1934, + "line": 1949, "character": 4 } ], "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 1955, + "id": 1987, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -6552,7 +6552,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2568, + "line": 2583, "character": 4 } ], @@ -6564,98 +6564,98 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1920, - 1900, - 1944, - 1905, - 1940, - 1927, - 1967, - 1906, - 1894, - 1951, - 1938, - 1953, - 1933, - 1961, + 1952, + 1932, + 1976, + 1937, 1972, - 1973, - 1966, - 1954, - 1901, - 1896, - 1899, - 1949, - 1965, - 1918, - 1917, - 1922, - 1925, - 1924, - 1923, + 1959, + 1999, + 1938, 1926, - 1932, - 1931, - 1898, - 1946, - 1935, - 1904, - 1952, - 1936, - 1957, - 1912, - 1893, - 1980, - 1979, - 1943, - 1919, - 1895, - 1947, - 1915, - 1969, - 1984, + 1983, 1970, + 1985, + 1965, + 1993, + 2004, + 2005, + 1998, + 1986, + 1933, 1928, - 1948, - 1977, - 1897, - 1968, - 1964, + 1931, 1981, - 1913, + 1997, + 1950, + 1949, + 1954, + 1957, + 1956, + 1955, 1958, - 1959, - 1921, - 1937, + 1964, 1963, - 1945, - 1950, 1930, - 1939, - 1929, - 1976, - 1982, 1978, - 1971, + 1967, + 1936, + 1984, + 1968, + 1989, + 1944, + 1925, + 2012, + 2011, + 1975, + 1951, + 1927, + 1979, + 1947, + 2001, + 2016, + 2002, 1960, + 1980, + 2009, + 1929, + 2000, + 1996, + 2013, + 1945, + 1990, + 1991, + 1953, + 1969, + 1995, + 1977, + 1982, 1962, + 1971, + 1961, + 2008, + 2014, + 2010, + 2003, + 1992, + 1994, + 1966, + 1935, 1934, - 1903, - 1902, - 1955 + 1987 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1782, + "line": 1797, "character": 12 } ] }, { - "id": 2556, + "id": 2591, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -6665,7 +6665,7 @@ }, "children": [ { - "id": 2560, + "id": 2595, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -6688,7 +6688,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2564, + "id": 2599, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6712,7 +6712,7 @@ "defaultValue": "\"create\"" }, { - "id": 2566, + "id": 2601, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -6736,7 +6736,7 @@ "defaultValue": "\"favorites\"" }, { - "id": 2558, + "id": 2593, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6759,7 +6759,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2563, + "id": 2598, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6782,7 +6782,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2559, + "id": 2594, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6805,7 +6805,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2561, + "id": 2596, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6828,7 +6828,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2557, + "id": 2592, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6851,7 +6851,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2562, + "id": 2597, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6874,7 +6874,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2565, + "id": 2600, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -6903,16 +6903,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2560, - 2564, - 2566, - 2558, - 2563, - 2559, - 2561, - 2557, - 2562, - 2565 + 2595, + 2599, + 2601, + 2593, + 2598, + 2594, + 2596, + 2592, + 2597, + 2600 ] } ], @@ -6925,7 +6925,7 @@ ] }, { - "id": 2815, + "id": 2851, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -6941,7 +6941,7 @@ }, "children": [ { - "id": 2816, + "id": 2852, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -6959,7 +6959,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2817, + "id": 2853, "name": "ModularWithStylingChanges", "kind": 16, "kindString": "Enumeration member", @@ -6982,8 +6982,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2816, - 2817 + 2852, + 2853 ] } ], @@ -6996,14 +6996,14 @@ ] }, { - "id": 2809, + "id": 2845, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2811, + "id": 2847, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -7018,7 +7018,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2812, + "id": 2848, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -7033,7 +7033,7 @@ "defaultValue": "\"none\"" }, { - "id": 2810, + "id": 2846, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -7053,9 +7053,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2811, - 2812, - 2810 + 2847, + 2848, + 2846 ] } ], @@ -7068,7 +7068,7 @@ ] }, { - "id": 2567, + "id": 2602, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -7084,7 +7084,7 @@ }, "children": [ { - "id": 2570, + "id": 2605, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -7095,14 +7095,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1663, + "line": 1678, "character": 4 } ], "defaultValue": "\"FAVORITE\"" }, { - "id": 2573, + "id": 2608, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -7113,14 +7113,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1675, + "line": 1690, "character": 4 } ], "defaultValue": "\"LEARNING\"" }, { - "id": 2571, + "id": 2606, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -7131,14 +7131,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1667, + "line": 1682, "character": 4 } ], "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2568, + "id": 2603, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7149,14 +7149,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1655, + "line": 1670, "character": 4 } ], "defaultValue": "\"SEARCH\"" }, { - "id": 2572, + "id": 2607, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -7167,14 +7167,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1671, + "line": 1686, "character": 4 } ], "defaultValue": "\"TRENDING\"" }, { - "id": 2569, + "id": 2604, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -7185,7 +7185,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1659, + "line": 1674, "character": 4 } ], @@ -7197,25 +7197,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2570, - 2573, - 2571, - 2568, - 2572, - 2569 + 2605, + 2608, + 2606, + 2603, + 2607, + 2604 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1651, + "line": 1666, "character": 12 } ] }, { - "id": 1985, + "id": 2017, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -7244,7 +7244,7 @@ }, "children": [ { - "id": 1996, + "id": 2028, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -7270,14 +7270,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3160, + "line": 3175, "character": 4 } ], "defaultValue": "\"addColumns\"" }, { - "id": 2051, + "id": 2083, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -7303,14 +7303,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4137, + "line": 4173, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2036, + "id": 2068, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -7331,14 +7331,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3944, + "line": 3980, "character": 4 } ], "defaultValue": "\"AskSage\"" }, { - "id": 2054, + "id": 2086, "name": "AskSpotter", "kind": 16, "kindString": "Enumeration member", @@ -7364,14 +7364,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4171, + "line": 4207, "character": 4 } ], "defaultValue": "\"AskSpotter\"" }, { - "id": 2013, + "id": 2045, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -7397,14 +7397,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3474, + "line": 3489, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2010, + "id": 2042, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -7434,14 +7434,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3404, + "line": 3419, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2017, + "id": 2049, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -7467,14 +7467,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3551, + "line": 3566, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2050, + "id": 2082, "name": "DeleteLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -7495,14 +7495,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4125, + "line": 4161, "character": 4 } ], "defaultValue": "\"DeleteLastPrompt\"" }, { - "id": 2019, + "id": 2051, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -7532,14 +7532,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3593, + "line": 3608, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2021, + "id": 2053, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -7565,14 +7565,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3636, + "line": 3651, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2006, + "id": 2038, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -7602,14 +7602,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3334, + "line": 3349, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2020, + "id": 2052, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -7630,14 +7630,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3613, + "line": 3628, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2022, + "id": 2054, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -7663,14 +7663,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3659, + "line": 3674, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1987, + "id": 2019, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -7720,14 +7720,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3035, + "line": 3050, "character": 4 } ], "defaultValue": "\"triggerDrillDown\"" }, { - "id": 2012, + "id": 2044, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -7767,14 +7767,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3457, + "line": 3472, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2047, + "id": 2079, "name": "EditLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -7800,14 +7800,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4098, + "line": 4134, "character": 4 } ], "defaultValue": "\"EditLastPrompt\"" }, { - "id": 2004, + "id": 2036, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -7828,14 +7828,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3303, + "line": 3318, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2009, + "id": 2041, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -7861,14 +7861,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3387, + "line": 3402, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2003, + "id": 2035, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -7889,14 +7889,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3293, + "line": 3308, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2035, + "id": 2067, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -7922,14 +7922,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3934, + "line": 3970, "character": 4 } ], "defaultValue": "\"getAnswerSession\"" }, { - "id": 2029, + "id": 2061, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -7950,14 +7950,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3761, + "line": 3797, "character": 4 } ], "defaultValue": "\"getFilters\"" }, { - "id": 1990, + "id": 2022, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -7978,14 +7978,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3057, + "line": 3072, "character": 4 } ], "defaultValue": "\"GetIframeUrl\"" }, { - "id": 2040, + "id": 2072, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -8007,14 +8007,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4001, + "line": 4037, "character": 4 } ], "defaultValue": "\"GetParameters\"" }, { - "id": 2015, + "id": 2047, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -8043,14 +8043,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3515, + "line": 3530, "character": 4 } ], "defaultValue": "\"getTML\"" }, { - "id": 2031, + "id": 2063, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -8071,14 +8071,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3864, + "line": 3900, "character": 4 } ], "defaultValue": "\"getTabs\"" }, { - "id": 2000, + "id": 2032, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -8099,14 +8099,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3265, + "line": 3280, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2007, + "id": 2039, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -8143,14 +8143,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3363, + "line": 3378, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2011, + "id": 2043, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -8184,14 +8184,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3425, + "line": 3440, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2027, + "id": 2059, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -8217,14 +8217,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3738, + "line": 3774, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 1994, + "id": 2026, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -8250,14 +8250,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3130, + "line": 3145, "character": 4 } ], "defaultValue": "\"Navigate\"" }, { - "id": 1995, + "id": 2027, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -8287,14 +8287,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3150, + "line": 3165, "character": 4 } ], "defaultValue": "\"openFilter\"" }, { - "id": 1999, + "id": 2031, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -8355,14 +8355,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3255, + "line": 3270, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2014, + "id": 2046, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -8388,14 +8388,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3491, + "line": 3506, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2048, + "id": 2080, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -8416,14 +8416,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4107, + "line": 4143, "character": 4 } ], "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 2008, + "id": 2040, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -8448,14 +8448,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3377, + "line": 3392, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1997, + "id": 2029, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -8481,14 +8481,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3170, + "line": 3185, "character": 4 } ], "defaultValue": "\"removeColumn\"" }, { - "id": 2038, + "id": 2070, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8509,14 +8509,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3969, + "line": 4005, "character": 4 } ], "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 2028, + "id": 2060, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -8537,14 +8537,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3750, + "line": 3786, "character": 4 } ], "defaultValue": "\"resetSearch\"" }, { - "id": 2049, + "id": 2081, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -8565,29 +8565,29 @@ "sources": [ { "fileName": "types.ts", - "line": 4116, + "line": 4152, "character": 4 } ], "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 2024, + "id": 2056, "name": "Save", "kind": 16, "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Trigger the **Save** action on a Liveboard or Answer.\nSaves the changes.", + "shortText": "Trigger the **Save** action on a Liveboard, Answer, or Spotter.\nSaves the changes.", "tags": [ { "tag": "param", - "text": "`vizId` refers to the Answer ID in Spotter embed and is required in Spotter embed.", + "text": "`vizId` refers to the Spotter Visualization Id used in Spotter embed.\nIt is required and can be retrieved from the data embed event.\n", "param": "-" }, { "tag": "example", - "text": "\n```js\nliveboardEmbed.trigger(HostEvent.Save)\n```\n```js\nsearchEmbed.trigger(HostEvent.Save)\n```\n```js\nspotterEmbed.trigger(HostEvent.Save, {\n vizId:\"730496d6-6903-4601-937e-2c691821af3c\"\n})\n```" + "text": "\n```js\n// Save changes in a Liveboard\nliveboardEmbed.trigger(HostEvent.Save)\n```\n\n```js\n// Save the current Answer in Search embed\nsearchEmbed.trigger(HostEvent.Save)\n```\n\n```js\n// Save an Answer in Spotter (requires vizId)\nspotterEmbed.trigger(HostEvent.Save, {\n vizId: \"730496d6-6903-4601-937e-2c691821af3c\"\n})\n```\n\n```js\n// How to get the vizId in Spotter?\n\n// You can use the Data event dispatched on each answer creation to get the vizId.\nlet latestSpotterVizId = '';\nspotterEmbed.on(EmbedEvent.Data, (payload) => {\n latestSpotterVizId = payload.data.id;\n});\n\nspotterEmbed.trigger(HostEvent.Save, { vizId: latestSpotterVizId });\n```\n" }, { "tag": "version", @@ -8598,14 +8598,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3691, + "line": 3727, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2043, + "id": 2075, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -8640,14 +8640,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4048, + "line": 4084, "character": 4 } ], "defaultValue": "\"saveAnswer\"" }, { - "id": 2001, + "id": 2033, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -8668,14 +8668,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3274, + "line": 3289, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2002, + "id": 2034, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -8696,14 +8696,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3283, + "line": 3298, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1986, + "id": 2018, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -8735,14 +8735,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2984, + "line": 2999, "character": 4 } ], "defaultValue": "\"search\"" }, { - "id": 1992, + "id": 2024, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -8768,14 +8768,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3082, + "line": 3097, "character": 4 } ], "defaultValue": "\"SetActiveTab\"" }, { - "id": 2033, + "id": 2065, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -8801,14 +8801,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3890, + "line": 3926, "character": 4 } ], "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 2032, + "id": 2064, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -8834,14 +8834,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3877, + "line": 3913, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 1991, + "id": 2023, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -8867,14 +8867,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3070, + "line": 3085, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 2023, + "id": 2055, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8895,14 +8895,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3672, + "line": 3687, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2016, + "id": 2048, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -8928,14 +8928,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3534, + "line": 3549, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2018, + "id": 2050, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -8961,14 +8961,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3571, + "line": 3586, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2046, + "id": 2078, "name": "SpotterSearch", "kind": 16, "kindString": "Enumeration member", @@ -8999,14 +8999,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4088, + "line": 4124, "character": 4 } ], "defaultValue": "\"SpotterSearch\"" }, { - "id": 2026, + "id": 2058, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -9032,14 +9032,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3722, + "line": 3758, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2025, + "id": 2057, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -9065,14 +9065,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3706, + "line": 3742, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2045, + "id": 2077, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -9098,14 +9098,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4073, + "line": 4109, "character": 4 } ], "defaultValue": "\"TransformTableVizData\"" }, { - "id": 2037, + "id": 2069, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -9126,14 +9126,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3960, + "line": 3996, "character": 4 } ], "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 2030, + "id": 2062, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -9176,14 +9176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3851, + "line": 3887, "character": 4 } ], "defaultValue": "\"updateFilters\"" }, { - "id": 2039, + "id": 2071, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -9200,14 +9200,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3983, + "line": 4019, "character": 4 } ], "defaultValue": "\"UpdateParameters\"" }, { - "id": 2041, + "id": 2073, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -9224,14 +9224,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4009, + "line": 4045, "character": 4 } ], "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 1993, + "id": 2025, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -9262,14 +9262,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3118, + "line": 3133, "character": 4 } ], "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 2034, + "id": 2066, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -9300,14 +9300,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3904, + "line": 3940, "character": 4 } ], "defaultValue": "\"updateSageQuery\"" }, { - "id": 2005, + "id": 2037, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -9328,14 +9328,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3312, + "line": 3327, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1998, + "id": 2030, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -9356,7 +9356,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3186, + "line": 3201, "character": 4 } ], @@ -9368,82 +9368,82 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1996, + 2028, + 2083, + 2068, + 2086, + 2045, + 2042, + 2049, + 2082, 2051, - 2036, + 2053, + 2038, + 2052, 2054, - 2013, - 2010, - 2017, - 2050, 2019, - 2021, - 2006, - 2020, + 2044, + 2079, + 2036, + 2041, + 2035, + 2067, + 2061, 2022, - 1987, - 2012, + 2072, 2047, - 2004, - 2009, - 2003, - 2035, - 2029, - 1990, - 2040, - 2015, - 2031, - 2000, - 2007, - 2011, - 2027, - 1994, - 1995, - 1999, - 2014, - 2048, - 2008, - 1997, - 2038, - 2028, - 2049, - 2024, + 2063, + 2032, + 2039, 2043, - 2001, - 2002, - 1986, - 1992, + 2059, + 2026, + 2027, + 2031, + 2046, + 2080, + 2040, + 2029, + 2070, + 2060, + 2081, + 2056, + 2075, 2033, - 2032, - 1991, - 2023, - 2016, + 2034, 2018, - 2046, - 2026, + 2024, + 2065, + 2064, + 2023, + 2055, + 2048, + 2050, + 2078, + 2058, + 2057, + 2077, + 2069, + 2062, + 2071, + 2073, 2025, - 2045, + 2066, 2037, - 2030, - 2039, - 2041, - 1993, - 2034, - 2005, - 1998 + 2030 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2964, + "line": 2979, "character": 12 } ] }, { - "id": 2818, + "id": 2854, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -9459,7 +9459,7 @@ }, "children": [ { - "id": 2819, + "id": 2855, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -9477,7 +9477,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2820, + "id": 2856, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -9500,8 +9500,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2819, - 2820 + 2855, + 2856 ] } ], @@ -9514,7 +9514,7 @@ ] }, { - "id": 2851, + "id": 2887, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -9530,7 +9530,7 @@ }, "children": [ { - "id": 2854, + "id": 2890, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -9541,14 +9541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1696, + "line": 1711, "character": 4 } ], "defaultValue": "\"AUTHOR\"" }, { - "id": 2855, + "id": 2891, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -9559,14 +9559,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1700, + "line": 1715, "character": 4 } ], "defaultValue": "\"DATE_SORT\"" }, { - "id": 2852, + "id": 2888, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -9577,14 +9577,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1688, + "line": 1703, "character": 4 } ], "defaultValue": "\"FAVOURITE\"" }, { - "id": 2856, + "id": 2892, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -9595,14 +9595,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1704, + "line": 1719, "character": 4 } ], "defaultValue": "\"SHARE\"" }, { - "id": 2853, + "id": 2889, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -9613,7 +9613,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1692, + "line": 1707, "character": 4 } ], @@ -9625,24 +9625,24 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2854, - 2855, - 2852, - 2856, - 2853 + 2890, + 2891, + 2888, + 2892, + 2889 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1684, + "line": 1699, "character": 12 } ] }, { - "id": 2786, + "id": 2822, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -9652,7 +9652,7 @@ }, "children": [ { - "id": 2791, + "id": 2827, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -9673,14 +9673,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5823, + "line": 5871, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2788, + "id": 2824, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -9701,14 +9701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5784, + "line": 5832, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2790, + "id": 2826, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -9729,14 +9729,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5809, + "line": 5857, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2787, + "id": 2823, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -9757,14 +9757,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5772, + "line": 5820, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2792, + "id": 2828, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -9785,14 +9785,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5835, + "line": 5883, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2789, + "id": 2825, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -9813,7 +9813,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5796, + "line": 5844, "character": 4 } ], @@ -9825,25 +9825,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2791, - 2788, - 2790, - 2787, - 2792, - 2789 + 2827, + 2824, + 2826, + 2823, + 2828, + 2825 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5759, + "line": 5807, "character": 12 } ] }, { - "id": 1851, + "id": 1883, "name": "Page", "kind": 4, "kindString": "Enumeration", @@ -9853,7 +9853,7 @@ }, "children": [ { - "id": 1854, + "id": 1886, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -9871,7 +9871,7 @@ "defaultValue": "\"answers\"" }, { - "id": 1857, + "id": 1889, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -9889,7 +9889,7 @@ "defaultValue": "\"data\"" }, { - "id": 1852, + "id": 1884, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -9907,7 +9907,7 @@ "defaultValue": "\"home\"" }, { - "id": 1855, + "id": 1887, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -9925,7 +9925,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 1859, + "id": 1891, "name": "Monitor", "kind": 16, "kindString": "Enumeration member", @@ -9943,7 +9943,7 @@ "defaultValue": "\"monitor\"" }, { - "id": 1853, + "id": 1885, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -9961,7 +9961,7 @@ "defaultValue": "\"search\"" }, { - "id": 1858, + "id": 1890, "name": "SpotIQ", "kind": 16, "kindString": "Enumeration member", @@ -9984,13 +9984,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1854, - 1857, - 1852, - 1855, - 1859, - 1853, - 1858 + 1886, + 1889, + 1884, + 1887, + 1891, + 1885, + 1890 ] } ], @@ -10003,14 +10003,14 @@ ] }, { - "id": 2545, + "id": 2580, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2546, + "id": 2581, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -10018,14 +10018,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5650, + "line": 5698, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2548, + "id": 2583, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10033,14 +10033,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5652, + "line": 5700, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2547, + "id": 2582, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10048,14 +10048,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5651, + "line": 5699, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2549, + "id": 2584, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10063,7 +10063,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5653, + "line": 5701, "character": 4 } ], @@ -10075,23 +10075,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2546, - 2548, - 2547, - 2549 + 2581, + 2583, + 2582, + 2584 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5649, + "line": 5697, "character": 12 } ] }, { - "id": 2813, + "id": 2849, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -10107,7 +10107,7 @@ }, "children": [ { - "id": 2814, + "id": 2850, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -10130,7 +10130,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2814 + 2850 ] } ], @@ -10143,7 +10143,7 @@ ] }, { - "id": 1876, + "id": 1908, "name": "RuntimeFilterOp", "kind": 4, "kindString": "Enumeration", @@ -10153,7 +10153,7 @@ }, "children": [ { - "id": 1884, + "id": 1916, "name": "BEGINS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -10164,14 +10164,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1612, + "line": 1627, "character": 4 } ], "defaultValue": "\"BEGINS_WITH\"" }, { - "id": 1889, + "id": 1921, "name": "BW", "kind": 16, "kindString": "Enumeration member", @@ -10182,14 +10182,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1632, + "line": 1647, "character": 4 } ], "defaultValue": "\"BW\"" }, { - "id": 1888, + "id": 1920, "name": "BW_INC", "kind": 16, "kindString": "Enumeration member", @@ -10200,14 +10200,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1628, + "line": 1643, "character": 4 } ], "defaultValue": "\"BW_INC\"" }, { - "id": 1886, + "id": 1918, "name": "BW_INC_MAX", "kind": 16, "kindString": "Enumeration member", @@ -10218,14 +10218,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1620, + "line": 1635, "character": 4 } ], "defaultValue": "\"BW_INC_MAX\"" }, { - "id": 1887, + "id": 1919, "name": "BW_INC_MIN", "kind": 16, "kindString": "Enumeration member", @@ -10236,14 +10236,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1624, + "line": 1639, "character": 4 } ], "defaultValue": "\"BW_INC_MIN\"" }, { - "id": 1883, + "id": 1915, "name": "CONTAINS", "kind": 16, "kindString": "Enumeration member", @@ -10254,14 +10254,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1608, + "line": 1623, "character": 4 } ], "defaultValue": "\"CONTAINS\"" }, { - "id": 1885, + "id": 1917, "name": "ENDS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -10272,14 +10272,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1616, + "line": 1631, "character": 4 } ], "defaultValue": "\"ENDS_WITH\"" }, { - "id": 1877, + "id": 1909, "name": "EQ", "kind": 16, "kindString": "Enumeration member", @@ -10290,14 +10290,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1584, + "line": 1599, "character": 4 } ], "defaultValue": "\"EQ\"" }, { - "id": 1882, + "id": 1914, "name": "GE", "kind": 16, "kindString": "Enumeration member", @@ -10308,14 +10308,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1604, + "line": 1619, "character": 4 } ], "defaultValue": "\"GE\"" }, { - "id": 1881, + "id": 1913, "name": "GT", "kind": 16, "kindString": "Enumeration member", @@ -10326,14 +10326,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1600, + "line": 1615, "character": 4 } ], "defaultValue": "\"GT\"" }, { - "id": 1890, + "id": 1922, "name": "IN", "kind": 16, "kindString": "Enumeration member", @@ -10344,14 +10344,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1636, + "line": 1651, "character": 4 } ], "defaultValue": "\"IN\"" }, { - "id": 1880, + "id": 1912, "name": "LE", "kind": 16, "kindString": "Enumeration member", @@ -10362,14 +10362,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1596, + "line": 1611, "character": 4 } ], "defaultValue": "\"LE\"" }, { - "id": 1879, + "id": 1911, "name": "LT", "kind": 16, "kindString": "Enumeration member", @@ -10380,14 +10380,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1592, + "line": 1607, "character": 4 } ], "defaultValue": "\"LT\"" }, { - "id": 1878, + "id": 1910, "name": "NE", "kind": 16, "kindString": "Enumeration member", @@ -10398,14 +10398,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1588, + "line": 1603, "character": 4 } ], "defaultValue": "\"NE\"" }, { - "id": 1891, + "id": 1923, "name": "NOT_IN", "kind": 16, "kindString": "Enumeration member", @@ -10416,7 +10416,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1640, + "line": 1655, "character": 4 } ], @@ -10428,41 +10428,41 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1884, - 1889, - 1888, - 1886, - 1887, - 1883, - 1885, - 1877, - 1882, - 1881, - 1890, - 1880, - 1879, - 1878, - 1891 + 1916, + 1921, + 1920, + 1918, + 1919, + 1915, + 1917, + 1909, + 1914, + 1913, + 1922, + 1912, + 1911, + 1910, + 1923 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1580, + "line": 1595, "character": 12 } ] }, { - "id": 2844, + "id": 2880, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2849, + "id": 2885, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -10477,7 +10477,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2848, + "id": 2884, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -10492,7 +10492,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2847, + "id": 2883, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -10507,7 +10507,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2850, + "id": 2886, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -10522,7 +10522,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2845, + "id": 2881, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -10537,7 +10537,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2846, + "id": 2882, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -10557,12 +10557,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2849, - 2848, - 2847, - 2850, - 2845, - 2846 + 2885, + 2884, + 2883, + 2886, + 2881, + 2882 ] } ], @@ -10575,7 +10575,7 @@ ] }, { - "id": 1768, + "id": 1800, "name": "AnswerService", "kind": 128, "kindString": "Class", @@ -10604,7 +10604,7 @@ }, "children": [ { - "id": 1769, + "id": 1801, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -10621,7 +10621,7 @@ ], "signatures": [ { - "id": 1770, + "id": 1802, "name": "new AnswerService", "kind": 16384, "kindString": "Constructor signature", @@ -10631,7 +10631,7 @@ }, "parameters": [ { - "id": 1771, + "id": 1803, "name": "session", "kind": 32768, "kindString": "Parameter", @@ -10639,12 +10639,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1841, + "id": 1873, "name": "SessionInterface" } }, { - "id": 1772, + "id": 1804, "name": "answer", "kind": 32768, "kindString": "Parameter", @@ -10656,7 +10656,7 @@ } }, { - "id": 1773, + "id": 1805, "name": "thoughtSpotHost", "kind": 32768, "kindString": "Parameter", @@ -10668,7 +10668,7 @@ } }, { - "id": 1774, + "id": 1806, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -10682,7 +10682,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2821, + "id": 2857, "name": "VizPoint" } } @@ -10690,14 +10690,14 @@ ], "type": { "type": "reference", - "id": 1768, + "id": 1800, "name": "AnswerService" } } ] }, { - "id": 1783, + "id": 1815, "name": "addColumns", "kind": 2048, "kindString": "Method", @@ -10713,7 +10713,7 @@ ], "signatures": [ { - "id": 1784, + "id": 1816, "name": "addColumns", "kind": 4096, "kindString": "Call signature", @@ -10724,7 +10724,7 @@ }, "parameters": [ { - "id": 1785, + "id": 1817, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -10753,7 +10753,7 @@ ] }, { - "id": 1786, + "id": 1818, "name": "addColumnsByName", "kind": 2048, "kindString": "Method", @@ -10769,7 +10769,7 @@ ], "signatures": [ { - "id": 1787, + "id": 1819, "name": "addColumnsByName", "kind": 4096, "kindString": "Call signature", @@ -10785,7 +10785,7 @@ }, "parameters": [ { - "id": 1788, + "id": 1820, "name": "columnNames", "kind": 32768, "kindString": "Parameter", @@ -10814,7 +10814,7 @@ ] }, { - "id": 1835, + "id": 1867, "name": "addDisplayedVizToLiveboard", "kind": 2048, "kindString": "Method", @@ -10830,14 +10830,14 @@ ], "signatures": [ { - "id": 1836, + "id": 1868, "name": "addDisplayedVizToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1837, + "id": 1869, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -10862,7 +10862,7 @@ ] }, { - "id": 1789, + "id": 1821, "name": "addFilter", "kind": 2048, "kindString": "Method", @@ -10878,7 +10878,7 @@ ], "signatures": [ { - "id": 1790, + "id": 1822, "name": "addFilter", "kind": 4096, "kindString": "Call signature", @@ -10889,7 +10889,7 @@ }, "parameters": [ { - "id": 1791, + "id": 1823, "name": "columnName", "kind": 32768, "kindString": "Parameter", @@ -10901,7 +10901,7 @@ } }, { - "id": 1792, + "id": 1824, "name": "operator", "kind": 32768, "kindString": "Parameter", @@ -10909,12 +10909,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1876, + "id": 1908, "name": "RuntimeFilterOp" } }, { - "id": 1793, + "id": 1825, "name": "values", "kind": 32768, "kindString": "Parameter", @@ -10960,7 +10960,7 @@ ] }, { - "id": 1825, + "id": 1857, "name": "executeQuery", "kind": 2048, "kindString": "Method", @@ -10976,7 +10976,7 @@ ], "signatures": [ { - "id": 1826, + "id": 1858, "name": "executeQuery", "kind": 4096, "kindString": "Call signature", @@ -10987,7 +10987,7 @@ }, "parameters": [ { - "id": 1827, + "id": 1859, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -11001,7 +11001,7 @@ } }, { - "id": 1828, + "id": 1860, "name": "variables", "kind": 32768, "kindString": "Parameter", @@ -11029,7 +11029,7 @@ ] }, { - "id": 1803, + "id": 1835, "name": "fetchCSVBlob", "kind": 2048, "kindString": "Method", @@ -11045,7 +11045,7 @@ ], "signatures": [ { - "id": 1804, + "id": 1836, "name": "fetchCSVBlob", "kind": 4096, "kindString": "Call signature", @@ -11056,7 +11056,7 @@ }, "parameters": [ { - "id": 1805, + "id": 1837, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11069,7 +11069,7 @@ "defaultValue": "'en-us'" }, { - "id": 1806, + "id": 1838, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -11098,7 +11098,7 @@ ] }, { - "id": 1796, + "id": 1828, "name": "fetchData", "kind": 2048, "kindString": "Method", @@ -11114,7 +11114,7 @@ ], "signatures": [ { - "id": 1797, + "id": 1829, "name": "fetchData", "kind": 4096, "kindString": "Call signature", @@ -11125,7 +11125,7 @@ }, "parameters": [ { - "id": 1798, + "id": 1830, "name": "offset", "kind": 32768, "kindString": "Parameter", @@ -11138,7 +11138,7 @@ "defaultValue": "0" }, { - "id": 1799, + "id": 1831, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -11157,14 +11157,14 @@ { "type": "reflection", "declaration": { - "id": 1800, + "id": 1832, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1801, + "id": 1833, "name": "columns", "kind": 1024, "kindString": "Property", @@ -11175,7 +11175,7 @@ } }, { - "id": 1802, + "id": 1834, "name": "data", "kind": 1024, "kindString": "Property", @@ -11191,8 +11191,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1801, - 1802 + 1833, + 1834 ] } ] @@ -11205,7 +11205,7 @@ ] }, { - "id": 1807, + "id": 1839, "name": "fetchPNGBlob", "kind": 2048, "kindString": "Method", @@ -11221,7 +11221,7 @@ ], "signatures": [ { - "id": 1808, + "id": 1840, "name": "fetchPNGBlob", "kind": 4096, "kindString": "Call signature", @@ -11232,7 +11232,7 @@ }, "parameters": [ { - "id": 1809, + "id": 1841, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11245,7 +11245,7 @@ "defaultValue": "'en-us'" }, { - "id": 1810, + "id": 1842, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -11260,7 +11260,7 @@ "defaultValue": "false" }, { - "id": 1811, + "id": 1843, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -11289,7 +11289,7 @@ ] }, { - "id": 1831, + "id": 1863, "name": "getAnswer", "kind": 2048, "kindString": "Method", @@ -11305,7 +11305,7 @@ ], "signatures": [ { - "id": 1832, + "id": 1864, "name": "getAnswer", "kind": 4096, "kindString": "Call signature", @@ -11324,7 +11324,7 @@ ] }, { - "id": 1812, + "id": 1844, "name": "getFetchCSVBlobUrl", "kind": 2048, "kindString": "Method", @@ -11340,7 +11340,7 @@ ], "signatures": [ { - "id": 1813, + "id": 1845, "name": "getFetchCSVBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -11351,7 +11351,7 @@ }, "parameters": [ { - "id": 1814, + "id": 1846, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11364,7 +11364,7 @@ "defaultValue": "'en-us'" }, { - "id": 1815, + "id": 1847, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -11385,7 +11385,7 @@ ] }, { - "id": 1816, + "id": 1848, "name": "getFetchPNGBlobUrl", "kind": 2048, "kindString": "Method", @@ -11401,7 +11401,7 @@ ], "signatures": [ { - "id": 1817, + "id": 1849, "name": "getFetchPNGBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -11411,7 +11411,7 @@ }, "parameters": [ { - "id": 1818, + "id": 1850, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11424,7 +11424,7 @@ "defaultValue": "'en-us'" }, { - "id": 1819, + "id": 1851, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -11437,7 +11437,7 @@ "defaultValue": "false" }, { - "id": 1820, + "id": 1852, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -11460,7 +11460,7 @@ ] }, { - "id": 1794, + "id": 1826, "name": "getSQLQuery", "kind": 2048, "kindString": "Method", @@ -11476,7 +11476,7 @@ ], "signatures": [ { - "id": 1795, + "id": 1827, "name": "getSQLQuery", "kind": 4096, "kindString": "Call signature", @@ -11495,7 +11495,7 @@ ] }, { - "id": 1829, + "id": 1861, "name": "getSession", "kind": 2048, "kindString": "Method", @@ -11511,7 +11511,7 @@ ], "signatures": [ { - "id": 1830, + "id": 1862, "name": "getSession", "kind": 4096, "kindString": "Call signature", @@ -11522,14 +11522,14 @@ }, "type": { "type": "reference", - "id": 1841, + "id": 1873, "name": "SessionInterface" } } ] }, { - "id": 1778, + "id": 1810, "name": "getSourceDetail", "kind": 2048, "kindString": "Method", @@ -11545,7 +11545,7 @@ ], "signatures": [ { - "id": 1779, + "id": 1811, "name": "getSourceDetail", "kind": 4096, "kindString": "Call signature", @@ -11567,7 +11567,7 @@ ] }, { - "id": 1833, + "id": 1865, "name": "getTML", "kind": 2048, "kindString": "Method", @@ -11583,7 +11583,7 @@ ], "signatures": [ { - "id": 1834, + "id": 1866, "name": "getTML", "kind": 4096, "kindString": "Call signature", @@ -11602,7 +11602,7 @@ ] }, { - "id": 1821, + "id": 1853, "name": "getUnderlyingDataForPoint", "kind": 2048, "kindString": "Method", @@ -11618,7 +11618,7 @@ ], "signatures": [ { - "id": 1822, + "id": 1854, "name": "getUnderlyingDataForPoint", "kind": 4096, "kindString": "Call signature", @@ -11638,7 +11638,7 @@ }, "parameters": [ { - "id": 1823, + "id": 1855, "name": "outputColumnNames", "kind": 32768, "kindString": "Parameter", @@ -11653,7 +11653,7 @@ } }, { - "id": 1824, + "id": 1856, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -11665,7 +11665,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1848, + "id": 1880, "name": "UnderlyingDataPoint" } } @@ -11676,7 +11676,7 @@ "typeArguments": [ { "type": "reference", - "id": 1768, + "id": 1800, "name": "AnswerService" } ], @@ -11686,7 +11686,7 @@ ] }, { - "id": 1780, + "id": 1812, "name": "removeColumns", "kind": 2048, "kindString": "Method", @@ -11702,7 +11702,7 @@ ], "signatures": [ { - "id": 1781, + "id": 1813, "name": "removeColumns", "kind": 4096, "kindString": "Call signature", @@ -11713,7 +11713,7 @@ }, "parameters": [ { - "id": 1782, + "id": 1814, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -11742,7 +11742,7 @@ ] }, { - "id": 1838, + "id": 1870, "name": "setTMLOverride", "kind": 2048, "kindString": "Method", @@ -11758,14 +11758,14 @@ ], "signatures": [ { - "id": 1839, + "id": 1871, "name": "setTMLOverride", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1840, + "id": 1872, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -11789,31 +11789,31 @@ "title": "Constructors", "kind": 512, "children": [ - 1769 + 1801 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1783, - 1786, + 1815, + 1818, + 1867, + 1821, + 1857, 1835, - 1789, - 1825, - 1803, - 1796, - 1807, - 1831, + 1828, + 1839, + 1863, + 1844, + 1848, + 1826, + 1861, + 1810, + 1865, + 1853, 1812, - 1816, - 1794, - 1829, - 1778, - 1833, - 1821, - 1780, - 1838 + 1870 ] } ], @@ -11826,7 +11826,7 @@ ] }, { - "id": 969, + "id": 989, "name": "AppEmbed", "kind": 128, "kindString": "Class", @@ -11842,7 +11842,7 @@ }, "children": [ { - "id": 970, + "id": 990, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -11856,40 +11856,40 @@ ], "signatures": [ { - "id": 971, + "id": 991, "name": "new AppEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 972, + "id": 992, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2574, + "id": 2609, "name": "DOMSelector" } }, { - "id": 973, + "id": 993, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2465, + "id": 2499, "name": "AppViewConfig" } } ], "type": { "type": "reference", - "id": 969, + "id": 989, "name": "AppEmbed" }, "overwrites": { @@ -11904,7 +11904,7 @@ } }, { - "id": 1007, + "id": 1027, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -11914,13 +11914,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 968, + "line": 973, "character": 11 } ], "signatures": [ { - "id": 1008, + "id": 1028, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -11950,7 +11950,7 @@ } }, { - "id": 1172, + "id": 1196, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -11960,13 +11960,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1517, + "line": 1533, "character": 17 } ], "signatures": [ { - "id": 1173, + "id": 1197, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -11982,7 +11982,7 @@ }, "parameters": [ { - "id": 1174, + "id": 1198, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -12003,7 +12003,7 @@ "typeArguments": [ { "type": "reference", - "id": 1768, + "id": 1800, "name": "AnswerService" } ], @@ -12021,7 +12021,7 @@ } }, { - "id": 984, + "id": 1004, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -12031,13 +12031,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 837, + "line": 842, "character": 11 } ], "signatures": [ { - "id": 985, + "id": 1005, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -12053,7 +12053,7 @@ ] }, { - "id": 1141, + "id": 1165, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -12063,13 +12063,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1270, + "line": 1281, "character": 11 } ], "signatures": [ { - "id": 1142, + "id": 1166, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -12090,7 +12090,7 @@ } }, { - "id": 1167, + "id": 1191, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -12100,13 +12100,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1504, + "line": 1520, "character": 11 } ], "signatures": [ { - "id": 1168, + "id": 1192, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -12128,14 +12128,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1169, + "id": 1193, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1171, + "id": 1195, "name": "child", "kind": 1024, "kindString": "Property", @@ -12147,7 +12147,7 @@ "defaultValue": "..." }, { - "id": 1170, + "id": 1194, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -12164,8 +12164,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1171, - 1170 + 1195, + 1194 ] } ] @@ -12183,7 +12183,7 @@ } }, { - "id": 1149, + "id": 1173, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -12193,13 +12193,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1304, + "line": 1316, "character": 11 } ], "signatures": [ { - "id": 1150, + "id": 1174, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -12215,7 +12215,7 @@ }, "parameters": [ { - "id": 1151, + "id": 1175, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -12223,20 +12223,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1152, + "id": 1176, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1153, + "id": 1177, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1154, + "id": 1178, "name": "key", "kind": 32768, "flags": {}, @@ -12281,7 +12281,7 @@ } }, { - "id": 1155, + "id": 1179, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -12291,13 +12291,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1356, "character": 11 } ], "signatures": [ { - "id": 1156, + "id": 1180, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -12318,7 +12318,7 @@ } }, { - "id": 1165, + "id": 1189, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -12328,13 +12328,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1476, + "line": 1492, "character": 11 } ], "signatures": [ { - "id": 1166, + "id": 1190, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -12358,7 +12358,7 @@ } }, { - "id": 1003, + "id": 1023, "name": "navigateToPage", "kind": 2048, "kindString": "Method", @@ -12368,13 +12368,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 942, + "line": 947, "character": 11 } ], "signatures": [ { - "id": 1004, + "id": 1024, "name": "navigateToPage", "kind": 4096, "kindString": "Call signature", @@ -12390,7 +12390,7 @@ }, "parameters": [ { - "id": 1005, + "id": 1025, "name": "path", "kind": 32768, "kindString": "Parameter", @@ -12413,7 +12413,7 @@ } }, { - "id": 1006, + "id": 1026, "name": "noReload", "kind": 32768, "kindString": "Parameter", @@ -12436,7 +12436,7 @@ ] }, { - "id": 1112, + "id": 1136, "name": "off", "kind": 2048, "kindString": "Method", @@ -12446,13 +12446,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1110, + "line": 1121, "character": 11 } ], "signatures": [ { - "id": 1113, + "id": 1137, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -12468,7 +12468,7 @@ }, "parameters": [ { - "id": 1114, + "id": 1138, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12478,12 +12478,12 @@ }, "type": { "type": "reference", - "id": 1892, + "id": 1924, "name": "EmbedEvent" } }, { - "id": 1115, + "id": 1139, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -12493,7 +12493,7 @@ }, "type": { "type": "reference", - "id": 2578, + "id": 2613, "name": "MessageCallback" } } @@ -12514,7 +12514,7 @@ } }, { - "id": 1022, + "id": 1042, "name": "on", "kind": 2048, "kindString": "Method", @@ -12524,13 +12524,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1626, + "line": 1642, "character": 11 } ], "signatures": [ { - "id": 1023, + "id": 1043, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -12553,38 +12553,38 @@ }, "parameters": [ { - "id": 1024, + "id": 1044, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1892, + "id": 1924, "name": "EmbedEvent" } }, { - "id": 1025, + "id": 1045, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2578, + "id": 2613, "name": "MessageCallback" } }, { - "id": 1026, + "id": 1046, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2575, + "id": 2610, "name": "MessageOptions" }, "defaultValue": "..." @@ -12606,7 +12606,7 @@ } }, { - "id": 1145, + "id": 1169, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -12616,13 +12616,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1282, + "line": 1294, "character": 17 } ], "signatures": [ { - "id": 1146, + "id": 1170, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -12632,7 +12632,7 @@ }, "parameters": [ { - "id": 1147, + "id": 1171, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -12647,7 +12647,7 @@ "defaultValue": "false" }, { - "id": 1148, + "id": 1172, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -12681,7 +12681,7 @@ } }, { - "id": 1157, + "id": 1181, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -12691,13 +12691,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1355, + "line": 1367, "character": 17 } ], "signatures": [ { - "id": 1158, + "id": 1182, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -12734,7 +12734,7 @@ } }, { - "id": 1015, + "id": 1035, "name": "render", "kind": 2048, "kindString": "Method", @@ -12744,13 +12744,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 997, + "line": 1002, "character": 17 } ], "signatures": [ { - "id": 1016, + "id": 1036, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -12763,7 +12763,7 @@ "typeArguments": [ { "type": "reference", - "id": 969, + "id": 989, "name": "AppEmbed" } ], @@ -12781,7 +12781,7 @@ } }, { - "id": 1161, + "id": 1185, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -12791,13 +12791,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1403, + "line": 1415, "character": 17 } ], "signatures": [ { - "id": 1162, + "id": 1186, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -12827,7 +12827,7 @@ } }, { - "id": 1163, + "id": 1187, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -12837,13 +12837,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1457, + "line": 1473, "character": 11 } ], "signatures": [ { - "id": 1164, + "id": 1188, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -12873,7 +12873,7 @@ } }, { - "id": 1130, + "id": 1154, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -12883,13 +12883,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1220, + "line": 1231, "character": 17 } ], "signatures": [ { - "id": 1131, + "id": 1155, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -12900,19 +12900,19 @@ }, "typeParameter": [ { - "id": 1132, + "id": 1156, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1985, + "id": 2017, "name": "HostEvent" } }, { - "id": 1133, + "id": 1157, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -12921,7 +12921,7 @@ ], "parameters": [ { - "id": 1134, + "id": 1158, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12935,7 +12935,7 @@ } }, { - "id": 1135, + "id": 1159, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -12992,7 +12992,7 @@ } }, { - "id": 1136, + "id": 1160, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -13002,13 +13002,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1246, + "line": 1257, "character": 17 } ], "signatures": [ { - "id": 1137, + "id": 1161, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -13019,21 +13019,21 @@ }, "typeParameter": [ { - "id": 1138, + "id": 1162, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2844, + "id": 2880, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1139, + "id": 1163, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -13047,7 +13047,7 @@ } }, { - "id": 1140, + "id": 1164, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -13100,31 +13100,31 @@ "title": "Constructors", "kind": 512, "children": [ - 970 + 990 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1007, - 1172, - 984, - 1141, - 1167, - 1149, - 1155, + 1027, + 1196, + 1004, 1165, - 1003, - 1112, - 1022, - 1145, - 1157, - 1015, - 1161, - 1163, - 1130, - 1136 + 1191, + 1173, + 1179, + 1189, + 1023, + 1136, + 1042, + 1169, + 1181, + 1035, + 1185, + 1187, + 1154, + 1160 ] } ], @@ -13143,7 +13143,7 @@ ] }, { - "id": 1265, + "id": 1289, "name": "BodylessConversation", "kind": 128, "kindString": "Class", @@ -13167,7 +13167,7 @@ }, "children": [ { - "id": 1266, + "id": 1290, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -13175,51 +13175,51 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 180, + "line": 185, "character": 4 } ], "signatures": [ { - "id": 1267, + "id": 1291, "name": "new BodylessConversation", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1268, + "id": 1292, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1236, + "id": 1260, "name": "BodylessConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1265, + "id": 1289, "name": "BodylessConversation" }, "overwrites": { "type": "reference", - "id": 1177, + "id": 1201, "name": "SpotterAgentEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1176, + "id": 1200, "name": "SpotterAgentEmbed.constructor" } }, { - "id": 1269, + "id": 1293, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -13229,20 +13229,20 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 113, + "line": 118, "character": 17 } ], "signatures": [ { - "id": 1270, + "id": 1294, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1271, + "id": 1295, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -13262,14 +13262,14 @@ { "type": "reflection", "declaration": { - "id": 1272, + "id": 1296, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1274, + "id": 1298, "name": "container", "kind": 1024, "kindString": "Property", @@ -13280,7 +13280,7 @@ } }, { - "id": 1273, + "id": 1297, "name": "error", "kind": 1024, "kindString": "Property", @@ -13291,7 +13291,7 @@ } }, { - "id": 1275, + "id": 1299, "name": "viz", "kind": 1024, "kindString": "Property", @@ -13308,9 +13308,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1274, - 1273, - 1275 + 1298, + 1297, + 1299 ] } ] @@ -13319,14 +13319,14 @@ { "type": "reflection", "declaration": { - "id": 1276, + "id": 1300, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1277, + "id": 1301, "name": "container", "kind": 1024, "kindString": "Property", @@ -13337,7 +13337,7 @@ } }, { - "id": 1279, + "id": 1303, "name": "error", "kind": 1024, "kindString": "Property", @@ -13348,7 +13348,7 @@ } }, { - "id": 1278, + "id": 1302, "name": "viz", "kind": 1024, "kindString": "Property", @@ -13365,9 +13365,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1277, - 1279, - 1278 + 1301, + 1303, + 1302 ] } ] @@ -13380,19 +13380,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1181, + "id": 1205, "name": "SpotterAgentEmbed.sendMessage" } } ], "inheritedFrom": { "type": "reference", - "id": 1180, + "id": 1204, "name": "SpotterAgentEmbed.sendMessage" } }, { - "id": 1280, + "id": 1304, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -13402,13 +13402,13 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 139, + "line": 144, "character": 17 } ], "signatures": [ { - "id": 1281, + "id": 1305, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -13419,7 +13419,7 @@ }, "parameters": [ { - "id": 1282, + "id": 1306, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -13442,14 +13442,14 @@ { "type": "reflection", "declaration": { - "id": 1283, + "id": 1307, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1285, + "id": 1309, "name": "data", "kind": 1024, "kindString": "Property", @@ -13461,7 +13461,7 @@ "defaultValue": "..." }, { - "id": 1284, + "id": 1308, "name": "error", "kind": 1024, "kindString": "Property", @@ -13477,8 +13477,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1285, - 1284 + 1309, + 1308 ] } ] @@ -13487,14 +13487,14 @@ { "type": "reflection", "declaration": { - "id": 1286, + "id": 1310, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1287, + "id": 1311, "name": "data", "kind": 1024, "kindString": "Property", @@ -13502,14 +13502,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1288, + "id": 1312, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1294, + "id": 1318, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -13521,7 +13521,7 @@ "defaultValue": "..." }, { - "id": 1293, + "id": 1317, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -13533,7 +13533,7 @@ "defaultValue": "..." }, { - "id": 1289, + "id": 1313, "name": "convId", "kind": 1024, "kindString": "Property", @@ -13545,7 +13545,7 @@ "defaultValue": "..." }, { - "id": 1292, + "id": 1316, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -13557,7 +13557,7 @@ "defaultValue": "..." }, { - "id": 1290, + "id": 1314, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -13569,7 +13569,7 @@ "defaultValue": "..." }, { - "id": 1291, + "id": 1315, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -13586,12 +13586,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1294, - 1293, - 1289, - 1292, - 1290, - 1291 + 1318, + 1317, + 1313, + 1316, + 1314, + 1315 ] } ] @@ -13600,7 +13600,7 @@ "defaultValue": "..." }, { - "id": 1295, + "id": 1319, "name": "error", "kind": 1024, "kindString": "Property", @@ -13616,8 +13616,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1287, - 1295 + 1311, + 1319 ] } ] @@ -13630,14 +13630,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1192, + "id": 1216, "name": "SpotterAgentEmbed.sendMessageData" } } ], "inheritedFrom": { "type": "reference", - "id": 1191, + "id": 1215, "name": "SpotterAgentEmbed.sendMessageData" } } @@ -13647,35 +13647,35 @@ "title": "Constructors", "kind": 512, "children": [ - 1266 + 1290 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1269, - 1280 + 1293, + 1304 ] } ], "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 179, + "line": 184, "character": 13 } ], "extendedTypes": [ { "type": "reference", - "id": 1175, + "id": 1199, "name": "SpotterAgentEmbed" } ] }, { - "id": 1536, + "id": 1564, "name": "ConversationEmbed", "kind": 128, "kindString": "Class", @@ -13703,7 +13703,7 @@ }, "children": [ { - "id": 1537, + "id": 1565, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -13711,20 +13711,20 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 288, + "line": 303, "character": 4 } ], "signatures": [ { - "id": 1538, + "id": 1566, "name": "new ConversationEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1539, + "id": 1567, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -13735,38 +13735,38 @@ } }, { - "id": 1540, + "id": 1568, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1497, + "id": 1525, "name": "ConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1536, + "id": 1564, "name": "ConversationEmbed" }, "overwrites": { "type": "reference", - "id": 1298, + "id": 1322, "name": "SpotterEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1297, + "id": 1321, "name": "SpotterEmbed.constructor" } }, { - "id": 1676, + "id": 1708, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -13776,13 +13776,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1334, + "line": 1346, "character": 11 } ], "signatures": [ { - "id": 1677, + "id": 1709, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -13802,19 +13802,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1437, + "id": 1465, "name": "SpotterEmbed.destroy" } } ], "inheritedFrom": { "type": "reference", - "id": 1436, + "id": 1464, "name": "SpotterEmbed.destroy" } }, { - "id": 1695, + "id": 1727, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -13824,13 +13824,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1517, + "line": 1533, "character": 17 } ], "signatures": [ { - "id": 1696, + "id": 1728, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -13846,7 +13846,7 @@ }, "parameters": [ { - "id": 1697, + "id": 1729, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -13867,7 +13867,7 @@ "typeArguments": [ { "type": "reference", - "id": 1768, + "id": 1800, "name": "AnswerService" } ], @@ -13875,19 +13875,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1456, + "id": 1484, "name": "SpotterEmbed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "id": 1455, + "id": 1483, "name": "SpotterEmbed.getAnswerService" } }, { - "id": 1542, + "id": 1572, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -13897,13 +13897,13 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 199, + "line": 241, "character": 11 } ], "signatures": [ { - "id": 1543, + "id": 1573, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -13914,19 +13914,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1303, + "id": 1329, "name": "SpotterEmbed.getIframeSrc" } } ], "inheritedFrom": { "type": "reference", - "id": 1302, + "id": 1328, "name": "SpotterEmbed.getIframeSrc" } }, { - "id": 1690, + "id": 1722, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -13936,13 +13936,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1504, + "line": 1520, "character": 11 } ], "signatures": [ { - "id": 1691, + "id": 1723, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -13964,14 +13964,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1692, + "id": 1724, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1694, + "id": 1726, "name": "child", "kind": 1024, "kindString": "Property", @@ -13983,7 +13983,7 @@ "defaultValue": "..." }, { - "id": 1693, + "id": 1725, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -14000,8 +14000,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1694, - 1693 + 1726, + 1725 ] } ] @@ -14009,19 +14009,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1451, + "id": 1479, "name": "SpotterEmbed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "id": 1450, + "id": 1478, "name": "SpotterEmbed.getPreRenderIds" } }, { - "id": 1670, + "id": 1702, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -14031,13 +14031,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1304, + "line": 1316, "character": 11 } ], "signatures": [ { - "id": 1671, + "id": 1703, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -14053,7 +14053,7 @@ }, "parameters": [ { - "id": 1672, + "id": 1704, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -14061,20 +14061,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1673, + "id": 1705, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1674, + "id": 1706, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1675, + "id": 1707, "name": "key", "kind": 32768, "flags": {}, @@ -14109,19 +14109,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1431, + "id": 1459, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "id": 1430, + "id": 1458, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } }, { - "id": 1678, + "id": 1710, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -14131,13 +14131,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1356, "character": 11 } ], "signatures": [ { - "id": 1679, + "id": 1711, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -14148,19 +14148,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1439, + "id": 1467, "name": "SpotterEmbed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "id": 1438, + "id": 1466, "name": "SpotterEmbed.getUnderlyingFrameElement" } }, { - "id": 1688, + "id": 1720, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -14170,13 +14170,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1476, + "line": 1492, "character": 11 } ], "signatures": [ { - "id": 1689, + "id": 1721, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -14190,19 +14190,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1449, + "id": 1477, "name": "SpotterEmbed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1448, + "id": 1476, "name": "SpotterEmbed.hidePreRender" } }, { - "id": 1635, + "id": 1667, "name": "off", "kind": 2048, "kindString": "Method", @@ -14212,13 +14212,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1110, + "line": 1121, "character": 11 } ], "signatures": [ { - "id": 1636, + "id": 1668, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -14234,7 +14234,7 @@ }, "parameters": [ { - "id": 1637, + "id": 1669, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14244,12 +14244,12 @@ }, "type": { "type": "reference", - "id": 1892, + "id": 1924, "name": "EmbedEvent" } }, { - "id": 1638, + "id": 1670, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14259,7 +14259,7 @@ }, "type": { "type": "reference", - "id": 2578, + "id": 2613, "name": "MessageCallback" } } @@ -14270,19 +14270,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1396, + "id": 1424, "name": "SpotterEmbed.off" } } ], "inheritedFrom": { "type": "reference", - "id": 1395, + "id": 1423, "name": "SpotterEmbed.off" } }, { - "id": 1629, + "id": 1661, "name": "on", "kind": 2048, "kindString": "Method", @@ -14292,13 +14292,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1081, + "line": 1092, "character": 11 } ], "signatures": [ { - "id": 1630, + "id": 1662, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -14318,7 +14318,7 @@ }, "parameters": [ { - "id": 1631, + "id": 1663, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14328,12 +14328,12 @@ }, "type": { "type": "reference", - "id": 1892, + "id": 1924, "name": "EmbedEvent" } }, { - "id": 1632, + "id": 1664, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14343,12 +14343,12 @@ }, "type": { "type": "reference", - "id": 2578, + "id": 2613, "name": "MessageCallback" } }, { - "id": 1633, + "id": 1665, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -14358,13 +14358,13 @@ }, "type": { "type": "reference", - "id": 2575, + "id": 2610, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1634, + "id": 1666, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -14383,19 +14383,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1390, + "id": 1418, "name": "SpotterEmbed.on" } } ], "inheritedFrom": { "type": "reference", - "id": 1389, + "id": 1417, "name": "SpotterEmbed.on" } }, { - "id": 1666, + "id": 1698, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -14405,13 +14405,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1282, + "line": 1294, "character": 17 } ], "signatures": [ { - "id": 1667, + "id": 1699, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -14421,7 +14421,7 @@ }, "parameters": [ { - "id": 1668, + "id": 1700, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -14436,7 +14436,7 @@ "defaultValue": "false" }, { - "id": 1669, + "id": 1701, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -14460,19 +14460,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1427, + "id": 1455, "name": "SpotterEmbed.preRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1426, + "id": 1454, "name": "SpotterEmbed.preRender" } }, { - "id": 1680, + "id": 1712, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -14482,13 +14482,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1355, + "line": 1367, "character": 17 } ], "signatures": [ { - "id": 1681, + "id": 1713, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -14515,19 +14515,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1441, + "id": 1469, "name": "SpotterEmbed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "id": 1440, + "id": 1468, "name": "SpotterEmbed.prerenderGeneric" } }, { - "id": 1544, + "id": 1574, "name": "render", "kind": 2048, "kindString": "Method", @@ -14537,13 +14537,13 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 261, + "line": 276, "character": 17 } ], "signatures": [ { - "id": 1545, + "id": 1575, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -14553,7 +14553,7 @@ "typeArguments": [ { "type": "reference", - "id": 1296, + "id": 1320, "name": "SpotterEmbed" } ], @@ -14561,19 +14561,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1305, + "id": 1331, "name": "SpotterEmbed.render" } } ], "inheritedFrom": { "type": "reference", - "id": 1304, + "id": 1330, "name": "SpotterEmbed.render" } }, { - "id": 1684, + "id": 1716, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -14583,13 +14583,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1403, + "line": 1415, "character": 17 } ], "signatures": [ { - "id": 1685, + "id": 1717, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -14609,19 +14609,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1445, + "id": 1473, "name": "SpotterEmbed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1444, + "id": 1472, "name": "SpotterEmbed.showPreRender" } }, { - "id": 1686, + "id": 1718, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -14631,13 +14631,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1457, + "line": 1473, "character": 11 } ], "signatures": [ { - "id": 1687, + "id": 1719, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -14657,19 +14657,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1447, + "id": 1475, "name": "SpotterEmbed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "id": 1446, + "id": 1474, "name": "SpotterEmbed.syncPreRenderStyle" } }, { - "id": 1653, + "id": 1685, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -14679,13 +14679,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1220, + "line": 1231, "character": 17 } ], "signatures": [ { - "id": 1654, + "id": 1686, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -14696,19 +14696,19 @@ }, "typeParameter": [ { - "id": 1655, + "id": 1687, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1985, + "id": 2017, "name": "HostEvent" } }, { - "id": 1656, + "id": 1688, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -14717,7 +14717,7 @@ ], "parameters": [ { - "id": 1657, + "id": 1689, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14731,7 +14731,7 @@ } }, { - "id": 1658, + "id": 1690, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -14778,19 +14778,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1414, + "id": 1442, "name": "SpotterEmbed.trigger" } } ], "inheritedFrom": { "type": "reference", - "id": 1413, + "id": 1441, "name": "SpotterEmbed.trigger" } }, { - "id": 1659, + "id": 1691, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -14800,13 +14800,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1246, + "line": 1257, "character": 17 } ], "signatures": [ { - "id": 1660, + "id": 1692, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -14817,21 +14817,21 @@ }, "typeParameter": [ { - "id": 1661, + "id": 1693, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2844, + "id": 2880, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1662, + "id": 1694, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -14845,7 +14845,7 @@ } }, { - "id": 1663, + "id": 1695, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -14883,14 +14883,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1420, + "id": 1448, "name": "SpotterEmbed.triggerUIPassThrough" } } ], "inheritedFrom": { "type": "reference", - "id": 1419, + "id": 1447, "name": "SpotterEmbed.triggerUIPassThrough" } } @@ -14900,49 +14900,49 @@ "title": "Constructors", "kind": 512, "children": [ - 1537 + 1565 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1676, - 1695, - 1542, - 1690, - 1670, - 1678, - 1688, - 1635, - 1629, - 1666, - 1680, - 1544, - 1684, - 1686, - 1653, - 1659 + 1708, + 1727, + 1572, + 1722, + 1702, + 1710, + 1720, + 1667, + 1661, + 1698, + 1712, + 1574, + 1716, + 1718, + 1685, + 1691 ] } ], "sources": [ { "fileName": "embed/conversation.ts", - "line": 287, + "line": 302, "character": 13 } ], "extendedTypes": [ { "type": "reference", - "id": 1296, + "id": 1320, "name": "SpotterEmbed" } ] }, { - "id": 578, + "id": 590, "name": "LiveboardEmbed", "kind": 128, "kindString": "Class", @@ -14962,7 +14962,7 @@ }, "children": [ { - "id": 579, + "id": 591, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -14976,40 +14976,40 @@ ], "signatures": [ { - "id": 580, + "id": 592, "name": "new LiveboardEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 581, + "id": 593, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2574, + "id": 2609, "name": "DOMSelector" } }, { - "id": 582, + "id": 594, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2346, + "id": 2379, "name": "LiveboardViewConfig" } } ], "type": { "type": "reference", - "id": 578, + "id": 590, "name": "LiveboardEmbed" }, "overwrites": { @@ -15024,7 +15024,7 @@ } }, { - "id": 632, + "id": 646, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -15034,13 +15034,13 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 748, + "line": 759, "character": 11 } ], "signatures": [ { - "id": 633, + "id": 647, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -15070,7 +15070,7 @@ } }, { - "id": 794, + "id": 810, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -15080,13 +15080,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1517, + "line": 1533, "character": 17 } ], "signatures": [ { - "id": 795, + "id": 811, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -15102,7 +15102,7 @@ }, "parameters": [ { - "id": 796, + "id": 812, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15123,7 +15123,7 @@ "typeArguments": [ { "type": "reference", - "id": 1768, + "id": 1800, "name": "AnswerService" } ], @@ -15141,7 +15141,7 @@ } }, { - "id": 767, + "id": 783, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -15151,13 +15151,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1270, + "line": 1281, "character": 11 } ], "signatures": [ { - "id": 768, + "id": 784, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -15178,7 +15178,7 @@ } }, { - "id": 647, + "id": 661, "name": "getLiveboardUrl", "kind": 2048, "kindString": "Method", @@ -15188,13 +15188,13 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 807, + "line": 818, "character": 11 } ], "signatures": [ { - "id": 648, + "id": 662, "name": "getLiveboardUrl", "kind": 4096, "kindString": "Call signature", @@ -15211,7 +15211,7 @@ ] }, { - "id": 789, + "id": 805, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -15221,13 +15221,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1504, + "line": 1520, "character": 11 } ], "signatures": [ { - "id": 790, + "id": 806, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -15249,14 +15249,14 @@ "type": { "type": "reflection", "declaration": { - "id": 791, + "id": 807, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 793, + "id": 809, "name": "child", "kind": 1024, "kindString": "Property", @@ -15268,7 +15268,7 @@ "defaultValue": "..." }, { - "id": 792, + "id": 808, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -15285,8 +15285,8 @@ "title": "Properties", "kind": 1024, "children": [ - 793, - 792 + 809, + 808 ] } ] @@ -15304,7 +15304,7 @@ } }, { - "id": 773, + "id": 789, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -15314,13 +15314,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1304, + "line": 1316, "character": 11 } ], "signatures": [ { - "id": 774, + "id": 790, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -15336,7 +15336,7 @@ }, "parameters": [ { - "id": 775, + "id": 791, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -15344,20 +15344,20 @@ "type": { "type": "reflection", "declaration": { - "id": 776, + "id": 792, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 777, + "id": 793, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 778, + "id": 794, "name": "key", "kind": 32768, "flags": {}, @@ -15402,7 +15402,7 @@ } }, { - "id": 779, + "id": 795, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -15412,13 +15412,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1356, "character": 11 } ], "signatures": [ { - "id": 780, + "id": 796, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -15439,7 +15439,7 @@ } }, { - "id": 787, + "id": 803, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -15449,13 +15449,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1476, + "line": 1492, "character": 11 } ], "signatures": [ { - "id": 788, + "id": 804, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -15479,7 +15479,7 @@ } }, { - "id": 642, + "id": 656, "name": "navigateToLiveboard", "kind": 2048, "kindString": "Method", @@ -15489,20 +15489,20 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 788, + "line": 799, "character": 11 } ], "signatures": [ { - "id": 643, + "id": 657, "name": "navigateToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 644, + "id": 658, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -15513,7 +15513,7 @@ } }, { - "id": 645, + "id": 659, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15526,7 +15526,7 @@ } }, { - "id": 646, + "id": 660, "name": "activeTabId", "kind": 32768, "kindString": "Parameter", @@ -15547,7 +15547,7 @@ ] }, { - "id": 744, + "id": 760, "name": "off", "kind": 2048, "kindString": "Method", @@ -15557,13 +15557,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1110, + "line": 1121, "character": 11 } ], "signatures": [ { - "id": 745, + "id": 761, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -15579,7 +15579,7 @@ }, "parameters": [ { - "id": 746, + "id": 762, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15589,12 +15589,12 @@ }, "type": { "type": "reference", - "id": 1892, + "id": 1924, "name": "EmbedEvent" } }, { - "id": 747, + "id": 763, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -15604,7 +15604,7 @@ }, "type": { "type": "reference", - "id": 2578, + "id": 2613, "name": "MessageCallback" } } @@ -15625,7 +15625,7 @@ } }, { - "id": 654, + "id": 668, "name": "on", "kind": 2048, "kindString": "Method", @@ -15635,13 +15635,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1626, + "line": 1642, "character": 11 } ], "signatures": [ { - "id": 655, + "id": 669, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -15664,38 +15664,38 @@ }, "parameters": [ { - "id": 656, + "id": 670, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1892, + "id": 1924, "name": "EmbedEvent" } }, { - "id": 657, + "id": 671, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2578, + "id": 2613, "name": "MessageCallback" } }, { - "id": 658, + "id": 672, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2575, + "id": 2610, "name": "MessageOptions" }, "defaultValue": "..." @@ -15717,7 +15717,7 @@ } }, { - "id": 769, + "id": 785, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -15727,13 +15727,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1282, + "line": 1294, "character": 17 } ], "signatures": [ { - "id": 770, + "id": 786, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -15743,7 +15743,7 @@ }, "parameters": [ { - "id": 771, + "id": 787, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -15758,7 +15758,7 @@ "defaultValue": "false" }, { - "id": 772, + "id": 788, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -15792,7 +15792,7 @@ } }, { - "id": 781, + "id": 797, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -15802,13 +15802,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1355, + "line": 1367, "character": 17 } ], "signatures": [ { - "id": 782, + "id": 798, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -15845,7 +15845,7 @@ } }, { - "id": 640, + "id": 654, "name": "render", "kind": 2048, "kindString": "Method", @@ -15855,13 +15855,13 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 777, + "line": 788, "character": 17 } ], "signatures": [ { - "id": 641, + "id": 655, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -15874,7 +15874,7 @@ "typeArguments": [ { "type": "reference", - "id": 578, + "id": 590, "name": "LiveboardEmbed" } ], @@ -15892,7 +15892,7 @@ } }, { - "id": 783, + "id": 799, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -15902,13 +15902,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1403, + "line": 1415, "character": 17 } ], "signatures": [ { - "id": 784, + "id": 800, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -15938,7 +15938,7 @@ } }, { - "id": 785, + "id": 801, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -15948,13 +15948,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1457, + "line": 1473, "character": 11 } ], "signatures": [ { - "id": 786, + "id": 802, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -15984,7 +15984,7 @@ } }, { - "id": 626, + "id": 640, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -15994,13 +15994,13 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 730, + "line": 741, "character": 11 } ], "signatures": [ { - "id": 627, + "id": 641, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -16011,19 +16011,19 @@ }, "typeParameter": [ { - "id": 628, + "id": 642, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1985, + "id": 2017, "name": "HostEvent" } }, { - "id": 629, + "id": 643, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -16032,7 +16032,7 @@ ], "parameters": [ { - "id": 630, + "id": 644, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16046,7 +16046,7 @@ } }, { - "id": 631, + "id": 645, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -16103,7 +16103,7 @@ } }, { - "id": 762, + "id": 778, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -16113,13 +16113,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1246, + "line": 1257, "character": 17 } ], "signatures": [ { - "id": 763, + "id": 779, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -16130,21 +16130,21 @@ }, "typeParameter": [ { - "id": 764, + "id": 780, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2844, + "id": 2880, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 765, + "id": 781, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -16158,7 +16158,7 @@ } }, { - "id": 766, + "id": 782, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -16211,31 +16211,31 @@ "title": "Constructors", "kind": 512, "children": [ - 579 + 591 ] }, { "title": "Methods", "kind": 2048, "children": [ - 632, - 794, - 767, - 647, + 646, + 810, + 783, + 661, + 805, 789, - 773, - 779, - 787, - 642, - 744, + 795, + 803, + 656, + 760, + 668, + 785, + 797, 654, - 769, - 781, + 799, + 801, 640, - 783, - 785, - 626, - 762 + 778 ] } ], @@ -16254,7 +16254,7 @@ ] }, { - "id": 797, + "id": 813, "name": "SageEmbed", "kind": 128, "kindString": "Class", @@ -16274,7 +16274,7 @@ }, "children": [ { - "id": 798, + "id": 814, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -16288,40 +16288,40 @@ ], "signatures": [ { - "id": 799, + "id": 815, "name": "new SageEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 800, + "id": 816, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2574, + "id": 2609, "name": "DOMSelector" } }, { - "id": 801, + "id": 817, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2418, + "id": 2452, "name": "SageViewConfig" } } ], "type": { "type": "reference", - "id": 797, + "id": 813, "name": "SageEmbed" }, "overwrites": { @@ -16336,7 +16336,7 @@ } }, { - "id": 947, + "id": 967, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -16346,13 +16346,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1334, + "line": 1346, "character": 11 } ], "signatures": [ { - "id": 948, + "id": 968, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -16382,7 +16382,7 @@ } }, { - "id": 966, + "id": 986, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -16392,13 +16392,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1517, + "line": 1533, "character": 17 } ], "signatures": [ { - "id": 967, + "id": 987, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -16414,7 +16414,7 @@ }, "parameters": [ { - "id": 968, + "id": 988, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -16435,7 +16435,7 @@ "typeArguments": [ { "type": "reference", - "id": 1768, + "id": 1800, "name": "AnswerService" } ], @@ -16453,7 +16453,7 @@ } }, { - "id": 805, + "id": 823, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -16463,13 +16463,13 @@ "sources": [ { "fileName": "embed/sage.ts", - "line": 195, + "line": 200, "character": 11 } ], "signatures": [ { - "id": 806, + "id": 824, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -16486,7 +16486,7 @@ ] }, { - "id": 933, + "id": 953, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -16496,13 +16496,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1270, + "line": 1281, "character": 11 } ], "signatures": [ { - "id": 934, + "id": 954, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -16523,7 +16523,7 @@ } }, { - "id": 961, + "id": 981, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -16533,13 +16533,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1504, + "line": 1520, "character": 11 } ], "signatures": [ { - "id": 962, + "id": 982, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -16561,14 +16561,14 @@ "type": { "type": "reflection", "declaration": { - "id": 963, + "id": 983, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 965, + "id": 985, "name": "child", "kind": 1024, "kindString": "Property", @@ -16580,7 +16580,7 @@ "defaultValue": "..." }, { - "id": 964, + "id": 984, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -16597,8 +16597,8 @@ "title": "Properties", "kind": 1024, "children": [ - 965, - 964 + 985, + 984 ] } ] @@ -16616,7 +16616,7 @@ } }, { - "id": 941, + "id": 961, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -16626,13 +16626,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1304, + "line": 1316, "character": 11 } ], "signatures": [ { - "id": 942, + "id": 962, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -16648,7 +16648,7 @@ }, "parameters": [ { - "id": 943, + "id": 963, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -16656,20 +16656,20 @@ "type": { "type": "reflection", "declaration": { - "id": 944, + "id": 964, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 945, + "id": 965, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 946, + "id": 966, "name": "key", "kind": 32768, "flags": {}, @@ -16714,7 +16714,7 @@ } }, { - "id": 949, + "id": 969, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -16724,13 +16724,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1356, "character": 11 } ], "signatures": [ { - "id": 950, + "id": 970, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -16751,7 +16751,7 @@ } }, { - "id": 959, + "id": 979, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -16761,13 +16761,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1476, + "line": 1492, "character": 11 } ], "signatures": [ { - "id": 960, + "id": 980, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -16791,7 +16791,7 @@ } }, { - "id": 904, + "id": 924, "name": "off", "kind": 2048, "kindString": "Method", @@ -16801,13 +16801,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1110, + "line": 1121, "character": 11 } ], "signatures": [ { - "id": 905, + "id": 925, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -16823,7 +16823,7 @@ }, "parameters": [ { - "id": 906, + "id": 926, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16833,12 +16833,12 @@ }, "type": { "type": "reference", - "id": 1892, + "id": 1924, "name": "EmbedEvent" } }, { - "id": 907, + "id": 927, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -16848,7 +16848,7 @@ }, "type": { "type": "reference", - "id": 2578, + "id": 2613, "name": "MessageCallback" } } @@ -16869,7 +16869,7 @@ } }, { - "id": 814, + "id": 832, "name": "on", "kind": 2048, "kindString": "Method", @@ -16879,13 +16879,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1626, + "line": 1642, "character": 11 } ], "signatures": [ { - "id": 815, + "id": 833, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -16908,38 +16908,38 @@ }, "parameters": [ { - "id": 816, + "id": 834, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1892, + "id": 1924, "name": "EmbedEvent" } }, { - "id": 817, + "id": 835, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2578, + "id": 2613, "name": "MessageCallback" } }, { - "id": 818, + "id": 836, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2575, + "id": 2610, "name": "MessageOptions" }, "defaultValue": "..." @@ -16961,7 +16961,7 @@ } }, { - "id": 937, + "id": 957, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -16971,13 +16971,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1282, + "line": 1294, "character": 17 } ], "signatures": [ { - "id": 938, + "id": 958, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -16987,7 +16987,7 @@ }, "parameters": [ { - "id": 939, + "id": 959, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -17002,7 +17002,7 @@ "defaultValue": "false" }, { - "id": 940, + "id": 960, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -17036,7 +17036,7 @@ } }, { - "id": 951, + "id": 971, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -17046,13 +17046,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1355, + "line": 1367, "character": 17 } ], "signatures": [ { - "id": 952, + "id": 972, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -17089,7 +17089,7 @@ } }, { - "id": 807, + "id": 825, "name": "render", "kind": 2048, "kindString": "Method", @@ -17099,13 +17099,13 @@ "sources": [ { "fileName": "embed/sage.ts", - "line": 220, + "line": 225, "character": 17 } ], "signatures": [ { - "id": 808, + "id": 826, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -17119,7 +17119,7 @@ "typeArguments": [ { "type": "reference", - "id": 797, + "id": 813, "name": "SageEmbed" } ], @@ -17137,7 +17137,7 @@ } }, { - "id": 955, + "id": 975, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -17147,13 +17147,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1403, + "line": 1415, "character": 17 } ], "signatures": [ { - "id": 956, + "id": 976, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -17183,7 +17183,7 @@ } }, { - "id": 957, + "id": 977, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -17193,13 +17193,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1457, + "line": 1473, "character": 11 } ], "signatures": [ { - "id": 958, + "id": 978, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -17229,7 +17229,7 @@ } }, { - "id": 922, + "id": 942, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -17239,13 +17239,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1220, + "line": 1231, "character": 17 } ], "signatures": [ { - "id": 923, + "id": 943, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -17256,19 +17256,19 @@ }, "typeParameter": [ { - "id": 924, + "id": 944, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1985, + "id": 2017, "name": "HostEvent" } }, { - "id": 925, + "id": 945, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -17277,7 +17277,7 @@ ], "parameters": [ { - "id": 926, + "id": 946, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17291,7 +17291,7 @@ } }, { - "id": 927, + "id": 947, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -17348,7 +17348,7 @@ } }, { - "id": 928, + "id": 948, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -17358,13 +17358,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1246, + "line": 1257, "character": 17 } ], "signatures": [ { - "id": 929, + "id": 949, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -17375,21 +17375,21 @@ }, "typeParameter": [ { - "id": 930, + "id": 950, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2844, + "id": 2880, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 931, + "id": 951, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -17403,7 +17403,7 @@ } }, { - "id": 932, + "id": 952, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -17456,30 +17456,30 @@ "title": "Constructors", "kind": 512, "children": [ - 798 + 814 ] }, { "title": "Methods", "kind": 2048, "children": [ - 947, - 966, - 805, - 933, + 967, + 986, + 823, + 953, + 981, 961, - 941, - 949, - 959, - 904, - 814, - 937, - 951, - 807, - 955, + 969, + 979, + 924, + 832, 957, - 922, - 928 + 971, + 825, + 975, + 977, + 942, + 948 ] } ], @@ -17498,7 +17498,7 @@ ] }, { - "id": 227, + "id": 231, "name": "SearchBarEmbed", "kind": 128, "kindString": "Class", @@ -17518,7 +17518,7 @@ }, "children": [ { - "id": 228, + "id": 232, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -17532,14 +17532,14 @@ ], "signatures": [ { - "id": 229, + "id": 233, "name": "new SearchBarEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 230, + "id": 234, "name": "domSelector", "kind": 32768, "kindString": "Parameter", @@ -17550,21 +17550,21 @@ } }, { - "id": 231, + "id": 235, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2304, + "id": 2337, "name": "SearchBarViewConfig" } } ], "type": { "type": "reference", - "id": 227, + "id": 231, "name": "SearchBarEmbed" }, "overwrites": { @@ -17579,7 +17579,7 @@ } }, { - "id": 374, + "id": 382, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -17589,13 +17589,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1334, + "line": 1346, "character": 11 } ], "signatures": [ { - "id": 375, + "id": 383, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -17625,7 +17625,7 @@ } }, { - "id": 393, + "id": 401, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -17635,13 +17635,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1517, + "line": 1533, "character": 17 } ], "signatures": [ { - "id": 394, + "id": 402, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -17657,7 +17657,7 @@ }, "parameters": [ { - "id": 395, + "id": 403, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -17678,7 +17678,7 @@ "typeArguments": [ { "type": "reference", - "id": 1768, + "id": 1800, "name": "AnswerService" } ], @@ -17696,7 +17696,7 @@ } }, { - "id": 360, + "id": 368, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -17706,13 +17706,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1270, + "line": 1281, "character": 11 } ], "signatures": [ { - "id": 361, + "id": 369, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -17733,7 +17733,7 @@ } }, { - "id": 388, + "id": 396, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -17743,13 +17743,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1504, + "line": 1520, "character": 11 } ], "signatures": [ { - "id": 389, + "id": 397, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -17771,14 +17771,14 @@ "type": { "type": "reflection", "declaration": { - "id": 390, + "id": 398, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 392, + "id": 400, "name": "child", "kind": 1024, "kindString": "Property", @@ -17790,7 +17790,7 @@ "defaultValue": "..." }, { - "id": 391, + "id": 399, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -17807,8 +17807,8 @@ "title": "Properties", "kind": 1024, "children": [ - 392, - 391 + 400, + 399 ] } ] @@ -17826,7 +17826,7 @@ } }, { - "id": 368, + "id": 376, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -17836,13 +17836,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1304, + "line": 1316, "character": 11 } ], "signatures": [ { - "id": 369, + "id": 377, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -17858,7 +17858,7 @@ }, "parameters": [ { - "id": 370, + "id": 378, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -17866,20 +17866,20 @@ "type": { "type": "reflection", "declaration": { - "id": 371, + "id": 379, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 372, + "id": 380, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 373, + "id": 381, "name": "key", "kind": 32768, "flags": {}, @@ -17924,7 +17924,7 @@ } }, { - "id": 376, + "id": 384, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -17934,13 +17934,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1356, "character": 11 } ], "signatures": [ { - "id": 377, + "id": 385, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -17961,7 +17961,7 @@ } }, { - "id": 386, + "id": 394, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -17971,13 +17971,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1476, + "line": 1492, "character": 11 } ], "signatures": [ { - "id": 387, + "id": 395, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -18001,7 +18001,7 @@ } }, { - "id": 331, + "id": 339, "name": "off", "kind": 2048, "kindString": "Method", @@ -18011,13 +18011,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1110, + "line": 1121, "character": 11 } ], "signatures": [ { - "id": 332, + "id": 340, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -18033,7 +18033,7 @@ }, "parameters": [ { - "id": 333, + "id": 341, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18043,12 +18043,12 @@ }, "type": { "type": "reference", - "id": 1892, + "id": 1924, "name": "EmbedEvent" } }, { - "id": 334, + "id": 342, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18058,7 +18058,7 @@ }, "type": { "type": "reference", - "id": 2578, + "id": 2613, "name": "MessageCallback" } } @@ -18079,7 +18079,7 @@ } }, { - "id": 325, + "id": 333, "name": "on", "kind": 2048, "kindString": "Method", @@ -18089,13 +18089,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1081, + "line": 1092, "character": 11 } ], "signatures": [ { - "id": 326, + "id": 334, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -18115,7 +18115,7 @@ }, "parameters": [ { - "id": 327, + "id": 335, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18125,12 +18125,12 @@ }, "type": { "type": "reference", - "id": 1892, + "id": 1924, "name": "EmbedEvent" } }, { - "id": 328, + "id": 336, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18140,12 +18140,12 @@ }, "type": { "type": "reference", - "id": 2578, + "id": 2613, "name": "MessageCallback" } }, { - "id": 329, + "id": 337, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -18155,13 +18155,13 @@ }, "type": { "type": "reference", - "id": 2575, + "id": 2610, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 330, + "id": 338, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -18190,7 +18190,7 @@ } }, { - "id": 364, + "id": 372, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -18200,13 +18200,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1282, + "line": 1294, "character": 17 } ], "signatures": [ { - "id": 365, + "id": 373, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -18216,7 +18216,7 @@ }, "parameters": [ { - "id": 366, + "id": 374, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -18231,7 +18231,7 @@ "defaultValue": "false" }, { - "id": 367, + "id": 375, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -18265,7 +18265,7 @@ } }, { - "id": 378, + "id": 386, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -18275,13 +18275,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1355, + "line": 1367, "character": 17 } ], "signatures": [ { - "id": 379, + "id": 387, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -18318,7 +18318,7 @@ } }, { - "id": 236, + "id": 242, "name": "render", "kind": 2048, "kindString": "Method", @@ -18328,13 +18328,13 @@ "sources": [ { "fileName": "embed/search-bar.tsx", - "line": 175, + "line": 182, "character": 17 } ], "signatures": [ { - "id": 237, + "id": 243, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -18347,7 +18347,7 @@ "typeArguments": [ { "type": "reference", - "id": 227, + "id": 231, "name": "SearchBarEmbed" } ], @@ -18365,7 +18365,7 @@ } }, { - "id": 382, + "id": 390, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -18375,13 +18375,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1403, + "line": 1415, "character": 17 } ], "signatures": [ { - "id": 383, + "id": 391, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -18411,7 +18411,7 @@ } }, { - "id": 384, + "id": 392, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -18421,13 +18421,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1457, + "line": 1473, "character": 11 } ], "signatures": [ { - "id": 385, + "id": 393, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -18457,7 +18457,7 @@ } }, { - "id": 349, + "id": 357, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -18467,13 +18467,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1220, + "line": 1231, "character": 17 } ], "signatures": [ { - "id": 350, + "id": 358, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -18484,19 +18484,19 @@ }, "typeParameter": [ { - "id": 351, + "id": 359, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1985, + "id": 2017, "name": "HostEvent" } }, { - "id": 352, + "id": 360, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -18505,7 +18505,7 @@ ], "parameters": [ { - "id": 353, + "id": 361, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18519,7 +18519,7 @@ } }, { - "id": 354, + "id": 362, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -18576,7 +18576,7 @@ } }, { - "id": 355, + "id": 363, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -18586,13 +18586,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1246, + "line": 1257, "character": 17 } ], "signatures": [ { - "id": 356, + "id": 364, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -18603,21 +18603,21 @@ }, "typeParameter": [ { - "id": 357, + "id": 365, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2844, + "id": 2880, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 358, + "id": 366, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -18631,7 +18631,7 @@ } }, { - "id": 359, + "id": 367, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -18684,29 +18684,29 @@ "title": "Constructors", "kind": 512, "children": [ - 228 + 232 ] }, { "title": "Methods", "kind": 2048, "children": [ - 374, - 393, - 360, - 388, + 382, + 401, 368, + 396, 376, - 386, - 331, - 325, - 364, - 378, - 236, - 382, 384, - 349, - 355 + 394, + 339, + 333, + 372, + 386, + 242, + 390, + 392, + 357, + 363 ] } ], @@ -18769,7 +18769,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2574, + "id": 2609, "name": "DOMSelector" } }, @@ -18781,7 +18781,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2250, + "id": 2283, "name": "SearchViewConfig" } } @@ -18803,7 +18803,7 @@ } }, { - "id": 205, + "id": 209, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -18813,13 +18813,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1334, + "line": 1346, "character": 11 } ], "signatures": [ { - "id": 206, + "id": 210, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -18849,7 +18849,7 @@ } }, { - "id": 224, + "id": 228, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -18859,13 +18859,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1517, + "line": 1533, "character": 17 } ], "signatures": [ { - "id": 225, + "id": 229, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -18881,7 +18881,7 @@ }, "parameters": [ { - "id": 226, + "id": 230, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -18902,7 +18902,7 @@ "typeArguments": [ { "type": "reference", - "id": 1768, + "id": 1800, "name": "AnswerService" } ], @@ -18920,7 +18920,7 @@ } }, { - "id": 73, + "id": 75, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -18930,13 +18930,13 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 499, + "line": 510, "character": 11 } ], "signatures": [ { - "id": 74, + "id": 76, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -18952,7 +18952,7 @@ ] }, { - "id": 191, + "id": 195, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -18962,13 +18962,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1270, + "line": 1281, "character": 11 } ], "signatures": [ { - "id": 192, + "id": 196, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -18989,7 +18989,7 @@ } }, { - "id": 219, + "id": 223, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -18999,13 +18999,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1504, + "line": 1520, "character": 11 } ], "signatures": [ { - "id": 220, + "id": 224, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -19027,14 +19027,14 @@ "type": { "type": "reflection", "declaration": { - "id": 221, + "id": 225, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 223, + "id": 227, "name": "child", "kind": 1024, "kindString": "Property", @@ -19046,7 +19046,7 @@ "defaultValue": "..." }, { - "id": 222, + "id": 226, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -19063,8 +19063,8 @@ "title": "Properties", "kind": 1024, "children": [ - 223, - 222 + 227, + 226 ] } ] @@ -19082,7 +19082,7 @@ } }, { - "id": 199, + "id": 203, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -19092,13 +19092,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1304, + "line": 1316, "character": 11 } ], "signatures": [ { - "id": 200, + "id": 204, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -19114,7 +19114,7 @@ }, "parameters": [ { - "id": 201, + "id": 205, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -19122,20 +19122,20 @@ "type": { "type": "reflection", "declaration": { - "id": 202, + "id": 206, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 203, + "id": 207, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 204, + "id": 208, "name": "key", "kind": 32768, "flags": {}, @@ -19180,7 +19180,7 @@ } }, { - "id": 207, + "id": 211, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -19190,13 +19190,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1356, "character": 11 } ], "signatures": [ { - "id": 208, + "id": 212, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -19217,7 +19217,7 @@ } }, { - "id": 217, + "id": 221, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -19227,13 +19227,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1476, + "line": 1492, "character": 11 } ], "signatures": [ { - "id": 218, + "id": 222, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -19257,7 +19257,7 @@ } }, { - "id": 162, + "id": 166, "name": "off", "kind": 2048, "kindString": "Method", @@ -19267,13 +19267,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1110, + "line": 1121, "character": 11 } ], "signatures": [ { - "id": 163, + "id": 167, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -19289,7 +19289,7 @@ }, "parameters": [ { - "id": 164, + "id": 168, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19299,12 +19299,12 @@ }, "type": { "type": "reference", - "id": 1892, + "id": 1924, "name": "EmbedEvent" } }, { - "id": 165, + "id": 169, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19314,7 +19314,7 @@ }, "type": { "type": "reference", - "id": 2578, + "id": 2613, "name": "MessageCallback" } } @@ -19335,7 +19335,7 @@ } }, { - "id": 156, + "id": 160, "name": "on", "kind": 2048, "kindString": "Method", @@ -19345,13 +19345,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1081, + "line": 1092, "character": 11 } ], "signatures": [ { - "id": 157, + "id": 161, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -19371,7 +19371,7 @@ }, "parameters": [ { - "id": 158, + "id": 162, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19381,12 +19381,12 @@ }, "type": { "type": "reference", - "id": 1892, + "id": 1924, "name": "EmbedEvent" } }, { - "id": 159, + "id": 163, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19396,12 +19396,12 @@ }, "type": { "type": "reference", - "id": 2578, + "id": 2613, "name": "MessageCallback" } }, { - "id": 160, + "id": 164, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -19411,13 +19411,13 @@ }, "type": { "type": "reference", - "id": 2575, + "id": 2610, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 161, + "id": 165, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -19446,7 +19446,7 @@ } }, { - "id": 195, + "id": 199, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -19456,13 +19456,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1282, + "line": 1294, "character": 17 } ], "signatures": [ { - "id": 196, + "id": 200, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -19472,7 +19472,7 @@ }, "parameters": [ { - "id": 197, + "id": 201, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -19487,7 +19487,7 @@ "defaultValue": "false" }, { - "id": 198, + "id": 202, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -19521,7 +19521,7 @@ } }, { - "id": 209, + "id": 213, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -19531,13 +19531,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1355, + "line": 1367, "character": 17 } ], "signatures": [ { - "id": 210, + "id": 214, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -19574,7 +19574,7 @@ } }, { - "id": 75, + "id": 77, "name": "render", "kind": 2048, "kindString": "Method", @@ -19584,13 +19584,13 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 510, + "line": 521, "character": 17 } ], "signatures": [ { - "id": 76, + "id": 78, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -19621,7 +19621,7 @@ } }, { - "id": 213, + "id": 217, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -19631,13 +19631,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1403, + "line": 1415, "character": 17 } ], "signatures": [ { - "id": 214, + "id": 218, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -19667,7 +19667,7 @@ } }, { - "id": 215, + "id": 219, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -19677,13 +19677,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1457, + "line": 1473, "character": 11 } ], "signatures": [ { - "id": 216, + "id": 220, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -19713,7 +19713,7 @@ } }, { - "id": 180, + "id": 184, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -19723,13 +19723,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1220, + "line": 1231, "character": 17 } ], "signatures": [ { - "id": 181, + "id": 185, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -19740,19 +19740,19 @@ }, "typeParameter": [ { - "id": 182, + "id": 186, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1985, + "id": 2017, "name": "HostEvent" } }, { - "id": 183, + "id": 187, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -19761,7 +19761,7 @@ ], "parameters": [ { - "id": 184, + "id": 188, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19775,7 +19775,7 @@ } }, { - "id": 185, + "id": 189, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -19832,7 +19832,7 @@ } }, { - "id": 186, + "id": 190, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -19842,13 +19842,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1246, + "line": 1257, "character": 17 } ], "signatures": [ { - "id": 187, + "id": 191, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -19859,21 +19859,21 @@ }, "typeParameter": [ { - "id": 188, + "id": 192, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2844, + "id": 2880, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 189, + "id": 193, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -19887,7 +19887,7 @@ } }, { - "id": 190, + "id": 194, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -19947,23 +19947,23 @@ "title": "Methods", "kind": 2048, "children": [ - 205, - 224, - 73, - 191, - 219, - 199, - 207, - 217, - 162, - 156, - 195, 209, + 228, 75, + 195, + 223, + 203, + 211, + 221, + 166, + 160, + 199, 213, - 215, - 180, - 186 + 77, + 217, + 219, + 184, + 190 ] } ], @@ -19982,7 +19982,7 @@ ] }, { - "id": 1175, + "id": 1199, "name": "SpotterAgentEmbed", "kind": 128, "kindString": "Class", @@ -20006,7 +20006,7 @@ }, "children": [ { - "id": 1176, + "id": 1200, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -20014,41 +20014,41 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 104, + "line": 109, "character": 4 } ], "signatures": [ { - "id": 1177, + "id": 1201, "name": "new SpotterAgentEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1178, + "id": 1202, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1207, + "id": 1231, "name": "SpotterAgentEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1175, + "id": 1199, "name": "SpotterAgentEmbed" } } ] }, { - "id": 1180, + "id": 1204, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -20058,20 +20058,20 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 113, + "line": 118, "character": 17 } ], "signatures": [ { - "id": 1181, + "id": 1205, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1182, + "id": 1206, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -20091,14 +20091,14 @@ { "type": "reflection", "declaration": { - "id": 1183, + "id": 1207, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1185, + "id": 1209, "name": "container", "kind": 1024, "kindString": "Property", @@ -20109,7 +20109,7 @@ } }, { - "id": 1184, + "id": 1208, "name": "error", "kind": 1024, "kindString": "Property", @@ -20120,7 +20120,7 @@ } }, { - "id": 1186, + "id": 1210, "name": "viz", "kind": 1024, "kindString": "Property", @@ -20137,9 +20137,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1185, - 1184, - 1186 + 1209, + 1208, + 1210 ] } ] @@ -20148,14 +20148,14 @@ { "type": "reflection", "declaration": { - "id": 1187, + "id": 1211, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1188, + "id": 1212, "name": "container", "kind": 1024, "kindString": "Property", @@ -20166,7 +20166,7 @@ } }, { - "id": 1190, + "id": 1214, "name": "error", "kind": 1024, "kindString": "Property", @@ -20177,7 +20177,7 @@ } }, { - "id": 1189, + "id": 1213, "name": "viz", "kind": 1024, "kindString": "Property", @@ -20194,9 +20194,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1188, - 1190, - 1189 + 1212, + 1214, + 1213 ] } ] @@ -20211,7 +20211,7 @@ ] }, { - "id": 1191, + "id": 1215, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -20221,13 +20221,13 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 139, + "line": 144, "character": 17 } ], "signatures": [ { - "id": 1192, + "id": 1216, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -20238,7 +20238,7 @@ }, "parameters": [ { - "id": 1193, + "id": 1217, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -20261,14 +20261,14 @@ { "type": "reflection", "declaration": { - "id": 1194, + "id": 1218, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1196, + "id": 1220, "name": "data", "kind": 1024, "kindString": "Property", @@ -20280,7 +20280,7 @@ "defaultValue": "..." }, { - "id": 1195, + "id": 1219, "name": "error", "kind": 1024, "kindString": "Property", @@ -20296,8 +20296,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1196, - 1195 + 1220, + 1219 ] } ] @@ -20306,14 +20306,14 @@ { "type": "reflection", "declaration": { - "id": 1197, + "id": 1221, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1198, + "id": 1222, "name": "data", "kind": 1024, "kindString": "Property", @@ -20321,14 +20321,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1199, + "id": 1223, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1205, + "id": 1229, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -20340,7 +20340,7 @@ "defaultValue": "..." }, { - "id": 1204, + "id": 1228, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -20352,7 +20352,7 @@ "defaultValue": "..." }, { - "id": 1200, + "id": 1224, "name": "convId", "kind": 1024, "kindString": "Property", @@ -20364,7 +20364,7 @@ "defaultValue": "..." }, { - "id": 1203, + "id": 1227, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -20376,7 +20376,7 @@ "defaultValue": "..." }, { - "id": 1201, + "id": 1225, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -20388,7 +20388,7 @@ "defaultValue": "..." }, { - "id": 1202, + "id": 1226, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -20405,12 +20405,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1205, - 1204, - 1200, - 1203, - 1201, - 1202 + 1229, + 1228, + 1224, + 1227, + 1225, + 1226 ] } ] @@ -20419,7 +20419,7 @@ "defaultValue": "..." }, { - "id": 1206, + "id": 1230, "name": "error", "kind": 1024, "kindString": "Property", @@ -20435,8 +20435,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1198, - 1206 + 1222, + 1230 ] } ] @@ -20456,35 +20456,35 @@ "title": "Constructors", "kind": 512, "children": [ - 1176 + 1200 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1180, - 1191 + 1204, + 1215 ] } ], "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 101, + "line": 106, "character": 13 } ], "extendedBy": [ { "type": "reference", - "id": 1265, + "id": 1289, "name": "BodylessConversation" } ] }, { - "id": 1296, + "id": 1320, "name": "SpotterEmbed", "kind": 128, "kindString": "Class", @@ -20508,7 +20508,7 @@ }, "children": [ { - "id": 1297, + "id": 1321, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -20522,14 +20522,14 @@ ], "signatures": [ { - "id": 1298, + "id": 1322, "name": "new SpotterEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1299, + "id": 1323, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -20540,21 +20540,21 @@ } }, { - "id": 1300, + "id": 1324, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1458, + "id": 1486, "name": "SpotterEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1296, + "id": 1320, "name": "SpotterEmbed" }, "overwrites": { @@ -20569,7 +20569,7 @@ } }, { - "id": 1436, + "id": 1464, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -20579,13 +20579,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1334, + "line": 1346, "character": 11 } ], "signatures": [ { - "id": 1437, + "id": 1465, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -20615,7 +20615,7 @@ } }, { - "id": 1455, + "id": 1483, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -20625,13 +20625,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1517, + "line": 1533, "character": 17 } ], "signatures": [ { - "id": 1456, + "id": 1484, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -20647,7 +20647,7 @@ }, "parameters": [ { - "id": 1457, + "id": 1485, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -20668,7 +20668,7 @@ "typeArguments": [ { "type": "reference", - "id": 1768, + "id": 1800, "name": "AnswerService" } ], @@ -20686,7 +20686,7 @@ } }, { - "id": 1302, + "id": 1328, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -20696,13 +20696,13 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 199, + "line": 241, "character": 11 } ], "signatures": [ { - "id": 1303, + "id": 1329, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -20723,7 +20723,7 @@ } }, { - "id": 1450, + "id": 1478, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -20733,13 +20733,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1504, + "line": 1520, "character": 11 } ], "signatures": [ { - "id": 1451, + "id": 1479, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -20761,14 +20761,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1452, + "id": 1480, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1454, + "id": 1482, "name": "child", "kind": 1024, "kindString": "Property", @@ -20780,7 +20780,7 @@ "defaultValue": "..." }, { - "id": 1453, + "id": 1481, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -20797,8 +20797,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1454, - 1453 + 1482, + 1481 ] } ] @@ -20816,7 +20816,7 @@ } }, { - "id": 1430, + "id": 1458, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -20826,13 +20826,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1304, + "line": 1316, "character": 11 } ], "signatures": [ { - "id": 1431, + "id": 1459, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -20848,7 +20848,7 @@ }, "parameters": [ { - "id": 1432, + "id": 1460, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -20856,20 +20856,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1433, + "id": 1461, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1434, + "id": 1462, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1435, + "id": 1463, "name": "key", "kind": 32768, "flags": {}, @@ -20914,7 +20914,7 @@ } }, { - "id": 1438, + "id": 1466, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -20924,13 +20924,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1356, "character": 11 } ], "signatures": [ { - "id": 1439, + "id": 1467, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -20951,7 +20951,7 @@ } }, { - "id": 1448, + "id": 1476, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -20961,13 +20961,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1476, + "line": 1492, "character": 11 } ], "signatures": [ { - "id": 1449, + "id": 1477, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -20991,7 +20991,7 @@ } }, { - "id": 1395, + "id": 1423, "name": "off", "kind": 2048, "kindString": "Method", @@ -21001,13 +21001,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1110, + "line": 1121, "character": 11 } ], "signatures": [ { - "id": 1396, + "id": 1424, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -21023,7 +21023,7 @@ }, "parameters": [ { - "id": 1397, + "id": 1425, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21033,12 +21033,12 @@ }, "type": { "type": "reference", - "id": 1892, + "id": 1924, "name": "EmbedEvent" } }, { - "id": 1398, + "id": 1426, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -21048,7 +21048,7 @@ }, "type": { "type": "reference", - "id": 2578, + "id": 2613, "name": "MessageCallback" } } @@ -21069,7 +21069,7 @@ } }, { - "id": 1389, + "id": 1417, "name": "on", "kind": 2048, "kindString": "Method", @@ -21079,13 +21079,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1081, + "line": 1092, "character": 11 } ], "signatures": [ { - "id": 1390, + "id": 1418, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -21105,7 +21105,7 @@ }, "parameters": [ { - "id": 1391, + "id": 1419, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21115,12 +21115,12 @@ }, "type": { "type": "reference", - "id": 1892, + "id": 1924, "name": "EmbedEvent" } }, { - "id": 1392, + "id": 1420, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -21130,12 +21130,12 @@ }, "type": { "type": "reference", - "id": 2578, + "id": 2613, "name": "MessageCallback" } }, { - "id": 1393, + "id": 1421, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -21145,13 +21145,13 @@ }, "type": { "type": "reference", - "id": 2575, + "id": 2610, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1394, + "id": 1422, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -21180,7 +21180,7 @@ } }, { - "id": 1426, + "id": 1454, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -21190,13 +21190,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1282, + "line": 1294, "character": 17 } ], "signatures": [ { - "id": 1427, + "id": 1455, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -21206,7 +21206,7 @@ }, "parameters": [ { - "id": 1428, + "id": 1456, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -21221,7 +21221,7 @@ "defaultValue": "false" }, { - "id": 1429, + "id": 1457, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -21255,7 +21255,7 @@ } }, { - "id": 1440, + "id": 1468, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -21265,13 +21265,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1355, + "line": 1367, "character": 17 } ], "signatures": [ { - "id": 1441, + "id": 1469, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -21308,7 +21308,7 @@ } }, { - "id": 1304, + "id": 1330, "name": "render", "kind": 2048, "kindString": "Method", @@ -21318,13 +21318,13 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 261, + "line": 276, "character": 17 } ], "signatures": [ { - "id": 1305, + "id": 1331, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -21334,7 +21334,7 @@ "typeArguments": [ { "type": "reference", - "id": 1296, + "id": 1320, "name": "SpotterEmbed" } ], @@ -21352,7 +21352,7 @@ } }, { - "id": 1444, + "id": 1472, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -21362,13 +21362,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1403, + "line": 1415, "character": 17 } ], "signatures": [ { - "id": 1445, + "id": 1473, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -21398,7 +21398,7 @@ } }, { - "id": 1446, + "id": 1474, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -21408,13 +21408,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1457, + "line": 1473, "character": 11 } ], "signatures": [ { - "id": 1447, + "id": 1475, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -21444,7 +21444,7 @@ } }, { - "id": 1413, + "id": 1441, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -21454,13 +21454,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1220, + "line": 1231, "character": 17 } ], "signatures": [ { - "id": 1414, + "id": 1442, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -21471,19 +21471,19 @@ }, "typeParameter": [ { - "id": 1415, + "id": 1443, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1985, + "id": 2017, "name": "HostEvent" } }, { - "id": 1416, + "id": 1444, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -21492,7 +21492,7 @@ ], "parameters": [ { - "id": 1417, + "id": 1445, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21506,7 +21506,7 @@ } }, { - "id": 1418, + "id": 1446, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -21563,7 +21563,7 @@ } }, { - "id": 1419, + "id": 1447, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -21573,13 +21573,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1246, + "line": 1257, "character": 17 } ], "signatures": [ { - "id": 1420, + "id": 1448, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -21590,21 +21590,21 @@ }, "typeParameter": [ { - "id": 1421, + "id": 1449, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2844, + "id": 2880, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1422, + "id": 1450, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -21618,7 +21618,7 @@ } }, { - "id": 1423, + "id": 1451, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -21671,29 +21671,29 @@ "title": "Constructors", "kind": 512, "children": [ - 1297 + 1321 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1436, - 1455, - 1302, - 1450, - 1430, - 1438, - 1448, - 1395, - 1389, - 1426, - 1440, - 1304, - 1444, - 1446, - 1413, - 1419 + 1464, + 1483, + 1328, + 1478, + 1458, + 1466, + 1476, + 1423, + 1417, + 1454, + 1468, + 1330, + 1472, + 1474, + 1441, + 1447 ] } ], @@ -21713,13 +21713,13 @@ "extendedBy": [ { "type": "reference", - "id": 1536, + "id": 1564, "name": "ConversationEmbed" } ] }, { - "id": 2465, + "id": 2499, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -21735,7 +21735,7 @@ }, "children": [ { - "id": 2502, + "id": 2536, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -21766,20 +21766,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2503, + "id": 2537, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2504, + "id": 2538, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2505, + "id": 2539, "name": "key", "kind": 32768, "flags": {}, @@ -21815,7 +21815,7 @@ } }, { - "id": 2526, + "id": 2560, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -21857,7 +21857,7 @@ } }, { - "id": 2484, + "id": 2518, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -21894,7 +21894,7 @@ } }, { - "id": 2523, + "id": 2557, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -21924,7 +21924,7 @@ ], "type": { "type": "reference", - "id": 2196, + "id": 2229, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -21933,7 +21933,7 @@ } }, { - "id": 2543, + "id": 2577, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -21971,7 +21971,7 @@ } }, { - "id": 2520, + "id": 2554, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -22012,7 +22012,7 @@ } }, { - "id": 2506, + "id": 2540, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -22041,7 +22041,7 @@ ], "type": { "type": "reference", - "id": 2591, + "id": 2626, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -22050,7 +22050,7 @@ } }, { - "id": 2485, + "id": 2519, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -22084,12 +22084,12 @@ ], "type": { "type": "reference", - "id": 2857, + "id": 2893, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2527, + "id": 2561, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -22131,7 +22131,7 @@ } }, { - "id": 2468, + "id": 2502, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -22169,7 +22169,7 @@ } }, { - "id": 2514, + "id": 2548, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -22207,7 +22207,7 @@ } }, { - "id": 2498, + "id": 2532, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -22245,7 +22245,7 @@ } }, { - "id": 2497, + "id": 2531, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -22277,7 +22277,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -22287,7 +22287,7 @@ } }, { - "id": 2483, + "id": 2517, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -22325,7 +22325,7 @@ } }, { - "id": 2510, + "id": 2544, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -22366,7 +22366,7 @@ } }, { - "id": 2537, + "id": 2571, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -22408,7 +22408,7 @@ } }, { - "id": 2542, + "id": 2576, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -22450,7 +22450,7 @@ } }, { - "id": 2528, + "id": 2562, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -22492,7 +22492,7 @@ } }, { - "id": 2469, + "id": 2503, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -22528,7 +22528,7 @@ } }, { - "id": 2480, + "id": 2514, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -22566,7 +22566,7 @@ } }, { - "id": 2511, + "id": 2545, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -22604,7 +22604,7 @@ } }, { - "id": 2524, + "id": 2558, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -22642,7 +22642,7 @@ } }, { - "id": 2525, + "id": 2559, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -22680,7 +22680,7 @@ } }, { - "id": 2513, + "id": 2547, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -22717,7 +22717,7 @@ } }, { - "id": 2494, + "id": 2528, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -22747,7 +22747,7 @@ ], "type": { "type": "reference", - "id": 2550, + "id": 2585, "name": "FrameParams" }, "inheritedFrom": { @@ -22756,7 +22756,7 @@ } }, { - "id": 2481, + "id": 2515, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -22790,7 +22790,7 @@ } }, { - "id": 2499, + "id": 2533, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -22826,7 +22826,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -22836,7 +22836,7 @@ } }, { - "id": 2532, + "id": 2566, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -22868,7 +22868,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2556, + "id": 2591, "name": "HomeLeftNavItem" } }, @@ -22878,7 +22878,7 @@ } }, { - "id": 2530, + "id": 2564, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -22910,7 +22910,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2567, + "id": 2602, "name": "HomepageModule" } }, @@ -22920,7 +22920,7 @@ } }, { - "id": 2529, + "id": 2563, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -22952,7 +22952,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2851, + "id": 2887, "name": "ListPageColumns" } }, @@ -22962,7 +22962,7 @@ } }, { - "id": 2473, + "id": 2507, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -23000,7 +23000,7 @@ } }, { - "id": 2470, + "id": 2504, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -23038,7 +23038,7 @@ } }, { - "id": 2467, + "id": 2501, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -23076,7 +23076,7 @@ } }, { - "id": 2540, + "id": 2574, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -23118,7 +23118,7 @@ } }, { - "id": 2533, + "id": 2567, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -23160,7 +23160,7 @@ } }, { - "id": 2472, + "id": 2506, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -23198,7 +23198,7 @@ } }, { - "id": 2471, + "id": 2505, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -23236,7 +23236,7 @@ } }, { - "id": 2478, + "id": 2512, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -23273,7 +23273,7 @@ } }, { - "id": 2474, + "id": 2508, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -23311,7 +23311,7 @@ } }, { - "id": 2487, + "id": 2521, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -23337,12 +23337,12 @@ ], "type": { "type": "reference", - "id": 2809, + "id": 2845, "name": "HomePageSearchBarMode" } }, { - "id": 2507, + "id": 2541, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -23380,7 +23380,45 @@ } }, { - "id": 2538, + "id": 2579, + "name": "isLinkParametersEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag is used to enable or disable the link parameters in liveboard.", + "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.42.0 | ThoughtSpot: 10.14.0.cl" + }, + { + "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 isLinkParametersEnabled: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1529, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "AllEmbedViewConfig.isLinkParametersEnabled" + } + }, + { + "id": 2572, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -23422,7 +23460,7 @@ } }, { - "id": 2536, + "id": 2570, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -23460,7 +23498,7 @@ } }, { - "id": 2489, + "id": 2523, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -23494,7 +23532,7 @@ } }, { - "id": 2486, + "id": 2520, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -23523,7 +23561,7 @@ } }, { - "id": 2490, + "id": 2524, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -23557,7 +23595,7 @@ } }, { - "id": 2488, + "id": 2522, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -23595,7 +23633,7 @@ } }, { - "id": 2491, + "id": 2525, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -23632,7 +23670,7 @@ } }, { - "id": 2492, + "id": 2526, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -23666,7 +23704,7 @@ } }, { - "id": 2516, + "id": 2550, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -23704,7 +23742,7 @@ } }, { - "id": 2544, + "id": 2578, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -23742,7 +23780,7 @@ } }, { - "id": 2501, + "id": 2535, "name": "locale", "kind": 1024, "kindString": "Property", @@ -23780,7 +23818,7 @@ } }, { - "id": 2482, + "id": 2516, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -23818,7 +23856,7 @@ } }, { - "id": 2515, + "id": 2549, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -23856,7 +23894,7 @@ } }, { - "id": 2476, + "id": 2510, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -23886,12 +23924,12 @@ ], "type": { "type": "reference", - "id": 1851, + "id": 1883, "name": "Page" } }, { - "id": 2475, + "id": 2509, "name": "path", "kind": 1024, "kindString": "Property", @@ -23925,7 +23963,7 @@ } }, { - "id": 2509, + "id": 2543, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -23963,7 +24001,7 @@ } }, { - "id": 2517, + "id": 2551, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -24001,7 +24039,7 @@ } }, { - "id": 2531, + "id": 2565, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -24033,7 +24071,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2567, + "id": 2602, "name": "HomepageModule" } }, @@ -24043,7 +24081,7 @@ } }, { - "id": 2521, + "id": 2555, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -24075,7 +24113,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1872, + "id": 1904, "name": "RuntimeFilter" } }, @@ -24085,7 +24123,7 @@ } }, { - "id": 2522, + "id": 2556, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -24117,7 +24155,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2783, + "id": 2819, "name": "RuntimeParameter" } }, @@ -24127,7 +24165,7 @@ } }, { - "id": 2519, + "id": 2553, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -24164,7 +24202,7 @@ } }, { - "id": 2535, + "id": 2569, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -24206,7 +24244,7 @@ } }, { - "id": 2541, + "id": 2575, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -24248,7 +24286,7 @@ } }, { - "id": 2534, + "id": 2568, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -24290,7 +24328,7 @@ } }, { - "id": 2539, + "id": 2573, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -24332,7 +24370,7 @@ } }, { - "id": 2466, + "id": 2500, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -24370,7 +24408,7 @@ } }, { - "id": 2477, + "id": 2511, "name": "tag", "kind": 1024, "kindString": "Property", @@ -24404,7 +24442,7 @@ } }, { - "id": 2500, + "id": 2534, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -24440,7 +24478,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -24455,75 +24493,76 @@ "title": "Properties", "kind": 1024, "children": [ + 2536, + 2560, + 2518, + 2557, + 2577, + 2554, + 2540, + 2519, + 2561, 2502, - 2526, - 2484, - 2523, - 2543, - 2520, - 2506, - 2485, - 2527, - 2468, + 2548, + 2532, + 2531, + 2517, + 2544, + 2571, + 2576, + 2562, + 2503, 2514, - 2498, - 2497, - 2483, - 2510, - 2537, - 2542, + 2545, + 2558, + 2559, + 2547, 2528, - 2469, - 2480, - 2511, - 2524, - 2525, - 2513, - 2494, - 2481, - 2499, - 2532, - 2530, - 2529, - 2473, - 2470, - 2467, - 2540, + 2515, 2533, - 2472, - 2471, - 2478, - 2474, - 2487, + 2566, + 2564, + 2563, 2507, - 2538, - 2536, - 2489, - 2486, - 2490, - 2488, - 2491, - 2492, - 2516, - 2544, + 2504, 2501, - 2482, - 2515, - 2476, - 2475, - 2509, - 2517, - 2531, + 2574, + 2567, + 2506, + 2505, + 2512, + 2508, 2521, + 2541, + 2579, + 2572, + 2570, + 2523, + 2520, + 2524, 2522, - 2519, + 2525, + 2526, + 2550, + 2578, 2535, - 2541, - 2534, - 2539, - 2466, - 2477, - 2500 + 2516, + 2549, + 2510, + 2509, + 2543, + 2551, + 2565, + 2555, + 2556, + 2553, + 2569, + 2575, + 2568, + 2573, + 2500, + 2511, + 2534 ] } ], @@ -24542,7 +24581,7 @@ ] }, { - "id": 1715, + "id": 1747, "name": "AuthEventEmitter", "kind": 256, "kindString": "Interface", @@ -24558,14 +24597,14 @@ }, "children": [ { - "id": 1752, + "id": 1784, "name": "emit", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1753, + "id": 1785, "name": "emit", "kind": 4096, "kindString": "Call signature", @@ -24575,19 +24614,19 @@ }, "parameters": [ { - "id": 1754, + "id": 1786, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1714, + "id": 1746, "name": "TRIGGER_SSO_POPUP" } }, { - "id": 1755, + "id": 1787, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -24611,14 +24650,14 @@ ] }, { - "id": 1756, + "id": 1788, "name": "off", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1757, + "id": 1789, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -24628,7 +24667,7 @@ }, "parameters": [ { - "id": 1758, + "id": 1790, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24636,12 +24675,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1705, + "id": 1737, "name": "AuthStatus" } }, { - "id": 1759, + "id": 1791, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24650,21 +24689,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1760, + "id": 1792, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1761, + "id": 1793, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1762, + "id": 1794, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -24690,7 +24729,7 @@ } }, { - "id": 1763, + "id": 1795, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -24702,7 +24741,7 @@ } }, { - "id": 1764, + "id": 1796, "name": "once", "kind": 32768, "kindString": "Parameter", @@ -24718,21 +24757,21 @@ ], "type": { "type": "reference", - "id": 1715, + "id": 1747, "name": "AuthEventEmitter" } } ] }, { - "id": 1716, + "id": 1748, "name": "on", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1717, + "id": 1749, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -24742,7 +24781,7 @@ }, "parameters": [ { - "id": 1718, + "id": 1750, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24750,12 +24789,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1706, + "id": 1738, "name": "FAILURE" } }, { - "id": 1719, + "id": 1751, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24766,28 +24805,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1720, + "id": 1752, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1721, + "id": 1753, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1722, + "id": 1754, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1698, + "id": 1730, "name": "AuthFailureType" } } @@ -24804,12 +24843,12 @@ ], "type": { "type": "reference", - "id": 1715, + "id": 1747, "name": "AuthEventEmitter" } }, { - "id": 1723, + "id": 1755, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -24819,7 +24858,7 @@ }, "parameters": [ { - "id": 1724, + "id": 1756, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24830,29 +24869,29 @@ "types": [ { "type": "reference", - "id": 1707, + "id": 1739, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1710, + "id": 1742, "name": "LOGOUT" }, { "type": "reference", - "id": 1711, + "id": 1743, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1712, + "id": 1744, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1725, + "id": 1757, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24863,14 +24902,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1726, + "id": 1758, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1727, + "id": 1759, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -24887,31 +24926,31 @@ ], "type": { "type": "reference", - "id": 1715, + "id": 1747, "name": "AuthEventEmitter" } }, { - "id": 1728, + "id": 1760, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1729, + "id": 1761, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1709, + "id": 1741, "name": "SUCCESS" } }, { - "id": 1730, + "id": 1762, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24919,21 +24958,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1731, + "id": 1763, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1732, + "id": 1764, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1733, + "id": 1765, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -24956,40 +24995,40 @@ ], "type": { "type": "reference", - "id": 1715, + "id": 1747, "name": "AuthEventEmitter" } } ] }, { - "id": 1734, + "id": 1766, "name": "once", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1735, + "id": 1767, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1736, + "id": 1768, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1706, + "id": 1738, "name": "FAILURE" } }, { - "id": 1737, + "id": 1769, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24997,28 +25036,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1738, + "id": 1770, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1739, + "id": 1771, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1740, + "id": 1772, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1698, + "id": 1730, "name": "AuthFailureType" } } @@ -25035,19 +25074,19 @@ ], "type": { "type": "reference", - "id": 1715, + "id": 1747, "name": "AuthEventEmitter" } }, { - "id": 1741, + "id": 1773, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1742, + "id": 1774, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25057,29 +25096,29 @@ "types": [ { "type": "reference", - "id": 1707, + "id": 1739, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1710, + "id": 1742, "name": "LOGOUT" }, { "type": "reference", - "id": 1711, + "id": 1743, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1712, + "id": 1744, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1743, + "id": 1775, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25087,14 +25126,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1744, + "id": 1776, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1745, + "id": 1777, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -25111,31 +25150,31 @@ ], "type": { "type": "reference", - "id": 1715, + "id": 1747, "name": "AuthEventEmitter" } }, { - "id": 1746, + "id": 1778, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1747, + "id": 1779, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1709, + "id": 1741, "name": "SUCCESS" } }, { - "id": 1748, + "id": 1780, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25143,21 +25182,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1749, + "id": 1781, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1750, + "id": 1782, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1751, + "id": 1783, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -25180,21 +25219,21 @@ ], "type": { "type": "reference", - "id": 1715, + "id": 1747, "name": "AuthEventEmitter" } } ] }, { - "id": 1765, + "id": 1797, "name": "removeAllListeners", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1766, + "id": 1798, "name": "removeAllListeners", "kind": 4096, "kindString": "Call signature", @@ -25204,7 +25243,7 @@ }, "parameters": [ { - "id": 1767, + "id": 1799, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25214,14 +25253,14 @@ }, "type": { "type": "reference", - "id": 1705, + "id": 1737, "name": "AuthStatus" } } ], "type": { "type": "reference", - "id": 1715, + "id": 1747, "name": "AuthEventEmitter" } } @@ -25233,11 +25272,11 @@ "title": "Methods", "kind": 2048, "children": [ - 1752, - 1756, - 1716, - 1734, - 1765 + 1784, + 1788, + 1748, + 1766, + 1797 ] } ], @@ -25250,7 +25289,7 @@ ] }, { - "id": 1236, + "id": 1260, "name": "BodylessConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -25270,7 +25309,7 @@ }, "children": [ { - "id": 1247, + "id": 1271, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -25301,20 +25340,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1248, + "id": 1272, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1249, + "id": 1273, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1250, + "id": 1274, "name": "key", "kind": 32768, "flags": {}, @@ -25346,12 +25385,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1218, + "id": 1242, "name": "SpotterAgentEmbedViewConfig.additionalFlags" } }, { - "id": 1264, + "id": 1288, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -25388,12 +25427,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1235, + "id": 1259, "name": "SpotterAgentEmbedViewConfig.customActions" } }, { - "id": 1251, + "id": 1275, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -25422,17 +25461,17 @@ ], "type": { "type": "reference", - "id": 2591, + "id": 2626, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1222, + "id": 1246, "name": "SpotterAgentEmbedViewConfig.customizations" } }, { - "id": 1259, + "id": 1283, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -25466,12 +25505,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1230, + "id": 1254, "name": "SpotterAgentEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1243, + "id": 1267, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -25505,12 +25544,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1214, + "id": 1238, "name": "SpotterAgentEmbedViewConfig.disabledActionReason" } }, { - "id": 1242, + "id": 1266, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -25542,18 +25581,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1213, + "id": 1237, "name": "SpotterAgentEmbedViewConfig.disabledActions" } }, { - "id": 1255, + "id": 1279, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -25590,12 +25629,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1226, + "id": 1250, "name": "SpotterAgentEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1256, + "id": 1280, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -25629,12 +25668,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1227, + "id": 1251, "name": "SpotterAgentEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1258, + "id": 1282, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -25667,12 +25706,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1229, + "id": 1253, "name": "SpotterAgentEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1239, + "id": 1263, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -25702,17 +25741,17 @@ ], "type": { "type": "reference", - "id": 2550, + "id": 2585, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1210, + "id": 1234, "name": "SpotterAgentEmbedViewConfig.frameParams" } }, { - "id": 1244, + "id": 1268, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -25748,18 +25787,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1215, + "id": 1239, "name": "SpotterAgentEmbedViewConfig.hiddenActions" } }, { - "id": 1252, + "id": 1276, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -25793,12 +25832,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1223, + "id": 1247, "name": "SpotterAgentEmbedViewConfig.insertAsSibling" } }, { - "id": 1261, + "id": 1285, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -25832,12 +25871,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1232, + "id": 1256, "name": "SpotterAgentEmbedViewConfig.linkOverride" } }, { - "id": 1246, + "id": 1270, "name": "locale", "kind": 1024, "kindString": "Property", @@ -25871,12 +25910,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1217, + "id": 1241, "name": "SpotterAgentEmbedViewConfig.locale" } }, { - "id": 1260, + "id": 1284, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -25910,12 +25949,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1231, + "id": 1255, "name": "SpotterAgentEmbedViewConfig.overrideOrgId" } }, { - "id": 1254, + "id": 1278, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -25949,12 +25988,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1225, + "id": 1249, "name": "SpotterAgentEmbedViewConfig.preRenderId" } }, { - "id": 1263, + "id": 1287, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -25987,12 +26026,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1234, + "id": 1258, "name": "SpotterAgentEmbedViewConfig.showAlerts" } }, { - "id": 1245, + "id": 1269, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -26028,18 +26067,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1216, + "id": 1240, "name": "SpotterAgentEmbedViewConfig.visibleActions" } }, { - "id": 1237, + "id": 1261, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -26060,7 +26099,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1208, + "id": 1232, "name": "SpotterAgentEmbedViewConfig.worksheetId" } } @@ -26070,25 +26109,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1247, - 1264, - 1251, - 1259, - 1243, - 1242, - 1255, - 1256, - 1258, - 1239, - 1244, - 1252, - 1261, - 1246, - 1260, - 1254, + 1271, + 1288, + 1275, + 1283, + 1267, + 1266, + 1279, + 1280, + 1282, 1263, - 1245, - 1237 + 1268, + 1276, + 1285, + 1270, + 1284, + 1278, + 1287, + 1269, + 1261 ] } ], @@ -26102,13 +26141,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1207, + "id": 1231, "name": "SpotterAgentEmbedViewConfig" } ] }, { - "id": 1497, + "id": 1525, "name": "ConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -26128,7 +26167,7 @@ }, "children": [ { - "id": 1518, + "id": 1546, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -26159,20 +26198,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1519, + "id": 1547, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1520, + "id": 1548, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1521, + "id": 1549, "name": "key", "kind": 32768, "flags": {}, @@ -26204,12 +26243,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1479, + "id": 1507, "name": "SpotterEmbedViewConfig.additionalFlags" } }, { - "id": 1535, + "id": 1563, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -26246,12 +26285,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1496, + "id": 1524, "name": "SpotterEmbedViewConfig.customActions" } }, { - "id": 1522, + "id": 1550, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -26280,17 +26319,17 @@ ], "type": { "type": "reference", - "id": 2591, + "id": 2626, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1483, + "id": 1511, "name": "SpotterEmbedViewConfig.customizations" } }, { - "id": 1502, + "id": 1530, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -26328,12 +26367,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1463, + "id": 1491, "name": "SpotterEmbedViewConfig.dataPanelV2" } }, { - "id": 1530, + "id": 1558, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -26367,12 +26406,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1491, + "id": 1519, "name": "SpotterEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1500, + "id": 1528, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -26406,12 +26445,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1461, + "id": 1489, "name": "SpotterEmbedViewConfig.disableSourceSelection" } }, { - "id": 1514, + "id": 1542, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -26445,12 +26484,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1475, + "id": 1503, "name": "SpotterEmbedViewConfig.disabledActionReason" } }, { - "id": 1513, + "id": 1541, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -26482,18 +26521,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1474, + "id": 1502, "name": "SpotterEmbedViewConfig.disabledActions" } }, { - "id": 1526, + "id": 1554, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -26530,12 +26569,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1487, + "id": 1515, "name": "SpotterEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1527, + "id": 1555, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -26569,12 +26608,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1488, + "id": 1516, "name": "SpotterEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1506, + "id": 1534, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -26608,12 +26647,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1467, + "id": 1495, "name": "SpotterEmbedViewConfig.excludeRuntimeFiltersfromURL" } }, { - "id": 1508, + "id": 1536, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -26647,12 +26686,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1469, + "id": 1497, "name": "SpotterEmbedViewConfig.excludeRuntimeParametersfromURL" } }, { - "id": 1529, + "id": 1557, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -26685,12 +26724,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1490, + "id": 1518, "name": "SpotterEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1510, + "id": 1538, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -26720,17 +26759,17 @@ ], "type": { "type": "reference", - "id": 2550, + "id": 2585, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1471, + "id": 1499, "name": "SpotterEmbedViewConfig.frameParams" } }, { - "id": 1515, + "id": 1543, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -26766,18 +26805,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1476, + "id": 1504, "name": "SpotterEmbedViewConfig.hiddenActions" } }, { - "id": 1504, + "id": 1532, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -26811,12 +26850,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1465, + "id": 1493, "name": "SpotterEmbedViewConfig.hideSampleQuestions" } }, { - "id": 1501, + "id": 1529, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -26850,12 +26889,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1462, + "id": 1490, "name": "SpotterEmbedViewConfig.hideSourceSelection" } }, { - "id": 1523, + "id": 1551, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -26889,12 +26928,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1484, + "id": 1512, "name": "SpotterEmbedViewConfig.insertAsSibling" } }, { - "id": 1532, + "id": 1560, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -26928,12 +26967,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1493, + "id": 1521, "name": "SpotterEmbedViewConfig.linkOverride" } }, { - "id": 1517, + "id": 1545, "name": "locale", "kind": 1024, "kindString": "Property", @@ -26967,12 +27006,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1478, + "id": 1506, "name": "SpotterEmbedViewConfig.locale" } }, { - "id": 1531, + "id": 1559, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -27006,12 +27045,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1492, + "id": 1520, "name": "SpotterEmbedViewConfig.overrideOrgId" } }, { - "id": 1525, + "id": 1553, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -27045,12 +27084,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1486, + "id": 1514, "name": "SpotterEmbedViewConfig.preRenderId" } }, { - "id": 1505, + "id": 1533, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -27082,18 +27121,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 1872, + "id": 1904, "name": "RuntimeFilter" } }, "inheritedFrom": { "type": "reference", - "id": 1466, + "id": 1494, "name": "SpotterEmbedViewConfig.runtimeFilters" } }, { - "id": 1507, + "id": 1535, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -27125,18 +27164,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2783, + "id": 2819, "name": "RuntimeParameter" } }, "inheritedFrom": { "type": "reference", - "id": 1468, + "id": 1496, "name": "SpotterEmbedViewConfig.runtimeParameters" } }, { - "id": 1499, + "id": 1527, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -27159,12 +27198,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1460, + "id": 1488, "name": "SpotterEmbedViewConfig.searchOptions" } }, { - "id": 1534, + "id": 1562, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -27197,12 +27236,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1495, + "id": 1523, "name": "SpotterEmbedViewConfig.showAlerts" } }, { - "id": 1503, + "id": 1531, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -27236,12 +27275,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1464, + "id": 1492, "name": "SpotterEmbedViewConfig.showSpotterLimitations" } }, { - "id": 1516, + "id": 1544, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -27277,18 +27316,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1477, + "id": 1505, "name": "SpotterEmbedViewConfig.visibleActions" } }, { - "id": 1498, + "id": 1526, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -27309,7 +27348,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1459, + "id": 1487, "name": "SpotterEmbedViewConfig.worksheetId" } } @@ -27319,35 +27358,35 @@ "title": "Properties", "kind": 1024, "children": [ - 1518, - 1535, - 1522, - 1502, + 1546, + 1563, + 1550, 1530, - 1500, - 1514, - 1513, - 1526, - 1527, - 1506, - 1508, - 1529, - 1510, - 1515, - 1504, - 1501, - 1523, + 1558, + 1528, + 1542, + 1541, + 1554, + 1555, + 1534, + 1536, + 1557, + 1538, + 1543, 1532, - 1517, + 1529, + 1551, + 1560, + 1545, + 1559, + 1553, + 1533, + 1535, + 1527, + 1562, 1531, - 1525, - 1505, - 1507, - 1499, - 1534, - 1503, - 1516, - 1498 + 1544, + 1526 ] } ], @@ -27361,13 +27400,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1458, + "id": 1486, "name": "SpotterEmbedViewConfig" } ] }, { - "id": 2824, + "id": 2860, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -27382,7 +27421,7 @@ }, "children": [ { - "id": 2825, + "id": 2861, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -27392,21 +27431,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5694, + "line": 5742, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2826, + "id": 2862, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2827, + "id": 2863, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -27414,18 +27453,18 @@ "sources": [ { "fileName": "types.ts", - "line": 5695, + "line": 5743, "character": 8 } ], "type": { "type": "reference", - "id": 2821, + "id": 2857, "name": "VizPoint" } }, { - "id": 2828, + "id": 2864, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -27433,7 +27472,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5696, + "line": 5744, "character": 8 } ], @@ -27441,7 +27480,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2821, + "id": 2857, "name": "VizPoint" } } @@ -27452,8 +27491,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2827, - 2828 + 2863, + 2864 ] } ] @@ -27461,7 +27500,7 @@ } }, { - "id": 2829, + "id": 2865, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -27469,21 +27508,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5698, + "line": 5746, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2830, + "id": 2866, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2838, + "id": 2874, "name": "columns", "kind": 1024, "kindString": "Property", @@ -27491,7 +27530,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5706, + "line": 5754, "character": 8 } ], @@ -27504,7 +27543,7 @@ } }, { - "id": 2839, + "id": 2875, "name": "data", "kind": 1024, "kindString": "Property", @@ -27512,7 +27551,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5707, + "line": 5755, "character": 8 } ], @@ -27525,7 +27564,7 @@ } }, { - "id": 2832, + "id": 2868, "name": "id", "kind": 1024, "kindString": "Property", @@ -27533,7 +27572,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5700, + "line": 5748, "character": 8 } ], @@ -27543,7 +27582,7 @@ } }, { - "id": 2831, + "id": 2867, "name": "name", "kind": 1024, "kindString": "Property", @@ -27551,7 +27590,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5699, + "line": 5747, "character": 8 } ], @@ -27561,7 +27600,7 @@ } }, { - "id": 2833, + "id": 2869, "name": "sources", "kind": 1024, "kindString": "Property", @@ -27569,21 +27608,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5701, + "line": 5749, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2834, + "id": 2870, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2835, + "id": 2871, "name": "header", "kind": 1024, "kindString": "Property", @@ -27591,21 +27630,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5702, + "line": 5750, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2836, + "id": 2872, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2837, + "id": 2873, "name": "guid", "kind": 1024, "kindString": "Property", @@ -27613,7 +27652,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5703, + "line": 5751, "character": 16 } ], @@ -27628,7 +27667,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2837 + 2873 ] } ] @@ -27641,7 +27680,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2835 + 2871 ] } ] @@ -27654,23 +27693,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2838, - 2839, - 2832, - 2831, - 2833 + 2874, + 2875, + 2868, + 2867, + 2869 ] } ], "indexSignature": { - "id": 2840, + "id": 2876, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2841, + "id": 2877, "name": "key", "kind": 32768, "flags": {}, @@ -27689,7 +27728,7 @@ } }, { - "id": 2842, + "id": 2878, "name": "session", "kind": 1024, "kindString": "Property", @@ -27697,18 +27736,18 @@ "sources": [ { "fileName": "types.ts", - "line": 5710, + "line": 5758, "character": 4 } ], "type": { "type": "reference", - "id": 1841, + "id": 1873, "name": "SessionInterface" } }, { - "id": 2843, + "id": 2879, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -27718,7 +27757,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5711, + "line": 5759, "character": 4 } ], @@ -27733,23 +27772,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2825, - 2829, - 2842, - 2843 + 2861, + 2865, + 2878, + 2879 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5693, + "line": 5741, "character": 17 } ] }, { - "id": 2613, + "id": 2648, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -27759,7 +27798,7 @@ }, "children": [ { - "id": 2667, + "id": 2702, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -27782,7 +27821,7 @@ } }, { - "id": 2666, + "id": 2701, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -27805,7 +27844,7 @@ } }, { - "id": 2636, + "id": 2671, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -27828,7 +27867,7 @@ } }, { - "id": 2637, + "id": 2672, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -27851,7 +27890,7 @@ } }, { - "id": 2639, + "id": 2674, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -27874,7 +27913,7 @@ } }, { - "id": 2638, + "id": 2673, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -27897,7 +27936,7 @@ } }, { - "id": 2618, + "id": 2653, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -27920,7 +27959,7 @@ } }, { - "id": 2679, + "id": 2714, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -27943,7 +27982,7 @@ } }, { - "id": 2680, + "id": 2715, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -27966,7 +28005,7 @@ } }, { - "id": 2677, + "id": 2712, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -27989,7 +28028,7 @@ } }, { - "id": 2678, + "id": 2713, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -28012,7 +28051,7 @@ } }, { - "id": 2641, + "id": 2676, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -28035,7 +28074,7 @@ } }, { - "id": 2646, + "id": 2681, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -28058,7 +28097,7 @@ } }, { - "id": 2643, + "id": 2678, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -28081,7 +28120,7 @@ } }, { - "id": 2645, + "id": 2680, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -28104,7 +28143,7 @@ } }, { - "id": 2644, + "id": 2679, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -28127,7 +28166,7 @@ } }, { - "id": 2642, + "id": 2677, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -28150,7 +28189,7 @@ } }, { - "id": 2651, + "id": 2686, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -28173,7 +28212,7 @@ } }, { - "id": 2648, + "id": 2683, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -28196,7 +28235,7 @@ } }, { - "id": 2650, + "id": 2685, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -28219,7 +28258,7 @@ } }, { - "id": 2649, + "id": 2684, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -28242,7 +28281,7 @@ } }, { - "id": 2647, + "id": 2682, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -28265,7 +28304,7 @@ } }, { - "id": 2655, + "id": 2690, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -28288,7 +28327,7 @@ } }, { - "id": 2654, + "id": 2689, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -28311,7 +28350,7 @@ } }, { - "id": 2653, + "id": 2688, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -28334,7 +28373,7 @@ } }, { - "id": 2652, + "id": 2687, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -28357,7 +28396,7 @@ } }, { - "id": 2640, + "id": 2675, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -28380,7 +28419,7 @@ } }, { - "id": 2782, + "id": 2818, "name": "--ts-var-cca-modal-summary-header-background", "kind": 1024, "kindString": "Property", @@ -28393,7 +28432,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 868, + "line": 907, "character": 4 } ], @@ -28403,7 +28442,7 @@ } }, { - "id": 2777, + "id": 2813, "name": "--ts-var-change-analysis-insights-background", "kind": 1024, "kindString": "Property", @@ -28416,7 +28455,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 843, + "line": 882, "character": 4 } ], @@ -28426,7 +28465,7 @@ } }, { - "id": 2772, + "id": 2808, "name": "--ts-var-chart-heatmap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28439,7 +28478,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 818, + "line": 857, "character": 4 } ], @@ -28449,7 +28488,7 @@ } }, { - "id": 2771, + "id": 2807, "name": "--ts-var-chart-heatmap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28462,7 +28501,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 813, + "line": 852, "character": 4 } ], @@ -28472,7 +28511,7 @@ } }, { - "id": 2774, + "id": 2810, "name": "--ts-var-chart-treemap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28485,7 +28524,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 828, + "line": 867, "character": 4 } ], @@ -28495,7 +28534,7 @@ } }, { - "id": 2773, + "id": 2809, "name": "--ts-var-chart-treemap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28508,7 +28547,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 823, + "line": 862, "character": 4 } ], @@ -28518,7 +28557,7 @@ } }, { - "id": 2702, + "id": 2737, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -28541,7 +28580,7 @@ } }, { - "id": 2705, + "id": 2740, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -28564,7 +28603,7 @@ } }, { - "id": 2700, + "id": 2735, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -28587,7 +28626,7 @@ } }, { - "id": 2703, + "id": 2738, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -28610,7 +28649,7 @@ } }, { - "id": 2704, + "id": 2739, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -28633,7 +28672,7 @@ } }, { - "id": 2699, + "id": 2734, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -28656,7 +28695,7 @@ } }, { - "id": 2701, + "id": 2736, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -28679,7 +28718,7 @@ } }, { - "id": 2672, + "id": 2707, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -28702,7 +28741,7 @@ } }, { - "id": 2671, + "id": 2706, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -28725,7 +28764,7 @@ } }, { - "id": 2674, + "id": 2709, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -28748,7 +28787,7 @@ } }, { - "id": 2673, + "id": 2708, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -28771,7 +28810,7 @@ } }, { - "id": 2670, + "id": 2705, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -28794,7 +28833,7 @@ } }, { - "id": 2668, + "id": 2703, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -28817,7 +28856,7 @@ } }, { - "id": 2669, + "id": 2704, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -28840,7 +28879,7 @@ } }, { - "id": 2675, + "id": 2710, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -28863,7 +28902,7 @@ } }, { - "id": 2676, + "id": 2711, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -28886,7 +28925,7 @@ } }, { - "id": 2687, + "id": 2722, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -28909,7 +28948,7 @@ } }, { - "id": 2688, + "id": 2723, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -28932,7 +28971,7 @@ } }, { - "id": 2691, + "id": 2726, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -28955,7 +28994,7 @@ } }, { - "id": 2689, + "id": 2724, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -28978,7 +29017,7 @@ } }, { - "id": 2690, + "id": 2725, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -29001,7 +29040,7 @@ } }, { - "id": 2698, + "id": 2733, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -29024,7 +29063,7 @@ } }, { - "id": 2697, + "id": 2732, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -29047,7 +29086,7 @@ } }, { - "id": 2696, + "id": 2731, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -29070,7 +29109,7 @@ } }, { - "id": 2695, + "id": 2730, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -29093,7 +29132,7 @@ } }, { - "id": 2770, + "id": 2806, "name": "--ts-var-kpi-analyze-text-color", "kind": 1024, "kindString": "Property", @@ -29106,7 +29145,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 808, + "line": 847, "character": 4 } ], @@ -29116,7 +29155,7 @@ } }, { - "id": 2769, + "id": 2805, "name": "--ts-var-kpi-comparison-color", "kind": 1024, "kindString": "Property", @@ -29129,7 +29168,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 803, + "line": 842, "character": 4 } ], @@ -29139,7 +29178,7 @@ } }, { - "id": 2768, + "id": 2804, "name": "--ts-var-kpi-hero-color", "kind": 1024, "kindString": "Property", @@ -29152,7 +29191,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 798, + "line": 837, "character": 4 } ], @@ -29162,7 +29201,7 @@ } }, { - "id": 2776, + "id": 2812, "name": "--ts-var-kpi-negative-change-color", "kind": 1024, "kindString": "Property", @@ -29175,7 +29214,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 838, + "line": 877, "character": 4 } ], @@ -29185,7 +29224,7 @@ } }, { - "id": 2775, + "id": 2811, "name": "--ts-var-kpi-positive-change-color", "kind": 1024, "kindString": "Property", @@ -29198,7 +29237,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 833, + "line": 872, "character": 4 } ], @@ -29208,7 +29247,7 @@ } }, { - "id": 2693, + "id": 2728, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -29231,7 +29270,7 @@ } }, { - "id": 2692, + "id": 2727, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -29254,7 +29293,7 @@ } }, { - "id": 2728, + "id": 2763, "name": "--ts-var-liveboard-answer-viz-padding", "kind": 1024, "kindString": "Property", @@ -29267,7 +29306,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 590, + "line": 610, "character": 4 } ], @@ -29277,7 +29316,7 @@ } }, { - "id": 2740, + "id": 2776, "name": "--ts-var-liveboard-chip--active-background", "kind": 1024, "kindString": "Property", @@ -29291,7 +29330,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 658, + "line": 697, "character": 4 } ], @@ -29301,7 +29340,7 @@ } }, { - "id": 2739, + "id": 2775, "name": "--ts-var-liveboard-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -29315,7 +29354,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 651, + "line": 690, "character": 4 } ], @@ -29325,7 +29364,7 @@ } }, { - "id": 2737, + "id": 2773, "name": "--ts-var-liveboard-chip-background", "kind": 1024, "kindString": "Property", @@ -29339,7 +29378,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 637, + "line": 676, "character": 4 } ], @@ -29349,7 +29388,7 @@ } }, { - "id": 2738, + "id": 2774, "name": "--ts-var-liveboard-chip-color", "kind": 1024, "kindString": "Property", @@ -29363,7 +29402,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 644, + "line": 683, "character": 4 } ], @@ -29373,7 +29412,7 @@ } }, { - "id": 2745, + "id": 2781, "name": "--ts-var-liveboard-cross-filter-layout-background", "kind": 1024, "kindString": "Property", @@ -29386,7 +29425,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 683, + "line": 722, "character": 4 } ], @@ -29396,7 +29435,7 @@ } }, { - "id": 2743, + "id": 2779, "name": "--ts-var-liveboard-dual-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -29409,7 +29448,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 673, + "line": 712, "character": 4 } ], @@ -29419,7 +29458,7 @@ } }, { - "id": 2742, + "id": 2778, "name": "--ts-var-liveboard-edit-bar-background", "kind": 1024, "kindString": "Property", @@ -29432,7 +29471,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 668, + "line": 707, "character": 4 } ], @@ -29442,7 +29481,7 @@ } }, { - "id": 2729, + "id": 2764, "name": "--ts-var-liveboard-group-background", "kind": 1024, "kindString": "Property", @@ -29450,12 +29489,13 @@ "isOptional": true }, "comment": { - "shortText": "Background color of the groups in the Liveboard." + "shortText": "Background color of the groups in the Liveboard.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 595, + "line": 617, "character": 4 } ], @@ -29465,7 +29505,7 @@ } }, { - "id": 2730, + "id": 2765, "name": "--ts-var-liveboard-group-border-color", "kind": 1024, "kindString": "Property", @@ -29473,12 +29513,13 @@ "isOptional": true }, "comment": { - "shortText": "Border color of the groups in the Liveboard." + "shortText": "Border color of the groups in the Liveboard.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 600, + "line": 624, "character": 4 } ], @@ -29488,7 +29529,7 @@ } }, { - "id": 2734, + "id": 2769, "name": "--ts-var-liveboard-group-description-font-color", "kind": 1024, "kindString": "Property", @@ -29496,12 +29537,13 @@ "isOptional": true }, "comment": { - "shortText": "Font color of the description of the groups in the Liveboard." + "shortText": "Font color of the description of the groups in the Liveboard.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 620, + "line": 648, "character": 4 } ], @@ -29511,7 +29553,7 @@ } }, { - "id": 2724, + "id": 2759, "name": "--ts-var-liveboard-group-description-font-size", "kind": 1024, "kindString": "Property", @@ -29519,12 +29561,13 @@ "isOptional": true }, "comment": { - "shortText": "Font size of the description of the groups in the Liveboard." + "shortText": "Font size of the description of the groups in the Liveboard.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 570, + "line": 584, "character": 4 } ], @@ -29534,7 +29577,7 @@ } }, { - "id": 2725, + "id": 2760, "name": "--ts-var-liveboard-group-description-font-weight", "kind": 1024, "kindString": "Property", @@ -29542,12 +29585,13 @@ "isOptional": true }, "comment": { - "shortText": "Font weight of the description of the groups in the Liveboard." + "shortText": "Font weight of the description of the groups in the Liveboard.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 575, + "line": 591, "character": 4 } ], @@ -29557,7 +29601,7 @@ } }, { - "id": 2718, + "id": 2753, "name": "--ts-var-liveboard-group-padding", "kind": 1024, "kindString": "Property", @@ -29565,12 +29609,13 @@ "isOptional": true }, "comment": { - "shortText": "Padding of the groups in the Liveboard." + "shortText": "Padding of the groups in the Liveboard.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 540, + "line": 542, "character": 4 } ], @@ -29580,7 +29625,7 @@ } }, { - "id": 2736, + "id": 2772, "name": "--ts-var-liveboard-group-tile-background", "kind": 1024, "kindString": "Property", @@ -29588,12 +29633,13 @@ "isOptional": true }, "comment": { - "shortText": "Background color of the tiles inside the groups in the Liveboard." + "shortText": "Background color of the tiles inside the groups in the Liveboard.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 630, + "line": 669, "character": 4 } ], @@ -29603,7 +29649,7 @@ } }, { - "id": 2726, + "id": 2761, "name": "--ts-var-liveboard-group-tile-border", "kind": 1024, "kindString": "Property", @@ -29611,12 +29657,13 @@ "isOptional": true }, "comment": { - "shortText": "Border of the tiles in the Liveboard." + "shortText": "Border of the group tiles in the Liveboard.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 580, + "line": 598, "character": 4 } ], @@ -29626,7 +29673,31 @@ } }, { - "id": 2727, + "id": 2771, + "name": "--ts-var-liveboard-group-tile-description-font-color", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Font color of the description of the tiles inside the groups in the Liveboard.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" + }, + "sources": [ + { + "fileName": "css-variables.ts", + "line": 662, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2762, "name": "--ts-var-liveboard-group-tile-padding", "kind": 1024, "kindString": "Property", @@ -29634,12 +29705,13 @@ "isOptional": true }, "comment": { - "shortText": "Padding of the tiles in the Liveboard." + "shortText": "Padding of the group tiles in the Liveboard.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 585, + "line": 605, "character": 4 } ], @@ -29649,7 +29721,7 @@ } }, { - "id": 2735, + "id": 2770, "name": "--ts-var-liveboard-group-tile-title-font-color", "kind": 1024, "kindString": "Property", @@ -29657,12 +29729,13 @@ "isOptional": true }, "comment": { - "shortText": "Font color of the title of the tiles inside the groups in the Liveboard." + "shortText": "Font color of the title of the tiles inside the groups in the Liveboard.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 625, + "line": 655, "character": 4 } ], @@ -29672,7 +29745,7 @@ } }, { - "id": 2722, + "id": 2757, "name": "--ts-var-liveboard-group-tile-title-font-size", "kind": 1024, "kindString": "Property", @@ -29680,12 +29753,13 @@ "isOptional": true }, "comment": { - "shortText": "Font size of the title of the tiles inside the groups in the Liveboard." + "shortText": "Font size of the title of the tiles inside the groups in the Liveboard.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 560, + "line": 570, "character": 4 } ], @@ -29695,7 +29769,7 @@ } }, { - "id": 2723, + "id": 2758, "name": "--ts-var-liveboard-group-tile-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29703,12 +29777,13 @@ "isOptional": true }, "comment": { - "shortText": "Font weight of the title of the tiles inside the groups in the Liveboard." + "shortText": "Font weight of the title of the tiles inside the groups in the Liveboard.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 565, + "line": 577, "character": 4 } ], @@ -29718,7 +29793,7 @@ } }, { - "id": 2733, + "id": 2768, "name": "--ts-var-liveboard-group-title-font-color", "kind": 1024, "kindString": "Property", @@ -29726,12 +29801,13 @@ "isOptional": true }, "comment": { - "shortText": "Font color of the title of the groups in the Liveboard." + "shortText": "Font color of the title of the groups in the Liveboard.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 615, + "line": 641, "character": 4 } ], @@ -29741,7 +29817,7 @@ } }, { - "id": 2720, + "id": 2755, "name": "--ts-var-liveboard-group-title-font-size", "kind": 1024, "kindString": "Property", @@ -29749,12 +29825,13 @@ "isOptional": true }, "comment": { - "shortText": "Font size of the title of the groups in the Liveboard." + "shortText": "Font size of the title of the groups in the Liveboard.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 550, + "line": 556, "character": 4 } ], @@ -29764,7 +29841,7 @@ } }, { - "id": 2721, + "id": 2756, "name": "--ts-var-liveboard-group-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29772,12 +29849,13 @@ "isOptional": true }, "comment": { - "shortText": "Font weight of the title of the groups in the Liveboard." + "shortText": "Font weight of the title of the groups in the Liveboard.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 555, + "line": 563, "character": 4 } ], @@ -29787,7 +29865,7 @@ } }, { - "id": 2719, + "id": 2754, "name": "--ts-var-liveboard-group-title-padding", "kind": 1024, "kindString": "Property", @@ -29795,12 +29873,13 @@ "isOptional": true }, "comment": { - "shortText": "Padding of the title of the groups in the Liveboard." + "shortText": "Padding of the title of the groups in the Liveboard.", + "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" }, "sources": [ { "fileName": "css-variables.ts", - "line": 545, + "line": 549, "character": 4 } ], @@ -29810,7 +29889,7 @@ } }, { - "id": 2761, + "id": 2797, "name": "--ts-var-liveboard-header-action-button-active-color", "kind": 1024, "kindString": "Property", @@ -29823,7 +29902,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 763, + "line": 802, "character": 4 } ], @@ -29833,7 +29912,7 @@ } }, { - "id": 2758, + "id": 2794, "name": "--ts-var-liveboard-header-action-button-background", "kind": 1024, "kindString": "Property", @@ -29846,7 +29925,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 748, + "line": 787, "character": 4 } ], @@ -29856,7 +29935,7 @@ } }, { - "id": 2759, + "id": 2795, "name": "--ts-var-liveboard-header-action-button-font-color", "kind": 1024, "kindString": "Property", @@ -29869,7 +29948,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 753, + "line": 792, "character": 4 } ], @@ -29879,7 +29958,7 @@ } }, { - "id": 2760, + "id": 2796, "name": "--ts-var-liveboard-header-action-button-hover-color", "kind": 1024, "kindString": "Property", @@ -29892,7 +29971,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 758, + "line": 797, "character": 4 } ], @@ -29902,7 +29981,7 @@ } }, { - "id": 2710, + "id": 2745, "name": "--ts-var-liveboard-header-background", "kind": 1024, "kindString": "Property", @@ -29925,7 +30004,7 @@ } }, { - "id": 2767, + "id": 2803, "name": "--ts-var-liveboard-header-badge-active-color", "kind": 1024, "kindString": "Property", @@ -29938,7 +30017,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 793, + "line": 832, "character": 4 } ], @@ -29948,7 +30027,7 @@ } }, { - "id": 2762, + "id": 2798, "name": "--ts-var-liveboard-header-badge-background", "kind": 1024, "kindString": "Property", @@ -29961,7 +30040,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 768, + "line": 807, "character": 4 } ], @@ -29971,7 +30050,7 @@ } }, { - "id": 2763, + "id": 2799, "name": "--ts-var-liveboard-header-badge-font-color", "kind": 1024, "kindString": "Property", @@ -29984,7 +30063,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 773, + "line": 812, "character": 4 } ], @@ -29994,7 +30073,7 @@ } }, { - "id": 2766, + "id": 2802, "name": "--ts-var-liveboard-header-badge-hover-color", "kind": 1024, "kindString": "Property", @@ -30007,7 +30086,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 788, + "line": 827, "character": 4 } ], @@ -30017,7 +30096,7 @@ } }, { - "id": 2764, + "id": 2800, "name": "--ts-var-liveboard-header-badge-modified-background", "kind": 1024, "kindString": "Property", @@ -30030,7 +30109,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 778, + "line": 817, "character": 4 } ], @@ -30040,7 +30119,7 @@ } }, { - "id": 2765, + "id": 2801, "name": "--ts-var-liveboard-header-badge-modified-font-color", "kind": 1024, "kindString": "Property", @@ -30053,7 +30132,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 783, + "line": 822, "character": 4 } ], @@ -30063,7 +30142,7 @@ } }, { - "id": 2712, + "id": 2747, "name": "--ts-var-liveboard-header-font-color", "kind": 1024, "kindString": "Property", @@ -30086,7 +30165,7 @@ } }, { - "id": 2711, + "id": 2746, "name": "--ts-var-liveboard-header-fontsize", "kind": 1024, "kindString": "Property", @@ -30109,7 +30188,7 @@ } }, { - "id": 2707, + "id": 2742, "name": "--ts-var-liveboard-layout-background", "kind": 1024, "kindString": "Property", @@ -30132,7 +30211,7 @@ } }, { - "id": 2708, + "id": 2743, "name": "--ts-var-liveboard-layout-title-color", "kind": 1024, "kindString": "Property", @@ -30155,7 +30234,7 @@ } }, { - "id": 2709, + "id": 2744, "name": "--ts-var-liveboard-layout-title-fontsize", "kind": 1024, "kindString": "Property", @@ -30178,7 +30257,7 @@ } }, { - "id": 2732, + "id": 2767, "name": "--ts-var-liveboard-notetitle-body-font-color", "kind": 1024, "kindString": "Property", @@ -30191,7 +30270,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 610, + "line": 634, "character": 4 } ], @@ -30201,7 +30280,7 @@ } }, { - "id": 2731, + "id": 2766, "name": "--ts-var-liveboard-notetitle-heading-font-color", "kind": 1024, "kindString": "Property", @@ -30214,7 +30293,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 605, + "line": 629, "character": 4 } ], @@ -30224,7 +30303,7 @@ } }, { - "id": 2744, + "id": 2780, "name": "--ts-var-liveboard-single-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -30237,7 +30316,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 678, + "line": 717, "character": 4 } ], @@ -30247,7 +30326,7 @@ } }, { - "id": 2746, + "id": 2782, "name": "--ts-var-liveboard-tab-active-border-color", "kind": 1024, "kindString": "Property", @@ -30260,7 +30339,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 688, + "line": 727, "character": 4 } ], @@ -30270,7 +30349,7 @@ } }, { - "id": 2747, + "id": 2783, "name": "--ts-var-liveboard-tab-hover-color", "kind": 1024, "kindString": "Property", @@ -30283,7 +30362,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 693, + "line": 732, "character": 4 } ], @@ -30293,7 +30372,7 @@ } }, { - "id": 2714, + "id": 2749, "name": "--ts-var-liveboard-tile-background", "kind": 1024, "kindString": "Property", @@ -30316,7 +30395,7 @@ } }, { - "id": 2713, + "id": 2748, "name": "--ts-var-liveboard-tile-border-color", "kind": 1024, "kindString": "Property", @@ -30339,7 +30418,7 @@ } }, { - "id": 2715, + "id": 2750, "name": "--ts-var-liveboard-tile-border-radius", "kind": 1024, "kindString": "Property", @@ -30362,7 +30441,7 @@ } }, { - "id": 2750, + "id": 2786, "name": "--ts-var-liveboard-tile-description-font-weight", "kind": 1024, "kindString": "Property", @@ -30375,7 +30454,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 708, + "line": 747, "character": 4 } ], @@ -30385,7 +30464,7 @@ } }, { - "id": 2751, + "id": 2787, "name": "--ts-var-liveboard-tile-description-opacity", "kind": 1024, "kindString": "Property", @@ -30398,7 +30477,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 713, + "line": 752, "character": 4 } ], @@ -30408,7 +30487,7 @@ } }, { - "id": 2716, + "id": 2751, "name": "--ts-var-liveboard-tile-padding", "kind": 1024, "kindString": "Property", @@ -30431,7 +30510,7 @@ } }, { - "id": 2717, + "id": 2752, "name": "--ts-var-liveboard-tile-table-header-background", "kind": 1024, "kindString": "Property", @@ -30454,7 +30533,7 @@ } }, { - "id": 2748, + "id": 2784, "name": "--ts-var-liveboard-tile-title-fontsize", "kind": 1024, "kindString": "Property", @@ -30467,7 +30546,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 698, + "line": 737, "character": 4 } ], @@ -30477,7 +30556,7 @@ } }, { - "id": 2749, + "id": 2785, "name": "--ts-var-liveboard-tile-title-fontweight", "kind": 1024, "kindString": "Property", @@ -30490,7 +30569,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 703, + "line": 742, "character": 4 } ], @@ -30500,7 +30579,7 @@ } }, { - "id": 2685, + "id": 2720, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -30523,7 +30602,7 @@ } }, { - "id": 2682, + "id": 2717, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -30546,7 +30625,7 @@ } }, { - "id": 2681, + "id": 2716, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -30569,7 +30648,7 @@ } }, { - "id": 2683, + "id": 2718, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -30592,7 +30671,7 @@ } }, { - "id": 2686, + "id": 2721, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -30615,7 +30694,7 @@ } }, { - "id": 2684, + "id": 2719, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -30638,7 +30717,7 @@ } }, { - "id": 2619, + "id": 2654, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -30661,7 +30740,7 @@ } }, { - "id": 2620, + "id": 2655, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -30684,7 +30763,7 @@ } }, { - "id": 2756, + "id": 2792, "name": "--ts-var-parameter-chip-active-background", "kind": 1024, "kindString": "Property", @@ -30697,7 +30776,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 738, + "line": 777, "character": 4 } ], @@ -30707,7 +30786,7 @@ } }, { - "id": 2757, + "id": 2793, "name": "--ts-var-parameter-chip-active-text-color", "kind": 1024, "kindString": "Property", @@ -30720,7 +30799,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 743, + "line": 782, "character": 4 } ], @@ -30730,7 +30809,7 @@ } }, { - "id": 2752, + "id": 2788, "name": "--ts-var-parameter-chip-background", "kind": 1024, "kindString": "Property", @@ -30743,7 +30822,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 718, + "line": 757, "character": 4 } ], @@ -30753,7 +30832,7 @@ } }, { - "id": 2754, + "id": 2790, "name": "--ts-var-parameter-chip-hover-background", "kind": 1024, "kindString": "Property", @@ -30766,7 +30845,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 728, + "line": 767, "character": 4 } ], @@ -30776,7 +30855,7 @@ } }, { - "id": 2755, + "id": 2791, "name": "--ts-var-parameter-chip-hover-text-color", "kind": 1024, "kindString": "Property", @@ -30789,7 +30868,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 733, + "line": 772, "character": 4 } ], @@ -30799,7 +30878,7 @@ } }, { - "id": 2753, + "id": 2789, "name": "--ts-var-parameter-chip-text-color", "kind": 1024, "kindString": "Property", @@ -30812,7 +30891,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 723, + "line": 762, "character": 4 } ], @@ -30822,7 +30901,7 @@ } }, { - "id": 2614, + "id": 2649, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -30845,7 +30924,7 @@ } }, { - "id": 2615, + "id": 2650, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -30868,7 +30947,7 @@ } }, { - "id": 2616, + "id": 2651, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -30891,7 +30970,7 @@ } }, { - "id": 2617, + "id": 2652, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -30914,7 +30993,7 @@ } }, { - "id": 2628, + "id": 2663, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -30937,7 +31016,7 @@ } }, { - "id": 2632, + "id": 2667, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -30960,7 +31039,7 @@ } }, { - "id": 2633, + "id": 2668, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -30983,7 +31062,7 @@ } }, { - "id": 2631, + "id": 2666, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -31006,7 +31085,7 @@ } }, { - "id": 2627, + "id": 2662, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -31029,7 +31108,7 @@ } }, { - "id": 2630, + "id": 2665, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -31052,7 +31131,7 @@ } }, { - "id": 2624, + "id": 2659, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -31075,7 +31154,7 @@ } }, { - "id": 2625, + "id": 2660, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -31098,7 +31177,7 @@ } }, { - "id": 2626, + "id": 2661, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -31121,7 +31200,7 @@ } }, { - "id": 2621, + "id": 2656, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -31144,7 +31223,7 @@ } }, { - "id": 2622, + "id": 2657, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -31167,7 +31246,7 @@ } }, { - "id": 2623, + "id": 2658, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -31190,7 +31269,7 @@ } }, { - "id": 2629, + "id": 2664, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -31213,7 +31292,7 @@ } }, { - "id": 2694, + "id": 2729, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -31236,7 +31315,7 @@ } }, { - "id": 2741, + "id": 2777, "name": "--ts-var-side-panel-width", "kind": 1024, "kindString": "Property", @@ -31249,7 +31328,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 663, + "line": 702, "character": 4 } ], @@ -31259,7 +31338,7 @@ } }, { - "id": 2781, + "id": 2817, "name": "--ts-var-spotiq-analyze-crosscorrelation-card-background", "kind": 1024, "kindString": "Property", @@ -31272,7 +31351,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 863, + "line": 902, "character": 4 } ], @@ -31282,7 +31361,7 @@ } }, { - "id": 2778, + "id": 2814, "name": "--ts-var-spotiq-analyze-forecasting-card-background", "kind": 1024, "kindString": "Property", @@ -31295,7 +31374,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 848, + "line": 887, "character": 4 } ], @@ -31305,7 +31384,7 @@ } }, { - "id": 2779, + "id": 2815, "name": "--ts-var-spotiq-analyze-outlier-card-background", "kind": 1024, "kindString": "Property", @@ -31318,7 +31397,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 853, + "line": 892, "character": 4 } ], @@ -31328,7 +31407,7 @@ } }, { - "id": 2780, + "id": 2816, "name": "--ts-var-spotiq-analyze-trend-card-background", "kind": 1024, "kindString": "Property", @@ -31341,7 +31420,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 858, + "line": 897, "character": 4 } ], @@ -31351,7 +31430,7 @@ } }, { - "id": 2634, + "id": 2669, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -31374,7 +31453,7 @@ } }, { - "id": 2635, + "id": 2670, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -31397,7 +31476,7 @@ } }, { - "id": 2664, + "id": 2699, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -31420,7 +31499,7 @@ } }, { - "id": 2662, + "id": 2697, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -31443,7 +31522,7 @@ } }, { - "id": 2663, + "id": 2698, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -31466,7 +31545,7 @@ } }, { - "id": 2659, + "id": 2694, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -31489,7 +31568,7 @@ } }, { - "id": 2660, + "id": 2695, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -31512,7 +31591,7 @@ } }, { - "id": 2661, + "id": 2696, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -31535,7 +31614,7 @@ } }, { - "id": 2665, + "id": 2700, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -31558,7 +31637,7 @@ } }, { - "id": 2706, + "id": 2741, "name": "--ts-var-viz-tile-height", "kind": 1024, "kindString": "Property", @@ -31581,7 +31660,7 @@ } }, { - "id": 2656, + "id": 2691, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -31604,7 +31683,7 @@ } }, { - "id": 2657, + "id": 2692, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -31627,7 +31706,7 @@ } }, { - "id": 2658, + "id": 2693, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -31655,175 +31734,176 @@ "title": "Properties", "kind": 1024, "children": [ - 2667, - 2666, - 2636, - 2637, - 2639, - 2638, - 2618, - 2679, - 2680, - 2677, - 2678, - 2641, - 2646, - 2643, - 2645, - 2644, - 2642, - 2651, - 2648, - 2650, - 2649, - 2647, - 2655, - 2654, - 2653, - 2652, - 2640, - 2782, - 2777, - 2772, - 2771, - 2774, - 2773, 2702, - 2705, - 2700, - 2703, - 2704, - 2699, 2701, - 2672, 2671, + 2672, 2674, 2673, - 2670, - 2668, - 2669, - 2675, + 2653, + 2714, + 2715, + 2712, + 2713, 2676, - 2687, - 2688, - 2691, - 2689, + 2681, + 2678, + 2680, + 2679, + 2677, + 2686, + 2683, + 2685, + 2684, + 2682, 2690, - 2698, - 2697, - 2696, - 2695, - 2770, - 2769, - 2768, - 2776, - 2775, - 2693, - 2692, - 2728, - 2740, - 2739, + 2689, + 2688, + 2687, + 2675, + 2818, + 2813, + 2808, + 2807, + 2810, + 2809, 2737, + 2740, + 2735, 2738, - 2745, - 2743, - 2742, - 2729, - 2730, + 2739, 2734, - 2724, - 2725, - 2718, 2736, - 2726, - 2727, - 2735, + 2707, + 2706, + 2709, + 2708, + 2705, + 2703, + 2704, + 2710, + 2711, 2722, 2723, + 2726, + 2724, + 2725, 2733, - 2720, - 2721, - 2719, - 2761, - 2758, - 2759, - 2760, - 2710, - 2767, - 2762, + 2732, + 2731, + 2730, + 2806, + 2805, + 2804, + 2812, + 2811, + 2728, + 2727, 2763, - 2766, + 2776, + 2775, + 2773, + 2774, + 2781, + 2779, + 2778, 2764, 2765, - 2712, - 2711, - 2707, - 2708, - 2709, - 2732, - 2731, - 2744, - 2746, + 2769, + 2759, + 2760, + 2753, + 2772, + 2761, + 2771, + 2762, + 2770, + 2757, + 2758, + 2768, + 2755, + 2756, + 2754, + 2797, + 2794, + 2795, + 2796, + 2745, + 2803, + 2798, + 2799, + 2802, + 2800, + 2801, 2747, - 2714, - 2713, - 2715, + 2746, + 2742, + 2743, + 2744, + 2767, + 2766, + 2780, + 2782, + 2783, + 2749, + 2748, 2750, + 2786, + 2787, 2751, - 2716, - 2717, - 2748, - 2749, - 2685, - 2682, - 2681, - 2683, - 2686, - 2684, - 2619, - 2620, - 2756, - 2757, 2752, - 2754, - 2755, - 2753, - 2614, - 2615, - 2616, - 2617, - 2628, - 2632, - 2633, - 2631, - 2627, - 2630, - 2624, - 2625, - 2626, - 2621, - 2622, - 2623, - 2629, - 2694, - 2741, - 2781, - 2778, - 2779, - 2780, - 2634, - 2635, - 2664, - 2662, + 2784, + 2785, + 2720, + 2717, + 2716, + 2718, + 2721, + 2719, + 2654, + 2655, + 2792, + 2793, + 2788, + 2790, + 2791, + 2789, + 2649, + 2650, + 2651, + 2652, 2663, + 2667, + 2668, + 2666, + 2662, + 2665, 2659, 2660, 2661, - 2665, - 2706, 2656, 2657, - 2658 + 2658, + 2664, + 2729, + 2777, + 2817, + 2814, + 2815, + 2816, + 2669, + 2670, + 2699, + 2697, + 2698, + 2694, + 2695, + 2696, + 2700, + 2741, + 2691, + 2692, + 2693 ] } ], @@ -31836,7 +31916,7 @@ ] }, { - "id": 2601, + "id": 2636, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -31846,7 +31926,7 @@ }, "children": [ { - "id": 2603, + "id": 2638, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -31862,12 +31942,12 @@ ], "type": { "type": "reference", - "id": 2604, + "id": 2639, "name": "customCssInterface" } }, { - "id": 2602, + "id": 2637, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -31892,8 +31972,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2603, - 2602 + 2638, + 2637 ] } ], @@ -31906,7 +31986,7 @@ ] }, { - "id": 2591, + "id": 2626, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -31922,7 +32002,7 @@ }, "children": [ { - "id": 2593, + "id": 2628, "name": "content", "kind": 1024, "kindString": "Property", @@ -31939,14 +32019,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2594, + "id": 2629, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2596, + "id": 2631, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -31976,7 +32056,7 @@ } }, { - "id": 2597, + "id": 2632, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -31996,7 +32076,7 @@ } }, { - "id": 2595, + "id": 2630, "name": "strings", "kind": 1024, "kindString": "Property", @@ -32039,21 +32119,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2596, - 2597, - 2595 + 2631, + 2632, + 2630 ] } ], "indexSignature": { - "id": 2598, + "id": 2633, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2599, + "id": 2634, "name": "key", "kind": 32768, "flags": {}, @@ -32072,7 +32152,7 @@ } }, { - "id": 2600, + "id": 2635, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -32092,7 +32172,7 @@ } }, { - "id": 2592, + "id": 2627, "name": "style", "kind": 1024, "kindString": "Property", @@ -32108,7 +32188,7 @@ ], "type": { "type": "reference", - "id": 2601, + "id": 2636, "name": "CustomStyles" } } @@ -32118,9 +32198,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2593, - 2600, - 2592 + 2628, + 2635, + 2627 ] } ], @@ -32133,7 +32213,7 @@ ] }, { - "id": 2200, + "id": 2233, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -32149,7 +32229,7 @@ }, "children": [ { - "id": 2242, + "id": 2275, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -32179,20 +32259,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2243, + "id": 2276, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2244, + "id": 2277, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2245, + "id": 2278, "name": "key", "kind": 32768, "flags": {}, @@ -32224,7 +32304,7 @@ } }, { - "id": 2203, + "id": 2236, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -32247,7 +32327,7 @@ } }, { - "id": 2224, + "id": 2257, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -32289,7 +32369,7 @@ } }, { - "id": 2226, + "id": 2259, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -32318,7 +32398,7 @@ } }, { - "id": 2202, + "id": 2235, "name": "authType", "kind": 1024, "kindString": "Property", @@ -32335,12 +32415,12 @@ ], "type": { "type": "reference", - "id": 1860, + "id": 1892, "name": "AuthType" } }, { - "id": 2215, + "id": 2248, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -32369,7 +32449,7 @@ } }, { - "id": 2227, + "id": 2260, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -32402,7 +32482,7 @@ } }, { - "id": 2218, + "id": 2251, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -32431,7 +32511,7 @@ } }, { - "id": 2239, + "id": 2272, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -32460,7 +32540,7 @@ } }, { - "id": 2249, + "id": 2282, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -32496,7 +32576,7 @@ } }, { - "id": 2246, + "id": 2279, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -32539,7 +32619,7 @@ } }, { - "id": 2223, + "id": 2256, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -32564,12 +32644,12 @@ ], "type": { "type": "reference", - "id": 2591, + "id": 2626, "name": "CustomisationsInterface" } }, { - "id": 2237, + "id": 2270, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -32598,7 +32678,7 @@ } }, { - "id": 2220, + "id": 2253, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -32628,7 +32708,7 @@ } }, { - "id": 2248, + "id": 2281, "name": "disableFullscreenPresentation", "kind": 1024, "kindString": "Property", @@ -32665,7 +32745,7 @@ } }, { - "id": 2241, + "id": 2274, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -32694,7 +32774,7 @@ } }, { - "id": 2216, + "id": 2249, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -32727,7 +32807,7 @@ } }, { - "id": 2247, + "id": 2280, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -32747,7 +32827,7 @@ } }, { - "id": 2236, + "id": 2269, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -32776,7 +32856,7 @@ } }, { - "id": 2214, + "id": 2247, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -32805,7 +32885,7 @@ } }, { - "id": 2209, + "id": 2242, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -32839,7 +32919,7 @@ } }, { - "id": 2235, + "id": 2268, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -32872,12 +32952,12 @@ ], "type": { "type": "reference", - "id": 2786, + "id": 2822, "name": "LogLevel" } }, { - "id": 2217, + "id": 2250, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -32906,7 +32986,7 @@ } }, { - "id": 2208, + "id": 2241, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -32939,7 +33019,7 @@ } }, { - "id": 2238, + "id": 2271, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -32968,7 +33048,7 @@ } }, { - "id": 2207, + "id": 2240, "name": "password", "kind": 1024, "kindString": "Property", @@ -32992,7 +33072,7 @@ } }, { - "id": 2233, + "id": 2266, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -33021,7 +33101,7 @@ } }, { - "id": 2219, + "id": 2252, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -33054,7 +33134,7 @@ } }, { - "id": 2210, + "id": 2243, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -33084,7 +33164,7 @@ } }, { - "id": 2212, + "id": 2245, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -33113,7 +33193,7 @@ } }, { - "id": 2234, + "id": 2267, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -33142,7 +33222,7 @@ } }, { - "id": 2213, + "id": 2246, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -33171,7 +33251,7 @@ } }, { - "id": 2222, + "id": 2255, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -33194,7 +33274,7 @@ } }, { - "id": 2221, + "id": 2254, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -33223,7 +33303,7 @@ } }, { - "id": 2201, + "id": 2234, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -33244,7 +33324,7 @@ } }, { - "id": 2225, + "id": 2258, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -33267,7 +33347,7 @@ } }, { - "id": 2206, + "id": 2239, "name": "username", "kind": 1024, "kindString": "Property", @@ -33290,7 +33370,7 @@ } }, { - "id": 2204, + "id": 2237, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -33306,7 +33386,7 @@ ], "signatures": [ { - "id": 2205, + "id": 2238, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -33334,50 +33414,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2242, - 2203, - 2224, - 2226, - 2202, - 2215, - 2227, - 2218, - 2239, - 2249, - 2246, - 2223, - 2237, - 2220, - 2248, - 2241, - 2216, - 2247, + 2275, 2236, - 2214, - 2209, + 2257, + 2259, 2235, - 2217, - 2208, - 2238, - 2207, - 2233, - 2219, - 2210, - 2212, + 2248, + 2260, + 2251, + 2272, + 2282, + 2279, + 2256, + 2270, + 2253, + 2281, + 2274, + 2249, + 2280, + 2269, + 2247, + 2242, + 2268, + 2250, + 2241, + 2271, + 2240, + 2266, + 2252, + 2243, + 2245, + 2267, + 2246, + 2255, + 2254, 2234, - 2213, - 2222, - 2221, - 2201, - 2225, - 2206 + 2258, + 2239 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2204 + 2237 ] } ], @@ -33390,7 +33470,7 @@ ] }, { - "id": 2550, + "id": 2585, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -33406,7 +33486,7 @@ }, "children": [ { - "id": 2552, + "id": 2587, "name": "height", "kind": 1024, "kindString": "Property", @@ -33438,7 +33518,7 @@ } }, { - "id": 2553, + "id": 2588, "name": "loading", "kind": 1024, "kindString": "Property", @@ -33474,7 +33554,7 @@ } }, { - "id": 2551, + "id": 2586, "name": "width", "kind": 1024, "kindString": "Property", @@ -33511,9 +33591,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2552, - 2553, - 2551 + 2587, + 2588, + 2586 ] } ], @@ -33525,7 +33605,7 @@ } ], "indexSignature": { - "id": 2554, + "id": 2589, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -33535,7 +33615,7 @@ }, "parameters": [ { - "id": 2555, + "id": 2590, "name": "key", "kind": 32768, "flags": {}, @@ -33569,7 +33649,7 @@ } }, { - "id": 2346, + "id": 2379, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -33585,7 +33665,7 @@ }, "children": [ { - "id": 2357, + "id": 2390, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -33619,7 +33699,7 @@ } }, { - "id": 2379, + "id": 2412, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -33650,20 +33730,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2380, + "id": 2413, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2381, + "id": 2414, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2382, + "id": 2415, "name": "key", "kind": 32768, "flags": {}, @@ -33699,7 +33779,7 @@ } }, { - "id": 2403, + "id": 2436, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -33741,7 +33821,7 @@ } }, { - "id": 2400, + "id": 2433, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -33771,7 +33851,7 @@ ], "type": { "type": "reference", - "id": 2196, + "id": 2229, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -33780,7 +33860,7 @@ } }, { - "id": 2416, + "id": 2449, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -33818,7 +33898,7 @@ } }, { - "id": 2397, + "id": 2430, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -33859,7 +33939,7 @@ } }, { - "id": 2383, + "id": 2416, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -33888,7 +33968,7 @@ ], "type": { "type": "reference", - "id": 2591, + "id": 2626, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -33897,7 +33977,7 @@ } }, { - "id": 2404, + "id": 2437, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -33939,7 +34019,7 @@ } }, { - "id": 2348, + "id": 2381, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -33977,7 +34057,7 @@ } }, { - "id": 2391, + "id": 2424, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -34015,7 +34095,7 @@ } }, { - "id": 2375, + "id": 2408, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -34053,7 +34133,7 @@ } }, { - "id": 2374, + "id": 2407, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -34085,7 +34165,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -34095,7 +34175,7 @@ } }, { - "id": 2387, + "id": 2420, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -34136,7 +34216,7 @@ } }, { - "id": 2410, + "id": 2443, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -34178,7 +34258,7 @@ } }, { - "id": 2415, + "id": 2448, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -34220,7 +34300,7 @@ } }, { - "id": 2405, + "id": 2438, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -34262,7 +34342,7 @@ } }, { - "id": 2388, + "id": 2421, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -34300,7 +34380,7 @@ } }, { - "id": 2349, + "id": 2382, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -34336,7 +34416,7 @@ } }, { - "id": 2401, + "id": 2434, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -34374,7 +34454,7 @@ } }, { - "id": 2402, + "id": 2435, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -34412,7 +34492,7 @@ } }, { - "id": 2390, + "id": 2423, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -34449,7 +34529,7 @@ } }, { - "id": 2371, + "id": 2404, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -34479,7 +34559,7 @@ ], "type": { "type": "reference", - "id": 2550, + "id": 2585, "name": "FrameParams" }, "inheritedFrom": { @@ -34488,7 +34568,7 @@ } }, { - "id": 2347, + "id": 2380, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -34522,7 +34602,7 @@ } }, { - "id": 2376, + "id": 2409, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -34558,7 +34638,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -34568,7 +34648,7 @@ } }, { - "id": 2363, + "id": 2396, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -34605,7 +34685,7 @@ } }, { - "id": 2413, + "id": 2446, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -34647,7 +34727,7 @@ } }, { - "id": 2406, + "id": 2439, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -34689,7 +34769,7 @@ } }, { - "id": 2358, + "id": 2391, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -34723,7 +34803,7 @@ } }, { - "id": 2384, + "id": 2417, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -34761,7 +34841,45 @@ } }, { - "id": 2411, + "id": 2451, + "name": "isLinkParametersEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag is used to enable or disable the link parameters in liveboard.", + "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.42.0 | ThoughtSpot: 10.14.0.cl" + }, + { + "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 isLinkParametersEnabled: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1529, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "LiveboardAppEmbedViewConfig.isLinkParametersEnabled" + } + }, + { + "id": 2444, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -34803,7 +34921,7 @@ } }, { - "id": 2409, + "id": 2442, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -34841,7 +34959,7 @@ } }, { - "id": 2365, + "id": 2398, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -34875,7 +34993,7 @@ } }, { - "id": 2366, + "id": 2399, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -34909,7 +35027,7 @@ } }, { - "id": 2367, + "id": 2400, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -34946,7 +35064,7 @@ } }, { - "id": 2368, + "id": 2401, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -34980,7 +35098,7 @@ } }, { - "id": 2393, + "id": 2426, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -35018,7 +35136,7 @@ } }, { - "id": 2350, + "id": 2383, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -35052,7 +35170,7 @@ } }, { - "id": 2356, + "id": 2389, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -35086,7 +35204,7 @@ } }, { - "id": 2417, + "id": 2450, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -35124,7 +35242,7 @@ } }, { - "id": 2378, + "id": 2411, "name": "locale", "kind": 1024, "kindString": "Property", @@ -35162,7 +35280,7 @@ } }, { - "id": 2392, + "id": 2425, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -35200,7 +35318,7 @@ } }, { - "id": 2386, + "id": 2419, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -35238,7 +35356,7 @@ } }, { - "id": 2353, + "id": 2386, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -35272,7 +35390,7 @@ } }, { - "id": 2394, + "id": 2427, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -35310,7 +35428,7 @@ } }, { - "id": 2398, + "id": 2431, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -35342,7 +35460,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1872, + "id": 1904, "name": "RuntimeFilter" } }, @@ -35352,7 +35470,7 @@ } }, { - "id": 2399, + "id": 2432, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -35384,7 +35502,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2783, + "id": 2819, "name": "RuntimeParameter" } }, @@ -35394,7 +35512,7 @@ } }, { - "id": 2396, + "id": 2429, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -35431,7 +35549,7 @@ } }, { - "id": 2408, + "id": 2441, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -35473,7 +35591,7 @@ } }, { - "id": 2414, + "id": 2447, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -35515,7 +35633,7 @@ } }, { - "id": 2407, + "id": 2440, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -35557,7 +35675,7 @@ } }, { - "id": 2412, + "id": 2445, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -35599,7 +35717,7 @@ } }, { - "id": 2359, + "id": 2392, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -35633,7 +35751,7 @@ } }, { - "id": 2369, + "id": 2402, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -35666,7 +35784,7 @@ } }, { - "id": 2377, + "id": 2410, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -35702,7 +35820,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -35712,7 +35830,7 @@ } }, { - "id": 2364, + "id": 2397, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -35749,7 +35867,7 @@ } }, { - "id": 2354, + "id": 2387, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -35786,7 +35904,7 @@ } }, { - "id": 2352, + "id": 2385, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -35825,63 +35943,64 @@ "title": "Properties", "kind": 1024, "children": [ - 2357, - 2379, - 2403, - 2400, + 2390, + 2412, + 2436, + 2433, + 2449, + 2430, 2416, - 2397, - 2383, + 2437, + 2381, + 2424, + 2408, + 2407, + 2420, + 2443, + 2448, + 2438, + 2421, + 2382, + 2434, + 2435, + 2423, 2404, - 2348, - 2391, - 2375, - 2374, - 2387, - 2410, - 2415, - 2405, - 2388, - 2349, - 2401, - 2402, - 2390, - 2371, - 2347, - 2376, - 2363, - 2413, - 2406, - 2358, - 2384, - 2411, + 2380, 2409, - 2365, - 2366, - 2367, - 2368, - 2393, - 2350, - 2356, + 2396, + 2446, + 2439, + 2391, 2417, - 2378, - 2392, - 2386, - 2353, - 2394, + 2451, + 2444, + 2442, 2398, 2399, - 2396, - 2408, - 2414, - 2407, - 2412, - 2359, - 2369, - 2377, - 2364, - 2354, - 2352 + 2400, + 2401, + 2426, + 2383, + 2389, + 2450, + 2411, + 2425, + 2419, + 2386, + 2427, + 2431, + 2432, + 2429, + 2441, + 2447, + 2440, + 2445, + 2392, + 2402, + 2410, + 2397, + 2387, + 2385 ] } ], @@ -35908,7 +36027,7 @@ ] }, { - "id": 1872, + "id": 1904, "name": "RuntimeFilter", "kind": 256, "kindString": "Interface", @@ -35918,7 +36037,7 @@ }, "children": [ { - "id": 1873, + "id": 1905, "name": "columnName", "kind": 1024, "kindString": "Property", @@ -35929,7 +36048,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1715, + "line": 1730, "character": 4 } ], @@ -35939,7 +36058,7 @@ } }, { - "id": 1874, + "id": 1906, "name": "operator", "kind": 1024, "kindString": "Property", @@ -35950,18 +36069,18 @@ "sources": [ { "fileName": "types.ts", - "line": 1719, + "line": 1734, "character": 4 } ], "type": { "type": "reference", - "id": 1876, + "id": 1908, "name": "RuntimeFilterOp" } }, { - "id": 1875, + "id": 1907, "name": "values", "kind": 1024, "kindString": "Property", @@ -35972,7 +36091,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1725, + "line": 1740, "character": 4 } ], @@ -36007,22 +36126,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1873, - 1874, - 1875 + 1905, + 1906, + 1907 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1711, + "line": 1726, "character": 17 } ] }, { - "id": 2783, + "id": 2819, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -36032,7 +36151,7 @@ }, "children": [ { - "id": 2784, + "id": 2820, "name": "name", "kind": 1024, "kindString": "Property", @@ -36043,7 +36162,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1735, + "line": 1750, "character": 4 } ], @@ -36053,7 +36172,7 @@ } }, { - "id": 2785, + "id": 2821, "name": "value", "kind": 1024, "kindString": "Property", @@ -36064,7 +36183,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1739, + "line": 1754, "character": 4 } ], @@ -36092,21 +36211,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2784, - 2785 + 2820, + 2821 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1731, + "line": 1746, "character": 17 } ] }, { - "id": 2418, + "id": 2452, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -36126,7 +36245,7 @@ }, "children": [ { - "id": 2447, + "id": 2481, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -36157,20 +36276,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2448, + "id": 2482, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2449, + "id": 2483, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2450, + "id": 2484, "name": "key", "kind": 32768, "flags": {}, @@ -36206,7 +36325,7 @@ } }, { - "id": 2435, + "id": 2469, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -36248,7 +36367,7 @@ } }, { - "id": 2432, + "id": 2466, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -36278,7 +36397,7 @@ ], "type": { "type": "reference", - "id": 2196, + "id": 2229, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -36287,7 +36406,7 @@ } }, { - "id": 2464, + "id": 2498, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -36328,7 +36447,7 @@ } }, { - "id": 2451, + "id": 2485, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -36357,7 +36476,7 @@ ], "type": { "type": "reference", - "id": 2591, + "id": 2626, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -36366,7 +36485,7 @@ } }, { - "id": 2436, + "id": 2470, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -36408,7 +36527,7 @@ } }, { - "id": 2428, + "id": 2462, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -36431,7 +36550,7 @@ } }, { - "id": 2459, + "id": 2493, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -36469,7 +36588,7 @@ } }, { - "id": 2423, + "id": 2457, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -36498,7 +36617,7 @@ } }, { - "id": 2443, + "id": 2477, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -36536,7 +36655,7 @@ } }, { - "id": 2442, + "id": 2476, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -36568,7 +36687,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -36578,7 +36697,7 @@ } }, { - "id": 2455, + "id": 2489, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -36619,7 +36738,7 @@ } }, { - "id": 2437, + "id": 2471, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -36661,7 +36780,7 @@ } }, { - "id": 2456, + "id": 2490, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -36699,7 +36818,7 @@ } }, { - "id": 2433, + "id": 2467, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -36737,7 +36856,7 @@ } }, { - "id": 2434, + "id": 2468, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -36775,7 +36894,7 @@ } }, { - "id": 2458, + "id": 2492, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -36812,7 +36931,7 @@ } }, { - "id": 2439, + "id": 2473, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -36842,7 +36961,7 @@ ], "type": { "type": "reference", - "id": 2550, + "id": 2585, "name": "FrameParams" }, "inheritedFrom": { @@ -36851,7 +36970,7 @@ } }, { - "id": 2444, + "id": 2478, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -36887,7 +37006,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -36897,7 +37016,7 @@ } }, { - "id": 2425, + "id": 2459, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -36926,7 +37045,7 @@ } }, { - "id": 2422, + "id": 2456, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -36955,7 +37074,7 @@ } }, { - "id": 2427, + "id": 2461, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -36989,7 +37108,7 @@ } }, { - "id": 2421, + "id": 2455, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -37022,7 +37141,7 @@ } }, { - "id": 2424, + "id": 2458, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -37051,7 +37170,7 @@ } }, { - "id": 2452, + "id": 2486, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -37089,7 +37208,7 @@ } }, { - "id": 2461, + "id": 2495, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -37127,7 +37246,7 @@ } }, { - "id": 2446, + "id": 2480, "name": "locale", "kind": 1024, "kindString": "Property", @@ -37165,7 +37284,7 @@ } }, { - "id": 2460, + "id": 2494, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -37203,7 +37322,7 @@ } }, { - "id": 2454, + "id": 2488, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -37241,7 +37360,7 @@ } }, { - "id": 2430, + "id": 2464, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -37273,7 +37392,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1872, + "id": 1904, "name": "RuntimeFilter" } }, @@ -37283,7 +37402,7 @@ } }, { - "id": 2431, + "id": 2465, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -37315,7 +37434,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2783, + "id": 2819, "name": "RuntimeParameter" } }, @@ -37325,7 +37444,7 @@ } }, { - "id": 2429, + "id": 2463, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -37359,7 +37478,7 @@ } }, { - "id": 2463, + "id": 2497, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -37396,7 +37515,7 @@ } }, { - "id": 2419, + "id": 2453, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -37425,7 +37544,7 @@ } }, { - "id": 2426, + "id": 2460, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -37454,7 +37573,7 @@ } }, { - "id": 2445, + "id": 2479, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -37490,7 +37609,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -37505,42 +37624,42 @@ "title": "Properties", "kind": 1024, "children": [ - 2447, - 2435, - 2432, - 2464, - 2451, - 2436, - 2428, + 2481, + 2469, + 2466, + 2498, + 2485, + 2470, + 2462, + 2493, + 2457, + 2477, + 2476, + 2489, + 2471, + 2490, + 2467, + 2468, + 2492, + 2473, + 2478, 2459, - 2423, - 2443, - 2442, - 2455, - 2437, 2456, - 2433, - 2434, - 2458, - 2439, - 2444, - 2425, - 2422, - 2427, - 2421, - 2424, - 2452, 2461, - 2446, - 2460, - 2454, - 2430, - 2431, - 2429, + 2455, + 2458, + 2486, + 2495, + 2480, + 2494, + 2488, + 2464, + 2465, 2463, - 2419, - 2426, - 2445 + 2497, + 2453, + 2460, + 2479 ] } ], @@ -37594,7 +37713,7 @@ ] }, { - "id": 2304, + "id": 2337, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -37609,7 +37728,7 @@ }, "children": [ { - "id": 2319, + "id": 2352, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -37640,20 +37759,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2320, + "id": 2353, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2321, + "id": 2354, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2322, + "id": 2355, "name": "key", "kind": 32768, "flags": {}, @@ -37689,7 +37808,7 @@ } }, { - "id": 2343, + "id": 2376, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -37731,7 +37850,7 @@ } }, { - "id": 2340, + "id": 2373, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -37761,7 +37880,7 @@ ], "type": { "type": "reference", - "id": 2196, + "id": 2229, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -37770,7 +37889,7 @@ } }, { - "id": 2337, + "id": 2370, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -37811,7 +37930,7 @@ } }, { - "id": 2323, + "id": 2356, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -37840,7 +37959,7 @@ ], "type": { "type": "reference", - "id": 2591, + "id": 2626, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -37849,7 +37968,7 @@ } }, { - "id": 2344, + "id": 2377, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -37891,7 +38010,7 @@ } }, { - "id": 2306, + "id": 2339, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -37925,7 +38044,7 @@ } }, { - "id": 2305, + "id": 2338, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -37966,7 +38085,7 @@ } }, { - "id": 2331, + "id": 2364, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -38004,7 +38123,7 @@ } }, { - "id": 2315, + "id": 2348, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -38042,7 +38161,7 @@ } }, { - "id": 2314, + "id": 2347, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -38074,7 +38193,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -38084,7 +38203,7 @@ } }, { - "id": 2327, + "id": 2360, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -38125,7 +38244,7 @@ } }, { - "id": 2345, + "id": 2378, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -38167,7 +38286,7 @@ } }, { - "id": 2328, + "id": 2361, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -38205,7 +38324,7 @@ } }, { - "id": 2341, + "id": 2374, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -38243,7 +38362,7 @@ } }, { - "id": 2342, + "id": 2375, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -38281,7 +38400,7 @@ } }, { - "id": 2309, + "id": 2342, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -38315,7 +38434,7 @@ } }, { - "id": 2330, + "id": 2363, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -38352,7 +38471,7 @@ } }, { - "id": 2311, + "id": 2344, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -38382,7 +38501,7 @@ ], "type": { "type": "reference", - "id": 2550, + "id": 2585, "name": "FrameParams" }, "inheritedFrom": { @@ -38391,7 +38510,7 @@ } }, { - "id": 2316, + "id": 2349, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -38427,7 +38546,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -38437,7 +38556,7 @@ } }, { - "id": 2324, + "id": 2357, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -38475,7 +38594,7 @@ } }, { - "id": 2333, + "id": 2366, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -38513,7 +38632,7 @@ } }, { - "id": 2318, + "id": 2351, "name": "locale", "kind": 1024, "kindString": "Property", @@ -38551,7 +38670,7 @@ } }, { - "id": 2332, + "id": 2365, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -38589,7 +38708,7 @@ } }, { - "id": 2326, + "id": 2359, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -38627,7 +38746,7 @@ } }, { - "id": 2334, + "id": 2367, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -38665,7 +38784,7 @@ } }, { - "id": 2338, + "id": 2371, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -38697,7 +38816,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1872, + "id": 1904, "name": "RuntimeFilter" } }, @@ -38707,7 +38826,7 @@ } }, { - "id": 2339, + "id": 2372, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -38739,7 +38858,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2783, + "id": 2819, "name": "RuntimeParameter" } }, @@ -38749,7 +38868,7 @@ } }, { - "id": 2308, + "id": 2341, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -38783,7 +38902,7 @@ } }, { - "id": 2336, + "id": 2369, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -38820,7 +38939,7 @@ } }, { - "id": 2307, + "id": 2340, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -38854,7 +38973,7 @@ } }, { - "id": 2317, + "id": 2350, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -38890,7 +39009,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -38905,38 +39024,38 @@ "title": "Properties", "kind": 1024, "children": [ - 2319, - 2343, - 2340, - 2337, - 2323, + 2352, + 2376, + 2373, + 2370, + 2356, + 2377, + 2339, + 2338, + 2364, + 2348, + 2347, + 2360, + 2378, + 2361, + 2374, + 2375, + 2342, + 2363, 2344, - 2306, - 2305, - 2331, - 2315, - 2314, - 2327, - 2345, - 2328, + 2349, + 2357, + 2366, + 2351, + 2365, + 2359, + 2367, + 2371, + 2372, 2341, - 2342, - 2309, - 2330, - 2311, - 2316, - 2324, - 2333, - 2318, - 2332, - 2326, - 2334, - 2338, - 2339, - 2308, - 2336, - 2307, - 2317 + 2369, + 2340, + 2350 ] } ], @@ -38959,7 +39078,7 @@ ] }, { - "id": 2250, + "id": 2283, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -38975,7 +39094,7 @@ }, "children": [ { - "id": 2286, + "id": 2319, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -39006,20 +39125,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2287, + "id": 2320, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2288, + "id": 2321, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2289, + "id": 2322, "name": "key", "kind": 32768, "flags": {}, @@ -39055,7 +39174,7 @@ } }, { - "id": 2262, + "id": 2295, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -39089,7 +39208,7 @@ } }, { - "id": 2252, + "id": 2285, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -39123,7 +39242,7 @@ } }, { - "id": 2251, + "id": 2284, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -39157,7 +39276,7 @@ } }, { - "id": 2274, + "id": 2307, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -39199,7 +39318,7 @@ } }, { - "id": 2265, + "id": 2298, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -39236,7 +39355,7 @@ } }, { - "id": 2271, + "id": 2304, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -39266,7 +39385,7 @@ ], "type": { "type": "reference", - "id": 2196, + "id": 2229, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -39275,7 +39394,7 @@ } }, { - "id": 2303, + "id": 2336, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -39316,7 +39435,7 @@ } }, { - "id": 2290, + "id": 2323, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -39345,7 +39464,7 @@ ], "type": { "type": "reference", - "id": 2591, + "id": 2626, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -39354,7 +39473,7 @@ } }, { - "id": 2267, + "id": 2300, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -39392,7 +39511,7 @@ } }, { - "id": 2275, + "id": 2308, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -39434,7 +39553,7 @@ } }, { - "id": 2258, + "id": 2291, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -39468,7 +39587,7 @@ } }, { - "id": 2257, + "id": 2290, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -39504,7 +39623,7 @@ } }, { - "id": 2298, + "id": 2331, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -39542,7 +39661,7 @@ } }, { - "id": 2282, + "id": 2315, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -39580,7 +39699,7 @@ } }, { - "id": 2281, + "id": 2314, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -39612,7 +39731,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -39622,7 +39741,7 @@ } }, { - "id": 2294, + "id": 2327, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -39663,7 +39782,7 @@ } }, { - "id": 2276, + "id": 2309, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -39705,7 +39824,7 @@ } }, { - "id": 2255, + "id": 2288, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -39739,7 +39858,7 @@ } }, { - "id": 2295, + "id": 2328, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -39777,7 +39896,7 @@ } }, { - "id": 2272, + "id": 2305, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -39815,7 +39934,7 @@ } }, { - "id": 2273, + "id": 2306, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -39853,7 +39972,7 @@ } }, { - "id": 2261, + "id": 2294, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -39887,7 +40006,7 @@ } }, { - "id": 2297, + "id": 2330, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -39924,7 +40043,7 @@ } }, { - "id": 2268, + "id": 2301, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -39962,7 +40081,7 @@ } }, { - "id": 2256, + "id": 2289, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -39996,7 +40115,7 @@ } }, { - "id": 2278, + "id": 2311, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -40026,7 +40145,7 @@ ], "type": { "type": "reference", - "id": 2550, + "id": 2585, "name": "FrameParams" }, "inheritedFrom": { @@ -40035,7 +40154,7 @@ } }, { - "id": 2283, + "id": 2316, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -40071,7 +40190,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -40081,7 +40200,7 @@ } }, { - "id": 2253, + "id": 2286, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -40115,7 +40234,7 @@ } }, { - "id": 2254, + "id": 2287, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -40149,7 +40268,7 @@ } }, { - "id": 2263, + "id": 2296, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -40183,7 +40302,7 @@ } }, { - "id": 2291, + "id": 2324, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -40221,7 +40340,7 @@ } }, { - "id": 2266, + "id": 2299, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -40251,7 +40370,7 @@ } }, { - "id": 2300, + "id": 2333, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -40289,7 +40408,7 @@ } }, { - "id": 2285, + "id": 2318, "name": "locale", "kind": 1024, "kindString": "Property", @@ -40327,7 +40446,7 @@ } }, { - "id": 2299, + "id": 2332, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -40365,7 +40484,7 @@ } }, { - "id": 2293, + "id": 2326, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -40403,7 +40522,7 @@ } }, { - "id": 2269, + "id": 2302, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -40435,7 +40554,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1872, + "id": 1904, "name": "RuntimeFilter" } }, @@ -40445,7 +40564,7 @@ } }, { - "id": 2270, + "id": 2303, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -40477,7 +40596,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2783, + "id": 2819, "name": "RuntimeParameter" } }, @@ -40487,7 +40606,7 @@ } }, { - "id": 2260, + "id": 2293, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -40517,7 +40636,7 @@ } }, { - "id": 2259, + "id": 2292, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -40546,7 +40665,7 @@ } }, { - "id": 2302, + "id": 2335, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -40583,7 +40702,7 @@ } }, { - "id": 2264, + "id": 2297, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -40613,7 +40732,7 @@ } }, { - "id": 2284, + "id": 2317, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -40649,7 +40768,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -40664,50 +40783,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2286, - 2262, - 2252, - 2251, - 2274, - 2265, - 2271, - 2303, - 2290, - 2267, - 2275, - 2258, - 2257, - 2298, - 2282, - 2281, - 2294, - 2276, - 2255, + 2319, 2295, - 2272, - 2273, - 2261, - 2297, - 2268, - 2256, - 2278, - 2283, - 2253, - 2254, - 2263, - 2291, - 2266, - 2300, 2285, + 2284, + 2307, + 2298, + 2304, + 2336, + 2323, + 2300, + 2308, + 2291, + 2290, + 2331, + 2315, + 2314, + 2327, + 2309, + 2288, + 2328, + 2305, + 2306, + 2294, + 2330, + 2301, + 2289, + 2311, + 2316, + 2286, + 2287, + 2296, + 2324, 2299, - 2293, - 2269, - 2270, - 2260, - 2259, + 2333, + 2318, + 2332, + 2326, 2302, - 2264, - 2284 + 2303, + 2293, + 2292, + 2335, + 2297, + 2317 ] } ], @@ -40740,14 +40859,14 @@ ] }, { - "id": 1841, + "id": 1873, "name": "SessionInterface", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1844, + "id": 1876, "name": "acSession", "kind": 1024, "kindString": "Property", @@ -40762,14 +40881,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1845, + "id": 1877, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1847, + "id": 1879, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -40787,7 +40906,7 @@ } }, { - "id": 1846, + "id": 1878, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -40810,8 +40929,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1847, - 1846 + 1879, + 1878 ] } ] @@ -40819,7 +40938,7 @@ } }, { - "id": 1843, + "id": 1875, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -40837,7 +40956,7 @@ } }, { - "id": 1842, + "id": 1874, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -40860,9 +40979,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1844, - 1843, - 1842 + 1876, + 1875, + 1874 ] } ], @@ -40875,7 +40994,7 @@ ] }, { - "id": 1207, + "id": 1231, "name": "SpotterAgentEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -40891,7 +41010,7 @@ }, "children": [ { - "id": 1218, + "id": 1242, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -40922,20 +41041,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1219, + "id": 1243, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1220, + "id": 1244, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1221, + "id": 1245, "name": "key", "kind": 32768, "flags": {}, @@ -40971,7 +41090,7 @@ } }, { - "id": 1235, + "id": 1259, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -41012,7 +41131,7 @@ } }, { - "id": 1222, + "id": 1246, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -41041,7 +41160,7 @@ ], "type": { "type": "reference", - "id": 2591, + "id": 2626, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -41050,7 +41169,7 @@ } }, { - "id": 1230, + "id": 1254, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -41088,7 +41207,7 @@ } }, { - "id": 1214, + "id": 1238, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -41126,7 +41245,7 @@ } }, { - "id": 1213, + "id": 1237, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -41158,7 +41277,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -41168,7 +41287,7 @@ } }, { - "id": 1226, + "id": 1250, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -41209,7 +41328,7 @@ } }, { - "id": 1227, + "id": 1251, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -41247,7 +41366,7 @@ } }, { - "id": 1229, + "id": 1253, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -41284,7 +41403,7 @@ } }, { - "id": 1210, + "id": 1234, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -41314,7 +41433,7 @@ ], "type": { "type": "reference", - "id": 2550, + "id": 2585, "name": "FrameParams" }, "inheritedFrom": { @@ -41323,7 +41442,7 @@ } }, { - "id": 1215, + "id": 1239, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -41359,7 +41478,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -41369,7 +41488,7 @@ } }, { - "id": 1223, + "id": 1247, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -41407,7 +41526,7 @@ } }, { - "id": 1232, + "id": 1256, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -41445,7 +41564,7 @@ } }, { - "id": 1217, + "id": 1241, "name": "locale", "kind": 1024, "kindString": "Property", @@ -41483,7 +41602,7 @@ } }, { - "id": 1231, + "id": 1255, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -41521,7 +41640,7 @@ } }, { - "id": 1225, + "id": 1249, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -41559,7 +41678,7 @@ } }, { - "id": 1234, + "id": 1258, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -41596,7 +41715,7 @@ } }, { - "id": 1216, + "id": 1240, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -41632,7 +41751,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -41642,7 +41761,7 @@ } }, { - "id": 1208, + "id": 1232, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -41668,25 +41787,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1218, - 1235, - 1222, - 1230, - 1214, - 1213, - 1226, - 1227, - 1229, - 1210, - 1215, - 1223, - 1232, - 1217, - 1231, - 1225, + 1242, + 1259, + 1246, + 1254, + 1238, + 1237, + 1250, + 1251, + 1253, 1234, - 1216, - 1208 + 1239, + 1247, + 1256, + 1241, + 1255, + 1249, + 1258, + 1240, + 1232 ] } ], @@ -41716,13 +41835,13 @@ "extendedBy": [ { "type": "reference", - "id": 1236, + "id": 1260, "name": "BodylessConversationViewConfig" } ] }, { - "id": 1458, + "id": 1486, "name": "SpotterEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -41738,7 +41857,7 @@ }, "children": [ { - "id": 1479, + "id": 1507, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -41769,20 +41888,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1480, + "id": 1508, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1481, + "id": 1509, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1482, + "id": 1510, "name": "key", "kind": 32768, "flags": {}, @@ -41818,7 +41937,7 @@ } }, { - "id": 1496, + "id": 1524, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -41859,7 +41978,7 @@ } }, { - "id": 1483, + "id": 1511, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -41888,7 +42007,7 @@ ], "type": { "type": "reference", - "id": 2591, + "id": 2626, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -41897,7 +42016,7 @@ } }, { - "id": 1463, + "id": 1491, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -41935,7 +42054,7 @@ } }, { - "id": 1491, + "id": 1519, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -41973,7 +42092,7 @@ } }, { - "id": 1461, + "id": 1489, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -42007,7 +42126,7 @@ } }, { - "id": 1475, + "id": 1503, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -42045,7 +42164,7 @@ } }, { - "id": 1474, + "id": 1502, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -42077,7 +42196,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -42087,7 +42206,7 @@ } }, { - "id": 1487, + "id": 1515, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -42128,7 +42247,7 @@ } }, { - "id": 1488, + "id": 1516, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -42166,7 +42285,7 @@ } }, { - "id": 1467, + "id": 1495, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -42200,7 +42319,7 @@ } }, { - "id": 1469, + "id": 1497, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -42234,7 +42353,7 @@ } }, { - "id": 1490, + "id": 1518, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -42271,7 +42390,7 @@ } }, { - "id": 1471, + "id": 1499, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -42301,7 +42420,7 @@ ], "type": { "type": "reference", - "id": 2550, + "id": 2585, "name": "FrameParams" }, "inheritedFrom": { @@ -42310,7 +42429,7 @@ } }, { - "id": 1476, + "id": 1504, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -42346,7 +42465,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -42356,7 +42475,7 @@ } }, { - "id": 1465, + "id": 1493, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -42390,7 +42509,7 @@ } }, { - "id": 1462, + "id": 1490, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -42424,7 +42543,7 @@ } }, { - "id": 1484, + "id": 1512, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -42462,7 +42581,7 @@ } }, { - "id": 1493, + "id": 1521, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -42500,7 +42619,7 @@ } }, { - "id": 1478, + "id": 1506, "name": "locale", "kind": 1024, "kindString": "Property", @@ -42538,7 +42657,7 @@ } }, { - "id": 1492, + "id": 1520, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -42576,7 +42695,7 @@ } }, { - "id": 1486, + "id": 1514, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -42614,7 +42733,7 @@ } }, { - "id": 1466, + "id": 1494, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -42646,13 +42765,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1872, + "id": 1904, "name": "RuntimeFilter" } } }, { - "id": 1468, + "id": 1496, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -42684,13 +42803,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2783, + "id": 2819, "name": "RuntimeParameter" } } }, { - "id": 1460, + "id": 1488, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -42713,7 +42832,7 @@ } }, { - "id": 1495, + "id": 1523, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -42750,7 +42869,7 @@ } }, { - "id": 1464, + "id": 1492, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -42784,7 +42903,7 @@ } }, { - "id": 1477, + "id": 1505, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -42820,7 +42939,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2059, + "id": 2092, "name": "Action" } }, @@ -42830,7 +42949,7 @@ } }, { - "id": 1459, + "id": 1487, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -42856,35 +42975,35 @@ "title": "Properties", "kind": 1024, "children": [ - 1479, - 1496, - 1483, - 1463, + 1507, + 1524, + 1511, 1491, - 1461, - 1475, - 1474, - 1487, - 1488, - 1467, - 1469, - 1490, - 1471, - 1476, - 1465, - 1462, - 1484, + 1519, + 1489, + 1503, + 1502, + 1515, + 1516, + 1495, + 1497, + 1518, + 1499, + 1504, 1493, - 1478, + 1490, + 1512, + 1521, + 1506, + 1520, + 1514, + 1494, + 1496, + 1488, + 1523, 1492, - 1486, - 1466, - 1468, - 1460, - 1495, - 1464, - 1477, - 1459 + 1505, + 1487 ] } ], @@ -42914,20 +43033,20 @@ "extendedBy": [ { "type": "reference", - "id": 1497, + "id": 1525, "name": "ConversationViewConfig" } ] }, { - "id": 1848, + "id": 1880, "name": "UnderlyingDataPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1849, + "id": 1881, "name": "columnId", "kind": 1024, "kindString": "Property", @@ -42945,7 +43064,7 @@ } }, { - "id": 1850, + "id": 1882, "name": "dataValue", "kind": 1024, "kindString": "Property", @@ -42968,8 +43087,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1849, - 1850 + 1881, + 1882 ] } ], @@ -42982,14 +43101,14 @@ ] }, { - "id": 2821, + "id": 2857, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2822, + "id": 2858, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -42997,7 +43116,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5686, + "line": 5734, "character": 4 } ], @@ -43010,7 +43129,7 @@ } }, { - "id": 2823, + "id": 2859, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -43018,7 +43137,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5687, + "line": 5735, "character": 4 } ], @@ -43036,21 +43155,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2822, - 2823 + 2858, + 2859 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5685, + "line": 5733, "character": 17 } ] }, { - "id": 2604, + "id": 2639, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -43060,7 +43179,7 @@ }, "children": [ { - "id": 2606, + "id": 2641, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -43090,20 +43209,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2607, + "id": 2642, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2608, + "id": 2643, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2609, + "id": 2644, "name": "selector", "kind": 32768, "flags": {}, @@ -43116,7 +43235,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2610, + "id": 2645, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43129,14 +43248,14 @@ } ], "indexSignature": { - "id": 2611, + "id": 2646, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2612, + "id": 2647, "name": "declaration", "kind": 32768, "flags": {}, @@ -43158,7 +43277,7 @@ } }, { - "id": 2605, + "id": 2640, "name": "variables", "kind": 1024, "kindString": "Property", @@ -43177,7 +43296,7 @@ ], "type": { "type": "reference", - "id": 2613, + "id": 2648, "name": "CustomCssVariables" } } @@ -43187,8 +43306,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2606, - 2605 + 2641, + 2640 ] } ], @@ -43493,7 +43612,7 @@ ] }, { - "id": 2574, + "id": 2609, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -43520,7 +43639,7 @@ } }, { - "id": 2578, + "id": 2613, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -43528,14 +43647,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1548, + "line": 1563, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2579, + "id": 2614, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43552,13 +43671,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1548, + "line": 1563, "character": 30 } ], "signatures": [ { - "id": 2580, + "id": 2615, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43568,19 +43687,19 @@ }, "parameters": [ { - "id": 2581, + "id": 2616, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2586, + "id": 2621, "name": "MessagePayload" } }, { - "id": 2582, + "id": 2617, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -43590,7 +43709,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2583, + "id": 2618, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43598,13 +43717,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1555, + "line": 1570, "character": 16 } ], "signatures": [ { - "id": 2584, + "id": 2619, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43614,7 +43733,7 @@ }, "parameters": [ { - "id": 2585, + "id": 2620, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -43645,7 +43764,7 @@ } }, { - "id": 2575, + "id": 2610, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -43662,21 +43781,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1537, + "line": 1552, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2576, + "id": 2611, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2577, + "id": 2612, "name": "start", "kind": 1024, "kindString": "Property", @@ -43689,7 +43808,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1542, + "line": 1557, "character": 4 } ], @@ -43704,14 +43823,14 @@ "title": "Properties", "kind": 1024, "children": [ - 2577 + 2612 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1537, + "line": 1552, "character": 29 } ] @@ -43719,7 +43838,7 @@ } }, { - "id": 2586, + "id": 2621, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -43736,21 +43855,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1524, + "line": 1539, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2587, + "id": 2622, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2589, + "id": 2624, "name": "data", "kind": 1024, "kindString": "Property", @@ -43758,7 +43877,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1528, + "line": 1543, "character": 4 } ], @@ -43768,7 +43887,7 @@ } }, { - "id": 2590, + "id": 2625, "name": "status", "kind": 1024, "kindString": "Property", @@ -43778,7 +43897,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1530, + "line": 1545, "character": 4 } ], @@ -43788,7 +43907,7 @@ } }, { - "id": 2588, + "id": 2623, "name": "type", "kind": 1024, "kindString": "Property", @@ -43796,7 +43915,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1526, + "line": 1541, "character": 4 } ], @@ -43811,16 +43930,16 @@ "title": "Properties", "kind": 1024, "children": [ - 2589, - 2590, - 2588 + 2624, + 2625, + 2623 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1524, + "line": 1539, "character": 29 } ] @@ -43878,7 +43997,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1768, + "id": 1800, "name": "AnswerService" } } @@ -44140,7 +44259,7 @@ ], "type": { "type": "reference", - "id": 1768, + "id": 1800, "name": "AnswerService" } }, @@ -44227,7 +44346,7 @@ }, "type": { "type": "reference", - "id": 2200, + "id": 2233, "name": "EmbedConfig" } } @@ -44327,14 +44446,14 @@ }, "type": { "type": "reference", - "id": 2200, + "id": 2233, "name": "EmbedConfig" } } ], "type": { "type": "reference", - "id": 1715, + "id": 1747, "name": "AuthEventEmitter" } } @@ -44474,7 +44593,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2545, + "id": 2580, "name": "PrefetchFeatures" } } @@ -44546,7 +44665,7 @@ ] }, { - "id": 2870, + "id": 2906, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -44562,7 +44681,7 @@ ], "signatures": [ { - "id": 2871, + "id": 2907, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -44756,7 +44875,7 @@ ] }, { - "id": 2793, + "id": 2829, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -44770,7 +44889,7 @@ ], "signatures": [ { - "id": 2794, + "id": 2830, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -44780,7 +44899,7 @@ }, "parameters": [ { - "id": 2795, + "id": 2831, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -44792,7 +44911,7 @@ } }, { - "id": 2796, + "id": 2832, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -44803,7 +44922,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2797, + "id": 2833, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -44826,74 +44945,74 @@ "title": "Enumerations", "kind": 4, "children": [ - 2059, - 1713, - 1698, - 1705, - 1860, - 2196, - 2865, - 2861, - 2857, - 2055, + 2092, + 1745, + 1730, + 1737, 1892, - 2556, - 2815, - 2809, - 2567, - 1985, - 2818, + 2229, + 2901, + 2897, + 2893, + 2088, + 1924, + 2591, 2851, - 2786, - 1851, - 2545, - 2813, - 1876, - 2844 + 2845, + 2602, + 2017, + 2854, + 2887, + 2822, + 1883, + 2580, + 2849, + 1908, + 2880 ] }, { "title": "Classes", "kind": 128, "children": [ - 1768, - 969, - 1265, - 1536, - 578, - 797, - 227, + 1800, + 989, + 1289, + 1564, + 590, + 813, + 231, 55, - 1175, - 1296 + 1199, + 1320 ] }, { "title": "Interfaces", "kind": 256, "children": [ - 2465, - 1715, - 1236, - 1497, - 2824, - 2613, - 2601, - 2591, - 2200, - 2550, - 2346, - 1872, - 2783, - 2418, - 2304, - 2250, - 1841, - 1207, - 1458, - 1848, - 2821, - 2604, + 2499, + 1747, + 1260, + 1525, + 2860, + 2648, + 2636, + 2626, + 2233, + 2585, + 2379, + 1904, + 2819, + 2452, + 2337, + 2283, + 1873, + 1231, + 1486, + 1880, + 2857, + 2639, 21, 25 ] @@ -44902,10 +45021,10 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2574, - 2578, - 2575, - 2586 + 2609, + 2613, + 2610, + 2621 ] }, { @@ -44921,9 +45040,9 @@ 1, 4, 7, - 2870, + 2906, 37, - 2793 + 2829 ] } ], From ecc671e5604045bd5bfb3b9c8cbf54154fa56de2 Mon Sep 17 00:00:00 2001 From: shivam-kumar-ts Date: Fri, 10 Oct 2025 23:10:34 +0530 Subject: [PATCH 15/31] SCAL-274111 Add hideTagFilterChips option to AppEmbed for cleaner UI (#324) --- src/embed/app.spec.ts | 45 + src/embed/app.ts | 25 + src/types.ts | 1 + static/typedoc/typedoc.json | 1975 ++++++++++++++++++----------------- 4 files changed, 1076 insertions(+), 970 deletions(-) diff --git a/src/embed/app.spec.ts b/src/embed/app.spec.ts index d6ef1842b..cd471f477 100644 --- a/src/embed/app.spec.ts +++ b/src/embed/app.spec.ts @@ -430,6 +430,51 @@ describe('App embed tests', () => { }); }); + test('Should add the hideTagFilterChips true to the iframe src', async () => { + const appEmbed = new AppEmbed(getRootEl(), { + ...defaultViewConfig, + showPrimaryNavbar: false, + hideTagFilterChips: true, + } as AppViewConfig); + + appEmbed.render(); + await executeAfterWait(() => { + expectUrlMatchesWithParams( + getIFrameSrc(), + `http://${thoughtSpotHost}/?embedApp=true&primaryNavHidden=true&profileAndHelpInNavBarHidden=false${defaultParams}&hideTagFilterChips=true${defaultParamsPost}#/home`, + ); + }); + }); + + test('Should add the hideTagFilterChips false to the iframe src', async () => { + const appEmbed = new AppEmbed(getRootEl(), { + ...defaultViewConfig, + showPrimaryNavbar: false, + hideTagFilterChips: false, + } as AppViewConfig); + appEmbed.render(); + await executeAfterWait(() => { + expectUrlMatchesWithParams( + getIFrameSrc(), + `http://${thoughtSpotHost}/?embedApp=true&primaryNavHidden=true&profileAndHelpInNavBarHidden=false${defaultParams}&hideTagFilterChips=false${defaultParamsPost}#/home`, + ); + }); + }); + + test('Should not add hideTagFilterChips if it is undefined', async () => { + const appEmbed = new AppEmbed(getRootEl(), { + ...defaultViewConfig, + showPrimaryNavbar: false, + } as AppViewConfig); + appEmbed.render(); + await executeAfterWait(() => { + expectUrlMatchesWithParams( + getIFrameSrc(), + `http://${thoughtSpotHost}/?embedApp=true&primaryNavHidden=true&profileAndHelpInNavBarHidden=false${defaultParams}${defaultParamsPost}#/home`, + ); + }); + }); + test('Should add enableSearchAssist flagto the iframe src', async () => { const appEmbed = new AppEmbed(getRootEl(), { ...defaultViewConfig, diff --git a/src/embed/app.ts b/src/embed/app.ts index 12fe87dc1..8b26cc6ac 100644 --- a/src/embed/app.ts +++ b/src/embed/app.ts @@ -367,6 +367,26 @@ export interface AppViewConfig extends AllEmbedViewConfig { * ``` */ tag?: string; + /** + * Hide tag filter chips that appear when content is filtered by tags. + * When enabled, this automatically: + * - Hides tag filter indicators/chips from the UI + * + * This provides a clean interface without tag-related UI elements. + * + * Supported embed types: `AppEmbed` + * @version SDK: 1.44.0 | ThoughtSpot: 10.15.0.cl + * @example + * ```js + * // Simple usage - automatically hides all tag-related UI + * const embed = new AppEmbed('#tsEmbed', { + * ... // other embed view config + * tag: 'Some Tag', + * hideTagFilterChips: true, // This is all you need! + * }); + * ``` + */ + hideTagFilterChips?: boolean; /** * The array of GUIDs to be hidden * @@ -625,6 +645,7 @@ export class AppEmbed extends V1Embed { protected getEmbedParams() { const { tag, + hideTagFilterChips, hideObjects, liveboardV2, showPrimaryNavbar, @@ -750,6 +771,10 @@ export class AppEmbed extends V1Embed { if (isPNGInScheduledEmailsEnabled !== undefined) { params[Param.isPNGInScheduledEmailsEnabled] = isPNGInScheduledEmailsEnabled; } + + if (hideTagFilterChips !== undefined) { + params[Param.HideTagFilterChips] = hideTagFilterChips; + } if (isLinkParametersEnabled !== undefined) { params[Param.isLinkParametersEnabled] = isLinkParametersEnabled; diff --git a/src/types.ts b/src/types.ts index 1dce2c82c..5af6ccf00 100644 --- a/src/types.ts +++ b/src/types.ts @@ -4261,6 +4261,7 @@ export enum Param { HideResult = 'hideResult', UseLastSelectedDataSource = 'useLastSelectedSources', Tag = 'tag', + HideTagFilterChips = 'hideTagFilterChips', AutoLogin = 'autoLogin', searchTokenString = 'searchTokenString', executeSearch = 'executeSearch', diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 67109e872..2ab1d747e 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -48,7 +48,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5434, + "line": 5435, "character": 4 } ], @@ -76,7 +76,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4580, + "line": 4581, "character": 4 } ], @@ -104,7 +104,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4509, + "line": 4510, "character": 4 } ], @@ -128,7 +128,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4498, + "line": 4499, "character": 4 } ], @@ -152,7 +152,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4561, + "line": 4562, "character": 4 } ], @@ -176,7 +176,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4570, + "line": 4571, "character": 4 } ], @@ -204,7 +204,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4590, + "line": 4591, "character": 4 } ], @@ -232,7 +232,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5228, + "line": 5229, "character": 4 } ], @@ -260,7 +260,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4950, + "line": 4951, "character": 4 } ], @@ -288,7 +288,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5401, + "line": 5402, "character": 4 } ], @@ -316,7 +316,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4938, + "line": 4939, "character": 4 } ], @@ -344,7 +344,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4926, + "line": 4927, "character": 4 } ], @@ -373,7 +373,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5390, + "line": 5391, "character": 4 } ], @@ -401,7 +401,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5063, + "line": 5064, "character": 4 } ], @@ -429,7 +429,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5097, + "line": 5098, "character": 4 } ], @@ -457,7 +457,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5152, + "line": 5153, "character": 4 } ], @@ -485,7 +485,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5086, + "line": 5087, "character": 4 } ], @@ -513,7 +513,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5120, + "line": 5121, "character": 4 } ], @@ -541,7 +541,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5162, + "line": 5163, "character": 4 } ], @@ -569,7 +569,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5131, + "line": 5132, "character": 4 } ], @@ -597,7 +597,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5184, + "line": 5185, "character": 4 } ], @@ -625,7 +625,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5141, + "line": 5142, "character": 4 } ], @@ -653,7 +653,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5108, + "line": 5109, "character": 4 } ], @@ -681,7 +681,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5172, + "line": 5173, "character": 4 } ], @@ -709,7 +709,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5074, + "line": 5075, "character": 4 } ], @@ -737,7 +737,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5532, + "line": 5533, "character": 4 } ], @@ -761,7 +761,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4552, + "line": 4553, "character": 4 } ], @@ -789,7 +789,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4543, + "line": 4544, "character": 4 } ], @@ -817,7 +817,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4531, + "line": 4532, "character": 4 } ], @@ -845,7 +845,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5608, + "line": 5609, "character": 4 } ], @@ -869,7 +869,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4520, + "line": 4521, "character": 4 } ], @@ -884,7 +884,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4877, + "line": 4878, "character": 4 } ], @@ -908,7 +908,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4457, + "line": 4458, "character": 4 } ], @@ -932,7 +932,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4876, + "line": 4877, "character": 4 } ], @@ -960,7 +960,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5618, + "line": 5619, "character": 4 } ], @@ -988,7 +988,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5365, + "line": 5366, "character": 4 } ], @@ -1016,7 +1016,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4970, + "line": 4971, "character": 4 } ], @@ -1044,7 +1044,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5021, + "line": 5022, "character": 4 } ], @@ -1072,7 +1072,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5589, + "line": 5590, "character": 4 } ], @@ -1100,7 +1100,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5501, + "line": 5502, "character": 4 } ], @@ -1128,7 +1128,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5520, + "line": 5521, "character": 4 } ], @@ -1152,7 +1152,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4640, + "line": 4641, "character": 4 } ], @@ -1176,7 +1176,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4673, + "line": 4674, "character": 4 } ], @@ -1201,7 +1201,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4663, + "line": 4664, "character": 4 } ], @@ -1225,7 +1225,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4650, + "line": 4651, "character": 4 } ], @@ -1249,7 +1249,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4683, + "line": 4684, "character": 4 } ], @@ -1273,7 +1273,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4893, + "line": 4894, "character": 4 } ], @@ -1297,7 +1297,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4866, + "line": 4867, "character": 4 } ], @@ -1321,7 +1321,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4857, + "line": 4858, "character": 4 } ], @@ -1345,7 +1345,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4759, + "line": 4760, "character": 4 } ], @@ -1369,7 +1369,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4448, + "line": 4449, "character": 4 } ], @@ -1397,7 +1397,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4959, + "line": 4960, "character": 4 } ], @@ -1412,7 +1412,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4882, + "line": 4883, "character": 4 } ], @@ -1440,7 +1440,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5578, + "line": 5579, "character": 4 } ], @@ -1468,7 +1468,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5272, + "line": 5273, "character": 4 } ], @@ -1496,7 +1496,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5447, + "line": 5448, "character": 4 } ], @@ -1520,7 +1520,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4727, + "line": 4728, "character": 4 } ], @@ -1544,7 +1544,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4767, + "line": 4768, "character": 4 } ], @@ -1572,7 +1572,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5599, + "line": 5600, "character": 4 } ], @@ -1600,7 +1600,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5238, + "line": 5239, "character": 4 } ], @@ -1628,7 +1628,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5249, + "line": 5250, "character": 4 } ], @@ -1652,7 +1652,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4846, + "line": 4847, "character": 4 } ], @@ -1677,7 +1677,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4699, + "line": 4700, "character": 4 } ], @@ -1701,7 +1701,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4709, + "line": 4710, "character": 4 } ], @@ -1729,7 +1729,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5634, + "line": 5635, "character": 4 } ], @@ -1757,7 +1757,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5511, + "line": 5512, "character": 4 } ], @@ -1781,7 +1781,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4808, + "line": 4809, "character": 4 } ], @@ -1809,7 +1809,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5333, + "line": 5334, "character": 4 } ], @@ -1833,7 +1833,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4439, + "line": 4440, "character": 4 } ], @@ -1857,7 +1857,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5313, + "line": 5314, "character": 4 } ], @@ -1885,7 +1885,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5011, + "line": 5012, "character": 4 } ], @@ -1913,7 +1913,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5490, + "line": 5491, "character": 4 } ], @@ -1941,7 +1941,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5218, + "line": 5219, "character": 4 } ], @@ -1968,7 +1968,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5293, + "line": 5294, "character": 4 } ], @@ -1992,7 +1992,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5302, + "line": 5303, "character": 4 } ], @@ -2020,7 +2020,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5423, + "line": 5424, "character": 4 } ], @@ -2048,7 +2048,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5458, + "line": 5459, "character": 4 } ], @@ -2076,7 +2076,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5323, + "line": 5324, "character": 4 } ], @@ -2100,7 +2100,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4825, + "line": 4826, "character": 4 } ], @@ -2124,7 +2124,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5678, + "line": 5679, "character": 4 } ], @@ -2148,7 +2148,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4737, + "line": 4738, "character": 4 } ], @@ -2176,7 +2176,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5544, + "line": 5545, "character": 4 } ], @@ -2201,7 +2201,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4916, + "line": 4917, "character": 4 } ], @@ -2225,7 +2225,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4777, + "line": 4778, "character": 4 } ], @@ -2253,7 +2253,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5690, + "line": 5691, "character": 4 } ], @@ -2281,7 +2281,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5052, + "line": 5053, "character": 4 } ], @@ -2309,7 +2309,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5412, + "line": 5413, "character": 4 } ], @@ -2337,7 +2337,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5198, + "line": 5199, "character": 4 } ], @@ -2368,7 +2368,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4980, + "line": 4981, "character": 4 } ], @@ -2392,7 +2392,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4902, + "line": 4903, "character": 4 } ], @@ -2420,7 +2420,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5208, + "line": 5209, "character": 4 } ], @@ -2448,7 +2448,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5556, + "line": 5557, "character": 4 } ], @@ -2476,7 +2476,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5284, + "line": 5285, "character": 4 } ], @@ -2500,7 +2500,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4408, + "line": 4409, "character": 4 } ], @@ -2524,7 +2524,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4426, + "line": 4427, "character": 4 } ], @@ -2548,7 +2548,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4471, + "line": 4472, "character": 4 } ], @@ -2572,7 +2572,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4480, + "line": 4481, "character": 4 } ], @@ -2587,7 +2587,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4883, + "line": 4884, "character": 4 } ], @@ -2611,7 +2611,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4489, + "line": 4490, "character": 4 } ], @@ -2629,7 +2629,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4615, + "line": 4616, "character": 4 } ], @@ -2657,7 +2657,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5259, + "line": 5260, "character": 4 } ], @@ -2681,7 +2681,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4630, + "line": 4631, "character": 4 } ], @@ -2705,7 +2705,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4603, + "line": 4604, "character": 4 } ], @@ -2733,7 +2733,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5567, + "line": 5568, "character": 4 } ], @@ -2761,7 +2761,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5667, + "line": 5668, "character": 4 } ], @@ -2789,7 +2789,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5645, + "line": 5646, "character": 4 } ], @@ -2817,7 +2817,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5656, + "line": 5657, "character": 4 } ], @@ -2841,7 +2841,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4838, + "line": 4839, "character": 4 } ], @@ -2869,7 +2869,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5001, + "line": 5002, "character": 4 } ], @@ -2897,7 +2897,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4990, + "line": 4991, "character": 4 } ], @@ -2925,7 +2925,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5031, + "line": 5032, "character": 4 } ], @@ -2953,7 +2953,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5041, + "line": 5042, "character": 4 } ], @@ -2985,7 +2985,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5352, + "line": 5353, "character": 4 } ], @@ -3009,7 +3009,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4749, + "line": 4750, "character": 4 } ], @@ -3037,7 +3037,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5480, + "line": 5481, "character": 4 } ], @@ -3061,7 +3061,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4718, + "line": 4719, "character": 4 } ], @@ -3089,7 +3089,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5376, + "line": 5377, "character": 4 } ], @@ -3117,7 +3117,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5469, + "line": 5470, "character": 4 } ], @@ -3253,7 +3253,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4399, + "line": 4400, "character": 12 } ] @@ -3826,7 +3826,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5711, + "line": 5712, "character": 4 } ], @@ -3841,7 +3841,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5709, + "line": 5710, "character": 4 } ], @@ -3856,7 +3856,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5710, + "line": 5711, "character": 4 } ], @@ -3877,13 +3877,13 @@ "sources": [ { "fileName": "types.ts", - "line": 5708, + "line": 5709, "character": 12 } ] }, { - "id": 2901, + "id": 2902, "name": "CustomActionTarget", "kind": 4, "kindString": "Enumeration", @@ -3893,7 +3893,7 @@ }, "children": [ { - "id": 2904, + "id": 2905, "name": "ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -3901,14 +3901,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5796, + "line": 5797, "character": 4 } ], "defaultValue": "\"ANSWER\"" }, { - "id": 2902, + "id": 2903, "name": "LIVEBOARD", "kind": 16, "kindString": "Enumeration member", @@ -3916,14 +3916,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5794, + "line": 5795, "character": 4 } ], "defaultValue": "\"LIVEBOARD\"" }, { - "id": 2905, + "id": 2906, "name": "SPOTTER", "kind": 16, "kindString": "Enumeration member", @@ -3931,14 +3931,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5797, + "line": 5798, "character": 4 } ], "defaultValue": "\"SPOTTER\"" }, { - "id": 2903, + "id": 2904, "name": "VIZ", "kind": 16, "kindString": "Enumeration member", @@ -3946,7 +3946,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5795, + "line": 5796, "character": 4 } ], @@ -3958,23 +3958,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2904, - 2902, 2905, - 2903 + 2903, + 2906, + 2904 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5793, + "line": 5794, "character": 12 } ] }, { - "id": 2897, + "id": 2898, "name": "CustomActionsPosition", "kind": 4, "kindString": "Enumeration", @@ -3984,7 +3984,7 @@ }, "children": [ { - "id": 2900, + "id": 2901, "name": "CONTEXTMENU", "kind": 16, "kindString": "Enumeration member", @@ -3992,14 +3992,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5787, + "line": 5788, "character": 4 } ], "defaultValue": "\"CONTEXTMENU\"" }, { - "id": 2899, + "id": 2900, "name": "MENU", "kind": 16, "kindString": "Enumeration member", @@ -4007,14 +4007,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5786, + "line": 5787, "character": 4 } ], "defaultValue": "\"MENU\"" }, { - "id": 2898, + "id": 2899, "name": "PRIMARY", "kind": 16, "kindString": "Enumeration member", @@ -4022,7 +4022,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5785, + "line": 5786, "character": 4 } ], @@ -4034,22 +4034,22 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2901, 2900, - 2899, - 2898 + 2899 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5784, + "line": 5785, "character": 12 } ] }, { - "id": 2893, + "id": 2894, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -4059,7 +4059,7 @@ }, "children": [ { - "id": 2895, + "id": 2896, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4077,7 +4077,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 2894, + "id": 2895, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4095,7 +4095,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 2896, + "id": 2897, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -4118,9 +4118,9 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2896, 2895, - 2894, - 2896 + 2897 ] } ], @@ -6655,7 +6655,7 @@ ] }, { - "id": 2591, + "id": 2592, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -6665,7 +6665,7 @@ }, "children": [ { - "id": 2595, + "id": 2596, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -6688,7 +6688,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2599, + "id": 2600, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6712,7 +6712,7 @@ "defaultValue": "\"create\"" }, { - "id": 2601, + "id": 2602, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -6736,7 +6736,7 @@ "defaultValue": "\"favorites\"" }, { - "id": 2593, + "id": 2594, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6759,7 +6759,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2598, + "id": 2599, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6782,7 +6782,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2594, + "id": 2595, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6805,7 +6805,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2596, + "id": 2597, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6828,7 +6828,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2592, + "id": 2593, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6851,7 +6851,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2597, + "id": 2598, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6874,7 +6874,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2600, + "id": 2601, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -6903,16 +6903,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2595, + 2596, + 2600, + 2602, + 2594, 2599, - 2601, + 2595, + 2597, 2593, 2598, - 2594, - 2596, - 2592, - 2597, - 2600 + 2601 ] } ], @@ -6925,7 +6925,7 @@ ] }, { - "id": 2851, + "id": 2852, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -6941,7 +6941,7 @@ }, "children": [ { - "id": 2852, + "id": 2853, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -6959,7 +6959,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2853, + "id": 2854, "name": "ModularWithStylingChanges", "kind": 16, "kindString": "Enumeration member", @@ -6982,8 +6982,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2852, - 2853 + 2853, + 2854 ] } ], @@ -6996,14 +6996,14 @@ ] }, { - "id": 2845, + "id": 2846, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2847, + "id": 2848, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -7018,7 +7018,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2848, + "id": 2849, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -7033,7 +7033,7 @@ "defaultValue": "\"none\"" }, { - "id": 2846, + "id": 2847, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -7053,9 +7053,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2847, 2848, - 2846 + 2849, + 2847 ] } ], @@ -7068,7 +7068,7 @@ ] }, { - "id": 2602, + "id": 2603, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -7084,7 +7084,7 @@ }, "children": [ { - "id": 2605, + "id": 2606, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -7102,7 +7102,7 @@ "defaultValue": "\"FAVORITE\"" }, { - "id": 2608, + "id": 2609, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -7120,7 +7120,7 @@ "defaultValue": "\"LEARNING\"" }, { - "id": 2606, + "id": 2607, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -7138,7 +7138,7 @@ "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2603, + "id": 2604, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7156,7 +7156,7 @@ "defaultValue": "\"SEARCH\"" }, { - "id": 2607, + "id": 2608, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -7174,7 +7174,7 @@ "defaultValue": "\"TRENDING\"" }, { - "id": 2604, + "id": 2605, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -7197,12 +7197,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2605, - 2608, 2606, - 2603, + 2609, 2607, - 2604 + 2604, + 2608, + 2605 ] } ], @@ -9443,7 +9443,7 @@ ] }, { - "id": 2854, + "id": 2855, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -9459,7 +9459,7 @@ }, "children": [ { - "id": 2855, + "id": 2856, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -9477,7 +9477,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2856, + "id": 2857, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -9500,8 +9500,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2855, - 2856 + 2856, + 2857 ] } ], @@ -9514,7 +9514,7 @@ ] }, { - "id": 2887, + "id": 2888, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -9530,7 +9530,7 @@ }, "children": [ { - "id": 2890, + "id": 2891, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -9548,7 +9548,7 @@ "defaultValue": "\"AUTHOR\"" }, { - "id": 2891, + "id": 2892, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -9566,7 +9566,7 @@ "defaultValue": "\"DATE_SORT\"" }, { - "id": 2888, + "id": 2889, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -9584,7 +9584,7 @@ "defaultValue": "\"FAVOURITE\"" }, { - "id": 2892, + "id": 2893, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -9602,7 +9602,7 @@ "defaultValue": "\"SHARE\"" }, { - "id": 2889, + "id": 2890, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -9625,11 +9625,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2890, 2891, - 2888, 2892, - 2889 + 2889, + 2893, + 2890 ] } ], @@ -9642,7 +9642,7 @@ ] }, { - "id": 2822, + "id": 2823, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -9652,7 +9652,7 @@ }, "children": [ { - "id": 2827, + "id": 2828, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -9673,14 +9673,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5871, + "line": 5872, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2824, + "id": 2825, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -9701,14 +9701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5832, + "line": 5833, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2826, + "id": 2827, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -9729,14 +9729,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5857, + "line": 5858, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2823, + "id": 2824, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -9757,14 +9757,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5820, + "line": 5821, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2828, + "id": 2829, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -9785,14 +9785,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5883, + "line": 5884, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2825, + "id": 2826, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -9813,7 +9813,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5844, + "line": 5845, "character": 4 } ], @@ -9825,19 +9825,19 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2828, + 2825, 2827, 2824, - 2826, - 2823, - 2828, - 2825 + 2829, + 2826 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5807, + "line": 5808, "character": 12 } ] @@ -10003,14 +10003,14 @@ ] }, { - "id": 2580, + "id": 2581, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2581, + "id": 2582, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -10018,14 +10018,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5698, + "line": 5699, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2583, + "id": 2584, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10033,14 +10033,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5700, + "line": 5701, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2582, + "id": 2583, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10048,14 +10048,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5699, + "line": 5700, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2584, + "id": 2585, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10063,7 +10063,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5701, + "line": 5702, "character": 4 } ], @@ -10075,23 +10075,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2581, - 2583, 2582, - 2584 + 2584, + 2583, + 2585 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5697, + "line": 5698, "character": 12 } ] }, { - "id": 2849, + "id": 2850, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -10107,7 +10107,7 @@ }, "children": [ { - "id": 2850, + "id": 2851, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -10130,7 +10130,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2850 + 2851 ] } ], @@ -10455,14 +10455,14 @@ ] }, { - "id": 2880, + "id": 2881, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2885, + "id": 2886, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -10477,7 +10477,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2884, + "id": 2885, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -10492,7 +10492,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2883, + "id": 2884, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -10507,7 +10507,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2886, + "id": 2887, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -10522,7 +10522,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2881, + "id": 2882, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -10537,7 +10537,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2882, + "id": 2883, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -10557,12 +10557,12 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2886, 2885, 2884, - 2883, - 2886, - 2881, - 2882 + 2887, + 2882, + 2883 ] } ], @@ -10682,7 +10682,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2857, + "id": 2858, "name": "VizPoint" } } @@ -11850,7 +11850,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 610, + "line": 630, "character": 4 } ], @@ -11870,7 +11870,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2609, + "id": 2610, "name": "DOMSelector" } }, @@ -11914,7 +11914,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 973, + "line": 998, "character": 11 } ], @@ -11960,7 +11960,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1533, + "line": 1583, "character": 17 } ], @@ -12031,7 +12031,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 842, + "line": 867, "character": 11 } ], @@ -12063,7 +12063,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1281, + "line": 1331, "character": 11 } ], @@ -12100,7 +12100,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1520, + "line": 1570, "character": 11 } ], @@ -12193,7 +12193,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1316, + "line": 1366, "character": 11 } ], @@ -12291,7 +12291,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1356, + "line": 1406, "character": 11 } ], @@ -12328,7 +12328,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1492, + "line": 1542, "character": 11 } ], @@ -12368,7 +12368,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 947, + "line": 972, "character": 11 } ], @@ -12446,7 +12446,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1121, + "line": 1161, "character": 11 } ], @@ -12493,7 +12493,7 @@ }, "type": { "type": "reference", - "id": 2613, + "id": 2614, "name": "MessageCallback" } } @@ -12524,7 +12524,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1642, + "line": 1692, "character": 11 } ], @@ -12572,7 +12572,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2613, + "id": 2614, "name": "MessageCallback" } }, @@ -12584,7 +12584,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2610, + "id": 2611, "name": "MessageOptions" }, "defaultValue": "..." @@ -12616,7 +12616,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1294, + "line": 1344, "character": 17 } ], @@ -12691,7 +12691,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1367, + "line": 1417, "character": 17 } ], @@ -12744,7 +12744,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1002, + "line": 1027, "character": 17 } ], @@ -12791,7 +12791,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1415, + "line": 1465, "character": 17 } ], @@ -12837,7 +12837,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1473, + "line": 1523, "character": 11 } ], @@ -12883,7 +12883,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1231, + "line": 1271, "character": 17 } ], @@ -13002,7 +13002,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1257, + "line": 1307, "character": 17 } ], @@ -13026,7 +13026,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2880, + "id": 2881, "name": "UIPassthroughEvent" } } @@ -13131,7 +13131,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 604, + "line": 624, "character": 13 } ], @@ -13776,7 +13776,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1346, + "line": 1396, "character": 11 } ], @@ -13824,7 +13824,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1533, + "line": 1583, "character": 17 } ], @@ -13936,7 +13936,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1520, + "line": 1570, "character": 11 } ], @@ -14031,7 +14031,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1316, + "line": 1366, "character": 11 } ], @@ -14131,7 +14131,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1356, + "line": 1406, "character": 11 } ], @@ -14170,7 +14170,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1492, + "line": 1542, "character": 11 } ], @@ -14212,7 +14212,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1121, + "line": 1161, "character": 11 } ], @@ -14259,7 +14259,7 @@ }, "type": { "type": "reference", - "id": 2613, + "id": 2614, "name": "MessageCallback" } } @@ -14292,7 +14292,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1092, + "line": 1132, "character": 11 } ], @@ -14343,7 +14343,7 @@ }, "type": { "type": "reference", - "id": 2613, + "id": 2614, "name": "MessageCallback" } }, @@ -14358,7 +14358,7 @@ }, "type": { "type": "reference", - "id": 2610, + "id": 2611, "name": "MessageOptions" }, "defaultValue": "..." @@ -14405,7 +14405,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1294, + "line": 1344, "character": 17 } ], @@ -14482,7 +14482,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1367, + "line": 1417, "character": 17 } ], @@ -14583,7 +14583,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1415, + "line": 1465, "character": 17 } ], @@ -14631,7 +14631,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1473, + "line": 1523, "character": 11 } ], @@ -14679,7 +14679,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1231, + "line": 1271, "character": 17 } ], @@ -14800,7 +14800,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1257, + "line": 1307, "character": 17 } ], @@ -14824,7 +14824,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2880, + "id": 2881, "name": "UIPassthroughEvent" } } @@ -14990,7 +14990,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2609, + "id": 2610, "name": "DOMSelector" } }, @@ -15080,7 +15080,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1533, + "line": 1583, "character": 17 } ], @@ -15151,7 +15151,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1281, + "line": 1331, "character": 11 } ], @@ -15221,7 +15221,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1520, + "line": 1570, "character": 11 } ], @@ -15314,7 +15314,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1316, + "line": 1366, "character": 11 } ], @@ -15412,7 +15412,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1356, + "line": 1406, "character": 11 } ], @@ -15449,7 +15449,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1492, + "line": 1542, "character": 11 } ], @@ -15557,7 +15557,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1121, + "line": 1161, "character": 11 } ], @@ -15604,7 +15604,7 @@ }, "type": { "type": "reference", - "id": 2613, + "id": 2614, "name": "MessageCallback" } } @@ -15635,7 +15635,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1642, + "line": 1692, "character": 11 } ], @@ -15683,7 +15683,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2613, + "id": 2614, "name": "MessageCallback" } }, @@ -15695,7 +15695,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2610, + "id": 2611, "name": "MessageOptions" }, "defaultValue": "..." @@ -15727,7 +15727,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1294, + "line": 1344, "character": 17 } ], @@ -15802,7 +15802,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1367, + "line": 1417, "character": 17 } ], @@ -15902,7 +15902,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1415, + "line": 1465, "character": 17 } ], @@ -15948,7 +15948,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1473, + "line": 1523, "character": 11 } ], @@ -16113,7 +16113,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1257, + "line": 1307, "character": 17 } ], @@ -16137,7 +16137,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2880, + "id": 2881, "name": "UIPassthroughEvent" } } @@ -16302,7 +16302,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2609, + "id": 2610, "name": "DOMSelector" } }, @@ -16346,7 +16346,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1346, + "line": 1396, "character": 11 } ], @@ -16392,7 +16392,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1533, + "line": 1583, "character": 17 } ], @@ -16496,7 +16496,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1281, + "line": 1331, "character": 11 } ], @@ -16533,7 +16533,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1520, + "line": 1570, "character": 11 } ], @@ -16626,7 +16626,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1316, + "line": 1366, "character": 11 } ], @@ -16724,7 +16724,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1356, + "line": 1406, "character": 11 } ], @@ -16761,7 +16761,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1492, + "line": 1542, "character": 11 } ], @@ -16801,7 +16801,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1121, + "line": 1161, "character": 11 } ], @@ -16848,7 +16848,7 @@ }, "type": { "type": "reference", - "id": 2613, + "id": 2614, "name": "MessageCallback" } } @@ -16879,7 +16879,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1642, + "line": 1692, "character": 11 } ], @@ -16927,7 +16927,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2613, + "id": 2614, "name": "MessageCallback" } }, @@ -16939,7 +16939,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2610, + "id": 2611, "name": "MessageOptions" }, "defaultValue": "..." @@ -16971,7 +16971,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1294, + "line": 1344, "character": 17 } ], @@ -17046,7 +17046,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1367, + "line": 1417, "character": 17 } ], @@ -17147,7 +17147,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1415, + "line": 1465, "character": 17 } ], @@ -17193,7 +17193,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1473, + "line": 1523, "character": 11 } ], @@ -17239,7 +17239,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1231, + "line": 1271, "character": 17 } ], @@ -17358,7 +17358,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1257, + "line": 1307, "character": 17 } ], @@ -17382,7 +17382,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2880, + "id": 2881, "name": "UIPassthroughEvent" } } @@ -17589,7 +17589,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1346, + "line": 1396, "character": 11 } ], @@ -17635,7 +17635,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1533, + "line": 1583, "character": 17 } ], @@ -17706,7 +17706,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1281, + "line": 1331, "character": 11 } ], @@ -17743,7 +17743,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1520, + "line": 1570, "character": 11 } ], @@ -17836,7 +17836,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1316, + "line": 1366, "character": 11 } ], @@ -17934,7 +17934,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1356, + "line": 1406, "character": 11 } ], @@ -17971,7 +17971,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1492, + "line": 1542, "character": 11 } ], @@ -18011,7 +18011,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1121, + "line": 1161, "character": 11 } ], @@ -18058,7 +18058,7 @@ }, "type": { "type": "reference", - "id": 2613, + "id": 2614, "name": "MessageCallback" } } @@ -18089,7 +18089,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1092, + "line": 1132, "character": 11 } ], @@ -18140,7 +18140,7 @@ }, "type": { "type": "reference", - "id": 2613, + "id": 2614, "name": "MessageCallback" } }, @@ -18155,7 +18155,7 @@ }, "type": { "type": "reference", - "id": 2610, + "id": 2611, "name": "MessageOptions" }, "defaultValue": "..." @@ -18200,7 +18200,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1294, + "line": 1344, "character": 17 } ], @@ -18275,7 +18275,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1367, + "line": 1417, "character": 17 } ], @@ -18375,7 +18375,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1415, + "line": 1465, "character": 17 } ], @@ -18421,7 +18421,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1473, + "line": 1523, "character": 11 } ], @@ -18467,7 +18467,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1231, + "line": 1271, "character": 17 } ], @@ -18586,7 +18586,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1257, + "line": 1307, "character": 17 } ], @@ -18610,7 +18610,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2880, + "id": 2881, "name": "UIPassthroughEvent" } } @@ -18769,7 +18769,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2609, + "id": 2610, "name": "DOMSelector" } }, @@ -18813,7 +18813,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1346, + "line": 1396, "character": 11 } ], @@ -18859,7 +18859,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1533, + "line": 1583, "character": 17 } ], @@ -18962,7 +18962,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1281, + "line": 1331, "character": 11 } ], @@ -18999,7 +18999,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1520, + "line": 1570, "character": 11 } ], @@ -19092,7 +19092,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1316, + "line": 1366, "character": 11 } ], @@ -19190,7 +19190,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1356, + "line": 1406, "character": 11 } ], @@ -19227,7 +19227,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1492, + "line": 1542, "character": 11 } ], @@ -19267,7 +19267,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1121, + "line": 1161, "character": 11 } ], @@ -19314,7 +19314,7 @@ }, "type": { "type": "reference", - "id": 2613, + "id": 2614, "name": "MessageCallback" } } @@ -19345,7 +19345,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1092, + "line": 1132, "character": 11 } ], @@ -19396,7 +19396,7 @@ }, "type": { "type": "reference", - "id": 2613, + "id": 2614, "name": "MessageCallback" } }, @@ -19411,7 +19411,7 @@ }, "type": { "type": "reference", - "id": 2610, + "id": 2611, "name": "MessageOptions" }, "defaultValue": "..." @@ -19456,7 +19456,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1294, + "line": 1344, "character": 17 } ], @@ -19531,7 +19531,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1367, + "line": 1417, "character": 17 } ], @@ -19631,7 +19631,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1415, + "line": 1465, "character": 17 } ], @@ -19677,7 +19677,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1473, + "line": 1523, "character": 11 } ], @@ -19723,7 +19723,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1231, + "line": 1271, "character": 17 } ], @@ -19842,7 +19842,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1257, + "line": 1307, "character": 17 } ], @@ -19866,7 +19866,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2880, + "id": 2881, "name": "UIPassthroughEvent" } } @@ -20579,7 +20579,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1346, + "line": 1396, "character": 11 } ], @@ -20625,7 +20625,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1533, + "line": 1583, "character": 17 } ], @@ -20733,7 +20733,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1520, + "line": 1570, "character": 11 } ], @@ -20826,7 +20826,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1316, + "line": 1366, "character": 11 } ], @@ -20924,7 +20924,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1356, + "line": 1406, "character": 11 } ], @@ -20961,7 +20961,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1492, + "line": 1542, "character": 11 } ], @@ -21001,7 +21001,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1121, + "line": 1161, "character": 11 } ], @@ -21048,7 +21048,7 @@ }, "type": { "type": "reference", - "id": 2613, + "id": 2614, "name": "MessageCallback" } } @@ -21079,7 +21079,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1092, + "line": 1132, "character": 11 } ], @@ -21130,7 +21130,7 @@ }, "type": { "type": "reference", - "id": 2613, + "id": 2614, "name": "MessageCallback" } }, @@ -21145,7 +21145,7 @@ }, "type": { "type": "reference", - "id": 2610, + "id": 2611, "name": "MessageOptions" }, "defaultValue": "..." @@ -21190,7 +21190,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1294, + "line": 1344, "character": 17 } ], @@ -21265,7 +21265,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1367, + "line": 1417, "character": 17 } ], @@ -21362,7 +21362,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1415, + "line": 1465, "character": 17 } ], @@ -21408,7 +21408,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1473, + "line": 1523, "character": 11 } ], @@ -21454,7 +21454,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1231, + "line": 1271, "character": 17 } ], @@ -21573,7 +21573,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1257, + "line": 1307, "character": 17 } ], @@ -21597,7 +21597,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2880, + "id": 2881, "name": "UIPassthroughEvent" } } @@ -21735,7 +21735,7 @@ }, "children": [ { - "id": 2536, + "id": 2537, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -21766,20 +21766,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2537, + "id": 2538, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2538, + "id": 2539, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2539, + "id": 2540, "name": "key", "kind": 32768, "flags": {}, @@ -21815,7 +21815,7 @@ } }, { - "id": 2560, + "id": 2561, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -21857,7 +21857,7 @@ } }, { - "id": 2518, + "id": 2519, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -21884,7 +21884,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 473, + "line": 493, "character": 4 } ], @@ -21894,7 +21894,7 @@ } }, { - "id": 2557, + "id": 2558, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -21933,7 +21933,7 @@ } }, { - "id": 2577, + "id": 2578, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -21971,7 +21971,7 @@ } }, { - "id": 2554, + "id": 2555, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -22012,7 +22012,7 @@ } }, { - "id": 2540, + "id": 2541, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -22041,7 +22041,7 @@ ], "type": { "type": "reference", - "id": 2626, + "id": 2627, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -22050,7 +22050,7 @@ } }, { - "id": 2519, + "id": 2520, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -22078,18 +22078,18 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 494, + "line": 514, "character": 4 } ], "type": { "type": "reference", - "id": 2893, + "id": 2894, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2561, + "id": 2562, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -22169,7 +22169,7 @@ } }, { - "id": 2548, + "id": 2549, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -22207,7 +22207,7 @@ } }, { - "id": 2532, + "id": 2533, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -22245,7 +22245,7 @@ } }, { - "id": 2531, + "id": 2532, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -22287,7 +22287,7 @@ } }, { - "id": 2517, + "id": 2518, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -22315,7 +22315,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 466, + "line": 486, "character": 4 } ], @@ -22325,7 +22325,7 @@ } }, { - "id": 2544, + "id": 2545, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -22366,7 +22366,7 @@ } }, { - "id": 2571, + "id": 2572, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -22408,7 +22408,7 @@ } }, { - "id": 2576, + "id": 2577, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -22450,7 +22450,7 @@ } }, { - "id": 2562, + "id": 2563, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -22528,7 +22528,7 @@ } }, { - "id": 2514, + "id": 2515, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -22556,7 +22556,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 410, + "line": 430, "character": 4 } ], @@ -22566,7 +22566,7 @@ } }, { - "id": 2545, + "id": 2546, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -22604,7 +22604,7 @@ } }, { - "id": 2558, + "id": 2559, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -22642,7 +22642,7 @@ } }, { - "id": 2559, + "id": 2560, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -22680,7 +22680,7 @@ } }, { - "id": 2547, + "id": 2548, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -22717,7 +22717,7 @@ } }, { - "id": 2528, + "id": 2529, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -22747,7 +22747,7 @@ ], "type": { "type": "reference", - "id": 2585, + "id": 2586, "name": "FrameParams" }, "inheritedFrom": { @@ -22756,7 +22756,7 @@ } }, { - "id": 2515, + "id": 2516, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -22780,7 +22780,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 433, + "line": 453, "character": 4 } ], @@ -22790,7 +22790,7 @@ } }, { - "id": 2533, + "id": 2534, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -22836,7 +22836,7 @@ } }, { - "id": 2566, + "id": 2567, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -22868,7 +22868,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2591, + "id": 2592, "name": "HomeLeftNavItem" } }, @@ -22878,7 +22878,7 @@ } }, { - "id": 2564, + "id": 2565, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -22910,7 +22910,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2602, + "id": 2603, "name": "HomepageModule" } }, @@ -22920,7 +22920,7 @@ } }, { - "id": 2563, + "id": 2564, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -22952,7 +22952,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2887, + "id": 2888, "name": "ListPageColumns" } }, @@ -23076,7 +23076,7 @@ } }, { - "id": 2574, + "id": 2575, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -23118,7 +23118,7 @@ } }, { - "id": 2567, + "id": 2568, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -23236,7 +23236,7 @@ } }, { - "id": 2512, + "id": 2513, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -23260,7 +23260,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 386, + "line": 406, "character": 4 } ], @@ -23311,7 +23311,41 @@ } }, { - "id": 2521, + "id": 2512, + "name": "hideTagFilterChips", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Hide tag filter chips that appear when content is filtered by tags.\nWhen enabled, this automatically:\n- Hides tag filter indicators/chips from the UI", + "text": "This provides a clean interface without tag-related UI elements.\n\nSupported embed types: `AppEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.44.0 | ThoughtSpot: 10.15.0.cl" + }, + { + "tag": "example", + "text": "\n```js\n// Simple usage - automatically hides all tag-related UI\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other embed view config\n tag: 'Some Tag',\n hideTagFilterChips: true, // This is all you need!\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 389, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2522, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -23331,18 +23365,18 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 506, + "line": 526, "character": 4 } ], "type": { "type": "reference", - "id": 2845, + "id": 2846, "name": "HomePageSearchBarMode" } }, { - "id": 2541, + "id": 2542, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -23380,7 +23414,7 @@ } }, { - "id": 2579, + "id": 2580, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -23418,7 +23452,7 @@ } }, { - "id": 2572, + "id": 2573, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -23460,7 +23494,7 @@ } }, { - "id": 2570, + "id": 2571, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -23498,7 +23532,7 @@ } }, { - "id": 2523, + "id": 2524, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -23522,7 +23556,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 538, + "line": 558, "character": 4 } ], @@ -23532,7 +23566,7 @@ } }, { - "id": 2520, + "id": 2521, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -23551,7 +23585,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 499, + "line": 519, "character": 4 } ], @@ -23561,7 +23595,7 @@ } }, { - "id": 2524, + "id": 2525, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -23585,7 +23619,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 555, + "line": 575, "character": 4 } ], @@ -23595,7 +23629,7 @@ } }, { - "id": 2522, + "id": 2523, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -23623,7 +23657,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 521, + "line": 541, "character": 4 } ], @@ -23633,7 +23667,7 @@ } }, { - "id": 2525, + "id": 2526, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -23660,7 +23694,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 573, + "line": 593, "character": 4 } ], @@ -23670,7 +23704,7 @@ } }, { - "id": 2526, + "id": 2527, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -23694,7 +23728,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 597, + "line": 617, "character": 4 } ], @@ -23704,7 +23738,7 @@ } }, { - "id": 2550, + "id": 2551, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -23742,7 +23776,7 @@ } }, { - "id": 2578, + "id": 2579, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -23780,7 +23814,7 @@ } }, { - "id": 2535, + "id": 2536, "name": "locale", "kind": 1024, "kindString": "Property", @@ -23818,7 +23852,7 @@ } }, { - "id": 2516, + "id": 2517, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -23846,7 +23880,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 448, + "line": 468, "character": 4 } ], @@ -23856,7 +23890,7 @@ } }, { - "id": 2549, + "id": 2550, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -23963,7 +23997,7 @@ } }, { - "id": 2543, + "id": 2544, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -24001,7 +24035,7 @@ } }, { - "id": 2551, + "id": 2552, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -24039,7 +24073,7 @@ } }, { - "id": 2565, + "id": 2566, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -24071,7 +24105,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2602, + "id": 2603, "name": "HomepageModule" } }, @@ -24081,7 +24115,7 @@ } }, { - "id": 2555, + "id": 2556, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -24123,7 +24157,7 @@ } }, { - "id": 2556, + "id": 2557, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -24155,7 +24189,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2819, + "id": 2820, "name": "RuntimeParameter" } }, @@ -24165,7 +24199,7 @@ } }, { - "id": 2553, + "id": 2554, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -24202,7 +24236,7 @@ } }, { - "id": 2569, + "id": 2570, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -24244,7 +24278,7 @@ } }, { - "id": 2575, + "id": 2576, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -24286,7 +24320,7 @@ } }, { - "id": 2568, + "id": 2569, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -24328,7 +24362,7 @@ } }, { - "id": 2573, + "id": 2574, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -24442,7 +24476,7 @@ } }, { - "id": 2534, + "id": 2535, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -24493,76 +24527,77 @@ "title": "Properties", "kind": 1024, "children": [ - 2536, - 2560, - 2518, - 2557, - 2577, - 2554, - 2540, - 2519, + 2537, 2561, + 2519, + 2558, + 2578, + 2555, + 2541, + 2520, + 2562, 2502, - 2548, + 2549, + 2533, 2532, - 2531, - 2517, - 2544, - 2571, - 2576, - 2562, - 2503, - 2514, + 2518, 2545, - 2558, - 2559, - 2547, - 2528, + 2572, + 2577, + 2563, + 2503, 2515, - 2533, - 2566, + 2546, + 2559, + 2560, + 2548, + 2529, + 2516, + 2534, + 2567, + 2565, 2564, - 2563, 2507, 2504, 2501, - 2574, - 2567, + 2575, + 2568, 2506, 2505, - 2512, + 2513, 2508, - 2521, - 2541, - 2579, - 2572, - 2570, - 2523, - 2520, - 2524, + 2512, 2522, + 2542, + 2580, + 2573, + 2571, + 2524, + 2521, 2525, + 2523, 2526, + 2527, + 2551, + 2579, + 2536, + 2517, 2550, - 2578, - 2535, - 2516, - 2549, 2510, 2509, - 2543, - 2551, - 2565, - 2555, + 2544, + 2552, + 2566, 2556, - 2553, + 2557, + 2554, + 2570, + 2576, 2569, - 2575, - 2568, - 2573, + 2574, 2500, 2511, - 2534 + 2535 ] } ], @@ -25461,7 +25496,7 @@ ], "type": { "type": "reference", - "id": 2626, + "id": 2627, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -25741,7 +25776,7 @@ ], "type": { "type": "reference", - "id": 2585, + "id": 2586, "name": "FrameParams" }, "inheritedFrom": { @@ -26319,7 +26354,7 @@ ], "type": { "type": "reference", - "id": 2626, + "id": 2627, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -26759,7 +26794,7 @@ ], "type": { "type": "reference", - "id": 2585, + "id": 2586, "name": "FrameParams" }, "inheritedFrom": { @@ -27164,7 +27199,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2819, + "id": 2820, "name": "RuntimeParameter" } }, @@ -27406,7 +27441,7 @@ ] }, { - "id": 2860, + "id": 2861, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -27421,7 +27456,7 @@ }, "children": [ { - "id": 2861, + "id": 2862, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -27431,21 +27466,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5742, + "line": 5743, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2862, + "id": 2863, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2863, + "id": 2864, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -27453,18 +27488,18 @@ "sources": [ { "fileName": "types.ts", - "line": 5743, + "line": 5744, "character": 8 } ], "type": { "type": "reference", - "id": 2857, + "id": 2858, "name": "VizPoint" } }, { - "id": 2864, + "id": 2865, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -27472,7 +27507,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5744, + "line": 5745, "character": 8 } ], @@ -27480,7 +27515,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2857, + "id": 2858, "name": "VizPoint" } } @@ -27491,8 +27526,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2863, - 2864 + 2864, + 2865 ] } ] @@ -27500,7 +27535,7 @@ } }, { - "id": 2865, + "id": 2866, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -27508,21 +27543,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5746, + "line": 5747, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2866, + "id": 2867, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2874, + "id": 2875, "name": "columns", "kind": 1024, "kindString": "Property", @@ -27530,7 +27565,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5754, + "line": 5755, "character": 8 } ], @@ -27543,7 +27578,7 @@ } }, { - "id": 2875, + "id": 2876, "name": "data", "kind": 1024, "kindString": "Property", @@ -27551,7 +27586,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5755, + "line": 5756, "character": 8 } ], @@ -27564,7 +27599,7 @@ } }, { - "id": 2868, + "id": 2869, "name": "id", "kind": 1024, "kindString": "Property", @@ -27572,7 +27607,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5748, + "line": 5749, "character": 8 } ], @@ -27582,7 +27617,7 @@ } }, { - "id": 2867, + "id": 2868, "name": "name", "kind": 1024, "kindString": "Property", @@ -27590,7 +27625,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5747, + "line": 5748, "character": 8 } ], @@ -27600,7 +27635,7 @@ } }, { - "id": 2869, + "id": 2870, "name": "sources", "kind": 1024, "kindString": "Property", @@ -27608,21 +27643,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5749, + "line": 5750, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2870, + "id": 2871, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2871, + "id": 2872, "name": "header", "kind": 1024, "kindString": "Property", @@ -27630,21 +27665,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5750, + "line": 5751, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2872, + "id": 2873, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2873, + "id": 2874, "name": "guid", "kind": 1024, "kindString": "Property", @@ -27652,7 +27687,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5751, + "line": 5752, "character": 16 } ], @@ -27667,7 +27702,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2873 + 2874 ] } ] @@ -27680,7 +27715,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2871 + 2872 ] } ] @@ -27693,23 +27728,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2874, 2875, + 2876, + 2869, 2868, - 2867, - 2869 + 2870 ] } ], "indexSignature": { - "id": 2876, + "id": 2877, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2877, + "id": 2878, "name": "key", "kind": 32768, "flags": {}, @@ -27728,7 +27763,7 @@ } }, { - "id": 2878, + "id": 2879, "name": "session", "kind": 1024, "kindString": "Property", @@ -27736,7 +27771,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5758, + "line": 5759, "character": 4 } ], @@ -27747,7 +27782,7 @@ } }, { - "id": 2879, + "id": 2880, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -27757,7 +27792,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5759, + "line": 5760, "character": 4 } ], @@ -27772,23 +27807,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2861, - 2865, - 2878, - 2879 + 2862, + 2866, + 2879, + 2880 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5741, + "line": 5742, "character": 17 } ] }, { - "id": 2648, + "id": 2649, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -27798,7 +27833,7 @@ }, "children": [ { - "id": 2702, + "id": 2703, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -27821,7 +27856,7 @@ } }, { - "id": 2701, + "id": 2702, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -27844,7 +27879,7 @@ } }, { - "id": 2671, + "id": 2672, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -27867,7 +27902,7 @@ } }, { - "id": 2672, + "id": 2673, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -27890,7 +27925,7 @@ } }, { - "id": 2674, + "id": 2675, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -27913,7 +27948,7 @@ } }, { - "id": 2673, + "id": 2674, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -27936,7 +27971,7 @@ } }, { - "id": 2653, + "id": 2654, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -27959,7 +27994,7 @@ } }, { - "id": 2714, + "id": 2715, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -27982,7 +28017,7 @@ } }, { - "id": 2715, + "id": 2716, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -28005,7 +28040,7 @@ } }, { - "id": 2712, + "id": 2713, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -28028,7 +28063,7 @@ } }, { - "id": 2713, + "id": 2714, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -28051,7 +28086,7 @@ } }, { - "id": 2676, + "id": 2677, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -28074,7 +28109,7 @@ } }, { - "id": 2681, + "id": 2682, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -28097,7 +28132,7 @@ } }, { - "id": 2678, + "id": 2679, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -28120,7 +28155,7 @@ } }, { - "id": 2680, + "id": 2681, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -28143,7 +28178,7 @@ } }, { - "id": 2679, + "id": 2680, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -28166,7 +28201,7 @@ } }, { - "id": 2677, + "id": 2678, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -28189,7 +28224,7 @@ } }, { - "id": 2686, + "id": 2687, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -28212,7 +28247,7 @@ } }, { - "id": 2683, + "id": 2684, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -28235,7 +28270,7 @@ } }, { - "id": 2685, + "id": 2686, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -28258,7 +28293,7 @@ } }, { - "id": 2684, + "id": 2685, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -28281,7 +28316,7 @@ } }, { - "id": 2682, + "id": 2683, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -28304,7 +28339,7 @@ } }, { - "id": 2690, + "id": 2691, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -28327,7 +28362,7 @@ } }, { - "id": 2689, + "id": 2690, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -28350,7 +28385,7 @@ } }, { - "id": 2688, + "id": 2689, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -28373,7 +28408,7 @@ } }, { - "id": 2687, + "id": 2688, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -28396,7 +28431,7 @@ } }, { - "id": 2675, + "id": 2676, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -28419,7 +28454,7 @@ } }, { - "id": 2818, + "id": 2819, "name": "--ts-var-cca-modal-summary-header-background", "kind": 1024, "kindString": "Property", @@ -28442,7 +28477,7 @@ } }, { - "id": 2813, + "id": 2814, "name": "--ts-var-change-analysis-insights-background", "kind": 1024, "kindString": "Property", @@ -28465,7 +28500,7 @@ } }, { - "id": 2808, + "id": 2809, "name": "--ts-var-chart-heatmap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28488,7 +28523,7 @@ } }, { - "id": 2807, + "id": 2808, "name": "--ts-var-chart-heatmap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28511,7 +28546,7 @@ } }, { - "id": 2810, + "id": 2811, "name": "--ts-var-chart-treemap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28534,7 +28569,7 @@ } }, { - "id": 2809, + "id": 2810, "name": "--ts-var-chart-treemap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28557,7 +28592,7 @@ } }, { - "id": 2737, + "id": 2738, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -28580,7 +28615,7 @@ } }, { - "id": 2740, + "id": 2741, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -28603,7 +28638,7 @@ } }, { - "id": 2735, + "id": 2736, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -28626,7 +28661,7 @@ } }, { - "id": 2738, + "id": 2739, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -28649,7 +28684,7 @@ } }, { - "id": 2739, + "id": 2740, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -28672,7 +28707,7 @@ } }, { - "id": 2734, + "id": 2735, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -28695,7 +28730,7 @@ } }, { - "id": 2736, + "id": 2737, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -28718,7 +28753,7 @@ } }, { - "id": 2707, + "id": 2708, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -28741,7 +28776,7 @@ } }, { - "id": 2706, + "id": 2707, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -28764,7 +28799,7 @@ } }, { - "id": 2709, + "id": 2710, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -28787,7 +28822,7 @@ } }, { - "id": 2708, + "id": 2709, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -28810,7 +28845,7 @@ } }, { - "id": 2705, + "id": 2706, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -28833,7 +28868,7 @@ } }, { - "id": 2703, + "id": 2704, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -28856,7 +28891,7 @@ } }, { - "id": 2704, + "id": 2705, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -28879,7 +28914,7 @@ } }, { - "id": 2710, + "id": 2711, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -28902,7 +28937,7 @@ } }, { - "id": 2711, + "id": 2712, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -28925,7 +28960,7 @@ } }, { - "id": 2722, + "id": 2723, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -28948,7 +28983,7 @@ } }, { - "id": 2723, + "id": 2724, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -28971,7 +29006,7 @@ } }, { - "id": 2726, + "id": 2727, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -28994,7 +29029,7 @@ } }, { - "id": 2724, + "id": 2725, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -29017,7 +29052,7 @@ } }, { - "id": 2725, + "id": 2726, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -29040,7 +29075,7 @@ } }, { - "id": 2733, + "id": 2734, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -29063,7 +29098,7 @@ } }, { - "id": 2732, + "id": 2733, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -29086,7 +29121,7 @@ } }, { - "id": 2731, + "id": 2732, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -29109,7 +29144,7 @@ } }, { - "id": 2730, + "id": 2731, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -29132,7 +29167,7 @@ } }, { - "id": 2806, + "id": 2807, "name": "--ts-var-kpi-analyze-text-color", "kind": 1024, "kindString": "Property", @@ -29155,7 +29190,7 @@ } }, { - "id": 2805, + "id": 2806, "name": "--ts-var-kpi-comparison-color", "kind": 1024, "kindString": "Property", @@ -29178,7 +29213,7 @@ } }, { - "id": 2804, + "id": 2805, "name": "--ts-var-kpi-hero-color", "kind": 1024, "kindString": "Property", @@ -29201,7 +29236,7 @@ } }, { - "id": 2812, + "id": 2813, "name": "--ts-var-kpi-negative-change-color", "kind": 1024, "kindString": "Property", @@ -29224,7 +29259,7 @@ } }, { - "id": 2811, + "id": 2812, "name": "--ts-var-kpi-positive-change-color", "kind": 1024, "kindString": "Property", @@ -29247,7 +29282,7 @@ } }, { - "id": 2728, + "id": 2729, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -29270,7 +29305,7 @@ } }, { - "id": 2727, + "id": 2728, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -29293,7 +29328,7 @@ } }, { - "id": 2763, + "id": 2764, "name": "--ts-var-liveboard-answer-viz-padding", "kind": 1024, "kindString": "Property", @@ -29316,7 +29351,7 @@ } }, { - "id": 2776, + "id": 2777, "name": "--ts-var-liveboard-chip--active-background", "kind": 1024, "kindString": "Property", @@ -29340,7 +29375,7 @@ } }, { - "id": 2775, + "id": 2776, "name": "--ts-var-liveboard-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -29364,7 +29399,7 @@ } }, { - "id": 2773, + "id": 2774, "name": "--ts-var-liveboard-chip-background", "kind": 1024, "kindString": "Property", @@ -29388,7 +29423,7 @@ } }, { - "id": 2774, + "id": 2775, "name": "--ts-var-liveboard-chip-color", "kind": 1024, "kindString": "Property", @@ -29412,7 +29447,7 @@ } }, { - "id": 2781, + "id": 2782, "name": "--ts-var-liveboard-cross-filter-layout-background", "kind": 1024, "kindString": "Property", @@ -29435,7 +29470,7 @@ } }, { - "id": 2779, + "id": 2780, "name": "--ts-var-liveboard-dual-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -29458,7 +29493,7 @@ } }, { - "id": 2778, + "id": 2779, "name": "--ts-var-liveboard-edit-bar-background", "kind": 1024, "kindString": "Property", @@ -29481,7 +29516,7 @@ } }, { - "id": 2764, + "id": 2765, "name": "--ts-var-liveboard-group-background", "kind": 1024, "kindString": "Property", @@ -29505,7 +29540,7 @@ } }, { - "id": 2765, + "id": 2766, "name": "--ts-var-liveboard-group-border-color", "kind": 1024, "kindString": "Property", @@ -29529,7 +29564,7 @@ } }, { - "id": 2769, + "id": 2770, "name": "--ts-var-liveboard-group-description-font-color", "kind": 1024, "kindString": "Property", @@ -29553,7 +29588,7 @@ } }, { - "id": 2759, + "id": 2760, "name": "--ts-var-liveboard-group-description-font-size", "kind": 1024, "kindString": "Property", @@ -29577,7 +29612,7 @@ } }, { - "id": 2760, + "id": 2761, "name": "--ts-var-liveboard-group-description-font-weight", "kind": 1024, "kindString": "Property", @@ -29601,7 +29636,7 @@ } }, { - "id": 2753, + "id": 2754, "name": "--ts-var-liveboard-group-padding", "kind": 1024, "kindString": "Property", @@ -29625,7 +29660,7 @@ } }, { - "id": 2772, + "id": 2773, "name": "--ts-var-liveboard-group-tile-background", "kind": 1024, "kindString": "Property", @@ -29649,7 +29684,7 @@ } }, { - "id": 2761, + "id": 2762, "name": "--ts-var-liveboard-group-tile-border", "kind": 1024, "kindString": "Property", @@ -29673,7 +29708,7 @@ } }, { - "id": 2771, + "id": 2772, "name": "--ts-var-liveboard-group-tile-description-font-color", "kind": 1024, "kindString": "Property", @@ -29697,7 +29732,7 @@ } }, { - "id": 2762, + "id": 2763, "name": "--ts-var-liveboard-group-tile-padding", "kind": 1024, "kindString": "Property", @@ -29721,7 +29756,7 @@ } }, { - "id": 2770, + "id": 2771, "name": "--ts-var-liveboard-group-tile-title-font-color", "kind": 1024, "kindString": "Property", @@ -29745,7 +29780,7 @@ } }, { - "id": 2757, + "id": 2758, "name": "--ts-var-liveboard-group-tile-title-font-size", "kind": 1024, "kindString": "Property", @@ -29769,7 +29804,7 @@ } }, { - "id": 2758, + "id": 2759, "name": "--ts-var-liveboard-group-tile-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29793,7 +29828,7 @@ } }, { - "id": 2768, + "id": 2769, "name": "--ts-var-liveboard-group-title-font-color", "kind": 1024, "kindString": "Property", @@ -29817,7 +29852,7 @@ } }, { - "id": 2755, + "id": 2756, "name": "--ts-var-liveboard-group-title-font-size", "kind": 1024, "kindString": "Property", @@ -29841,7 +29876,7 @@ } }, { - "id": 2756, + "id": 2757, "name": "--ts-var-liveboard-group-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29865,7 +29900,7 @@ } }, { - "id": 2754, + "id": 2755, "name": "--ts-var-liveboard-group-title-padding", "kind": 1024, "kindString": "Property", @@ -29889,7 +29924,7 @@ } }, { - "id": 2797, + "id": 2798, "name": "--ts-var-liveboard-header-action-button-active-color", "kind": 1024, "kindString": "Property", @@ -29912,7 +29947,7 @@ } }, { - "id": 2794, + "id": 2795, "name": "--ts-var-liveboard-header-action-button-background", "kind": 1024, "kindString": "Property", @@ -29935,7 +29970,7 @@ } }, { - "id": 2795, + "id": 2796, "name": "--ts-var-liveboard-header-action-button-font-color", "kind": 1024, "kindString": "Property", @@ -29958,7 +29993,7 @@ } }, { - "id": 2796, + "id": 2797, "name": "--ts-var-liveboard-header-action-button-hover-color", "kind": 1024, "kindString": "Property", @@ -29981,7 +30016,7 @@ } }, { - "id": 2745, + "id": 2746, "name": "--ts-var-liveboard-header-background", "kind": 1024, "kindString": "Property", @@ -30004,7 +30039,7 @@ } }, { - "id": 2803, + "id": 2804, "name": "--ts-var-liveboard-header-badge-active-color", "kind": 1024, "kindString": "Property", @@ -30027,7 +30062,7 @@ } }, { - "id": 2798, + "id": 2799, "name": "--ts-var-liveboard-header-badge-background", "kind": 1024, "kindString": "Property", @@ -30050,7 +30085,7 @@ } }, { - "id": 2799, + "id": 2800, "name": "--ts-var-liveboard-header-badge-font-color", "kind": 1024, "kindString": "Property", @@ -30073,7 +30108,7 @@ } }, { - "id": 2802, + "id": 2803, "name": "--ts-var-liveboard-header-badge-hover-color", "kind": 1024, "kindString": "Property", @@ -30096,7 +30131,7 @@ } }, { - "id": 2800, + "id": 2801, "name": "--ts-var-liveboard-header-badge-modified-background", "kind": 1024, "kindString": "Property", @@ -30119,7 +30154,7 @@ } }, { - "id": 2801, + "id": 2802, "name": "--ts-var-liveboard-header-badge-modified-font-color", "kind": 1024, "kindString": "Property", @@ -30142,7 +30177,7 @@ } }, { - "id": 2747, + "id": 2748, "name": "--ts-var-liveboard-header-font-color", "kind": 1024, "kindString": "Property", @@ -30165,7 +30200,7 @@ } }, { - "id": 2746, + "id": 2747, "name": "--ts-var-liveboard-header-fontsize", "kind": 1024, "kindString": "Property", @@ -30188,7 +30223,7 @@ } }, { - "id": 2742, + "id": 2743, "name": "--ts-var-liveboard-layout-background", "kind": 1024, "kindString": "Property", @@ -30211,7 +30246,7 @@ } }, { - "id": 2743, + "id": 2744, "name": "--ts-var-liveboard-layout-title-color", "kind": 1024, "kindString": "Property", @@ -30234,7 +30269,7 @@ } }, { - "id": 2744, + "id": 2745, "name": "--ts-var-liveboard-layout-title-fontsize", "kind": 1024, "kindString": "Property", @@ -30257,7 +30292,7 @@ } }, { - "id": 2767, + "id": 2768, "name": "--ts-var-liveboard-notetitle-body-font-color", "kind": 1024, "kindString": "Property", @@ -30280,7 +30315,7 @@ } }, { - "id": 2766, + "id": 2767, "name": "--ts-var-liveboard-notetitle-heading-font-color", "kind": 1024, "kindString": "Property", @@ -30303,7 +30338,7 @@ } }, { - "id": 2780, + "id": 2781, "name": "--ts-var-liveboard-single-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -30326,7 +30361,7 @@ } }, { - "id": 2782, + "id": 2783, "name": "--ts-var-liveboard-tab-active-border-color", "kind": 1024, "kindString": "Property", @@ -30349,7 +30384,7 @@ } }, { - "id": 2783, + "id": 2784, "name": "--ts-var-liveboard-tab-hover-color", "kind": 1024, "kindString": "Property", @@ -30372,7 +30407,7 @@ } }, { - "id": 2749, + "id": 2750, "name": "--ts-var-liveboard-tile-background", "kind": 1024, "kindString": "Property", @@ -30395,7 +30430,7 @@ } }, { - "id": 2748, + "id": 2749, "name": "--ts-var-liveboard-tile-border-color", "kind": 1024, "kindString": "Property", @@ -30418,7 +30453,7 @@ } }, { - "id": 2750, + "id": 2751, "name": "--ts-var-liveboard-tile-border-radius", "kind": 1024, "kindString": "Property", @@ -30441,7 +30476,7 @@ } }, { - "id": 2786, + "id": 2787, "name": "--ts-var-liveboard-tile-description-font-weight", "kind": 1024, "kindString": "Property", @@ -30464,7 +30499,7 @@ } }, { - "id": 2787, + "id": 2788, "name": "--ts-var-liveboard-tile-description-opacity", "kind": 1024, "kindString": "Property", @@ -30487,7 +30522,7 @@ } }, { - "id": 2751, + "id": 2752, "name": "--ts-var-liveboard-tile-padding", "kind": 1024, "kindString": "Property", @@ -30510,7 +30545,7 @@ } }, { - "id": 2752, + "id": 2753, "name": "--ts-var-liveboard-tile-table-header-background", "kind": 1024, "kindString": "Property", @@ -30533,7 +30568,7 @@ } }, { - "id": 2784, + "id": 2785, "name": "--ts-var-liveboard-tile-title-fontsize", "kind": 1024, "kindString": "Property", @@ -30556,7 +30591,7 @@ } }, { - "id": 2785, + "id": 2786, "name": "--ts-var-liveboard-tile-title-fontweight", "kind": 1024, "kindString": "Property", @@ -30579,7 +30614,7 @@ } }, { - "id": 2720, + "id": 2721, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -30602,7 +30637,7 @@ } }, { - "id": 2717, + "id": 2718, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -30625,7 +30660,7 @@ } }, { - "id": 2716, + "id": 2717, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -30648,7 +30683,7 @@ } }, { - "id": 2718, + "id": 2719, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -30671,7 +30706,7 @@ } }, { - "id": 2721, + "id": 2722, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -30694,7 +30729,7 @@ } }, { - "id": 2719, + "id": 2720, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -30717,7 +30752,7 @@ } }, { - "id": 2654, + "id": 2655, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -30740,7 +30775,7 @@ } }, { - "id": 2655, + "id": 2656, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -30763,7 +30798,7 @@ } }, { - "id": 2792, + "id": 2793, "name": "--ts-var-parameter-chip-active-background", "kind": 1024, "kindString": "Property", @@ -30786,7 +30821,7 @@ } }, { - "id": 2793, + "id": 2794, "name": "--ts-var-parameter-chip-active-text-color", "kind": 1024, "kindString": "Property", @@ -30809,7 +30844,7 @@ } }, { - "id": 2788, + "id": 2789, "name": "--ts-var-parameter-chip-background", "kind": 1024, "kindString": "Property", @@ -30832,7 +30867,7 @@ } }, { - "id": 2790, + "id": 2791, "name": "--ts-var-parameter-chip-hover-background", "kind": 1024, "kindString": "Property", @@ -30855,7 +30890,7 @@ } }, { - "id": 2791, + "id": 2792, "name": "--ts-var-parameter-chip-hover-text-color", "kind": 1024, "kindString": "Property", @@ -30878,7 +30913,7 @@ } }, { - "id": 2789, + "id": 2790, "name": "--ts-var-parameter-chip-text-color", "kind": 1024, "kindString": "Property", @@ -30901,7 +30936,7 @@ } }, { - "id": 2649, + "id": 2650, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -30924,7 +30959,7 @@ } }, { - "id": 2650, + "id": 2651, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -30947,7 +30982,7 @@ } }, { - "id": 2651, + "id": 2652, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -30970,7 +31005,7 @@ } }, { - "id": 2652, + "id": 2653, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -30993,7 +31028,7 @@ } }, { - "id": 2663, + "id": 2664, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -31016,7 +31051,7 @@ } }, { - "id": 2667, + "id": 2668, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -31039,7 +31074,7 @@ } }, { - "id": 2668, + "id": 2669, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -31062,7 +31097,7 @@ } }, { - "id": 2666, + "id": 2667, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -31085,7 +31120,7 @@ } }, { - "id": 2662, + "id": 2663, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -31108,7 +31143,7 @@ } }, { - "id": 2665, + "id": 2666, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -31131,7 +31166,7 @@ } }, { - "id": 2659, + "id": 2660, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -31154,7 +31189,7 @@ } }, { - "id": 2660, + "id": 2661, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -31177,7 +31212,7 @@ } }, { - "id": 2661, + "id": 2662, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -31200,7 +31235,7 @@ } }, { - "id": 2656, + "id": 2657, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -31223,7 +31258,7 @@ } }, { - "id": 2657, + "id": 2658, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -31246,7 +31281,7 @@ } }, { - "id": 2658, + "id": 2659, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -31269,7 +31304,7 @@ } }, { - "id": 2664, + "id": 2665, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -31292,7 +31327,7 @@ } }, { - "id": 2729, + "id": 2730, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -31315,7 +31350,7 @@ } }, { - "id": 2777, + "id": 2778, "name": "--ts-var-side-panel-width", "kind": 1024, "kindString": "Property", @@ -31338,7 +31373,7 @@ } }, { - "id": 2817, + "id": 2818, "name": "--ts-var-spotiq-analyze-crosscorrelation-card-background", "kind": 1024, "kindString": "Property", @@ -31361,7 +31396,7 @@ } }, { - "id": 2814, + "id": 2815, "name": "--ts-var-spotiq-analyze-forecasting-card-background", "kind": 1024, "kindString": "Property", @@ -31384,7 +31419,7 @@ } }, { - "id": 2815, + "id": 2816, "name": "--ts-var-spotiq-analyze-outlier-card-background", "kind": 1024, "kindString": "Property", @@ -31407,7 +31442,7 @@ } }, { - "id": 2816, + "id": 2817, "name": "--ts-var-spotiq-analyze-trend-card-background", "kind": 1024, "kindString": "Property", @@ -31430,7 +31465,7 @@ } }, { - "id": 2669, + "id": 2670, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -31453,7 +31488,7 @@ } }, { - "id": 2670, + "id": 2671, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -31476,7 +31511,7 @@ } }, { - "id": 2699, + "id": 2700, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -31499,7 +31534,7 @@ } }, { - "id": 2697, + "id": 2698, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -31522,7 +31557,7 @@ } }, { - "id": 2698, + "id": 2699, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -31545,7 +31580,7 @@ } }, { - "id": 2694, + "id": 2695, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -31568,7 +31603,7 @@ } }, { - "id": 2695, + "id": 2696, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -31591,7 +31626,7 @@ } }, { - "id": 2696, + "id": 2697, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -31614,7 +31649,7 @@ } }, { - "id": 2700, + "id": 2701, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -31637,7 +31672,7 @@ } }, { - "id": 2741, + "id": 2742, "name": "--ts-var-viz-tile-height", "kind": 1024, "kindString": "Property", @@ -31660,7 +31695,7 @@ } }, { - "id": 2691, + "id": 2692, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -31683,7 +31718,7 @@ } }, { - "id": 2692, + "id": 2693, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -31706,7 +31741,7 @@ } }, { - "id": 2693, + "id": 2694, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -31734,176 +31769,176 @@ "title": "Properties", "kind": 1024, "children": [ + 2703, 2702, - 2701, - 2671, 2672, - 2674, 2673, - 2653, - 2714, + 2675, + 2674, + 2654, 2715, - 2712, + 2716, 2713, - 2676, + 2714, + 2677, + 2682, + 2679, 2681, - 2678, 2680, - 2679, - 2677, + 2678, + 2687, + 2684, 2686, - 2683, 2685, - 2684, - 2682, + 2683, + 2691, 2690, 2689, 2688, - 2687, - 2675, - 2818, - 2813, + 2676, + 2819, + 2814, + 2809, 2808, - 2807, + 2811, 2810, - 2809, - 2737, - 2740, - 2735, 2738, - 2739, - 2734, + 2741, 2736, + 2739, + 2740, + 2735, + 2737, + 2708, 2707, - 2706, + 2710, 2709, - 2708, - 2705, - 2703, + 2706, 2704, - 2710, + 2705, 2711, - 2722, + 2712, 2723, - 2726, 2724, + 2727, 2725, + 2726, + 2734, 2733, 2732, 2731, - 2730, + 2807, 2806, 2805, - 2804, + 2813, 2812, - 2811, + 2729, 2728, - 2727, - 2763, + 2764, + 2777, 2776, - 2775, - 2773, 2774, - 2781, + 2775, + 2782, + 2780, 2779, - 2778, - 2764, 2765, - 2769, - 2759, + 2766, + 2770, 2760, - 2753, - 2772, 2761, - 2771, + 2754, + 2773, 2762, - 2770, - 2757, + 2772, + 2763, + 2771, 2758, - 2768, - 2755, + 2759, + 2769, 2756, - 2754, - 2797, - 2794, + 2757, + 2755, + 2798, 2795, 2796, - 2745, - 2803, - 2798, + 2797, + 2746, + 2804, 2799, - 2802, 2800, + 2803, 2801, + 2802, + 2748, 2747, - 2746, - 2742, 2743, 2744, + 2745, + 2768, 2767, - 2766, - 2780, - 2782, + 2781, 2783, - 2749, - 2748, + 2784, 2750, - 2786, - 2787, + 2749, 2751, + 2787, + 2788, 2752, - 2784, + 2753, 2785, - 2720, - 2717, - 2716, - 2718, + 2786, 2721, + 2718, + 2717, 2719, - 2654, + 2722, + 2720, 2655, - 2792, + 2656, 2793, - 2788, - 2790, - 2791, + 2794, 2789, - 2649, + 2791, + 2792, + 2790, 2650, 2651, 2652, - 2663, - 2667, + 2653, + 2664, 2668, + 2669, + 2667, + 2663, 2666, - 2662, - 2665, - 2659, 2660, 2661, - 2656, + 2662, 2657, 2658, - 2664, - 2729, - 2777, - 2817, - 2814, + 2659, + 2665, + 2730, + 2778, + 2818, 2815, 2816, - 2669, + 2817, 2670, - 2699, - 2697, + 2671, + 2700, 2698, - 2694, + 2699, 2695, 2696, - 2700, - 2741, - 2691, + 2697, + 2701, + 2742, 2692, - 2693 + 2693, + 2694 ] } ], @@ -31916,7 +31951,7 @@ ] }, { - "id": 2636, + "id": 2637, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -31926,7 +31961,7 @@ }, "children": [ { - "id": 2638, + "id": 2639, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -31942,12 +31977,12 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2640, "name": "customCssInterface" } }, { - "id": 2637, + "id": 2638, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -31972,8 +32007,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2638, - 2637 + 2639, + 2638 ] } ], @@ -31986,7 +32021,7 @@ ] }, { - "id": 2626, + "id": 2627, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -32002,7 +32037,7 @@ }, "children": [ { - "id": 2628, + "id": 2629, "name": "content", "kind": 1024, "kindString": "Property", @@ -32019,14 +32054,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2629, + "id": 2630, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2631, + "id": 2632, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -32056,7 +32091,7 @@ } }, { - "id": 2632, + "id": 2633, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -32076,7 +32111,7 @@ } }, { - "id": 2630, + "id": 2631, "name": "strings", "kind": 1024, "kindString": "Property", @@ -32119,21 +32154,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2631, 2632, - 2630 + 2633, + 2631 ] } ], "indexSignature": { - "id": 2633, + "id": 2634, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2634, + "id": 2635, "name": "key", "kind": 32768, "flags": {}, @@ -32152,7 +32187,7 @@ } }, { - "id": 2635, + "id": 2636, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -32172,7 +32207,7 @@ } }, { - "id": 2627, + "id": 2628, "name": "style", "kind": 1024, "kindString": "Property", @@ -32188,7 +32223,7 @@ ], "type": { "type": "reference", - "id": 2636, + "id": 2637, "name": "CustomStyles" } } @@ -32198,9 +32233,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2628, - 2635, - 2627 + 2629, + 2636, + 2628 ] } ], @@ -32644,7 +32679,7 @@ ], "type": { "type": "reference", - "id": 2626, + "id": 2627, "name": "CustomisationsInterface" } }, @@ -32952,7 +32987,7 @@ ], "type": { "type": "reference", - "id": 2822, + "id": 2823, "name": "LogLevel" } }, @@ -33470,7 +33505,7 @@ ] }, { - "id": 2585, + "id": 2586, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -33486,7 +33521,7 @@ }, "children": [ { - "id": 2587, + "id": 2588, "name": "height", "kind": 1024, "kindString": "Property", @@ -33518,7 +33553,7 @@ } }, { - "id": 2588, + "id": 2589, "name": "loading", "kind": 1024, "kindString": "Property", @@ -33554,7 +33589,7 @@ } }, { - "id": 2586, + "id": 2587, "name": "width", "kind": 1024, "kindString": "Property", @@ -33591,9 +33626,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2587, 2588, - 2586 + 2589, + 2587 ] } ], @@ -33605,7 +33640,7 @@ } ], "indexSignature": { - "id": 2589, + "id": 2590, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -33615,7 +33650,7 @@ }, "parameters": [ { - "id": 2590, + "id": 2591, "name": "key", "kind": 32768, "flags": {}, @@ -33968,7 +34003,7 @@ ], "type": { "type": "reference", - "id": 2626, + "id": 2627, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -34559,7 +34594,7 @@ ], "type": { "type": "reference", - "id": 2585, + "id": 2586, "name": "FrameParams" }, "inheritedFrom": { @@ -35502,7 +35537,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2819, + "id": 2820, "name": "RuntimeParameter" } }, @@ -36141,7 +36176,7 @@ ] }, { - "id": 2819, + "id": 2820, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -36151,7 +36186,7 @@ }, "children": [ { - "id": 2820, + "id": 2821, "name": "name", "kind": 1024, "kindString": "Property", @@ -36172,7 +36207,7 @@ } }, { - "id": 2821, + "id": 2822, "name": "value", "kind": 1024, "kindString": "Property", @@ -36211,8 +36246,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2820, - 2821 + 2821, + 2822 ] } ], @@ -36476,7 +36511,7 @@ ], "type": { "type": "reference", - "id": 2626, + "id": 2627, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -36961,7 +36996,7 @@ ], "type": { "type": "reference", - "id": 2585, + "id": 2586, "name": "FrameParams" }, "inheritedFrom": { @@ -37434,7 +37469,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2819, + "id": 2820, "name": "RuntimeParameter" } }, @@ -37959,7 +37994,7 @@ ], "type": { "type": "reference", - "id": 2626, + "id": 2627, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -38501,7 +38536,7 @@ ], "type": { "type": "reference", - "id": 2585, + "id": 2586, "name": "FrameParams" }, "inheritedFrom": { @@ -38858,7 +38893,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2819, + "id": 2820, "name": "RuntimeParameter" } }, @@ -39464,7 +39499,7 @@ ], "type": { "type": "reference", - "id": 2626, + "id": 2627, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -40145,7 +40180,7 @@ ], "type": { "type": "reference", - "id": 2585, + "id": 2586, "name": "FrameParams" }, "inheritedFrom": { @@ -40596,7 +40631,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2819, + "id": 2820, "name": "RuntimeParameter" } }, @@ -41160,7 +41195,7 @@ ], "type": { "type": "reference", - "id": 2626, + "id": 2627, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -41433,7 +41468,7 @@ ], "type": { "type": "reference", - "id": 2585, + "id": 2586, "name": "FrameParams" }, "inheritedFrom": { @@ -42007,7 +42042,7 @@ ], "type": { "type": "reference", - "id": 2626, + "id": 2627, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -42420,7 +42455,7 @@ ], "type": { "type": "reference", - "id": 2585, + "id": 2586, "name": "FrameParams" }, "inheritedFrom": { @@ -42803,7 +42838,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2819, + "id": 2820, "name": "RuntimeParameter" } } @@ -43101,14 +43136,14 @@ ] }, { - "id": 2857, + "id": 2858, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2858, + "id": 2859, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -43116,7 +43151,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5734, + "line": 5735, "character": 4 } ], @@ -43129,7 +43164,7 @@ } }, { - "id": 2859, + "id": 2860, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -43137,7 +43172,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5735, + "line": 5736, "character": 4 } ], @@ -43155,21 +43190,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2858, - 2859 + 2859, + 2860 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5733, + "line": 5734, "character": 17 } ] }, { - "id": 2639, + "id": 2640, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -43179,7 +43214,7 @@ }, "children": [ { - "id": 2641, + "id": 2642, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -43209,20 +43244,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2642, + "id": 2643, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2643, + "id": 2644, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2644, + "id": 2645, "name": "selector", "kind": 32768, "flags": {}, @@ -43235,7 +43270,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2645, + "id": 2646, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43248,14 +43283,14 @@ } ], "indexSignature": { - "id": 2646, + "id": 2647, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2647, + "id": 2648, "name": "declaration", "kind": 32768, "flags": {}, @@ -43277,7 +43312,7 @@ } }, { - "id": 2640, + "id": 2641, "name": "variables", "kind": 1024, "kindString": "Property", @@ -43296,7 +43331,7 @@ ], "type": { "type": "reference", - "id": 2648, + "id": 2649, "name": "CustomCssVariables" } } @@ -43306,8 +43341,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2641, - 2640 + 2642, + 2641 ] } ], @@ -43612,7 +43647,7 @@ ] }, { - "id": 2609, + "id": 2610, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -43639,7 +43674,7 @@ } }, { - "id": 2613, + "id": 2614, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -43654,7 +43689,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2614, + "id": 2615, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43677,7 +43712,7 @@ ], "signatures": [ { - "id": 2615, + "id": 2616, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43687,19 +43722,19 @@ }, "parameters": [ { - "id": 2616, + "id": 2617, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2621, + "id": 2622, "name": "MessagePayload" } }, { - "id": 2617, + "id": 2618, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -43709,7 +43744,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2618, + "id": 2619, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43723,7 +43758,7 @@ ], "signatures": [ { - "id": 2619, + "id": 2620, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43733,7 +43768,7 @@ }, "parameters": [ { - "id": 2620, + "id": 2621, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -43764,7 +43799,7 @@ } }, { - "id": 2610, + "id": 2611, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -43788,14 +43823,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2611, + "id": 2612, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2612, + "id": 2613, "name": "start", "kind": 1024, "kindString": "Property", @@ -43823,7 +43858,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2612 + 2613 ] } ], @@ -43838,7 +43873,7 @@ } }, { - "id": 2621, + "id": 2622, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -43862,14 +43897,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2622, + "id": 2623, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2624, + "id": 2625, "name": "data", "kind": 1024, "kindString": "Property", @@ -43887,7 +43922,7 @@ } }, { - "id": 2625, + "id": 2626, "name": "status", "kind": 1024, "kindString": "Property", @@ -43907,7 +43942,7 @@ } }, { - "id": 2623, + "id": 2624, "name": "type", "kind": 1024, "kindString": "Property", @@ -43930,9 +43965,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2624, 2625, - 2623 + 2626, + 2624 ] } ], @@ -44593,7 +44628,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2580, + "id": 2581, "name": "PrefetchFeatures" } } @@ -44665,7 +44700,7 @@ ] }, { - "id": 2906, + "id": 2907, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -44681,7 +44716,7 @@ ], "signatures": [ { - "id": 2907, + "id": 2908, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -44875,7 +44910,7 @@ ] }, { - "id": 2829, + "id": 2830, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -44889,7 +44924,7 @@ ], "signatures": [ { - "id": 2830, + "id": 2831, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -44899,7 +44934,7 @@ }, "parameters": [ { - "id": 2831, + "id": 2832, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -44911,7 +44946,7 @@ } }, { - "id": 2832, + "id": 2833, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -44922,7 +44957,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2833, + "id": 2834, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -44951,24 +44986,24 @@ 1737, 1892, 2229, - 2901, - 2897, - 2893, + 2902, + 2898, + 2894, 2088, 1924, - 2591, - 2851, - 2845, - 2602, + 2592, + 2852, + 2846, + 2603, 2017, - 2854, - 2887, - 2822, + 2855, + 2888, + 2823, 1883, - 2580, - 2849, + 2581, + 2850, 1908, - 2880 + 2881 ] }, { @@ -44995,15 +45030,15 @@ 1747, 1260, 1525, - 2860, - 2648, - 2636, - 2626, + 2861, + 2649, + 2637, + 2627, 2233, - 2585, + 2586, 2379, 1904, - 2819, + 2820, 2452, 2337, 2283, @@ -45011,8 +45046,8 @@ 1231, 1486, 1880, - 2857, - 2639, + 2858, + 2640, 21, 25 ] @@ -45021,10 +45056,10 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2609, - 2613, 2610, - 2621 + 2614, + 2611, + 2622 ] }, { @@ -45040,9 +45075,9 @@ 1, 4, 7, - 2906, + 2907, 37, - 2829 + 2830 ] } ], From 1a612684b9d0d18c801d6ed79a8bb2105231ac14 Mon Sep 17 00:00:00 2001 From: Vivek Kumar <60113444+vivekkumar7089@users.noreply.github.com> Date: Wed, 15 Oct 2025 09:43:18 +0530 Subject: [PATCH 16/31] [SCAL-265458] Added flags for enable save chat in spotter embed (#331) --- src/embed/conversation.spec.ts | 36 +- src/embed/conversation.ts | 22 + src/types.ts | 1 + static/typedoc/typedoc.json | 4819 ++++++++++++++++---------------- 4 files changed, 2509 insertions(+), 2369 deletions(-) diff --git a/src/embed/conversation.spec.ts b/src/embed/conversation.spec.ts index 992076940..104c25512 100644 --- a/src/embed/conversation.spec.ts +++ b/src/embed/conversation.spec.ts @@ -148,7 +148,7 @@ describe('ConversationEmbed', () => { searchQuery: 'searchQuery', }, dataPanelV2: true, - hiddenActions: [Action.InConversationTraining] + hiddenActions: [Action.InConversationTraining], }; const conversationEmbed = new SpotterEmbed(getRootEl(), viewConfig); @@ -282,6 +282,40 @@ describe('ConversationEmbed', () => { ); }); + it('should render the conversation embed with past conversations sidebar enabled', async () => { + const viewConfig: SpotterEmbedViewConfig = { + worksheetId: 'worksheetId', + searchOptions: { + searchQuery: 'searchQuery', + }, + enablePastConversationsSidebar: true, + }; + + const conversationEmbed = new SpotterEmbed(getRootEl(), viewConfig); + await conversationEmbed.render(); + expectUrlMatchesWithParams( + getIFrameSrc(), + `http://${thoughtSpotHost}/v2/?${defaultParams}&isSpotterExperienceEnabled=true&enablePastConversationsSidebar=true#/embed/insights/conv-assist?worksheet=worksheetId&query=searchQuery`, + ); + }); + + it('should render the conversation embed with past conversations sidebar disabled', async () => { + const viewConfig: SpotterEmbedViewConfig = { + worksheetId: 'worksheetId', + searchOptions: { + searchQuery: 'searchQuery', + }, + enablePastConversationsSidebar: false, + }; + + const conversationEmbed = new SpotterEmbed(getRootEl(), viewConfig); + await conversationEmbed.render(); + expectUrlMatchesWithParams( + getIFrameSrc(), + `http://${thoughtSpotHost}/v2/?${defaultParams}&isSpotterExperienceEnabled=true&enablePastConversationsSidebar=false#/embed/insights/conv-assist?worksheet=worksheetId&query=searchQuery`, + ); + }); + it('should ensure deprecated ConversationEmbed class maintains same functionality as SpotterEmbed', async () => { const viewConfig: SpotterEmbedViewConfig = { worksheetId: 'worksheetId', diff --git a/src/embed/conversation.ts b/src/embed/conversation.ts index 139ba2052..1fc0d1d26 100644 --- a/src/embed/conversation.ts +++ b/src/embed/conversation.ts @@ -164,6 +164,22 @@ export interface SpotterEmbedViewConfig extends Omit Date: Wed, 15 Oct 2025 10:13:00 +0530 Subject: [PATCH 17/31] SCAL-265809 SDK flag to control LB filter UX v2 in TSE (#326) --- src/embed/app.spec.ts | 28 + src/embed/app.ts | 7 + src/embed/liveboard.spec.ts | 30 + src/embed/liveboard.ts | 7 + src/types.ts | 19 + static/typedoc/typedoc.json | 2434 ++++++++++++++++++----------------- 6 files changed, 1347 insertions(+), 1178 deletions(-) diff --git a/src/embed/app.spec.ts b/src/embed/app.spec.ts index cd471f477..0ed72a8f1 100644 --- a/src/embed/app.spec.ts +++ b/src/embed/app.spec.ts @@ -414,6 +414,34 @@ describe('App embed tests', () => { }); }); + test('should set isCentralizedLiveboardFilterUXEnabled to true in url', async () => { + const appEmbed = new AppEmbed(getRootEl(), { + ...defaultViewConfig, + isCentralizedLiveboardFilterUXEnabled: true, + } as AppViewConfig); + appEmbed.render(); + await executeAfterWait(() => { + expectUrlMatchesWithParams( + getIFrameSrc(), + `http://${thoughtSpotHost}/?embedApp=true&profileAndHelpInNavBarHidden=false&isCentralizedLiveboardFilterUXEnabled=true${defaultParamsPost}#/home`, + ); + }); + }); + + test('should set isCentralizedLiveboardFilterUXEnabled to false in url', async () => { + const appEmbed = new AppEmbed(getRootEl(), { + ...defaultViewConfig, + isCentralizedLiveboardFilterUXEnabled: false, + } as AppViewConfig); + appEmbed.render(); + await executeAfterWait(() => { + expectUrlMatchesWithParams( + getIFrameSrc(), + `http://${thoughtSpotHost}/?embedApp=true&profileAndHelpInNavBarHidden=false&isCentralizedLiveboardFilterUXEnabled=false${defaultParamsPost}#/home`, + ); + }); + }); + test('Should add the tag to the iframe src', async () => { const appEmbed = new AppEmbed(getRootEl(), { ...defaultViewConfig, diff --git a/src/embed/app.ts b/src/embed/app.ts index 8b26cc6ac..3dfbe4a39 100644 --- a/src/embed/app.ts +++ b/src/embed/app.ts @@ -684,6 +684,7 @@ export class AppEmbed extends V1Embed { liveboardXLSXCSVDownload = false, isLiveboardStylingAndGroupingEnabled, isPNGInScheduledEmailsEnabled = false, + isCentralizedLiveboardFilterUXEnabled = false, isLinkParametersEnabled, } = this.viewConfig; @@ -780,6 +781,12 @@ export class AppEmbed extends V1Embed { params[Param.isLinkParametersEnabled] = isLinkParametersEnabled; } + if (isCentralizedLiveboardFilterUXEnabled != undefined) { + params[ + Param.isCentralizedLiveboardFilterUXEnabled + ] = isCentralizedLiveboardFilterUXEnabled; + } + params[Param.DataPanelV2Enabled] = dataPanelV2; params[Param.HideHomepageLeftNav] = hideHomepageLeftNav; params[Param.ModularHomeExperienceEnabled] = modularHomeExperience; diff --git a/src/embed/liveboard.spec.ts b/src/embed/liveboard.spec.ts index f03053ecb..1476402fd 100644 --- a/src/embed/liveboard.spec.ts +++ b/src/embed/liveboard.spec.ts @@ -453,6 +453,36 @@ describe('Liveboard/viz embed tests', () => { }); }); + test('should add isCentralizedLiveboardFilterUXEnabled flag and set value to true to the iframe src', async () => { + const liveboardEmbed = new LiveboardEmbed(getRootEl(), { + ...defaultViewConfig, + liveboardId, + isCentralizedLiveboardFilterUXEnabled: true, + } as LiveboardViewConfig); + liveboardEmbed.render(); + await executeAfterWait(() => { + expectUrlMatchesWithParams( + getIFrameSrc(), + `http://${thoughtSpotHost}/?embedApp=true${defaultParams}&isCentralizedLiveboardFilterUXEnabled=true${prefixParams}#/embed/viz/${liveboardId}`, + ); + }); + }); + + test('should add isCentralizedLiveboardFilterUXEnabled flag and set value to false to the iframe src', async () => { + const liveboardEmbed = new LiveboardEmbed(getRootEl(), { + ...defaultViewConfig, + liveboardId, + isCentralizedLiveboardFilterUXEnabled: false, + } as LiveboardViewConfig); + liveboardEmbed.render(); + await executeAfterWait(() => { + expectUrlMatchesWithParams( + getIFrameSrc(), + `http://${thoughtSpotHost}/?embedApp=true${defaultParams}&isCentralizedLiveboardFilterUXEnabled=false${prefixParams}#/embed/viz/${liveboardId}`, + ); + }); + }); + test('should not append runtime filters in URL if excludeRuntimeFiltersfromURL is true', async () => { const liveboardEmbed = new LiveboardEmbed(getRootEl(), { ...defaultViewConfig, diff --git a/src/embed/liveboard.ts b/src/embed/liveboard.ts index e374f2dab..d5a9c9ae8 100644 --- a/src/embed/liveboard.ts +++ b/src/embed/liveboard.ts @@ -477,6 +477,7 @@ export class LiveboardEmbed extends V1Embed { isLiveboardStylingAndGroupingEnabled, isPNGInScheduledEmailsEnabled = false, showSpotterLimitations, + isCentralizedLiveboardFilterUXEnabled = false, isLinkParametersEnabled, } = this.viewConfig; @@ -557,6 +558,12 @@ export class LiveboardEmbed extends V1Embed { params[Param.isLinkParametersEnabled] = isLinkParametersEnabled; } + if (isCentralizedLiveboardFilterUXEnabled !== undefined) { + params[ + Param.isCentralizedLiveboardFilterUXEnabled + ] = isCentralizedLiveboardFilterUXEnabled; + } + params[Param.LiveboardHeaderSticky] = isLiveboardHeaderSticky; params[Param.LiveboardHeaderV2] = isLiveboardCompactHeaderEnabled; params[Param.ShowLiveboardVerifiedBadge] = showLiveboardVerifiedBadge; diff --git a/src/types.ts b/src/types.ts index f385eadb1..5d43655af 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1512,6 +1512,24 @@ export interface LiveboardAppEmbedViewConfig { * ``` */ liveboardXLSXCSVDownload?: boolean; + /** + * This flag is used to enable or disable the new centralized Liveboard filter UX (v2). + * When enabled, a unified modal is used to manage and update multiple filters at once, + * replacing the older individual filter interactions. + * To enable this feature on your instance, contact ThoughtSpot Support. + * + * Supported embed types: `AppEmbed`, `LiveboardEmbed` + * @version SDK: 1.42.0 | ThoughtSpot: 10.15.0.cl + * @example + * ```js + * // Replace with embed component name. For example, AppEmbed or LiveboardEmbed + * const embed = new ('#tsEmbed', { + * ... // other embed view config + * isCentralizedLiveboardFilterUXEnabled: true, + * }) + * ``` + */ + isCentralizedLiveboardFilterUXEnabled?: boolean; /** * This flag is used to enable or disable the link parameters in liveboard. * @@ -4366,6 +4384,7 @@ export enum Param { RootMarginForLazyLoad = 'rootMarginForLazyLoad', LiveboardXLSXCSVDownload = 'isLiveboardXLSXCSVDownloadEnabled', isPNGInScheduledEmailsEnabled = 'isPNGInScheduledEmailsEnabled', + isCentralizedLiveboardFilterUXEnabled = 'isCentralizedLiveboardFilterUXEnabled', isLinkParametersEnabled = 'isLinkParametersEnabled', EnablePastConversationsSidebar = 'enablePastConversationsSidebar', } diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 29eec9ff8..d88ee36d5 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -48,7 +48,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5436, + "line": 5455, "character": 4 } ], @@ -76,7 +76,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4582, + "line": 4601, "character": 4 } ], @@ -104,7 +104,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4511, + "line": 4530, "character": 4 } ], @@ -128,7 +128,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4500, + "line": 4519, "character": 4 } ], @@ -152,7 +152,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4563, + "line": 4582, "character": 4 } ], @@ -176,7 +176,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4572, + "line": 4591, "character": 4 } ], @@ -204,7 +204,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4592, + "line": 4611, "character": 4 } ], @@ -232,7 +232,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5230, + "line": 5249, "character": 4 } ], @@ -260,7 +260,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4952, + "line": 4971, "character": 4 } ], @@ -288,7 +288,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5403, + "line": 5422, "character": 4 } ], @@ -316,7 +316,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4940, + "line": 4959, "character": 4 } ], @@ -344,7 +344,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4928, + "line": 4947, "character": 4 } ], @@ -373,7 +373,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5392, + "line": 5411, "character": 4 } ], @@ -401,7 +401,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5065, + "line": 5084, "character": 4 } ], @@ -429,7 +429,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5099, + "line": 5118, "character": 4 } ], @@ -457,7 +457,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5154, + "line": 5173, "character": 4 } ], @@ -485,7 +485,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5088, + "line": 5107, "character": 4 } ], @@ -513,7 +513,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5122, + "line": 5141, "character": 4 } ], @@ -541,7 +541,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5164, + "line": 5183, "character": 4 } ], @@ -569,7 +569,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5133, + "line": 5152, "character": 4 } ], @@ -597,7 +597,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5186, + "line": 5205, "character": 4 } ], @@ -625,7 +625,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5143, + "line": 5162, "character": 4 } ], @@ -653,7 +653,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5110, + "line": 5129, "character": 4 } ], @@ -681,7 +681,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5174, + "line": 5193, "character": 4 } ], @@ -709,7 +709,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5076, + "line": 5095, "character": 4 } ], @@ -737,7 +737,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5534, + "line": 5553, "character": 4 } ], @@ -761,7 +761,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4554, + "line": 4573, "character": 4 } ], @@ -789,7 +789,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4545, + "line": 4564, "character": 4 } ], @@ -817,7 +817,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4533, + "line": 4552, "character": 4 } ], @@ -845,7 +845,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5610, + "line": 5629, "character": 4 } ], @@ -869,7 +869,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4522, + "line": 4541, "character": 4 } ], @@ -884,7 +884,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4879, + "line": 4898, "character": 4 } ], @@ -908,7 +908,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4459, + "line": 4478, "character": 4 } ], @@ -932,7 +932,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4878, + "line": 4897, "character": 4 } ], @@ -960,7 +960,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5620, + "line": 5639, "character": 4 } ], @@ -988,7 +988,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5367, + "line": 5386, "character": 4 } ], @@ -1016,7 +1016,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4972, + "line": 4991, "character": 4 } ], @@ -1044,7 +1044,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5023, + "line": 5042, "character": 4 } ], @@ -1072,7 +1072,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5591, + "line": 5610, "character": 4 } ], @@ -1100,7 +1100,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5503, + "line": 5522, "character": 4 } ], @@ -1128,7 +1128,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5522, + "line": 5541, "character": 4 } ], @@ -1152,7 +1152,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4642, + "line": 4661, "character": 4 } ], @@ -1176,7 +1176,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4675, + "line": 4694, "character": 4 } ], @@ -1201,7 +1201,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4665, + "line": 4684, "character": 4 } ], @@ -1225,7 +1225,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4652, + "line": 4671, "character": 4 } ], @@ -1249,7 +1249,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4685, + "line": 4704, "character": 4 } ], @@ -1273,7 +1273,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4895, + "line": 4914, "character": 4 } ], @@ -1297,7 +1297,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4868, + "line": 4887, "character": 4 } ], @@ -1321,7 +1321,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4859, + "line": 4878, "character": 4 } ], @@ -1345,7 +1345,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4761, + "line": 4780, "character": 4 } ], @@ -1369,7 +1369,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4450, + "line": 4469, "character": 4 } ], @@ -1397,7 +1397,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4961, + "line": 4980, "character": 4 } ], @@ -1412,7 +1412,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4884, + "line": 4903, "character": 4 } ], @@ -1440,7 +1440,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5580, + "line": 5599, "character": 4 } ], @@ -1468,7 +1468,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5274, + "line": 5293, "character": 4 } ], @@ -1496,7 +1496,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5449, + "line": 5468, "character": 4 } ], @@ -1520,7 +1520,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4729, + "line": 4748, "character": 4 } ], @@ -1544,7 +1544,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4769, + "line": 4788, "character": 4 } ], @@ -1572,7 +1572,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5601, + "line": 5620, "character": 4 } ], @@ -1600,7 +1600,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5240, + "line": 5259, "character": 4 } ], @@ -1628,7 +1628,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5251, + "line": 5270, "character": 4 } ], @@ -1652,7 +1652,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4848, + "line": 4867, "character": 4 } ], @@ -1677,7 +1677,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4701, + "line": 4720, "character": 4 } ], @@ -1701,7 +1701,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4711, + "line": 4730, "character": 4 } ], @@ -1729,7 +1729,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5636, + "line": 5655, "character": 4 } ], @@ -1757,7 +1757,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5513, + "line": 5532, "character": 4 } ], @@ -1781,7 +1781,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4810, + "line": 4829, "character": 4 } ], @@ -1809,7 +1809,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5335, + "line": 5354, "character": 4 } ], @@ -1833,7 +1833,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4441, + "line": 4460, "character": 4 } ], @@ -1857,7 +1857,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5315, + "line": 5334, "character": 4 } ], @@ -1885,7 +1885,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5013, + "line": 5032, "character": 4 } ], @@ -1913,7 +1913,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5492, + "line": 5511, "character": 4 } ], @@ -1941,7 +1941,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5220, + "line": 5239, "character": 4 } ], @@ -1968,7 +1968,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5295, + "line": 5314, "character": 4 } ], @@ -1992,7 +1992,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5304, + "line": 5323, "character": 4 } ], @@ -2020,7 +2020,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5425, + "line": 5444, "character": 4 } ], @@ -2048,7 +2048,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5460, + "line": 5479, "character": 4 } ], @@ -2076,7 +2076,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5325, + "line": 5344, "character": 4 } ], @@ -2100,7 +2100,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4827, + "line": 4846, "character": 4 } ], @@ -2124,7 +2124,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5680, + "line": 5699, "character": 4 } ], @@ -2148,7 +2148,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4739, + "line": 4758, "character": 4 } ], @@ -2176,7 +2176,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5546, + "line": 5565, "character": 4 } ], @@ -2201,7 +2201,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4918, + "line": 4937, "character": 4 } ], @@ -2225,7 +2225,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4779, + "line": 4798, "character": 4 } ], @@ -2253,7 +2253,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5692, + "line": 5711, "character": 4 } ], @@ -2281,7 +2281,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5054, + "line": 5073, "character": 4 } ], @@ -2309,7 +2309,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5414, + "line": 5433, "character": 4 } ], @@ -2337,7 +2337,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5200, + "line": 5219, "character": 4 } ], @@ -2368,7 +2368,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4982, + "line": 5001, "character": 4 } ], @@ -2392,7 +2392,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4904, + "line": 4923, "character": 4 } ], @@ -2420,7 +2420,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5210, + "line": 5229, "character": 4 } ], @@ -2448,7 +2448,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5558, + "line": 5577, "character": 4 } ], @@ -2476,7 +2476,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5286, + "line": 5305, "character": 4 } ], @@ -2500,7 +2500,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4410, + "line": 4429, "character": 4 } ], @@ -2524,7 +2524,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4428, + "line": 4447, "character": 4 } ], @@ -2548,7 +2548,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4473, + "line": 4492, "character": 4 } ], @@ -2572,7 +2572,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4482, + "line": 4501, "character": 4 } ], @@ -2587,7 +2587,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4885, + "line": 4904, "character": 4 } ], @@ -2611,7 +2611,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4491, + "line": 4510, "character": 4 } ], @@ -2629,7 +2629,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4617, + "line": 4636, "character": 4 } ], @@ -2657,7 +2657,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5261, + "line": 5280, "character": 4 } ], @@ -2681,7 +2681,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4632, + "line": 4651, "character": 4 } ], @@ -2705,7 +2705,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4605, + "line": 4624, "character": 4 } ], @@ -2733,7 +2733,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5569, + "line": 5588, "character": 4 } ], @@ -2761,7 +2761,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5669, + "line": 5688, "character": 4 } ], @@ -2789,7 +2789,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5647, + "line": 5666, "character": 4 } ], @@ -2817,7 +2817,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5658, + "line": 5677, "character": 4 } ], @@ -2841,7 +2841,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4840, + "line": 4859, "character": 4 } ], @@ -2869,7 +2869,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5003, + "line": 5022, "character": 4 } ], @@ -2897,7 +2897,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4992, + "line": 5011, "character": 4 } ], @@ -2925,7 +2925,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5033, + "line": 5052, "character": 4 } ], @@ -2953,7 +2953,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5043, + "line": 5062, "character": 4 } ], @@ -2985,7 +2985,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5354, + "line": 5373, "character": 4 } ], @@ -3009,7 +3009,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4751, + "line": 4770, "character": 4 } ], @@ -3037,7 +3037,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5482, + "line": 5501, "character": 4 } ], @@ -3061,7 +3061,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4720, + "line": 4739, "character": 4 } ], @@ -3089,7 +3089,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5378, + "line": 5397, "character": 4 } ], @@ -3117,7 +3117,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5471, + "line": 5490, "character": 4 } ], @@ -3253,7 +3253,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4401, + "line": 4420, "character": 12 } ] @@ -3826,7 +3826,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5713, + "line": 5732, "character": 4 } ], @@ -3841,7 +3841,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5711, + "line": 5730, "character": 4 } ], @@ -3856,7 +3856,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5712, + "line": 5731, "character": 4 } ], @@ -3877,13 +3877,13 @@ "sources": [ { "fileName": "types.ts", - "line": 5710, + "line": 5729, "character": 12 } ] }, { - "id": 2904, + "id": 2906, "name": "CustomActionTarget", "kind": 4, "kindString": "Enumeration", @@ -3893,7 +3893,7 @@ }, "children": [ { - "id": 2907, + "id": 2909, "name": "ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -3901,14 +3901,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5798, + "line": 5817, "character": 4 } ], "defaultValue": "\"ANSWER\"" }, { - "id": 2905, + "id": 2907, "name": "LIVEBOARD", "kind": 16, "kindString": "Enumeration member", @@ -3916,14 +3916,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5796, + "line": 5815, "character": 4 } ], "defaultValue": "\"LIVEBOARD\"" }, { - "id": 2908, + "id": 2910, "name": "SPOTTER", "kind": 16, "kindString": "Enumeration member", @@ -3931,14 +3931,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5799, + "line": 5818, "character": 4 } ], "defaultValue": "\"SPOTTER\"" }, { - "id": 2906, + "id": 2908, "name": "VIZ", "kind": 16, "kindString": "Enumeration member", @@ -3946,7 +3946,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5797, + "line": 5816, "character": 4 } ], @@ -3958,23 +3958,23 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2909, 2907, - 2905, - 2908, - 2906 + 2910, + 2908 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5795, + "line": 5814, "character": 12 } ] }, { - "id": 2900, + "id": 2902, "name": "CustomActionsPosition", "kind": 4, "kindString": "Enumeration", @@ -3984,7 +3984,7 @@ }, "children": [ { - "id": 2903, + "id": 2905, "name": "CONTEXTMENU", "kind": 16, "kindString": "Enumeration member", @@ -3992,14 +3992,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5789, + "line": 5808, "character": 4 } ], "defaultValue": "\"CONTEXTMENU\"" }, { - "id": 2902, + "id": 2904, "name": "MENU", "kind": 16, "kindString": "Enumeration member", @@ -4007,14 +4007,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5788, + "line": 5807, "character": 4 } ], "defaultValue": "\"MENU\"" }, { - "id": 2901, + "id": 2903, "name": "PRIMARY", "kind": 16, "kindString": "Enumeration member", @@ -4022,7 +4022,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5787, + "line": 5806, "character": 4 } ], @@ -4034,22 +4034,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2903, - 2902, - 2901 + 2905, + 2904, + 2903 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5786, + "line": 5805, "character": 12 } ] }, { - "id": 2896, + "id": 2898, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -4059,7 +4059,7 @@ }, "children": [ { - "id": 2898, + "id": 2900, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4077,7 +4077,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 2897, + "id": 2899, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4095,7 +4095,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 2899, + "id": 2901, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -4118,9 +4118,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2898, - 2897, - 2899 + 2900, + 2899, + 2901 ] } ], @@ -4154,7 +4154,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4234, + "line": 4252, "character": 4 } ], @@ -4172,7 +4172,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4238, + "line": 4256, "character": 4 } ], @@ -4190,7 +4190,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4230, + "line": 4248, "character": 4 } ], @@ -4211,7 +4211,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4226, + "line": 4244, "character": 12 } ] @@ -4263,7 +4263,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2154, + "line": 2172, "character": 4 } ], @@ -4295,7 +4295,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1920, + "line": 1938, "character": 4 } ], @@ -4323,7 +4323,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2465, + "line": 2483, "character": 4 } ], @@ -4355,7 +4355,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2012, + "line": 2030, "character": 4 } ], @@ -4383,7 +4383,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2433, + "line": 2451, "character": 4 } ], @@ -4411,7 +4411,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2258, + "line": 2276, "character": 4 } ], @@ -4451,7 +4451,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2674, + "line": 2692, "character": 4 } ], @@ -4479,7 +4479,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2025, + "line": 2043, "character": 4 } ], @@ -4511,7 +4511,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1822, + "line": 1840, "character": 4 } ], @@ -4539,7 +4539,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2541, + "line": 2559, "character": 4 } ], @@ -4567,7 +4567,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2411, + "line": 2429, "character": 4 } ], @@ -4595,7 +4595,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2561, + "line": 2579, "character": 4 } ], @@ -4623,7 +4623,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2348, + "line": 2366, "character": 4 } ], @@ -4647,7 +4647,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2625, + "line": 2643, "character": 4 } ], @@ -4672,7 +4672,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2805, + "line": 2823, "character": 4 } ], @@ -4696,7 +4696,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2810, + "line": 2828, "character": 4 } ], @@ -4720,7 +4720,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2665, + "line": 2683, "character": 4 } ], @@ -4748,7 +4748,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2572, + "line": 2590, "character": 4 } ], @@ -4784,7 +4784,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1937, + "line": 1955, "character": 4 } ], @@ -4820,7 +4820,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1850, + "line": 1868, "character": 4 } ], @@ -4852,7 +4852,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1908, + "line": 1926, "character": 4 } ], @@ -4880,7 +4880,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2523, + "line": 2541, "character": 4 } ], @@ -4912,7 +4912,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2660, + "line": 2678, "character": 4 } ], @@ -4940,7 +4940,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2121, + "line": 2139, "character": 4 } ], @@ -4968,7 +4968,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2110, + "line": 2128, "character": 4 } ], @@ -4997,7 +4997,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2188, + "line": 2206, "character": 4 } ], @@ -5025,7 +5025,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2230, + "line": 2248, "character": 4 } ], @@ -5053,7 +5053,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2216, + "line": 2234, "character": 4 } ], @@ -5081,7 +5081,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2202, + "line": 2220, "character": 4 } ], @@ -5109,7 +5109,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2244, + "line": 2262, "character": 4 } ], @@ -5137,7 +5137,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2337, + "line": 2355, "character": 4 } ], @@ -5165,7 +5165,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2325, + "line": 2343, "character": 4 } ], @@ -5209,7 +5209,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1896, + "line": 1914, "character": 4 } ], @@ -5237,7 +5237,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2487, + "line": 2505, "character": 4 } ], @@ -5265,7 +5265,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2371, + "line": 2389, "character": 4 } ], @@ -5302,7 +5302,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2002, + "line": 2020, "character": 4 } ], @@ -5330,7 +5330,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2551, + "line": 2569, "character": 4 } ], @@ -5358,7 +5358,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2386, + "line": 2404, "character": 4 } ], @@ -5382,7 +5382,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2602, + "line": 2620, "character": 4 } ], @@ -5410,7 +5410,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2067, + "line": 2085, "character": 4 } ], @@ -5438,7 +5438,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1810, + "line": 1828, "character": 4 } ], @@ -5466,7 +5466,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2877, + "line": 2895, "character": 4 } ], @@ -5494,7 +5494,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2866, + "line": 2884, "character": 4 } ], @@ -5522,7 +5522,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2454, + "line": 2472, "character": 4 } ], @@ -5554,7 +5554,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2143, + "line": 2161, "character": 4 } ], @@ -5586,7 +5586,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1836, + "line": 1854, "character": 4 } ], @@ -5614,7 +5614,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2498, + "line": 2516, "character": 4 } ], @@ -5642,7 +5642,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2093, + "line": 2111, "character": 4 } ], @@ -5679,7 +5679,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2738, + "line": 2756, "character": 4 } ], @@ -5707,7 +5707,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2922, + "line": 2940, "character": 4 } ], @@ -5731,7 +5731,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2749, + "line": 2767, "character": 4 } ], @@ -5759,7 +5759,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2277, + "line": 2295, "character": 4 } ], @@ -5791,7 +5791,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2513, + "line": 2531, "character": 4 } ], @@ -5819,7 +5819,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2844, + "line": 2862, "character": 4 } ], @@ -5847,7 +5847,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1859, + "line": 1877, "character": 4 } ], @@ -5871,7 +5871,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2679, + "line": 2697, "character": 4 } ], @@ -5911,7 +5911,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2653, + "line": 2671, "character": 4 } ], @@ -5939,7 +5939,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2888, + "line": 2906, "character": 4 } ], @@ -5967,7 +5967,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2077, + "line": 2095, "character": 4 } ], @@ -5991,7 +5991,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2608, + "line": 2626, "character": 4 } ], @@ -6015,7 +6015,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2615, + "line": 2633, "character": 4 } ], @@ -6043,7 +6043,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2172, + "line": 2190, "character": 4 } ], @@ -6071,7 +6071,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2397, + "line": 2415, "character": 4 } ], @@ -6111,7 +6111,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2644, + "line": 2662, "character": 4 } ], @@ -6139,7 +6139,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2476, + "line": 2494, "character": 4 } ], @@ -6167,7 +6167,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2532, + "line": 2550, "character": 4 } ], @@ -6195,7 +6195,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2313, + "line": 2331, "character": 4 } ], @@ -6223,7 +6223,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2422, + "line": 2440, "character": 4 } ], @@ -6251,7 +6251,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2295, + "line": 2313, "character": 4 } ], @@ -6279,7 +6279,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2833, + "line": 2851, "character": 4 } ], @@ -6307,7 +6307,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2899, + "line": 2917, "character": 4 } ], @@ -6335,7 +6335,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2855, + "line": 2873, "character": 4 } ], @@ -6364,7 +6364,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2792, + "line": 2810, "character": 4 } ], @@ -6388,7 +6388,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2620, + "line": 2638, "character": 4 } ], @@ -6428,7 +6428,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2635, + "line": 2653, "character": 4 } ], @@ -6456,7 +6456,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2359, + "line": 2377, "character": 4 } ], @@ -6492,7 +6492,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1968, + "line": 1986, "character": 4 } ], @@ -6524,7 +6524,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1949, + "line": 1967, "character": 4 } ], @@ -6552,7 +6552,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2583, + "line": 2601, "character": 4 } ], @@ -6649,13 +6649,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1797, + "line": 1815, "character": 12 } ] }, { - "id": 2594, + "id": 2596, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -6665,7 +6665,7 @@ }, "children": [ { - "id": 2598, + "id": 2600, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -6688,7 +6688,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2602, + "id": 2604, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6712,7 +6712,7 @@ "defaultValue": "\"create\"" }, { - "id": 2604, + "id": 2606, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -6736,7 +6736,7 @@ "defaultValue": "\"favorites\"" }, { - "id": 2596, + "id": 2598, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6759,7 +6759,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2601, + "id": 2603, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6782,7 +6782,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2597, + "id": 2599, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6805,7 +6805,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2599, + "id": 2601, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6828,7 +6828,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2595, + "id": 2597, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6851,7 +6851,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2600, + "id": 2602, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6874,7 +6874,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2603, + "id": 2605, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -6903,16 +6903,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2598, - 2602, + 2600, 2604, - 2596, + 2606, + 2598, + 2603, + 2599, 2601, 2597, - 2599, - 2595, - 2600, - 2603 + 2602, + 2605 ] } ], @@ -6925,7 +6925,7 @@ ] }, { - "id": 2854, + "id": 2856, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -6941,7 +6941,7 @@ }, "children": [ { - "id": 2855, + "id": 2857, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -6959,7 +6959,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2856, + "id": 2858, "name": "ModularWithStylingChanges", "kind": 16, "kindString": "Enumeration member", @@ -6982,8 +6982,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2855, - 2856 + 2857, + 2858 ] } ], @@ -6996,14 +6996,14 @@ ] }, { - "id": 2848, + "id": 2850, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2850, + "id": 2852, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -7018,7 +7018,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2851, + "id": 2853, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -7033,7 +7033,7 @@ "defaultValue": "\"none\"" }, { - "id": 2849, + "id": 2851, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -7053,9 +7053,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2850, - 2851, - 2849 + 2852, + 2853, + 2851 ] } ], @@ -7068,7 +7068,7 @@ ] }, { - "id": 2605, + "id": 2607, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -7084,7 +7084,7 @@ }, "children": [ { - "id": 2608, + "id": 2610, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -7095,14 +7095,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1678, + "line": 1696, "character": 4 } ], "defaultValue": "\"FAVORITE\"" }, { - "id": 2611, + "id": 2613, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -7113,14 +7113,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1690, + "line": 1708, "character": 4 } ], "defaultValue": "\"LEARNING\"" }, { - "id": 2609, + "id": 2611, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -7131,14 +7131,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1682, + "line": 1700, "character": 4 } ], "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2606, + "id": 2608, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7149,14 +7149,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1670, + "line": 1688, "character": 4 } ], "defaultValue": "\"SEARCH\"" }, { - "id": 2610, + "id": 2612, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -7167,14 +7167,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1686, + "line": 1704, "character": 4 } ], "defaultValue": "\"TRENDING\"" }, { - "id": 2607, + "id": 2609, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -7185,7 +7185,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1674, + "line": 1692, "character": 4 } ], @@ -7197,19 +7197,19 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2608, - 2611, - 2609, - 2606, 2610, - 2607 + 2613, + 2611, + 2608, + 2612, + 2609 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1666, + "line": 1684, "character": 12 } ] @@ -7270,7 +7270,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3175, + "line": 3193, "character": 4 } ], @@ -7303,7 +7303,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4173, + "line": 4191, "character": 4 } ], @@ -7331,7 +7331,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3980, + "line": 3998, "character": 4 } ], @@ -7364,7 +7364,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4207, + "line": 4225, "character": 4 } ], @@ -7397,7 +7397,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3489, + "line": 3507, "character": 4 } ], @@ -7434,7 +7434,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3419, + "line": 3437, "character": 4 } ], @@ -7467,7 +7467,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3566, + "line": 3584, "character": 4 } ], @@ -7495,7 +7495,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4161, + "line": 4179, "character": 4 } ], @@ -7532,7 +7532,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3608, + "line": 3626, "character": 4 } ], @@ -7565,7 +7565,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3651, + "line": 3669, "character": 4 } ], @@ -7602,7 +7602,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3349, + "line": 3367, "character": 4 } ], @@ -7630,7 +7630,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3628, + "line": 3646, "character": 4 } ], @@ -7663,7 +7663,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3674, + "line": 3692, "character": 4 } ], @@ -7720,7 +7720,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3050, + "line": 3068, "character": 4 } ], @@ -7767,7 +7767,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3472, + "line": 3490, "character": 4 } ], @@ -7800,7 +7800,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4134, + "line": 4152, "character": 4 } ], @@ -7828,7 +7828,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3318, + "line": 3336, "character": 4 } ], @@ -7861,7 +7861,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3402, + "line": 3420, "character": 4 } ], @@ -7889,7 +7889,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3308, + "line": 3326, "character": 4 } ], @@ -7922,7 +7922,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3970, + "line": 3988, "character": 4 } ], @@ -7950,7 +7950,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3797, + "line": 3815, "character": 4 } ], @@ -7978,7 +7978,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3072, + "line": 3090, "character": 4 } ], @@ -8007,7 +8007,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4037, + "line": 4055, "character": 4 } ], @@ -8043,7 +8043,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3530, + "line": 3548, "character": 4 } ], @@ -8071,7 +8071,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3900, + "line": 3918, "character": 4 } ], @@ -8099,7 +8099,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3280, + "line": 3298, "character": 4 } ], @@ -8143,7 +8143,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3378, + "line": 3396, "character": 4 } ], @@ -8184,7 +8184,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3440, + "line": 3458, "character": 4 } ], @@ -8217,7 +8217,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3774, + "line": 3792, "character": 4 } ], @@ -8250,7 +8250,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3145, + "line": 3163, "character": 4 } ], @@ -8287,7 +8287,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3165, + "line": 3183, "character": 4 } ], @@ -8355,7 +8355,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3270, + "line": 3288, "character": 4 } ], @@ -8388,7 +8388,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3506, + "line": 3524, "character": 4 } ], @@ -8416,7 +8416,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4143, + "line": 4161, "character": 4 } ], @@ -8448,7 +8448,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3392, + "line": 3410, "character": 4 } ], @@ -8481,7 +8481,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3185, + "line": 3203, "character": 4 } ], @@ -8509,7 +8509,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4005, + "line": 4023, "character": 4 } ], @@ -8537,7 +8537,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3786, + "line": 3804, "character": 4 } ], @@ -8565,7 +8565,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4152, + "line": 4170, "character": 4 } ], @@ -8598,7 +8598,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3727, + "line": 3745, "character": 4 } ], @@ -8640,7 +8640,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4084, + "line": 4102, "character": 4 } ], @@ -8668,7 +8668,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3289, + "line": 3307, "character": 4 } ], @@ -8696,7 +8696,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3298, + "line": 3316, "character": 4 } ], @@ -8735,7 +8735,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2999, + "line": 3017, "character": 4 } ], @@ -8768,7 +8768,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3097, + "line": 3115, "character": 4 } ], @@ -8801,7 +8801,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3926, + "line": 3944, "character": 4 } ], @@ -8834,7 +8834,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3913, + "line": 3931, "character": 4 } ], @@ -8867,7 +8867,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3085, + "line": 3103, "character": 4 } ], @@ -8895,7 +8895,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3687, + "line": 3705, "character": 4 } ], @@ -8928,7 +8928,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3549, + "line": 3567, "character": 4 } ], @@ -8961,7 +8961,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3586, + "line": 3604, "character": 4 } ], @@ -8999,7 +8999,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4124, + "line": 4142, "character": 4 } ], @@ -9032,7 +9032,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3758, + "line": 3776, "character": 4 } ], @@ -9065,7 +9065,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3742, + "line": 3760, "character": 4 } ], @@ -9098,7 +9098,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4109, + "line": 4127, "character": 4 } ], @@ -9126,7 +9126,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3996, + "line": 4014, "character": 4 } ], @@ -9176,7 +9176,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3887, + "line": 3905, "character": 4 } ], @@ -9200,7 +9200,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4019, + "line": 4037, "character": 4 } ], @@ -9224,7 +9224,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4045, + "line": 4063, "character": 4 } ], @@ -9262,7 +9262,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3133, + "line": 3151, "character": 4 } ], @@ -9300,7 +9300,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3940, + "line": 3958, "character": 4 } ], @@ -9328,7 +9328,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3327, + "line": 3345, "character": 4 } ], @@ -9356,7 +9356,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3201, + "line": 3219, "character": 4 } ], @@ -9437,13 +9437,13 @@ "sources": [ { "fileName": "types.ts", - "line": 2979, + "line": 2997, "character": 12 } ] }, { - "id": 2857, + "id": 2859, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -9459,7 +9459,7 @@ }, "children": [ { - "id": 2858, + "id": 2860, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -9477,7 +9477,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2859, + "id": 2861, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -9500,8 +9500,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2858, - 2859 + 2860, + 2861 ] } ], @@ -9514,7 +9514,7 @@ ] }, { - "id": 2890, + "id": 2892, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -9530,7 +9530,7 @@ }, "children": [ { - "id": 2893, + "id": 2895, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -9541,14 +9541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1711, + "line": 1729, "character": 4 } ], "defaultValue": "\"AUTHOR\"" }, { - "id": 2894, + "id": 2896, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -9559,14 +9559,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1715, + "line": 1733, "character": 4 } ], "defaultValue": "\"DATE_SORT\"" }, { - "id": 2891, + "id": 2893, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -9577,14 +9577,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1703, + "line": 1721, "character": 4 } ], "defaultValue": "\"FAVOURITE\"" }, { - "id": 2895, + "id": 2897, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -9595,14 +9595,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1719, + "line": 1737, "character": 4 } ], "defaultValue": "\"SHARE\"" }, { - "id": 2892, + "id": 2894, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -9613,7 +9613,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1707, + "line": 1725, "character": 4 } ], @@ -9625,24 +9625,24 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2893, - 2894, - 2891, 2895, - 2892 + 2896, + 2893, + 2897, + 2894 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1699, + "line": 1717, "character": 12 } ] }, { - "id": 2825, + "id": 2827, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -9652,7 +9652,7 @@ }, "children": [ { - "id": 2830, + "id": 2832, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -9673,14 +9673,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5873, + "line": 5892, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2827, + "id": 2829, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -9701,14 +9701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5834, + "line": 5853, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2829, + "id": 2831, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -9729,14 +9729,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5859, + "line": 5878, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2826, + "id": 2828, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -9757,14 +9757,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5822, + "line": 5841, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2831, + "id": 2833, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -9785,14 +9785,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5885, + "line": 5904, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2828, + "id": 2830, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -9813,7 +9813,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5846, + "line": 5865, "character": 4 } ], @@ -9825,19 +9825,19 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2830, - 2827, + 2832, 2829, - 2826, 2831, - 2828 + 2828, + 2833, + 2830 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5809, + "line": 5828, "character": 12 } ] @@ -10003,14 +10003,14 @@ ] }, { - "id": 2583, + "id": 2585, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2584, + "id": 2586, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -10018,14 +10018,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5700, + "line": 5719, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2586, + "id": 2588, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10033,14 +10033,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5702, + "line": 5721, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2585, + "id": 2587, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10048,14 +10048,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5701, + "line": 5720, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2587, + "id": 2589, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10063,7 +10063,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5703, + "line": 5722, "character": 4 } ], @@ -10075,23 +10075,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2584, 2586, - 2585, - 2587 + 2588, + 2587, + 2589 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5699, + "line": 5718, "character": 12 } ] }, { - "id": 2852, + "id": 2854, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -10107,7 +10107,7 @@ }, "children": [ { - "id": 2853, + "id": 2855, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -10130,7 +10130,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2853 + 2855 ] } ], @@ -10164,7 +10164,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1627, + "line": 1645, "character": 4 } ], @@ -10182,7 +10182,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1647, + "line": 1665, "character": 4 } ], @@ -10200,7 +10200,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1643, + "line": 1661, "character": 4 } ], @@ -10218,7 +10218,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1635, + "line": 1653, "character": 4 } ], @@ -10236,7 +10236,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1639, + "line": 1657, "character": 4 } ], @@ -10254,7 +10254,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1623, + "line": 1641, "character": 4 } ], @@ -10272,7 +10272,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1631, + "line": 1649, "character": 4 } ], @@ -10290,7 +10290,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1599, + "line": 1617, "character": 4 } ], @@ -10308,7 +10308,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1619, + "line": 1637, "character": 4 } ], @@ -10326,7 +10326,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1615, + "line": 1633, "character": 4 } ], @@ -10344,7 +10344,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1651, + "line": 1669, "character": 4 } ], @@ -10362,7 +10362,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1611, + "line": 1629, "character": 4 } ], @@ -10380,7 +10380,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1607, + "line": 1625, "character": 4 } ], @@ -10398,7 +10398,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1603, + "line": 1621, "character": 4 } ], @@ -10416,7 +10416,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1655, + "line": 1673, "character": 4 } ], @@ -10449,20 +10449,20 @@ "sources": [ { "fileName": "types.ts", - "line": 1595, + "line": 1613, "character": 12 } ] }, { - "id": 2883, + "id": 2885, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2888, + "id": 2890, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -10477,7 +10477,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2887, + "id": 2889, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -10492,7 +10492,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2886, + "id": 2888, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -10507,7 +10507,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2889, + "id": 2891, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -10522,7 +10522,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2884, + "id": 2886, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -10537,7 +10537,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2885, + "id": 2887, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -10557,12 +10557,12 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2890, + 2889, 2888, - 2887, + 2891, 2886, - 2889, - 2884, - 2885 + 2887 ] } ], @@ -10682,7 +10682,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2860, + "id": 2862, "name": "VizPoint" } } @@ -11870,7 +11870,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2612, + "id": 2614, "name": "DOMSelector" } }, @@ -11882,7 +11882,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2501, + "id": 2502, "name": "AppViewConfig" } } @@ -11914,7 +11914,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 998, + "line": 1005, "character": 11 } ], @@ -12031,7 +12031,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 867, + "line": 874, "character": 11 } ], @@ -12368,7 +12368,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 972, + "line": 979, "character": 11 } ], @@ -12493,7 +12493,7 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2618, "name": "MessageCallback" } } @@ -12572,7 +12572,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2616, + "id": 2618, "name": "MessageCallback" } }, @@ -12584,7 +12584,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2613, + "id": 2615, "name": "MessageOptions" }, "defaultValue": "..." @@ -12744,7 +12744,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1027, + "line": 1034, "character": 17 } ], @@ -13026,7 +13026,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2885, "name": "UIPassthroughEvent" } } @@ -14259,7 +14259,7 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2618, "name": "MessageCallback" } } @@ -14343,7 +14343,7 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2618, "name": "MessageCallback" } }, @@ -14358,7 +14358,7 @@ }, "type": { "type": "reference", - "id": 2613, + "id": 2615, "name": "MessageOptions" }, "defaultValue": "..." @@ -14824,7 +14824,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2885, "name": "UIPassthroughEvent" } } @@ -14990,7 +14990,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2612, + "id": 2614, "name": "DOMSelector" } }, @@ -15034,7 +15034,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 759, + "line": 766, "character": 11 } ], @@ -15188,7 +15188,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 818, + "line": 825, "character": 11 } ], @@ -15489,7 +15489,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 799, + "line": 806, "character": 11 } ], @@ -15604,7 +15604,7 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2618, "name": "MessageCallback" } } @@ -15683,7 +15683,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2616, + "id": 2618, "name": "MessageCallback" } }, @@ -15695,7 +15695,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2613, + "id": 2615, "name": "MessageOptions" }, "defaultValue": "..." @@ -15855,7 +15855,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 788, + "line": 795, "character": 17 } ], @@ -15994,7 +15994,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 741, + "line": 748, "character": 11 } ], @@ -16137,7 +16137,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2885, "name": "UIPassthroughEvent" } } @@ -16302,7 +16302,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2612, + "id": 2614, "name": "DOMSelector" } }, @@ -16314,7 +16314,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2454, + "id": 2455, "name": "SageViewConfig" } } @@ -16848,7 +16848,7 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2618, "name": "MessageCallback" } } @@ -16927,7 +16927,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2616, + "id": 2618, "name": "MessageCallback" } }, @@ -16939,7 +16939,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2613, + "id": 2615, "name": "MessageOptions" }, "defaultValue": "..." @@ -17382,7 +17382,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2885, "name": "UIPassthroughEvent" } } @@ -18058,7 +18058,7 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2618, "name": "MessageCallback" } } @@ -18140,7 +18140,7 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2618, "name": "MessageCallback" } }, @@ -18155,7 +18155,7 @@ }, "type": { "type": "reference", - "id": 2613, + "id": 2615, "name": "MessageOptions" }, "defaultValue": "..." @@ -18610,7 +18610,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2885, "name": "UIPassthroughEvent" } } @@ -18769,7 +18769,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2612, + "id": 2614, "name": "DOMSelector" } }, @@ -19314,7 +19314,7 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2618, "name": "MessageCallback" } } @@ -19396,7 +19396,7 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2618, "name": "MessageCallback" } }, @@ -19411,7 +19411,7 @@ }, "type": { "type": "reference", - "id": 2613, + "id": 2615, "name": "MessageOptions" }, "defaultValue": "..." @@ -19866,7 +19866,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2885, "name": "UIPassthroughEvent" } } @@ -21048,7 +21048,7 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2618, "name": "MessageCallback" } } @@ -21130,7 +21130,7 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2618, "name": "MessageCallback" } }, @@ -21145,7 +21145,7 @@ }, "type": { "type": "reference", - "id": 2613, + "id": 2615, "name": "MessageOptions" }, "defaultValue": "..." @@ -21597,7 +21597,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2885, "name": "UIPassthroughEvent" } } @@ -21719,7 +21719,7 @@ ] }, { - "id": 2501, + "id": 2502, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -21735,7 +21735,7 @@ }, "children": [ { - "id": 2539, + "id": 2540, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -21766,20 +21766,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2540, + "id": 2541, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2541, + "id": 2542, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2542, + "id": 2543, "name": "key", "kind": 32768, "flags": {}, @@ -21815,7 +21815,7 @@ } }, { - "id": 2563, + "id": 2564, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -21857,7 +21857,7 @@ } }, { - "id": 2521, + "id": 2522, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -21894,7 +21894,7 @@ } }, { - "id": 2560, + "id": 2561, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -21933,7 +21933,7 @@ } }, { - "id": 2580, + "id": 2581, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -21971,7 +21971,7 @@ } }, { - "id": 2557, + "id": 2558, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -22012,7 +22012,7 @@ } }, { - "id": 2543, + "id": 2544, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -22041,7 +22041,7 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2631, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -22050,7 +22050,7 @@ } }, { - "id": 2522, + "id": 2523, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -22084,12 +22084,12 @@ ], "type": { "type": "reference", - "id": 2896, + "id": 2898, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2564, + "id": 2565, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -22131,7 +22131,7 @@ } }, { - "id": 2504, + "id": 2505, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -22169,7 +22169,7 @@ } }, { - "id": 2551, + "id": 2552, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -22207,7 +22207,7 @@ } }, { - "id": 2535, + "id": 2536, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -22245,7 +22245,7 @@ } }, { - "id": 2534, + "id": 2535, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -22287,7 +22287,7 @@ } }, { - "id": 2520, + "id": 2521, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -22325,7 +22325,7 @@ } }, { - "id": 2547, + "id": 2548, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -22366,7 +22366,7 @@ } }, { - "id": 2574, + "id": 2575, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -22408,7 +22408,7 @@ } }, { - "id": 2579, + "id": 2580, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -22450,7 +22450,7 @@ } }, { - "id": 2565, + "id": 2566, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -22492,7 +22492,7 @@ } }, { - "id": 2505, + "id": 2506, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -22528,7 +22528,7 @@ } }, { - "id": 2517, + "id": 2518, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -22566,7 +22566,7 @@ } }, { - "id": 2548, + "id": 2549, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -22604,7 +22604,7 @@ } }, { - "id": 2561, + "id": 2562, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -22642,7 +22642,7 @@ } }, { - "id": 2562, + "id": 2563, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -22680,7 +22680,7 @@ } }, { - "id": 2550, + "id": 2551, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -22717,7 +22717,7 @@ } }, { - "id": 2531, + "id": 2532, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -22747,7 +22747,7 @@ ], "type": { "type": "reference", - "id": 2588, + "id": 2590, "name": "FrameParams" }, "inheritedFrom": { @@ -22756,7 +22756,7 @@ } }, { - "id": 2518, + "id": 2519, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -22790,7 +22790,7 @@ } }, { - "id": 2536, + "id": 2537, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -22836,7 +22836,7 @@ } }, { - "id": 2569, + "id": 2570, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -22868,7 +22868,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2594, + "id": 2596, "name": "HomeLeftNavItem" } }, @@ -22878,7 +22878,7 @@ } }, { - "id": 2567, + "id": 2568, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -22910,7 +22910,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2605, + "id": 2607, "name": "HomepageModule" } }, @@ -22920,7 +22920,7 @@ } }, { - "id": 2566, + "id": 2567, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -22952,7 +22952,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2890, + "id": 2892, "name": "ListPageColumns" } }, @@ -22962,7 +22962,7 @@ } }, { - "id": 2509, + "id": 2510, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -23000,7 +23000,7 @@ } }, { - "id": 2506, + "id": 2507, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -23038,7 +23038,7 @@ } }, { - "id": 2503, + "id": 2504, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -23076,7 +23076,7 @@ } }, { - "id": 2577, + "id": 2578, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -23118,7 +23118,7 @@ } }, { - "id": 2570, + "id": 2571, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -23160,7 +23160,7 @@ } }, { - "id": 2508, + "id": 2509, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -23198,7 +23198,7 @@ } }, { - "id": 2507, + "id": 2508, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -23236,7 +23236,7 @@ } }, { - "id": 2515, + "id": 2516, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -23273,7 +23273,7 @@ } }, { - "id": 2510, + "id": 2511, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -23311,7 +23311,7 @@ } }, { - "id": 2514, + "id": 2515, "name": "hideTagFilterChips", "kind": 1024, "kindString": "Property", @@ -23345,7 +23345,7 @@ } }, { - "id": 2524, + "id": 2525, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -23371,12 +23371,12 @@ ], "type": { "type": "reference", - "id": 2848, + "id": 2850, "name": "HomePageSearchBarMode" } }, { - "id": 2544, + "id": 2545, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -23414,7 +23414,45 @@ } }, { - "id": 2582, + "id": 2583, + "name": "isCentralizedLiveboardFilterUXEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag is used to enable or disable the new centralized Liveboard filter UX (v2).\nWhen enabled, a unified modal is used to manage and update multiple filters at once,\nreplacing the older individual filter interactions.\nTo enable this feature on your instance, contact ThoughtSpot Support.", + "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.42.0 | ThoughtSpot: 10.15.0.cl" + }, + { + "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 isCentralizedLiveboardFilterUXEnabled: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1532, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "AllEmbedViewConfig.isCentralizedLiveboardFilterUXEnabled" + } + }, + { + "id": 2584, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -23438,7 +23476,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1529, + "line": 1547, "character": 4 } ], @@ -23452,7 +23490,7 @@ } }, { - "id": 2575, + "id": 2576, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -23494,7 +23532,7 @@ } }, { - "id": 2573, + "id": 2574, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -23532,7 +23570,7 @@ } }, { - "id": 2526, + "id": 2527, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -23566,7 +23604,7 @@ } }, { - "id": 2523, + "id": 2524, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -23595,7 +23633,7 @@ } }, { - "id": 2527, + "id": 2528, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -23629,7 +23667,7 @@ } }, { - "id": 2525, + "id": 2526, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -23667,7 +23705,7 @@ } }, { - "id": 2528, + "id": 2529, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -23704,7 +23742,7 @@ } }, { - "id": 2529, + "id": 2530, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -23738,7 +23776,7 @@ } }, { - "id": 2553, + "id": 2554, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -23776,7 +23814,7 @@ } }, { - "id": 2581, + "id": 2582, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -23814,7 +23852,7 @@ } }, { - "id": 2538, + "id": 2539, "name": "locale", "kind": 1024, "kindString": "Property", @@ -23852,7 +23890,7 @@ } }, { - "id": 2519, + "id": 2520, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -23890,7 +23928,7 @@ } }, { - "id": 2552, + "id": 2553, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -23928,7 +23966,7 @@ } }, { - "id": 2512, + "id": 2513, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -23963,7 +24001,7 @@ } }, { - "id": 2511, + "id": 2512, "name": "path", "kind": 1024, "kindString": "Property", @@ -23997,7 +24035,7 @@ } }, { - "id": 2546, + "id": 2547, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -24035,7 +24073,7 @@ } }, { - "id": 2554, + "id": 2555, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -24073,7 +24111,7 @@ } }, { - "id": 2568, + "id": 2569, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -24105,7 +24143,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2605, + "id": 2607, "name": "HomepageModule" } }, @@ -24115,7 +24153,7 @@ } }, { - "id": 2558, + "id": 2559, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -24157,7 +24195,7 @@ } }, { - "id": 2559, + "id": 2560, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -24189,7 +24227,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2824, "name": "RuntimeParameter" } }, @@ -24199,7 +24237,7 @@ } }, { - "id": 2556, + "id": 2557, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -24236,7 +24274,7 @@ } }, { - "id": 2572, + "id": 2573, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -24278,7 +24316,7 @@ } }, { - "id": 2578, + "id": 2579, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -24320,7 +24358,7 @@ } }, { - "id": 2571, + "id": 2572, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -24362,7 +24400,7 @@ } }, { - "id": 2576, + "id": 2577, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -24404,7 +24442,7 @@ } }, { - "id": 2502, + "id": 2503, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -24442,7 +24480,7 @@ } }, { - "id": 2513, + "id": 2514, "name": "tag", "kind": 1024, "kindString": "Property", @@ -24476,7 +24514,7 @@ } }, { - "id": 2537, + "id": 2538, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -24527,77 +24565,78 @@ "title": "Properties", "kind": 1024, "children": [ - 2539, - 2563, - 2521, - 2560, - 2580, - 2557, - 2543, - 2522, + 2540, 2564, - 2504, - 2551, - 2535, - 2534, - 2520, - 2547, - 2574, - 2579, + 2522, + 2561, + 2581, + 2558, + 2544, + 2523, 2565, 2505, - 2517, - 2548, - 2561, - 2562, - 2550, - 2531, - 2518, + 2552, 2536, - 2569, - 2567, + 2535, + 2521, + 2548, + 2575, + 2580, 2566, - 2509, 2506, - 2503, - 2577, + 2518, + 2549, + 2562, + 2563, + 2551, + 2532, + 2519, + 2537, 2570, - 2508, + 2568, + 2567, + 2510, 2507, + 2504, + 2578, + 2571, + 2509, + 2508, + 2516, + 2511, 2515, - 2510, - 2514, - 2524, - 2544, - 2582, - 2575, - 2573, - 2526, - 2523, - 2527, 2525, + 2545, + 2583, + 2584, + 2576, + 2574, + 2527, + 2524, 2528, + 2526, 2529, + 2530, + 2554, + 2582, + 2539, + 2520, 2553, - 2581, - 2538, - 2519, - 2552, + 2513, 2512, - 2511, - 2546, - 2554, - 2568, - 2558, + 2547, + 2555, + 2569, 2559, - 2556, + 2560, + 2557, + 2573, + 2579, 2572, - 2578, - 2571, - 2576, - 2502, - 2513, - 2537 + 2577, + 2503, + 2514, + 2538 ] } ], @@ -25496,7 +25535,7 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2631, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -25776,7 +25815,7 @@ ], "type": { "type": "reference", - "id": 2588, + "id": 2590, "name": "FrameParams" }, "inheritedFrom": { @@ -26354,7 +26393,7 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2631, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -26837,7 +26876,7 @@ ], "type": { "type": "reference", - "id": 2588, + "id": 2590, "name": "FrameParams" }, "inheritedFrom": { @@ -27242,7 +27281,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2824, "name": "RuntimeParameter" } }, @@ -27485,7 +27524,7 @@ ] }, { - "id": 2863, + "id": 2865, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -27500,7 +27539,7 @@ }, "children": [ { - "id": 2864, + "id": 2866, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -27510,21 +27549,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5744, + "line": 5763, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2865, + "id": 2867, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2866, + "id": 2868, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -27532,18 +27571,18 @@ "sources": [ { "fileName": "types.ts", - "line": 5745, + "line": 5764, "character": 8 } ], "type": { "type": "reference", - "id": 2860, + "id": 2862, "name": "VizPoint" } }, { - "id": 2867, + "id": 2869, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -27551,7 +27590,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5746, + "line": 5765, "character": 8 } ], @@ -27559,7 +27598,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2860, + "id": 2862, "name": "VizPoint" } } @@ -27570,8 +27609,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2866, - 2867 + 2868, + 2869 ] } ] @@ -27579,7 +27618,7 @@ } }, { - "id": 2868, + "id": 2870, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -27587,21 +27626,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5748, + "line": 5767, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2869, + "id": 2871, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2877, + "id": 2879, "name": "columns", "kind": 1024, "kindString": "Property", @@ -27609,7 +27648,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5756, + "line": 5775, "character": 8 } ], @@ -27622,7 +27661,7 @@ } }, { - "id": 2878, + "id": 2880, "name": "data", "kind": 1024, "kindString": "Property", @@ -27630,7 +27669,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5757, + "line": 5776, "character": 8 } ], @@ -27643,7 +27682,7 @@ } }, { - "id": 2871, + "id": 2873, "name": "id", "kind": 1024, "kindString": "Property", @@ -27651,7 +27690,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5750, + "line": 5769, "character": 8 } ], @@ -27661,7 +27700,7 @@ } }, { - "id": 2870, + "id": 2872, "name": "name", "kind": 1024, "kindString": "Property", @@ -27669,7 +27708,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5749, + "line": 5768, "character": 8 } ], @@ -27679,7 +27718,7 @@ } }, { - "id": 2872, + "id": 2874, "name": "sources", "kind": 1024, "kindString": "Property", @@ -27687,21 +27726,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5751, + "line": 5770, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2873, + "id": 2875, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2874, + "id": 2876, "name": "header", "kind": 1024, "kindString": "Property", @@ -27709,21 +27748,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5752, + "line": 5771, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2875, + "id": 2877, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2876, + "id": 2878, "name": "guid", "kind": 1024, "kindString": "Property", @@ -27731,7 +27770,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5753, + "line": 5772, "character": 16 } ], @@ -27746,7 +27785,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2876 + 2878 ] } ] @@ -27759,7 +27798,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2874 + 2876 ] } ] @@ -27772,23 +27811,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2877, - 2878, - 2871, - 2870, - 2872 + 2879, + 2880, + 2873, + 2872, + 2874 ] } ], "indexSignature": { - "id": 2879, + "id": 2881, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2880, + "id": 2882, "name": "key", "kind": 32768, "flags": {}, @@ -27807,7 +27846,7 @@ } }, { - "id": 2881, + "id": 2883, "name": "session", "kind": 1024, "kindString": "Property", @@ -27815,7 +27854,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5760, + "line": 5779, "character": 4 } ], @@ -27826,7 +27865,7 @@ } }, { - "id": 2882, + "id": 2884, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -27836,7 +27875,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5761, + "line": 5780, "character": 4 } ], @@ -27851,23 +27890,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2864, - 2868, - 2881, - 2882 + 2866, + 2870, + 2883, + 2884 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5743, + "line": 5762, "character": 17 } ] }, { - "id": 2651, + "id": 2653, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -27877,7 +27916,7 @@ }, "children": [ { - "id": 2705, + "id": 2707, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -27900,7 +27939,7 @@ } }, { - "id": 2704, + "id": 2706, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -27923,7 +27962,7 @@ } }, { - "id": 2674, + "id": 2676, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -27946,7 +27985,7 @@ } }, { - "id": 2675, + "id": 2677, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -27969,7 +28008,7 @@ } }, { - "id": 2677, + "id": 2679, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -27992,7 +28031,7 @@ } }, { - "id": 2676, + "id": 2678, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -28015,7 +28054,7 @@ } }, { - "id": 2656, + "id": 2658, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -28038,7 +28077,7 @@ } }, { - "id": 2717, + "id": 2719, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -28061,7 +28100,7 @@ } }, { - "id": 2718, + "id": 2720, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -28084,7 +28123,7 @@ } }, { - "id": 2715, + "id": 2717, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -28107,7 +28146,7 @@ } }, { - "id": 2716, + "id": 2718, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -28130,7 +28169,7 @@ } }, { - "id": 2679, + "id": 2681, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -28153,7 +28192,7 @@ } }, { - "id": 2684, + "id": 2686, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -28176,7 +28215,7 @@ } }, { - "id": 2681, + "id": 2683, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -28199,7 +28238,7 @@ } }, { - "id": 2683, + "id": 2685, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -28222,7 +28261,7 @@ } }, { - "id": 2682, + "id": 2684, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -28245,7 +28284,7 @@ } }, { - "id": 2680, + "id": 2682, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -28268,7 +28307,7 @@ } }, { - "id": 2689, + "id": 2691, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -28291,7 +28330,7 @@ } }, { - "id": 2686, + "id": 2688, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -28314,7 +28353,7 @@ } }, { - "id": 2688, + "id": 2690, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -28337,7 +28376,7 @@ } }, { - "id": 2687, + "id": 2689, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -28360,7 +28399,7 @@ } }, { - "id": 2685, + "id": 2687, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -28383,7 +28422,7 @@ } }, { - "id": 2693, + "id": 2695, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -28406,7 +28445,7 @@ } }, { - "id": 2692, + "id": 2694, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -28429,7 +28468,7 @@ } }, { - "id": 2691, + "id": 2693, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -28452,7 +28491,7 @@ } }, { - "id": 2690, + "id": 2692, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -28475,7 +28514,7 @@ } }, { - "id": 2678, + "id": 2680, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -28498,7 +28537,7 @@ } }, { - "id": 2821, + "id": 2823, "name": "--ts-var-cca-modal-summary-header-background", "kind": 1024, "kindString": "Property", @@ -28521,7 +28560,7 @@ } }, { - "id": 2816, + "id": 2818, "name": "--ts-var-change-analysis-insights-background", "kind": 1024, "kindString": "Property", @@ -28544,7 +28583,7 @@ } }, { - "id": 2811, + "id": 2813, "name": "--ts-var-chart-heatmap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28567,7 +28606,7 @@ } }, { - "id": 2810, + "id": 2812, "name": "--ts-var-chart-heatmap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28590,7 +28629,7 @@ } }, { - "id": 2813, + "id": 2815, "name": "--ts-var-chart-treemap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28613,7 +28652,7 @@ } }, { - "id": 2812, + "id": 2814, "name": "--ts-var-chart-treemap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28636,7 +28675,7 @@ } }, { - "id": 2740, + "id": 2742, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -28659,7 +28698,7 @@ } }, { - "id": 2743, + "id": 2745, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -28682,7 +28721,7 @@ } }, { - "id": 2738, + "id": 2740, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -28705,7 +28744,7 @@ } }, { - "id": 2741, + "id": 2743, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -28728,7 +28767,7 @@ } }, { - "id": 2742, + "id": 2744, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -28751,7 +28790,7 @@ } }, { - "id": 2737, + "id": 2739, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -28774,7 +28813,7 @@ } }, { - "id": 2739, + "id": 2741, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -28797,7 +28836,7 @@ } }, { - "id": 2710, + "id": 2712, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -28820,7 +28859,7 @@ } }, { - "id": 2709, + "id": 2711, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -28843,7 +28882,7 @@ } }, { - "id": 2712, + "id": 2714, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -28866,7 +28905,7 @@ } }, { - "id": 2711, + "id": 2713, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -28889,7 +28928,7 @@ } }, { - "id": 2708, + "id": 2710, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -28912,7 +28951,7 @@ } }, { - "id": 2706, + "id": 2708, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -28935,7 +28974,7 @@ } }, { - "id": 2707, + "id": 2709, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -28958,7 +28997,7 @@ } }, { - "id": 2713, + "id": 2715, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -28981,7 +29020,7 @@ } }, { - "id": 2714, + "id": 2716, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -29004,7 +29043,7 @@ } }, { - "id": 2725, + "id": 2727, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -29027,7 +29066,7 @@ } }, { - "id": 2726, + "id": 2728, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -29050,7 +29089,7 @@ } }, { - "id": 2729, + "id": 2731, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -29073,7 +29112,7 @@ } }, { - "id": 2727, + "id": 2729, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -29096,7 +29135,7 @@ } }, { - "id": 2728, + "id": 2730, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -29119,7 +29158,7 @@ } }, { - "id": 2736, + "id": 2738, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -29142,7 +29181,7 @@ } }, { - "id": 2735, + "id": 2737, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -29165,7 +29204,7 @@ } }, { - "id": 2734, + "id": 2736, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -29188,7 +29227,7 @@ } }, { - "id": 2733, + "id": 2735, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -29211,7 +29250,7 @@ } }, { - "id": 2809, + "id": 2811, "name": "--ts-var-kpi-analyze-text-color", "kind": 1024, "kindString": "Property", @@ -29234,7 +29273,7 @@ } }, { - "id": 2808, + "id": 2810, "name": "--ts-var-kpi-comparison-color", "kind": 1024, "kindString": "Property", @@ -29257,7 +29296,7 @@ } }, { - "id": 2807, + "id": 2809, "name": "--ts-var-kpi-hero-color", "kind": 1024, "kindString": "Property", @@ -29280,7 +29319,7 @@ } }, { - "id": 2815, + "id": 2817, "name": "--ts-var-kpi-negative-change-color", "kind": 1024, "kindString": "Property", @@ -29303,7 +29342,7 @@ } }, { - "id": 2814, + "id": 2816, "name": "--ts-var-kpi-positive-change-color", "kind": 1024, "kindString": "Property", @@ -29326,7 +29365,7 @@ } }, { - "id": 2731, + "id": 2733, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -29349,7 +29388,7 @@ } }, { - "id": 2730, + "id": 2732, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -29372,7 +29411,7 @@ } }, { - "id": 2766, + "id": 2768, "name": "--ts-var-liveboard-answer-viz-padding", "kind": 1024, "kindString": "Property", @@ -29395,7 +29434,7 @@ } }, { - "id": 2779, + "id": 2781, "name": "--ts-var-liveboard-chip--active-background", "kind": 1024, "kindString": "Property", @@ -29419,7 +29458,7 @@ } }, { - "id": 2778, + "id": 2780, "name": "--ts-var-liveboard-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -29443,7 +29482,7 @@ } }, { - "id": 2776, + "id": 2778, "name": "--ts-var-liveboard-chip-background", "kind": 1024, "kindString": "Property", @@ -29467,7 +29506,7 @@ } }, { - "id": 2777, + "id": 2779, "name": "--ts-var-liveboard-chip-color", "kind": 1024, "kindString": "Property", @@ -29491,7 +29530,7 @@ } }, { - "id": 2784, + "id": 2786, "name": "--ts-var-liveboard-cross-filter-layout-background", "kind": 1024, "kindString": "Property", @@ -29514,7 +29553,7 @@ } }, { - "id": 2782, + "id": 2784, "name": "--ts-var-liveboard-dual-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -29537,7 +29576,7 @@ } }, { - "id": 2781, + "id": 2783, "name": "--ts-var-liveboard-edit-bar-background", "kind": 1024, "kindString": "Property", @@ -29560,7 +29599,7 @@ } }, { - "id": 2767, + "id": 2769, "name": "--ts-var-liveboard-group-background", "kind": 1024, "kindString": "Property", @@ -29584,7 +29623,7 @@ } }, { - "id": 2768, + "id": 2770, "name": "--ts-var-liveboard-group-border-color", "kind": 1024, "kindString": "Property", @@ -29608,7 +29647,7 @@ } }, { - "id": 2772, + "id": 2774, "name": "--ts-var-liveboard-group-description-font-color", "kind": 1024, "kindString": "Property", @@ -29632,7 +29671,7 @@ } }, { - "id": 2762, + "id": 2764, "name": "--ts-var-liveboard-group-description-font-size", "kind": 1024, "kindString": "Property", @@ -29656,7 +29695,7 @@ } }, { - "id": 2763, + "id": 2765, "name": "--ts-var-liveboard-group-description-font-weight", "kind": 1024, "kindString": "Property", @@ -29680,7 +29719,7 @@ } }, { - "id": 2756, + "id": 2758, "name": "--ts-var-liveboard-group-padding", "kind": 1024, "kindString": "Property", @@ -29704,7 +29743,7 @@ } }, { - "id": 2775, + "id": 2777, "name": "--ts-var-liveboard-group-tile-background", "kind": 1024, "kindString": "Property", @@ -29728,7 +29767,7 @@ } }, { - "id": 2764, + "id": 2766, "name": "--ts-var-liveboard-group-tile-border", "kind": 1024, "kindString": "Property", @@ -29752,7 +29791,7 @@ } }, { - "id": 2774, + "id": 2776, "name": "--ts-var-liveboard-group-tile-description-font-color", "kind": 1024, "kindString": "Property", @@ -29776,7 +29815,7 @@ } }, { - "id": 2765, + "id": 2767, "name": "--ts-var-liveboard-group-tile-padding", "kind": 1024, "kindString": "Property", @@ -29800,7 +29839,7 @@ } }, { - "id": 2773, + "id": 2775, "name": "--ts-var-liveboard-group-tile-title-font-color", "kind": 1024, "kindString": "Property", @@ -29824,7 +29863,7 @@ } }, { - "id": 2760, + "id": 2762, "name": "--ts-var-liveboard-group-tile-title-font-size", "kind": 1024, "kindString": "Property", @@ -29848,7 +29887,7 @@ } }, { - "id": 2761, + "id": 2763, "name": "--ts-var-liveboard-group-tile-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29872,7 +29911,7 @@ } }, { - "id": 2771, + "id": 2773, "name": "--ts-var-liveboard-group-title-font-color", "kind": 1024, "kindString": "Property", @@ -29896,7 +29935,7 @@ } }, { - "id": 2758, + "id": 2760, "name": "--ts-var-liveboard-group-title-font-size", "kind": 1024, "kindString": "Property", @@ -29920,7 +29959,7 @@ } }, { - "id": 2759, + "id": 2761, "name": "--ts-var-liveboard-group-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29944,7 +29983,7 @@ } }, { - "id": 2757, + "id": 2759, "name": "--ts-var-liveboard-group-title-padding", "kind": 1024, "kindString": "Property", @@ -29968,7 +30007,7 @@ } }, { - "id": 2800, + "id": 2802, "name": "--ts-var-liveboard-header-action-button-active-color", "kind": 1024, "kindString": "Property", @@ -29991,7 +30030,7 @@ } }, { - "id": 2797, + "id": 2799, "name": "--ts-var-liveboard-header-action-button-background", "kind": 1024, "kindString": "Property", @@ -30014,7 +30053,7 @@ } }, { - "id": 2798, + "id": 2800, "name": "--ts-var-liveboard-header-action-button-font-color", "kind": 1024, "kindString": "Property", @@ -30037,7 +30076,7 @@ } }, { - "id": 2799, + "id": 2801, "name": "--ts-var-liveboard-header-action-button-hover-color", "kind": 1024, "kindString": "Property", @@ -30060,7 +30099,7 @@ } }, { - "id": 2748, + "id": 2750, "name": "--ts-var-liveboard-header-background", "kind": 1024, "kindString": "Property", @@ -30083,7 +30122,7 @@ } }, { - "id": 2806, + "id": 2808, "name": "--ts-var-liveboard-header-badge-active-color", "kind": 1024, "kindString": "Property", @@ -30106,7 +30145,7 @@ } }, { - "id": 2801, + "id": 2803, "name": "--ts-var-liveboard-header-badge-background", "kind": 1024, "kindString": "Property", @@ -30129,7 +30168,7 @@ } }, { - "id": 2802, + "id": 2804, "name": "--ts-var-liveboard-header-badge-font-color", "kind": 1024, "kindString": "Property", @@ -30152,7 +30191,7 @@ } }, { - "id": 2805, + "id": 2807, "name": "--ts-var-liveboard-header-badge-hover-color", "kind": 1024, "kindString": "Property", @@ -30175,7 +30214,7 @@ } }, { - "id": 2803, + "id": 2805, "name": "--ts-var-liveboard-header-badge-modified-background", "kind": 1024, "kindString": "Property", @@ -30198,7 +30237,7 @@ } }, { - "id": 2804, + "id": 2806, "name": "--ts-var-liveboard-header-badge-modified-font-color", "kind": 1024, "kindString": "Property", @@ -30221,7 +30260,7 @@ } }, { - "id": 2750, + "id": 2752, "name": "--ts-var-liveboard-header-font-color", "kind": 1024, "kindString": "Property", @@ -30244,7 +30283,7 @@ } }, { - "id": 2749, + "id": 2751, "name": "--ts-var-liveboard-header-fontsize", "kind": 1024, "kindString": "Property", @@ -30267,7 +30306,7 @@ } }, { - "id": 2745, + "id": 2747, "name": "--ts-var-liveboard-layout-background", "kind": 1024, "kindString": "Property", @@ -30290,7 +30329,7 @@ } }, { - "id": 2746, + "id": 2748, "name": "--ts-var-liveboard-layout-title-color", "kind": 1024, "kindString": "Property", @@ -30313,7 +30352,7 @@ } }, { - "id": 2747, + "id": 2749, "name": "--ts-var-liveboard-layout-title-fontsize", "kind": 1024, "kindString": "Property", @@ -30336,7 +30375,7 @@ } }, { - "id": 2770, + "id": 2772, "name": "--ts-var-liveboard-notetitle-body-font-color", "kind": 1024, "kindString": "Property", @@ -30359,7 +30398,7 @@ } }, { - "id": 2769, + "id": 2771, "name": "--ts-var-liveboard-notetitle-heading-font-color", "kind": 1024, "kindString": "Property", @@ -30382,7 +30421,7 @@ } }, { - "id": 2783, + "id": 2785, "name": "--ts-var-liveboard-single-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -30405,7 +30444,7 @@ } }, { - "id": 2785, + "id": 2787, "name": "--ts-var-liveboard-tab-active-border-color", "kind": 1024, "kindString": "Property", @@ -30428,7 +30467,7 @@ } }, { - "id": 2786, + "id": 2788, "name": "--ts-var-liveboard-tab-hover-color", "kind": 1024, "kindString": "Property", @@ -30451,7 +30490,7 @@ } }, { - "id": 2752, + "id": 2754, "name": "--ts-var-liveboard-tile-background", "kind": 1024, "kindString": "Property", @@ -30474,7 +30513,7 @@ } }, { - "id": 2751, + "id": 2753, "name": "--ts-var-liveboard-tile-border-color", "kind": 1024, "kindString": "Property", @@ -30497,7 +30536,7 @@ } }, { - "id": 2753, + "id": 2755, "name": "--ts-var-liveboard-tile-border-radius", "kind": 1024, "kindString": "Property", @@ -30520,7 +30559,7 @@ } }, { - "id": 2789, + "id": 2791, "name": "--ts-var-liveboard-tile-description-font-weight", "kind": 1024, "kindString": "Property", @@ -30543,7 +30582,7 @@ } }, { - "id": 2790, + "id": 2792, "name": "--ts-var-liveboard-tile-description-opacity", "kind": 1024, "kindString": "Property", @@ -30566,7 +30605,7 @@ } }, { - "id": 2754, + "id": 2756, "name": "--ts-var-liveboard-tile-padding", "kind": 1024, "kindString": "Property", @@ -30589,7 +30628,7 @@ } }, { - "id": 2755, + "id": 2757, "name": "--ts-var-liveboard-tile-table-header-background", "kind": 1024, "kindString": "Property", @@ -30612,7 +30651,7 @@ } }, { - "id": 2787, + "id": 2789, "name": "--ts-var-liveboard-tile-title-fontsize", "kind": 1024, "kindString": "Property", @@ -30635,7 +30674,7 @@ } }, { - "id": 2788, + "id": 2790, "name": "--ts-var-liveboard-tile-title-fontweight", "kind": 1024, "kindString": "Property", @@ -30658,7 +30697,7 @@ } }, { - "id": 2723, + "id": 2725, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -30681,7 +30720,7 @@ } }, { - "id": 2720, + "id": 2722, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -30704,7 +30743,7 @@ } }, { - "id": 2719, + "id": 2721, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -30727,7 +30766,7 @@ } }, { - "id": 2721, + "id": 2723, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -30750,7 +30789,7 @@ } }, { - "id": 2724, + "id": 2726, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -30773,7 +30812,7 @@ } }, { - "id": 2722, + "id": 2724, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -30796,7 +30835,7 @@ } }, { - "id": 2657, + "id": 2659, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -30819,7 +30858,7 @@ } }, { - "id": 2658, + "id": 2660, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -30842,7 +30881,7 @@ } }, { - "id": 2795, + "id": 2797, "name": "--ts-var-parameter-chip-active-background", "kind": 1024, "kindString": "Property", @@ -30865,7 +30904,7 @@ } }, { - "id": 2796, + "id": 2798, "name": "--ts-var-parameter-chip-active-text-color", "kind": 1024, "kindString": "Property", @@ -30888,7 +30927,7 @@ } }, { - "id": 2791, + "id": 2793, "name": "--ts-var-parameter-chip-background", "kind": 1024, "kindString": "Property", @@ -30911,7 +30950,7 @@ } }, { - "id": 2793, + "id": 2795, "name": "--ts-var-parameter-chip-hover-background", "kind": 1024, "kindString": "Property", @@ -30934,7 +30973,7 @@ } }, { - "id": 2794, + "id": 2796, "name": "--ts-var-parameter-chip-hover-text-color", "kind": 1024, "kindString": "Property", @@ -30957,7 +30996,7 @@ } }, { - "id": 2792, + "id": 2794, "name": "--ts-var-parameter-chip-text-color", "kind": 1024, "kindString": "Property", @@ -30980,7 +31019,7 @@ } }, { - "id": 2652, + "id": 2654, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -31003,7 +31042,7 @@ } }, { - "id": 2653, + "id": 2655, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -31026,7 +31065,7 @@ } }, { - "id": 2654, + "id": 2656, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -31049,7 +31088,7 @@ } }, { - "id": 2655, + "id": 2657, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -31072,7 +31111,7 @@ } }, { - "id": 2666, + "id": 2668, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -31095,7 +31134,7 @@ } }, { - "id": 2670, + "id": 2672, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -31118,7 +31157,7 @@ } }, { - "id": 2671, + "id": 2673, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -31141,7 +31180,7 @@ } }, { - "id": 2669, + "id": 2671, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -31164,7 +31203,7 @@ } }, { - "id": 2665, + "id": 2667, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -31187,7 +31226,7 @@ } }, { - "id": 2668, + "id": 2670, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -31210,7 +31249,7 @@ } }, { - "id": 2662, + "id": 2664, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -31233,7 +31272,7 @@ } }, { - "id": 2663, + "id": 2665, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -31256,7 +31295,7 @@ } }, { - "id": 2664, + "id": 2666, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -31279,7 +31318,7 @@ } }, { - "id": 2659, + "id": 2661, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -31302,7 +31341,7 @@ } }, { - "id": 2660, + "id": 2662, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -31325,7 +31364,7 @@ } }, { - "id": 2661, + "id": 2663, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -31348,7 +31387,7 @@ } }, { - "id": 2667, + "id": 2669, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -31371,7 +31410,7 @@ } }, { - "id": 2732, + "id": 2734, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -31394,7 +31433,7 @@ } }, { - "id": 2780, + "id": 2782, "name": "--ts-var-side-panel-width", "kind": 1024, "kindString": "Property", @@ -31417,7 +31456,7 @@ } }, { - "id": 2820, + "id": 2822, "name": "--ts-var-spotiq-analyze-crosscorrelation-card-background", "kind": 1024, "kindString": "Property", @@ -31440,7 +31479,7 @@ } }, { - "id": 2817, + "id": 2819, "name": "--ts-var-spotiq-analyze-forecasting-card-background", "kind": 1024, "kindString": "Property", @@ -31463,7 +31502,7 @@ } }, { - "id": 2818, + "id": 2820, "name": "--ts-var-spotiq-analyze-outlier-card-background", "kind": 1024, "kindString": "Property", @@ -31486,7 +31525,7 @@ } }, { - "id": 2819, + "id": 2821, "name": "--ts-var-spotiq-analyze-trend-card-background", "kind": 1024, "kindString": "Property", @@ -31509,7 +31548,7 @@ } }, { - "id": 2672, + "id": 2674, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -31532,7 +31571,7 @@ } }, { - "id": 2673, + "id": 2675, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -31555,7 +31594,7 @@ } }, { - "id": 2702, + "id": 2704, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -31578,7 +31617,7 @@ } }, { - "id": 2700, + "id": 2702, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -31601,7 +31640,7 @@ } }, { - "id": 2701, + "id": 2703, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -31624,7 +31663,7 @@ } }, { - "id": 2697, + "id": 2699, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -31647,7 +31686,7 @@ } }, { - "id": 2698, + "id": 2700, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -31670,7 +31709,7 @@ } }, { - "id": 2699, + "id": 2701, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -31693,7 +31732,7 @@ } }, { - "id": 2703, + "id": 2705, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -31716,7 +31755,7 @@ } }, { - "id": 2744, + "id": 2746, "name": "--ts-var-viz-tile-height", "kind": 1024, "kindString": "Property", @@ -31739,7 +31778,7 @@ } }, { - "id": 2694, + "id": 2696, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -31762,7 +31801,7 @@ } }, { - "id": 2695, + "id": 2697, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -31785,7 +31824,7 @@ } }, { - "id": 2696, + "id": 2698, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -31813,176 +31852,176 @@ "title": "Properties", "kind": 1024, "children": [ - 2705, - 2704, - 2674, - 2675, - 2677, + 2707, + 2706, 2676, - 2656, + 2677, + 2679, + 2678, + 2658, + 2719, + 2720, 2717, 2718, - 2715, - 2716, - 2679, - 2684, 2681, + 2686, 2683, + 2685, + 2684, 2682, - 2680, - 2689, - 2686, + 2691, 2688, + 2690, + 2689, 2687, - 2685, + 2695, + 2694, 2693, 2692, - 2691, - 2690, - 2678, - 2821, - 2816, - 2811, - 2810, + 2680, + 2823, + 2818, 2813, 2812, + 2815, + 2814, + 2742, + 2745, 2740, 2743, - 2738, - 2741, - 2742, - 2737, + 2744, 2739, - 2710, - 2709, + 2741, 2712, 2711, - 2708, - 2706, - 2707, - 2713, 2714, - 2725, - 2726, - 2729, + 2713, + 2710, + 2708, + 2709, + 2715, + 2716, 2727, 2728, + 2731, + 2729, + 2730, + 2738, + 2737, 2736, 2735, - 2734, - 2733, + 2811, + 2810, 2809, - 2808, - 2807, - 2815, - 2814, - 2731, - 2730, - 2766, - 2779, + 2817, + 2816, + 2733, + 2732, + 2768, + 2781, + 2780, 2778, - 2776, - 2777, + 2779, + 2786, 2784, - 2782, - 2781, + 2783, + 2769, + 2770, + 2774, + 2764, + 2765, + 2758, + 2777, + 2766, + 2776, 2767, - 2768, - 2772, + 2775, 2762, 2763, - 2756, - 2775, - 2764, - 2774, - 2765, 2773, 2760, 2761, - 2771, - 2758, 2759, - 2757, - 2800, - 2797, - 2798, + 2802, 2799, - 2748, - 2806, + 2800, 2801, - 2802, - 2805, + 2750, + 2808, 2803, 2804, - 2750, - 2749, - 2745, - 2746, - 2747, - 2770, - 2769, - 2783, - 2785, - 2786, + 2807, + 2805, + 2806, 2752, 2751, + 2747, + 2748, + 2749, + 2772, + 2771, + 2785, + 2787, + 2788, + 2754, 2753, + 2755, + 2791, + 2792, + 2756, + 2757, 2789, 2790, - 2754, - 2755, - 2787, - 2788, - 2723, - 2720, - 2719, + 2725, + 2722, 2721, + 2723, + 2726, 2724, - 2722, - 2657, - 2658, + 2659, + 2660, + 2797, + 2798, + 2793, 2795, 2796, - 2791, - 2793, 2794, - 2792, - 2652, - 2653, 2654, 2655, - 2666, - 2670, + 2656, + 2657, + 2668, + 2672, + 2673, 2671, - 2669, + 2667, + 2670, + 2664, 2665, - 2668, + 2666, + 2661, 2662, 2663, - 2664, - 2659, - 2660, - 2661, - 2667, - 2732, - 2780, - 2820, - 2817, - 2818, + 2669, + 2734, + 2782, + 2822, 2819, - 2672, - 2673, + 2820, + 2821, + 2674, + 2675, + 2704, 2702, + 2703, + 2699, 2700, 2701, + 2705, + 2746, + 2696, 2697, - 2698, - 2699, - 2703, - 2744, - 2694, - 2695, - 2696 + 2698 ] } ], @@ -31995,7 +32034,7 @@ ] }, { - "id": 2639, + "id": 2641, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -32005,7 +32044,7 @@ }, "children": [ { - "id": 2641, + "id": 2643, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -32021,12 +32060,12 @@ ], "type": { "type": "reference", - "id": 2642, + "id": 2644, "name": "customCssInterface" } }, { - "id": 2640, + "id": 2642, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -32051,8 +32090,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2641, - 2640 + 2643, + 2642 ] } ], @@ -32065,7 +32104,7 @@ ] }, { - "id": 2629, + "id": 2631, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -32081,7 +32120,7 @@ }, "children": [ { - "id": 2631, + "id": 2633, "name": "content", "kind": 1024, "kindString": "Property", @@ -32098,14 +32137,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2632, + "id": 2634, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2634, + "id": 2636, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -32135,7 +32174,7 @@ } }, { - "id": 2635, + "id": 2637, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -32155,7 +32194,7 @@ } }, { - "id": 2633, + "id": 2635, "name": "strings", "kind": 1024, "kindString": "Property", @@ -32198,21 +32237,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2634, - 2635, - 2633 + 2636, + 2637, + 2635 ] } ], "indexSignature": { - "id": 2636, + "id": 2638, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2637, + "id": 2639, "name": "key", "kind": 32768, "flags": {}, @@ -32231,7 +32270,7 @@ } }, { - "id": 2638, + "id": 2640, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -32251,7 +32290,7 @@ } }, { - "id": 2630, + "id": 2632, "name": "style", "kind": 1024, "kindString": "Property", @@ -32267,7 +32306,7 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2641, "name": "CustomStyles" } } @@ -32277,9 +32316,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2631, - 2638, - 2630 + 2633, + 2640, + 2632 ] } ], @@ -32723,7 +32762,7 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2631, "name": "CustomisationsInterface" } }, @@ -33031,7 +33070,7 @@ ], "type": { "type": "reference", - "id": 2825, + "id": 2827, "name": "LogLevel" } }, @@ -33549,7 +33588,7 @@ ] }, { - "id": 2588, + "id": 2590, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -33565,7 +33604,7 @@ }, "children": [ { - "id": 2590, + "id": 2592, "name": "height", "kind": 1024, "kindString": "Property", @@ -33597,7 +33636,7 @@ } }, { - "id": 2591, + "id": 2593, "name": "loading", "kind": 1024, "kindString": "Property", @@ -33633,7 +33672,7 @@ } }, { - "id": 2589, + "id": 2591, "name": "width", "kind": 1024, "kindString": "Property", @@ -33670,9 +33709,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2590, - 2591, - 2589 + 2592, + 2593, + 2591 ] } ], @@ -33684,7 +33723,7 @@ } ], "indexSignature": { - "id": 2592, + "id": 2594, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -33694,7 +33733,7 @@ }, "parameters": [ { - "id": 2593, + "id": 2595, "name": "key", "kind": 32768, "flags": {}, @@ -34047,7 +34086,7 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2631, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -34638,7 +34677,7 @@ ], "type": { "type": "reference", - "id": 2588, + "id": 2590, "name": "FrameParams" }, "inheritedFrom": { @@ -34921,6 +34960,44 @@ }, { "id": 2453, + "name": "isCentralizedLiveboardFilterUXEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag is used to enable or disable the new centralized Liveboard filter UX (v2).\nWhen enabled, a unified modal is used to manage and update multiple filters at once,\nreplacing the older individual filter interactions.\nTo enable this feature on your instance, contact ThoughtSpot Support.", + "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.42.0 | ThoughtSpot: 10.15.0.cl" + }, + { + "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 isCentralizedLiveboardFilterUXEnabled: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1532, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "LiveboardAppEmbedViewConfig.isCentralizedLiveboardFilterUXEnabled" + } + }, + { + "id": 2454, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -34944,7 +35021,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1529, + "line": 1547, "character": 4 } ], @@ -35581,7 +35658,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2824, "name": "RuntimeParameter" } }, @@ -36052,6 +36129,7 @@ 2393, 2419, 2453, + 2454, 2446, 2444, 2400, @@ -36127,7 +36205,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1730, + "line": 1748, "character": 4 } ], @@ -36148,7 +36226,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1734, + "line": 1752, "character": 4 } ], @@ -36170,7 +36248,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1740, + "line": 1758, "character": 4 } ], @@ -36214,13 +36292,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1726, + "line": 1744, "character": 17 } ] }, { - "id": 2822, + "id": 2824, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -36230,7 +36308,7 @@ }, "children": [ { - "id": 2823, + "id": 2825, "name": "name", "kind": 1024, "kindString": "Property", @@ -36241,7 +36319,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1750, + "line": 1768, "character": 4 } ], @@ -36251,7 +36329,7 @@ } }, { - "id": 2824, + "id": 2826, "name": "value", "kind": 1024, "kindString": "Property", @@ -36262,7 +36340,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1754, + "line": 1772, "character": 4 } ], @@ -36290,21 +36368,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2823, - 2824 + 2825, + 2826 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1746, + "line": 1764, "character": 17 } ] }, { - "id": 2454, + "id": 2455, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -36324,7 +36402,7 @@ }, "children": [ { - "id": 2483, + "id": 2484, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -36355,20 +36433,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2484, + "id": 2485, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2485, + "id": 2486, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2486, + "id": 2487, "name": "key", "kind": 32768, "flags": {}, @@ -36404,7 +36482,7 @@ } }, { - "id": 2471, + "id": 2472, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -36446,7 +36524,7 @@ } }, { - "id": 2468, + "id": 2469, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -36485,7 +36563,7 @@ } }, { - "id": 2500, + "id": 2501, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -36526,7 +36604,7 @@ } }, { - "id": 2487, + "id": 2488, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -36555,7 +36633,7 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2631, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -36564,7 +36642,7 @@ } }, { - "id": 2472, + "id": 2473, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -36606,7 +36684,7 @@ } }, { - "id": 2464, + "id": 2465, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -36629,7 +36707,7 @@ } }, { - "id": 2495, + "id": 2496, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -36667,7 +36745,7 @@ } }, { - "id": 2459, + "id": 2460, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -36696,7 +36774,7 @@ } }, { - "id": 2479, + "id": 2480, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -36734,7 +36812,7 @@ } }, { - "id": 2478, + "id": 2479, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -36776,7 +36854,7 @@ } }, { - "id": 2491, + "id": 2492, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -36817,7 +36895,7 @@ } }, { - "id": 2473, + "id": 2474, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -36859,7 +36937,7 @@ } }, { - "id": 2492, + "id": 2493, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -36897,7 +36975,7 @@ } }, { - "id": 2469, + "id": 2470, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -36935,7 +37013,7 @@ } }, { - "id": 2470, + "id": 2471, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -36973,7 +37051,7 @@ } }, { - "id": 2494, + "id": 2495, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -37010,7 +37088,7 @@ } }, { - "id": 2475, + "id": 2476, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -37040,7 +37118,7 @@ ], "type": { "type": "reference", - "id": 2588, + "id": 2590, "name": "FrameParams" }, "inheritedFrom": { @@ -37049,7 +37127,7 @@ } }, { - "id": 2480, + "id": 2481, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -37095,7 +37173,7 @@ } }, { - "id": 2461, + "id": 2462, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -37124,7 +37202,7 @@ } }, { - "id": 2458, + "id": 2459, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -37153,7 +37231,7 @@ } }, { - "id": 2463, + "id": 2464, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -37187,7 +37265,7 @@ } }, { - "id": 2457, + "id": 2458, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -37220,7 +37298,7 @@ } }, { - "id": 2460, + "id": 2461, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -37249,7 +37327,7 @@ } }, { - "id": 2488, + "id": 2489, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -37287,7 +37365,7 @@ } }, { - "id": 2497, + "id": 2498, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -37325,7 +37403,7 @@ } }, { - "id": 2482, + "id": 2483, "name": "locale", "kind": 1024, "kindString": "Property", @@ -37363,7 +37441,7 @@ } }, { - "id": 2496, + "id": 2497, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -37401,7 +37479,7 @@ } }, { - "id": 2490, + "id": 2491, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -37439,7 +37517,7 @@ } }, { - "id": 2466, + "id": 2467, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -37481,7 +37559,7 @@ } }, { - "id": 2467, + "id": 2468, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -37513,7 +37591,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2824, "name": "RuntimeParameter" } }, @@ -37523,7 +37601,7 @@ } }, { - "id": 2465, + "id": 2466, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -37557,7 +37635,7 @@ } }, { - "id": 2499, + "id": 2500, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -37594,7 +37672,7 @@ } }, { - "id": 2455, + "id": 2456, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -37623,7 +37701,7 @@ } }, { - "id": 2462, + "id": 2463, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -37652,7 +37730,7 @@ } }, { - "id": 2481, + "id": 2482, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -37703,42 +37781,42 @@ "title": "Properties", "kind": 1024, "children": [ - 2483, - 2471, - 2468, - 2500, - 2487, + 2484, 2472, - 2464, - 2495, - 2459, - 2479, - 2478, - 2491, + 2469, + 2501, + 2488, 2473, + 2465, + 2496, + 2460, + 2480, + 2479, 2492, - 2469, + 2474, + 2493, 2470, - 2494, - 2475, - 2480, - 2461, + 2471, + 2495, + 2476, + 2481, + 2462, + 2459, + 2464, 2458, - 2463, - 2457, - 2460, - 2488, + 2461, + 2489, + 2498, + 2483, 2497, - 2482, - 2496, - 2490, - 2466, + 2491, 2467, - 2465, - 2499, - 2455, - 2462, - 2481 + 2468, + 2466, + 2500, + 2456, + 2463, + 2482 ] } ], @@ -38038,7 +38116,7 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2631, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -38580,7 +38658,7 @@ ], "type": { "type": "reference", - "id": 2588, + "id": 2590, "name": "FrameParams" }, "inheritedFrom": { @@ -38937,7 +39015,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2824, "name": "RuntimeParameter" } }, @@ -39543,7 +39621,7 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2631, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -40224,7 +40302,7 @@ ], "type": { "type": "reference", - "id": 2588, + "id": 2590, "name": "FrameParams" }, "inheritedFrom": { @@ -40675,7 +40753,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2824, "name": "RuntimeParameter" } }, @@ -41239,7 +41317,7 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2631, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -41512,7 +41590,7 @@ ], "type": { "type": "reference", - "id": 2588, + "id": 2590, "name": "FrameParams" }, "inheritedFrom": { @@ -42086,7 +42164,7 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2631, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -42537,7 +42615,7 @@ ], "type": { "type": "reference", - "id": 2588, + "id": 2590, "name": "FrameParams" }, "inheritedFrom": { @@ -42920,7 +42998,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2824, "name": "RuntimeParameter" } } @@ -43219,14 +43297,14 @@ ] }, { - "id": 2860, + "id": 2862, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2861, + "id": 2863, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -43234,7 +43312,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5736, + "line": 5755, "character": 4 } ], @@ -43247,7 +43325,7 @@ } }, { - "id": 2862, + "id": 2864, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -43255,7 +43333,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5737, + "line": 5756, "character": 4 } ], @@ -43273,21 +43351,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2861, - 2862 + 2863, + 2864 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5735, + "line": 5754, "character": 17 } ] }, { - "id": 2642, + "id": 2644, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -43297,7 +43375,7 @@ }, "children": [ { - "id": 2644, + "id": 2646, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -43327,20 +43405,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2645, + "id": 2647, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2646, + "id": 2648, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2647, + "id": 2649, "name": "selector", "kind": 32768, "flags": {}, @@ -43353,7 +43431,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2648, + "id": 2650, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43366,14 +43444,14 @@ } ], "indexSignature": { - "id": 2649, + "id": 2651, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2650, + "id": 2652, "name": "declaration", "kind": 32768, "flags": {}, @@ -43395,7 +43473,7 @@ } }, { - "id": 2643, + "id": 2645, "name": "variables", "kind": 1024, "kindString": "Property", @@ -43414,7 +43492,7 @@ ], "type": { "type": "reference", - "id": 2651, + "id": 2653, "name": "CustomCssVariables" } } @@ -43424,8 +43502,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2644, - 2643 + 2646, + 2645 ] } ], @@ -43730,7 +43808,7 @@ ] }, { - "id": 2612, + "id": 2614, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -43757,7 +43835,7 @@ } }, { - "id": 2616, + "id": 2618, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -43765,14 +43843,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1563, + "line": 1581, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2617, + "id": 2619, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43789,13 +43867,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1563, + "line": 1581, "character": 30 } ], "signatures": [ { - "id": 2618, + "id": 2620, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43805,19 +43883,19 @@ }, "parameters": [ { - "id": 2619, + "id": 2621, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2624, + "id": 2626, "name": "MessagePayload" } }, { - "id": 2620, + "id": 2622, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -43827,7 +43905,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2621, + "id": 2623, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43835,13 +43913,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1570, + "line": 1588, "character": 16 } ], "signatures": [ { - "id": 2622, + "id": 2624, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43851,7 +43929,7 @@ }, "parameters": [ { - "id": 2623, + "id": 2625, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -43882,7 +43960,7 @@ } }, { - "id": 2613, + "id": 2615, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -43899,21 +43977,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1552, + "line": 1570, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2614, + "id": 2616, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2615, + "id": 2617, "name": "start", "kind": 1024, "kindString": "Property", @@ -43926,7 +44004,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1557, + "line": 1575, "character": 4 } ], @@ -43941,14 +44019,14 @@ "title": "Properties", "kind": 1024, "children": [ - 2615 + 2617 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1552, + "line": 1570, "character": 29 } ] @@ -43956,7 +44034,7 @@ } }, { - "id": 2624, + "id": 2626, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -43973,21 +44051,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1539, + "line": 1557, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2625, + "id": 2627, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2627, + "id": 2629, "name": "data", "kind": 1024, "kindString": "Property", @@ -43995,7 +44073,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1543, + "line": 1561, "character": 4 } ], @@ -44005,7 +44083,7 @@ } }, { - "id": 2628, + "id": 2630, "name": "status", "kind": 1024, "kindString": "Property", @@ -44015,7 +44093,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1545, + "line": 1563, "character": 4 } ], @@ -44025,7 +44103,7 @@ } }, { - "id": 2626, + "id": 2628, "name": "type", "kind": 1024, "kindString": "Property", @@ -44033,7 +44111,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1541, + "line": 1559, "character": 4 } ], @@ -44048,16 +44126,16 @@ "title": "Properties", "kind": 1024, "children": [ - 2627, - 2628, - 2626 + 2629, + 2630, + 2628 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1539, + "line": 1557, "character": 29 } ] @@ -44711,7 +44789,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2583, + "id": 2585, "name": "PrefetchFeatures" } } @@ -44783,7 +44861,7 @@ ] }, { - "id": 2909, + "id": 2911, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -44799,7 +44877,7 @@ ], "signatures": [ { - "id": 2910, + "id": 2912, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -44993,7 +45071,7 @@ ] }, { - "id": 2832, + "id": 2834, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -45007,7 +45085,7 @@ ], "signatures": [ { - "id": 2833, + "id": 2835, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -45017,7 +45095,7 @@ }, "parameters": [ { - "id": 2834, + "id": 2836, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -45029,7 +45107,7 @@ } }, { - "id": 2835, + "id": 2837, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -45040,7 +45118,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2836, + "id": 2838, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -45069,24 +45147,24 @@ 1739, 1894, 2231, - 2904, - 2900, - 2896, + 2906, + 2902, + 2898, 2090, 1926, - 2594, - 2854, - 2848, - 2605, + 2596, + 2856, + 2850, + 2607, 2019, - 2857, - 2890, - 2825, + 2859, + 2892, + 2827, 1885, - 2583, - 2852, + 2585, + 2854, 1910, - 2883 + 2885 ] }, { @@ -45109,28 +45187,28 @@ "title": "Interfaces", "kind": 256, "children": [ - 2501, + 2502, 1749, 1260, 1526, - 2863, - 2651, - 2639, - 2629, + 2865, + 2653, + 2641, + 2631, 2235, - 2588, + 2590, 2381, 1906, - 2822, - 2454, + 2824, + 2455, 2339, 2285, 1875, 1231, 1486, 1882, - 2860, - 2642, + 2862, + 2644, 21, 25 ] @@ -45139,10 +45217,10 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2612, - 2616, - 2613, - 2624 + 2614, + 2618, + 2615, + 2626 ] }, { @@ -45158,9 +45236,9 @@ 1, 4, 7, - 2909, + 2911, 37, - 2832 + 2834 ] } ], From c40505a7ce4c3a87aa5644ff5348078e1d8bf026 Mon Sep 17 00:00:00 2001 From: Chinmay <162949039+chinmay-ts@users.noreply.github.com> Date: Wed, 15 Oct 2025 11:20:40 +0530 Subject: [PATCH 18/31] SCAL-276900 Added action for liveboardStylePanel (#327) --- src/embed/liveboard.spec.ts | 15 + src/types.ts | 10 + static/typedoc/typedoc.json | 6232 +++++++++++++++++------------------ 3 files changed, 3118 insertions(+), 3139 deletions(-) diff --git a/src/embed/liveboard.spec.ts b/src/embed/liveboard.spec.ts index 1476402fd..9aee48740 100644 --- a/src/embed/liveboard.spec.ts +++ b/src/embed/liveboard.spec.ts @@ -16,6 +16,7 @@ import { defaultParams, defaultParamsWithoutHiddenActions, expectUrlMatchesWithParams, + expectUrlToHaveParamsWithValues, postMessageToParent, getIFrameEl, mockMessageChannel, @@ -138,6 +139,20 @@ describe('Liveboard/viz embed tests', () => { }); }); + test('should set LiveboardStylePanel in visible actions', async () => { + const liveboardEmbed = new LiveboardEmbed(getRootEl(), { + visibleActions: [Action.LiveboardStylePanel], + ...defaultViewConfig, + liveboardId, + } as LiveboardViewConfig); + liveboardEmbed.render(); + await executeAfterWait(() => { + expectUrlToHaveParamsWithValues(getIFrameSrc(), { + visibleAction: JSON.stringify([Action.LiveboardStylePanel]), + }); + }); + }); + test('should set enable2ColumnLayout to true in url', async () => { const liveboardEmbed = new LiveboardEmbed(getRootEl(), { enable2ColumnLayout: true, diff --git a/src/types.ts b/src/types.ts index 5d43655af..ae2623aa9 100644 --- a/src/types.ts +++ b/src/types.ts @@ -5709,6 +5709,16 @@ export enum Action { * @version SDK: 1.42.0 | ThoughtSpot Cloud: 10.14.0.cl */ RemoveAttachment = 'removeAttachment', + /** + * The **Style panel** on a Liveboard. + * Controls the visibility of the Liveboard style panel. + * @example + * ```js + * hiddenActions: [Action.LiveboardStylePanel] + * ``` + * @version SDK: 1.43.0 | ThoughtSpot Cloud: 10.15.0.cl + */ + LiveboardStylePanel = 'liveboardStylePanel', } export interface AnswerServiceType { diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index d88ee36d5..afe093c40 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 2094, + "id": 2091, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 2207, + "id": 2204, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -55,7 +55,7 @@ "defaultValue": "\"AIHighlights\"" }, { - "id": 2114, + "id": 2111, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -83,7 +83,7 @@ "defaultValue": "\"addSimpleCohort\"" }, { - "id": 2107, + "id": 2104, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -111,7 +111,7 @@ "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 2106, + "id": 2103, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -135,7 +135,7 @@ "defaultValue": "\"addFilter\"" }, { - "id": 2112, + "id": 2109, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -159,7 +159,7 @@ "defaultValue": "\"addFormula\"" }, { - "id": 2113, + "id": 2110, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -183,7 +183,7 @@ "defaultValue": "\"addParameter\"" }, { - "id": 2115, + "id": 2112, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -211,7 +211,7 @@ "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 2189, + "id": 2186, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -239,7 +239,7 @@ "defaultValue": "\"addTab\"" }, { - "id": 2162, + "id": 2159, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -267,7 +267,7 @@ "defaultValue": "\"addToFavorites\"" }, { - "id": 2204, + "id": 2201, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -295,7 +295,7 @@ "defaultValue": "\"addToWatchlist\"" }, { - "id": 2161, + "id": 2158, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -323,7 +323,7 @@ "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2160, + "id": 2157, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -351,7 +351,7 @@ "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2203, + "id": 2200, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -380,7 +380,7 @@ "defaultValue": "\"AskAi\"" }, { - "id": 2173, + "id": 2170, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -408,7 +408,7 @@ "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 2176, + "id": 2173, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -436,7 +436,7 @@ "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 2181, + "id": 2178, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -464,7 +464,7 @@ "defaultValue": "\"axisMenuEdit\"" }, { - "id": 2175, + "id": 2172, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -492,7 +492,7 @@ "defaultValue": "\"axisMenuFilter\"" }, { - "id": 2178, + "id": 2175, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -520,7 +520,7 @@ "defaultValue": "\"axisMenuGroup\"" }, { - "id": 2182, + "id": 2179, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -548,7 +548,7 @@ "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 2179, + "id": 2176, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -576,7 +576,7 @@ "defaultValue": "\"axisMenuPosition\"" }, { - "id": 2184, + "id": 2181, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -604,7 +604,7 @@ "defaultValue": "\"axisMenuRemove\"" }, { - "id": 2180, + "id": 2177, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -632,7 +632,7 @@ "defaultValue": "\"axisMenuRename\"" }, { - "id": 2177, + "id": 2174, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -660,7 +660,7 @@ "defaultValue": "\"axisMenuSort\"" }, { - "id": 2183, + "id": 2180, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -688,7 +688,7 @@ "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 2174, + "id": 2171, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -716,7 +716,7 @@ "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 2216, + "id": 2213, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -744,7 +744,7 @@ "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 2111, + "id": 2108, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -768,7 +768,7 @@ "defaultValue": "\"chooseDataSources\"" }, { - "id": 2110, + "id": 2107, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -796,7 +796,7 @@ "defaultValue": "\"collapseDataPanel\"" }, { - "id": 2109, + "id": 2106, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -824,7 +824,7 @@ "defaultValue": "\"collapseDataSources\"" }, { - "id": 2223, + "id": 2220, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -852,7 +852,7 @@ "defaultValue": "\"columnRename\"" }, { - "id": 2108, + "id": 2105, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -876,7 +876,7 @@ "defaultValue": "\"configureFilter\"" }, { - "id": 2153, + "id": 2150, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -891,7 +891,7 @@ "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 2101, + "id": 2098, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -915,7 +915,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 2152, + "id": 2149, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -939,7 +939,7 @@ "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2224, + "id": 2221, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -967,7 +967,7 @@ "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 2201, + "id": 2198, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -995,7 +995,7 @@ "defaultValue": "\"createLiveboard\"" }, { - "id": 2164, + "id": 2161, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1023,7 +1023,7 @@ "defaultValue": "\"createMonitor\"" }, { - "id": 2169, + "id": 2166, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1051,7 +1051,7 @@ "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 2221, + "id": 2218, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1079,7 +1079,7 @@ "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 2213, + "id": 2210, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1107,7 +1107,7 @@ "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 2215, + "id": 2212, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1135,7 +1135,7 @@ "defaultValue": "\"disableChipReorder\"" }, { - "id": 2123, + "id": 2120, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1159,7 +1159,7 @@ "defaultValue": "\"download\"" }, { - "id": 2126, + "id": 2123, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1183,7 +1183,7 @@ "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2125, + "id": 2122, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1208,7 +1208,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2124, + "id": 2121, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1232,7 +1232,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 2127, + "id": 2124, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1256,7 +1256,7 @@ "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2157, + "id": 2154, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1280,7 +1280,7 @@ "defaultValue": "\"DRILL\"" }, { - "id": 2151, + "id": 2148, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1304,7 +1304,7 @@ "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 2150, + "id": 2147, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1328,7 +1328,7 @@ "defaultValue": "\"context-menu-item-include\"" }, { - "id": 2135, + "id": 2132, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1352,7 +1352,7 @@ "defaultValue": "\"edit\"" }, { - "id": 2100, + "id": 2097, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1376,7 +1376,7 @@ "defaultValue": "\"editACopy\"" }, { - "id": 2163, + "id": 2160, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1404,7 +1404,7 @@ "defaultValue": "\"editDetails\"" }, { - "id": 2155, + "id": 2152, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1419,7 +1419,7 @@ "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 2220, + "id": 2217, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1447,7 +1447,7 @@ "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 2193, + "id": 2190, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1475,7 +1475,7 @@ "defaultValue": "\"editSageAnswer\"" }, { - "id": 2208, + "id": 2205, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1503,7 +1503,7 @@ "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 2132, + "id": 2129, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1527,7 +1527,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 2136, + "id": 2133, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1551,7 +1551,7 @@ "defaultValue": "\"editTitle\"" }, { - "id": 2222, + "id": 2219, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1579,7 +1579,7 @@ "defaultValue": "\"editTokens\"" }, { - "id": 2190, + "id": 2187, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1607,7 +1607,7 @@ "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 2191, + "id": 2188, "name": "EnableIterativeChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1635,7 +1635,7 @@ "defaultValue": "\"enableIterativeChangeAnalysis\"" }, { - "id": 2149, + "id": 2146, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1659,7 +1659,7 @@ "defaultValue": "\"explore\"" }, { - "id": 2129, + "id": 2126, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1684,7 +1684,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 2130, + "id": 2127, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1708,7 +1708,7 @@ "defaultValue": "\"importTSL\"" }, { - "id": 2225, + "id": 2222, "name": "InConversationTraining", "kind": 16, "kindString": "Enumeration member", @@ -1736,7 +1736,7 @@ "defaultValue": "\"InConversationTraining\"" }, { - "id": 2214, + "id": 2211, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1764,7 +1764,7 @@ "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 2143, + "id": 2140, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1788,7 +1788,35 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 2199, + "id": 2228, + "name": "LiveboardStylePanel", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "The **Style panel** on a Liveboard.\nControls the visibility of the Liveboard style panel.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nhiddenActions: [Action.LiveboardStylePanel]\n```" + }, + { + "tag": "version", + "text": "SDK: 1.43.0 | ThoughtSpot Cloud: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 5721, + "character": 4 + } + ], + "defaultValue": "\"liveboardStylePanel\"" + }, + { + "id": 2196, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1816,7 +1844,7 @@ "defaultValue": "\"liveboardUsers\"" }, { - "id": 2099, + "id": 2096, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1840,7 +1868,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 2197, + "id": 2194, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1864,7 +1892,7 @@ "defaultValue": "\"manageMonitor\"" }, { - "id": 2168, + "id": 2165, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1892,7 +1920,7 @@ "defaultValue": "\"manage-pipeline\"" }, { - "id": 2212, + "id": 2209, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1920,7 +1948,7 @@ "defaultValue": "\"manageTags\"" }, { - "id": 2188, + "id": 2185, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1948,7 +1976,7 @@ "defaultValue": "\"markAsVerified\"" }, { - "id": 2195, + "id": 2192, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1975,7 +2003,7 @@ "defaultValue": "\"modifySageAnswer\"" }, { - "id": 2196, + "id": 2193, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -1999,7 +2027,7 @@ "defaultValue": "\"onContainerMove\"" }, { - "id": 2206, + "id": 2203, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -2027,7 +2055,7 @@ "defaultValue": "\"organiseFavourites\"" }, { - "id": 2209, + "id": 2206, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2055,7 +2083,7 @@ "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 2198, + "id": 2195, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2083,7 +2111,7 @@ "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 2146, + "id": 2143, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2107,7 +2135,7 @@ "defaultValue": "\"pin\"" }, { - "id": 2229, + "id": 2226, "name": "PngScreenshotInEmail", "kind": 16, "kindString": "Enumeration member", @@ -2131,7 +2159,7 @@ "defaultValue": "\"pngScreenshotInEmail\"" }, { - "id": 2133, + "id": 2130, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2155,7 +2183,7 @@ "defaultValue": "\"present\"" }, { - "id": 2217, + "id": 2214, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2183,7 +2211,7 @@ "defaultValue": "\"previewDataSpotter\"" }, { - "id": 2159, + "id": 2156, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2208,7 +2236,7 @@ "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 2137, + "id": 2134, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2232,7 +2260,7 @@ "defaultValue": "\"delete\"" }, { - "id": 2230, + "id": 2227, "name": "RemoveAttachment", "kind": 16, "kindString": "Enumeration member", @@ -2260,7 +2288,7 @@ "defaultValue": "\"removeAttachment\"" }, { - "id": 2172, + "id": 2169, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2288,7 +2316,7 @@ "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 2205, + "id": 2202, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2316,7 +2344,7 @@ "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 2186, + "id": 2183, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2344,7 +2372,7 @@ "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 2165, + "id": 2162, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2375,7 +2403,7 @@ "defaultValue": "\"reportError\"" }, { - "id": 2158, + "id": 2155, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2399,7 +2427,7 @@ "defaultValue": "\"requestAccess\"" }, { - "id": 2187, + "id": 2184, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2427,7 +2455,7 @@ "defaultValue": "\"requestVerification\"" }, { - "id": 2218, + "id": 2215, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2455,7 +2483,7 @@ "defaultValue": "\"resetSpotterChat\"" }, { - "id": 2194, + "id": 2191, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2483,7 +2511,7 @@ "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 2095, + "id": 2092, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2507,7 +2535,7 @@ "defaultValue": "\"save\"" }, { - "id": 2098, + "id": 2095, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2531,7 +2559,7 @@ "defaultValue": "\"saveAsView\"" }, { - "id": 2103, + "id": 2100, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2555,7 +2583,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 2104, + "id": 2101, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2579,7 +2607,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 2156, + "id": 2153, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2594,7 +2622,7 @@ "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 2105, + "id": 2102, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2618,7 +2646,7 @@ "defaultValue": "\"share\"" }, { - "id": 2120, + "id": 2117, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2636,7 +2664,7 @@ "defaultValue": "\"shareViz\"" }, { - "id": 2192, + "id": 2189, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2664,7 +2692,7 @@ "defaultValue": "\"showSageQuery\"" }, { - "id": 2122, + "id": 2119, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2688,7 +2716,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2117, + "id": 2114, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2712,7 +2740,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2219, + "id": 2216, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2740,7 +2768,7 @@ "defaultValue": "\"spotterFeedback\"" }, { - "id": 2228, + "id": 2225, "name": "SpotterTokenQuickEdit", "kind": 16, "kindString": "Enumeration member", @@ -2768,7 +2796,7 @@ "defaultValue": "\"SpotterTokenQuickEdit\"" }, { - "id": 2226, + "id": 2223, "name": "SpotterWarningsBanner", "kind": 16, "kindString": "Enumeration member", @@ -2796,7 +2824,7 @@ "defaultValue": "\"SpotterWarningsBanner\"" }, { - "id": 2227, + "id": 2224, "name": "SpotterWarningsOnTokens", "kind": 16, "kindString": "Enumeration member", @@ -2824,7 +2852,7 @@ "defaultValue": "\"SpotterWarningsOnTokens\"" }, { - "id": 2148, + "id": 2145, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2848,7 +2876,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 2167, + "id": 2164, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2876,7 +2904,7 @@ "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2166, + "id": 2163, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2904,7 +2932,7 @@ "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2170, + "id": 2167, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2932,7 +2960,7 @@ "defaultValue": "\"syncToSlack\"" }, { - "id": 2171, + "id": 2168, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2960,7 +2988,7 @@ "defaultValue": "\"syncToTeams\"" }, { - "id": 2200, + "id": 2197, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -2992,7 +3020,7 @@ "defaultValue": "\"tml\"" }, { - "id": 2134, + "id": 2131, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -3016,7 +3044,7 @@ "defaultValue": "\"toggleSize\"" }, { - "id": 2211, + "id": 2208, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3044,7 +3072,7 @@ "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 2131, + "id": 2128, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -3068,7 +3096,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 2202, + "id": 2199, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -3096,7 +3124,7 @@ "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 2210, + "id": 2207, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3129,124 +3157,125 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2207, - 2114, - 2107, - 2106, - 2112, - 2113, - 2115, - 2189, - 2162, 2204, - 2161, - 2160, - 2203, + 2111, + 2104, + 2103, + 2109, + 2110, + 2112, + 2186, + 2159, + 2201, + 2158, + 2157, + 2200, + 2170, 2173, - 2176, - 2181, - 2175, 2178, - 2182, + 2172, + 2175, 2179, - 2184, - 2180, + 2176, + 2181, 2177, - 2183, 2174, - 2216, - 2111, - 2110, - 2109, - 2223, + 2180, + 2171, + 2213, 2108, - 2153, - 2101, - 2152, - 2224, - 2201, - 2164, - 2169, + 2107, + 2106, + 2220, + 2105, + 2150, + 2098, + 2149, 2221, - 2213, - 2215, + 2198, + 2161, + 2166, + 2218, + 2210, + 2212, + 2120, 2123, - 2126, - 2125, + 2122, + 2121, 2124, - 2127, - 2157, - 2151, - 2150, - 2135, - 2100, - 2163, - 2155, - 2220, - 2193, - 2208, + 2154, + 2148, + 2147, 2132, - 2136, - 2222, + 2097, + 2160, + 2152, + 2217, 2190, - 2191, - 2149, + 2205, 2129, - 2130, - 2225, - 2214, - 2143, - 2199, - 2099, - 2197, - 2168, - 2212, - 2188, - 2195, - 2196, - 2206, - 2209, - 2198, - 2146, - 2229, 2133, - 2217, - 2159, - 2137, - 2230, - 2172, - 2205, - 2186, - 2165, - 2158, + 2219, 2187, - 2218, + 2188, + 2146, + 2126, + 2127, + 2222, + 2211, + 2140, + 2228, + 2196, + 2096, 2194, - 2095, - 2098, - 2103, - 2104, - 2156, - 2105, - 2120, + 2165, + 2209, + 2185, 2192, - 2122, - 2117, - 2219, - 2228, + 2193, + 2203, + 2206, + 2195, + 2143, 2226, + 2130, + 2214, + 2156, + 2134, 2227, - 2148, + 2169, + 2202, + 2183, + 2162, + 2155, + 2184, + 2215, + 2191, + 2092, + 2095, + 2100, + 2101, + 2153, + 2102, + 2117, + 2189, + 2119, + 2114, + 2216, + 2225, + 2223, + 2224, + 2145, + 2164, + 2163, 2167, - 2166, - 2170, - 2171, - 2200, - 2134, - 2211, + 2168, + 2197, 2131, - 2202, - 2210 + 2208, + 2128, + 2199, + 2207 ] } ], @@ -3259,7 +3288,7 @@ ] }, { - "id": 1747, + "id": 1744, "name": "AuthEvent", "kind": 4, "kindString": "Enumeration", @@ -3275,7 +3304,7 @@ }, "children": [ { - "id": 1748, + "id": 1745, "name": "TRIGGER_SSO_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3298,7 +3327,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1748 + 1745 ] } ], @@ -3311,7 +3340,7 @@ ] }, { - "id": 1732, + "id": 1729, "name": "AuthFailureType", "kind": 4, "kindString": "Enumeration", @@ -3327,7 +3356,7 @@ }, "children": [ { - "id": 1735, + "id": 1732, "name": "EXPIRY", "kind": 16, "kindString": "Enumeration member", @@ -3342,7 +3371,7 @@ "defaultValue": "\"EXPIRY\"" }, { - "id": 1737, + "id": 1734, "name": "IDLE_SESSION_TIMEOUT", "kind": 16, "kindString": "Enumeration member", @@ -3357,7 +3386,7 @@ "defaultValue": "\"IDLE_SESSION_TIMEOUT\"" }, { - "id": 1734, + "id": 1731, "name": "NO_COOKIE_ACCESS", "kind": 16, "kindString": "Enumeration member", @@ -3372,7 +3401,7 @@ "defaultValue": "\"NO_COOKIE_ACCESS\"" }, { - "id": 1736, + "id": 1733, "name": "OTHER", "kind": 16, "kindString": "Enumeration member", @@ -3387,7 +3416,7 @@ "defaultValue": "\"OTHER\"" }, { - "id": 1733, + "id": 1730, "name": "SDK", "kind": 16, "kindString": "Enumeration member", @@ -3402,7 +3431,7 @@ "defaultValue": "\"SDK\"" }, { - "id": 1738, + "id": 1735, "name": "UNAUTHENTICATED_FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3422,12 +3451,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1735, - 1737, + 1732, 1734, - 1736, + 1731, 1733, - 1738 + 1730, + 1735 ] } ], @@ -3440,7 +3469,7 @@ ] }, { - "id": 1739, + "id": 1736, "name": "AuthStatus", "kind": 4, "kindString": "Enumeration", @@ -3456,7 +3485,7 @@ }, "children": [ { - "id": 1740, + "id": 1737, "name": "FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3474,7 +3503,7 @@ "defaultValue": "\"FAILURE\"" }, { - "id": 1744, + "id": 1741, "name": "LOGOUT", "kind": 16, "kindString": "Enumeration member", @@ -3492,7 +3521,7 @@ "defaultValue": "\"LOGOUT\"" }, { - "id": 1746, + "id": 1743, "name": "SAML_POPUP_CLOSED_NO_AUTH", "kind": 16, "kindString": "Enumeration member", @@ -3510,7 +3539,7 @@ "defaultValue": "\"SAML_POPUP_CLOSED_NO_AUTH\"" }, { - "id": 1741, + "id": 1738, "name": "SDK_SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3528,7 +3557,7 @@ "defaultValue": "\"SDK_SUCCESS\"" }, { - "id": 1743, + "id": 1740, "name": "SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3546,7 +3575,7 @@ "defaultValue": "\"SUCCESS\"" }, { - "id": 1745, + "id": 1742, "name": "WAITING_FOR_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3575,12 +3604,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1740, - 1744, - 1746, + 1737, 1741, 1743, - 1745 + 1738, + 1740, + 1742 ] } ], @@ -3593,7 +3622,7 @@ ] }, { - "id": 1894, + "id": 1891, "name": "AuthType", "kind": 4, "kindString": "Enumeration", @@ -3609,7 +3638,7 @@ }, "children": [ { - "id": 1905, + "id": 1902, "name": "Basic", "kind": 16, "kindString": "Enumeration member", @@ -3628,7 +3657,7 @@ "defaultValue": "\"Basic\"" }, { - "id": 1896, + "id": 1893, "name": "EmbeddedSSO", "kind": 16, "kindString": "Enumeration member", @@ -3657,7 +3686,7 @@ "defaultValue": "\"EmbeddedSSO\"" }, { - "id": 1895, + "id": 1892, "name": "None", "kind": 16, "kindString": "Enumeration member", @@ -3681,7 +3710,7 @@ "defaultValue": "\"None\"" }, { - "id": 1901, + "id": 1898, "name": "OIDCRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3699,7 +3728,7 @@ "defaultValue": "\"SSO_OIDC\"" }, { - "id": 1899, + "id": 1896, "name": "SAMLRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3732,7 +3761,7 @@ "defaultValue": "\"SSO_SAML\"" }, { - "id": 1903, + "id": 1900, "name": "TrustedAuthToken", "kind": 16, "kindString": "Enumeration member", @@ -3756,7 +3785,7 @@ "defaultValue": "\"AuthServer\"" }, { - "id": 1904, + "id": 1901, "name": "TrustedAuthTokenCookieless", "kind": 16, "kindString": "Enumeration member", @@ -3789,13 +3818,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1905, + 1902, + 1893, + 1892, + 1898, 1896, - 1895, - 1901, - 1899, - 1903, - 1904 + 1900, + 1901 ] } ], @@ -3808,7 +3837,7 @@ ] }, { - "id": 2231, + "id": 2229, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3818,7 +3847,7 @@ }, "children": [ { - "id": 2234, + "id": 2232, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3826,14 +3855,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5732, + "line": 5742, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 2232, + "id": 2230, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3841,14 +3870,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5730, + "line": 5740, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 2233, + "id": 2231, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3856,7 +3885,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5731, + "line": 5741, "character": 4 } ], @@ -3868,22 +3897,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2234, 2232, - 2233 + 2230, + 2231 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5729, + "line": 5739, "character": 12 } ] }, { - "id": 2906, + "id": 2904, "name": "CustomActionTarget", "kind": 4, "kindString": "Enumeration", @@ -3893,7 +3922,7 @@ }, "children": [ { - "id": 2909, + "id": 2907, "name": "ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -3901,14 +3930,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5817, + "line": 5827, "character": 4 } ], "defaultValue": "\"ANSWER\"" }, { - "id": 2907, + "id": 2905, "name": "LIVEBOARD", "kind": 16, "kindString": "Enumeration member", @@ -3916,14 +3945,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5815, + "line": 5825, "character": 4 } ], "defaultValue": "\"LIVEBOARD\"" }, { - "id": 2910, + "id": 2908, "name": "SPOTTER", "kind": 16, "kindString": "Enumeration member", @@ -3931,14 +3960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5818, + "line": 5828, "character": 4 } ], "defaultValue": "\"SPOTTER\"" }, { - "id": 2908, + "id": 2906, "name": "VIZ", "kind": 16, "kindString": "Enumeration member", @@ -3946,7 +3975,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5816, + "line": 5826, "character": 4 } ], @@ -3958,23 +3987,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2909, 2907, - 2910, - 2908 + 2905, + 2908, + 2906 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5814, + "line": 5824, "character": 12 } ] }, { - "id": 2902, + "id": 2900, "name": "CustomActionsPosition", "kind": 4, "kindString": "Enumeration", @@ -3984,7 +4013,7 @@ }, "children": [ { - "id": 2905, + "id": 2903, "name": "CONTEXTMENU", "kind": 16, "kindString": "Enumeration member", @@ -3992,14 +4021,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5808, + "line": 5818, "character": 4 } ], "defaultValue": "\"CONTEXTMENU\"" }, { - "id": 2904, + "id": 2902, "name": "MENU", "kind": 16, "kindString": "Enumeration member", @@ -4007,14 +4036,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5807, + "line": 5817, "character": 4 } ], "defaultValue": "\"MENU\"" }, { - "id": 2903, + "id": 2901, "name": "PRIMARY", "kind": 16, "kindString": "Enumeration member", @@ -4022,7 +4051,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5806, + "line": 5816, "character": 4 } ], @@ -4034,22 +4063,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2905, - 2904, - 2903 + 2903, + 2902, + 2901 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5805, + "line": 5815, "character": 12 } ] }, { - "id": 2898, + "id": 2896, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -4059,7 +4088,7 @@ }, "children": [ { - "id": 2900, + "id": 2898, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4077,7 +4106,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 2899, + "id": 2897, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4095,7 +4124,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 2901, + "id": 2899, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -4118,9 +4147,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2900, - 2899, - 2901 + 2898, + 2897, + 2899 ] } ], @@ -4133,7 +4162,7 @@ ] }, { - "id": 2090, + "id": 2087, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -4143,7 +4172,7 @@ }, "children": [ { - "id": 2092, + "id": 2089, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -4161,7 +4190,7 @@ "defaultValue": "\"collapse\"" }, { - "id": 2093, + "id": 2090, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -4179,7 +4208,7 @@ "defaultValue": "\"expand\"" }, { - "id": 2091, + "id": 2088, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -4202,9 +4231,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2092, - 2093, - 2091 + 2089, + 2090, + 2088 ] } ], @@ -4217,7 +4246,7 @@ ] }, { - "id": 1926, + "id": 1923, "name": "EmbedEvent", "kind": 4, "kindString": "Enumeration", @@ -4242,7 +4271,7 @@ }, "children": [ { - "id": 1954, + "id": 1951, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -4270,7 +4299,7 @@ "defaultValue": "\"*\"" }, { - "id": 1934, + "id": 1931, "name": "AddRemoveColumns", "kind": 16, "kindString": "Enumeration member", @@ -4302,7 +4331,7 @@ "defaultValue": "\"addRemoveColumns\"" }, { - "id": 1978, + "id": 1975, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -4330,7 +4359,7 @@ "defaultValue": "\"addToFavorites\"" }, { - "id": 1939, + "id": 1936, "name": "Alert", "kind": 16, "kindString": "Enumeration member", @@ -4362,7 +4391,7 @@ "defaultValue": "\"alert\"" }, { - "id": 1974, + "id": 1971, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -4390,7 +4419,7 @@ "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1961, + "id": 1958, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -4418,7 +4447,7 @@ "defaultValue": "\"answerDelete\"" }, { - "id": 2001, + "id": 1998, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -4458,7 +4487,7 @@ "defaultValue": "\"AskSageInit\"" }, { - "id": 1940, + "id": 1937, "name": "AuthExpire", "kind": 16, "kindString": "Enumeration member", @@ -4486,7 +4515,7 @@ "defaultValue": "\"ThoughtspotAuthExpired\"" }, { - "id": 1928, + "id": 1925, "name": "AuthInit", "kind": 16, "kindString": "Enumeration member", @@ -4518,7 +4547,7 @@ "defaultValue": "\"authInit\"" }, { - "id": 1985, + "id": 1982, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -4546,7 +4575,7 @@ "defaultValue": "\"cancel\"" }, { - "id": 1972, + "id": 1969, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -4574,7 +4603,7 @@ "defaultValue": "\"copyAEdit\"" }, { - "id": 1987, + "id": 1984, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -4602,7 +4631,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 1967, + "id": 1964, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -4630,7 +4659,7 @@ "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1995, + "id": 1992, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -4654,7 +4683,7 @@ "defaultValue": "\"createConnection\"" }, { - "id": 2006, + "id": 2003, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -4679,7 +4708,7 @@ "defaultValue": "\"createLiveboard\"" }, { - "id": 2007, + "id": 2004, "name": "CreateModel", "kind": 16, "kindString": "Enumeration member", @@ -4703,7 +4732,7 @@ "defaultValue": "\"createModel\"" }, { - "id": 2000, + "id": 1997, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -4727,7 +4756,7 @@ "defaultValue": "\"createWorksheet\"" }, { - "id": 1988, + "id": 1985, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4755,7 +4784,7 @@ "defaultValue": "\"cross-filter-changed\"" }, { - "id": 1935, + "id": 1932, "name": "CustomAction", "kind": 16, "kindString": "Enumeration member", @@ -4791,7 +4820,7 @@ "defaultValue": "\"customAction\"" }, { - "id": 1930, + "id": 1927, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -4827,7 +4856,7 @@ "defaultValue": "\"data\"" }, { - "id": 1933, + "id": 1930, "name": "DataSourceSelected", "kind": 16, "kindString": "Enumeration member", @@ -4859,7 +4888,7 @@ "defaultValue": "\"dataSourceSelected\"" }, { - "id": 1983, + "id": 1980, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -4887,7 +4916,7 @@ "defaultValue": "\"delete\"" }, { - "id": 1999, + "id": 1996, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -4919,7 +4948,7 @@ "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 1952, + "id": 1949, "name": "DialogClose", "kind": 16, "kindString": "Enumeration member", @@ -4947,7 +4976,7 @@ "defaultValue": "\"dialog-close\"" }, { - "id": 1951, + "id": 1948, "name": "DialogOpen", "kind": 16, "kindString": "Enumeration member", @@ -4975,7 +5004,7 @@ "defaultValue": "\"dialog-open\"" }, { - "id": 1956, + "id": 1953, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -5004,7 +5033,7 @@ "defaultValue": "\"download\"" }, { - "id": 1959, + "id": 1956, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -5032,7 +5061,7 @@ "defaultValue": "\"downloadAsCsv\"" }, { - "id": 1958, + "id": 1955, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -5060,7 +5089,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1957, + "id": 1954, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -5088,7 +5117,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 1960, + "id": 1957, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -5116,7 +5145,7 @@ "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 1966, + "id": 1963, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -5144,7 +5173,7 @@ "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1965, + "id": 1962, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -5172,7 +5201,7 @@ "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1932, + "id": 1929, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -5216,7 +5245,7 @@ "defaultValue": "\"drillDown\"" }, { - "id": 1980, + "id": 1977, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -5244,7 +5273,7 @@ "defaultValue": "\"edit\"" }, { - "id": 1969, + "id": 1966, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -5272,7 +5301,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 1938, + "id": 1935, "name": "Error", "kind": 16, "kindString": "Enumeration member", @@ -5309,7 +5338,7 @@ "defaultValue": "\"Error\"" }, { - "id": 1986, + "id": 1983, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -5337,7 +5366,7 @@ "defaultValue": "\"explore\"" }, { - "id": 1970, + "id": 1967, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -5365,7 +5394,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 1991, + "id": 1988, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5389,7 +5418,7 @@ "defaultValue": "\"filterChanged\"" }, { - "id": 1946, + "id": 1943, "name": "GetDataClick", "kind": 16, "kindString": "Enumeration member", @@ -5417,7 +5446,7 @@ "defaultValue": "\"getDataClick\"" }, { - "id": 1927, + "id": 1924, "name": "Init", "kind": 16, "kindString": "Enumeration member", @@ -5445,7 +5474,7 @@ "defaultValue": "\"init\"" }, { - "id": 2014, + "id": 2011, "name": "LastPromptDeleted", "kind": 16, "kindString": "Enumeration member", @@ -5473,7 +5502,7 @@ "defaultValue": "\"LastPromptDeleted\"" }, { - "id": 2013, + "id": 2010, "name": "LastPromptEdited", "kind": 16, "kindString": "Enumeration member", @@ -5501,7 +5530,7 @@ "defaultValue": "\"LastPromptEdited\"" }, { - "id": 1977, + "id": 1974, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -5529,7 +5558,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 1953, + "id": 1950, "name": "LiveboardRendered", "kind": 16, "kindString": "Enumeration member", @@ -5561,7 +5590,7 @@ "defaultValue": "\"PinboardRendered\"" }, { - "id": 1929, + "id": 1926, "name": "Load", "kind": 16, "kindString": "Enumeration member", @@ -5593,7 +5622,7 @@ "defaultValue": "\"load\"" }, { - "id": 1981, + "id": 1978, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -5621,7 +5650,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 1949, + "id": 1946, "name": "NoCookieAccess", "kind": 16, "kindString": "Enumeration member", @@ -5649,7 +5678,7 @@ "defaultValue": "\"noCookieAccess\"" }, { - "id": 2003, + "id": 2000, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", @@ -5686,7 +5715,7 @@ "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 2018, + "id": 2015, "name": "OrgSwitched", "kind": 16, "kindString": "Enumeration member", @@ -5714,7 +5743,7 @@ "defaultValue": "\"orgSwitched\"" }, { - "id": 2004, + "id": 2001, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5738,7 +5767,7 @@ "defaultValue": "\"parameterChanged\"" }, { - "id": 1962, + "id": 1959, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -5766,7 +5795,7 @@ "defaultValue": "\"pin\"" }, { - "id": 1982, + "id": 1979, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -5798,7 +5827,7 @@ "defaultValue": "\"present\"" }, { - "id": 2011, + "id": 2008, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -5826,7 +5855,7 @@ "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 1931, + "id": 1928, "name": "QueryChanged", "kind": 16, "kindString": "Enumeration member", @@ -5854,7 +5883,7 @@ "defaultValue": "\"queryChanged\"" }, { - "id": 2002, + "id": 1999, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -5878,7 +5907,7 @@ "defaultValue": "\"rename\"" }, { - "id": 1998, + "id": 1995, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -5918,7 +5947,7 @@ "defaultValue": "\"resetLiveboard\"" }, { - "id": 2015, + "id": 2012, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -5946,7 +5975,7 @@ "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 1947, + "id": 1944, "name": "RouteChange", "kind": 16, "kindString": "Enumeration member", @@ -5974,7 +6003,7 @@ "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 1992, + "id": 1989, "name": "SageEmbedQuery", "kind": 16, "kindString": "Enumeration member", @@ -5998,7 +6027,7 @@ "defaultValue": "\"sageEmbedQuery\"" }, { - "id": 1993, + "id": 1990, "name": "SageWorksheetUpdated", "kind": 16, "kindString": "Enumeration member", @@ -6022,7 +6051,7 @@ "defaultValue": "\"sageWorksheetUpdated\"" }, { - "id": 1955, + "id": 1952, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -6050,7 +6079,7 @@ "defaultValue": "\"save\"" }, { - "id": 1971, + "id": 1968, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -6078,7 +6107,7 @@ "defaultValue": "\"saveAsView\"" }, { - "id": 1997, + "id": 1994, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6118,7 +6147,7 @@ "defaultValue": "\"savePersonalisedView\"" }, { - "id": 1979, + "id": 1976, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -6146,7 +6175,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 1984, + "id": 1981, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -6174,7 +6203,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 1964, + "id": 1961, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -6202,7 +6231,7 @@ "defaultValue": "\"share\"" }, { - "id": 1973, + "id": 1970, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -6230,7 +6259,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1963, + "id": 1960, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -6258,7 +6287,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2010, + "id": 2007, "name": "SpotterData", "kind": 16, "kindString": "Enumeration member", @@ -6286,7 +6315,7 @@ "defaultValue": "\"SpotterData\"" }, { - "id": 2016, + "id": 2013, "name": "SpotterInit", "kind": 16, "kindString": "Enumeration member", @@ -6314,7 +6343,7 @@ "defaultValue": "\"spotterInit\"" }, { - "id": 2012, + "id": 2009, "name": "SpotterQueryTriggered", "kind": 16, "kindString": "Enumeration member", @@ -6342,7 +6371,7 @@ "defaultValue": "\"SpotterQueryTriggered\"" }, { - "id": 2005, + "id": 2002, "name": "TableVizRendered", "kind": 16, "kindString": "Enumeration member", @@ -6371,7 +6400,7 @@ "defaultValue": "\"TableVizRendered\"" }, { - "id": 1994, + "id": 1991, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -6395,7 +6424,7 @@ "defaultValue": "\"updateConnection\"" }, { - "id": 1996, + "id": 1993, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6435,7 +6464,7 @@ "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 1968, + "id": 1965, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -6463,7 +6492,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 1937, + "id": 1934, "name": "VizPointClick", "kind": 16, "kindString": "Enumeration member", @@ -6499,7 +6528,7 @@ "defaultValue": "\"vizPointClick\"" }, { - "id": 1936, + "id": 1933, "name": "VizPointDoubleClick", "kind": 16, "kindString": "Enumeration member", @@ -6531,7 +6560,7 @@ "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 1989, + "id": 1986, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -6564,85 +6593,85 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1954, - 1934, - 1978, - 1939, - 1974, - 1961, - 2001, - 1940, - 1928, - 1985, - 1972, - 1987, - 1967, - 1995, - 2006, - 2007, - 2000, - 1988, - 1935, - 1930, - 1933, - 1983, - 1999, - 1952, 1951, - 1956, - 1959, + 1931, + 1975, + 1936, + 1971, 1958, - 1957, - 1960, - 1966, - 1965, - 1932, - 1980, + 1998, + 1937, + 1925, + 1982, 1969, - 1938, - 1986, - 1970, - 1991, - 1946, - 1927, - 2014, - 2013, - 1977, - 1953, - 1929, - 1981, - 1949, + 1984, + 1964, + 1992, 2003, - 2018, 2004, + 1997, + 1985, + 1932, + 1927, + 1930, + 1980, + 1996, + 1949, + 1948, + 1953, + 1956, + 1955, + 1954, + 1957, + 1963, 1962, - 1982, + 1929, + 1977, + 1966, + 1935, + 1983, + 1967, + 1988, + 1943, + 1924, 2011, - 1931, - 2002, - 1998, + 2010, + 1974, + 1950, + 1926, + 1978, + 1946, + 2000, 2015, - 1947, - 1992, - 1993, - 1955, - 1971, - 1997, + 2001, + 1959, 1979, - 1984, - 1964, - 1973, - 1963, - 2010, - 2016, + 2008, + 1928, + 1999, + 1995, 2012, - 2005, - 1994, - 1996, + 1944, + 1989, + 1990, + 1952, 1968, - 1937, - 1936, - 1989 + 1994, + 1976, + 1981, + 1961, + 1970, + 1960, + 2007, + 2013, + 2009, + 2002, + 1991, + 1993, + 1965, + 1934, + 1933, + 1986 ] } ], @@ -6655,7 +6684,7 @@ ] }, { - "id": 2596, + "id": 2594, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -6665,7 +6694,7 @@ }, "children": [ { - "id": 2600, + "id": 2598, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -6688,7 +6717,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2604, + "id": 2602, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6712,7 +6741,7 @@ "defaultValue": "\"create\"" }, { - "id": 2606, + "id": 2604, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -6736,7 +6765,7 @@ "defaultValue": "\"favorites\"" }, { - "id": 2598, + "id": 2596, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6759,7 +6788,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2603, + "id": 2601, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6782,7 +6811,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2599, + "id": 2597, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6805,7 +6834,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2601, + "id": 2599, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6828,7 +6857,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2597, + "id": 2595, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6851,7 +6880,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2602, + "id": 2600, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6874,7 +6903,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2605, + "id": 2603, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -6903,16 +6932,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2600, - 2604, - 2606, 2598, - 2603, - 2599, + 2602, + 2604, + 2596, 2601, 2597, - 2602, - 2605 + 2599, + 2595, + 2600, + 2603 ] } ], @@ -6925,7 +6954,7 @@ ] }, { - "id": 2856, + "id": 2854, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -6941,7 +6970,7 @@ }, "children": [ { - "id": 2857, + "id": 2855, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -6959,7 +6988,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2858, + "id": 2856, "name": "ModularWithStylingChanges", "kind": 16, "kindString": "Enumeration member", @@ -6982,8 +7011,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2857, - 2858 + 2855, + 2856 ] } ], @@ -6996,14 +7025,14 @@ ] }, { - "id": 2850, + "id": 2848, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2852, + "id": 2850, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -7018,7 +7047,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2853, + "id": 2851, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -7033,7 +7062,7 @@ "defaultValue": "\"none\"" }, { - "id": 2851, + "id": 2849, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -7053,9 +7082,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2852, - 2853, - 2851 + 2850, + 2851, + 2849 ] } ], @@ -7068,7 +7097,7 @@ ] }, { - "id": 2607, + "id": 2605, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -7084,7 +7113,7 @@ }, "children": [ { - "id": 2610, + "id": 2608, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -7102,7 +7131,7 @@ "defaultValue": "\"FAVORITE\"" }, { - "id": 2613, + "id": 2611, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -7120,7 +7149,7 @@ "defaultValue": "\"LEARNING\"" }, { - "id": 2611, + "id": 2609, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -7138,7 +7167,7 @@ "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2608, + "id": 2606, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7156,7 +7185,7 @@ "defaultValue": "\"SEARCH\"" }, { - "id": 2612, + "id": 2610, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -7174,7 +7203,7 @@ "defaultValue": "\"TRENDING\"" }, { - "id": 2609, + "id": 2607, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -7197,12 +7226,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2610, - 2613, - 2611, 2608, - 2612, - 2609 + 2611, + 2609, + 2606, + 2610, + 2607 ] } ], @@ -7215,7 +7244,7 @@ ] }, { - "id": 2019, + "id": 2016, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -7244,7 +7273,7 @@ }, "children": [ { - "id": 2030, + "id": 2027, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -7277,7 +7306,7 @@ "defaultValue": "\"addColumns\"" }, { - "id": 2085, + "id": 2082, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -7310,7 +7339,7 @@ "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2070, + "id": 2067, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -7338,7 +7367,7 @@ "defaultValue": "\"AskSage\"" }, { - "id": 2088, + "id": 2085, "name": "AskSpotter", "kind": 16, "kindString": "Enumeration member", @@ -7371,7 +7400,7 @@ "defaultValue": "\"AskSpotter\"" }, { - "id": 2047, + "id": 2044, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -7404,7 +7433,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 2044, + "id": 2041, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -7441,7 +7470,7 @@ "defaultValue": "\"createMonitor\"" }, { - "id": 2051, + "id": 2048, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -7474,7 +7503,7 @@ "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2084, + "id": 2081, "name": "DeleteLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -7502,7 +7531,7 @@ "defaultValue": "\"DeleteLastPrompt\"" }, { - "id": 2053, + "id": 2050, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -7539,7 +7568,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 2055, + "id": 2052, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -7572,7 +7601,7 @@ "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2040, + "id": 2037, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -7609,7 +7638,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2054, + "id": 2051, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -7637,7 +7666,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 2056, + "id": 2053, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -7670,7 +7699,7 @@ "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2021, + "id": 2018, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -7727,7 +7756,7 @@ "defaultValue": "\"triggerDrillDown\"" }, { - "id": 2046, + "id": 2043, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -7774,7 +7803,7 @@ "defaultValue": "\"edit\"" }, { - "id": 2081, + "id": 2078, "name": "EditLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -7807,7 +7836,7 @@ "defaultValue": "\"EditLastPrompt\"" }, { - "id": 2038, + "id": 2035, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -7835,7 +7864,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 2043, + "id": 2040, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -7868,7 +7897,7 @@ "defaultValue": "\"explore\"" }, { - "id": 2037, + "id": 2034, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -7896,7 +7925,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 2069, + "id": 2066, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -7929,7 +7958,7 @@ "defaultValue": "\"getAnswerSession\"" }, { - "id": 2063, + "id": 2060, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -7957,7 +7986,7 @@ "defaultValue": "\"getFilters\"" }, { - "id": 2024, + "id": 2021, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -7985,7 +8014,7 @@ "defaultValue": "\"GetIframeUrl\"" }, { - "id": 2074, + "id": 2071, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -8014,7 +8043,7 @@ "defaultValue": "\"GetParameters\"" }, { - "id": 2049, + "id": 2046, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -8050,7 +8079,7 @@ "defaultValue": "\"getTML\"" }, { - "id": 2065, + "id": 2062, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -8078,7 +8107,7 @@ "defaultValue": "\"getTabs\"" }, { - "id": 2034, + "id": 2031, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -8106,7 +8135,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 2041, + "id": 2038, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -8150,7 +8179,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 2045, + "id": 2042, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -8191,7 +8220,7 @@ "defaultValue": "\"manageMonitor\"" }, { - "id": 2061, + "id": 2058, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -8224,7 +8253,7 @@ "defaultValue": "\"manage-pipeline\"" }, { - "id": 2028, + "id": 2025, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -8257,7 +8286,7 @@ "defaultValue": "\"Navigate\"" }, { - "id": 2029, + "id": 2026, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -8294,7 +8323,7 @@ "defaultValue": "\"openFilter\"" }, { - "id": 2033, + "id": 2030, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -8362,7 +8391,7 @@ "defaultValue": "\"pin\"" }, { - "id": 2048, + "id": 2045, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -8395,7 +8424,7 @@ "defaultValue": "\"present\"" }, { - "id": 2082, + "id": 2079, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -8423,7 +8452,7 @@ "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 2042, + "id": 2039, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -8455,7 +8484,7 @@ "defaultValue": "\"delete\"" }, { - "id": 2031, + "id": 2028, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -8488,7 +8517,7 @@ "defaultValue": "\"removeColumn\"" }, { - "id": 2072, + "id": 2069, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8516,7 +8545,7 @@ "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 2062, + "id": 2059, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -8544,7 +8573,7 @@ "defaultValue": "\"resetSearch\"" }, { - "id": 2083, + "id": 2080, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -8572,7 +8601,7 @@ "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 2058, + "id": 2055, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -8605,7 +8634,7 @@ "defaultValue": "\"save\"" }, { - "id": 2077, + "id": 2074, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -8647,7 +8676,7 @@ "defaultValue": "\"saveAnswer\"" }, { - "id": 2035, + "id": 2032, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -8675,7 +8704,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 2036, + "id": 2033, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -8703,7 +8732,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 2020, + "id": 2017, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -8742,7 +8771,7 @@ "defaultValue": "\"search\"" }, { - "id": 2026, + "id": 2023, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -8775,7 +8804,7 @@ "defaultValue": "\"SetActiveTab\"" }, { - "id": 2067, + "id": 2064, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -8808,7 +8837,7 @@ "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 2066, + "id": 2063, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -8841,7 +8870,7 @@ "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 2025, + "id": 2022, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -8874,7 +8903,7 @@ "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 2057, + "id": 2054, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8902,7 +8931,7 @@ "defaultValue": "\"share\"" }, { - "id": 2050, + "id": 2047, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -8935,7 +8964,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2052, + "id": 2049, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -8968,7 +8997,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2080, + "id": 2077, "name": "SpotterSearch", "kind": 16, "kindString": "Enumeration member", @@ -9006,7 +9035,7 @@ "defaultValue": "\"SpotterSearch\"" }, { - "id": 2060, + "id": 2057, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -9039,7 +9068,7 @@ "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2059, + "id": 2056, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -9072,7 +9101,7 @@ "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2079, + "id": 2076, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -9105,7 +9134,7 @@ "defaultValue": "\"TransformTableVizData\"" }, { - "id": 2071, + "id": 2068, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -9133,7 +9162,7 @@ "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 2064, + "id": 2061, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -9183,7 +9212,7 @@ "defaultValue": "\"updateFilters\"" }, { - "id": 2073, + "id": 2070, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -9207,7 +9236,7 @@ "defaultValue": "\"UpdateParameters\"" }, { - "id": 2075, + "id": 2072, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -9231,7 +9260,7 @@ "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 2027, + "id": 2024, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -9269,7 +9298,7 @@ "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 2068, + "id": 2065, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -9307,7 +9336,7 @@ "defaultValue": "\"updateSageQuery\"" }, { - "id": 2039, + "id": 2036, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -9335,7 +9364,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 2032, + "id": 2029, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -9368,69 +9397,69 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2030, + 2027, + 2082, + 2067, 2085, - 2070, - 2088, - 2047, 2044, + 2041, + 2048, + 2081, + 2050, + 2052, + 2037, 2051, - 2084, 2053, - 2055, + 2018, + 2043, + 2078, + 2035, 2040, - 2054, - 2056, + 2034, + 2066, + 2060, 2021, + 2071, 2046, - 2081, + 2062, + 2031, 2038, - 2043, - 2037, - 2069, - 2063, - 2024, - 2074, - 2049, - 2065, - 2034, - 2041, - 2045, - 2061, - 2028, - 2029, - 2033, - 2048, - 2082, 2042, - 2031, - 2072, - 2062, - 2083, 2058, - 2077, - 2035, - 2036, - 2020, - 2026, - 2067, - 2066, 2025, - 2057, - 2050, - 2052, - 2080, - 2060, - 2059, + 2026, + 2030, + 2045, 2079, - 2071, + 2039, + 2028, + 2069, + 2059, + 2080, + 2055, + 2074, + 2032, + 2033, + 2017, + 2023, 2064, - 2073, - 2075, - 2027, + 2063, + 2022, + 2054, + 2047, + 2049, + 2077, + 2057, + 2056, + 2076, 2068, - 2039, - 2032 + 2061, + 2070, + 2072, + 2024, + 2065, + 2036, + 2029 ] } ], @@ -9443,7 +9472,7 @@ ] }, { - "id": 2859, + "id": 2857, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -9459,7 +9488,7 @@ }, "children": [ { - "id": 2860, + "id": 2858, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -9477,7 +9506,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2861, + "id": 2859, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -9500,8 +9529,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2860, - 2861 + 2858, + 2859 ] } ], @@ -9514,7 +9543,7 @@ ] }, { - "id": 2892, + "id": 2890, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -9530,7 +9559,7 @@ }, "children": [ { - "id": 2895, + "id": 2893, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -9548,7 +9577,7 @@ "defaultValue": "\"AUTHOR\"" }, { - "id": 2896, + "id": 2894, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -9566,7 +9595,7 @@ "defaultValue": "\"DATE_SORT\"" }, { - "id": 2893, + "id": 2891, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -9584,7 +9613,7 @@ "defaultValue": "\"FAVOURITE\"" }, { - "id": 2897, + "id": 2895, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -9602,7 +9631,7 @@ "defaultValue": "\"SHARE\"" }, { - "id": 2894, + "id": 2892, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -9625,11 +9654,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2895, - 2896, 2893, - 2897, - 2894 + 2894, + 2891, + 2895, + 2892 ] } ], @@ -9642,7 +9671,7 @@ ] }, { - "id": 2827, + "id": 2825, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -9652,7 +9681,7 @@ }, "children": [ { - "id": 2832, + "id": 2830, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -9673,14 +9702,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5892, + "line": 5902, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2829, + "id": 2827, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -9701,14 +9730,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5853, + "line": 5863, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2831, + "id": 2829, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -9729,14 +9758,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5878, + "line": 5888, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2828, + "id": 2826, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -9757,14 +9786,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5841, + "line": 5851, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2833, + "id": 2831, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -9785,14 +9814,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5904, + "line": 5914, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2830, + "id": 2828, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -9813,7 +9842,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5865, + "line": 5875, "character": 4 } ], @@ -9825,25 +9854,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2832, + 2830, + 2827, 2829, + 2826, 2831, - 2828, - 2833, - 2830 + 2828 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5828, + "line": 5838, "character": 12 } ] }, { - "id": 1885, + "id": 1882, "name": "Page", "kind": 4, "kindString": "Enumeration", @@ -9853,7 +9882,7 @@ }, "children": [ { - "id": 1888, + "id": 1885, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -9871,7 +9900,7 @@ "defaultValue": "\"answers\"" }, { - "id": 1891, + "id": 1888, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -9889,7 +9918,7 @@ "defaultValue": "\"data\"" }, { - "id": 1886, + "id": 1883, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -9907,7 +9936,7 @@ "defaultValue": "\"home\"" }, { - "id": 1889, + "id": 1886, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -9925,7 +9954,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 1893, + "id": 1890, "name": "Monitor", "kind": 16, "kindString": "Enumeration member", @@ -9943,7 +9972,7 @@ "defaultValue": "\"monitor\"" }, { - "id": 1887, + "id": 1884, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -9961,7 +9990,7 @@ "defaultValue": "\"search\"" }, { - "id": 1892, + "id": 1889, "name": "SpotIQ", "kind": 16, "kindString": "Enumeration member", @@ -9984,13 +10013,13 @@ "title": "Enumeration members", "kind": 16, "children": [ + 1885, 1888, - 1891, + 1883, 1886, - 1889, - 1893, - 1887, - 1892 + 1890, + 1884, + 1889 ] } ], @@ -10003,14 +10032,14 @@ ] }, { - "id": 2585, + "id": 2583, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2586, + "id": 2584, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -10018,14 +10047,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5719, + "line": 5729, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2588, + "id": 2586, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10033,14 +10062,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5721, + "line": 5731, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2587, + "id": 2585, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10048,14 +10077,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5720, + "line": 5730, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2589, + "id": 2587, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10063,7 +10092,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5722, + "line": 5732, "character": 4 } ], @@ -10075,23 +10104,23 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2584, 2586, - 2588, - 2587, - 2589 + 2585, + 2587 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5718, + "line": 5728, "character": 12 } ] }, { - "id": 2854, + "id": 2852, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -10107,7 +10136,7 @@ }, "children": [ { - "id": 2855, + "id": 2853, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -10130,7 +10159,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2855 + 2853 ] } ], @@ -10143,7 +10172,7 @@ ] }, { - "id": 1910, + "id": 1907, "name": "RuntimeFilterOp", "kind": 4, "kindString": "Enumeration", @@ -10153,7 +10182,7 @@ }, "children": [ { - "id": 1918, + "id": 1915, "name": "BEGINS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -10171,7 +10200,7 @@ "defaultValue": "\"BEGINS_WITH\"" }, { - "id": 1923, + "id": 1920, "name": "BW", "kind": 16, "kindString": "Enumeration member", @@ -10189,7 +10218,7 @@ "defaultValue": "\"BW\"" }, { - "id": 1922, + "id": 1919, "name": "BW_INC", "kind": 16, "kindString": "Enumeration member", @@ -10207,7 +10236,7 @@ "defaultValue": "\"BW_INC\"" }, { - "id": 1920, + "id": 1917, "name": "BW_INC_MAX", "kind": 16, "kindString": "Enumeration member", @@ -10225,7 +10254,7 @@ "defaultValue": "\"BW_INC_MAX\"" }, { - "id": 1921, + "id": 1918, "name": "BW_INC_MIN", "kind": 16, "kindString": "Enumeration member", @@ -10243,7 +10272,7 @@ "defaultValue": "\"BW_INC_MIN\"" }, { - "id": 1917, + "id": 1914, "name": "CONTAINS", "kind": 16, "kindString": "Enumeration member", @@ -10261,7 +10290,7 @@ "defaultValue": "\"CONTAINS\"" }, { - "id": 1919, + "id": 1916, "name": "ENDS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -10279,7 +10308,7 @@ "defaultValue": "\"ENDS_WITH\"" }, { - "id": 1911, + "id": 1908, "name": "EQ", "kind": 16, "kindString": "Enumeration member", @@ -10297,7 +10326,7 @@ "defaultValue": "\"EQ\"" }, { - "id": 1916, + "id": 1913, "name": "GE", "kind": 16, "kindString": "Enumeration member", @@ -10315,7 +10344,7 @@ "defaultValue": "\"GE\"" }, { - "id": 1915, + "id": 1912, "name": "GT", "kind": 16, "kindString": "Enumeration member", @@ -10333,7 +10362,7 @@ "defaultValue": "\"GT\"" }, { - "id": 1924, + "id": 1921, "name": "IN", "kind": 16, "kindString": "Enumeration member", @@ -10351,7 +10380,7 @@ "defaultValue": "\"IN\"" }, { - "id": 1914, + "id": 1911, "name": "LE", "kind": 16, "kindString": "Enumeration member", @@ -10369,7 +10398,7 @@ "defaultValue": "\"LE\"" }, { - "id": 1913, + "id": 1910, "name": "LT", "kind": 16, "kindString": "Enumeration member", @@ -10387,7 +10416,7 @@ "defaultValue": "\"LT\"" }, { - "id": 1912, + "id": 1909, "name": "NE", "kind": 16, "kindString": "Enumeration member", @@ -10405,7 +10434,7 @@ "defaultValue": "\"NE\"" }, { - "id": 1925, + "id": 1922, "name": "NOT_IN", "kind": 16, "kindString": "Enumeration member", @@ -10428,21 +10457,21 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1918, - 1923, - 1922, + 1915, 1920, - 1921, - 1917, 1919, - 1911, - 1916, - 1915, - 1924, + 1917, + 1918, 1914, + 1916, + 1908, 1913, 1912, - 1925 + 1921, + 1911, + 1910, + 1909, + 1922 ] } ], @@ -10455,14 +10484,14 @@ ] }, { - "id": 2885, + "id": 2883, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2890, + "id": 2888, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -10477,7 +10506,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2889, + "id": 2887, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -10492,7 +10521,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2888, + "id": 2886, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -10507,7 +10536,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2891, + "id": 2889, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -10522,7 +10551,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2886, + "id": 2884, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -10537,7 +10566,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2887, + "id": 2885, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -10557,12 +10586,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2890, - 2889, 2888, - 2891, + 2887, 2886, - 2887 + 2889, + 2884, + 2885 ] } ], @@ -10575,7 +10604,7 @@ ] }, { - "id": 1802, + "id": 1799, "name": "AnswerService", "kind": 128, "kindString": "Class", @@ -10604,7 +10633,7 @@ }, "children": [ { - "id": 1803, + "id": 1800, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -10621,7 +10650,7 @@ ], "signatures": [ { - "id": 1804, + "id": 1801, "name": "new AnswerService", "kind": 16384, "kindString": "Constructor signature", @@ -10631,7 +10660,7 @@ }, "parameters": [ { - "id": 1805, + "id": 1802, "name": "session", "kind": 32768, "kindString": "Parameter", @@ -10639,12 +10668,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1875, + "id": 1872, "name": "SessionInterface" } }, { - "id": 1806, + "id": 1803, "name": "answer", "kind": 32768, "kindString": "Parameter", @@ -10656,7 +10685,7 @@ } }, { - "id": 1807, + "id": 1804, "name": "thoughtSpotHost", "kind": 32768, "kindString": "Parameter", @@ -10668,7 +10697,7 @@ } }, { - "id": 1808, + "id": 1805, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -10682,7 +10711,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2862, + "id": 2860, "name": "VizPoint" } } @@ -10690,14 +10719,14 @@ ], "type": { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } } ] }, { - "id": 1817, + "id": 1814, "name": "addColumns", "kind": 2048, "kindString": "Method", @@ -10713,7 +10742,7 @@ ], "signatures": [ { - "id": 1818, + "id": 1815, "name": "addColumns", "kind": 4096, "kindString": "Call signature", @@ -10724,7 +10753,7 @@ }, "parameters": [ { - "id": 1819, + "id": 1816, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -10753,7 +10782,7 @@ ] }, { - "id": 1820, + "id": 1817, "name": "addColumnsByName", "kind": 2048, "kindString": "Method", @@ -10769,7 +10798,7 @@ ], "signatures": [ { - "id": 1821, + "id": 1818, "name": "addColumnsByName", "kind": 4096, "kindString": "Call signature", @@ -10785,7 +10814,7 @@ }, "parameters": [ { - "id": 1822, + "id": 1819, "name": "columnNames", "kind": 32768, "kindString": "Parameter", @@ -10814,7 +10843,7 @@ ] }, { - "id": 1869, + "id": 1866, "name": "addDisplayedVizToLiveboard", "kind": 2048, "kindString": "Method", @@ -10830,14 +10859,14 @@ ], "signatures": [ { - "id": 1870, + "id": 1867, "name": "addDisplayedVizToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1871, + "id": 1868, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -10862,7 +10891,7 @@ ] }, { - "id": 1823, + "id": 1820, "name": "addFilter", "kind": 2048, "kindString": "Method", @@ -10878,7 +10907,7 @@ ], "signatures": [ { - "id": 1824, + "id": 1821, "name": "addFilter", "kind": 4096, "kindString": "Call signature", @@ -10889,7 +10918,7 @@ }, "parameters": [ { - "id": 1825, + "id": 1822, "name": "columnName", "kind": 32768, "kindString": "Parameter", @@ -10901,7 +10930,7 @@ } }, { - "id": 1826, + "id": 1823, "name": "operator", "kind": 32768, "kindString": "Parameter", @@ -10909,12 +10938,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1910, + "id": 1907, "name": "RuntimeFilterOp" } }, { - "id": 1827, + "id": 1824, "name": "values", "kind": 32768, "kindString": "Parameter", @@ -10960,7 +10989,7 @@ ] }, { - "id": 1859, + "id": 1856, "name": "executeQuery", "kind": 2048, "kindString": "Method", @@ -10976,7 +11005,7 @@ ], "signatures": [ { - "id": 1860, + "id": 1857, "name": "executeQuery", "kind": 4096, "kindString": "Call signature", @@ -10987,7 +11016,7 @@ }, "parameters": [ { - "id": 1861, + "id": 1858, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -11001,7 +11030,7 @@ } }, { - "id": 1862, + "id": 1859, "name": "variables", "kind": 32768, "kindString": "Parameter", @@ -11029,7 +11058,7 @@ ] }, { - "id": 1837, + "id": 1834, "name": "fetchCSVBlob", "kind": 2048, "kindString": "Method", @@ -11045,7 +11074,7 @@ ], "signatures": [ { - "id": 1838, + "id": 1835, "name": "fetchCSVBlob", "kind": 4096, "kindString": "Call signature", @@ -11056,7 +11085,7 @@ }, "parameters": [ { - "id": 1839, + "id": 1836, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11069,7 +11098,7 @@ "defaultValue": "'en-us'" }, { - "id": 1840, + "id": 1837, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -11098,7 +11127,7 @@ ] }, { - "id": 1830, + "id": 1827, "name": "fetchData", "kind": 2048, "kindString": "Method", @@ -11114,7 +11143,7 @@ ], "signatures": [ { - "id": 1831, + "id": 1828, "name": "fetchData", "kind": 4096, "kindString": "Call signature", @@ -11125,7 +11154,7 @@ }, "parameters": [ { - "id": 1832, + "id": 1829, "name": "offset", "kind": 32768, "kindString": "Parameter", @@ -11138,7 +11167,7 @@ "defaultValue": "0" }, { - "id": 1833, + "id": 1830, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -11157,14 +11186,14 @@ { "type": "reflection", "declaration": { - "id": 1834, + "id": 1831, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1835, + "id": 1832, "name": "columns", "kind": 1024, "kindString": "Property", @@ -11175,7 +11204,7 @@ } }, { - "id": 1836, + "id": 1833, "name": "data", "kind": 1024, "kindString": "Property", @@ -11191,8 +11220,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1835, - 1836 + 1832, + 1833 ] } ] @@ -11205,7 +11234,7 @@ ] }, { - "id": 1841, + "id": 1838, "name": "fetchPNGBlob", "kind": 2048, "kindString": "Method", @@ -11221,7 +11250,7 @@ ], "signatures": [ { - "id": 1842, + "id": 1839, "name": "fetchPNGBlob", "kind": 4096, "kindString": "Call signature", @@ -11232,7 +11261,7 @@ }, "parameters": [ { - "id": 1843, + "id": 1840, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11245,7 +11274,7 @@ "defaultValue": "'en-us'" }, { - "id": 1844, + "id": 1841, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -11260,7 +11289,7 @@ "defaultValue": "false" }, { - "id": 1845, + "id": 1842, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -11289,7 +11318,7 @@ ] }, { - "id": 1865, + "id": 1862, "name": "getAnswer", "kind": 2048, "kindString": "Method", @@ -11305,7 +11334,7 @@ ], "signatures": [ { - "id": 1866, + "id": 1863, "name": "getAnswer", "kind": 4096, "kindString": "Call signature", @@ -11324,7 +11353,7 @@ ] }, { - "id": 1846, + "id": 1843, "name": "getFetchCSVBlobUrl", "kind": 2048, "kindString": "Method", @@ -11340,7 +11369,7 @@ ], "signatures": [ { - "id": 1847, + "id": 1844, "name": "getFetchCSVBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -11351,7 +11380,7 @@ }, "parameters": [ { - "id": 1848, + "id": 1845, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11364,7 +11393,7 @@ "defaultValue": "'en-us'" }, { - "id": 1849, + "id": 1846, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -11385,7 +11414,7 @@ ] }, { - "id": 1850, + "id": 1847, "name": "getFetchPNGBlobUrl", "kind": 2048, "kindString": "Method", @@ -11401,7 +11430,7 @@ ], "signatures": [ { - "id": 1851, + "id": 1848, "name": "getFetchPNGBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -11411,7 +11440,7 @@ }, "parameters": [ { - "id": 1852, + "id": 1849, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11424,7 +11453,7 @@ "defaultValue": "'en-us'" }, { - "id": 1853, + "id": 1850, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -11437,7 +11466,7 @@ "defaultValue": "false" }, { - "id": 1854, + "id": 1851, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -11460,7 +11489,7 @@ ] }, { - "id": 1828, + "id": 1825, "name": "getSQLQuery", "kind": 2048, "kindString": "Method", @@ -11476,7 +11505,7 @@ ], "signatures": [ { - "id": 1829, + "id": 1826, "name": "getSQLQuery", "kind": 4096, "kindString": "Call signature", @@ -11495,7 +11524,7 @@ ] }, { - "id": 1863, + "id": 1860, "name": "getSession", "kind": 2048, "kindString": "Method", @@ -11511,7 +11540,7 @@ ], "signatures": [ { - "id": 1864, + "id": 1861, "name": "getSession", "kind": 4096, "kindString": "Call signature", @@ -11522,14 +11551,14 @@ }, "type": { "type": "reference", - "id": 1875, + "id": 1872, "name": "SessionInterface" } } ] }, { - "id": 1812, + "id": 1809, "name": "getSourceDetail", "kind": 2048, "kindString": "Method", @@ -11545,7 +11574,7 @@ ], "signatures": [ { - "id": 1813, + "id": 1810, "name": "getSourceDetail", "kind": 4096, "kindString": "Call signature", @@ -11567,7 +11596,7 @@ ] }, { - "id": 1867, + "id": 1864, "name": "getTML", "kind": 2048, "kindString": "Method", @@ -11583,7 +11612,7 @@ ], "signatures": [ { - "id": 1868, + "id": 1865, "name": "getTML", "kind": 4096, "kindString": "Call signature", @@ -11602,7 +11631,7 @@ ] }, { - "id": 1855, + "id": 1852, "name": "getUnderlyingDataForPoint", "kind": 2048, "kindString": "Method", @@ -11618,7 +11647,7 @@ ], "signatures": [ { - "id": 1856, + "id": 1853, "name": "getUnderlyingDataForPoint", "kind": 4096, "kindString": "Call signature", @@ -11638,7 +11667,7 @@ }, "parameters": [ { - "id": 1857, + "id": 1854, "name": "outputColumnNames", "kind": 32768, "kindString": "Parameter", @@ -11653,7 +11682,7 @@ } }, { - "id": 1858, + "id": 1855, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -11665,7 +11694,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1882, + "id": 1879, "name": "UnderlyingDataPoint" } } @@ -11676,7 +11705,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } ], @@ -11686,7 +11715,7 @@ ] }, { - "id": 1814, + "id": 1811, "name": "removeColumns", "kind": 2048, "kindString": "Method", @@ -11702,7 +11731,7 @@ ], "signatures": [ { - "id": 1815, + "id": 1812, "name": "removeColumns", "kind": 4096, "kindString": "Call signature", @@ -11713,7 +11742,7 @@ }, "parameters": [ { - "id": 1816, + "id": 1813, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -11742,7 +11771,7 @@ ] }, { - "id": 1872, + "id": 1869, "name": "setTMLOverride", "kind": 2048, "kindString": "Method", @@ -11758,14 +11787,14 @@ ], "signatures": [ { - "id": 1873, + "id": 1870, "name": "setTMLOverride", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1874, + "id": 1871, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -11789,31 +11818,31 @@ "title": "Constructors", "kind": 512, "children": [ - 1803 + 1800 ] }, { "title": "Methods", "kind": 2048, "children": [ + 1814, 1817, + 1866, 1820, - 1869, - 1823, - 1859, - 1837, - 1830, - 1841, - 1865, - 1846, - 1850, - 1828, - 1863, - 1812, - 1867, - 1855, - 1814, - 1872 + 1856, + 1834, + 1827, + 1838, + 1862, + 1843, + 1847, + 1825, + 1860, + 1809, + 1864, + 1852, + 1811, + 1869 ] } ], @@ -11826,7 +11855,7 @@ ] }, { - "id": 989, + "id": 986, "name": "AppEmbed", "kind": 128, "kindString": "Class", @@ -11842,7 +11871,7 @@ }, "children": [ { - "id": 990, + "id": 987, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -11856,40 +11885,40 @@ ], "signatures": [ { - "id": 991, + "id": 988, "name": "new AppEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 992, + "id": 989, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2614, + "id": 2612, "name": "DOMSelector" } }, { - "id": 993, + "id": 990, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2502, + "id": 2500, "name": "AppViewConfig" } } ], "type": { "type": "reference", - "id": 989, + "id": 986, "name": "AppEmbed" }, "overwrites": { @@ -11904,7 +11933,7 @@ } }, { - "id": 1027, + "id": 1024, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -11920,7 +11949,7 @@ ], "signatures": [ { - "id": 1028, + "id": 1025, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -11950,7 +11979,7 @@ } }, { - "id": 1196, + "id": 1193, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -11966,7 +11995,7 @@ ], "signatures": [ { - "id": 1197, + "id": 1194, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -11982,7 +12011,7 @@ }, "parameters": [ { - "id": 1198, + "id": 1195, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -12003,7 +12032,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } ], @@ -12021,7 +12050,7 @@ } }, { - "id": 1004, + "id": 1001, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -12037,7 +12066,7 @@ ], "signatures": [ { - "id": 1005, + "id": 1002, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -12053,7 +12082,7 @@ ] }, { - "id": 1165, + "id": 1162, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -12069,7 +12098,7 @@ ], "signatures": [ { - "id": 1166, + "id": 1163, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -12090,7 +12119,7 @@ } }, { - "id": 1191, + "id": 1188, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -12106,7 +12135,7 @@ ], "signatures": [ { - "id": 1192, + "id": 1189, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -12128,14 +12157,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1193, + "id": 1190, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1195, + "id": 1192, "name": "child", "kind": 1024, "kindString": "Property", @@ -12147,7 +12176,7 @@ "defaultValue": "..." }, { - "id": 1194, + "id": 1191, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -12164,8 +12193,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1195, - 1194 + 1192, + 1191 ] } ] @@ -12183,7 +12212,7 @@ } }, { - "id": 1173, + "id": 1170, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -12199,7 +12228,7 @@ ], "signatures": [ { - "id": 1174, + "id": 1171, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -12215,7 +12244,7 @@ }, "parameters": [ { - "id": 1175, + "id": 1172, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -12223,20 +12252,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1176, + "id": 1173, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1177, + "id": 1174, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1178, + "id": 1175, "name": "key", "kind": 32768, "flags": {}, @@ -12281,7 +12310,7 @@ } }, { - "id": 1179, + "id": 1176, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -12297,7 +12326,7 @@ ], "signatures": [ { - "id": 1180, + "id": 1177, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -12318,7 +12347,7 @@ } }, { - "id": 1189, + "id": 1186, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -12334,7 +12363,7 @@ ], "signatures": [ { - "id": 1190, + "id": 1187, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -12358,7 +12387,7 @@ } }, { - "id": 1023, + "id": 1020, "name": "navigateToPage", "kind": 2048, "kindString": "Method", @@ -12374,7 +12403,7 @@ ], "signatures": [ { - "id": 1024, + "id": 1021, "name": "navigateToPage", "kind": 4096, "kindString": "Call signature", @@ -12390,7 +12419,7 @@ }, "parameters": [ { - "id": 1025, + "id": 1022, "name": "path", "kind": 32768, "kindString": "Parameter", @@ -12413,7 +12442,7 @@ } }, { - "id": 1026, + "id": 1023, "name": "noReload", "kind": 32768, "kindString": "Parameter", @@ -12436,7 +12465,7 @@ ] }, { - "id": 1136, + "id": 1133, "name": "off", "kind": 2048, "kindString": "Method", @@ -12452,7 +12481,7 @@ ], "signatures": [ { - "id": 1137, + "id": 1134, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -12468,7 +12497,7 @@ }, "parameters": [ { - "id": 1138, + "id": 1135, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12478,12 +12507,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 1139, + "id": 1136, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -12493,7 +12522,7 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2616, "name": "MessageCallback" } } @@ -12514,7 +12543,7 @@ } }, { - "id": 1042, + "id": 1039, "name": "on", "kind": 2048, "kindString": "Method", @@ -12530,7 +12559,7 @@ ], "signatures": [ { - "id": 1043, + "id": 1040, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -12553,38 +12582,38 @@ }, "parameters": [ { - "id": 1044, + "id": 1041, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 1045, + "id": 1042, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2618, + "id": 2616, "name": "MessageCallback" } }, { - "id": 1046, + "id": 1043, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2615, + "id": 2613, "name": "MessageOptions" }, "defaultValue": "..." @@ -12606,7 +12635,7 @@ } }, { - "id": 1169, + "id": 1166, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -12622,7 +12651,7 @@ ], "signatures": [ { - "id": 1170, + "id": 1167, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -12632,7 +12661,7 @@ }, "parameters": [ { - "id": 1171, + "id": 1168, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -12647,7 +12676,7 @@ "defaultValue": "false" }, { - "id": 1172, + "id": 1169, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -12681,7 +12710,7 @@ } }, { - "id": 1181, + "id": 1178, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -12697,7 +12726,7 @@ ], "signatures": [ { - "id": 1182, + "id": 1179, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -12734,7 +12763,7 @@ } }, { - "id": 1035, + "id": 1032, "name": "render", "kind": 2048, "kindString": "Method", @@ -12750,7 +12779,7 @@ ], "signatures": [ { - "id": 1036, + "id": 1033, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -12763,7 +12792,7 @@ "typeArguments": [ { "type": "reference", - "id": 989, + "id": 986, "name": "AppEmbed" } ], @@ -12781,7 +12810,7 @@ } }, { - "id": 1185, + "id": 1182, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -12797,7 +12826,7 @@ ], "signatures": [ { - "id": 1186, + "id": 1183, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -12827,7 +12856,7 @@ } }, { - "id": 1187, + "id": 1184, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -12843,7 +12872,7 @@ ], "signatures": [ { - "id": 1188, + "id": 1185, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -12873,7 +12902,7 @@ } }, { - "id": 1154, + "id": 1151, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -12889,7 +12918,7 @@ ], "signatures": [ { - "id": 1155, + "id": 1152, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -12900,19 +12929,19 @@ }, "typeParameter": [ { - "id": 1156, + "id": 1153, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2016, "name": "HostEvent" } }, { - "id": 1157, + "id": 1154, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -12921,7 +12950,7 @@ ], "parameters": [ { - "id": 1158, + "id": 1155, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12935,7 +12964,7 @@ } }, { - "id": 1159, + "id": 1156, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -12992,7 +13021,7 @@ } }, { - "id": 1160, + "id": 1157, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -13008,7 +13037,7 @@ ], "signatures": [ { - "id": 1161, + "id": 1158, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -13019,21 +13048,21 @@ }, "typeParameter": [ { - "id": 1162, + "id": 1159, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2885, + "id": 2883, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1163, + "id": 1160, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -13047,7 +13076,7 @@ } }, { - "id": 1164, + "id": 1161, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -13100,31 +13129,31 @@ "title": "Constructors", "kind": 512, "children": [ - 990 + 987 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1027, - 1196, - 1004, - 1165, - 1191, - 1173, - 1179, - 1189, - 1023, - 1136, - 1042, - 1169, - 1181, - 1035, - 1185, - 1187, - 1154, - 1160 + 1024, + 1193, + 1001, + 1162, + 1188, + 1170, + 1176, + 1186, + 1020, + 1133, + 1039, + 1166, + 1178, + 1032, + 1182, + 1184, + 1151, + 1157 ] } ], @@ -13143,7 +13172,7 @@ ] }, { - "id": 1289, + "id": 1286, "name": "BodylessConversation", "kind": 128, "kindString": "Class", @@ -13167,7 +13196,7 @@ }, "children": [ { - "id": 1290, + "id": 1287, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -13181,45 +13210,45 @@ ], "signatures": [ { - "id": 1291, + "id": 1288, "name": "new BodylessConversation", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1292, + "id": 1289, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1260, + "id": 1257, "name": "BodylessConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1289, + "id": 1286, "name": "BodylessConversation" }, "overwrites": { "type": "reference", - "id": 1201, + "id": 1198, "name": "SpotterAgentEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1200, + "id": 1197, "name": "SpotterAgentEmbed.constructor" } }, { - "id": 1293, + "id": 1290, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -13235,14 +13264,14 @@ ], "signatures": [ { - "id": 1294, + "id": 1291, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1295, + "id": 1292, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -13262,14 +13291,14 @@ { "type": "reflection", "declaration": { - "id": 1296, + "id": 1293, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1298, + "id": 1295, "name": "container", "kind": 1024, "kindString": "Property", @@ -13280,7 +13309,7 @@ } }, { - "id": 1297, + "id": 1294, "name": "error", "kind": 1024, "kindString": "Property", @@ -13291,7 +13320,7 @@ } }, { - "id": 1299, + "id": 1296, "name": "viz", "kind": 1024, "kindString": "Property", @@ -13308,9 +13337,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1298, - 1297, - 1299 + 1295, + 1294, + 1296 ] } ] @@ -13319,14 +13348,14 @@ { "type": "reflection", "declaration": { - "id": 1300, + "id": 1297, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1301, + "id": 1298, "name": "container", "kind": 1024, "kindString": "Property", @@ -13337,7 +13366,7 @@ } }, { - "id": 1303, + "id": 1300, "name": "error", "kind": 1024, "kindString": "Property", @@ -13348,7 +13377,7 @@ } }, { - "id": 1302, + "id": 1299, "name": "viz", "kind": 1024, "kindString": "Property", @@ -13365,9 +13394,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1301, - 1303, - 1302 + 1298, + 1300, + 1299 ] } ] @@ -13380,19 +13409,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1205, + "id": 1202, "name": "SpotterAgentEmbed.sendMessage" } } ], "inheritedFrom": { "type": "reference", - "id": 1204, + "id": 1201, "name": "SpotterAgentEmbed.sendMessage" } }, { - "id": 1304, + "id": 1301, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -13408,7 +13437,7 @@ ], "signatures": [ { - "id": 1305, + "id": 1302, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -13419,7 +13448,7 @@ }, "parameters": [ { - "id": 1306, + "id": 1303, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -13442,14 +13471,14 @@ { "type": "reflection", "declaration": { - "id": 1307, + "id": 1304, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1309, + "id": 1306, "name": "data", "kind": 1024, "kindString": "Property", @@ -13461,7 +13490,7 @@ "defaultValue": "..." }, { - "id": 1308, + "id": 1305, "name": "error", "kind": 1024, "kindString": "Property", @@ -13477,8 +13506,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1309, - 1308 + 1306, + 1305 ] } ] @@ -13487,14 +13516,14 @@ { "type": "reflection", "declaration": { - "id": 1310, + "id": 1307, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1311, + "id": 1308, "name": "data", "kind": 1024, "kindString": "Property", @@ -13502,14 +13531,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1312, + "id": 1309, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1318, + "id": 1315, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -13521,7 +13550,7 @@ "defaultValue": "..." }, { - "id": 1317, + "id": 1314, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -13533,7 +13562,7 @@ "defaultValue": "..." }, { - "id": 1313, + "id": 1310, "name": "convId", "kind": 1024, "kindString": "Property", @@ -13545,7 +13574,7 @@ "defaultValue": "..." }, { - "id": 1316, + "id": 1313, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -13557,7 +13586,7 @@ "defaultValue": "..." }, { - "id": 1314, + "id": 1311, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -13569,7 +13598,7 @@ "defaultValue": "..." }, { - "id": 1315, + "id": 1312, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -13586,12 +13615,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1318, - 1317, - 1313, - 1316, + 1315, 1314, - 1315 + 1310, + 1313, + 1311, + 1312 ] } ] @@ -13600,7 +13629,7 @@ "defaultValue": "..." }, { - "id": 1319, + "id": 1316, "name": "error", "kind": 1024, "kindString": "Property", @@ -13616,8 +13645,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1311, - 1319 + 1308, + 1316 ] } ] @@ -13630,14 +13659,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1216, + "id": 1213, "name": "SpotterAgentEmbed.sendMessageData" } } ], "inheritedFrom": { "type": "reference", - "id": 1215, + "id": 1212, "name": "SpotterAgentEmbed.sendMessageData" } } @@ -13647,15 +13676,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1290 + 1287 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1293, - 1304 + 1290, + 1301 ] } ], @@ -13669,13 +13698,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1199, + "id": 1196, "name": "SpotterAgentEmbed" } ] }, { - "id": 1566, + "id": 1563, "name": "ConversationEmbed", "kind": 128, "kindString": "Class", @@ -13703,7 +13732,7 @@ }, "children": [ { - "id": 1567, + "id": 1564, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -13717,14 +13746,14 @@ ], "signatures": [ { - "id": 1568, + "id": 1565, "name": "new ConversationEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1569, + "id": 1566, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -13735,38 +13764,38 @@ } }, { - "id": 1570, + "id": 1567, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1526, + "id": 1523, "name": "ConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1566, + "id": 1563, "name": "ConversationEmbed" }, "overwrites": { "type": "reference", - "id": 1322, + "id": 1319, "name": "SpotterEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1321, + "id": 1318, "name": "SpotterEmbed.constructor" } }, { - "id": 1710, + "id": 1707, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -13782,7 +13811,7 @@ ], "signatures": [ { - "id": 1711, + "id": 1708, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -13802,19 +13831,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1465, + "id": 1462, "name": "SpotterEmbed.destroy" } } ], "inheritedFrom": { "type": "reference", - "id": 1464, + "id": 1461, "name": "SpotterEmbed.destroy" } }, { - "id": 1729, + "id": 1726, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -13830,7 +13859,7 @@ ], "signatures": [ { - "id": 1730, + "id": 1727, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -13846,7 +13875,7 @@ }, "parameters": [ { - "id": 1731, + "id": 1728, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -13867,7 +13896,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } ], @@ -13875,19 +13904,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1484, + "id": 1481, "name": "SpotterEmbed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "id": 1483, + "id": 1480, "name": "SpotterEmbed.getAnswerService" } }, { - "id": 1574, + "id": 1571, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -13903,7 +13932,7 @@ ], "signatures": [ { - "id": 1575, + "id": 1572, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -13914,19 +13943,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1329, + "id": 1326, "name": "SpotterEmbed.getIframeSrc" } } ], "inheritedFrom": { "type": "reference", - "id": 1328, + "id": 1325, "name": "SpotterEmbed.getIframeSrc" } }, { - "id": 1724, + "id": 1721, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -13942,7 +13971,7 @@ ], "signatures": [ { - "id": 1725, + "id": 1722, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -13964,14 +13993,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1726, + "id": 1723, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1728, + "id": 1725, "name": "child", "kind": 1024, "kindString": "Property", @@ -13983,7 +14012,7 @@ "defaultValue": "..." }, { - "id": 1727, + "id": 1724, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -14000,8 +14029,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1728, - 1727 + 1725, + 1724 ] } ] @@ -14009,19 +14038,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1479, + "id": 1476, "name": "SpotterEmbed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "id": 1478, + "id": 1475, "name": "SpotterEmbed.getPreRenderIds" } }, { - "id": 1704, + "id": 1701, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -14037,7 +14066,7 @@ ], "signatures": [ { - "id": 1705, + "id": 1702, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -14053,7 +14082,7 @@ }, "parameters": [ { - "id": 1706, + "id": 1703, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -14061,20 +14090,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1707, + "id": 1704, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1708, + "id": 1705, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1709, + "id": 1706, "name": "key", "kind": 32768, "flags": {}, @@ -14109,19 +14138,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1459, + "id": 1456, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "id": 1458, + "id": 1455, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } }, { - "id": 1712, + "id": 1709, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -14137,7 +14166,7 @@ ], "signatures": [ { - "id": 1713, + "id": 1710, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -14148,19 +14177,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1467, + "id": 1464, "name": "SpotterEmbed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "id": 1466, + "id": 1463, "name": "SpotterEmbed.getUnderlyingFrameElement" } }, { - "id": 1722, + "id": 1719, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -14176,7 +14205,7 @@ ], "signatures": [ { - "id": 1723, + "id": 1720, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -14190,19 +14219,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1477, + "id": 1474, "name": "SpotterEmbed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1476, + "id": 1473, "name": "SpotterEmbed.hidePreRender" } }, { - "id": 1669, + "id": 1666, "name": "off", "kind": 2048, "kindString": "Method", @@ -14218,7 +14247,7 @@ ], "signatures": [ { - "id": 1670, + "id": 1667, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -14234,7 +14263,7 @@ }, "parameters": [ { - "id": 1671, + "id": 1668, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14244,12 +14273,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 1672, + "id": 1669, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14259,7 +14288,7 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2616, "name": "MessageCallback" } } @@ -14270,19 +14299,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1424, + "id": 1421, "name": "SpotterEmbed.off" } } ], "inheritedFrom": { "type": "reference", - "id": 1423, + "id": 1420, "name": "SpotterEmbed.off" } }, { - "id": 1663, + "id": 1660, "name": "on", "kind": 2048, "kindString": "Method", @@ -14298,7 +14327,7 @@ ], "signatures": [ { - "id": 1664, + "id": 1661, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -14318,7 +14347,7 @@ }, "parameters": [ { - "id": 1665, + "id": 1662, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14328,12 +14357,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 1666, + "id": 1663, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14343,12 +14372,12 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2616, "name": "MessageCallback" } }, { - "id": 1667, + "id": 1664, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -14358,13 +14387,13 @@ }, "type": { "type": "reference", - "id": 2615, + "id": 2613, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1668, + "id": 1665, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -14383,19 +14412,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1418, + "id": 1415, "name": "SpotterEmbed.on" } } ], "inheritedFrom": { "type": "reference", - "id": 1417, + "id": 1414, "name": "SpotterEmbed.on" } }, { - "id": 1700, + "id": 1697, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -14411,7 +14440,7 @@ ], "signatures": [ { - "id": 1701, + "id": 1698, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -14421,7 +14450,7 @@ }, "parameters": [ { - "id": 1702, + "id": 1699, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -14436,7 +14465,7 @@ "defaultValue": "false" }, { - "id": 1703, + "id": 1700, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -14460,19 +14489,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1455, + "id": 1452, "name": "SpotterEmbed.preRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1454, + "id": 1451, "name": "SpotterEmbed.preRender" } }, { - "id": 1714, + "id": 1711, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -14488,7 +14517,7 @@ ], "signatures": [ { - "id": 1715, + "id": 1712, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -14515,19 +14544,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1469, + "id": 1466, "name": "SpotterEmbed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "id": 1468, + "id": 1465, "name": "SpotterEmbed.prerenderGeneric" } }, { - "id": 1576, + "id": 1573, "name": "render", "kind": 2048, "kindString": "Method", @@ -14543,7 +14572,7 @@ ], "signatures": [ { - "id": 1577, + "id": 1574, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -14553,7 +14582,7 @@ "typeArguments": [ { "type": "reference", - "id": 1320, + "id": 1317, "name": "SpotterEmbed" } ], @@ -14561,19 +14590,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1331, + "id": 1328, "name": "SpotterEmbed.render" } } ], "inheritedFrom": { "type": "reference", - "id": 1330, + "id": 1327, "name": "SpotterEmbed.render" } }, { - "id": 1718, + "id": 1715, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -14589,7 +14618,7 @@ ], "signatures": [ { - "id": 1719, + "id": 1716, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -14609,19 +14638,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1473, + "id": 1470, "name": "SpotterEmbed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1472, + "id": 1469, "name": "SpotterEmbed.showPreRender" } }, { - "id": 1720, + "id": 1717, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -14637,7 +14666,7 @@ ], "signatures": [ { - "id": 1721, + "id": 1718, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -14657,19 +14686,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1475, + "id": 1472, "name": "SpotterEmbed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "id": 1474, + "id": 1471, "name": "SpotterEmbed.syncPreRenderStyle" } }, { - "id": 1687, + "id": 1684, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -14685,7 +14714,7 @@ ], "signatures": [ { - "id": 1688, + "id": 1685, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -14696,19 +14725,19 @@ }, "typeParameter": [ { - "id": 1689, + "id": 1686, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2016, "name": "HostEvent" } }, { - "id": 1690, + "id": 1687, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -14717,7 +14746,7 @@ ], "parameters": [ { - "id": 1691, + "id": 1688, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14731,7 +14760,7 @@ } }, { - "id": 1692, + "id": 1689, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -14778,19 +14807,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1442, + "id": 1439, "name": "SpotterEmbed.trigger" } } ], "inheritedFrom": { "type": "reference", - "id": 1441, + "id": 1438, "name": "SpotterEmbed.trigger" } }, { - "id": 1693, + "id": 1690, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -14806,7 +14835,7 @@ ], "signatures": [ { - "id": 1694, + "id": 1691, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -14817,21 +14846,21 @@ }, "typeParameter": [ { - "id": 1695, + "id": 1692, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2885, + "id": 2883, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1696, + "id": 1693, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -14845,7 +14874,7 @@ } }, { - "id": 1697, + "id": 1694, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -14883,14 +14912,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1448, + "id": 1445, "name": "SpotterEmbed.triggerUIPassThrough" } } ], "inheritedFrom": { "type": "reference", - "id": 1447, + "id": 1444, "name": "SpotterEmbed.triggerUIPassThrough" } } @@ -14900,29 +14929,29 @@ "title": "Constructors", "kind": 512, "children": [ - 1567 + 1564 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1710, - 1729, - 1574, - 1724, - 1704, - 1712, - 1722, - 1669, - 1663, - 1700, - 1714, - 1576, - 1718, - 1720, - 1687, - 1693 + 1707, + 1726, + 1571, + 1721, + 1701, + 1709, + 1719, + 1666, + 1660, + 1697, + 1711, + 1573, + 1715, + 1717, + 1684, + 1690 ] } ], @@ -14936,13 +14965,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1320, + "id": 1317, "name": "SpotterEmbed" } ] }, { - "id": 590, + "id": 587, "name": "LiveboardEmbed", "kind": 128, "kindString": "Class", @@ -14962,7 +14991,7 @@ }, "children": [ { - "id": 591, + "id": 588, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -14976,40 +15005,40 @@ ], "signatures": [ { - "id": 592, + "id": 589, "name": "new LiveboardEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 593, + "id": 590, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2614, + "id": 2612, "name": "DOMSelector" } }, { - "id": 594, + "id": 591, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2381, + "id": 2379, "name": "LiveboardViewConfig" } } ], "type": { "type": "reference", - "id": 590, + "id": 587, "name": "LiveboardEmbed" }, "overwrites": { @@ -15024,7 +15053,7 @@ } }, { - "id": 646, + "id": 643, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -15040,7 +15069,7 @@ ], "signatures": [ { - "id": 647, + "id": 644, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -15070,7 +15099,7 @@ } }, { - "id": 810, + "id": 807, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -15086,7 +15115,7 @@ ], "signatures": [ { - "id": 811, + "id": 808, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -15102,7 +15131,7 @@ }, "parameters": [ { - "id": 812, + "id": 809, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15123,7 +15152,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } ], @@ -15141,7 +15170,7 @@ } }, { - "id": 783, + "id": 780, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -15157,7 +15186,7 @@ ], "signatures": [ { - "id": 784, + "id": 781, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -15178,7 +15207,7 @@ } }, { - "id": 661, + "id": 658, "name": "getLiveboardUrl", "kind": 2048, "kindString": "Method", @@ -15194,7 +15223,7 @@ ], "signatures": [ { - "id": 662, + "id": 659, "name": "getLiveboardUrl", "kind": 4096, "kindString": "Call signature", @@ -15211,7 +15240,7 @@ ] }, { - "id": 805, + "id": 802, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -15227,7 +15256,7 @@ ], "signatures": [ { - "id": 806, + "id": 803, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -15249,14 +15278,14 @@ "type": { "type": "reflection", "declaration": { - "id": 807, + "id": 804, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 809, + "id": 806, "name": "child", "kind": 1024, "kindString": "Property", @@ -15268,7 +15297,7 @@ "defaultValue": "..." }, { - "id": 808, + "id": 805, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -15285,8 +15314,8 @@ "title": "Properties", "kind": 1024, "children": [ - 809, - 808 + 806, + 805 ] } ] @@ -15304,7 +15333,7 @@ } }, { - "id": 789, + "id": 786, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -15320,7 +15349,7 @@ ], "signatures": [ { - "id": 790, + "id": 787, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -15336,7 +15365,7 @@ }, "parameters": [ { - "id": 791, + "id": 788, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -15344,20 +15373,20 @@ "type": { "type": "reflection", "declaration": { - "id": 792, + "id": 789, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 793, + "id": 790, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 794, + "id": 791, "name": "key", "kind": 32768, "flags": {}, @@ -15402,7 +15431,7 @@ } }, { - "id": 795, + "id": 792, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -15418,7 +15447,7 @@ ], "signatures": [ { - "id": 796, + "id": 793, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -15439,7 +15468,7 @@ } }, { - "id": 803, + "id": 800, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -15455,7 +15484,7 @@ ], "signatures": [ { - "id": 804, + "id": 801, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -15479,7 +15508,7 @@ } }, { - "id": 656, + "id": 653, "name": "navigateToLiveboard", "kind": 2048, "kindString": "Method", @@ -15495,14 +15524,14 @@ ], "signatures": [ { - "id": 657, + "id": 654, "name": "navigateToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 658, + "id": 655, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -15513,7 +15542,7 @@ } }, { - "id": 659, + "id": 656, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15526,7 +15555,7 @@ } }, { - "id": 660, + "id": 657, "name": "activeTabId", "kind": 32768, "kindString": "Parameter", @@ -15547,7 +15576,7 @@ ] }, { - "id": 760, + "id": 757, "name": "off", "kind": 2048, "kindString": "Method", @@ -15563,7 +15592,7 @@ ], "signatures": [ { - "id": 761, + "id": 758, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -15579,7 +15608,7 @@ }, "parameters": [ { - "id": 762, + "id": 759, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15589,12 +15618,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 763, + "id": 760, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -15604,7 +15633,7 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2616, "name": "MessageCallback" } } @@ -15625,7 +15654,7 @@ } }, { - "id": 668, + "id": 665, "name": "on", "kind": 2048, "kindString": "Method", @@ -15641,7 +15670,7 @@ ], "signatures": [ { - "id": 669, + "id": 666, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -15664,38 +15693,38 @@ }, "parameters": [ { - "id": 670, + "id": 667, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 671, + "id": 668, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2618, + "id": 2616, "name": "MessageCallback" } }, { - "id": 672, + "id": 669, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2615, + "id": 2613, "name": "MessageOptions" }, "defaultValue": "..." @@ -15717,7 +15746,7 @@ } }, { - "id": 785, + "id": 782, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -15733,7 +15762,7 @@ ], "signatures": [ { - "id": 786, + "id": 783, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -15743,7 +15772,7 @@ }, "parameters": [ { - "id": 787, + "id": 784, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -15758,7 +15787,7 @@ "defaultValue": "false" }, { - "id": 788, + "id": 785, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -15792,7 +15821,7 @@ } }, { - "id": 797, + "id": 794, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -15808,7 +15837,7 @@ ], "signatures": [ { - "id": 798, + "id": 795, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -15845,7 +15874,7 @@ } }, { - "id": 654, + "id": 651, "name": "render", "kind": 2048, "kindString": "Method", @@ -15861,7 +15890,7 @@ ], "signatures": [ { - "id": 655, + "id": 652, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -15874,7 +15903,7 @@ "typeArguments": [ { "type": "reference", - "id": 590, + "id": 587, "name": "LiveboardEmbed" } ], @@ -15892,7 +15921,7 @@ } }, { - "id": 799, + "id": 796, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -15908,7 +15937,7 @@ ], "signatures": [ { - "id": 800, + "id": 797, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -15938,7 +15967,7 @@ } }, { - "id": 801, + "id": 798, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -15954,7 +15983,7 @@ ], "signatures": [ { - "id": 802, + "id": 799, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -15984,7 +16013,7 @@ } }, { - "id": 640, + "id": 637, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -16000,7 +16029,7 @@ ], "signatures": [ { - "id": 641, + "id": 638, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -16011,19 +16040,19 @@ }, "typeParameter": [ { - "id": 642, + "id": 639, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2016, "name": "HostEvent" } }, { - "id": 643, + "id": 640, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -16032,7 +16061,7 @@ ], "parameters": [ { - "id": 644, + "id": 641, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16046,7 +16075,7 @@ } }, { - "id": 645, + "id": 642, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -16103,7 +16132,7 @@ } }, { - "id": 778, + "id": 775, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -16119,7 +16148,7 @@ ], "signatures": [ { - "id": 779, + "id": 776, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -16130,21 +16159,21 @@ }, "typeParameter": [ { - "id": 780, + "id": 777, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2885, + "id": 2883, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 781, + "id": 778, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -16158,7 +16187,7 @@ } }, { - "id": 782, + "id": 779, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -16211,31 +16240,31 @@ "title": "Constructors", "kind": 512, "children": [ - 591 + 588 ] }, { "title": "Methods", "kind": 2048, "children": [ - 646, - 810, - 783, - 661, - 805, - 789, - 795, - 803, - 656, - 760, - 668, - 785, - 797, - 654, - 799, - 801, - 640, - 778 + 643, + 807, + 780, + 658, + 802, + 786, + 792, + 800, + 653, + 757, + 665, + 782, + 794, + 651, + 796, + 798, + 637, + 775 ] } ], @@ -16254,7 +16283,7 @@ ] }, { - "id": 813, + "id": 810, "name": "SageEmbed", "kind": 128, "kindString": "Class", @@ -16274,7 +16303,7 @@ }, "children": [ { - "id": 814, + "id": 811, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -16288,40 +16317,40 @@ ], "signatures": [ { - "id": 815, + "id": 812, "name": "new SageEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 816, + "id": 813, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2614, + "id": 2612, "name": "DOMSelector" } }, { - "id": 817, + "id": 814, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2455, + "id": 2453, "name": "SageViewConfig" } } ], "type": { "type": "reference", - "id": 813, + "id": 810, "name": "SageEmbed" }, "overwrites": { @@ -16336,7 +16365,7 @@ } }, { - "id": 967, + "id": 964, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -16352,7 +16381,7 @@ ], "signatures": [ { - "id": 968, + "id": 965, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -16382,7 +16411,7 @@ } }, { - "id": 986, + "id": 983, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -16398,7 +16427,7 @@ ], "signatures": [ { - "id": 987, + "id": 984, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -16414,7 +16443,7 @@ }, "parameters": [ { - "id": 988, + "id": 985, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -16435,7 +16464,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } ], @@ -16453,7 +16482,7 @@ } }, { - "id": 823, + "id": 820, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -16469,7 +16498,7 @@ ], "signatures": [ { - "id": 824, + "id": 821, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -16486,7 +16515,7 @@ ] }, { - "id": 953, + "id": 950, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -16502,7 +16531,7 @@ ], "signatures": [ { - "id": 954, + "id": 951, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -16523,7 +16552,7 @@ } }, { - "id": 981, + "id": 978, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -16539,7 +16568,7 @@ ], "signatures": [ { - "id": 982, + "id": 979, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -16561,14 +16590,14 @@ "type": { "type": "reflection", "declaration": { - "id": 983, + "id": 980, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 985, + "id": 982, "name": "child", "kind": 1024, "kindString": "Property", @@ -16580,7 +16609,7 @@ "defaultValue": "..." }, { - "id": 984, + "id": 981, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -16597,8 +16626,8 @@ "title": "Properties", "kind": 1024, "children": [ - 985, - 984 + 982, + 981 ] } ] @@ -16616,7 +16645,7 @@ } }, { - "id": 961, + "id": 958, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -16632,7 +16661,7 @@ ], "signatures": [ { - "id": 962, + "id": 959, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -16648,7 +16677,7 @@ }, "parameters": [ { - "id": 963, + "id": 960, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -16656,20 +16685,20 @@ "type": { "type": "reflection", "declaration": { - "id": 964, + "id": 961, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 965, + "id": 962, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 966, + "id": 963, "name": "key", "kind": 32768, "flags": {}, @@ -16714,7 +16743,7 @@ } }, { - "id": 969, + "id": 966, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -16730,7 +16759,7 @@ ], "signatures": [ { - "id": 970, + "id": 967, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -16751,7 +16780,7 @@ } }, { - "id": 979, + "id": 976, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -16767,7 +16796,7 @@ ], "signatures": [ { - "id": 980, + "id": 977, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -16791,7 +16820,7 @@ } }, { - "id": 924, + "id": 921, "name": "off", "kind": 2048, "kindString": "Method", @@ -16807,7 +16836,7 @@ ], "signatures": [ { - "id": 925, + "id": 922, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -16823,7 +16852,7 @@ }, "parameters": [ { - "id": 926, + "id": 923, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16833,12 +16862,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 927, + "id": 924, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -16848,7 +16877,7 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2616, "name": "MessageCallback" } } @@ -16869,7 +16898,7 @@ } }, { - "id": 832, + "id": 829, "name": "on", "kind": 2048, "kindString": "Method", @@ -16885,7 +16914,7 @@ ], "signatures": [ { - "id": 833, + "id": 830, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -16908,38 +16937,38 @@ }, "parameters": [ { - "id": 834, + "id": 831, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 835, + "id": 832, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2618, + "id": 2616, "name": "MessageCallback" } }, { - "id": 836, + "id": 833, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2615, + "id": 2613, "name": "MessageOptions" }, "defaultValue": "..." @@ -16961,7 +16990,7 @@ } }, { - "id": 957, + "id": 954, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -16977,7 +17006,7 @@ ], "signatures": [ { - "id": 958, + "id": 955, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -16987,7 +17016,7 @@ }, "parameters": [ { - "id": 959, + "id": 956, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -17002,7 +17031,7 @@ "defaultValue": "false" }, { - "id": 960, + "id": 957, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -17036,7 +17065,7 @@ } }, { - "id": 971, + "id": 968, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -17052,7 +17081,7 @@ ], "signatures": [ { - "id": 972, + "id": 969, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -17089,7 +17118,7 @@ } }, { - "id": 825, + "id": 822, "name": "render", "kind": 2048, "kindString": "Method", @@ -17105,7 +17134,7 @@ ], "signatures": [ { - "id": 826, + "id": 823, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -17119,7 +17148,7 @@ "typeArguments": [ { "type": "reference", - "id": 813, + "id": 810, "name": "SageEmbed" } ], @@ -17137,7 +17166,7 @@ } }, { - "id": 975, + "id": 972, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -17153,7 +17182,7 @@ ], "signatures": [ { - "id": 976, + "id": 973, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -17183,7 +17212,7 @@ } }, { - "id": 977, + "id": 974, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -17199,7 +17228,7 @@ ], "signatures": [ { - "id": 978, + "id": 975, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -17229,7 +17258,7 @@ } }, { - "id": 942, + "id": 939, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -17245,7 +17274,7 @@ ], "signatures": [ { - "id": 943, + "id": 940, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -17256,19 +17285,19 @@ }, "typeParameter": [ { - "id": 944, + "id": 941, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2016, "name": "HostEvent" } }, { - "id": 945, + "id": 942, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -17277,7 +17306,7 @@ ], "parameters": [ { - "id": 946, + "id": 943, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17291,7 +17320,7 @@ } }, { - "id": 947, + "id": 944, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -17348,7 +17377,7 @@ } }, { - "id": 948, + "id": 945, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -17364,7 +17393,7 @@ ], "signatures": [ { - "id": 949, + "id": 946, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -17375,21 +17404,21 @@ }, "typeParameter": [ { - "id": 950, + "id": 947, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2885, + "id": 2883, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 951, + "id": 948, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -17403,7 +17432,7 @@ } }, { - "id": 952, + "id": 949, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -17456,30 +17485,30 @@ "title": "Constructors", "kind": 512, "children": [ - 814 + 811 ] }, { "title": "Methods", "kind": 2048, "children": [ - 967, - 986, - 823, - 953, - 981, - 961, - 969, - 979, - 924, - 832, - 957, - 971, - 825, - 975, - 977, - 942, - 948 + 964, + 983, + 820, + 950, + 978, + 958, + 966, + 976, + 921, + 829, + 954, + 968, + 822, + 972, + 974, + 939, + 945 ] } ], @@ -17498,7 +17527,7 @@ ] }, { - "id": 231, + "id": 228, "name": "SearchBarEmbed", "kind": 128, "kindString": "Class", @@ -17518,7 +17547,7 @@ }, "children": [ { - "id": 232, + "id": 229, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -17532,14 +17561,14 @@ ], "signatures": [ { - "id": 233, + "id": 230, "name": "new SearchBarEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 234, + "id": 231, "name": "domSelector", "kind": 32768, "kindString": "Parameter", @@ -17550,21 +17579,21 @@ } }, { - "id": 235, + "id": 232, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2339, + "id": 2337, "name": "SearchBarViewConfig" } } ], "type": { "type": "reference", - "id": 231, + "id": 228, "name": "SearchBarEmbed" }, "overwrites": { @@ -17579,7 +17608,7 @@ } }, { - "id": 382, + "id": 379, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -17595,7 +17624,7 @@ ], "signatures": [ { - "id": 383, + "id": 380, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -17625,7 +17654,7 @@ } }, { - "id": 401, + "id": 398, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -17641,7 +17670,7 @@ ], "signatures": [ { - "id": 402, + "id": 399, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -17657,7 +17686,7 @@ }, "parameters": [ { - "id": 403, + "id": 400, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -17678,7 +17707,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } ], @@ -17696,7 +17725,7 @@ } }, { - "id": 368, + "id": 365, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -17712,7 +17741,7 @@ ], "signatures": [ { - "id": 369, + "id": 366, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -17733,7 +17762,7 @@ } }, { - "id": 396, + "id": 393, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -17749,7 +17778,7 @@ ], "signatures": [ { - "id": 397, + "id": 394, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -17771,14 +17800,14 @@ "type": { "type": "reflection", "declaration": { - "id": 398, + "id": 395, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 400, + "id": 397, "name": "child", "kind": 1024, "kindString": "Property", @@ -17790,7 +17819,7 @@ "defaultValue": "..." }, { - "id": 399, + "id": 396, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -17807,8 +17836,8 @@ "title": "Properties", "kind": 1024, "children": [ - 400, - 399 + 397, + 396 ] } ] @@ -17826,7 +17855,7 @@ } }, { - "id": 376, + "id": 373, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -17842,7 +17871,7 @@ ], "signatures": [ { - "id": 377, + "id": 374, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -17858,7 +17887,7 @@ }, "parameters": [ { - "id": 378, + "id": 375, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -17866,20 +17895,20 @@ "type": { "type": "reflection", "declaration": { - "id": 379, + "id": 376, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 380, + "id": 377, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 381, + "id": 378, "name": "key", "kind": 32768, "flags": {}, @@ -17924,7 +17953,7 @@ } }, { - "id": 384, + "id": 381, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -17940,7 +17969,7 @@ ], "signatures": [ { - "id": 385, + "id": 382, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -17961,7 +17990,7 @@ } }, { - "id": 394, + "id": 391, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -17977,7 +18006,7 @@ ], "signatures": [ { - "id": 395, + "id": 392, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -18001,7 +18030,7 @@ } }, { - "id": 339, + "id": 336, "name": "off", "kind": 2048, "kindString": "Method", @@ -18017,7 +18046,7 @@ ], "signatures": [ { - "id": 340, + "id": 337, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -18033,7 +18062,7 @@ }, "parameters": [ { - "id": 341, + "id": 338, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18043,12 +18072,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 342, + "id": 339, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18058,7 +18087,7 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2616, "name": "MessageCallback" } } @@ -18079,7 +18108,7 @@ } }, { - "id": 333, + "id": 330, "name": "on", "kind": 2048, "kindString": "Method", @@ -18095,7 +18124,7 @@ ], "signatures": [ { - "id": 334, + "id": 331, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -18115,7 +18144,7 @@ }, "parameters": [ { - "id": 335, + "id": 332, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18125,12 +18154,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 336, + "id": 333, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18140,12 +18169,12 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2616, "name": "MessageCallback" } }, { - "id": 337, + "id": 334, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -18155,13 +18184,13 @@ }, "type": { "type": "reference", - "id": 2615, + "id": 2613, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 338, + "id": 335, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -18190,7 +18219,7 @@ } }, { - "id": 372, + "id": 369, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -18206,7 +18235,7 @@ ], "signatures": [ { - "id": 373, + "id": 370, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -18216,7 +18245,7 @@ }, "parameters": [ { - "id": 374, + "id": 371, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -18231,7 +18260,7 @@ "defaultValue": "false" }, { - "id": 375, + "id": 372, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -18265,7 +18294,7 @@ } }, { - "id": 386, + "id": 383, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -18281,7 +18310,7 @@ ], "signatures": [ { - "id": 387, + "id": 384, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -18318,7 +18347,7 @@ } }, { - "id": 242, + "id": 239, "name": "render", "kind": 2048, "kindString": "Method", @@ -18334,7 +18363,7 @@ ], "signatures": [ { - "id": 243, + "id": 240, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -18347,7 +18376,7 @@ "typeArguments": [ { "type": "reference", - "id": 231, + "id": 228, "name": "SearchBarEmbed" } ], @@ -18365,7 +18394,7 @@ } }, { - "id": 390, + "id": 387, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -18381,7 +18410,7 @@ ], "signatures": [ { - "id": 391, + "id": 388, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -18411,7 +18440,7 @@ } }, { - "id": 392, + "id": 389, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -18427,7 +18456,7 @@ ], "signatures": [ { - "id": 393, + "id": 390, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -18457,7 +18486,7 @@ } }, { - "id": 357, + "id": 354, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -18473,7 +18502,7 @@ ], "signatures": [ { - "id": 358, + "id": 355, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -18484,19 +18513,19 @@ }, "typeParameter": [ { - "id": 359, + "id": 356, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2016, "name": "HostEvent" } }, { - "id": 360, + "id": 357, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -18505,7 +18534,7 @@ ], "parameters": [ { - "id": 361, + "id": 358, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18519,7 +18548,7 @@ } }, { - "id": 362, + "id": 359, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -18576,7 +18605,7 @@ } }, { - "id": 363, + "id": 360, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -18592,7 +18621,7 @@ ], "signatures": [ { - "id": 364, + "id": 361, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -18603,21 +18632,21 @@ }, "typeParameter": [ { - "id": 365, + "id": 362, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2885, + "id": 2883, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 366, + "id": 363, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -18631,7 +18660,7 @@ } }, { - "id": 367, + "id": 364, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -18684,29 +18713,29 @@ "title": "Constructors", "kind": 512, "children": [ - 232 + 229 ] }, { "title": "Methods", "kind": 2048, "children": [ - 382, - 401, - 368, - 396, - 376, - 384, - 394, - 339, - 333, - 372, - 386, - 242, - 390, - 392, - 357, - 363 + 379, + 398, + 365, + 393, + 373, + 381, + 391, + 336, + 330, + 369, + 383, + 239, + 387, + 389, + 354, + 360 ] } ], @@ -18725,7 +18754,7 @@ ] }, { - "id": 55, + "id": 52, "name": "SearchEmbed", "kind": 128, "kindString": "Class", @@ -18741,7 +18770,7 @@ }, "children": [ { - "id": 56, + "id": 53, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -18755,40 +18784,40 @@ ], "signatures": [ { - "id": 57, + "id": 54, "name": "new SearchEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 58, + "id": 55, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2614, + "id": 2612, "name": "DOMSelector" } }, { - "id": 59, + "id": 56, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2285, + "id": 2283, "name": "SearchViewConfig" } } ], "type": { "type": "reference", - "id": 55, + "id": 52, "name": "SearchEmbed" }, "overwrites": { @@ -18803,7 +18832,7 @@ } }, { - "id": 209, + "id": 206, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -18819,7 +18848,7 @@ ], "signatures": [ { - "id": 210, + "id": 207, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -18849,7 +18878,7 @@ } }, { - "id": 228, + "id": 225, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -18865,7 +18894,7 @@ ], "signatures": [ { - "id": 229, + "id": 226, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -18881,7 +18910,7 @@ }, "parameters": [ { - "id": 230, + "id": 227, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -18902,7 +18931,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } ], @@ -18920,7 +18949,7 @@ } }, { - "id": 75, + "id": 72, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -18936,7 +18965,7 @@ ], "signatures": [ { - "id": 76, + "id": 73, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -18952,7 +18981,7 @@ ] }, { - "id": 195, + "id": 192, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -18968,7 +18997,7 @@ ], "signatures": [ { - "id": 196, + "id": 193, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -18989,7 +19018,7 @@ } }, { - "id": 223, + "id": 220, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -19005,7 +19034,7 @@ ], "signatures": [ { - "id": 224, + "id": 221, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -19027,14 +19056,14 @@ "type": { "type": "reflection", "declaration": { - "id": 225, + "id": 222, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 227, + "id": 224, "name": "child", "kind": 1024, "kindString": "Property", @@ -19046,7 +19075,7 @@ "defaultValue": "..." }, { - "id": 226, + "id": 223, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -19063,8 +19092,8 @@ "title": "Properties", "kind": 1024, "children": [ - 227, - 226 + 224, + 223 ] } ] @@ -19082,7 +19111,7 @@ } }, { - "id": 203, + "id": 200, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -19098,7 +19127,7 @@ ], "signatures": [ { - "id": 204, + "id": 201, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -19114,7 +19143,7 @@ }, "parameters": [ { - "id": 205, + "id": 202, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -19122,20 +19151,20 @@ "type": { "type": "reflection", "declaration": { - "id": 206, + "id": 203, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 207, + "id": 204, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 208, + "id": 205, "name": "key", "kind": 32768, "flags": {}, @@ -19180,7 +19209,7 @@ } }, { - "id": 211, + "id": 208, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -19196,7 +19225,7 @@ ], "signatures": [ { - "id": 212, + "id": 209, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -19217,7 +19246,7 @@ } }, { - "id": 221, + "id": 218, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -19233,7 +19262,7 @@ ], "signatures": [ { - "id": 222, + "id": 219, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -19257,7 +19286,7 @@ } }, { - "id": 166, + "id": 163, "name": "off", "kind": 2048, "kindString": "Method", @@ -19273,7 +19302,7 @@ ], "signatures": [ { - "id": 167, + "id": 164, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -19289,7 +19318,7 @@ }, "parameters": [ { - "id": 168, + "id": 165, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19299,12 +19328,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 169, + "id": 166, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19314,7 +19343,7 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2616, "name": "MessageCallback" } } @@ -19335,7 +19364,7 @@ } }, { - "id": 160, + "id": 157, "name": "on", "kind": 2048, "kindString": "Method", @@ -19351,7 +19380,7 @@ ], "signatures": [ { - "id": 161, + "id": 158, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -19371,7 +19400,7 @@ }, "parameters": [ { - "id": 162, + "id": 159, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19381,12 +19410,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 163, + "id": 160, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19396,12 +19425,12 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2616, "name": "MessageCallback" } }, { - "id": 164, + "id": 161, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -19411,13 +19440,13 @@ }, "type": { "type": "reference", - "id": 2615, + "id": 2613, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 165, + "id": 162, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -19446,7 +19475,7 @@ } }, { - "id": 199, + "id": 196, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -19462,7 +19491,7 @@ ], "signatures": [ { - "id": 200, + "id": 197, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -19472,7 +19501,7 @@ }, "parameters": [ { - "id": 201, + "id": 198, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -19487,7 +19516,7 @@ "defaultValue": "false" }, { - "id": 202, + "id": 199, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -19521,7 +19550,7 @@ } }, { - "id": 213, + "id": 210, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -19537,7 +19566,7 @@ ], "signatures": [ { - "id": 214, + "id": 211, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -19574,7 +19603,7 @@ } }, { - "id": 77, + "id": 74, "name": "render", "kind": 2048, "kindString": "Method", @@ -19590,7 +19619,7 @@ ], "signatures": [ { - "id": 78, + "id": 75, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -19603,7 +19632,7 @@ "typeArguments": [ { "type": "reference", - "id": 55, + "id": 52, "name": "SearchEmbed" } ], @@ -19621,7 +19650,7 @@ } }, { - "id": 217, + "id": 214, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -19637,7 +19666,7 @@ ], "signatures": [ { - "id": 218, + "id": 215, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -19667,7 +19696,7 @@ } }, { - "id": 219, + "id": 216, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -19683,7 +19712,7 @@ ], "signatures": [ { - "id": 220, + "id": 217, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -19713,7 +19742,7 @@ } }, { - "id": 184, + "id": 181, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -19729,7 +19758,7 @@ ], "signatures": [ { - "id": 185, + "id": 182, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -19740,19 +19769,19 @@ }, "typeParameter": [ { - "id": 186, + "id": 183, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2016, "name": "HostEvent" } }, { - "id": 187, + "id": 184, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -19761,7 +19790,7 @@ ], "parameters": [ { - "id": 188, + "id": 185, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19775,7 +19804,7 @@ } }, { - "id": 189, + "id": 186, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -19832,7 +19861,7 @@ } }, { - "id": 190, + "id": 187, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -19848,7 +19877,7 @@ ], "signatures": [ { - "id": 191, + "id": 188, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -19859,21 +19888,21 @@ }, "typeParameter": [ { - "id": 192, + "id": 189, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2885, + "id": 2883, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 193, + "id": 190, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -19887,7 +19916,7 @@ } }, { - "id": 194, + "id": 191, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -19940,30 +19969,30 @@ "title": "Constructors", "kind": 512, "children": [ - 56 + 53 ] }, { "title": "Methods", "kind": 2048, "children": [ - 209, - 228, - 75, - 195, - 223, - 203, - 211, - 221, - 166, - 160, - 199, - 213, - 77, - 217, - 219, - 184, - 190 + 206, + 225, + 72, + 192, + 220, + 200, + 208, + 218, + 163, + 157, + 196, + 210, + 74, + 214, + 216, + 181, + 187 ] } ], @@ -19982,7 +20011,7 @@ ] }, { - "id": 1199, + "id": 1196, "name": "SpotterAgentEmbed", "kind": 128, "kindString": "Class", @@ -20006,7 +20035,7 @@ }, "children": [ { - "id": 1200, + "id": 1197, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -20020,35 +20049,35 @@ ], "signatures": [ { - "id": 1201, + "id": 1198, "name": "new SpotterAgentEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1202, + "id": 1199, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1231, + "id": 1228, "name": "SpotterAgentEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1199, + "id": 1196, "name": "SpotterAgentEmbed" } } ] }, { - "id": 1204, + "id": 1201, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -20064,14 +20093,14 @@ ], "signatures": [ { - "id": 1205, + "id": 1202, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1206, + "id": 1203, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -20091,14 +20120,14 @@ { "type": "reflection", "declaration": { - "id": 1207, + "id": 1204, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1209, + "id": 1206, "name": "container", "kind": 1024, "kindString": "Property", @@ -20109,7 +20138,7 @@ } }, { - "id": 1208, + "id": 1205, "name": "error", "kind": 1024, "kindString": "Property", @@ -20120,7 +20149,7 @@ } }, { - "id": 1210, + "id": 1207, "name": "viz", "kind": 1024, "kindString": "Property", @@ -20137,9 +20166,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1209, - 1208, - 1210 + 1206, + 1205, + 1207 ] } ] @@ -20148,14 +20177,14 @@ { "type": "reflection", "declaration": { - "id": 1211, + "id": 1208, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1212, + "id": 1209, "name": "container", "kind": 1024, "kindString": "Property", @@ -20166,7 +20195,7 @@ } }, { - "id": 1214, + "id": 1211, "name": "error", "kind": 1024, "kindString": "Property", @@ -20177,7 +20206,7 @@ } }, { - "id": 1213, + "id": 1210, "name": "viz", "kind": 1024, "kindString": "Property", @@ -20194,9 +20223,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1212, - 1214, - 1213 + 1209, + 1211, + 1210 ] } ] @@ -20211,7 +20240,7 @@ ] }, { - "id": 1215, + "id": 1212, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -20227,7 +20256,7 @@ ], "signatures": [ { - "id": 1216, + "id": 1213, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -20238,7 +20267,7 @@ }, "parameters": [ { - "id": 1217, + "id": 1214, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -20261,14 +20290,14 @@ { "type": "reflection", "declaration": { - "id": 1218, + "id": 1215, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1220, + "id": 1217, "name": "data", "kind": 1024, "kindString": "Property", @@ -20280,7 +20309,7 @@ "defaultValue": "..." }, { - "id": 1219, + "id": 1216, "name": "error", "kind": 1024, "kindString": "Property", @@ -20296,8 +20325,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1220, - 1219 + 1217, + 1216 ] } ] @@ -20306,14 +20335,14 @@ { "type": "reflection", "declaration": { - "id": 1221, + "id": 1218, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1222, + "id": 1219, "name": "data", "kind": 1024, "kindString": "Property", @@ -20321,14 +20350,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1223, + "id": 1220, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1229, + "id": 1226, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -20340,7 +20369,7 @@ "defaultValue": "..." }, { - "id": 1228, + "id": 1225, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -20352,7 +20381,7 @@ "defaultValue": "..." }, { - "id": 1224, + "id": 1221, "name": "convId", "kind": 1024, "kindString": "Property", @@ -20364,7 +20393,7 @@ "defaultValue": "..." }, { - "id": 1227, + "id": 1224, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -20376,7 +20405,7 @@ "defaultValue": "..." }, { - "id": 1225, + "id": 1222, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -20388,7 +20417,7 @@ "defaultValue": "..." }, { - "id": 1226, + "id": 1223, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -20405,12 +20434,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1229, - 1228, - 1224, - 1227, + 1226, 1225, - 1226 + 1221, + 1224, + 1222, + 1223 ] } ] @@ -20419,7 +20448,7 @@ "defaultValue": "..." }, { - "id": 1230, + "id": 1227, "name": "error", "kind": 1024, "kindString": "Property", @@ -20435,8 +20464,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1222, - 1230 + 1219, + 1227 ] } ] @@ -20456,15 +20485,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1200 + 1197 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1204, - 1215 + 1201, + 1212 ] } ], @@ -20478,13 +20507,13 @@ "extendedBy": [ { "type": "reference", - "id": 1289, + "id": 1286, "name": "BodylessConversation" } ] }, { - "id": 1320, + "id": 1317, "name": "SpotterEmbed", "kind": 128, "kindString": "Class", @@ -20508,7 +20537,7 @@ }, "children": [ { - "id": 1321, + "id": 1318, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -20522,14 +20551,14 @@ ], "signatures": [ { - "id": 1322, + "id": 1319, "name": "new SpotterEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1323, + "id": 1320, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -20540,21 +20569,21 @@ } }, { - "id": 1324, + "id": 1321, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1486, + "id": 1483, "name": "SpotterEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1320, + "id": 1317, "name": "SpotterEmbed" }, "overwrites": { @@ -20569,7 +20598,7 @@ } }, { - "id": 1464, + "id": 1461, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -20585,7 +20614,7 @@ ], "signatures": [ { - "id": 1465, + "id": 1462, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -20615,7 +20644,7 @@ } }, { - "id": 1483, + "id": 1480, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -20631,7 +20660,7 @@ ], "signatures": [ { - "id": 1484, + "id": 1481, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -20647,7 +20676,7 @@ }, "parameters": [ { - "id": 1485, + "id": 1482, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -20668,7 +20697,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } ], @@ -20686,7 +20715,7 @@ } }, { - "id": 1328, + "id": 1325, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -20702,7 +20731,7 @@ ], "signatures": [ { - "id": 1329, + "id": 1326, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -20723,7 +20752,7 @@ } }, { - "id": 1478, + "id": 1475, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -20739,7 +20768,7 @@ ], "signatures": [ { - "id": 1479, + "id": 1476, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -20761,14 +20790,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1480, + "id": 1477, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1482, + "id": 1479, "name": "child", "kind": 1024, "kindString": "Property", @@ -20780,7 +20809,7 @@ "defaultValue": "..." }, { - "id": 1481, + "id": 1478, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -20797,8 +20826,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1482, - 1481 + 1479, + 1478 ] } ] @@ -20816,7 +20845,7 @@ } }, { - "id": 1458, + "id": 1455, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -20832,7 +20861,7 @@ ], "signatures": [ { - "id": 1459, + "id": 1456, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -20848,7 +20877,7 @@ }, "parameters": [ { - "id": 1460, + "id": 1457, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -20856,20 +20885,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1461, + "id": 1458, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1462, + "id": 1459, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1463, + "id": 1460, "name": "key", "kind": 32768, "flags": {}, @@ -20914,7 +20943,7 @@ } }, { - "id": 1466, + "id": 1463, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -20930,7 +20959,7 @@ ], "signatures": [ { - "id": 1467, + "id": 1464, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -20951,7 +20980,7 @@ } }, { - "id": 1476, + "id": 1473, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -20967,7 +20996,7 @@ ], "signatures": [ { - "id": 1477, + "id": 1474, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -20991,7 +21020,7 @@ } }, { - "id": 1423, + "id": 1420, "name": "off", "kind": 2048, "kindString": "Method", @@ -21007,7 +21036,7 @@ ], "signatures": [ { - "id": 1424, + "id": 1421, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -21023,7 +21052,7 @@ }, "parameters": [ { - "id": 1425, + "id": 1422, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21033,12 +21062,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 1426, + "id": 1423, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -21048,7 +21077,7 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2616, "name": "MessageCallback" } } @@ -21069,7 +21098,7 @@ } }, { - "id": 1417, + "id": 1414, "name": "on", "kind": 2048, "kindString": "Method", @@ -21085,7 +21114,7 @@ ], "signatures": [ { - "id": 1418, + "id": 1415, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -21105,7 +21134,7 @@ }, "parameters": [ { - "id": 1419, + "id": 1416, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21115,12 +21144,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 1420, + "id": 1417, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -21130,12 +21159,12 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2616, "name": "MessageCallback" } }, { - "id": 1421, + "id": 1418, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -21145,13 +21174,13 @@ }, "type": { "type": "reference", - "id": 2615, + "id": 2613, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1422, + "id": 1419, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -21180,7 +21209,7 @@ } }, { - "id": 1454, + "id": 1451, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -21196,7 +21225,7 @@ ], "signatures": [ { - "id": 1455, + "id": 1452, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -21206,7 +21235,7 @@ }, "parameters": [ { - "id": 1456, + "id": 1453, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -21221,7 +21250,7 @@ "defaultValue": "false" }, { - "id": 1457, + "id": 1454, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -21255,7 +21284,7 @@ } }, { - "id": 1468, + "id": 1465, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -21271,7 +21300,7 @@ ], "signatures": [ { - "id": 1469, + "id": 1466, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -21308,7 +21337,7 @@ } }, { - "id": 1330, + "id": 1327, "name": "render", "kind": 2048, "kindString": "Method", @@ -21324,7 +21353,7 @@ ], "signatures": [ { - "id": 1331, + "id": 1328, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -21334,7 +21363,7 @@ "typeArguments": [ { "type": "reference", - "id": 1320, + "id": 1317, "name": "SpotterEmbed" } ], @@ -21352,7 +21381,7 @@ } }, { - "id": 1472, + "id": 1469, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -21368,7 +21397,7 @@ ], "signatures": [ { - "id": 1473, + "id": 1470, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -21398,7 +21427,7 @@ } }, { - "id": 1474, + "id": 1471, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -21414,7 +21443,7 @@ ], "signatures": [ { - "id": 1475, + "id": 1472, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -21444,7 +21473,7 @@ } }, { - "id": 1441, + "id": 1438, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -21460,7 +21489,7 @@ ], "signatures": [ { - "id": 1442, + "id": 1439, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -21471,19 +21500,19 @@ }, "typeParameter": [ { - "id": 1443, + "id": 1440, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2016, "name": "HostEvent" } }, { - "id": 1444, + "id": 1441, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -21492,7 +21521,7 @@ ], "parameters": [ { - "id": 1445, + "id": 1442, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21506,7 +21535,7 @@ } }, { - "id": 1446, + "id": 1443, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -21563,7 +21592,7 @@ } }, { - "id": 1447, + "id": 1444, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -21579,7 +21608,7 @@ ], "signatures": [ { - "id": 1448, + "id": 1445, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -21590,21 +21619,21 @@ }, "typeParameter": [ { - "id": 1449, + "id": 1446, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2885, + "id": 2883, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1450, + "id": 1447, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -21618,7 +21647,7 @@ } }, { - "id": 1451, + "id": 1448, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -21671,29 +21700,29 @@ "title": "Constructors", "kind": 512, "children": [ - 1321 + 1318 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1464, - 1483, - 1328, - 1478, - 1458, - 1466, - 1476, - 1423, - 1417, - 1454, - 1468, - 1330, - 1472, - 1474, - 1441, - 1447 + 1461, + 1480, + 1325, + 1475, + 1455, + 1463, + 1473, + 1420, + 1414, + 1451, + 1465, + 1327, + 1469, + 1471, + 1438, + 1444 ] } ], @@ -21713,13 +21742,13 @@ "extendedBy": [ { "type": "reference", - "id": 1566, + "id": 1563, "name": "ConversationEmbed" } ] }, { - "id": 2502, + "id": 2500, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -21735,7 +21764,7 @@ }, "children": [ { - "id": 2540, + "id": 2538, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -21766,20 +21795,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2541, + "id": 2539, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2542, + "id": 2540, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2543, + "id": 2541, "name": "key", "kind": 32768, "flags": {}, @@ -21815,7 +21844,7 @@ } }, { - "id": 2564, + "id": 2562, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -21857,7 +21886,7 @@ } }, { - "id": 2522, + "id": 2520, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -21894,7 +21923,7 @@ } }, { - "id": 2561, + "id": 2559, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -21924,7 +21953,7 @@ ], "type": { "type": "reference", - "id": 2231, + "id": 2229, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -21933,7 +21962,7 @@ } }, { - "id": 2581, + "id": 2579, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -21971,7 +22000,7 @@ } }, { - "id": 2558, + "id": 2556, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -22012,7 +22041,7 @@ } }, { - "id": 2544, + "id": 2542, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -22041,7 +22070,7 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2629, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -22050,7 +22079,7 @@ } }, { - "id": 2523, + "id": 2521, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -22084,12 +22113,12 @@ ], "type": { "type": "reference", - "id": 2898, + "id": 2896, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2565, + "id": 2563, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -22131,7 +22160,7 @@ } }, { - "id": 2505, + "id": 2503, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -22169,7 +22198,7 @@ } }, { - "id": 2552, + "id": 2550, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -22207,7 +22236,7 @@ } }, { - "id": 2536, + "id": 2534, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -22245,7 +22274,7 @@ } }, { - "id": 2535, + "id": 2533, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -22277,7 +22306,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -22287,7 +22316,7 @@ } }, { - "id": 2521, + "id": 2519, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -22325,7 +22354,7 @@ } }, { - "id": 2548, + "id": 2546, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -22366,7 +22395,7 @@ } }, { - "id": 2575, + "id": 2573, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -22408,7 +22437,7 @@ } }, { - "id": 2580, + "id": 2578, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -22450,7 +22479,7 @@ } }, { - "id": 2566, + "id": 2564, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -22492,7 +22521,7 @@ } }, { - "id": 2506, + "id": 2504, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -22528,7 +22557,7 @@ } }, { - "id": 2518, + "id": 2516, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -22566,7 +22595,7 @@ } }, { - "id": 2549, + "id": 2547, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -22604,7 +22633,7 @@ } }, { - "id": 2562, + "id": 2560, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -22642,7 +22671,7 @@ } }, { - "id": 2563, + "id": 2561, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -22680,7 +22709,7 @@ } }, { - "id": 2551, + "id": 2549, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -22717,7 +22746,7 @@ } }, { - "id": 2532, + "id": 2530, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -22747,7 +22776,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2588, "name": "FrameParams" }, "inheritedFrom": { @@ -22756,7 +22785,7 @@ } }, { - "id": 2519, + "id": 2517, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -22790,7 +22819,7 @@ } }, { - "id": 2537, + "id": 2535, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -22826,7 +22855,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -22836,7 +22865,7 @@ } }, { - "id": 2570, + "id": 2568, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -22868,7 +22897,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2596, + "id": 2594, "name": "HomeLeftNavItem" } }, @@ -22878,7 +22907,7 @@ } }, { - "id": 2568, + "id": 2566, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -22910,7 +22939,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2607, + "id": 2605, "name": "HomepageModule" } }, @@ -22920,7 +22949,7 @@ } }, { - "id": 2567, + "id": 2565, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -22952,7 +22981,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2892, + "id": 2890, "name": "ListPageColumns" } }, @@ -22962,7 +22991,7 @@ } }, { - "id": 2510, + "id": 2508, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -23000,7 +23029,7 @@ } }, { - "id": 2507, + "id": 2505, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -23038,7 +23067,7 @@ } }, { - "id": 2504, + "id": 2502, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -23076,7 +23105,7 @@ } }, { - "id": 2578, + "id": 2576, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -23118,7 +23147,7 @@ } }, { - "id": 2571, + "id": 2569, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -23160,7 +23189,7 @@ } }, { - "id": 2509, + "id": 2507, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -23198,7 +23227,7 @@ } }, { - "id": 2508, + "id": 2506, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -23236,7 +23265,7 @@ } }, { - "id": 2516, + "id": 2514, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -23273,7 +23302,7 @@ } }, { - "id": 2511, + "id": 2509, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -23311,7 +23340,7 @@ } }, { - "id": 2515, + "id": 2513, "name": "hideTagFilterChips", "kind": 1024, "kindString": "Property", @@ -23345,7 +23374,7 @@ } }, { - "id": 2525, + "id": 2523, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -23371,12 +23400,12 @@ ], "type": { "type": "reference", - "id": 2850, + "id": 2848, "name": "HomePageSearchBarMode" } }, { - "id": 2545, + "id": 2543, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -23414,7 +23443,7 @@ } }, { - "id": 2583, + "id": 2581, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -23452,7 +23481,7 @@ } }, { - "id": 2584, + "id": 2582, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -23490,7 +23519,7 @@ } }, { - "id": 2576, + "id": 2574, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -23532,7 +23561,7 @@ } }, { - "id": 2574, + "id": 2572, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -23570,7 +23599,7 @@ } }, { - "id": 2527, + "id": 2525, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -23604,7 +23633,7 @@ } }, { - "id": 2524, + "id": 2522, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -23633,7 +23662,7 @@ } }, { - "id": 2528, + "id": 2526, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -23667,7 +23696,7 @@ } }, { - "id": 2526, + "id": 2524, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -23705,7 +23734,7 @@ } }, { - "id": 2529, + "id": 2527, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -23742,7 +23771,7 @@ } }, { - "id": 2530, + "id": 2528, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -23776,7 +23805,7 @@ } }, { - "id": 2554, + "id": 2552, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -23814,7 +23843,7 @@ } }, { - "id": 2582, + "id": 2580, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -23852,7 +23881,7 @@ } }, { - "id": 2539, + "id": 2537, "name": "locale", "kind": 1024, "kindString": "Property", @@ -23890,7 +23919,7 @@ } }, { - "id": 2520, + "id": 2518, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -23928,7 +23957,7 @@ } }, { - "id": 2553, + "id": 2551, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -23966,7 +23995,7 @@ } }, { - "id": 2513, + "id": 2511, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -23996,12 +24025,12 @@ ], "type": { "type": "reference", - "id": 1885, + "id": 1882, "name": "Page" } }, { - "id": 2512, + "id": 2510, "name": "path", "kind": 1024, "kindString": "Property", @@ -24035,7 +24064,7 @@ } }, { - "id": 2547, + "id": 2545, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -24073,7 +24102,7 @@ } }, { - "id": 2555, + "id": 2553, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -24111,7 +24140,7 @@ } }, { - "id": 2569, + "id": 2567, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -24143,7 +24172,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2607, + "id": 2605, "name": "HomepageModule" } }, @@ -24153,7 +24182,7 @@ } }, { - "id": 2559, + "id": 2557, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -24185,7 +24214,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1903, "name": "RuntimeFilter" } }, @@ -24195,7 +24224,7 @@ } }, { - "id": 2560, + "id": 2558, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -24227,7 +24256,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2824, + "id": 2822, "name": "RuntimeParameter" } }, @@ -24237,7 +24266,7 @@ } }, { - "id": 2557, + "id": 2555, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -24274,7 +24303,7 @@ } }, { - "id": 2573, + "id": 2571, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -24316,7 +24345,7 @@ } }, { - "id": 2579, + "id": 2577, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -24358,7 +24387,7 @@ } }, { - "id": 2572, + "id": 2570, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -24400,7 +24429,7 @@ } }, { - "id": 2577, + "id": 2575, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -24442,7 +24471,7 @@ } }, { - "id": 2503, + "id": 2501, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -24480,7 +24509,7 @@ } }, { - "id": 2514, + "id": 2512, "name": "tag", "kind": 1024, "kindString": "Property", @@ -24514,7 +24543,7 @@ } }, { - "id": 2538, + "id": 2536, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -24550,7 +24579,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -24565,78 +24594,78 @@ "title": "Properties", "kind": 1024, "children": [ - 2540, + 2538, + 2562, + 2520, + 2559, + 2579, + 2556, + 2542, + 2521, + 2563, + 2503, + 2550, + 2534, + 2533, + 2519, + 2546, + 2573, + 2578, 2564, - 2522, + 2504, + 2516, + 2547, + 2560, 2561, - 2581, - 2558, - 2544, - 2523, + 2549, + 2530, + 2517, + 2535, + 2568, + 2566, 2565, + 2508, 2505, + 2502, + 2576, + 2569, + 2507, + 2506, + 2514, + 2509, + 2513, + 2523, + 2543, + 2581, + 2582, + 2574, + 2572, + 2525, + 2522, + 2526, + 2524, + 2527, + 2528, 2552, - 2536, - 2535, - 2521, - 2548, - 2575, 2580, - 2566, - 2506, + 2537, 2518, - 2549, - 2562, - 2563, 2551, - 2532, - 2519, - 2537, - 2570, - 2568, - 2567, - 2510, - 2507, - 2504, - 2578, - 2571, - 2509, - 2508, - 2516, 2511, - 2515, - 2525, + 2510, 2545, - 2583, - 2584, - 2576, - 2574, - 2527, - 2524, - 2528, - 2526, - 2529, - 2530, - 2554, - 2582, - 2539, - 2520, 2553, - 2513, - 2512, - 2547, - 2555, - 2569, - 2559, - 2560, + 2567, 2557, - 2573, - 2579, - 2572, + 2558, + 2555, + 2571, 2577, - 2503, - 2514, - 2538 + 2570, + 2575, + 2501, + 2512, + 2536 ] } ], @@ -24655,7 +24684,7 @@ ] }, { - "id": 1749, + "id": 1746, "name": "AuthEventEmitter", "kind": 256, "kindString": "Interface", @@ -24671,14 +24700,14 @@ }, "children": [ { - "id": 1786, + "id": 1783, "name": "emit", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1787, + "id": 1784, "name": "emit", "kind": 4096, "kindString": "Call signature", @@ -24688,19 +24717,19 @@ }, "parameters": [ { - "id": 1788, + "id": 1785, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1748, + "id": 1745, "name": "TRIGGER_SSO_POPUP" } }, { - "id": 1789, + "id": 1786, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -24724,14 +24753,14 @@ ] }, { - "id": 1790, + "id": 1787, "name": "off", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1791, + "id": 1788, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -24741,7 +24770,7 @@ }, "parameters": [ { - "id": 1792, + "id": 1789, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24749,12 +24778,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1739, + "id": 1736, "name": "AuthStatus" } }, { - "id": 1793, + "id": 1790, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24763,21 +24792,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1794, + "id": 1791, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1795, + "id": 1792, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1796, + "id": 1793, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -24803,7 +24832,7 @@ } }, { - "id": 1797, + "id": 1794, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -24815,7 +24844,7 @@ } }, { - "id": 1798, + "id": 1795, "name": "once", "kind": 32768, "kindString": "Parameter", @@ -24831,21 +24860,21 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1746, "name": "AuthEventEmitter" } } ] }, { - "id": 1750, + "id": 1747, "name": "on", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1751, + "id": 1748, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -24855,7 +24884,7 @@ }, "parameters": [ { - "id": 1752, + "id": 1749, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24863,12 +24892,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1740, + "id": 1737, "name": "FAILURE" } }, { - "id": 1753, + "id": 1750, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24879,28 +24908,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1754, + "id": 1751, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1755, + "id": 1752, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1756, + "id": 1753, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1732, + "id": 1729, "name": "AuthFailureType" } } @@ -24917,12 +24946,12 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1746, "name": "AuthEventEmitter" } }, { - "id": 1757, + "id": 1754, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -24932,7 +24961,7 @@ }, "parameters": [ { - "id": 1758, + "id": 1755, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24943,29 +24972,29 @@ "types": [ { "type": "reference", - "id": 1741, + "id": 1738, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1744, + "id": 1741, "name": "LOGOUT" }, { "type": "reference", - "id": 1745, + "id": 1742, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1746, + "id": 1743, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1759, + "id": 1756, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24976,14 +25005,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1760, + "id": 1757, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1761, + "id": 1758, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -25000,31 +25029,31 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1746, "name": "AuthEventEmitter" } }, { - "id": 1762, + "id": 1759, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1763, + "id": 1760, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1743, + "id": 1740, "name": "SUCCESS" } }, { - "id": 1764, + "id": 1761, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25032,21 +25061,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1765, + "id": 1762, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1766, + "id": 1763, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1767, + "id": 1764, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -25069,40 +25098,40 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1746, "name": "AuthEventEmitter" } } ] }, { - "id": 1768, + "id": 1765, "name": "once", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1769, + "id": 1766, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1770, + "id": 1767, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1740, + "id": 1737, "name": "FAILURE" } }, { - "id": 1771, + "id": 1768, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25110,28 +25139,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1772, + "id": 1769, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1773, + "id": 1770, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1774, + "id": 1771, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1732, + "id": 1729, "name": "AuthFailureType" } } @@ -25148,19 +25177,19 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1746, "name": "AuthEventEmitter" } }, { - "id": 1775, + "id": 1772, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1776, + "id": 1773, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25170,29 +25199,29 @@ "types": [ { "type": "reference", - "id": 1741, + "id": 1738, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1744, + "id": 1741, "name": "LOGOUT" }, { "type": "reference", - "id": 1745, + "id": 1742, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1746, + "id": 1743, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1777, + "id": 1774, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25200,14 +25229,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1778, + "id": 1775, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1779, + "id": 1776, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -25224,31 +25253,31 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1746, "name": "AuthEventEmitter" } }, { - "id": 1780, + "id": 1777, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1781, + "id": 1778, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1743, + "id": 1740, "name": "SUCCESS" } }, { - "id": 1782, + "id": 1779, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25256,21 +25285,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1783, + "id": 1780, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1784, + "id": 1781, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1785, + "id": 1782, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -25293,21 +25322,21 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1746, "name": "AuthEventEmitter" } } ] }, { - "id": 1799, + "id": 1796, "name": "removeAllListeners", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1800, + "id": 1797, "name": "removeAllListeners", "kind": 4096, "kindString": "Call signature", @@ -25317,7 +25346,7 @@ }, "parameters": [ { - "id": 1801, + "id": 1798, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25327,14 +25356,14 @@ }, "type": { "type": "reference", - "id": 1739, + "id": 1736, "name": "AuthStatus" } } ], "type": { "type": "reference", - "id": 1749, + "id": 1746, "name": "AuthEventEmitter" } } @@ -25346,11 +25375,11 @@ "title": "Methods", "kind": 2048, "children": [ - 1786, - 1790, - 1750, - 1768, - 1799 + 1783, + 1787, + 1747, + 1765, + 1796 ] } ], @@ -25363,7 +25392,7 @@ ] }, { - "id": 1260, + "id": 1257, "name": "BodylessConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -25383,7 +25412,7 @@ }, "children": [ { - "id": 1271, + "id": 1268, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -25414,20 +25443,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1272, + "id": 1269, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1273, + "id": 1270, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1274, + "id": 1271, "name": "key", "kind": 32768, "flags": {}, @@ -25459,12 +25488,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1242, + "id": 1239, "name": "SpotterAgentEmbedViewConfig.additionalFlags" } }, { - "id": 1288, + "id": 1285, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -25501,12 +25530,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1259, + "id": 1256, "name": "SpotterAgentEmbedViewConfig.customActions" } }, { - "id": 1275, + "id": 1272, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -25535,17 +25564,17 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2629, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1246, + "id": 1243, "name": "SpotterAgentEmbedViewConfig.customizations" } }, { - "id": 1283, + "id": 1280, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -25579,12 +25608,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1254, + "id": 1251, "name": "SpotterAgentEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1267, + "id": 1264, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -25618,12 +25647,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1238, + "id": 1235, "name": "SpotterAgentEmbedViewConfig.disabledActionReason" } }, { - "id": 1266, + "id": 1263, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -25655,18 +25684,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1237, + "id": 1234, "name": "SpotterAgentEmbedViewConfig.disabledActions" } }, { - "id": 1279, + "id": 1276, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -25703,12 +25732,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1250, + "id": 1247, "name": "SpotterAgentEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1280, + "id": 1277, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -25742,12 +25771,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1251, + "id": 1248, "name": "SpotterAgentEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1282, + "id": 1279, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -25780,12 +25809,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1253, + "id": 1250, "name": "SpotterAgentEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1263, + "id": 1260, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -25815,17 +25844,17 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2588, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1234, + "id": 1231, "name": "SpotterAgentEmbedViewConfig.frameParams" } }, { - "id": 1268, + "id": 1265, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -25861,18 +25890,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1239, + "id": 1236, "name": "SpotterAgentEmbedViewConfig.hiddenActions" } }, { - "id": 1276, + "id": 1273, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -25906,12 +25935,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1247, + "id": 1244, "name": "SpotterAgentEmbedViewConfig.insertAsSibling" } }, { - "id": 1285, + "id": 1282, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -25945,12 +25974,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1256, + "id": 1253, "name": "SpotterAgentEmbedViewConfig.linkOverride" } }, { - "id": 1270, + "id": 1267, "name": "locale", "kind": 1024, "kindString": "Property", @@ -25984,12 +26013,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1241, + "id": 1238, "name": "SpotterAgentEmbedViewConfig.locale" } }, { - "id": 1284, + "id": 1281, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -26023,12 +26052,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1255, + "id": 1252, "name": "SpotterAgentEmbedViewConfig.overrideOrgId" } }, { - "id": 1278, + "id": 1275, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -26062,12 +26091,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1249, + "id": 1246, "name": "SpotterAgentEmbedViewConfig.preRenderId" } }, { - "id": 1287, + "id": 1284, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -26100,12 +26129,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1258, + "id": 1255, "name": "SpotterAgentEmbedViewConfig.showAlerts" } }, { - "id": 1269, + "id": 1266, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -26141,18 +26170,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1240, + "id": 1237, "name": "SpotterAgentEmbedViewConfig.visibleActions" } }, { - "id": 1261, + "id": 1258, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -26173,7 +26202,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1232, + "id": 1229, "name": "SpotterAgentEmbedViewConfig.worksheetId" } } @@ -26183,25 +26212,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1271, - 1288, - 1275, - 1283, - 1267, - 1266, - 1279, + 1268, + 1285, + 1272, 1280, - 1282, + 1264, 1263, - 1268, 1276, - 1285, - 1270, + 1277, + 1279, + 1260, + 1265, + 1273, + 1282, + 1267, + 1281, + 1275, 1284, - 1278, - 1287, - 1269, - 1261 + 1266, + 1258 ] } ], @@ -26215,13 +26244,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1231, + "id": 1228, "name": "SpotterAgentEmbedViewConfig" } ] }, { - "id": 1526, + "id": 1523, "name": "ConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -26241,7 +26270,7 @@ }, "children": [ { - "id": 1548, + "id": 1545, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -26272,20 +26301,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1549, + "id": 1546, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1550, + "id": 1547, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1551, + "id": 1548, "name": "key", "kind": 32768, "flags": {}, @@ -26317,12 +26346,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1508, + "id": 1505, "name": "SpotterEmbedViewConfig.additionalFlags" } }, { - "id": 1565, + "id": 1562, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -26359,12 +26388,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1525, + "id": 1522, "name": "SpotterEmbedViewConfig.customActions" } }, { - "id": 1552, + "id": 1549, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -26393,17 +26422,17 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2629, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1512, + "id": 1509, "name": "SpotterEmbedViewConfig.customizations" } }, { - "id": 1531, + "id": 1528, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -26441,12 +26470,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1491, + "id": 1488, "name": "SpotterEmbedViewConfig.dataPanelV2" } }, { - "id": 1560, + "id": 1557, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -26480,12 +26509,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1520, + "id": 1517, "name": "SpotterEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1529, + "id": 1526, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -26519,12 +26548,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1489, + "id": 1486, "name": "SpotterEmbedViewConfig.disableSourceSelection" } }, { - "id": 1544, + "id": 1541, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -26558,12 +26587,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1504, + "id": 1501, "name": "SpotterEmbedViewConfig.disabledActionReason" } }, { - "id": 1543, + "id": 1540, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -26595,18 +26624,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1503, + "id": 1500, "name": "SpotterEmbedViewConfig.disabledActions" } }, { - "id": 1556, + "id": 1553, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -26643,12 +26672,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1516, + "id": 1513, "name": "SpotterEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1538, + "id": 1535, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -26686,12 +26715,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1498, + "id": 1495, "name": "SpotterEmbedViewConfig.enablePastConversationsSidebar" } }, { - "id": 1557, + "id": 1554, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -26725,12 +26754,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1517, + "id": 1514, "name": "SpotterEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1535, + "id": 1532, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -26764,12 +26793,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1495, + "id": 1492, "name": "SpotterEmbedViewConfig.excludeRuntimeFiltersfromURL" } }, { - "id": 1537, + "id": 1534, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -26803,12 +26832,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1497, + "id": 1494, "name": "SpotterEmbedViewConfig.excludeRuntimeParametersfromURL" } }, { - "id": 1559, + "id": 1556, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -26841,12 +26870,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1519, + "id": 1516, "name": "SpotterEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1540, + "id": 1537, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -26876,17 +26905,17 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2588, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1500, + "id": 1497, "name": "SpotterEmbedViewConfig.frameParams" } }, { - "id": 1545, + "id": 1542, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -26922,18 +26951,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1505, + "id": 1502, "name": "SpotterEmbedViewConfig.hiddenActions" } }, { - "id": 1533, + "id": 1530, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -26967,12 +26996,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1493, + "id": 1490, "name": "SpotterEmbedViewConfig.hideSampleQuestions" } }, { - "id": 1530, + "id": 1527, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -27006,12 +27035,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1490, + "id": 1487, "name": "SpotterEmbedViewConfig.hideSourceSelection" } }, { - "id": 1553, + "id": 1550, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -27045,12 +27074,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1513, + "id": 1510, "name": "SpotterEmbedViewConfig.insertAsSibling" } }, { - "id": 1562, + "id": 1559, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -27084,12 +27113,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1522, + "id": 1519, "name": "SpotterEmbedViewConfig.linkOverride" } }, { - "id": 1547, + "id": 1544, "name": "locale", "kind": 1024, "kindString": "Property", @@ -27123,12 +27152,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1507, + "id": 1504, "name": "SpotterEmbedViewConfig.locale" } }, { - "id": 1561, + "id": 1558, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -27162,12 +27191,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1521, + "id": 1518, "name": "SpotterEmbedViewConfig.overrideOrgId" } }, { - "id": 1555, + "id": 1552, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -27201,12 +27230,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1515, + "id": 1512, "name": "SpotterEmbedViewConfig.preRenderId" } }, { - "id": 1534, + "id": 1531, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -27238,18 +27267,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1903, "name": "RuntimeFilter" } }, "inheritedFrom": { "type": "reference", - "id": 1494, + "id": 1491, "name": "SpotterEmbedViewConfig.runtimeFilters" } }, { - "id": 1536, + "id": 1533, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -27281,18 +27310,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2824, + "id": 2822, "name": "RuntimeParameter" } }, "inheritedFrom": { "type": "reference", - "id": 1496, + "id": 1493, "name": "SpotterEmbedViewConfig.runtimeParameters" } }, { - "id": 1528, + "id": 1525, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -27315,12 +27344,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1488, + "id": 1485, "name": "SpotterEmbedViewConfig.searchOptions" } }, { - "id": 1564, + "id": 1561, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -27353,12 +27382,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1524, + "id": 1521, "name": "SpotterEmbedViewConfig.showAlerts" } }, { - "id": 1532, + "id": 1529, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -27392,12 +27421,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1492, + "id": 1489, "name": "SpotterEmbedViewConfig.showSpotterLimitations" } }, { - "id": 1546, + "id": 1543, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -27433,18 +27462,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1506, + "id": 1503, "name": "SpotterEmbedViewConfig.visibleActions" } }, { - "id": 1527, + "id": 1524, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -27465,7 +27494,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1487, + "id": 1484, "name": "SpotterEmbedViewConfig.worksheetId" } } @@ -27475,36 +27504,36 @@ "title": "Properties", "kind": 1024, "children": [ - 1548, - 1565, - 1552, - 1531, - 1560, - 1529, - 1544, - 1543, - 1556, - 1538, + 1545, + 1562, + 1549, + 1528, 1557, + 1526, + 1541, + 1540, + 1553, 1535, + 1554, + 1532, + 1534, + 1556, 1537, + 1542, + 1530, + 1527, + 1550, 1559, - 1540, - 1545, + 1544, + 1558, + 1552, + 1531, 1533, - 1530, - 1553, - 1562, - 1547, + 1525, 1561, - 1555, - 1534, - 1536, - 1528, - 1564, - 1532, - 1546, - 1527 + 1529, + 1543, + 1524 ] } ], @@ -27518,13 +27547,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1486, + "id": 1483, "name": "SpotterEmbedViewConfig" } ] }, { - "id": 2865, + "id": 2863, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -27539,7 +27568,7 @@ }, "children": [ { - "id": 2866, + "id": 2864, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -27549,21 +27578,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5763, + "line": 5773, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2867, + "id": 2865, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2868, + "id": 2866, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -27571,18 +27600,18 @@ "sources": [ { "fileName": "types.ts", - "line": 5764, + "line": 5774, "character": 8 } ], "type": { "type": "reference", - "id": 2862, + "id": 2860, "name": "VizPoint" } }, { - "id": 2869, + "id": 2867, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -27590,7 +27619,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5765, + "line": 5775, "character": 8 } ], @@ -27598,7 +27627,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2862, + "id": 2860, "name": "VizPoint" } } @@ -27609,8 +27638,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2868, - 2869 + 2866, + 2867 ] } ] @@ -27618,7 +27647,7 @@ } }, { - "id": 2870, + "id": 2868, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -27626,21 +27655,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5767, + "line": 5777, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2871, + "id": 2869, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2879, + "id": 2877, "name": "columns", "kind": 1024, "kindString": "Property", @@ -27648,7 +27677,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5775, + "line": 5785, "character": 8 } ], @@ -27661,7 +27690,7 @@ } }, { - "id": 2880, + "id": 2878, "name": "data", "kind": 1024, "kindString": "Property", @@ -27669,7 +27698,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5776, + "line": 5786, "character": 8 } ], @@ -27682,7 +27711,7 @@ } }, { - "id": 2873, + "id": 2871, "name": "id", "kind": 1024, "kindString": "Property", @@ -27690,7 +27719,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5769, + "line": 5779, "character": 8 } ], @@ -27700,7 +27729,7 @@ } }, { - "id": 2872, + "id": 2870, "name": "name", "kind": 1024, "kindString": "Property", @@ -27708,7 +27737,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5768, + "line": 5778, "character": 8 } ], @@ -27718,7 +27747,7 @@ } }, { - "id": 2874, + "id": 2872, "name": "sources", "kind": 1024, "kindString": "Property", @@ -27726,21 +27755,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5770, + "line": 5780, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2875, + "id": 2873, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2876, + "id": 2874, "name": "header", "kind": 1024, "kindString": "Property", @@ -27748,21 +27777,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5771, + "line": 5781, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2877, + "id": 2875, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2878, + "id": 2876, "name": "guid", "kind": 1024, "kindString": "Property", @@ -27770,7 +27799,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5772, + "line": 5782, "character": 16 } ], @@ -27785,7 +27814,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2878 + 2876 ] } ] @@ -27798,7 +27827,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2876 + 2874 ] } ] @@ -27811,23 +27840,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2879, - 2880, - 2873, - 2872, - 2874 + 2877, + 2878, + 2871, + 2870, + 2872 ] } ], "indexSignature": { - "id": 2881, + "id": 2879, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2882, + "id": 2880, "name": "key", "kind": 32768, "flags": {}, @@ -27846,7 +27875,7 @@ } }, { - "id": 2883, + "id": 2881, "name": "session", "kind": 1024, "kindString": "Property", @@ -27854,18 +27883,18 @@ "sources": [ { "fileName": "types.ts", - "line": 5779, + "line": 5789, "character": 4 } ], "type": { "type": "reference", - "id": 1875, + "id": 1872, "name": "SessionInterface" } }, { - "id": 2884, + "id": 2882, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -27875,7 +27904,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5780, + "line": 5790, "character": 4 } ], @@ -27890,23 +27919,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2866, - 2870, - 2883, - 2884 + 2864, + 2868, + 2881, + 2882 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5762, + "line": 5772, "character": 17 } ] }, { - "id": 2653, + "id": 2651, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -27916,7 +27945,7 @@ }, "children": [ { - "id": 2707, + "id": 2705, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -27939,7 +27968,7 @@ } }, { - "id": 2706, + "id": 2704, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -27962,7 +27991,7 @@ } }, { - "id": 2676, + "id": 2674, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -27985,7 +28014,7 @@ } }, { - "id": 2677, + "id": 2675, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -28008,7 +28037,7 @@ } }, { - "id": 2679, + "id": 2677, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -28031,7 +28060,7 @@ } }, { - "id": 2678, + "id": 2676, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -28054,7 +28083,7 @@ } }, { - "id": 2658, + "id": 2656, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -28077,7 +28106,7 @@ } }, { - "id": 2719, + "id": 2717, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -28100,7 +28129,7 @@ } }, { - "id": 2720, + "id": 2718, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -28123,7 +28152,7 @@ } }, { - "id": 2717, + "id": 2715, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -28146,7 +28175,7 @@ } }, { - "id": 2718, + "id": 2716, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -28169,7 +28198,7 @@ } }, { - "id": 2681, + "id": 2679, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -28192,7 +28221,7 @@ } }, { - "id": 2686, + "id": 2684, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -28215,7 +28244,7 @@ } }, { - "id": 2683, + "id": 2681, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -28238,7 +28267,7 @@ } }, { - "id": 2685, + "id": 2683, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -28261,7 +28290,7 @@ } }, { - "id": 2684, + "id": 2682, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -28284,7 +28313,7 @@ } }, { - "id": 2682, + "id": 2680, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -28307,7 +28336,7 @@ } }, { - "id": 2691, + "id": 2689, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -28330,7 +28359,7 @@ } }, { - "id": 2688, + "id": 2686, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -28353,7 +28382,7 @@ } }, { - "id": 2690, + "id": 2688, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -28376,7 +28405,7 @@ } }, { - "id": 2689, + "id": 2687, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -28399,7 +28428,7 @@ } }, { - "id": 2687, + "id": 2685, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -28422,7 +28451,7 @@ } }, { - "id": 2695, + "id": 2693, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -28445,7 +28474,7 @@ } }, { - "id": 2694, + "id": 2692, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -28468,7 +28497,7 @@ } }, { - "id": 2693, + "id": 2691, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -28491,7 +28520,7 @@ } }, { - "id": 2692, + "id": 2690, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -28514,7 +28543,7 @@ } }, { - "id": 2680, + "id": 2678, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -28537,7 +28566,7 @@ } }, { - "id": 2823, + "id": 2821, "name": "--ts-var-cca-modal-summary-header-background", "kind": 1024, "kindString": "Property", @@ -28560,7 +28589,7 @@ } }, { - "id": 2818, + "id": 2816, "name": "--ts-var-change-analysis-insights-background", "kind": 1024, "kindString": "Property", @@ -28583,7 +28612,7 @@ } }, { - "id": 2813, + "id": 2811, "name": "--ts-var-chart-heatmap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28606,7 +28635,7 @@ } }, { - "id": 2812, + "id": 2810, "name": "--ts-var-chart-heatmap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28629,7 +28658,7 @@ } }, { - "id": 2815, + "id": 2813, "name": "--ts-var-chart-treemap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28652,7 +28681,7 @@ } }, { - "id": 2814, + "id": 2812, "name": "--ts-var-chart-treemap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28675,7 +28704,7 @@ } }, { - "id": 2742, + "id": 2740, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -28698,7 +28727,7 @@ } }, { - "id": 2745, + "id": 2743, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -28721,7 +28750,7 @@ } }, { - "id": 2740, + "id": 2738, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -28744,7 +28773,7 @@ } }, { - "id": 2743, + "id": 2741, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -28767,7 +28796,7 @@ } }, { - "id": 2744, + "id": 2742, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -28790,7 +28819,7 @@ } }, { - "id": 2739, + "id": 2737, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -28813,7 +28842,7 @@ } }, { - "id": 2741, + "id": 2739, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -28836,7 +28865,7 @@ } }, { - "id": 2712, + "id": 2710, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -28859,7 +28888,7 @@ } }, { - "id": 2711, + "id": 2709, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -28882,7 +28911,7 @@ } }, { - "id": 2714, + "id": 2712, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -28905,7 +28934,7 @@ } }, { - "id": 2713, + "id": 2711, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -28928,7 +28957,7 @@ } }, { - "id": 2710, + "id": 2708, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -28951,7 +28980,7 @@ } }, { - "id": 2708, + "id": 2706, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -28974,7 +29003,7 @@ } }, { - "id": 2709, + "id": 2707, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -28997,7 +29026,7 @@ } }, { - "id": 2715, + "id": 2713, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -29020,7 +29049,7 @@ } }, { - "id": 2716, + "id": 2714, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -29043,7 +29072,7 @@ } }, { - "id": 2727, + "id": 2725, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -29066,7 +29095,7 @@ } }, { - "id": 2728, + "id": 2726, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -29089,7 +29118,7 @@ } }, { - "id": 2731, + "id": 2729, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -29112,7 +29141,7 @@ } }, { - "id": 2729, + "id": 2727, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -29135,7 +29164,7 @@ } }, { - "id": 2730, + "id": 2728, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -29158,7 +29187,7 @@ } }, { - "id": 2738, + "id": 2736, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -29181,7 +29210,7 @@ } }, { - "id": 2737, + "id": 2735, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -29204,7 +29233,7 @@ } }, { - "id": 2736, + "id": 2734, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -29227,7 +29256,7 @@ } }, { - "id": 2735, + "id": 2733, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -29250,7 +29279,7 @@ } }, { - "id": 2811, + "id": 2809, "name": "--ts-var-kpi-analyze-text-color", "kind": 1024, "kindString": "Property", @@ -29273,7 +29302,7 @@ } }, { - "id": 2810, + "id": 2808, "name": "--ts-var-kpi-comparison-color", "kind": 1024, "kindString": "Property", @@ -29296,7 +29325,7 @@ } }, { - "id": 2809, + "id": 2807, "name": "--ts-var-kpi-hero-color", "kind": 1024, "kindString": "Property", @@ -29319,7 +29348,7 @@ } }, { - "id": 2817, + "id": 2815, "name": "--ts-var-kpi-negative-change-color", "kind": 1024, "kindString": "Property", @@ -29342,7 +29371,7 @@ } }, { - "id": 2816, + "id": 2814, "name": "--ts-var-kpi-positive-change-color", "kind": 1024, "kindString": "Property", @@ -29365,7 +29394,7 @@ } }, { - "id": 2733, + "id": 2731, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -29388,7 +29417,7 @@ } }, { - "id": 2732, + "id": 2730, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -29411,7 +29440,7 @@ } }, { - "id": 2768, + "id": 2766, "name": "--ts-var-liveboard-answer-viz-padding", "kind": 1024, "kindString": "Property", @@ -29434,7 +29463,7 @@ } }, { - "id": 2781, + "id": 2779, "name": "--ts-var-liveboard-chip--active-background", "kind": 1024, "kindString": "Property", @@ -29458,7 +29487,7 @@ } }, { - "id": 2780, + "id": 2778, "name": "--ts-var-liveboard-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -29482,7 +29511,7 @@ } }, { - "id": 2778, + "id": 2776, "name": "--ts-var-liveboard-chip-background", "kind": 1024, "kindString": "Property", @@ -29506,7 +29535,7 @@ } }, { - "id": 2779, + "id": 2777, "name": "--ts-var-liveboard-chip-color", "kind": 1024, "kindString": "Property", @@ -29530,7 +29559,7 @@ } }, { - "id": 2786, + "id": 2784, "name": "--ts-var-liveboard-cross-filter-layout-background", "kind": 1024, "kindString": "Property", @@ -29553,7 +29582,7 @@ } }, { - "id": 2784, + "id": 2782, "name": "--ts-var-liveboard-dual-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -29576,7 +29605,7 @@ } }, { - "id": 2783, + "id": 2781, "name": "--ts-var-liveboard-edit-bar-background", "kind": 1024, "kindString": "Property", @@ -29599,7 +29628,7 @@ } }, { - "id": 2769, + "id": 2767, "name": "--ts-var-liveboard-group-background", "kind": 1024, "kindString": "Property", @@ -29623,7 +29652,7 @@ } }, { - "id": 2770, + "id": 2768, "name": "--ts-var-liveboard-group-border-color", "kind": 1024, "kindString": "Property", @@ -29647,7 +29676,7 @@ } }, { - "id": 2774, + "id": 2772, "name": "--ts-var-liveboard-group-description-font-color", "kind": 1024, "kindString": "Property", @@ -29671,7 +29700,7 @@ } }, { - "id": 2764, + "id": 2762, "name": "--ts-var-liveboard-group-description-font-size", "kind": 1024, "kindString": "Property", @@ -29695,7 +29724,7 @@ } }, { - "id": 2765, + "id": 2763, "name": "--ts-var-liveboard-group-description-font-weight", "kind": 1024, "kindString": "Property", @@ -29719,7 +29748,7 @@ } }, { - "id": 2758, + "id": 2756, "name": "--ts-var-liveboard-group-padding", "kind": 1024, "kindString": "Property", @@ -29743,7 +29772,7 @@ } }, { - "id": 2777, + "id": 2775, "name": "--ts-var-liveboard-group-tile-background", "kind": 1024, "kindString": "Property", @@ -29767,7 +29796,7 @@ } }, { - "id": 2766, + "id": 2764, "name": "--ts-var-liveboard-group-tile-border", "kind": 1024, "kindString": "Property", @@ -29791,7 +29820,7 @@ } }, { - "id": 2776, + "id": 2774, "name": "--ts-var-liveboard-group-tile-description-font-color", "kind": 1024, "kindString": "Property", @@ -29815,7 +29844,7 @@ } }, { - "id": 2767, + "id": 2765, "name": "--ts-var-liveboard-group-tile-padding", "kind": 1024, "kindString": "Property", @@ -29839,7 +29868,7 @@ } }, { - "id": 2775, + "id": 2773, "name": "--ts-var-liveboard-group-tile-title-font-color", "kind": 1024, "kindString": "Property", @@ -29863,7 +29892,7 @@ } }, { - "id": 2762, + "id": 2760, "name": "--ts-var-liveboard-group-tile-title-font-size", "kind": 1024, "kindString": "Property", @@ -29887,7 +29916,7 @@ } }, { - "id": 2763, + "id": 2761, "name": "--ts-var-liveboard-group-tile-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29911,7 +29940,7 @@ } }, { - "id": 2773, + "id": 2771, "name": "--ts-var-liveboard-group-title-font-color", "kind": 1024, "kindString": "Property", @@ -29935,7 +29964,7 @@ } }, { - "id": 2760, + "id": 2758, "name": "--ts-var-liveboard-group-title-font-size", "kind": 1024, "kindString": "Property", @@ -29959,7 +29988,7 @@ } }, { - "id": 2761, + "id": 2759, "name": "--ts-var-liveboard-group-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29983,7 +30012,7 @@ } }, { - "id": 2759, + "id": 2757, "name": "--ts-var-liveboard-group-title-padding", "kind": 1024, "kindString": "Property", @@ -30007,7 +30036,7 @@ } }, { - "id": 2802, + "id": 2800, "name": "--ts-var-liveboard-header-action-button-active-color", "kind": 1024, "kindString": "Property", @@ -30030,7 +30059,7 @@ } }, { - "id": 2799, + "id": 2797, "name": "--ts-var-liveboard-header-action-button-background", "kind": 1024, "kindString": "Property", @@ -30053,7 +30082,7 @@ } }, { - "id": 2800, + "id": 2798, "name": "--ts-var-liveboard-header-action-button-font-color", "kind": 1024, "kindString": "Property", @@ -30076,7 +30105,7 @@ } }, { - "id": 2801, + "id": 2799, "name": "--ts-var-liveboard-header-action-button-hover-color", "kind": 1024, "kindString": "Property", @@ -30099,7 +30128,7 @@ } }, { - "id": 2750, + "id": 2748, "name": "--ts-var-liveboard-header-background", "kind": 1024, "kindString": "Property", @@ -30122,7 +30151,7 @@ } }, { - "id": 2808, + "id": 2806, "name": "--ts-var-liveboard-header-badge-active-color", "kind": 1024, "kindString": "Property", @@ -30145,7 +30174,7 @@ } }, { - "id": 2803, + "id": 2801, "name": "--ts-var-liveboard-header-badge-background", "kind": 1024, "kindString": "Property", @@ -30168,7 +30197,7 @@ } }, { - "id": 2804, + "id": 2802, "name": "--ts-var-liveboard-header-badge-font-color", "kind": 1024, "kindString": "Property", @@ -30191,7 +30220,7 @@ } }, { - "id": 2807, + "id": 2805, "name": "--ts-var-liveboard-header-badge-hover-color", "kind": 1024, "kindString": "Property", @@ -30214,7 +30243,7 @@ } }, { - "id": 2805, + "id": 2803, "name": "--ts-var-liveboard-header-badge-modified-background", "kind": 1024, "kindString": "Property", @@ -30237,7 +30266,7 @@ } }, { - "id": 2806, + "id": 2804, "name": "--ts-var-liveboard-header-badge-modified-font-color", "kind": 1024, "kindString": "Property", @@ -30260,7 +30289,7 @@ } }, { - "id": 2752, + "id": 2750, "name": "--ts-var-liveboard-header-font-color", "kind": 1024, "kindString": "Property", @@ -30283,7 +30312,7 @@ } }, { - "id": 2751, + "id": 2749, "name": "--ts-var-liveboard-header-fontsize", "kind": 1024, "kindString": "Property", @@ -30306,7 +30335,7 @@ } }, { - "id": 2747, + "id": 2745, "name": "--ts-var-liveboard-layout-background", "kind": 1024, "kindString": "Property", @@ -30329,7 +30358,7 @@ } }, { - "id": 2748, + "id": 2746, "name": "--ts-var-liveboard-layout-title-color", "kind": 1024, "kindString": "Property", @@ -30352,7 +30381,7 @@ } }, { - "id": 2749, + "id": 2747, "name": "--ts-var-liveboard-layout-title-fontsize", "kind": 1024, "kindString": "Property", @@ -30375,7 +30404,7 @@ } }, { - "id": 2772, + "id": 2770, "name": "--ts-var-liveboard-notetitle-body-font-color", "kind": 1024, "kindString": "Property", @@ -30398,7 +30427,7 @@ } }, { - "id": 2771, + "id": 2769, "name": "--ts-var-liveboard-notetitle-heading-font-color", "kind": 1024, "kindString": "Property", @@ -30421,7 +30450,7 @@ } }, { - "id": 2785, + "id": 2783, "name": "--ts-var-liveboard-single-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -30444,7 +30473,7 @@ } }, { - "id": 2787, + "id": 2785, "name": "--ts-var-liveboard-tab-active-border-color", "kind": 1024, "kindString": "Property", @@ -30467,7 +30496,7 @@ } }, { - "id": 2788, + "id": 2786, "name": "--ts-var-liveboard-tab-hover-color", "kind": 1024, "kindString": "Property", @@ -30490,7 +30519,7 @@ } }, { - "id": 2754, + "id": 2752, "name": "--ts-var-liveboard-tile-background", "kind": 1024, "kindString": "Property", @@ -30513,7 +30542,7 @@ } }, { - "id": 2753, + "id": 2751, "name": "--ts-var-liveboard-tile-border-color", "kind": 1024, "kindString": "Property", @@ -30536,7 +30565,7 @@ } }, { - "id": 2755, + "id": 2753, "name": "--ts-var-liveboard-tile-border-radius", "kind": 1024, "kindString": "Property", @@ -30559,7 +30588,7 @@ } }, { - "id": 2791, + "id": 2789, "name": "--ts-var-liveboard-tile-description-font-weight", "kind": 1024, "kindString": "Property", @@ -30582,7 +30611,7 @@ } }, { - "id": 2792, + "id": 2790, "name": "--ts-var-liveboard-tile-description-opacity", "kind": 1024, "kindString": "Property", @@ -30605,7 +30634,7 @@ } }, { - "id": 2756, + "id": 2754, "name": "--ts-var-liveboard-tile-padding", "kind": 1024, "kindString": "Property", @@ -30628,7 +30657,7 @@ } }, { - "id": 2757, + "id": 2755, "name": "--ts-var-liveboard-tile-table-header-background", "kind": 1024, "kindString": "Property", @@ -30651,7 +30680,7 @@ } }, { - "id": 2789, + "id": 2787, "name": "--ts-var-liveboard-tile-title-fontsize", "kind": 1024, "kindString": "Property", @@ -30674,7 +30703,7 @@ } }, { - "id": 2790, + "id": 2788, "name": "--ts-var-liveboard-tile-title-fontweight", "kind": 1024, "kindString": "Property", @@ -30697,7 +30726,7 @@ } }, { - "id": 2725, + "id": 2723, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -30720,7 +30749,7 @@ } }, { - "id": 2722, + "id": 2720, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -30743,7 +30772,7 @@ } }, { - "id": 2721, + "id": 2719, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -30766,7 +30795,7 @@ } }, { - "id": 2723, + "id": 2721, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -30789,7 +30818,7 @@ } }, { - "id": 2726, + "id": 2724, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -30812,7 +30841,7 @@ } }, { - "id": 2724, + "id": 2722, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -30835,7 +30864,7 @@ } }, { - "id": 2659, + "id": 2657, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -30858,7 +30887,7 @@ } }, { - "id": 2660, + "id": 2658, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -30881,7 +30910,7 @@ } }, { - "id": 2797, + "id": 2795, "name": "--ts-var-parameter-chip-active-background", "kind": 1024, "kindString": "Property", @@ -30904,7 +30933,7 @@ } }, { - "id": 2798, + "id": 2796, "name": "--ts-var-parameter-chip-active-text-color", "kind": 1024, "kindString": "Property", @@ -30927,7 +30956,7 @@ } }, { - "id": 2793, + "id": 2791, "name": "--ts-var-parameter-chip-background", "kind": 1024, "kindString": "Property", @@ -30950,7 +30979,7 @@ } }, { - "id": 2795, + "id": 2793, "name": "--ts-var-parameter-chip-hover-background", "kind": 1024, "kindString": "Property", @@ -30973,7 +31002,7 @@ } }, { - "id": 2796, + "id": 2794, "name": "--ts-var-parameter-chip-hover-text-color", "kind": 1024, "kindString": "Property", @@ -30996,7 +31025,7 @@ } }, { - "id": 2794, + "id": 2792, "name": "--ts-var-parameter-chip-text-color", "kind": 1024, "kindString": "Property", @@ -31019,7 +31048,7 @@ } }, { - "id": 2654, + "id": 2652, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -31042,7 +31071,7 @@ } }, { - "id": 2655, + "id": 2653, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -31065,7 +31094,7 @@ } }, { - "id": 2656, + "id": 2654, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -31088,7 +31117,7 @@ } }, { - "id": 2657, + "id": 2655, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -31111,7 +31140,7 @@ } }, { - "id": 2668, + "id": 2666, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -31134,7 +31163,7 @@ } }, { - "id": 2672, + "id": 2670, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -31157,7 +31186,7 @@ } }, { - "id": 2673, + "id": 2671, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -31180,7 +31209,7 @@ } }, { - "id": 2671, + "id": 2669, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -31203,7 +31232,7 @@ } }, { - "id": 2667, + "id": 2665, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -31226,7 +31255,7 @@ } }, { - "id": 2670, + "id": 2668, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -31249,7 +31278,7 @@ } }, { - "id": 2664, + "id": 2662, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -31272,7 +31301,7 @@ } }, { - "id": 2665, + "id": 2663, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -31295,7 +31324,7 @@ } }, { - "id": 2666, + "id": 2664, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -31318,7 +31347,7 @@ } }, { - "id": 2661, + "id": 2659, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -31341,7 +31370,7 @@ } }, { - "id": 2662, + "id": 2660, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -31364,7 +31393,7 @@ } }, { - "id": 2663, + "id": 2661, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -31387,7 +31416,7 @@ } }, { - "id": 2669, + "id": 2667, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -31410,7 +31439,7 @@ } }, { - "id": 2734, + "id": 2732, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -31433,7 +31462,7 @@ } }, { - "id": 2782, + "id": 2780, "name": "--ts-var-side-panel-width", "kind": 1024, "kindString": "Property", @@ -31456,7 +31485,7 @@ } }, { - "id": 2822, + "id": 2820, "name": "--ts-var-spotiq-analyze-crosscorrelation-card-background", "kind": 1024, "kindString": "Property", @@ -31479,7 +31508,7 @@ } }, { - "id": 2819, + "id": 2817, "name": "--ts-var-spotiq-analyze-forecasting-card-background", "kind": 1024, "kindString": "Property", @@ -31502,7 +31531,7 @@ } }, { - "id": 2820, + "id": 2818, "name": "--ts-var-spotiq-analyze-outlier-card-background", "kind": 1024, "kindString": "Property", @@ -31525,7 +31554,7 @@ } }, { - "id": 2821, + "id": 2819, "name": "--ts-var-spotiq-analyze-trend-card-background", "kind": 1024, "kindString": "Property", @@ -31548,7 +31577,7 @@ } }, { - "id": 2674, + "id": 2672, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -31571,7 +31600,7 @@ } }, { - "id": 2675, + "id": 2673, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -31594,7 +31623,7 @@ } }, { - "id": 2704, + "id": 2702, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -31617,7 +31646,7 @@ } }, { - "id": 2702, + "id": 2700, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -31640,7 +31669,7 @@ } }, { - "id": 2703, + "id": 2701, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -31663,7 +31692,7 @@ } }, { - "id": 2699, + "id": 2697, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -31686,7 +31715,7 @@ } }, { - "id": 2700, + "id": 2698, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -31709,7 +31738,7 @@ } }, { - "id": 2701, + "id": 2699, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -31732,7 +31761,7 @@ } }, { - "id": 2705, + "id": 2703, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -31755,7 +31784,7 @@ } }, { - "id": 2746, + "id": 2744, "name": "--ts-var-viz-tile-height", "kind": 1024, "kindString": "Property", @@ -31778,7 +31807,7 @@ } }, { - "id": 2696, + "id": 2694, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -31801,7 +31830,7 @@ } }, { - "id": 2697, + "id": 2695, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -31824,7 +31853,7 @@ } }, { - "id": 2698, + "id": 2696, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -31852,176 +31881,176 @@ "title": "Properties", "kind": 1024, "children": [ - 2707, - 2706, - 2676, + 2705, + 2704, + 2674, + 2675, 2677, - 2679, - 2678, - 2658, - 2719, - 2720, + 2676, + 2656, 2717, 2718, + 2715, + 2716, + 2679, + 2684, 2681, - 2686, 2683, - 2685, - 2684, 2682, - 2691, - 2688, - 2690, + 2680, 2689, + 2686, + 2688, 2687, - 2695, - 2694, + 2685, 2693, 2692, - 2680, - 2823, - 2818, + 2691, + 2690, + 2678, + 2821, + 2816, + 2811, + 2810, 2813, 2812, - 2815, - 2814, - 2742, - 2745, 2740, 2743, - 2744, - 2739, + 2738, 2741, + 2742, + 2737, + 2739, + 2710, + 2709, 2712, 2711, - 2714, - 2713, - 2710, 2708, - 2709, - 2715, - 2716, + 2706, + 2707, + 2713, + 2714, + 2725, + 2726, + 2729, 2727, 2728, - 2731, - 2729, - 2730, - 2738, - 2737, 2736, 2735, - 2811, - 2810, - 2809, - 2817, - 2816, + 2734, 2733, - 2732, - 2768, - 2781, - 2780, - 2778, - 2779, - 2786, - 2784, - 2783, - 2769, - 2770, - 2774, - 2764, - 2765, - 2758, - 2777, + 2809, + 2808, + 2807, + 2815, + 2814, + 2731, + 2730, 2766, + 2779, + 2778, 2776, + 2777, + 2784, + 2782, + 2781, 2767, - 2775, + 2768, + 2772, 2762, 2763, + 2756, + 2775, + 2764, + 2774, + 2765, 2773, 2760, 2761, + 2771, + 2758, 2759, - 2802, - 2799, + 2757, 2800, + 2797, + 2798, + 2799, + 2748, + 2806, 2801, - 2750, - 2808, + 2802, + 2805, 2803, 2804, - 2807, - 2805, - 2806, - 2752, - 2751, - 2747, - 2748, + 2750, 2749, - 2772, - 2771, + 2745, + 2746, + 2747, + 2770, + 2769, + 2783, 2785, - 2787, - 2788, - 2754, + 2786, + 2752, + 2751, 2753, - 2755, - 2791, - 2792, - 2756, - 2757, 2789, 2790, - 2725, - 2722, - 2721, + 2754, + 2755, + 2787, + 2788, 2723, - 2726, + 2720, + 2719, + 2721, 2724, - 2659, - 2660, - 2797, - 2798, - 2793, + 2722, + 2657, + 2658, 2795, 2796, + 2791, + 2793, 2794, + 2792, + 2652, + 2653, 2654, 2655, - 2656, - 2657, - 2668, - 2672, - 2673, - 2671, - 2667, + 2666, 2670, - 2664, + 2671, + 2669, 2665, - 2666, - 2661, + 2668, 2662, 2663, - 2669, - 2734, - 2782, - 2822, - 2819, + 2664, + 2659, + 2660, + 2661, + 2667, + 2732, + 2780, 2820, - 2821, - 2674, - 2675, - 2704, + 2817, + 2818, + 2819, + 2672, + 2673, 2702, - 2703, - 2699, 2700, 2701, - 2705, - 2746, - 2696, 2697, - 2698 + 2698, + 2699, + 2703, + 2744, + 2694, + 2695, + 2696 ] } ], @@ -32034,7 +32063,7 @@ ] }, { - "id": 2641, + "id": 2639, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -32044,7 +32073,7 @@ }, "children": [ { - "id": 2643, + "id": 2641, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -32060,12 +32089,12 @@ ], "type": { "type": "reference", - "id": 2644, + "id": 2642, "name": "customCssInterface" } }, { - "id": 2642, + "id": 2640, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -32090,8 +32119,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2643, - 2642 + 2641, + 2640 ] } ], @@ -32104,7 +32133,7 @@ ] }, { - "id": 2631, + "id": 2629, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -32120,7 +32149,7 @@ }, "children": [ { - "id": 2633, + "id": 2631, "name": "content", "kind": 1024, "kindString": "Property", @@ -32137,14 +32166,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2634, + "id": 2632, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2636, + "id": 2634, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -32174,7 +32203,7 @@ } }, { - "id": 2637, + "id": 2635, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -32194,7 +32223,7 @@ } }, { - "id": 2635, + "id": 2633, "name": "strings", "kind": 1024, "kindString": "Property", @@ -32237,21 +32266,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2636, - 2637, - 2635 + 2634, + 2635, + 2633 ] } ], "indexSignature": { - "id": 2638, + "id": 2636, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2639, + "id": 2637, "name": "key", "kind": 32768, "flags": {}, @@ -32270,7 +32299,7 @@ } }, { - "id": 2640, + "id": 2638, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -32290,7 +32319,7 @@ } }, { - "id": 2632, + "id": 2630, "name": "style", "kind": 1024, "kindString": "Property", @@ -32306,7 +32335,7 @@ ], "type": { "type": "reference", - "id": 2641, + "id": 2639, "name": "CustomStyles" } } @@ -32316,9 +32345,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2633, - 2640, - 2632 + 2631, + 2638, + 2630 ] } ], @@ -32331,7 +32360,7 @@ ] }, { - "id": 2235, + "id": 2233, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -32347,7 +32376,7 @@ }, "children": [ { - "id": 2277, + "id": 2275, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -32377,20 +32406,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2278, + "id": 2276, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2279, + "id": 2277, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2280, + "id": 2278, "name": "key", "kind": 32768, "flags": {}, @@ -32422,7 +32451,7 @@ } }, { - "id": 2238, + "id": 2236, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -32445,7 +32474,7 @@ } }, { - "id": 2259, + "id": 2257, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -32487,7 +32516,7 @@ } }, { - "id": 2261, + "id": 2259, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -32516,7 +32545,7 @@ } }, { - "id": 2237, + "id": 2235, "name": "authType", "kind": 1024, "kindString": "Property", @@ -32533,12 +32562,12 @@ ], "type": { "type": "reference", - "id": 1894, + "id": 1891, "name": "AuthType" } }, { - "id": 2250, + "id": 2248, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -32567,7 +32596,7 @@ } }, { - "id": 2262, + "id": 2260, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -32600,7 +32629,7 @@ } }, { - "id": 2253, + "id": 2251, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -32629,7 +32658,7 @@ } }, { - "id": 2274, + "id": 2272, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -32658,7 +32687,7 @@ } }, { - "id": 2284, + "id": 2282, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -32694,7 +32723,7 @@ } }, { - "id": 2281, + "id": 2279, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -32737,7 +32766,7 @@ } }, { - "id": 2258, + "id": 2256, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -32762,12 +32791,12 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2629, "name": "CustomisationsInterface" } }, { - "id": 2272, + "id": 2270, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -32796,7 +32825,7 @@ } }, { - "id": 2255, + "id": 2253, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -32826,7 +32855,7 @@ } }, { - "id": 2283, + "id": 2281, "name": "disableFullscreenPresentation", "kind": 1024, "kindString": "Property", @@ -32863,7 +32892,7 @@ } }, { - "id": 2276, + "id": 2274, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -32892,7 +32921,7 @@ } }, { - "id": 2251, + "id": 2249, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -32925,7 +32954,7 @@ } }, { - "id": 2282, + "id": 2280, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -32945,7 +32974,7 @@ } }, { - "id": 2271, + "id": 2269, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -32974,7 +33003,7 @@ } }, { - "id": 2249, + "id": 2247, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -33003,7 +33032,7 @@ } }, { - "id": 2244, + "id": 2242, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -33037,7 +33066,7 @@ } }, { - "id": 2270, + "id": 2268, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -33070,12 +33099,12 @@ ], "type": { "type": "reference", - "id": 2827, + "id": 2825, "name": "LogLevel" } }, { - "id": 2252, + "id": 2250, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -33104,7 +33133,7 @@ } }, { - "id": 2243, + "id": 2241, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -33137,7 +33166,7 @@ } }, { - "id": 2273, + "id": 2271, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -33166,7 +33195,7 @@ } }, { - "id": 2242, + "id": 2240, "name": "password", "kind": 1024, "kindString": "Property", @@ -33190,7 +33219,7 @@ } }, { - "id": 2268, + "id": 2266, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -33219,7 +33248,7 @@ } }, { - "id": 2254, + "id": 2252, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -33252,7 +33281,7 @@ } }, { - "id": 2245, + "id": 2243, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -33282,7 +33311,7 @@ } }, { - "id": 2247, + "id": 2245, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -33311,7 +33340,7 @@ } }, { - "id": 2269, + "id": 2267, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -33340,7 +33369,7 @@ } }, { - "id": 2248, + "id": 2246, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -33369,7 +33398,7 @@ } }, { - "id": 2257, + "id": 2255, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -33392,7 +33421,7 @@ } }, { - "id": 2256, + "id": 2254, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -33421,7 +33450,7 @@ } }, { - "id": 2236, + "id": 2234, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -33442,7 +33471,7 @@ } }, { - "id": 2260, + "id": 2258, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -33465,7 +33494,7 @@ } }, { - "id": 2241, + "id": 2239, "name": "username", "kind": 1024, "kindString": "Property", @@ -33488,7 +33517,7 @@ } }, { - "id": 2239, + "id": 2237, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -33504,7 +33533,7 @@ ], "signatures": [ { - "id": 2240, + "id": 2238, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -33532,50 +33561,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2277, - 2238, + 2275, + 2236, + 2257, 2259, - 2261, - 2237, - 2250, - 2262, - 2253, - 2274, - 2284, - 2281, - 2258, - 2272, - 2255, - 2283, - 2276, + 2235, + 2248, + 2260, 2251, + 2272, 2282, - 2271, - 2249, - 2244, + 2279, + 2256, 2270, - 2252, - 2243, - 2273, + 2253, + 2281, + 2274, + 2249, + 2280, + 2269, + 2247, 2242, 2268, - 2254, + 2250, + 2241, + 2271, + 2240, + 2266, + 2252, + 2243, 2245, - 2247, - 2269, - 2248, - 2257, - 2256, - 2236, - 2260, - 2241 + 2267, + 2246, + 2255, + 2254, + 2234, + 2258, + 2239 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2239 + 2237 ] } ], @@ -33588,7 +33617,7 @@ ] }, { - "id": 2590, + "id": 2588, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -33604,7 +33633,7 @@ }, "children": [ { - "id": 2592, + "id": 2590, "name": "height", "kind": 1024, "kindString": "Property", @@ -33636,7 +33665,7 @@ } }, { - "id": 2593, + "id": 2591, "name": "loading", "kind": 1024, "kindString": "Property", @@ -33672,7 +33701,7 @@ } }, { - "id": 2591, + "id": 2589, "name": "width", "kind": 1024, "kindString": "Property", @@ -33709,9 +33738,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2592, - 2593, - 2591 + 2590, + 2591, + 2589 ] } ], @@ -33723,7 +33752,7 @@ } ], "indexSignature": { - "id": 2594, + "id": 2592, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -33733,7 +33762,7 @@ }, "parameters": [ { - "id": 2595, + "id": 2593, "name": "key", "kind": 32768, "flags": {}, @@ -33767,7 +33796,7 @@ } }, { - "id": 2381, + "id": 2379, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -33783,7 +33812,7 @@ }, "children": [ { - "id": 2392, + "id": 2390, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -33817,7 +33846,7 @@ } }, { - "id": 2414, + "id": 2412, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -33848,20 +33877,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2415, + "id": 2413, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2416, + "id": 2414, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2417, + "id": 2415, "name": "key", "kind": 32768, "flags": {}, @@ -33897,7 +33926,7 @@ } }, { - "id": 2438, + "id": 2436, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -33939,7 +33968,7 @@ } }, { - "id": 2435, + "id": 2433, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -33969,7 +33998,7 @@ ], "type": { "type": "reference", - "id": 2231, + "id": 2229, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -33978,7 +34007,7 @@ } }, { - "id": 2451, + "id": 2449, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -34016,7 +34045,7 @@ } }, { - "id": 2432, + "id": 2430, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -34057,7 +34086,7 @@ } }, { - "id": 2418, + "id": 2416, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -34086,7 +34115,7 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2629, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -34095,7 +34124,7 @@ } }, { - "id": 2439, + "id": 2437, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -34137,7 +34166,7 @@ } }, { - "id": 2383, + "id": 2381, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -34175,7 +34204,7 @@ } }, { - "id": 2426, + "id": 2424, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -34213,7 +34242,7 @@ } }, { - "id": 2410, + "id": 2408, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -34251,7 +34280,7 @@ } }, { - "id": 2409, + "id": 2407, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -34283,7 +34312,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -34293,7 +34322,7 @@ } }, { - "id": 2422, + "id": 2420, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -34334,7 +34363,7 @@ } }, { - "id": 2445, + "id": 2443, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -34376,7 +34405,7 @@ } }, { - "id": 2450, + "id": 2448, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -34418,7 +34447,7 @@ } }, { - "id": 2440, + "id": 2438, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -34460,7 +34489,7 @@ } }, { - "id": 2423, + "id": 2421, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -34498,7 +34527,7 @@ } }, { - "id": 2384, + "id": 2382, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -34534,7 +34563,7 @@ } }, { - "id": 2436, + "id": 2434, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -34572,7 +34601,7 @@ } }, { - "id": 2437, + "id": 2435, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -34610,7 +34639,7 @@ } }, { - "id": 2425, + "id": 2423, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -34647,7 +34676,7 @@ } }, { - "id": 2406, + "id": 2404, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -34677,7 +34706,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2588, "name": "FrameParams" }, "inheritedFrom": { @@ -34686,7 +34715,7 @@ } }, { - "id": 2382, + "id": 2380, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -34720,7 +34749,7 @@ } }, { - "id": 2411, + "id": 2409, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -34756,7 +34785,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -34766,7 +34795,7 @@ } }, { - "id": 2398, + "id": 2396, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -34803,7 +34832,7 @@ } }, { - "id": 2448, + "id": 2446, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -34845,7 +34874,7 @@ } }, { - "id": 2441, + "id": 2439, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -34887,7 +34916,7 @@ } }, { - "id": 2393, + "id": 2391, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -34921,7 +34950,7 @@ } }, { - "id": 2419, + "id": 2417, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -34959,7 +34988,7 @@ } }, { - "id": 2453, + "id": 2451, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -34997,7 +35026,7 @@ } }, { - "id": 2454, + "id": 2452, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -35035,7 +35064,7 @@ } }, { - "id": 2446, + "id": 2444, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -35077,7 +35106,7 @@ } }, { - "id": 2444, + "id": 2442, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -35115,7 +35144,7 @@ } }, { - "id": 2400, + "id": 2398, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -35149,7 +35178,7 @@ } }, { - "id": 2401, + "id": 2399, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -35183,7 +35212,7 @@ } }, { - "id": 2402, + "id": 2400, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -35220,7 +35249,7 @@ } }, { - "id": 2403, + "id": 2401, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -35254,7 +35283,7 @@ } }, { - "id": 2428, + "id": 2426, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -35292,7 +35321,7 @@ } }, { - "id": 2385, + "id": 2383, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -35326,7 +35355,7 @@ } }, { - "id": 2391, + "id": 2389, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -35360,7 +35389,7 @@ } }, { - "id": 2452, + "id": 2450, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -35398,7 +35427,7 @@ } }, { - "id": 2413, + "id": 2411, "name": "locale", "kind": 1024, "kindString": "Property", @@ -35436,7 +35465,7 @@ } }, { - "id": 2427, + "id": 2425, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -35474,7 +35503,7 @@ } }, { - "id": 2421, + "id": 2419, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -35512,7 +35541,7 @@ } }, { - "id": 2388, + "id": 2386, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -35546,7 +35575,7 @@ } }, { - "id": 2429, + "id": 2427, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -35584,7 +35613,7 @@ } }, { - "id": 2433, + "id": 2431, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -35616,7 +35645,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1903, "name": "RuntimeFilter" } }, @@ -35626,7 +35655,7 @@ } }, { - "id": 2434, + "id": 2432, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -35658,7 +35687,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2824, + "id": 2822, "name": "RuntimeParameter" } }, @@ -35668,7 +35697,7 @@ } }, { - "id": 2431, + "id": 2429, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -35705,7 +35734,7 @@ } }, { - "id": 2443, + "id": 2441, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -35747,7 +35776,7 @@ } }, { - "id": 2449, + "id": 2447, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -35789,7 +35818,7 @@ } }, { - "id": 2442, + "id": 2440, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -35831,7 +35860,7 @@ } }, { - "id": 2447, + "id": 2445, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -35873,7 +35902,7 @@ } }, { - "id": 2394, + "id": 2392, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -35907,7 +35936,7 @@ } }, { - "id": 2404, + "id": 2402, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -35940,7 +35969,7 @@ } }, { - "id": 2412, + "id": 2410, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -35976,7 +36005,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -35986,7 +36015,7 @@ } }, { - "id": 2399, + "id": 2397, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -36023,7 +36052,7 @@ } }, { - "id": 2389, + "id": 2387, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -36060,7 +36089,7 @@ } }, { - "id": 2387, + "id": 2385, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -36099,65 +36128,65 @@ "title": "Properties", "kind": 1024, "children": [ - 2392, - 2414, - 2438, - 2435, - 2451, - 2432, - 2418, - 2439, - 2383, - 2426, - 2410, - 2409, - 2422, - 2445, - 2450, - 2440, - 2423, - 2384, + 2390, + 2412, 2436, + 2433, + 2449, + 2430, + 2416, 2437, - 2425, - 2406, - 2382, - 2411, - 2398, + 2381, + 2424, + 2408, + 2407, + 2420, + 2443, 2448, - 2441, - 2393, - 2419, - 2453, - 2454, + 2438, + 2421, + 2382, + 2434, + 2435, + 2423, + 2404, + 2380, + 2409, + 2396, 2446, + 2439, + 2391, + 2417, + 2451, + 2452, 2444, + 2442, + 2398, + 2399, 2400, 2401, - 2402, - 2403, - 2428, - 2385, - 2391, - 2452, - 2413, + 2426, + 2383, + 2389, + 2450, + 2411, + 2425, + 2419, + 2386, 2427, - 2421, - 2388, - 2429, - 2433, - 2434, 2431, - 2443, - 2449, - 2442, + 2432, + 2429, + 2441, 2447, - 2394, - 2404, - 2412, - 2399, - 2389, - 2387 + 2440, + 2445, + 2392, + 2402, + 2410, + 2397, + 2387, + 2385 ] } ], @@ -36184,7 +36213,7 @@ ] }, { - "id": 1906, + "id": 1903, "name": "RuntimeFilter", "kind": 256, "kindString": "Interface", @@ -36194,7 +36223,7 @@ }, "children": [ { - "id": 1907, + "id": 1904, "name": "columnName", "kind": 1024, "kindString": "Property", @@ -36215,7 +36244,7 @@ } }, { - "id": 1908, + "id": 1905, "name": "operator", "kind": 1024, "kindString": "Property", @@ -36232,12 +36261,12 @@ ], "type": { "type": "reference", - "id": 1910, + "id": 1907, "name": "RuntimeFilterOp" } }, { - "id": 1909, + "id": 1906, "name": "values", "kind": 1024, "kindString": "Property", @@ -36283,9 +36312,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1907, - 1908, - 1909 + 1904, + 1905, + 1906 ] } ], @@ -36298,7 +36327,7 @@ ] }, { - "id": 2824, + "id": 2822, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -36308,7 +36337,7 @@ }, "children": [ { - "id": 2825, + "id": 2823, "name": "name", "kind": 1024, "kindString": "Property", @@ -36329,7 +36358,7 @@ } }, { - "id": 2826, + "id": 2824, "name": "value", "kind": 1024, "kindString": "Property", @@ -36368,8 +36397,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2825, - 2826 + 2823, + 2824 ] } ], @@ -36382,7 +36411,7 @@ ] }, { - "id": 2455, + "id": 2453, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -36402,7 +36431,7 @@ }, "children": [ { - "id": 2484, + "id": 2482, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -36433,20 +36462,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2485, + "id": 2483, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2486, + "id": 2484, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2487, + "id": 2485, "name": "key", "kind": 32768, "flags": {}, @@ -36482,7 +36511,7 @@ } }, { - "id": 2472, + "id": 2470, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -36524,7 +36553,7 @@ } }, { - "id": 2469, + "id": 2467, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -36554,7 +36583,7 @@ ], "type": { "type": "reference", - "id": 2231, + "id": 2229, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -36563,7 +36592,7 @@ } }, { - "id": 2501, + "id": 2499, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -36604,7 +36633,7 @@ } }, { - "id": 2488, + "id": 2486, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -36633,7 +36662,7 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2629, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -36642,7 +36671,7 @@ } }, { - "id": 2473, + "id": 2471, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -36684,7 +36713,7 @@ } }, { - "id": 2465, + "id": 2463, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -36707,7 +36736,7 @@ } }, { - "id": 2496, + "id": 2494, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -36745,7 +36774,7 @@ } }, { - "id": 2460, + "id": 2458, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -36774,7 +36803,7 @@ } }, { - "id": 2480, + "id": 2478, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -36812,7 +36841,7 @@ } }, { - "id": 2479, + "id": 2477, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -36844,7 +36873,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -36854,7 +36883,7 @@ } }, { - "id": 2492, + "id": 2490, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -36895,7 +36924,7 @@ } }, { - "id": 2474, + "id": 2472, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -36937,7 +36966,7 @@ } }, { - "id": 2493, + "id": 2491, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -36975,7 +37004,7 @@ } }, { - "id": 2470, + "id": 2468, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -37013,7 +37042,7 @@ } }, { - "id": 2471, + "id": 2469, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -37051,7 +37080,7 @@ } }, { - "id": 2495, + "id": 2493, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -37088,7 +37117,7 @@ } }, { - "id": 2476, + "id": 2474, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -37118,7 +37147,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2588, "name": "FrameParams" }, "inheritedFrom": { @@ -37127,7 +37156,7 @@ } }, { - "id": 2481, + "id": 2479, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -37163,7 +37192,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -37173,7 +37202,7 @@ } }, { - "id": 2462, + "id": 2460, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -37202,7 +37231,7 @@ } }, { - "id": 2459, + "id": 2457, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -37231,7 +37260,7 @@ } }, { - "id": 2464, + "id": 2462, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -37265,7 +37294,7 @@ } }, { - "id": 2458, + "id": 2456, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -37298,7 +37327,7 @@ } }, { - "id": 2461, + "id": 2459, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -37327,7 +37356,7 @@ } }, { - "id": 2489, + "id": 2487, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -37365,7 +37394,7 @@ } }, { - "id": 2498, + "id": 2496, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -37403,7 +37432,7 @@ } }, { - "id": 2483, + "id": 2481, "name": "locale", "kind": 1024, "kindString": "Property", @@ -37441,7 +37470,7 @@ } }, { - "id": 2497, + "id": 2495, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -37479,7 +37508,7 @@ } }, { - "id": 2491, + "id": 2489, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -37517,7 +37546,7 @@ } }, { - "id": 2467, + "id": 2465, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -37549,7 +37578,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1903, "name": "RuntimeFilter" } }, @@ -37559,7 +37588,7 @@ } }, { - "id": 2468, + "id": 2466, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -37591,7 +37620,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2824, + "id": 2822, "name": "RuntimeParameter" } }, @@ -37601,7 +37630,7 @@ } }, { - "id": 2466, + "id": 2464, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -37635,7 +37664,7 @@ } }, { - "id": 2500, + "id": 2498, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -37672,7 +37701,7 @@ } }, { - "id": 2456, + "id": 2454, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -37701,7 +37730,7 @@ } }, { - "id": 2463, + "id": 2461, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -37730,7 +37759,7 @@ } }, { - "id": 2482, + "id": 2480, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -37766,7 +37795,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -37781,42 +37810,42 @@ "title": "Properties", "kind": 1024, "children": [ - 2484, + 2482, + 2470, + 2467, + 2499, + 2486, + 2471, + 2463, + 2494, + 2458, + 2478, + 2477, + 2490, 2472, + 2491, + 2468, 2469, - 2501, - 2488, - 2473, - 2465, - 2496, - 2460, - 2480, - 2479, - 2492, - 2474, 2493, - 2470, - 2471, - 2495, - 2476, - 2481, + 2474, + 2479, + 2460, + 2457, 2462, + 2456, 2459, - 2464, - 2458, - 2461, + 2487, + 2496, + 2481, + 2495, 2489, - 2498, - 2483, - 2497, - 2491, - 2467, - 2468, + 2465, 2466, - 2500, - 2456, - 2463, - 2482 + 2464, + 2498, + 2454, + 2461, + 2480 ] } ], @@ -37870,7 +37899,7 @@ ] }, { - "id": 2339, + "id": 2337, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -37885,7 +37914,7 @@ }, "children": [ { - "id": 2354, + "id": 2352, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -37916,20 +37945,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2355, + "id": 2353, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2356, + "id": 2354, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2357, + "id": 2355, "name": "key", "kind": 32768, "flags": {}, @@ -37965,7 +37994,7 @@ } }, { - "id": 2378, + "id": 2376, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -38007,7 +38036,7 @@ } }, { - "id": 2375, + "id": 2373, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -38037,7 +38066,7 @@ ], "type": { "type": "reference", - "id": 2231, + "id": 2229, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -38046,7 +38075,7 @@ } }, { - "id": 2372, + "id": 2370, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -38087,7 +38116,7 @@ } }, { - "id": 2358, + "id": 2356, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -38116,7 +38145,7 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2629, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -38125,7 +38154,7 @@ } }, { - "id": 2379, + "id": 2377, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -38167,7 +38196,7 @@ } }, { - "id": 2341, + "id": 2339, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -38201,7 +38230,7 @@ } }, { - "id": 2340, + "id": 2338, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -38242,7 +38271,7 @@ } }, { - "id": 2366, + "id": 2364, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -38280,7 +38309,7 @@ } }, { - "id": 2350, + "id": 2348, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -38318,7 +38347,7 @@ } }, { - "id": 2349, + "id": 2347, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -38350,7 +38379,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -38360,7 +38389,7 @@ } }, { - "id": 2362, + "id": 2360, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -38401,7 +38430,7 @@ } }, { - "id": 2380, + "id": 2378, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -38443,7 +38472,7 @@ } }, { - "id": 2363, + "id": 2361, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -38481,7 +38510,7 @@ } }, { - "id": 2376, + "id": 2374, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -38519,7 +38548,7 @@ } }, { - "id": 2377, + "id": 2375, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -38557,7 +38586,7 @@ } }, { - "id": 2344, + "id": 2342, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -38591,7 +38620,7 @@ } }, { - "id": 2365, + "id": 2363, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -38628,7 +38657,7 @@ } }, { - "id": 2346, + "id": 2344, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -38658,7 +38687,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2588, "name": "FrameParams" }, "inheritedFrom": { @@ -38667,7 +38696,7 @@ } }, { - "id": 2351, + "id": 2349, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -38703,7 +38732,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -38713,7 +38742,7 @@ } }, { - "id": 2359, + "id": 2357, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -38751,7 +38780,7 @@ } }, { - "id": 2368, + "id": 2366, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -38789,7 +38818,7 @@ } }, { - "id": 2353, + "id": 2351, "name": "locale", "kind": 1024, "kindString": "Property", @@ -38827,7 +38856,7 @@ } }, { - "id": 2367, + "id": 2365, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -38865,7 +38894,7 @@ } }, { - "id": 2361, + "id": 2359, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -38903,7 +38932,7 @@ } }, { - "id": 2369, + "id": 2367, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -38941,7 +38970,7 @@ } }, { - "id": 2373, + "id": 2371, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -38973,7 +39002,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1903, "name": "RuntimeFilter" } }, @@ -38983,7 +39012,7 @@ } }, { - "id": 2374, + "id": 2372, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -39015,7 +39044,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2824, + "id": 2822, "name": "RuntimeParameter" } }, @@ -39025,7 +39054,7 @@ } }, { - "id": 2343, + "id": 2341, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -39059,7 +39088,7 @@ } }, { - "id": 2371, + "id": 2369, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -39096,7 +39125,7 @@ } }, { - "id": 2342, + "id": 2340, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -39130,7 +39159,7 @@ } }, { - "id": 2352, + "id": 2350, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -39166,7 +39195,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -39181,38 +39210,38 @@ "title": "Properties", "kind": 1024, "children": [ - 2354, + 2352, + 2376, + 2373, + 2370, + 2356, + 2377, + 2339, + 2338, + 2364, + 2348, + 2347, + 2360, 2378, + 2361, + 2374, 2375, - 2372, - 2358, - 2379, - 2341, - 2340, - 2366, - 2350, - 2349, - 2362, - 2380, + 2342, 2363, - 2376, - 2377, 2344, - 2365, - 2346, + 2349, + 2357, + 2366, 2351, + 2365, 2359, - 2368, - 2353, 2367, - 2361, - 2369, - 2373, - 2374, - 2343, 2371, - 2342, - 2352 + 2372, + 2341, + 2369, + 2340, + 2350 ] } ], @@ -39235,7 +39264,7 @@ ] }, { - "id": 2285, + "id": 2283, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -39251,7 +39280,7 @@ }, "children": [ { - "id": 2321, + "id": 2319, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -39282,20 +39311,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2322, + "id": 2320, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2323, + "id": 2321, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2324, + "id": 2322, "name": "key", "kind": 32768, "flags": {}, @@ -39331,7 +39360,7 @@ } }, { - "id": 2297, + "id": 2295, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -39365,7 +39394,7 @@ } }, { - "id": 2287, + "id": 2285, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -39399,7 +39428,7 @@ } }, { - "id": 2286, + "id": 2284, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -39433,7 +39462,7 @@ } }, { - "id": 2309, + "id": 2307, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -39475,7 +39504,7 @@ } }, { - "id": 2300, + "id": 2298, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -39512,7 +39541,7 @@ } }, { - "id": 2306, + "id": 2304, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -39542,7 +39571,7 @@ ], "type": { "type": "reference", - "id": 2231, + "id": 2229, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -39551,7 +39580,7 @@ } }, { - "id": 2338, + "id": 2336, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -39592,7 +39621,7 @@ } }, { - "id": 2325, + "id": 2323, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -39621,7 +39650,7 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2629, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -39630,7 +39659,7 @@ } }, { - "id": 2302, + "id": 2300, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -39668,7 +39697,7 @@ } }, { - "id": 2310, + "id": 2308, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -39710,7 +39739,7 @@ } }, { - "id": 2293, + "id": 2291, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -39744,7 +39773,7 @@ } }, { - "id": 2292, + "id": 2290, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -39780,7 +39809,7 @@ } }, { - "id": 2333, + "id": 2331, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -39818,7 +39847,7 @@ } }, { - "id": 2317, + "id": 2315, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -39856,7 +39885,7 @@ } }, { - "id": 2316, + "id": 2314, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -39888,7 +39917,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -39898,7 +39927,7 @@ } }, { - "id": 2329, + "id": 2327, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -39939,7 +39968,7 @@ } }, { - "id": 2311, + "id": 2309, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -39981,7 +40010,7 @@ } }, { - "id": 2290, + "id": 2288, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -40015,7 +40044,7 @@ } }, { - "id": 2330, + "id": 2328, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -40053,7 +40082,7 @@ } }, { - "id": 2307, + "id": 2305, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -40091,7 +40120,7 @@ } }, { - "id": 2308, + "id": 2306, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -40129,7 +40158,7 @@ } }, { - "id": 2296, + "id": 2294, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -40163,7 +40192,7 @@ } }, { - "id": 2332, + "id": 2330, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -40200,7 +40229,7 @@ } }, { - "id": 2303, + "id": 2301, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -40238,7 +40267,7 @@ } }, { - "id": 2291, + "id": 2289, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -40272,7 +40301,7 @@ } }, { - "id": 2313, + "id": 2311, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -40302,7 +40331,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2588, "name": "FrameParams" }, "inheritedFrom": { @@ -40311,7 +40340,7 @@ } }, { - "id": 2318, + "id": 2316, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -40347,7 +40376,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -40357,7 +40386,7 @@ } }, { - "id": 2288, + "id": 2286, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -40391,7 +40420,7 @@ } }, { - "id": 2289, + "id": 2287, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -40425,7 +40454,7 @@ } }, { - "id": 2298, + "id": 2296, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -40459,7 +40488,7 @@ } }, { - "id": 2326, + "id": 2324, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -40497,7 +40526,7 @@ } }, { - "id": 2301, + "id": 2299, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -40527,7 +40556,7 @@ } }, { - "id": 2335, + "id": 2333, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -40565,7 +40594,7 @@ } }, { - "id": 2320, + "id": 2318, "name": "locale", "kind": 1024, "kindString": "Property", @@ -40603,7 +40632,7 @@ } }, { - "id": 2334, + "id": 2332, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -40641,7 +40670,7 @@ } }, { - "id": 2328, + "id": 2326, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -40679,7 +40708,7 @@ } }, { - "id": 2304, + "id": 2302, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -40711,7 +40740,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1903, "name": "RuntimeFilter" } }, @@ -40721,7 +40750,7 @@ } }, { - "id": 2305, + "id": 2303, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -40753,7 +40782,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2824, + "id": 2822, "name": "RuntimeParameter" } }, @@ -40763,7 +40792,7 @@ } }, { - "id": 2295, + "id": 2293, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -40793,7 +40822,7 @@ } }, { - "id": 2294, + "id": 2292, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -40822,7 +40851,7 @@ } }, { - "id": 2337, + "id": 2335, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -40859,7 +40888,7 @@ } }, { - "id": 2299, + "id": 2297, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -40889,7 +40918,7 @@ } }, { - "id": 2319, + "id": 2317, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -40925,7 +40954,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -40940,50 +40969,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2321, - 2297, - 2287, - 2286, - 2309, - 2300, - 2306, - 2338, - 2325, - 2302, - 2310, - 2293, - 2292, - 2333, - 2317, - 2316, - 2329, - 2311, - 2290, - 2330, + 2319, + 2295, + 2285, + 2284, 2307, + 2298, + 2304, + 2336, + 2323, + 2300, 2308, - 2296, - 2332, - 2303, 2291, - 2313, - 2318, + 2290, + 2331, + 2315, + 2314, + 2327, + 2309, 2288, - 2289, - 2298, - 2326, - 2301, - 2335, - 2320, - 2334, 2328, - 2304, 2305, - 2295, + 2306, 2294, - 2337, + 2330, + 2301, + 2289, + 2311, + 2316, + 2286, + 2287, + 2296, + 2324, 2299, - 2319 + 2333, + 2318, + 2332, + 2326, + 2302, + 2303, + 2293, + 2292, + 2335, + 2297, + 2317 ] } ], @@ -41016,14 +41045,14 @@ ] }, { - "id": 1875, + "id": 1872, "name": "SessionInterface", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1878, + "id": 1875, "name": "acSession", "kind": 1024, "kindString": "Property", @@ -41038,14 +41067,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1879, + "id": 1876, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1881, + "id": 1878, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -41063,7 +41092,7 @@ } }, { - "id": 1880, + "id": 1877, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -41086,8 +41115,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1881, - 1880 + 1878, + 1877 ] } ] @@ -41095,7 +41124,7 @@ } }, { - "id": 1877, + "id": 1874, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -41113,7 +41142,7 @@ } }, { - "id": 1876, + "id": 1873, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -41136,9 +41165,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1878, - 1877, - 1876 + 1875, + 1874, + 1873 ] } ], @@ -41151,7 +41180,7 @@ ] }, { - "id": 1231, + "id": 1228, "name": "SpotterAgentEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -41167,7 +41196,7 @@ }, "children": [ { - "id": 1242, + "id": 1239, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -41198,20 +41227,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1243, + "id": 1240, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1244, + "id": 1241, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1245, + "id": 1242, "name": "key", "kind": 32768, "flags": {}, @@ -41247,7 +41276,7 @@ } }, { - "id": 1259, + "id": 1256, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -41288,7 +41317,7 @@ } }, { - "id": 1246, + "id": 1243, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -41317,7 +41346,7 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2629, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -41326,7 +41355,7 @@ } }, { - "id": 1254, + "id": 1251, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -41364,7 +41393,7 @@ } }, { - "id": 1238, + "id": 1235, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -41402,7 +41431,7 @@ } }, { - "id": 1237, + "id": 1234, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -41434,7 +41463,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -41444,7 +41473,7 @@ } }, { - "id": 1250, + "id": 1247, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -41485,7 +41514,7 @@ } }, { - "id": 1251, + "id": 1248, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -41523,7 +41552,7 @@ } }, { - "id": 1253, + "id": 1250, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -41560,7 +41589,7 @@ } }, { - "id": 1234, + "id": 1231, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -41590,7 +41619,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2588, "name": "FrameParams" }, "inheritedFrom": { @@ -41599,7 +41628,7 @@ } }, { - "id": 1239, + "id": 1236, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -41635,7 +41664,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -41645,7 +41674,7 @@ } }, { - "id": 1247, + "id": 1244, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -41683,7 +41712,7 @@ } }, { - "id": 1256, + "id": 1253, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -41721,7 +41750,7 @@ } }, { - "id": 1241, + "id": 1238, "name": "locale", "kind": 1024, "kindString": "Property", @@ -41759,7 +41788,7 @@ } }, { - "id": 1255, + "id": 1252, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -41797,7 +41826,7 @@ } }, { - "id": 1249, + "id": 1246, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -41835,7 +41864,7 @@ } }, { - "id": 1258, + "id": 1255, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -41872,7 +41901,7 @@ } }, { - "id": 1240, + "id": 1237, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -41908,7 +41937,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -41918,7 +41947,7 @@ } }, { - "id": 1232, + "id": 1229, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -41944,25 +41973,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1242, - 1259, - 1246, - 1254, - 1238, - 1237, - 1250, + 1239, + 1256, + 1243, 1251, - 1253, + 1235, 1234, - 1239, 1247, - 1256, - 1241, + 1248, + 1250, + 1231, + 1236, + 1244, + 1253, + 1238, + 1252, + 1246, 1255, - 1249, - 1258, - 1240, - 1232 + 1237, + 1229 ] } ], @@ -41992,13 +42021,13 @@ "extendedBy": [ { "type": "reference", - "id": 1260, + "id": 1257, "name": "BodylessConversationViewConfig" } ] }, { - "id": 1486, + "id": 1483, "name": "SpotterEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -42014,7 +42043,7 @@ }, "children": [ { - "id": 1508, + "id": 1505, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -42045,20 +42074,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1509, + "id": 1506, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1510, + "id": 1507, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1511, + "id": 1508, "name": "key", "kind": 32768, "flags": {}, @@ -42094,7 +42123,7 @@ } }, { - "id": 1525, + "id": 1522, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -42135,7 +42164,7 @@ } }, { - "id": 1512, + "id": 1509, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -42164,7 +42193,7 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2629, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -42173,7 +42202,7 @@ } }, { - "id": 1491, + "id": 1488, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -42211,7 +42240,7 @@ } }, { - "id": 1520, + "id": 1517, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -42249,7 +42278,7 @@ } }, { - "id": 1489, + "id": 1486, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -42283,7 +42312,7 @@ } }, { - "id": 1504, + "id": 1501, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -42321,7 +42350,7 @@ } }, { - "id": 1503, + "id": 1500, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -42353,7 +42382,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -42363,7 +42392,7 @@ } }, { - "id": 1516, + "id": 1513, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -42404,7 +42433,7 @@ } }, { - "id": 1498, + "id": 1495, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -42442,7 +42471,7 @@ } }, { - "id": 1517, + "id": 1514, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -42480,7 +42509,7 @@ } }, { - "id": 1495, + "id": 1492, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -42514,7 +42543,7 @@ } }, { - "id": 1497, + "id": 1494, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -42548,7 +42577,7 @@ } }, { - "id": 1519, + "id": 1516, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -42585,7 +42614,7 @@ } }, { - "id": 1500, + "id": 1497, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -42615,7 +42644,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2588, "name": "FrameParams" }, "inheritedFrom": { @@ -42624,7 +42653,7 @@ } }, { - "id": 1505, + "id": 1502, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -42660,7 +42689,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -42670,7 +42699,7 @@ } }, { - "id": 1493, + "id": 1490, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -42704,7 +42733,7 @@ } }, { - "id": 1490, + "id": 1487, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -42738,7 +42767,7 @@ } }, { - "id": 1513, + "id": 1510, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -42776,7 +42805,7 @@ } }, { - "id": 1522, + "id": 1519, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -42814,7 +42843,7 @@ } }, { - "id": 1507, + "id": 1504, "name": "locale", "kind": 1024, "kindString": "Property", @@ -42852,7 +42881,7 @@ } }, { - "id": 1521, + "id": 1518, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -42890,7 +42919,7 @@ } }, { - "id": 1515, + "id": 1512, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -42928,7 +42957,7 @@ } }, { - "id": 1494, + "id": 1491, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -42960,13 +42989,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1903, "name": "RuntimeFilter" } } }, { - "id": 1496, + "id": 1493, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -42998,13 +43027,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2824, + "id": 2822, "name": "RuntimeParameter" } } }, { - "id": 1488, + "id": 1485, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -43027,7 +43056,7 @@ } }, { - "id": 1524, + "id": 1521, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -43064,7 +43093,7 @@ } }, { - "id": 1492, + "id": 1489, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -43098,7 +43127,7 @@ } }, { - "id": 1506, + "id": 1503, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -43134,7 +43163,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -43144,7 +43173,7 @@ } }, { - "id": 1487, + "id": 1484, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -43170,36 +43199,36 @@ "title": "Properties", "kind": 1024, "children": [ - 1508, - 1525, - 1512, - 1491, - 1520, - 1489, - 1504, - 1503, - 1516, - 1498, + 1505, + 1522, + 1509, + 1488, 1517, + 1486, + 1501, + 1500, + 1513, 1495, + 1514, + 1492, + 1494, + 1516, 1497, + 1502, + 1490, + 1487, + 1510, 1519, - 1500, - 1505, + 1504, + 1518, + 1512, + 1491, 1493, - 1490, - 1513, - 1522, - 1507, + 1485, 1521, - 1515, - 1494, - 1496, - 1488, - 1524, - 1492, - 1506, - 1487 + 1489, + 1503, + 1484 ] } ], @@ -43229,20 +43258,20 @@ "extendedBy": [ { "type": "reference", - "id": 1526, + "id": 1523, "name": "ConversationViewConfig" } ] }, { - "id": 1882, + "id": 1879, "name": "UnderlyingDataPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1883, + "id": 1880, "name": "columnId", "kind": 1024, "kindString": "Property", @@ -43260,7 +43289,7 @@ } }, { - "id": 1884, + "id": 1881, "name": "dataValue", "kind": 1024, "kindString": "Property", @@ -43283,8 +43312,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1883, - 1884 + 1880, + 1881 ] } ], @@ -43297,14 +43326,14 @@ ] }, { - "id": 2862, + "id": 2860, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2863, + "id": 2861, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -43312,7 +43341,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5755, + "line": 5765, "character": 4 } ], @@ -43325,7 +43354,7 @@ } }, { - "id": 2864, + "id": 2862, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -43333,7 +43362,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5756, + "line": 5766, "character": 4 } ], @@ -43351,21 +43380,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2863, - 2864 + 2861, + 2862 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5754, + "line": 5764, "character": 17 } ] }, { - "id": 2644, + "id": 2642, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -43375,7 +43404,7 @@ }, "children": [ { - "id": 2646, + "id": 2644, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -43405,20 +43434,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2647, + "id": 2645, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2648, + "id": 2646, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2649, + "id": 2647, "name": "selector", "kind": 32768, "flags": {}, @@ -43431,7 +43460,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2650, + "id": 2648, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43444,14 +43473,14 @@ } ], "indexSignature": { - "id": 2651, + "id": 2649, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2652, + "id": 2650, "name": "declaration", "kind": 32768, "flags": {}, @@ -43473,7 +43502,7 @@ } }, { - "id": 2645, + "id": 2643, "name": "variables", "kind": 1024, "kindString": "Property", @@ -43492,7 +43521,7 @@ ], "type": { "type": "reference", - "id": 2653, + "id": 2651, "name": "CustomCssVariables" } } @@ -43502,8 +43531,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2646, - 2645 + 2644, + 2643 ] } ], @@ -43808,7 +43837,7 @@ ] }, { - "id": 2614, + "id": 2612, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -43835,7 +43864,7 @@ } }, { - "id": 2618, + "id": 2616, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -43850,7 +43879,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2619, + "id": 2617, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43873,7 +43902,7 @@ ], "signatures": [ { - "id": 2620, + "id": 2618, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43883,19 +43912,19 @@ }, "parameters": [ { - "id": 2621, + "id": 2619, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2626, + "id": 2624, "name": "MessagePayload" } }, { - "id": 2622, + "id": 2620, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -43905,7 +43934,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2623, + "id": 2621, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43919,7 +43948,7 @@ ], "signatures": [ { - "id": 2624, + "id": 2622, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43929,7 +43958,7 @@ }, "parameters": [ { - "id": 2625, + "id": 2623, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -43960,7 +43989,7 @@ } }, { - "id": 2615, + "id": 2613, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -43984,14 +44013,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2616, + "id": 2614, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2617, + "id": 2615, "name": "start", "kind": 1024, "kindString": "Property", @@ -44019,7 +44048,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2617 + 2615 ] } ], @@ -44034,7 +44063,7 @@ } }, { - "id": 2626, + "id": 2624, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -44058,14 +44087,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2627, + "id": 2625, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2629, + "id": 2627, "name": "data", "kind": 1024, "kindString": "Property", @@ -44083,7 +44112,7 @@ } }, { - "id": 2630, + "id": 2628, "name": "status", "kind": 1024, "kindString": "Property", @@ -44103,7 +44132,7 @@ } }, { - "id": 2628, + "id": 2626, "name": "type", "kind": 1024, "kindString": "Property", @@ -44126,9 +44155,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2629, - 2630, - 2628 + 2627, + 2628, + 2626 ] } ], @@ -44143,7 +44172,7 @@ } }, { - "id": 51, + "id": 48, "name": "createLiveboardWithAnswers", "kind": 64, "kindString": "Function", @@ -44159,7 +44188,7 @@ ], "signatures": [ { - "id": 52, + "id": 49, "name": "createLiveboardWithAnswers", "kind": 4096, "kindString": "Call signature", @@ -44181,7 +44210,7 @@ }, "parameters": [ { - "id": 53, + "id": 50, "name": "answers", "kind": 32768, "kindString": "Parameter", @@ -44193,13 +44222,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } } }, { - "id": 54, + "id": 51, "name": "name", "kind": 32768, "kindString": "Parameter", @@ -44363,7 +44392,7 @@ ] }, { - "id": 44, + "id": 41, "name": "getAnswerFromQuery", "kind": 64, "kindString": "Function", @@ -44379,7 +44408,7 @@ ], "signatures": [ { - "id": 45, + "id": 42, "name": "getAnswerFromQuery", "kind": 4096, "kindString": "Call signature", @@ -44400,7 +44429,7 @@ }, "parameters": [ { - "id": 46, + "id": 43, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -44414,7 +44443,7 @@ } }, { - "id": 47, + "id": 44, "name": "worksheetId", "kind": 32768, "kindString": "Parameter", @@ -44434,14 +44463,14 @@ { "type": "reflection", "declaration": { - "id": 48, + "id": 45, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 49, + "id": 46, "name": "answer", "kind": 1024, "kindString": "Property", @@ -44455,12 +44484,12 @@ ], "type": { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } }, { - "id": 50, + "id": 47, "name": "suggestion", "kind": 1024, "kindString": "Property", @@ -44483,8 +44512,8 @@ "title": "Properties", "kind": 1024, "children": [ - 49, - 50 + 46, + 47 ] } ] @@ -44542,7 +44571,7 @@ }, "type": { "type": "reference", - "id": 2235, + "id": 2233, "name": "EmbedConfig" } } @@ -44642,14 +44671,14 @@ }, "type": { "type": "reference", - "id": 2235, + "id": 2233, "name": "EmbedConfig" } } ], "type": { "type": "reference", - "id": 1749, + "id": 1746, "name": "AuthEventEmitter" } } @@ -44789,7 +44818,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2585, + "id": 2583, "name": "PrefetchFeatures" } } @@ -44861,7 +44890,7 @@ ] }, { - "id": 2911, + "id": 2909, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -44877,7 +44906,7 @@ ], "signatures": [ { - "id": 2912, + "id": 2910, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -44992,86 +45021,11 @@ ], "name": "Promise" } - }, - { - "id": 41, - "name": "tokenizedFetch", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Fetch wrapper that adds the authentication token to the request.\nUse this to call the ThoughtSpot APIs when using the visual embed sdk.\nThe interface for this method is the same as Web `Fetch`.", - "tags": [ - { - "tag": "example", - "text": "\n```js\ntokenizedFetch(\"/api/rest/2.0/auth/session/user\", {\n // .. fetch options ..\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.28.0" - }, - { - "tag": "group", - "text": "Global methods\n" - } - ] - }, - "parameters": [ - { - "id": 42, - "name": "input", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "reference", - "name": "URL" - }, - { - "type": "reference", - "name": "globalThis.Request" - } - ] - } - }, - { - "id": 43, - "name": "init", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "comment": {}, - "type": { - "type": "reference", - "name": "RequestInit" - } - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "Response" - } - ], - "name": "Promise" - } } ] }, { - "id": 2834, + "id": 2832, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -45085,7 +45039,7 @@ ], "signatures": [ { - "id": 2835, + "id": 2833, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -45095,7 +45049,7 @@ }, "parameters": [ { - "id": 2836, + "id": 2834, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -45107,7 +45061,7 @@ } }, { - "id": 2837, + "id": 2835, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -45118,7 +45072,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2838, + "id": 2836, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -45141,74 +45095,74 @@ "title": "Enumerations", "kind": 4, "children": [ - 2094, - 1747, - 1732, - 1739, - 1894, - 2231, - 2906, - 2902, - 2898, - 2090, - 1926, - 2596, - 2856, - 2850, - 2607, - 2019, - 2859, - 2892, - 2827, - 1885, - 2585, + 2091, + 1744, + 1729, + 1736, + 1891, + 2229, + 2904, + 2900, + 2896, + 2087, + 1923, + 2594, 2854, - 1910, - 2885 + 2848, + 2605, + 2016, + 2857, + 2890, + 2825, + 1882, + 2583, + 2852, + 1907, + 2883 ] }, { "title": "Classes", "kind": 128, "children": [ - 1802, - 989, - 1289, - 1566, - 590, - 813, - 231, - 55, - 1199, - 1320 + 1799, + 986, + 1286, + 1563, + 587, + 810, + 228, + 52, + 1196, + 1317 ] }, { "title": "Interfaces", "kind": 256, "children": [ - 2502, - 1749, - 1260, - 1526, - 2865, - 2653, - 2641, - 2631, - 2235, - 2590, - 2381, - 1906, - 2824, - 2455, - 2339, - 2285, - 1875, - 1231, - 1486, - 1882, - 2862, - 2644, + 2500, + 1746, + 1257, + 1523, + 2863, + 2651, + 2639, + 2629, + 2233, + 2588, + 2379, + 1903, + 2822, + 2453, + 2337, + 2283, + 1872, + 1228, + 1483, + 1879, + 2860, + 2642, 21, 25 ] @@ -45217,28 +45171,28 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2614, - 2618, - 2615, - 2626 + 2612, + 2616, + 2613, + 2624 ] }, { "title": "Functions", "kind": 64, "children": [ - 51, + 48, 15, 18, - 44, + 41, 33, 35, 1, 4, 7, - 2911, + 2909, 37, - 2834 + 2832 ] } ], From fedaf3477e5e20c5afad91c3b1e221d1653a372d Mon Sep 17 00:00:00 2001 From: sanjay-satheesh-thoughtspot Date: Fri, 17 Oct 2025 07:02:06 +0530 Subject: [PATCH 19/31] SCAL-277608 feat(css-variables): remove unused liveboard styling variables from documentation (#332) --- src/css-variables.ts | 58 - static/typedoc/typedoc.json | 6491 +++++++++++++++++------------------ 2 files changed, 3161 insertions(+), 3388 deletions(-) diff --git a/src/css-variables.ts b/src/css-variables.ts index 992a0159a..0ff3d020c 100644 --- a/src/css-variables.ts +++ b/src/css-variables.ts @@ -474,36 +474,16 @@ export interface CustomCssVariables { */ '--ts-var-checkbox-background-color'?: string; - /** - * Height of the tiles in the Liveboard. - */ - '--ts-var-viz-tile-height'?: string; - /** * Background color of the layout in the Liveboard. */ '--ts-var-liveboard-layout-background'?: string; - /** - * Font color of the title of the layout in the Liveboard. - */ - '--ts-var-liveboard-layout-title-color'?: string; - - /** - * Font size of the title of the layout in the Liveboard. - */ - '--ts-var-liveboard-layout-title-fontsize'?: string; - /** * Background color of the header in the Liveboard. */ '--ts-var-liveboard-header-background'?: string; - /** - * Font size of the header in the Liveboard. - */ - '--ts-var-liveboard-header-fontsize'?: string; - /** * Font color of the header in the Liveboard. */ @@ -541,13 +521,6 @@ export interface CustomCssVariables { */ '--ts-var-liveboard-group-padding'?: string; - /** - * Padding of the title of the groups in the Liveboard. - * - * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. - */ - '--ts-var-liveboard-group-title-padding'?: string; - /** * Font size of the title of the groups in the Liveboard. * @@ -576,27 +549,6 @@ export interface CustomCssVariables { */ '--ts-var-liveboard-group-tile-title-font-weight'?: string; - /** - * Font size of the description of the groups in the Liveboard. - * - * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. - */ - '--ts-var-liveboard-group-description-font-size'?: string; - - /** - * Font weight of the description of the groups in the Liveboard. - * - * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. - */ - '--ts-var-liveboard-group-description-font-weight'?: string; - - /** - * Border of the group tiles in the Liveboard. - * - * Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable. - */ - '--ts-var-liveboard-group-tile-border'?: string; - /** * Padding of the group tiles in the Liveboard. * @@ -741,16 +693,6 @@ export interface CustomCssVariables { */ '--ts-var-liveboard-tile-title-fontweight'?: string; - /** - * Font weight of the description of the tiles in the Liveboard. - */ - '--ts-var-liveboard-tile-description-font-weight'?: string; - - /** - * Opacity of the description of the tiles in the Liveboard. - */ - '--ts-var-liveboard-tile-description-opacity'?: string; - /** * Background color of the parameter chips in the Liveboard. */ diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index afe093c40..1b24436a3 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 2091, + "id": 2094, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 2204, + "id": 2207, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -55,7 +55,7 @@ "defaultValue": "\"AIHighlights\"" }, { - "id": 2111, + "id": 2114, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -83,7 +83,7 @@ "defaultValue": "\"addSimpleCohort\"" }, { - "id": 2104, + "id": 2107, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -111,7 +111,7 @@ "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 2103, + "id": 2106, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -135,7 +135,7 @@ "defaultValue": "\"addFilter\"" }, { - "id": 2109, + "id": 2112, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -159,7 +159,7 @@ "defaultValue": "\"addFormula\"" }, { - "id": 2110, + "id": 2113, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -183,7 +183,7 @@ "defaultValue": "\"addParameter\"" }, { - "id": 2112, + "id": 2115, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -211,7 +211,7 @@ "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 2186, + "id": 2189, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -239,7 +239,7 @@ "defaultValue": "\"addTab\"" }, { - "id": 2159, + "id": 2162, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -267,7 +267,7 @@ "defaultValue": "\"addToFavorites\"" }, { - "id": 2201, + "id": 2204, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -295,7 +295,7 @@ "defaultValue": "\"addToWatchlist\"" }, { - "id": 2158, + "id": 2161, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -323,7 +323,7 @@ "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2157, + "id": 2160, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -351,7 +351,7 @@ "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2200, + "id": 2203, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -380,7 +380,7 @@ "defaultValue": "\"AskAi\"" }, { - "id": 2170, + "id": 2173, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -408,7 +408,7 @@ "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 2173, + "id": 2176, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -436,7 +436,7 @@ "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 2178, + "id": 2181, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -464,7 +464,7 @@ "defaultValue": "\"axisMenuEdit\"" }, { - "id": 2172, + "id": 2175, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -492,7 +492,7 @@ "defaultValue": "\"axisMenuFilter\"" }, { - "id": 2175, + "id": 2178, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -520,7 +520,7 @@ "defaultValue": "\"axisMenuGroup\"" }, { - "id": 2179, + "id": 2182, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -548,7 +548,7 @@ "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 2176, + "id": 2179, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -576,7 +576,7 @@ "defaultValue": "\"axisMenuPosition\"" }, { - "id": 2181, + "id": 2184, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -604,7 +604,7 @@ "defaultValue": "\"axisMenuRemove\"" }, { - "id": 2177, + "id": 2180, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -632,7 +632,7 @@ "defaultValue": "\"axisMenuRename\"" }, { - "id": 2174, + "id": 2177, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -660,7 +660,7 @@ "defaultValue": "\"axisMenuSort\"" }, { - "id": 2180, + "id": 2183, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -688,7 +688,7 @@ "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 2171, + "id": 2174, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -716,7 +716,7 @@ "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 2213, + "id": 2216, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -744,7 +744,7 @@ "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 2108, + "id": 2111, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -768,7 +768,7 @@ "defaultValue": "\"chooseDataSources\"" }, { - "id": 2107, + "id": 2110, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -796,7 +796,7 @@ "defaultValue": "\"collapseDataPanel\"" }, { - "id": 2106, + "id": 2109, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -824,7 +824,7 @@ "defaultValue": "\"collapseDataSources\"" }, { - "id": 2220, + "id": 2223, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -852,7 +852,7 @@ "defaultValue": "\"columnRename\"" }, { - "id": 2105, + "id": 2108, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -876,7 +876,7 @@ "defaultValue": "\"configureFilter\"" }, { - "id": 2150, + "id": 2153, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -891,7 +891,7 @@ "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 2098, + "id": 2101, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -915,7 +915,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 2149, + "id": 2152, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -939,7 +939,7 @@ "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2221, + "id": 2224, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -967,7 +967,7 @@ "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 2198, + "id": 2201, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -995,7 +995,7 @@ "defaultValue": "\"createLiveboard\"" }, { - "id": 2161, + "id": 2164, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1023,7 +1023,7 @@ "defaultValue": "\"createMonitor\"" }, { - "id": 2166, + "id": 2169, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1051,7 +1051,7 @@ "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 2218, + "id": 2221, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1079,7 +1079,7 @@ "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 2210, + "id": 2213, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1107,7 +1107,7 @@ "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 2212, + "id": 2215, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1135,7 +1135,7 @@ "defaultValue": "\"disableChipReorder\"" }, { - "id": 2120, + "id": 2123, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1159,7 +1159,7 @@ "defaultValue": "\"download\"" }, { - "id": 2123, + "id": 2126, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1183,7 +1183,7 @@ "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2122, + "id": 2125, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1208,7 +1208,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2121, + "id": 2124, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1232,7 +1232,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 2124, + "id": 2127, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1256,7 +1256,7 @@ "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2154, + "id": 2157, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1280,7 +1280,7 @@ "defaultValue": "\"DRILL\"" }, { - "id": 2148, + "id": 2151, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1304,7 +1304,7 @@ "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 2147, + "id": 2150, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1328,7 +1328,7 @@ "defaultValue": "\"context-menu-item-include\"" }, { - "id": 2132, + "id": 2135, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1352,7 +1352,7 @@ "defaultValue": "\"edit\"" }, { - "id": 2097, + "id": 2100, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1376,7 +1376,7 @@ "defaultValue": "\"editACopy\"" }, { - "id": 2160, + "id": 2163, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1404,7 +1404,7 @@ "defaultValue": "\"editDetails\"" }, { - "id": 2152, + "id": 2155, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1419,7 +1419,7 @@ "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 2217, + "id": 2220, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1447,7 +1447,7 @@ "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 2190, + "id": 2193, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1475,7 +1475,7 @@ "defaultValue": "\"editSageAnswer\"" }, { - "id": 2205, + "id": 2208, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1503,7 +1503,7 @@ "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 2129, + "id": 2132, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1527,7 +1527,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 2133, + "id": 2136, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1551,7 +1551,7 @@ "defaultValue": "\"editTitle\"" }, { - "id": 2219, + "id": 2222, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1579,7 +1579,7 @@ "defaultValue": "\"editTokens\"" }, { - "id": 2187, + "id": 2190, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1607,7 +1607,7 @@ "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 2188, + "id": 2191, "name": "EnableIterativeChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1635,7 +1635,7 @@ "defaultValue": "\"enableIterativeChangeAnalysis\"" }, { - "id": 2146, + "id": 2149, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1659,7 +1659,7 @@ "defaultValue": "\"explore\"" }, { - "id": 2126, + "id": 2129, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1684,7 +1684,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 2127, + "id": 2130, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1708,7 +1708,7 @@ "defaultValue": "\"importTSL\"" }, { - "id": 2222, + "id": 2225, "name": "InConversationTraining", "kind": 16, "kindString": "Enumeration member", @@ -1736,7 +1736,7 @@ "defaultValue": "\"InConversationTraining\"" }, { - "id": 2211, + "id": 2214, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1764,7 +1764,7 @@ "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 2140, + "id": 2143, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1788,7 +1788,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 2228, + "id": 2231, "name": "LiveboardStylePanel", "kind": 16, "kindString": "Enumeration member", @@ -1816,7 +1816,7 @@ "defaultValue": "\"liveboardStylePanel\"" }, { - "id": 2196, + "id": 2199, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1844,7 +1844,7 @@ "defaultValue": "\"liveboardUsers\"" }, { - "id": 2096, + "id": 2099, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1868,7 +1868,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 2194, + "id": 2197, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1892,7 +1892,7 @@ "defaultValue": "\"manageMonitor\"" }, { - "id": 2165, + "id": 2168, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1920,7 +1920,7 @@ "defaultValue": "\"manage-pipeline\"" }, { - "id": 2209, + "id": 2212, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1948,7 +1948,7 @@ "defaultValue": "\"manageTags\"" }, { - "id": 2185, + "id": 2188, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1976,7 +1976,7 @@ "defaultValue": "\"markAsVerified\"" }, { - "id": 2192, + "id": 2195, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -2003,7 +2003,7 @@ "defaultValue": "\"modifySageAnswer\"" }, { - "id": 2193, + "id": 2196, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -2027,7 +2027,7 @@ "defaultValue": "\"onContainerMove\"" }, { - "id": 2203, + "id": 2206, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -2055,7 +2055,7 @@ "defaultValue": "\"organiseFavourites\"" }, { - "id": 2206, + "id": 2209, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2083,7 +2083,7 @@ "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 2195, + "id": 2198, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2111,7 +2111,7 @@ "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 2143, + "id": 2146, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2135,7 +2135,7 @@ "defaultValue": "\"pin\"" }, { - "id": 2226, + "id": 2229, "name": "PngScreenshotInEmail", "kind": 16, "kindString": "Enumeration member", @@ -2159,7 +2159,7 @@ "defaultValue": "\"pngScreenshotInEmail\"" }, { - "id": 2130, + "id": 2133, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2183,7 +2183,7 @@ "defaultValue": "\"present\"" }, { - "id": 2214, + "id": 2217, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2211,7 +2211,7 @@ "defaultValue": "\"previewDataSpotter\"" }, { - "id": 2156, + "id": 2159, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2236,7 +2236,7 @@ "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 2134, + "id": 2137, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2260,7 +2260,7 @@ "defaultValue": "\"delete\"" }, { - "id": 2227, + "id": 2230, "name": "RemoveAttachment", "kind": 16, "kindString": "Enumeration member", @@ -2288,7 +2288,7 @@ "defaultValue": "\"removeAttachment\"" }, { - "id": 2169, + "id": 2172, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2316,7 +2316,7 @@ "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 2202, + "id": 2205, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2344,7 +2344,7 @@ "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 2183, + "id": 2186, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2372,7 +2372,7 @@ "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 2162, + "id": 2165, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2403,7 +2403,7 @@ "defaultValue": "\"reportError\"" }, { - "id": 2155, + "id": 2158, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2427,7 +2427,7 @@ "defaultValue": "\"requestAccess\"" }, { - "id": 2184, + "id": 2187, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2455,7 +2455,7 @@ "defaultValue": "\"requestVerification\"" }, { - "id": 2215, + "id": 2218, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2483,7 +2483,7 @@ "defaultValue": "\"resetSpotterChat\"" }, { - "id": 2191, + "id": 2194, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2511,7 +2511,7 @@ "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 2092, + "id": 2095, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2535,7 +2535,7 @@ "defaultValue": "\"save\"" }, { - "id": 2095, + "id": 2098, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2559,7 +2559,7 @@ "defaultValue": "\"saveAsView\"" }, { - "id": 2100, + "id": 2103, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2583,7 +2583,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 2101, + "id": 2104, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2607,7 +2607,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 2153, + "id": 2156, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2622,7 +2622,7 @@ "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 2102, + "id": 2105, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2646,7 +2646,7 @@ "defaultValue": "\"share\"" }, { - "id": 2117, + "id": 2120, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2664,7 +2664,7 @@ "defaultValue": "\"shareViz\"" }, { - "id": 2189, + "id": 2192, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2692,7 +2692,7 @@ "defaultValue": "\"showSageQuery\"" }, { - "id": 2119, + "id": 2122, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2716,7 +2716,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2114, + "id": 2117, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2740,7 +2740,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2216, + "id": 2219, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2768,7 +2768,7 @@ "defaultValue": "\"spotterFeedback\"" }, { - "id": 2225, + "id": 2228, "name": "SpotterTokenQuickEdit", "kind": 16, "kindString": "Enumeration member", @@ -2796,7 +2796,7 @@ "defaultValue": "\"SpotterTokenQuickEdit\"" }, { - "id": 2223, + "id": 2226, "name": "SpotterWarningsBanner", "kind": 16, "kindString": "Enumeration member", @@ -2824,7 +2824,7 @@ "defaultValue": "\"SpotterWarningsBanner\"" }, { - "id": 2224, + "id": 2227, "name": "SpotterWarningsOnTokens", "kind": 16, "kindString": "Enumeration member", @@ -2852,7 +2852,7 @@ "defaultValue": "\"SpotterWarningsOnTokens\"" }, { - "id": 2145, + "id": 2148, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2876,7 +2876,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 2164, + "id": 2167, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2904,7 +2904,7 @@ "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2163, + "id": 2166, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2932,7 +2932,7 @@ "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2167, + "id": 2170, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2960,7 +2960,7 @@ "defaultValue": "\"syncToSlack\"" }, { - "id": 2168, + "id": 2171, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2988,7 +2988,7 @@ "defaultValue": "\"syncToTeams\"" }, { - "id": 2197, + "id": 2200, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -3020,7 +3020,7 @@ "defaultValue": "\"tml\"" }, { - "id": 2131, + "id": 2134, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -3044,7 +3044,7 @@ "defaultValue": "\"toggleSize\"" }, { - "id": 2208, + "id": 2211, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3072,7 +3072,7 @@ "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 2128, + "id": 2131, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -3096,7 +3096,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 2199, + "id": 2202, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -3124,7 +3124,7 @@ "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 2207, + "id": 2210, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3157,125 +3157,125 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2204, - 2111, - 2104, - 2103, - 2109, - 2110, + 2207, + 2114, + 2107, + 2106, 2112, - 2186, - 2159, - 2201, - 2158, - 2157, - 2200, - 2170, + 2113, + 2115, + 2189, + 2162, + 2204, + 2161, + 2160, + 2203, 2173, - 2178, - 2172, - 2175, - 2179, 2176, 2181, + 2175, + 2178, + 2182, + 2179, + 2184, + 2180, 2177, + 2183, 2174, - 2180, - 2171, - 2213, + 2216, + 2111, + 2110, + 2109, + 2223, 2108, - 2107, - 2106, - 2220, - 2105, - 2150, - 2098, - 2149, + 2153, + 2101, + 2152, + 2224, + 2201, + 2164, + 2169, 2221, - 2198, - 2161, - 2166, - 2218, - 2210, - 2212, - 2120, + 2213, + 2215, 2123, - 2122, - 2121, + 2126, + 2125, 2124, - 2154, - 2148, - 2147, + 2127, + 2157, + 2151, + 2150, + 2135, + 2100, + 2163, + 2155, + 2220, + 2193, + 2208, 2132, - 2097, - 2160, - 2152, - 2217, + 2136, + 2222, 2190, - 2205, + 2191, + 2149, 2129, - 2133, - 2219, - 2187, + 2130, + 2225, + 2214, + 2143, + 2231, + 2199, + 2099, + 2197, + 2168, + 2212, 2188, - 2146, - 2126, - 2127, - 2222, - 2211, - 2140, - 2228, + 2195, 2196, - 2096, - 2194, - 2165, + 2206, 2209, - 2185, + 2198, + 2146, + 2229, + 2133, + 2217, + 2159, + 2137, + 2230, + 2172, + 2205, + 2186, + 2165, + 2158, + 2187, + 2218, + 2194, + 2095, + 2098, + 2103, + 2104, + 2156, + 2105, + 2120, 2192, - 2193, - 2203, - 2206, - 2195, - 2143, + 2122, + 2117, + 2219, + 2228, 2226, - 2130, - 2214, - 2156, - 2134, 2227, - 2169, - 2202, - 2183, - 2162, - 2155, - 2184, - 2215, - 2191, - 2092, - 2095, - 2100, - 2101, - 2153, - 2102, - 2117, - 2189, - 2119, - 2114, - 2216, - 2225, - 2223, - 2224, - 2145, - 2164, - 2163, + 2148, 2167, - 2168, - 2197, + 2166, + 2170, + 2171, + 2200, + 2134, + 2211, 2131, - 2208, - 2128, - 2199, - 2207 + 2202, + 2210 ] } ], @@ -3288,7 +3288,7 @@ ] }, { - "id": 1744, + "id": 1747, "name": "AuthEvent", "kind": 4, "kindString": "Enumeration", @@ -3304,7 +3304,7 @@ }, "children": [ { - "id": 1745, + "id": 1748, "name": "TRIGGER_SSO_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3327,7 +3327,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1745 + 1748 ] } ], @@ -3340,7 +3340,7 @@ ] }, { - "id": 1729, + "id": 1732, "name": "AuthFailureType", "kind": 4, "kindString": "Enumeration", @@ -3356,7 +3356,7 @@ }, "children": [ { - "id": 1732, + "id": 1735, "name": "EXPIRY", "kind": 16, "kindString": "Enumeration member", @@ -3371,7 +3371,7 @@ "defaultValue": "\"EXPIRY\"" }, { - "id": 1734, + "id": 1737, "name": "IDLE_SESSION_TIMEOUT", "kind": 16, "kindString": "Enumeration member", @@ -3386,7 +3386,7 @@ "defaultValue": "\"IDLE_SESSION_TIMEOUT\"" }, { - "id": 1731, + "id": 1734, "name": "NO_COOKIE_ACCESS", "kind": 16, "kindString": "Enumeration member", @@ -3401,7 +3401,7 @@ "defaultValue": "\"NO_COOKIE_ACCESS\"" }, { - "id": 1733, + "id": 1736, "name": "OTHER", "kind": 16, "kindString": "Enumeration member", @@ -3416,7 +3416,7 @@ "defaultValue": "\"OTHER\"" }, { - "id": 1730, + "id": 1733, "name": "SDK", "kind": 16, "kindString": "Enumeration member", @@ -3431,7 +3431,7 @@ "defaultValue": "\"SDK\"" }, { - "id": 1735, + "id": 1738, "name": "UNAUTHENTICATED_FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3451,12 +3451,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1732, + 1735, + 1737, 1734, - 1731, + 1736, 1733, - 1730, - 1735 + 1738 ] } ], @@ -3469,7 +3469,7 @@ ] }, { - "id": 1736, + "id": 1739, "name": "AuthStatus", "kind": 4, "kindString": "Enumeration", @@ -3485,7 +3485,7 @@ }, "children": [ { - "id": 1737, + "id": 1740, "name": "FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3503,7 +3503,7 @@ "defaultValue": "\"FAILURE\"" }, { - "id": 1741, + "id": 1744, "name": "LOGOUT", "kind": 16, "kindString": "Enumeration member", @@ -3521,7 +3521,7 @@ "defaultValue": "\"LOGOUT\"" }, { - "id": 1743, + "id": 1746, "name": "SAML_POPUP_CLOSED_NO_AUTH", "kind": 16, "kindString": "Enumeration member", @@ -3539,7 +3539,7 @@ "defaultValue": "\"SAML_POPUP_CLOSED_NO_AUTH\"" }, { - "id": 1738, + "id": 1741, "name": "SDK_SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3557,7 +3557,7 @@ "defaultValue": "\"SDK_SUCCESS\"" }, { - "id": 1740, + "id": 1743, "name": "SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3575,7 +3575,7 @@ "defaultValue": "\"SUCCESS\"" }, { - "id": 1742, + "id": 1745, "name": "WAITING_FOR_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3604,12 +3604,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1737, + 1740, + 1744, + 1746, 1741, 1743, - 1738, - 1740, - 1742 + 1745 ] } ], @@ -3622,7 +3622,7 @@ ] }, { - "id": 1891, + "id": 1894, "name": "AuthType", "kind": 4, "kindString": "Enumeration", @@ -3638,7 +3638,7 @@ }, "children": [ { - "id": 1902, + "id": 1905, "name": "Basic", "kind": 16, "kindString": "Enumeration member", @@ -3657,7 +3657,7 @@ "defaultValue": "\"Basic\"" }, { - "id": 1893, + "id": 1896, "name": "EmbeddedSSO", "kind": 16, "kindString": "Enumeration member", @@ -3686,7 +3686,7 @@ "defaultValue": "\"EmbeddedSSO\"" }, { - "id": 1892, + "id": 1895, "name": "None", "kind": 16, "kindString": "Enumeration member", @@ -3710,7 +3710,7 @@ "defaultValue": "\"None\"" }, { - "id": 1898, + "id": 1901, "name": "OIDCRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3728,7 +3728,7 @@ "defaultValue": "\"SSO_OIDC\"" }, { - "id": 1896, + "id": 1899, "name": "SAMLRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3761,7 +3761,7 @@ "defaultValue": "\"SSO_SAML\"" }, { - "id": 1900, + "id": 1903, "name": "TrustedAuthToken", "kind": 16, "kindString": "Enumeration member", @@ -3785,7 +3785,7 @@ "defaultValue": "\"AuthServer\"" }, { - "id": 1901, + "id": 1904, "name": "TrustedAuthTokenCookieless", "kind": 16, "kindString": "Enumeration member", @@ -3818,13 +3818,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1902, - 1893, - 1892, - 1898, + 1905, 1896, - 1900, - 1901 + 1895, + 1901, + 1899, + 1903, + 1904 ] } ], @@ -3837,7 +3837,7 @@ ] }, { - "id": 2229, + "id": 2232, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3847,7 +3847,7 @@ }, "children": [ { - "id": 2232, + "id": 2235, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3862,7 +3862,7 @@ "defaultValue": "\"both-clicks\"" }, { - "id": 2230, + "id": 2233, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3877,7 +3877,7 @@ "defaultValue": "\"left-click\"" }, { - "id": 2231, + "id": 2234, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3897,9 +3897,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2232, - 2230, - 2231 + 2235, + 2233, + 2234 ] } ], @@ -3912,7 +3912,7 @@ ] }, { - "id": 2904, + "id": 2897, "name": "CustomActionTarget", "kind": 4, "kindString": "Enumeration", @@ -3922,7 +3922,7 @@ }, "children": [ { - "id": 2907, + "id": 2900, "name": "ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -3937,7 +3937,7 @@ "defaultValue": "\"ANSWER\"" }, { - "id": 2905, + "id": 2898, "name": "LIVEBOARD", "kind": 16, "kindString": "Enumeration member", @@ -3952,7 +3952,7 @@ "defaultValue": "\"LIVEBOARD\"" }, { - "id": 2908, + "id": 2901, "name": "SPOTTER", "kind": 16, "kindString": "Enumeration member", @@ -3967,7 +3967,7 @@ "defaultValue": "\"SPOTTER\"" }, { - "id": 2906, + "id": 2899, "name": "VIZ", "kind": 16, "kindString": "Enumeration member", @@ -3987,10 +3987,10 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2907, - 2905, - 2908, - 2906 + 2900, + 2898, + 2901, + 2899 ] } ], @@ -4003,7 +4003,7 @@ ] }, { - "id": 2900, + "id": 2893, "name": "CustomActionsPosition", "kind": 4, "kindString": "Enumeration", @@ -4013,7 +4013,7 @@ }, "children": [ { - "id": 2903, + "id": 2896, "name": "CONTEXTMENU", "kind": 16, "kindString": "Enumeration member", @@ -4028,7 +4028,7 @@ "defaultValue": "\"CONTEXTMENU\"" }, { - "id": 2902, + "id": 2895, "name": "MENU", "kind": 16, "kindString": "Enumeration member", @@ -4043,7 +4043,7 @@ "defaultValue": "\"MENU\"" }, { - "id": 2901, + "id": 2894, "name": "PRIMARY", "kind": 16, "kindString": "Enumeration member", @@ -4063,9 +4063,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2903, - 2902, - 2901 + 2896, + 2895, + 2894 ] } ], @@ -4078,7 +4078,7 @@ ] }, { - "id": 2896, + "id": 2889, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -4088,7 +4088,7 @@ }, "children": [ { - "id": 2898, + "id": 2891, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4106,7 +4106,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 2897, + "id": 2890, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4124,7 +4124,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 2899, + "id": 2892, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -4147,9 +4147,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2898, - 2897, - 2899 + 2891, + 2890, + 2892 ] } ], @@ -4162,7 +4162,7 @@ ] }, { - "id": 2087, + "id": 2090, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -4172,7 +4172,7 @@ }, "children": [ { - "id": 2089, + "id": 2092, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -4190,7 +4190,7 @@ "defaultValue": "\"collapse\"" }, { - "id": 2090, + "id": 2093, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -4208,7 +4208,7 @@ "defaultValue": "\"expand\"" }, { - "id": 2088, + "id": 2091, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -4231,9 +4231,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2089, - 2090, - 2088 + 2092, + 2093, + 2091 ] } ], @@ -4246,7 +4246,7 @@ ] }, { - "id": 1923, + "id": 1926, "name": "EmbedEvent", "kind": 4, "kindString": "Enumeration", @@ -4271,7 +4271,7 @@ }, "children": [ { - "id": 1951, + "id": 1954, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -4299,7 +4299,7 @@ "defaultValue": "\"*\"" }, { - "id": 1931, + "id": 1934, "name": "AddRemoveColumns", "kind": 16, "kindString": "Enumeration member", @@ -4331,7 +4331,7 @@ "defaultValue": "\"addRemoveColumns\"" }, { - "id": 1975, + "id": 1978, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -4359,7 +4359,7 @@ "defaultValue": "\"addToFavorites\"" }, { - "id": 1936, + "id": 1939, "name": "Alert", "kind": 16, "kindString": "Enumeration member", @@ -4391,7 +4391,7 @@ "defaultValue": "\"alert\"" }, { - "id": 1971, + "id": 1974, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -4419,7 +4419,7 @@ "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1958, + "id": 1961, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -4447,7 +4447,7 @@ "defaultValue": "\"answerDelete\"" }, { - "id": 1998, + "id": 2001, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -4487,7 +4487,7 @@ "defaultValue": "\"AskSageInit\"" }, { - "id": 1937, + "id": 1940, "name": "AuthExpire", "kind": 16, "kindString": "Enumeration member", @@ -4515,7 +4515,7 @@ "defaultValue": "\"ThoughtspotAuthExpired\"" }, { - "id": 1925, + "id": 1928, "name": "AuthInit", "kind": 16, "kindString": "Enumeration member", @@ -4547,7 +4547,7 @@ "defaultValue": "\"authInit\"" }, { - "id": 1982, + "id": 1985, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -4575,7 +4575,7 @@ "defaultValue": "\"cancel\"" }, { - "id": 1969, + "id": 1972, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -4603,7 +4603,7 @@ "defaultValue": "\"copyAEdit\"" }, { - "id": 1984, + "id": 1987, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -4631,7 +4631,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 1964, + "id": 1967, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -4659,7 +4659,7 @@ "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1992, + "id": 1995, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -4683,7 +4683,7 @@ "defaultValue": "\"createConnection\"" }, { - "id": 2003, + "id": 2006, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -4708,7 +4708,7 @@ "defaultValue": "\"createLiveboard\"" }, { - "id": 2004, + "id": 2007, "name": "CreateModel", "kind": 16, "kindString": "Enumeration member", @@ -4732,7 +4732,7 @@ "defaultValue": "\"createModel\"" }, { - "id": 1997, + "id": 2000, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -4756,7 +4756,7 @@ "defaultValue": "\"createWorksheet\"" }, { - "id": 1985, + "id": 1988, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4784,7 +4784,7 @@ "defaultValue": "\"cross-filter-changed\"" }, { - "id": 1932, + "id": 1935, "name": "CustomAction", "kind": 16, "kindString": "Enumeration member", @@ -4820,7 +4820,7 @@ "defaultValue": "\"customAction\"" }, { - "id": 1927, + "id": 1930, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -4856,7 +4856,7 @@ "defaultValue": "\"data\"" }, { - "id": 1930, + "id": 1933, "name": "DataSourceSelected", "kind": 16, "kindString": "Enumeration member", @@ -4888,7 +4888,7 @@ "defaultValue": "\"dataSourceSelected\"" }, { - "id": 1980, + "id": 1983, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -4916,7 +4916,7 @@ "defaultValue": "\"delete\"" }, { - "id": 1996, + "id": 1999, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -4948,7 +4948,7 @@ "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 1949, + "id": 1952, "name": "DialogClose", "kind": 16, "kindString": "Enumeration member", @@ -4976,7 +4976,7 @@ "defaultValue": "\"dialog-close\"" }, { - "id": 1948, + "id": 1951, "name": "DialogOpen", "kind": 16, "kindString": "Enumeration member", @@ -5004,7 +5004,7 @@ "defaultValue": "\"dialog-open\"" }, { - "id": 1953, + "id": 1956, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -5033,7 +5033,7 @@ "defaultValue": "\"download\"" }, { - "id": 1956, + "id": 1959, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -5061,7 +5061,7 @@ "defaultValue": "\"downloadAsCsv\"" }, { - "id": 1955, + "id": 1958, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -5089,7 +5089,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1954, + "id": 1957, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -5117,7 +5117,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 1957, + "id": 1960, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -5145,7 +5145,7 @@ "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 1963, + "id": 1966, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -5173,7 +5173,7 @@ "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1962, + "id": 1965, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -5201,7 +5201,7 @@ "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1929, + "id": 1932, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -5245,7 +5245,7 @@ "defaultValue": "\"drillDown\"" }, { - "id": 1977, + "id": 1980, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -5273,7 +5273,7 @@ "defaultValue": "\"edit\"" }, { - "id": 1966, + "id": 1969, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -5301,7 +5301,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 1935, + "id": 1938, "name": "Error", "kind": 16, "kindString": "Enumeration member", @@ -5338,7 +5338,7 @@ "defaultValue": "\"Error\"" }, { - "id": 1983, + "id": 1986, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -5366,7 +5366,7 @@ "defaultValue": "\"explore\"" }, { - "id": 1967, + "id": 1970, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -5394,7 +5394,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 1988, + "id": 1991, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5418,7 +5418,7 @@ "defaultValue": "\"filterChanged\"" }, { - "id": 1943, + "id": 1946, "name": "GetDataClick", "kind": 16, "kindString": "Enumeration member", @@ -5446,7 +5446,7 @@ "defaultValue": "\"getDataClick\"" }, { - "id": 1924, + "id": 1927, "name": "Init", "kind": 16, "kindString": "Enumeration member", @@ -5474,7 +5474,7 @@ "defaultValue": "\"init\"" }, { - "id": 2011, + "id": 2014, "name": "LastPromptDeleted", "kind": 16, "kindString": "Enumeration member", @@ -5502,7 +5502,7 @@ "defaultValue": "\"LastPromptDeleted\"" }, { - "id": 2010, + "id": 2013, "name": "LastPromptEdited", "kind": 16, "kindString": "Enumeration member", @@ -5530,7 +5530,7 @@ "defaultValue": "\"LastPromptEdited\"" }, { - "id": 1974, + "id": 1977, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -5558,7 +5558,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 1950, + "id": 1953, "name": "LiveboardRendered", "kind": 16, "kindString": "Enumeration member", @@ -5590,7 +5590,7 @@ "defaultValue": "\"PinboardRendered\"" }, { - "id": 1926, + "id": 1929, "name": "Load", "kind": 16, "kindString": "Enumeration member", @@ -5622,7 +5622,7 @@ "defaultValue": "\"load\"" }, { - "id": 1978, + "id": 1981, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -5650,7 +5650,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 1946, + "id": 1949, "name": "NoCookieAccess", "kind": 16, "kindString": "Enumeration member", @@ -5678,7 +5678,7 @@ "defaultValue": "\"noCookieAccess\"" }, { - "id": 2000, + "id": 2003, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", @@ -5715,7 +5715,7 @@ "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 2015, + "id": 2018, "name": "OrgSwitched", "kind": 16, "kindString": "Enumeration member", @@ -5743,7 +5743,7 @@ "defaultValue": "\"orgSwitched\"" }, { - "id": 2001, + "id": 2004, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5767,7 +5767,7 @@ "defaultValue": "\"parameterChanged\"" }, { - "id": 1959, + "id": 1962, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -5795,7 +5795,7 @@ "defaultValue": "\"pin\"" }, { - "id": 1979, + "id": 1982, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -5827,7 +5827,7 @@ "defaultValue": "\"present\"" }, { - "id": 2008, + "id": 2011, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -5855,7 +5855,7 @@ "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 1928, + "id": 1931, "name": "QueryChanged", "kind": 16, "kindString": "Enumeration member", @@ -5883,7 +5883,7 @@ "defaultValue": "\"queryChanged\"" }, { - "id": 1999, + "id": 2002, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -5907,7 +5907,7 @@ "defaultValue": "\"rename\"" }, { - "id": 1995, + "id": 1998, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -5947,7 +5947,7 @@ "defaultValue": "\"resetLiveboard\"" }, { - "id": 2012, + "id": 2015, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -5975,7 +5975,7 @@ "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 1944, + "id": 1947, "name": "RouteChange", "kind": 16, "kindString": "Enumeration member", @@ -6003,7 +6003,7 @@ "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 1989, + "id": 1992, "name": "SageEmbedQuery", "kind": 16, "kindString": "Enumeration member", @@ -6027,7 +6027,7 @@ "defaultValue": "\"sageEmbedQuery\"" }, { - "id": 1990, + "id": 1993, "name": "SageWorksheetUpdated", "kind": 16, "kindString": "Enumeration member", @@ -6051,7 +6051,7 @@ "defaultValue": "\"sageWorksheetUpdated\"" }, { - "id": 1952, + "id": 1955, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -6079,7 +6079,7 @@ "defaultValue": "\"save\"" }, { - "id": 1968, + "id": 1971, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -6107,7 +6107,7 @@ "defaultValue": "\"saveAsView\"" }, { - "id": 1994, + "id": 1997, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6147,7 +6147,7 @@ "defaultValue": "\"savePersonalisedView\"" }, { - "id": 1976, + "id": 1979, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -6175,7 +6175,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 1981, + "id": 1984, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -6203,7 +6203,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 1961, + "id": 1964, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -6231,7 +6231,7 @@ "defaultValue": "\"share\"" }, { - "id": 1970, + "id": 1973, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -6259,7 +6259,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1960, + "id": 1963, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -6287,7 +6287,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2007, + "id": 2010, "name": "SpotterData", "kind": 16, "kindString": "Enumeration member", @@ -6315,7 +6315,7 @@ "defaultValue": "\"SpotterData\"" }, { - "id": 2013, + "id": 2016, "name": "SpotterInit", "kind": 16, "kindString": "Enumeration member", @@ -6343,7 +6343,7 @@ "defaultValue": "\"spotterInit\"" }, { - "id": 2009, + "id": 2012, "name": "SpotterQueryTriggered", "kind": 16, "kindString": "Enumeration member", @@ -6371,7 +6371,7 @@ "defaultValue": "\"SpotterQueryTriggered\"" }, { - "id": 2002, + "id": 2005, "name": "TableVizRendered", "kind": 16, "kindString": "Enumeration member", @@ -6400,7 +6400,7 @@ "defaultValue": "\"TableVizRendered\"" }, { - "id": 1991, + "id": 1994, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -6424,7 +6424,7 @@ "defaultValue": "\"updateConnection\"" }, { - "id": 1993, + "id": 1996, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6464,7 +6464,7 @@ "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 1965, + "id": 1968, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -6492,7 +6492,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 1934, + "id": 1937, "name": "VizPointClick", "kind": 16, "kindString": "Enumeration member", @@ -6528,7 +6528,7 @@ "defaultValue": "\"vizPointClick\"" }, { - "id": 1933, + "id": 1936, "name": "VizPointDoubleClick", "kind": 16, "kindString": "Enumeration member", @@ -6560,7 +6560,7 @@ "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 1986, + "id": 1989, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -6593,85 +6593,85 @@ "title": "Enumeration members", "kind": 16, "children": [ + 1954, + 1934, + 1978, + 1939, + 1974, + 1961, + 2001, + 1940, + 1928, + 1985, + 1972, + 1987, + 1967, + 1995, + 2006, + 2007, + 2000, + 1988, + 1935, + 1930, + 1933, + 1983, + 1999, + 1952, 1951, - 1931, - 1975, - 1936, - 1971, + 1956, + 1959, 1958, - 1998, - 1937, - 1925, - 1982, - 1969, - 1984, - 1964, - 1992, - 2003, - 2004, - 1997, - 1985, + 1957, + 1960, + 1966, + 1965, 1932, - 1927, - 1930, 1980, - 1996, - 1949, - 1948, + 1969, + 1938, + 1986, + 1970, + 1991, + 1946, + 1927, + 2014, + 2013, + 1977, 1953, - 1956, - 1955, - 1954, - 1957, - 1963, - 1962, 1929, - 1977, - 1966, - 1935, - 1983, - 1967, - 1988, - 1943, - 1924, + 1981, + 1949, + 2003, + 2018, + 2004, + 1962, + 1982, 2011, - 2010, - 1974, - 1950, - 1926, - 1978, - 1946, - 2000, + 1931, + 2002, + 1998, 2015, - 2001, - 1959, + 1947, + 1992, + 1993, + 1955, + 1971, + 1997, 1979, - 2008, - 1928, - 1999, - 1995, + 1984, + 1964, + 1973, + 1963, + 2010, + 2016, 2012, - 1944, - 1989, - 1990, - 1952, - 1968, + 2005, 1994, - 1976, - 1981, - 1961, - 1970, - 1960, - 2007, - 2013, - 2009, - 2002, - 1991, - 1993, - 1965, - 1934, - 1933, - 1986 + 1996, + 1968, + 1937, + 1936, + 1989 ] } ], @@ -6684,7 +6684,7 @@ ] }, { - "id": 2594, + "id": 2597, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -6694,7 +6694,7 @@ }, "children": [ { - "id": 2598, + "id": 2601, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -6717,7 +6717,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2602, + "id": 2605, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6741,7 +6741,7 @@ "defaultValue": "\"create\"" }, { - "id": 2604, + "id": 2607, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -6765,7 +6765,7 @@ "defaultValue": "\"favorites\"" }, { - "id": 2596, + "id": 2599, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6788,7 +6788,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2601, + "id": 2604, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6811,7 +6811,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2597, + "id": 2600, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6834,7 +6834,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2599, + "id": 2602, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6857,7 +6857,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2595, + "id": 2598, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6880,7 +6880,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2600, + "id": 2603, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6903,7 +6903,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2603, + "id": 2606, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -6932,16 +6932,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2598, - 2602, - 2604, - 2596, 2601, - 2597, + 2605, + 2607, 2599, - 2595, + 2604, 2600, - 2603 + 2602, + 2598, + 2603, + 2606 ] } ], @@ -6954,7 +6954,7 @@ ] }, { - "id": 2854, + "id": 2847, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -6970,7 +6970,7 @@ }, "children": [ { - "id": 2855, + "id": 2848, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -6988,7 +6988,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2856, + "id": 2849, "name": "ModularWithStylingChanges", "kind": 16, "kindString": "Enumeration member", @@ -7011,8 +7011,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2855, - 2856 + 2848, + 2849 ] } ], @@ -7025,14 +7025,14 @@ ] }, { - "id": 2848, + "id": 2841, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2850, + "id": 2843, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -7047,7 +7047,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2851, + "id": 2844, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -7062,7 +7062,7 @@ "defaultValue": "\"none\"" }, { - "id": 2849, + "id": 2842, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -7082,9 +7082,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2850, - 2851, - 2849 + 2843, + 2844, + 2842 ] } ], @@ -7097,7 +7097,7 @@ ] }, { - "id": 2605, + "id": 2608, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -7113,7 +7113,7 @@ }, "children": [ { - "id": 2608, + "id": 2611, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -7131,7 +7131,7 @@ "defaultValue": "\"FAVORITE\"" }, { - "id": 2611, + "id": 2614, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -7149,7 +7149,7 @@ "defaultValue": "\"LEARNING\"" }, { - "id": 2609, + "id": 2612, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -7167,7 +7167,7 @@ "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2606, + "id": 2609, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7185,7 +7185,7 @@ "defaultValue": "\"SEARCH\"" }, { - "id": 2610, + "id": 2613, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -7203,7 +7203,7 @@ "defaultValue": "\"TRENDING\"" }, { - "id": 2607, + "id": 2610, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -7226,12 +7226,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2608, 2611, + 2614, + 2612, 2609, - 2606, - 2610, - 2607 + 2613, + 2610 ] } ], @@ -7244,7 +7244,7 @@ ] }, { - "id": 2016, + "id": 2019, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -7273,7 +7273,7 @@ }, "children": [ { - "id": 2027, + "id": 2030, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -7306,7 +7306,7 @@ "defaultValue": "\"addColumns\"" }, { - "id": 2082, + "id": 2085, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -7339,7 +7339,7 @@ "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2067, + "id": 2070, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -7367,7 +7367,7 @@ "defaultValue": "\"AskSage\"" }, { - "id": 2085, + "id": 2088, "name": "AskSpotter", "kind": 16, "kindString": "Enumeration member", @@ -7400,7 +7400,7 @@ "defaultValue": "\"AskSpotter\"" }, { - "id": 2044, + "id": 2047, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -7433,7 +7433,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 2041, + "id": 2044, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -7470,7 +7470,7 @@ "defaultValue": "\"createMonitor\"" }, { - "id": 2048, + "id": 2051, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -7503,7 +7503,7 @@ "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2081, + "id": 2084, "name": "DeleteLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -7531,7 +7531,7 @@ "defaultValue": "\"DeleteLastPrompt\"" }, { - "id": 2050, + "id": 2053, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -7568,7 +7568,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 2052, + "id": 2055, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -7601,7 +7601,7 @@ "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2037, + "id": 2040, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -7638,7 +7638,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2051, + "id": 2054, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -7666,7 +7666,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 2053, + "id": 2056, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -7699,7 +7699,7 @@ "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2018, + "id": 2021, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -7756,7 +7756,7 @@ "defaultValue": "\"triggerDrillDown\"" }, { - "id": 2043, + "id": 2046, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -7803,7 +7803,7 @@ "defaultValue": "\"edit\"" }, { - "id": 2078, + "id": 2081, "name": "EditLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -7836,7 +7836,7 @@ "defaultValue": "\"EditLastPrompt\"" }, { - "id": 2035, + "id": 2038, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -7864,7 +7864,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 2040, + "id": 2043, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -7897,7 +7897,7 @@ "defaultValue": "\"explore\"" }, { - "id": 2034, + "id": 2037, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -7925,7 +7925,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 2066, + "id": 2069, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -7958,7 +7958,7 @@ "defaultValue": "\"getAnswerSession\"" }, { - "id": 2060, + "id": 2063, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -7986,7 +7986,7 @@ "defaultValue": "\"getFilters\"" }, { - "id": 2021, + "id": 2024, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -8014,7 +8014,7 @@ "defaultValue": "\"GetIframeUrl\"" }, { - "id": 2071, + "id": 2074, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -8043,7 +8043,7 @@ "defaultValue": "\"GetParameters\"" }, { - "id": 2046, + "id": 2049, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -8079,7 +8079,7 @@ "defaultValue": "\"getTML\"" }, { - "id": 2062, + "id": 2065, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -8107,7 +8107,7 @@ "defaultValue": "\"getTabs\"" }, { - "id": 2031, + "id": 2034, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -8135,7 +8135,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 2038, + "id": 2041, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -8179,7 +8179,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 2042, + "id": 2045, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -8220,7 +8220,7 @@ "defaultValue": "\"manageMonitor\"" }, { - "id": 2058, + "id": 2061, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -8253,7 +8253,7 @@ "defaultValue": "\"manage-pipeline\"" }, { - "id": 2025, + "id": 2028, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -8286,7 +8286,7 @@ "defaultValue": "\"Navigate\"" }, { - "id": 2026, + "id": 2029, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -8323,7 +8323,7 @@ "defaultValue": "\"openFilter\"" }, { - "id": 2030, + "id": 2033, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -8391,7 +8391,7 @@ "defaultValue": "\"pin\"" }, { - "id": 2045, + "id": 2048, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -8424,7 +8424,7 @@ "defaultValue": "\"present\"" }, { - "id": 2079, + "id": 2082, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -8452,7 +8452,7 @@ "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 2039, + "id": 2042, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -8484,7 +8484,7 @@ "defaultValue": "\"delete\"" }, { - "id": 2028, + "id": 2031, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -8517,7 +8517,7 @@ "defaultValue": "\"removeColumn\"" }, { - "id": 2069, + "id": 2072, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8545,7 +8545,7 @@ "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 2059, + "id": 2062, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -8573,7 +8573,7 @@ "defaultValue": "\"resetSearch\"" }, { - "id": 2080, + "id": 2083, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -8601,7 +8601,7 @@ "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 2055, + "id": 2058, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -8634,7 +8634,7 @@ "defaultValue": "\"save\"" }, { - "id": 2074, + "id": 2077, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -8676,7 +8676,7 @@ "defaultValue": "\"saveAnswer\"" }, { - "id": 2032, + "id": 2035, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -8704,7 +8704,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 2033, + "id": 2036, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -8732,7 +8732,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 2017, + "id": 2020, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -8771,7 +8771,7 @@ "defaultValue": "\"search\"" }, { - "id": 2023, + "id": 2026, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -8804,7 +8804,7 @@ "defaultValue": "\"SetActiveTab\"" }, { - "id": 2064, + "id": 2067, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -8837,7 +8837,7 @@ "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 2063, + "id": 2066, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -8870,7 +8870,7 @@ "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 2022, + "id": 2025, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -8903,7 +8903,7 @@ "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 2054, + "id": 2057, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8931,7 +8931,7 @@ "defaultValue": "\"share\"" }, { - "id": 2047, + "id": 2050, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -8964,7 +8964,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2049, + "id": 2052, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -8997,7 +8997,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2077, + "id": 2080, "name": "SpotterSearch", "kind": 16, "kindString": "Enumeration member", @@ -9035,7 +9035,7 @@ "defaultValue": "\"SpotterSearch\"" }, { - "id": 2057, + "id": 2060, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -9068,7 +9068,7 @@ "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2056, + "id": 2059, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -9101,7 +9101,7 @@ "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2076, + "id": 2079, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -9134,7 +9134,7 @@ "defaultValue": "\"TransformTableVizData\"" }, { - "id": 2068, + "id": 2071, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -9162,7 +9162,7 @@ "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 2061, + "id": 2064, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -9212,7 +9212,7 @@ "defaultValue": "\"updateFilters\"" }, { - "id": 2070, + "id": 2073, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -9236,7 +9236,7 @@ "defaultValue": "\"UpdateParameters\"" }, { - "id": 2072, + "id": 2075, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -9260,7 +9260,7 @@ "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 2024, + "id": 2027, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -9298,7 +9298,7 @@ "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 2065, + "id": 2068, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -9336,7 +9336,7 @@ "defaultValue": "\"updateSageQuery\"" }, { - "id": 2036, + "id": 2039, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -9364,7 +9364,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 2029, + "id": 2032, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -9397,69 +9397,69 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2027, - 2082, - 2067, + 2030, 2085, + 2070, + 2088, + 2047, 2044, - 2041, - 2048, - 2081, - 2050, - 2052, - 2037, 2051, + 2084, 2053, - 2018, - 2043, - 2078, - 2035, + 2055, 2040, - 2034, - 2066, - 2060, + 2054, + 2056, 2021, - 2071, 2046, - 2062, - 2031, + 2081, 2038, - 2042, - 2058, - 2025, - 2026, - 2030, - 2045, - 2079, - 2039, - 2028, + 2043, + 2037, 2069, - 2059, - 2080, - 2055, - 2074, - 2032, - 2033, - 2017, - 2023, - 2064, 2063, - 2022, - 2054, - 2047, + 2024, + 2074, 2049, - 2077, - 2057, - 2056, - 2076, - 2068, + 2065, + 2034, + 2041, + 2045, 2061, - 2070, + 2028, + 2029, + 2033, + 2048, + 2082, + 2042, + 2031, 2072, - 2024, - 2065, + 2062, + 2083, + 2058, + 2077, + 2035, 2036, - 2029 + 2020, + 2026, + 2067, + 2066, + 2025, + 2057, + 2050, + 2052, + 2080, + 2060, + 2059, + 2079, + 2071, + 2064, + 2073, + 2075, + 2027, + 2068, + 2039, + 2032 ] } ], @@ -9472,7 +9472,7 @@ ] }, { - "id": 2857, + "id": 2850, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -9488,7 +9488,7 @@ }, "children": [ { - "id": 2858, + "id": 2851, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -9506,7 +9506,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2859, + "id": 2852, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -9529,8 +9529,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2858, - 2859 + 2851, + 2852 ] } ], @@ -9543,7 +9543,7 @@ ] }, { - "id": 2890, + "id": 2883, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -9559,7 +9559,7 @@ }, "children": [ { - "id": 2893, + "id": 2886, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -9577,7 +9577,7 @@ "defaultValue": "\"AUTHOR\"" }, { - "id": 2894, + "id": 2887, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -9595,7 +9595,7 @@ "defaultValue": "\"DATE_SORT\"" }, { - "id": 2891, + "id": 2884, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -9613,7 +9613,7 @@ "defaultValue": "\"FAVOURITE\"" }, { - "id": 2895, + "id": 2888, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -9631,7 +9631,7 @@ "defaultValue": "\"SHARE\"" }, { - "id": 2892, + "id": 2885, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -9654,11 +9654,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2893, - 2894, - 2891, - 2895, - 2892 + 2886, + 2887, + 2884, + 2888, + 2885 ] } ], @@ -9671,7 +9671,7 @@ ] }, { - "id": 2825, + "id": 2818, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -9681,7 +9681,7 @@ }, "children": [ { - "id": 2830, + "id": 2823, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -9709,7 +9709,7 @@ "defaultValue": "\"DEBUG\"" }, { - "id": 2827, + "id": 2820, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -9737,7 +9737,7 @@ "defaultValue": "\"ERROR\"" }, { - "id": 2829, + "id": 2822, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -9765,7 +9765,7 @@ "defaultValue": "\"INFO\"" }, { - "id": 2826, + "id": 2819, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -9793,7 +9793,7 @@ "defaultValue": "\"SILENT\"" }, { - "id": 2831, + "id": 2824, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -9821,7 +9821,7 @@ "defaultValue": "\"TRACE\"" }, { - "id": 2828, + "id": 2821, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -9854,12 +9854,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2830, - 2827, - 2829, - 2826, - 2831, - 2828 + 2823, + 2820, + 2822, + 2819, + 2824, + 2821 ] } ], @@ -9872,7 +9872,7 @@ ] }, { - "id": 1882, + "id": 1885, "name": "Page", "kind": 4, "kindString": "Enumeration", @@ -9882,7 +9882,7 @@ }, "children": [ { - "id": 1885, + "id": 1888, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -9900,7 +9900,7 @@ "defaultValue": "\"answers\"" }, { - "id": 1888, + "id": 1891, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -9918,7 +9918,7 @@ "defaultValue": "\"data\"" }, { - "id": 1883, + "id": 1886, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -9936,7 +9936,7 @@ "defaultValue": "\"home\"" }, { - "id": 1886, + "id": 1889, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -9954,7 +9954,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 1890, + "id": 1893, "name": "Monitor", "kind": 16, "kindString": "Enumeration member", @@ -9972,7 +9972,7 @@ "defaultValue": "\"monitor\"" }, { - "id": 1884, + "id": 1887, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -9990,7 +9990,7 @@ "defaultValue": "\"search\"" }, { - "id": 1889, + "id": 1892, "name": "SpotIQ", "kind": 16, "kindString": "Enumeration member", @@ -10013,13 +10013,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1885, 1888, - 1883, + 1891, 1886, - 1890, - 1884, - 1889 + 1889, + 1893, + 1887, + 1892 ] } ], @@ -10032,14 +10032,14 @@ ] }, { - "id": 2583, + "id": 2586, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2584, + "id": 2587, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -10054,7 +10054,7 @@ "defaultValue": "\"FullApp\"" }, { - "id": 2586, + "id": 2589, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10069,7 +10069,7 @@ "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2585, + "id": 2588, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10084,7 +10084,7 @@ "defaultValue": "\"SearchEmbed\"" }, { - "id": 2587, + "id": 2590, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10104,10 +10104,10 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2584, - 2586, - 2585, - 2587 + 2587, + 2589, + 2588, + 2590 ] } ], @@ -10120,7 +10120,7 @@ ] }, { - "id": 2852, + "id": 2845, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -10136,7 +10136,7 @@ }, "children": [ { - "id": 2853, + "id": 2846, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -10159,7 +10159,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2853 + 2846 ] } ], @@ -10172,7 +10172,7 @@ ] }, { - "id": 1907, + "id": 1910, "name": "RuntimeFilterOp", "kind": 4, "kindString": "Enumeration", @@ -10182,7 +10182,7 @@ }, "children": [ { - "id": 1915, + "id": 1918, "name": "BEGINS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -10200,7 +10200,7 @@ "defaultValue": "\"BEGINS_WITH\"" }, { - "id": 1920, + "id": 1923, "name": "BW", "kind": 16, "kindString": "Enumeration member", @@ -10218,7 +10218,7 @@ "defaultValue": "\"BW\"" }, { - "id": 1919, + "id": 1922, "name": "BW_INC", "kind": 16, "kindString": "Enumeration member", @@ -10236,7 +10236,7 @@ "defaultValue": "\"BW_INC\"" }, { - "id": 1917, + "id": 1920, "name": "BW_INC_MAX", "kind": 16, "kindString": "Enumeration member", @@ -10254,7 +10254,7 @@ "defaultValue": "\"BW_INC_MAX\"" }, { - "id": 1918, + "id": 1921, "name": "BW_INC_MIN", "kind": 16, "kindString": "Enumeration member", @@ -10272,7 +10272,7 @@ "defaultValue": "\"BW_INC_MIN\"" }, { - "id": 1914, + "id": 1917, "name": "CONTAINS", "kind": 16, "kindString": "Enumeration member", @@ -10290,7 +10290,7 @@ "defaultValue": "\"CONTAINS\"" }, { - "id": 1916, + "id": 1919, "name": "ENDS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -10308,7 +10308,7 @@ "defaultValue": "\"ENDS_WITH\"" }, { - "id": 1908, + "id": 1911, "name": "EQ", "kind": 16, "kindString": "Enumeration member", @@ -10326,7 +10326,7 @@ "defaultValue": "\"EQ\"" }, { - "id": 1913, + "id": 1916, "name": "GE", "kind": 16, "kindString": "Enumeration member", @@ -10344,7 +10344,7 @@ "defaultValue": "\"GE\"" }, { - "id": 1912, + "id": 1915, "name": "GT", "kind": 16, "kindString": "Enumeration member", @@ -10362,7 +10362,7 @@ "defaultValue": "\"GT\"" }, { - "id": 1921, + "id": 1924, "name": "IN", "kind": 16, "kindString": "Enumeration member", @@ -10380,7 +10380,7 @@ "defaultValue": "\"IN\"" }, { - "id": 1911, + "id": 1914, "name": "LE", "kind": 16, "kindString": "Enumeration member", @@ -10398,7 +10398,7 @@ "defaultValue": "\"LE\"" }, { - "id": 1910, + "id": 1913, "name": "LT", "kind": 16, "kindString": "Enumeration member", @@ -10416,7 +10416,7 @@ "defaultValue": "\"LT\"" }, { - "id": 1909, + "id": 1912, "name": "NE", "kind": 16, "kindString": "Enumeration member", @@ -10434,7 +10434,7 @@ "defaultValue": "\"NE\"" }, { - "id": 1922, + "id": 1925, "name": "NOT_IN", "kind": 16, "kindString": "Enumeration member", @@ -10457,21 +10457,21 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1915, + 1918, + 1923, + 1922, 1920, - 1919, + 1921, 1917, - 1918, - 1914, + 1919, + 1911, 1916, - 1908, + 1915, + 1924, + 1914, 1913, 1912, - 1921, - 1911, - 1910, - 1909, - 1922 + 1925 ] } ], @@ -10484,14 +10484,14 @@ ] }, { - "id": 2883, + "id": 2876, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2888, + "id": 2881, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -10506,7 +10506,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2887, + "id": 2880, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -10521,7 +10521,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2886, + "id": 2879, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -10536,7 +10536,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2889, + "id": 2882, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -10551,7 +10551,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2884, + "id": 2877, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -10566,7 +10566,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2885, + "id": 2878, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -10586,12 +10586,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2888, - 2887, - 2886, - 2889, - 2884, - 2885 + 2881, + 2880, + 2879, + 2882, + 2877, + 2878 ] } ], @@ -10604,7 +10604,7 @@ ] }, { - "id": 1799, + "id": 1802, "name": "AnswerService", "kind": 128, "kindString": "Class", @@ -10633,7 +10633,7 @@ }, "children": [ { - "id": 1800, + "id": 1803, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -10650,7 +10650,7 @@ ], "signatures": [ { - "id": 1801, + "id": 1804, "name": "new AnswerService", "kind": 16384, "kindString": "Constructor signature", @@ -10660,7 +10660,7 @@ }, "parameters": [ { - "id": 1802, + "id": 1805, "name": "session", "kind": 32768, "kindString": "Parameter", @@ -10668,12 +10668,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1872, + "id": 1875, "name": "SessionInterface" } }, { - "id": 1803, + "id": 1806, "name": "answer", "kind": 32768, "kindString": "Parameter", @@ -10685,7 +10685,7 @@ } }, { - "id": 1804, + "id": 1807, "name": "thoughtSpotHost", "kind": 32768, "kindString": "Parameter", @@ -10697,7 +10697,7 @@ } }, { - "id": 1805, + "id": 1808, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -10711,7 +10711,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2860, + "id": 2853, "name": "VizPoint" } } @@ -10719,14 +10719,14 @@ ], "type": { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } } ] }, { - "id": 1814, + "id": 1817, "name": "addColumns", "kind": 2048, "kindString": "Method", @@ -10742,7 +10742,7 @@ ], "signatures": [ { - "id": 1815, + "id": 1818, "name": "addColumns", "kind": 4096, "kindString": "Call signature", @@ -10753,7 +10753,7 @@ }, "parameters": [ { - "id": 1816, + "id": 1819, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -10782,7 +10782,7 @@ ] }, { - "id": 1817, + "id": 1820, "name": "addColumnsByName", "kind": 2048, "kindString": "Method", @@ -10798,7 +10798,7 @@ ], "signatures": [ { - "id": 1818, + "id": 1821, "name": "addColumnsByName", "kind": 4096, "kindString": "Call signature", @@ -10814,7 +10814,7 @@ }, "parameters": [ { - "id": 1819, + "id": 1822, "name": "columnNames", "kind": 32768, "kindString": "Parameter", @@ -10843,7 +10843,7 @@ ] }, { - "id": 1866, + "id": 1869, "name": "addDisplayedVizToLiveboard", "kind": 2048, "kindString": "Method", @@ -10859,14 +10859,14 @@ ], "signatures": [ { - "id": 1867, + "id": 1870, "name": "addDisplayedVizToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1868, + "id": 1871, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -10891,7 +10891,7 @@ ] }, { - "id": 1820, + "id": 1823, "name": "addFilter", "kind": 2048, "kindString": "Method", @@ -10907,7 +10907,7 @@ ], "signatures": [ { - "id": 1821, + "id": 1824, "name": "addFilter", "kind": 4096, "kindString": "Call signature", @@ -10918,7 +10918,7 @@ }, "parameters": [ { - "id": 1822, + "id": 1825, "name": "columnName", "kind": 32768, "kindString": "Parameter", @@ -10930,7 +10930,7 @@ } }, { - "id": 1823, + "id": 1826, "name": "operator", "kind": 32768, "kindString": "Parameter", @@ -10938,12 +10938,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1907, + "id": 1910, "name": "RuntimeFilterOp" } }, { - "id": 1824, + "id": 1827, "name": "values", "kind": 32768, "kindString": "Parameter", @@ -10989,7 +10989,7 @@ ] }, { - "id": 1856, + "id": 1859, "name": "executeQuery", "kind": 2048, "kindString": "Method", @@ -11005,7 +11005,7 @@ ], "signatures": [ { - "id": 1857, + "id": 1860, "name": "executeQuery", "kind": 4096, "kindString": "Call signature", @@ -11016,7 +11016,7 @@ }, "parameters": [ { - "id": 1858, + "id": 1861, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -11030,7 +11030,7 @@ } }, { - "id": 1859, + "id": 1862, "name": "variables", "kind": 32768, "kindString": "Parameter", @@ -11058,7 +11058,7 @@ ] }, { - "id": 1834, + "id": 1837, "name": "fetchCSVBlob", "kind": 2048, "kindString": "Method", @@ -11074,7 +11074,7 @@ ], "signatures": [ { - "id": 1835, + "id": 1838, "name": "fetchCSVBlob", "kind": 4096, "kindString": "Call signature", @@ -11085,7 +11085,7 @@ }, "parameters": [ { - "id": 1836, + "id": 1839, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11098,7 +11098,7 @@ "defaultValue": "'en-us'" }, { - "id": 1837, + "id": 1840, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -11127,7 +11127,7 @@ ] }, { - "id": 1827, + "id": 1830, "name": "fetchData", "kind": 2048, "kindString": "Method", @@ -11143,7 +11143,7 @@ ], "signatures": [ { - "id": 1828, + "id": 1831, "name": "fetchData", "kind": 4096, "kindString": "Call signature", @@ -11154,7 +11154,7 @@ }, "parameters": [ { - "id": 1829, + "id": 1832, "name": "offset", "kind": 32768, "kindString": "Parameter", @@ -11167,7 +11167,7 @@ "defaultValue": "0" }, { - "id": 1830, + "id": 1833, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -11186,14 +11186,14 @@ { "type": "reflection", "declaration": { - "id": 1831, + "id": 1834, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1832, + "id": 1835, "name": "columns", "kind": 1024, "kindString": "Property", @@ -11204,7 +11204,7 @@ } }, { - "id": 1833, + "id": 1836, "name": "data", "kind": 1024, "kindString": "Property", @@ -11220,8 +11220,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1832, - 1833 + 1835, + 1836 ] } ] @@ -11234,7 +11234,7 @@ ] }, { - "id": 1838, + "id": 1841, "name": "fetchPNGBlob", "kind": 2048, "kindString": "Method", @@ -11250,7 +11250,7 @@ ], "signatures": [ { - "id": 1839, + "id": 1842, "name": "fetchPNGBlob", "kind": 4096, "kindString": "Call signature", @@ -11261,7 +11261,7 @@ }, "parameters": [ { - "id": 1840, + "id": 1843, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11274,7 +11274,7 @@ "defaultValue": "'en-us'" }, { - "id": 1841, + "id": 1844, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -11289,7 +11289,7 @@ "defaultValue": "false" }, { - "id": 1842, + "id": 1845, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -11318,7 +11318,7 @@ ] }, { - "id": 1862, + "id": 1865, "name": "getAnswer", "kind": 2048, "kindString": "Method", @@ -11334,7 +11334,7 @@ ], "signatures": [ { - "id": 1863, + "id": 1866, "name": "getAnswer", "kind": 4096, "kindString": "Call signature", @@ -11353,7 +11353,7 @@ ] }, { - "id": 1843, + "id": 1846, "name": "getFetchCSVBlobUrl", "kind": 2048, "kindString": "Method", @@ -11369,7 +11369,7 @@ ], "signatures": [ { - "id": 1844, + "id": 1847, "name": "getFetchCSVBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -11380,7 +11380,7 @@ }, "parameters": [ { - "id": 1845, + "id": 1848, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11393,7 +11393,7 @@ "defaultValue": "'en-us'" }, { - "id": 1846, + "id": 1849, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -11414,7 +11414,7 @@ ] }, { - "id": 1847, + "id": 1850, "name": "getFetchPNGBlobUrl", "kind": 2048, "kindString": "Method", @@ -11430,7 +11430,7 @@ ], "signatures": [ { - "id": 1848, + "id": 1851, "name": "getFetchPNGBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -11440,7 +11440,7 @@ }, "parameters": [ { - "id": 1849, + "id": 1852, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11453,7 +11453,7 @@ "defaultValue": "'en-us'" }, { - "id": 1850, + "id": 1853, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -11466,7 +11466,7 @@ "defaultValue": "false" }, { - "id": 1851, + "id": 1854, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -11489,7 +11489,7 @@ ] }, { - "id": 1825, + "id": 1828, "name": "getSQLQuery", "kind": 2048, "kindString": "Method", @@ -11505,7 +11505,7 @@ ], "signatures": [ { - "id": 1826, + "id": 1829, "name": "getSQLQuery", "kind": 4096, "kindString": "Call signature", @@ -11524,7 +11524,7 @@ ] }, { - "id": 1860, + "id": 1863, "name": "getSession", "kind": 2048, "kindString": "Method", @@ -11540,7 +11540,7 @@ ], "signatures": [ { - "id": 1861, + "id": 1864, "name": "getSession", "kind": 4096, "kindString": "Call signature", @@ -11551,14 +11551,14 @@ }, "type": { "type": "reference", - "id": 1872, + "id": 1875, "name": "SessionInterface" } } ] }, { - "id": 1809, + "id": 1812, "name": "getSourceDetail", "kind": 2048, "kindString": "Method", @@ -11574,7 +11574,7 @@ ], "signatures": [ { - "id": 1810, + "id": 1813, "name": "getSourceDetail", "kind": 4096, "kindString": "Call signature", @@ -11596,7 +11596,7 @@ ] }, { - "id": 1864, + "id": 1867, "name": "getTML", "kind": 2048, "kindString": "Method", @@ -11612,7 +11612,7 @@ ], "signatures": [ { - "id": 1865, + "id": 1868, "name": "getTML", "kind": 4096, "kindString": "Call signature", @@ -11631,7 +11631,7 @@ ] }, { - "id": 1852, + "id": 1855, "name": "getUnderlyingDataForPoint", "kind": 2048, "kindString": "Method", @@ -11647,7 +11647,7 @@ ], "signatures": [ { - "id": 1853, + "id": 1856, "name": "getUnderlyingDataForPoint", "kind": 4096, "kindString": "Call signature", @@ -11667,7 +11667,7 @@ }, "parameters": [ { - "id": 1854, + "id": 1857, "name": "outputColumnNames", "kind": 32768, "kindString": "Parameter", @@ -11682,7 +11682,7 @@ } }, { - "id": 1855, + "id": 1858, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -11694,7 +11694,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1879, + "id": 1882, "name": "UnderlyingDataPoint" } } @@ -11705,7 +11705,7 @@ "typeArguments": [ { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } ], @@ -11715,7 +11715,7 @@ ] }, { - "id": 1811, + "id": 1814, "name": "removeColumns", "kind": 2048, "kindString": "Method", @@ -11731,7 +11731,7 @@ ], "signatures": [ { - "id": 1812, + "id": 1815, "name": "removeColumns", "kind": 4096, "kindString": "Call signature", @@ -11742,7 +11742,7 @@ }, "parameters": [ { - "id": 1813, + "id": 1816, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -11771,7 +11771,7 @@ ] }, { - "id": 1869, + "id": 1872, "name": "setTMLOverride", "kind": 2048, "kindString": "Method", @@ -11787,14 +11787,14 @@ ], "signatures": [ { - "id": 1870, + "id": 1873, "name": "setTMLOverride", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1871, + "id": 1874, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -11818,31 +11818,31 @@ "title": "Constructors", "kind": 512, "children": [ - 1800 + 1803 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1814, 1817, - 1866, 1820, - 1856, - 1834, - 1827, - 1838, - 1862, - 1843, - 1847, - 1825, - 1860, - 1809, - 1864, - 1852, - 1811, - 1869 + 1869, + 1823, + 1859, + 1837, + 1830, + 1841, + 1865, + 1846, + 1850, + 1828, + 1863, + 1812, + 1867, + 1855, + 1814, + 1872 ] } ], @@ -11855,7 +11855,7 @@ ] }, { - "id": 986, + "id": 989, "name": "AppEmbed", "kind": 128, "kindString": "Class", @@ -11871,7 +11871,7 @@ }, "children": [ { - "id": 987, + "id": 990, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -11885,40 +11885,40 @@ ], "signatures": [ { - "id": 988, + "id": 991, "name": "new AppEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 989, + "id": 992, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2612, + "id": 2615, "name": "DOMSelector" } }, { - "id": 990, + "id": 993, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2500, + "id": 2503, "name": "AppViewConfig" } } ], "type": { "type": "reference", - "id": 986, + "id": 989, "name": "AppEmbed" }, "overwrites": { @@ -11933,7 +11933,7 @@ } }, { - "id": 1024, + "id": 1027, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -11949,7 +11949,7 @@ ], "signatures": [ { - "id": 1025, + "id": 1028, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -11979,7 +11979,7 @@ } }, { - "id": 1193, + "id": 1196, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -11995,7 +11995,7 @@ ], "signatures": [ { - "id": 1194, + "id": 1197, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -12011,7 +12011,7 @@ }, "parameters": [ { - "id": 1195, + "id": 1198, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -12032,7 +12032,7 @@ "typeArguments": [ { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } ], @@ -12050,7 +12050,7 @@ } }, { - "id": 1001, + "id": 1004, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -12066,7 +12066,7 @@ ], "signatures": [ { - "id": 1002, + "id": 1005, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -12082,7 +12082,7 @@ ] }, { - "id": 1162, + "id": 1165, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -12098,7 +12098,7 @@ ], "signatures": [ { - "id": 1163, + "id": 1166, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -12119,7 +12119,7 @@ } }, { - "id": 1188, + "id": 1191, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -12135,7 +12135,7 @@ ], "signatures": [ { - "id": 1189, + "id": 1192, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -12157,14 +12157,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1190, + "id": 1193, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1192, + "id": 1195, "name": "child", "kind": 1024, "kindString": "Property", @@ -12176,7 +12176,7 @@ "defaultValue": "..." }, { - "id": 1191, + "id": 1194, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -12193,8 +12193,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1192, - 1191 + 1195, + 1194 ] } ] @@ -12212,7 +12212,7 @@ } }, { - "id": 1170, + "id": 1173, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -12228,7 +12228,7 @@ ], "signatures": [ { - "id": 1171, + "id": 1174, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -12244,7 +12244,7 @@ }, "parameters": [ { - "id": 1172, + "id": 1175, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -12252,20 +12252,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1173, + "id": 1176, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1174, + "id": 1177, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1175, + "id": 1178, "name": "key", "kind": 32768, "flags": {}, @@ -12310,7 +12310,7 @@ } }, { - "id": 1176, + "id": 1179, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -12326,7 +12326,7 @@ ], "signatures": [ { - "id": 1177, + "id": 1180, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -12347,7 +12347,7 @@ } }, { - "id": 1186, + "id": 1189, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -12363,7 +12363,7 @@ ], "signatures": [ { - "id": 1187, + "id": 1190, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -12387,7 +12387,7 @@ } }, { - "id": 1020, + "id": 1023, "name": "navigateToPage", "kind": 2048, "kindString": "Method", @@ -12403,7 +12403,7 @@ ], "signatures": [ { - "id": 1021, + "id": 1024, "name": "navigateToPage", "kind": 4096, "kindString": "Call signature", @@ -12419,7 +12419,7 @@ }, "parameters": [ { - "id": 1022, + "id": 1025, "name": "path", "kind": 32768, "kindString": "Parameter", @@ -12442,7 +12442,7 @@ } }, { - "id": 1023, + "id": 1026, "name": "noReload", "kind": 32768, "kindString": "Parameter", @@ -12465,7 +12465,7 @@ ] }, { - "id": 1133, + "id": 1136, "name": "off", "kind": 2048, "kindString": "Method", @@ -12481,7 +12481,7 @@ ], "signatures": [ { - "id": 1134, + "id": 1137, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -12497,7 +12497,7 @@ }, "parameters": [ { - "id": 1135, + "id": 1138, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12507,12 +12507,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 1136, + "id": 1139, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -12522,7 +12522,7 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2619, "name": "MessageCallback" } } @@ -12543,7 +12543,7 @@ } }, { - "id": 1039, + "id": 1042, "name": "on", "kind": 2048, "kindString": "Method", @@ -12559,7 +12559,7 @@ ], "signatures": [ { - "id": 1040, + "id": 1043, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -12582,38 +12582,38 @@ }, "parameters": [ { - "id": 1041, + "id": 1044, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 1042, + "id": 1045, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2616, + "id": 2619, "name": "MessageCallback" } }, { - "id": 1043, + "id": 1046, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2613, + "id": 2616, "name": "MessageOptions" }, "defaultValue": "..." @@ -12635,7 +12635,7 @@ } }, { - "id": 1166, + "id": 1169, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -12651,7 +12651,7 @@ ], "signatures": [ { - "id": 1167, + "id": 1170, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -12661,7 +12661,7 @@ }, "parameters": [ { - "id": 1168, + "id": 1171, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -12676,7 +12676,7 @@ "defaultValue": "false" }, { - "id": 1169, + "id": 1172, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -12710,7 +12710,7 @@ } }, { - "id": 1178, + "id": 1181, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -12726,7 +12726,7 @@ ], "signatures": [ { - "id": 1179, + "id": 1182, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -12763,7 +12763,7 @@ } }, { - "id": 1032, + "id": 1035, "name": "render", "kind": 2048, "kindString": "Method", @@ -12779,7 +12779,7 @@ ], "signatures": [ { - "id": 1033, + "id": 1036, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -12792,7 +12792,7 @@ "typeArguments": [ { "type": "reference", - "id": 986, + "id": 989, "name": "AppEmbed" } ], @@ -12810,7 +12810,7 @@ } }, { - "id": 1182, + "id": 1185, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -12826,7 +12826,7 @@ ], "signatures": [ { - "id": 1183, + "id": 1186, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -12856,7 +12856,7 @@ } }, { - "id": 1184, + "id": 1187, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -12872,7 +12872,7 @@ ], "signatures": [ { - "id": 1185, + "id": 1188, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -12902,7 +12902,7 @@ } }, { - "id": 1151, + "id": 1154, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -12918,7 +12918,7 @@ ], "signatures": [ { - "id": 1152, + "id": 1155, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -12929,19 +12929,19 @@ }, "typeParameter": [ { - "id": 1153, + "id": 1156, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2016, + "id": 2019, "name": "HostEvent" } }, { - "id": 1154, + "id": 1157, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -12950,7 +12950,7 @@ ], "parameters": [ { - "id": 1155, + "id": 1158, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12964,7 +12964,7 @@ } }, { - "id": 1156, + "id": 1159, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -13021,7 +13021,7 @@ } }, { - "id": 1157, + "id": 1160, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -13037,7 +13037,7 @@ ], "signatures": [ { - "id": 1158, + "id": 1161, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -13048,21 +13048,21 @@ }, "typeParameter": [ { - "id": 1159, + "id": 1162, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2876, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1160, + "id": 1163, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -13076,7 +13076,7 @@ } }, { - "id": 1161, + "id": 1164, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -13129,31 +13129,31 @@ "title": "Constructors", "kind": 512, "children": [ - 987 + 990 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1024, - 1193, - 1001, - 1162, - 1188, - 1170, - 1176, - 1186, - 1020, - 1133, - 1039, - 1166, - 1178, - 1032, - 1182, - 1184, - 1151, - 1157 + 1027, + 1196, + 1004, + 1165, + 1191, + 1173, + 1179, + 1189, + 1023, + 1136, + 1042, + 1169, + 1181, + 1035, + 1185, + 1187, + 1154, + 1160 ] } ], @@ -13172,7 +13172,7 @@ ] }, { - "id": 1286, + "id": 1289, "name": "BodylessConversation", "kind": 128, "kindString": "Class", @@ -13196,7 +13196,7 @@ }, "children": [ { - "id": 1287, + "id": 1290, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -13210,45 +13210,45 @@ ], "signatures": [ { - "id": 1288, + "id": 1291, "name": "new BodylessConversation", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1289, + "id": 1292, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1257, + "id": 1260, "name": "BodylessConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1286, + "id": 1289, "name": "BodylessConversation" }, "overwrites": { "type": "reference", - "id": 1198, + "id": 1201, "name": "SpotterAgentEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1197, + "id": 1200, "name": "SpotterAgentEmbed.constructor" } }, { - "id": 1290, + "id": 1293, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -13264,14 +13264,14 @@ ], "signatures": [ { - "id": 1291, + "id": 1294, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1292, + "id": 1295, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -13291,14 +13291,14 @@ { "type": "reflection", "declaration": { - "id": 1293, + "id": 1296, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1295, + "id": 1298, "name": "container", "kind": 1024, "kindString": "Property", @@ -13309,7 +13309,7 @@ } }, { - "id": 1294, + "id": 1297, "name": "error", "kind": 1024, "kindString": "Property", @@ -13320,7 +13320,7 @@ } }, { - "id": 1296, + "id": 1299, "name": "viz", "kind": 1024, "kindString": "Property", @@ -13337,9 +13337,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1295, - 1294, - 1296 + 1298, + 1297, + 1299 ] } ] @@ -13348,14 +13348,14 @@ { "type": "reflection", "declaration": { - "id": 1297, + "id": 1300, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1298, + "id": 1301, "name": "container", "kind": 1024, "kindString": "Property", @@ -13366,7 +13366,7 @@ } }, { - "id": 1300, + "id": 1303, "name": "error", "kind": 1024, "kindString": "Property", @@ -13377,7 +13377,7 @@ } }, { - "id": 1299, + "id": 1302, "name": "viz", "kind": 1024, "kindString": "Property", @@ -13394,9 +13394,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1298, - 1300, - 1299 + 1301, + 1303, + 1302 ] } ] @@ -13409,19 +13409,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1202, + "id": 1205, "name": "SpotterAgentEmbed.sendMessage" } } ], "inheritedFrom": { "type": "reference", - "id": 1201, + "id": 1204, "name": "SpotterAgentEmbed.sendMessage" } }, { - "id": 1301, + "id": 1304, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -13437,7 +13437,7 @@ ], "signatures": [ { - "id": 1302, + "id": 1305, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -13448,7 +13448,7 @@ }, "parameters": [ { - "id": 1303, + "id": 1306, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -13471,14 +13471,14 @@ { "type": "reflection", "declaration": { - "id": 1304, + "id": 1307, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1306, + "id": 1309, "name": "data", "kind": 1024, "kindString": "Property", @@ -13490,7 +13490,7 @@ "defaultValue": "..." }, { - "id": 1305, + "id": 1308, "name": "error", "kind": 1024, "kindString": "Property", @@ -13506,8 +13506,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1306, - 1305 + 1309, + 1308 ] } ] @@ -13516,14 +13516,14 @@ { "type": "reflection", "declaration": { - "id": 1307, + "id": 1310, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1308, + "id": 1311, "name": "data", "kind": 1024, "kindString": "Property", @@ -13531,14 +13531,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1309, + "id": 1312, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1315, + "id": 1318, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -13550,7 +13550,7 @@ "defaultValue": "..." }, { - "id": 1314, + "id": 1317, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -13562,7 +13562,7 @@ "defaultValue": "..." }, { - "id": 1310, + "id": 1313, "name": "convId", "kind": 1024, "kindString": "Property", @@ -13574,7 +13574,7 @@ "defaultValue": "..." }, { - "id": 1313, + "id": 1316, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -13586,7 +13586,7 @@ "defaultValue": "..." }, { - "id": 1311, + "id": 1314, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -13598,7 +13598,7 @@ "defaultValue": "..." }, { - "id": 1312, + "id": 1315, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -13615,12 +13615,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1315, - 1314, - 1310, + 1318, + 1317, 1313, - 1311, - 1312 + 1316, + 1314, + 1315 ] } ] @@ -13629,7 +13629,7 @@ "defaultValue": "..." }, { - "id": 1316, + "id": 1319, "name": "error", "kind": 1024, "kindString": "Property", @@ -13645,8 +13645,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1308, - 1316 + 1311, + 1319 ] } ] @@ -13659,14 +13659,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1213, + "id": 1216, "name": "SpotterAgentEmbed.sendMessageData" } } ], "inheritedFrom": { "type": "reference", - "id": 1212, + "id": 1215, "name": "SpotterAgentEmbed.sendMessageData" } } @@ -13676,15 +13676,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1287 + 1290 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1290, - 1301 + 1293, + 1304 ] } ], @@ -13698,13 +13698,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1196, + "id": 1199, "name": "SpotterAgentEmbed" } ] }, { - "id": 1563, + "id": 1566, "name": "ConversationEmbed", "kind": 128, "kindString": "Class", @@ -13732,7 +13732,7 @@ }, "children": [ { - "id": 1564, + "id": 1567, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -13746,14 +13746,14 @@ ], "signatures": [ { - "id": 1565, + "id": 1568, "name": "new ConversationEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1566, + "id": 1569, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -13764,38 +13764,38 @@ } }, { - "id": 1567, + "id": 1570, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1523, + "id": 1526, "name": "ConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1563, + "id": 1566, "name": "ConversationEmbed" }, "overwrites": { "type": "reference", - "id": 1319, + "id": 1322, "name": "SpotterEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1318, + "id": 1321, "name": "SpotterEmbed.constructor" } }, { - "id": 1707, + "id": 1710, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -13811,7 +13811,7 @@ ], "signatures": [ { - "id": 1708, + "id": 1711, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -13831,19 +13831,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1462, + "id": 1465, "name": "SpotterEmbed.destroy" } } ], "inheritedFrom": { "type": "reference", - "id": 1461, + "id": 1464, "name": "SpotterEmbed.destroy" } }, { - "id": 1726, + "id": 1729, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -13859,7 +13859,7 @@ ], "signatures": [ { - "id": 1727, + "id": 1730, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -13875,7 +13875,7 @@ }, "parameters": [ { - "id": 1728, + "id": 1731, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -13896,7 +13896,7 @@ "typeArguments": [ { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } ], @@ -13904,19 +13904,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1481, + "id": 1484, "name": "SpotterEmbed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "id": 1480, + "id": 1483, "name": "SpotterEmbed.getAnswerService" } }, { - "id": 1571, + "id": 1574, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -13932,7 +13932,7 @@ ], "signatures": [ { - "id": 1572, + "id": 1575, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -13943,19 +13943,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1326, + "id": 1329, "name": "SpotterEmbed.getIframeSrc" } } ], "inheritedFrom": { "type": "reference", - "id": 1325, + "id": 1328, "name": "SpotterEmbed.getIframeSrc" } }, { - "id": 1721, + "id": 1724, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -13971,7 +13971,7 @@ ], "signatures": [ { - "id": 1722, + "id": 1725, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -13993,14 +13993,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1723, + "id": 1726, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1725, + "id": 1728, "name": "child", "kind": 1024, "kindString": "Property", @@ -14012,7 +14012,7 @@ "defaultValue": "..." }, { - "id": 1724, + "id": 1727, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -14029,8 +14029,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1725, - 1724 + 1728, + 1727 ] } ] @@ -14038,19 +14038,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1476, + "id": 1479, "name": "SpotterEmbed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "id": 1475, + "id": 1478, "name": "SpotterEmbed.getPreRenderIds" } }, { - "id": 1701, + "id": 1704, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -14066,7 +14066,7 @@ ], "signatures": [ { - "id": 1702, + "id": 1705, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -14082,7 +14082,7 @@ }, "parameters": [ { - "id": 1703, + "id": 1706, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -14090,20 +14090,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1704, + "id": 1707, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1705, + "id": 1708, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1706, + "id": 1709, "name": "key", "kind": 32768, "flags": {}, @@ -14138,19 +14138,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1456, + "id": 1459, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "id": 1455, + "id": 1458, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } }, { - "id": 1709, + "id": 1712, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -14166,7 +14166,7 @@ ], "signatures": [ { - "id": 1710, + "id": 1713, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -14177,19 +14177,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1464, + "id": 1467, "name": "SpotterEmbed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "id": 1463, + "id": 1466, "name": "SpotterEmbed.getUnderlyingFrameElement" } }, { - "id": 1719, + "id": 1722, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -14205,7 +14205,7 @@ ], "signatures": [ { - "id": 1720, + "id": 1723, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -14219,19 +14219,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1474, + "id": 1477, "name": "SpotterEmbed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1473, + "id": 1476, "name": "SpotterEmbed.hidePreRender" } }, { - "id": 1666, + "id": 1669, "name": "off", "kind": 2048, "kindString": "Method", @@ -14247,7 +14247,7 @@ ], "signatures": [ { - "id": 1667, + "id": 1670, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -14263,7 +14263,7 @@ }, "parameters": [ { - "id": 1668, + "id": 1671, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14273,12 +14273,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 1669, + "id": 1672, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14288,7 +14288,7 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2619, "name": "MessageCallback" } } @@ -14299,19 +14299,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1421, + "id": 1424, "name": "SpotterEmbed.off" } } ], "inheritedFrom": { "type": "reference", - "id": 1420, + "id": 1423, "name": "SpotterEmbed.off" } }, { - "id": 1660, + "id": 1663, "name": "on", "kind": 2048, "kindString": "Method", @@ -14327,7 +14327,7 @@ ], "signatures": [ { - "id": 1661, + "id": 1664, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -14347,7 +14347,7 @@ }, "parameters": [ { - "id": 1662, + "id": 1665, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14357,12 +14357,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 1663, + "id": 1666, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14372,12 +14372,12 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2619, "name": "MessageCallback" } }, { - "id": 1664, + "id": 1667, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -14387,13 +14387,13 @@ }, "type": { "type": "reference", - "id": 2613, + "id": 2616, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1665, + "id": 1668, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -14412,19 +14412,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1415, + "id": 1418, "name": "SpotterEmbed.on" } } ], "inheritedFrom": { "type": "reference", - "id": 1414, + "id": 1417, "name": "SpotterEmbed.on" } }, { - "id": 1697, + "id": 1700, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -14440,7 +14440,7 @@ ], "signatures": [ { - "id": 1698, + "id": 1701, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -14450,7 +14450,7 @@ }, "parameters": [ { - "id": 1699, + "id": 1702, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -14465,7 +14465,7 @@ "defaultValue": "false" }, { - "id": 1700, + "id": 1703, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -14489,19 +14489,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1452, + "id": 1455, "name": "SpotterEmbed.preRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1451, + "id": 1454, "name": "SpotterEmbed.preRender" } }, { - "id": 1711, + "id": 1714, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -14517,7 +14517,7 @@ ], "signatures": [ { - "id": 1712, + "id": 1715, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -14544,19 +14544,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1466, + "id": 1469, "name": "SpotterEmbed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "id": 1465, + "id": 1468, "name": "SpotterEmbed.prerenderGeneric" } }, { - "id": 1573, + "id": 1576, "name": "render", "kind": 2048, "kindString": "Method", @@ -14572,7 +14572,7 @@ ], "signatures": [ { - "id": 1574, + "id": 1577, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -14582,7 +14582,7 @@ "typeArguments": [ { "type": "reference", - "id": 1317, + "id": 1320, "name": "SpotterEmbed" } ], @@ -14590,19 +14590,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1328, + "id": 1331, "name": "SpotterEmbed.render" } } ], "inheritedFrom": { "type": "reference", - "id": 1327, + "id": 1330, "name": "SpotterEmbed.render" } }, { - "id": 1715, + "id": 1718, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -14618,7 +14618,7 @@ ], "signatures": [ { - "id": 1716, + "id": 1719, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -14638,19 +14638,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1470, + "id": 1473, "name": "SpotterEmbed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1469, + "id": 1472, "name": "SpotterEmbed.showPreRender" } }, { - "id": 1717, + "id": 1720, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -14666,7 +14666,7 @@ ], "signatures": [ { - "id": 1718, + "id": 1721, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -14686,19 +14686,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1472, + "id": 1475, "name": "SpotterEmbed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "id": 1471, + "id": 1474, "name": "SpotterEmbed.syncPreRenderStyle" } }, { - "id": 1684, + "id": 1687, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -14714,7 +14714,7 @@ ], "signatures": [ { - "id": 1685, + "id": 1688, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -14725,19 +14725,19 @@ }, "typeParameter": [ { - "id": 1686, + "id": 1689, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2016, + "id": 2019, "name": "HostEvent" } }, { - "id": 1687, + "id": 1690, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -14746,7 +14746,7 @@ ], "parameters": [ { - "id": 1688, + "id": 1691, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14760,7 +14760,7 @@ } }, { - "id": 1689, + "id": 1692, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -14807,19 +14807,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1439, + "id": 1442, "name": "SpotterEmbed.trigger" } } ], "inheritedFrom": { "type": "reference", - "id": 1438, + "id": 1441, "name": "SpotterEmbed.trigger" } }, { - "id": 1690, + "id": 1693, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -14835,7 +14835,7 @@ ], "signatures": [ { - "id": 1691, + "id": 1694, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -14846,21 +14846,21 @@ }, "typeParameter": [ { - "id": 1692, + "id": 1695, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2876, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1693, + "id": 1696, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -14874,7 +14874,7 @@ } }, { - "id": 1694, + "id": 1697, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -14912,14 +14912,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1445, + "id": 1448, "name": "SpotterEmbed.triggerUIPassThrough" } } ], "inheritedFrom": { "type": "reference", - "id": 1444, + "id": 1447, "name": "SpotterEmbed.triggerUIPassThrough" } } @@ -14929,29 +14929,29 @@ "title": "Constructors", "kind": 512, "children": [ - 1564 + 1567 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1707, - 1726, - 1571, - 1721, - 1701, - 1709, - 1719, - 1666, - 1660, - 1697, - 1711, - 1573, - 1715, - 1717, - 1684, - 1690 + 1710, + 1729, + 1574, + 1724, + 1704, + 1712, + 1722, + 1669, + 1663, + 1700, + 1714, + 1576, + 1718, + 1720, + 1687, + 1693 ] } ], @@ -14965,13 +14965,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1317, + "id": 1320, "name": "SpotterEmbed" } ] }, { - "id": 587, + "id": 590, "name": "LiveboardEmbed", "kind": 128, "kindString": "Class", @@ -14991,7 +14991,7 @@ }, "children": [ { - "id": 588, + "id": 591, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -15005,40 +15005,40 @@ ], "signatures": [ { - "id": 589, + "id": 592, "name": "new LiveboardEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 590, + "id": 593, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2612, + "id": 2615, "name": "DOMSelector" } }, { - "id": 591, + "id": 594, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2379, + "id": 2382, "name": "LiveboardViewConfig" } } ], "type": { "type": "reference", - "id": 587, + "id": 590, "name": "LiveboardEmbed" }, "overwrites": { @@ -15053,7 +15053,7 @@ } }, { - "id": 643, + "id": 646, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -15069,7 +15069,7 @@ ], "signatures": [ { - "id": 644, + "id": 647, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -15099,7 +15099,7 @@ } }, { - "id": 807, + "id": 810, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -15115,7 +15115,7 @@ ], "signatures": [ { - "id": 808, + "id": 811, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -15131,7 +15131,7 @@ }, "parameters": [ { - "id": 809, + "id": 812, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15152,7 +15152,7 @@ "typeArguments": [ { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } ], @@ -15170,7 +15170,7 @@ } }, { - "id": 780, + "id": 783, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -15186,7 +15186,7 @@ ], "signatures": [ { - "id": 781, + "id": 784, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -15207,7 +15207,7 @@ } }, { - "id": 658, + "id": 661, "name": "getLiveboardUrl", "kind": 2048, "kindString": "Method", @@ -15223,7 +15223,7 @@ ], "signatures": [ { - "id": 659, + "id": 662, "name": "getLiveboardUrl", "kind": 4096, "kindString": "Call signature", @@ -15240,7 +15240,7 @@ ] }, { - "id": 802, + "id": 805, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -15256,7 +15256,7 @@ ], "signatures": [ { - "id": 803, + "id": 806, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -15278,14 +15278,14 @@ "type": { "type": "reflection", "declaration": { - "id": 804, + "id": 807, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 806, + "id": 809, "name": "child", "kind": 1024, "kindString": "Property", @@ -15297,7 +15297,7 @@ "defaultValue": "..." }, { - "id": 805, + "id": 808, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -15314,8 +15314,8 @@ "title": "Properties", "kind": 1024, "children": [ - 806, - 805 + 809, + 808 ] } ] @@ -15333,7 +15333,7 @@ } }, { - "id": 786, + "id": 789, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -15349,7 +15349,7 @@ ], "signatures": [ { - "id": 787, + "id": 790, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -15365,7 +15365,7 @@ }, "parameters": [ { - "id": 788, + "id": 791, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -15373,20 +15373,20 @@ "type": { "type": "reflection", "declaration": { - "id": 789, + "id": 792, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 790, + "id": 793, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 791, + "id": 794, "name": "key", "kind": 32768, "flags": {}, @@ -15431,7 +15431,7 @@ } }, { - "id": 792, + "id": 795, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -15447,7 +15447,7 @@ ], "signatures": [ { - "id": 793, + "id": 796, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -15468,7 +15468,7 @@ } }, { - "id": 800, + "id": 803, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -15484,7 +15484,7 @@ ], "signatures": [ { - "id": 801, + "id": 804, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -15508,7 +15508,7 @@ } }, { - "id": 653, + "id": 656, "name": "navigateToLiveboard", "kind": 2048, "kindString": "Method", @@ -15524,14 +15524,14 @@ ], "signatures": [ { - "id": 654, + "id": 657, "name": "navigateToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 655, + "id": 658, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -15542,7 +15542,7 @@ } }, { - "id": 656, + "id": 659, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15555,7 +15555,7 @@ } }, { - "id": 657, + "id": 660, "name": "activeTabId", "kind": 32768, "kindString": "Parameter", @@ -15576,7 +15576,7 @@ ] }, { - "id": 757, + "id": 760, "name": "off", "kind": 2048, "kindString": "Method", @@ -15592,7 +15592,7 @@ ], "signatures": [ { - "id": 758, + "id": 761, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -15608,7 +15608,7 @@ }, "parameters": [ { - "id": 759, + "id": 762, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15618,12 +15618,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 760, + "id": 763, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -15633,7 +15633,7 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2619, "name": "MessageCallback" } } @@ -15654,7 +15654,7 @@ } }, { - "id": 665, + "id": 668, "name": "on", "kind": 2048, "kindString": "Method", @@ -15670,7 +15670,7 @@ ], "signatures": [ { - "id": 666, + "id": 669, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -15693,38 +15693,38 @@ }, "parameters": [ { - "id": 667, + "id": 670, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 668, + "id": 671, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2616, + "id": 2619, "name": "MessageCallback" } }, { - "id": 669, + "id": 672, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2613, + "id": 2616, "name": "MessageOptions" }, "defaultValue": "..." @@ -15746,7 +15746,7 @@ } }, { - "id": 782, + "id": 785, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -15762,7 +15762,7 @@ ], "signatures": [ { - "id": 783, + "id": 786, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -15772,7 +15772,7 @@ }, "parameters": [ { - "id": 784, + "id": 787, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -15787,7 +15787,7 @@ "defaultValue": "false" }, { - "id": 785, + "id": 788, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -15821,7 +15821,7 @@ } }, { - "id": 794, + "id": 797, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -15837,7 +15837,7 @@ ], "signatures": [ { - "id": 795, + "id": 798, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -15874,7 +15874,7 @@ } }, { - "id": 651, + "id": 654, "name": "render", "kind": 2048, "kindString": "Method", @@ -15890,7 +15890,7 @@ ], "signatures": [ { - "id": 652, + "id": 655, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -15903,7 +15903,7 @@ "typeArguments": [ { "type": "reference", - "id": 587, + "id": 590, "name": "LiveboardEmbed" } ], @@ -15921,7 +15921,7 @@ } }, { - "id": 796, + "id": 799, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -15937,7 +15937,7 @@ ], "signatures": [ { - "id": 797, + "id": 800, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -15967,7 +15967,7 @@ } }, { - "id": 798, + "id": 801, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -15983,7 +15983,7 @@ ], "signatures": [ { - "id": 799, + "id": 802, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -16013,7 +16013,7 @@ } }, { - "id": 637, + "id": 640, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -16029,7 +16029,7 @@ ], "signatures": [ { - "id": 638, + "id": 641, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -16040,19 +16040,19 @@ }, "typeParameter": [ { - "id": 639, + "id": 642, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2016, + "id": 2019, "name": "HostEvent" } }, { - "id": 640, + "id": 643, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -16061,7 +16061,7 @@ ], "parameters": [ { - "id": 641, + "id": 644, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16075,7 +16075,7 @@ } }, { - "id": 642, + "id": 645, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -16132,7 +16132,7 @@ } }, { - "id": 775, + "id": 778, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -16148,7 +16148,7 @@ ], "signatures": [ { - "id": 776, + "id": 779, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -16159,21 +16159,21 @@ }, "typeParameter": [ { - "id": 777, + "id": 780, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2876, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 778, + "id": 781, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -16187,7 +16187,7 @@ } }, { - "id": 779, + "id": 782, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -16240,31 +16240,31 @@ "title": "Constructors", "kind": 512, "children": [ - 588 + 591 ] }, { "title": "Methods", "kind": 2048, "children": [ - 643, - 807, - 780, - 658, - 802, - 786, - 792, - 800, - 653, - 757, - 665, - 782, - 794, - 651, - 796, - 798, - 637, - 775 + 646, + 810, + 783, + 661, + 805, + 789, + 795, + 803, + 656, + 760, + 668, + 785, + 797, + 654, + 799, + 801, + 640, + 778 ] } ], @@ -16283,7 +16283,7 @@ ] }, { - "id": 810, + "id": 813, "name": "SageEmbed", "kind": 128, "kindString": "Class", @@ -16303,7 +16303,7 @@ }, "children": [ { - "id": 811, + "id": 814, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -16317,40 +16317,40 @@ ], "signatures": [ { - "id": 812, + "id": 815, "name": "new SageEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 813, + "id": 816, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2612, + "id": 2615, "name": "DOMSelector" } }, { - "id": 814, + "id": 817, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2453, + "id": 2456, "name": "SageViewConfig" } } ], "type": { "type": "reference", - "id": 810, + "id": 813, "name": "SageEmbed" }, "overwrites": { @@ -16365,7 +16365,7 @@ } }, { - "id": 964, + "id": 967, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -16381,7 +16381,7 @@ ], "signatures": [ { - "id": 965, + "id": 968, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -16411,7 +16411,7 @@ } }, { - "id": 983, + "id": 986, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -16427,7 +16427,7 @@ ], "signatures": [ { - "id": 984, + "id": 987, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -16443,7 +16443,7 @@ }, "parameters": [ { - "id": 985, + "id": 988, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -16464,7 +16464,7 @@ "typeArguments": [ { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } ], @@ -16482,7 +16482,7 @@ } }, { - "id": 820, + "id": 823, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -16498,7 +16498,7 @@ ], "signatures": [ { - "id": 821, + "id": 824, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -16515,7 +16515,7 @@ ] }, { - "id": 950, + "id": 953, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -16531,7 +16531,7 @@ ], "signatures": [ { - "id": 951, + "id": 954, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -16552,7 +16552,7 @@ } }, { - "id": 978, + "id": 981, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -16568,7 +16568,7 @@ ], "signatures": [ { - "id": 979, + "id": 982, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -16590,14 +16590,14 @@ "type": { "type": "reflection", "declaration": { - "id": 980, + "id": 983, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 982, + "id": 985, "name": "child", "kind": 1024, "kindString": "Property", @@ -16609,7 +16609,7 @@ "defaultValue": "..." }, { - "id": 981, + "id": 984, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -16626,8 +16626,8 @@ "title": "Properties", "kind": 1024, "children": [ - 982, - 981 + 985, + 984 ] } ] @@ -16645,7 +16645,7 @@ } }, { - "id": 958, + "id": 961, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -16661,7 +16661,7 @@ ], "signatures": [ { - "id": 959, + "id": 962, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -16677,7 +16677,7 @@ }, "parameters": [ { - "id": 960, + "id": 963, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -16685,20 +16685,20 @@ "type": { "type": "reflection", "declaration": { - "id": 961, + "id": 964, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 962, + "id": 965, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 963, + "id": 966, "name": "key", "kind": 32768, "flags": {}, @@ -16743,7 +16743,7 @@ } }, { - "id": 966, + "id": 969, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -16759,7 +16759,7 @@ ], "signatures": [ { - "id": 967, + "id": 970, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -16780,7 +16780,7 @@ } }, { - "id": 976, + "id": 979, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -16796,7 +16796,7 @@ ], "signatures": [ { - "id": 977, + "id": 980, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -16820,7 +16820,7 @@ } }, { - "id": 921, + "id": 924, "name": "off", "kind": 2048, "kindString": "Method", @@ -16836,7 +16836,7 @@ ], "signatures": [ { - "id": 922, + "id": 925, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -16852,7 +16852,7 @@ }, "parameters": [ { - "id": 923, + "id": 926, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16862,12 +16862,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 924, + "id": 927, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -16877,7 +16877,7 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2619, "name": "MessageCallback" } } @@ -16898,7 +16898,7 @@ } }, { - "id": 829, + "id": 832, "name": "on", "kind": 2048, "kindString": "Method", @@ -16914,7 +16914,7 @@ ], "signatures": [ { - "id": 830, + "id": 833, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -16937,38 +16937,38 @@ }, "parameters": [ { - "id": 831, + "id": 834, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 832, + "id": 835, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2616, + "id": 2619, "name": "MessageCallback" } }, { - "id": 833, + "id": 836, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2613, + "id": 2616, "name": "MessageOptions" }, "defaultValue": "..." @@ -16990,7 +16990,7 @@ } }, { - "id": 954, + "id": 957, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -17006,7 +17006,7 @@ ], "signatures": [ { - "id": 955, + "id": 958, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -17016,7 +17016,7 @@ }, "parameters": [ { - "id": 956, + "id": 959, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -17031,7 +17031,7 @@ "defaultValue": "false" }, { - "id": 957, + "id": 960, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -17065,7 +17065,7 @@ } }, { - "id": 968, + "id": 971, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -17081,7 +17081,7 @@ ], "signatures": [ { - "id": 969, + "id": 972, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -17118,7 +17118,7 @@ } }, { - "id": 822, + "id": 825, "name": "render", "kind": 2048, "kindString": "Method", @@ -17134,7 +17134,7 @@ ], "signatures": [ { - "id": 823, + "id": 826, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -17148,7 +17148,7 @@ "typeArguments": [ { "type": "reference", - "id": 810, + "id": 813, "name": "SageEmbed" } ], @@ -17166,7 +17166,7 @@ } }, { - "id": 972, + "id": 975, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -17182,7 +17182,7 @@ ], "signatures": [ { - "id": 973, + "id": 976, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -17212,7 +17212,7 @@ } }, { - "id": 974, + "id": 977, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -17228,7 +17228,7 @@ ], "signatures": [ { - "id": 975, + "id": 978, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -17258,7 +17258,7 @@ } }, { - "id": 939, + "id": 942, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -17274,7 +17274,7 @@ ], "signatures": [ { - "id": 940, + "id": 943, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -17285,19 +17285,19 @@ }, "typeParameter": [ { - "id": 941, + "id": 944, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2016, + "id": 2019, "name": "HostEvent" } }, { - "id": 942, + "id": 945, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -17306,7 +17306,7 @@ ], "parameters": [ { - "id": 943, + "id": 946, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17320,7 +17320,7 @@ } }, { - "id": 944, + "id": 947, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -17377,7 +17377,7 @@ } }, { - "id": 945, + "id": 948, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -17393,7 +17393,7 @@ ], "signatures": [ { - "id": 946, + "id": 949, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -17404,21 +17404,21 @@ }, "typeParameter": [ { - "id": 947, + "id": 950, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2876, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 948, + "id": 951, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -17432,7 +17432,7 @@ } }, { - "id": 949, + "id": 952, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -17485,30 +17485,30 @@ "title": "Constructors", "kind": 512, "children": [ - 811 + 814 ] }, { "title": "Methods", "kind": 2048, "children": [ - 964, - 983, - 820, - 950, - 978, - 958, - 966, - 976, - 921, - 829, - 954, - 968, - 822, - 972, - 974, - 939, - 945 + 967, + 986, + 823, + 953, + 981, + 961, + 969, + 979, + 924, + 832, + 957, + 971, + 825, + 975, + 977, + 942, + 948 ] } ], @@ -17527,7 +17527,7 @@ ] }, { - "id": 228, + "id": 231, "name": "SearchBarEmbed", "kind": 128, "kindString": "Class", @@ -17547,7 +17547,7 @@ }, "children": [ { - "id": 229, + "id": 232, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -17561,14 +17561,14 @@ ], "signatures": [ { - "id": 230, + "id": 233, "name": "new SearchBarEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 231, + "id": 234, "name": "domSelector", "kind": 32768, "kindString": "Parameter", @@ -17579,21 +17579,21 @@ } }, { - "id": 232, + "id": 235, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2337, + "id": 2340, "name": "SearchBarViewConfig" } } ], "type": { "type": "reference", - "id": 228, + "id": 231, "name": "SearchBarEmbed" }, "overwrites": { @@ -17608,7 +17608,7 @@ } }, { - "id": 379, + "id": 382, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -17624,7 +17624,7 @@ ], "signatures": [ { - "id": 380, + "id": 383, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -17654,7 +17654,7 @@ } }, { - "id": 398, + "id": 401, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -17670,7 +17670,7 @@ ], "signatures": [ { - "id": 399, + "id": 402, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -17686,7 +17686,7 @@ }, "parameters": [ { - "id": 400, + "id": 403, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -17707,7 +17707,7 @@ "typeArguments": [ { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } ], @@ -17725,7 +17725,7 @@ } }, { - "id": 365, + "id": 368, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -17741,7 +17741,7 @@ ], "signatures": [ { - "id": 366, + "id": 369, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -17762,7 +17762,7 @@ } }, { - "id": 393, + "id": 396, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -17778,7 +17778,7 @@ ], "signatures": [ { - "id": 394, + "id": 397, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -17800,14 +17800,14 @@ "type": { "type": "reflection", "declaration": { - "id": 395, + "id": 398, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 397, + "id": 400, "name": "child", "kind": 1024, "kindString": "Property", @@ -17819,7 +17819,7 @@ "defaultValue": "..." }, { - "id": 396, + "id": 399, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -17836,8 +17836,8 @@ "title": "Properties", "kind": 1024, "children": [ - 397, - 396 + 400, + 399 ] } ] @@ -17855,7 +17855,7 @@ } }, { - "id": 373, + "id": 376, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -17871,7 +17871,7 @@ ], "signatures": [ { - "id": 374, + "id": 377, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -17887,7 +17887,7 @@ }, "parameters": [ { - "id": 375, + "id": 378, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -17895,20 +17895,20 @@ "type": { "type": "reflection", "declaration": { - "id": 376, + "id": 379, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 377, + "id": 380, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 378, + "id": 381, "name": "key", "kind": 32768, "flags": {}, @@ -17953,7 +17953,7 @@ } }, { - "id": 381, + "id": 384, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -17969,7 +17969,7 @@ ], "signatures": [ { - "id": 382, + "id": 385, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -17990,7 +17990,7 @@ } }, { - "id": 391, + "id": 394, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -18006,7 +18006,7 @@ ], "signatures": [ { - "id": 392, + "id": 395, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -18030,7 +18030,7 @@ } }, { - "id": 336, + "id": 339, "name": "off", "kind": 2048, "kindString": "Method", @@ -18046,7 +18046,7 @@ ], "signatures": [ { - "id": 337, + "id": 340, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -18062,7 +18062,7 @@ }, "parameters": [ { - "id": 338, + "id": 341, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18072,12 +18072,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 339, + "id": 342, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18087,7 +18087,7 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2619, "name": "MessageCallback" } } @@ -18108,7 +18108,7 @@ } }, { - "id": 330, + "id": 333, "name": "on", "kind": 2048, "kindString": "Method", @@ -18124,7 +18124,7 @@ ], "signatures": [ { - "id": 331, + "id": 334, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -18144,7 +18144,7 @@ }, "parameters": [ { - "id": 332, + "id": 335, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18154,12 +18154,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 333, + "id": 336, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18169,12 +18169,12 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2619, "name": "MessageCallback" } }, { - "id": 334, + "id": 337, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -18184,13 +18184,13 @@ }, "type": { "type": "reference", - "id": 2613, + "id": 2616, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 335, + "id": 338, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -18219,7 +18219,7 @@ } }, { - "id": 369, + "id": 372, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -18235,7 +18235,7 @@ ], "signatures": [ { - "id": 370, + "id": 373, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -18245,7 +18245,7 @@ }, "parameters": [ { - "id": 371, + "id": 374, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -18260,7 +18260,7 @@ "defaultValue": "false" }, { - "id": 372, + "id": 375, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -18294,7 +18294,7 @@ } }, { - "id": 383, + "id": 386, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -18310,7 +18310,7 @@ ], "signatures": [ { - "id": 384, + "id": 387, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -18347,7 +18347,7 @@ } }, { - "id": 239, + "id": 242, "name": "render", "kind": 2048, "kindString": "Method", @@ -18363,7 +18363,7 @@ ], "signatures": [ { - "id": 240, + "id": 243, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -18376,7 +18376,7 @@ "typeArguments": [ { "type": "reference", - "id": 228, + "id": 231, "name": "SearchBarEmbed" } ], @@ -18394,7 +18394,7 @@ } }, { - "id": 387, + "id": 390, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -18410,7 +18410,7 @@ ], "signatures": [ { - "id": 388, + "id": 391, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -18440,7 +18440,7 @@ } }, { - "id": 389, + "id": 392, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -18456,7 +18456,7 @@ ], "signatures": [ { - "id": 390, + "id": 393, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -18486,7 +18486,7 @@ } }, { - "id": 354, + "id": 357, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -18502,7 +18502,7 @@ ], "signatures": [ { - "id": 355, + "id": 358, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -18513,19 +18513,19 @@ }, "typeParameter": [ { - "id": 356, + "id": 359, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2016, + "id": 2019, "name": "HostEvent" } }, { - "id": 357, + "id": 360, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -18534,7 +18534,7 @@ ], "parameters": [ { - "id": 358, + "id": 361, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18548,7 +18548,7 @@ } }, { - "id": 359, + "id": 362, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -18605,7 +18605,7 @@ } }, { - "id": 360, + "id": 363, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -18621,7 +18621,7 @@ ], "signatures": [ { - "id": 361, + "id": 364, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -18632,21 +18632,21 @@ }, "typeParameter": [ { - "id": 362, + "id": 365, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2876, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 363, + "id": 366, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -18660,7 +18660,7 @@ } }, { - "id": 364, + "id": 367, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -18713,29 +18713,29 @@ "title": "Constructors", "kind": 512, "children": [ - 229 + 232 ] }, { "title": "Methods", "kind": 2048, "children": [ - 379, - 398, - 365, - 393, - 373, - 381, - 391, - 336, - 330, - 369, - 383, - 239, - 387, - 389, - 354, - 360 + 382, + 401, + 368, + 396, + 376, + 384, + 394, + 339, + 333, + 372, + 386, + 242, + 390, + 392, + 357, + 363 ] } ], @@ -18754,7 +18754,7 @@ ] }, { - "id": 52, + "id": 55, "name": "SearchEmbed", "kind": 128, "kindString": "Class", @@ -18770,7 +18770,7 @@ }, "children": [ { - "id": 53, + "id": 56, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -18784,40 +18784,40 @@ ], "signatures": [ { - "id": 54, + "id": 57, "name": "new SearchEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 55, + "id": 58, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2612, + "id": 2615, "name": "DOMSelector" } }, { - "id": 56, + "id": 59, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2283, + "id": 2286, "name": "SearchViewConfig" } } ], "type": { "type": "reference", - "id": 52, + "id": 55, "name": "SearchEmbed" }, "overwrites": { @@ -18832,7 +18832,7 @@ } }, { - "id": 206, + "id": 209, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -18848,7 +18848,7 @@ ], "signatures": [ { - "id": 207, + "id": 210, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -18878,7 +18878,7 @@ } }, { - "id": 225, + "id": 228, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -18894,7 +18894,7 @@ ], "signatures": [ { - "id": 226, + "id": 229, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -18910,7 +18910,7 @@ }, "parameters": [ { - "id": 227, + "id": 230, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -18931,7 +18931,7 @@ "typeArguments": [ { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } ], @@ -18949,7 +18949,7 @@ } }, { - "id": 72, + "id": 75, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -18965,7 +18965,7 @@ ], "signatures": [ { - "id": 73, + "id": 76, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -18981,7 +18981,7 @@ ] }, { - "id": 192, + "id": 195, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -18997,7 +18997,7 @@ ], "signatures": [ { - "id": 193, + "id": 196, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -19018,7 +19018,7 @@ } }, { - "id": 220, + "id": 223, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -19034,7 +19034,7 @@ ], "signatures": [ { - "id": 221, + "id": 224, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -19056,14 +19056,14 @@ "type": { "type": "reflection", "declaration": { - "id": 222, + "id": 225, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 224, + "id": 227, "name": "child", "kind": 1024, "kindString": "Property", @@ -19075,7 +19075,7 @@ "defaultValue": "..." }, { - "id": 223, + "id": 226, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -19092,8 +19092,8 @@ "title": "Properties", "kind": 1024, "children": [ - 224, - 223 + 227, + 226 ] } ] @@ -19111,7 +19111,7 @@ } }, { - "id": 200, + "id": 203, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -19127,7 +19127,7 @@ ], "signatures": [ { - "id": 201, + "id": 204, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -19143,7 +19143,7 @@ }, "parameters": [ { - "id": 202, + "id": 205, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -19151,20 +19151,20 @@ "type": { "type": "reflection", "declaration": { - "id": 203, + "id": 206, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 204, + "id": 207, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 205, + "id": 208, "name": "key", "kind": 32768, "flags": {}, @@ -19209,7 +19209,7 @@ } }, { - "id": 208, + "id": 211, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -19225,7 +19225,7 @@ ], "signatures": [ { - "id": 209, + "id": 212, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -19246,7 +19246,7 @@ } }, { - "id": 218, + "id": 221, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -19262,7 +19262,7 @@ ], "signatures": [ { - "id": 219, + "id": 222, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -19286,7 +19286,7 @@ } }, { - "id": 163, + "id": 166, "name": "off", "kind": 2048, "kindString": "Method", @@ -19302,7 +19302,7 @@ ], "signatures": [ { - "id": 164, + "id": 167, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -19318,7 +19318,7 @@ }, "parameters": [ { - "id": 165, + "id": 168, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19328,12 +19328,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 166, + "id": 169, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19343,7 +19343,7 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2619, "name": "MessageCallback" } } @@ -19364,7 +19364,7 @@ } }, { - "id": 157, + "id": 160, "name": "on", "kind": 2048, "kindString": "Method", @@ -19380,7 +19380,7 @@ ], "signatures": [ { - "id": 158, + "id": 161, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -19400,7 +19400,7 @@ }, "parameters": [ { - "id": 159, + "id": 162, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19410,12 +19410,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 160, + "id": 163, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19425,12 +19425,12 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2619, "name": "MessageCallback" } }, { - "id": 161, + "id": 164, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -19440,13 +19440,13 @@ }, "type": { "type": "reference", - "id": 2613, + "id": 2616, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 162, + "id": 165, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -19475,7 +19475,7 @@ } }, { - "id": 196, + "id": 199, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -19491,7 +19491,7 @@ ], "signatures": [ { - "id": 197, + "id": 200, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -19501,7 +19501,7 @@ }, "parameters": [ { - "id": 198, + "id": 201, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -19516,7 +19516,7 @@ "defaultValue": "false" }, { - "id": 199, + "id": 202, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -19550,7 +19550,7 @@ } }, { - "id": 210, + "id": 213, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -19566,7 +19566,7 @@ ], "signatures": [ { - "id": 211, + "id": 214, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -19603,7 +19603,7 @@ } }, { - "id": 74, + "id": 77, "name": "render", "kind": 2048, "kindString": "Method", @@ -19619,7 +19619,7 @@ ], "signatures": [ { - "id": 75, + "id": 78, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -19632,7 +19632,7 @@ "typeArguments": [ { "type": "reference", - "id": 52, + "id": 55, "name": "SearchEmbed" } ], @@ -19650,7 +19650,7 @@ } }, { - "id": 214, + "id": 217, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -19666,7 +19666,7 @@ ], "signatures": [ { - "id": 215, + "id": 218, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -19696,7 +19696,7 @@ } }, { - "id": 216, + "id": 219, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -19712,7 +19712,7 @@ ], "signatures": [ { - "id": 217, + "id": 220, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -19742,7 +19742,7 @@ } }, { - "id": 181, + "id": 184, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -19758,7 +19758,7 @@ ], "signatures": [ { - "id": 182, + "id": 185, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -19769,19 +19769,19 @@ }, "typeParameter": [ { - "id": 183, + "id": 186, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2016, + "id": 2019, "name": "HostEvent" } }, { - "id": 184, + "id": 187, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -19790,7 +19790,7 @@ ], "parameters": [ { - "id": 185, + "id": 188, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19804,7 +19804,7 @@ } }, { - "id": 186, + "id": 189, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -19861,7 +19861,7 @@ } }, { - "id": 187, + "id": 190, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -19877,7 +19877,7 @@ ], "signatures": [ { - "id": 188, + "id": 191, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -19888,21 +19888,21 @@ }, "typeParameter": [ { - "id": 189, + "id": 192, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2876, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 190, + "id": 193, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -19916,7 +19916,7 @@ } }, { - "id": 191, + "id": 194, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -19969,30 +19969,30 @@ "title": "Constructors", "kind": 512, "children": [ - 53 + 56 ] }, { "title": "Methods", "kind": 2048, "children": [ - 206, - 225, - 72, - 192, - 220, - 200, - 208, - 218, - 163, - 157, - 196, - 210, - 74, - 214, - 216, - 181, - 187 + 209, + 228, + 75, + 195, + 223, + 203, + 211, + 221, + 166, + 160, + 199, + 213, + 77, + 217, + 219, + 184, + 190 ] } ], @@ -20011,7 +20011,7 @@ ] }, { - "id": 1196, + "id": 1199, "name": "SpotterAgentEmbed", "kind": 128, "kindString": "Class", @@ -20035,7 +20035,7 @@ }, "children": [ { - "id": 1197, + "id": 1200, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -20049,35 +20049,35 @@ ], "signatures": [ { - "id": 1198, + "id": 1201, "name": "new SpotterAgentEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1199, + "id": 1202, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1228, + "id": 1231, "name": "SpotterAgentEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1196, + "id": 1199, "name": "SpotterAgentEmbed" } } ] }, { - "id": 1201, + "id": 1204, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -20093,14 +20093,14 @@ ], "signatures": [ { - "id": 1202, + "id": 1205, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1203, + "id": 1206, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -20120,14 +20120,14 @@ { "type": "reflection", "declaration": { - "id": 1204, + "id": 1207, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1206, + "id": 1209, "name": "container", "kind": 1024, "kindString": "Property", @@ -20138,7 +20138,7 @@ } }, { - "id": 1205, + "id": 1208, "name": "error", "kind": 1024, "kindString": "Property", @@ -20149,7 +20149,7 @@ } }, { - "id": 1207, + "id": 1210, "name": "viz", "kind": 1024, "kindString": "Property", @@ -20166,9 +20166,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1206, - 1205, - 1207 + 1209, + 1208, + 1210 ] } ] @@ -20177,14 +20177,14 @@ { "type": "reflection", "declaration": { - "id": 1208, + "id": 1211, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1209, + "id": 1212, "name": "container", "kind": 1024, "kindString": "Property", @@ -20195,7 +20195,7 @@ } }, { - "id": 1211, + "id": 1214, "name": "error", "kind": 1024, "kindString": "Property", @@ -20206,7 +20206,7 @@ } }, { - "id": 1210, + "id": 1213, "name": "viz", "kind": 1024, "kindString": "Property", @@ -20223,9 +20223,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1209, - 1211, - 1210 + 1212, + 1214, + 1213 ] } ] @@ -20240,7 +20240,7 @@ ] }, { - "id": 1212, + "id": 1215, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -20256,7 +20256,7 @@ ], "signatures": [ { - "id": 1213, + "id": 1216, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -20267,7 +20267,7 @@ }, "parameters": [ { - "id": 1214, + "id": 1217, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -20290,14 +20290,14 @@ { "type": "reflection", "declaration": { - "id": 1215, + "id": 1218, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1217, + "id": 1220, "name": "data", "kind": 1024, "kindString": "Property", @@ -20309,7 +20309,7 @@ "defaultValue": "..." }, { - "id": 1216, + "id": 1219, "name": "error", "kind": 1024, "kindString": "Property", @@ -20325,8 +20325,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1217, - 1216 + 1220, + 1219 ] } ] @@ -20335,14 +20335,14 @@ { "type": "reflection", "declaration": { - "id": 1218, + "id": 1221, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1219, + "id": 1222, "name": "data", "kind": 1024, "kindString": "Property", @@ -20350,14 +20350,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1220, + "id": 1223, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1226, + "id": 1229, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -20369,7 +20369,7 @@ "defaultValue": "..." }, { - "id": 1225, + "id": 1228, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -20381,7 +20381,7 @@ "defaultValue": "..." }, { - "id": 1221, + "id": 1224, "name": "convId", "kind": 1024, "kindString": "Property", @@ -20393,7 +20393,7 @@ "defaultValue": "..." }, { - "id": 1224, + "id": 1227, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -20405,7 +20405,7 @@ "defaultValue": "..." }, { - "id": 1222, + "id": 1225, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -20417,7 +20417,7 @@ "defaultValue": "..." }, { - "id": 1223, + "id": 1226, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -20434,12 +20434,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1226, - 1225, - 1221, + 1229, + 1228, 1224, - 1222, - 1223 + 1227, + 1225, + 1226 ] } ] @@ -20448,7 +20448,7 @@ "defaultValue": "..." }, { - "id": 1227, + "id": 1230, "name": "error", "kind": 1024, "kindString": "Property", @@ -20464,8 +20464,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1219, - 1227 + 1222, + 1230 ] } ] @@ -20485,15 +20485,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1197 + 1200 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1201, - 1212 + 1204, + 1215 ] } ], @@ -20507,13 +20507,13 @@ "extendedBy": [ { "type": "reference", - "id": 1286, + "id": 1289, "name": "BodylessConversation" } ] }, { - "id": 1317, + "id": 1320, "name": "SpotterEmbed", "kind": 128, "kindString": "Class", @@ -20537,7 +20537,7 @@ }, "children": [ { - "id": 1318, + "id": 1321, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -20551,14 +20551,14 @@ ], "signatures": [ { - "id": 1319, + "id": 1322, "name": "new SpotterEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1320, + "id": 1323, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -20569,21 +20569,21 @@ } }, { - "id": 1321, + "id": 1324, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1483, + "id": 1486, "name": "SpotterEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1317, + "id": 1320, "name": "SpotterEmbed" }, "overwrites": { @@ -20598,7 +20598,7 @@ } }, { - "id": 1461, + "id": 1464, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -20614,7 +20614,7 @@ ], "signatures": [ { - "id": 1462, + "id": 1465, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -20644,7 +20644,7 @@ } }, { - "id": 1480, + "id": 1483, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -20660,7 +20660,7 @@ ], "signatures": [ { - "id": 1481, + "id": 1484, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -20676,7 +20676,7 @@ }, "parameters": [ { - "id": 1482, + "id": 1485, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -20697,7 +20697,7 @@ "typeArguments": [ { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } ], @@ -20715,7 +20715,7 @@ } }, { - "id": 1325, + "id": 1328, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -20731,7 +20731,7 @@ ], "signatures": [ { - "id": 1326, + "id": 1329, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -20752,7 +20752,7 @@ } }, { - "id": 1475, + "id": 1478, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -20768,7 +20768,7 @@ ], "signatures": [ { - "id": 1476, + "id": 1479, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -20790,14 +20790,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1477, + "id": 1480, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1479, + "id": 1482, "name": "child", "kind": 1024, "kindString": "Property", @@ -20809,7 +20809,7 @@ "defaultValue": "..." }, { - "id": 1478, + "id": 1481, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -20826,8 +20826,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1479, - 1478 + 1482, + 1481 ] } ] @@ -20845,7 +20845,7 @@ } }, { - "id": 1455, + "id": 1458, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -20861,7 +20861,7 @@ ], "signatures": [ { - "id": 1456, + "id": 1459, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -20877,7 +20877,7 @@ }, "parameters": [ { - "id": 1457, + "id": 1460, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -20885,20 +20885,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1458, + "id": 1461, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1459, + "id": 1462, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1460, + "id": 1463, "name": "key", "kind": 32768, "flags": {}, @@ -20943,7 +20943,7 @@ } }, { - "id": 1463, + "id": 1466, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -20959,7 +20959,7 @@ ], "signatures": [ { - "id": 1464, + "id": 1467, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -20980,7 +20980,7 @@ } }, { - "id": 1473, + "id": 1476, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -20996,7 +20996,7 @@ ], "signatures": [ { - "id": 1474, + "id": 1477, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -21020,7 +21020,7 @@ } }, { - "id": 1420, + "id": 1423, "name": "off", "kind": 2048, "kindString": "Method", @@ -21036,7 +21036,7 @@ ], "signatures": [ { - "id": 1421, + "id": 1424, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -21052,7 +21052,7 @@ }, "parameters": [ { - "id": 1422, + "id": 1425, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21062,12 +21062,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 1423, + "id": 1426, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -21077,7 +21077,7 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2619, "name": "MessageCallback" } } @@ -21098,7 +21098,7 @@ } }, { - "id": 1414, + "id": 1417, "name": "on", "kind": 2048, "kindString": "Method", @@ -21114,7 +21114,7 @@ ], "signatures": [ { - "id": 1415, + "id": 1418, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -21134,7 +21134,7 @@ }, "parameters": [ { - "id": 1416, + "id": 1419, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21144,12 +21144,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 1417, + "id": 1420, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -21159,12 +21159,12 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2619, "name": "MessageCallback" } }, { - "id": 1418, + "id": 1421, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -21174,13 +21174,13 @@ }, "type": { "type": "reference", - "id": 2613, + "id": 2616, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1419, + "id": 1422, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -21209,7 +21209,7 @@ } }, { - "id": 1451, + "id": 1454, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -21225,7 +21225,7 @@ ], "signatures": [ { - "id": 1452, + "id": 1455, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -21235,7 +21235,7 @@ }, "parameters": [ { - "id": 1453, + "id": 1456, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -21250,7 +21250,7 @@ "defaultValue": "false" }, { - "id": 1454, + "id": 1457, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -21284,7 +21284,7 @@ } }, { - "id": 1465, + "id": 1468, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -21300,7 +21300,7 @@ ], "signatures": [ { - "id": 1466, + "id": 1469, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -21337,7 +21337,7 @@ } }, { - "id": 1327, + "id": 1330, "name": "render", "kind": 2048, "kindString": "Method", @@ -21353,7 +21353,7 @@ ], "signatures": [ { - "id": 1328, + "id": 1331, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -21363,7 +21363,7 @@ "typeArguments": [ { "type": "reference", - "id": 1317, + "id": 1320, "name": "SpotterEmbed" } ], @@ -21381,7 +21381,7 @@ } }, { - "id": 1469, + "id": 1472, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -21397,7 +21397,7 @@ ], "signatures": [ { - "id": 1470, + "id": 1473, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -21427,7 +21427,7 @@ } }, { - "id": 1471, + "id": 1474, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -21443,7 +21443,7 @@ ], "signatures": [ { - "id": 1472, + "id": 1475, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -21473,7 +21473,7 @@ } }, { - "id": 1438, + "id": 1441, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -21489,7 +21489,7 @@ ], "signatures": [ { - "id": 1439, + "id": 1442, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -21500,19 +21500,19 @@ }, "typeParameter": [ { - "id": 1440, + "id": 1443, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2016, + "id": 2019, "name": "HostEvent" } }, { - "id": 1441, + "id": 1444, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -21521,7 +21521,7 @@ ], "parameters": [ { - "id": 1442, + "id": 1445, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21535,7 +21535,7 @@ } }, { - "id": 1443, + "id": 1446, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -21592,7 +21592,7 @@ } }, { - "id": 1444, + "id": 1447, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -21608,7 +21608,7 @@ ], "signatures": [ { - "id": 1445, + "id": 1448, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -21619,21 +21619,21 @@ }, "typeParameter": [ { - "id": 1446, + "id": 1449, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2876, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1447, + "id": 1450, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -21647,7 +21647,7 @@ } }, { - "id": 1448, + "id": 1451, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -21700,29 +21700,29 @@ "title": "Constructors", "kind": 512, "children": [ - 1318 + 1321 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1461, - 1480, - 1325, - 1475, - 1455, - 1463, - 1473, - 1420, - 1414, - 1451, - 1465, - 1327, - 1469, - 1471, - 1438, - 1444 + 1464, + 1483, + 1328, + 1478, + 1458, + 1466, + 1476, + 1423, + 1417, + 1454, + 1468, + 1330, + 1472, + 1474, + 1441, + 1447 ] } ], @@ -21742,13 +21742,13 @@ "extendedBy": [ { "type": "reference", - "id": 1563, + "id": 1566, "name": "ConversationEmbed" } ] }, { - "id": 2500, + "id": 2503, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -21764,7 +21764,7 @@ }, "children": [ { - "id": 2538, + "id": 2541, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -21795,20 +21795,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2539, + "id": 2542, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2540, + "id": 2543, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2541, + "id": 2544, "name": "key", "kind": 32768, "flags": {}, @@ -21844,7 +21844,7 @@ } }, { - "id": 2562, + "id": 2565, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -21886,7 +21886,7 @@ } }, { - "id": 2520, + "id": 2523, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -21923,7 +21923,7 @@ } }, { - "id": 2559, + "id": 2562, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -21953,7 +21953,7 @@ ], "type": { "type": "reference", - "id": 2229, + "id": 2232, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -21962,7 +21962,7 @@ } }, { - "id": 2579, + "id": 2582, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -22000,7 +22000,7 @@ } }, { - "id": 2556, + "id": 2559, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -22041,7 +22041,7 @@ } }, { - "id": 2542, + "id": 2545, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -22070,7 +22070,7 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2632, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -22079,7 +22079,7 @@ } }, { - "id": 2521, + "id": 2524, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -22113,12 +22113,12 @@ ], "type": { "type": "reference", - "id": 2896, + "id": 2889, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2563, + "id": 2566, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -22160,7 +22160,7 @@ } }, { - "id": 2503, + "id": 2506, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -22198,7 +22198,7 @@ } }, { - "id": 2550, + "id": 2553, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -22236,7 +22236,7 @@ } }, { - "id": 2534, + "id": 2537, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -22274,7 +22274,7 @@ } }, { - "id": 2533, + "id": 2536, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -22306,7 +22306,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -22316,7 +22316,7 @@ } }, { - "id": 2519, + "id": 2522, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -22354,7 +22354,7 @@ } }, { - "id": 2546, + "id": 2549, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -22395,7 +22395,7 @@ } }, { - "id": 2573, + "id": 2576, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -22437,7 +22437,7 @@ } }, { - "id": 2578, + "id": 2581, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -22479,7 +22479,7 @@ } }, { - "id": 2564, + "id": 2567, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -22521,7 +22521,7 @@ } }, { - "id": 2504, + "id": 2507, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -22557,7 +22557,7 @@ } }, { - "id": 2516, + "id": 2519, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -22595,7 +22595,7 @@ } }, { - "id": 2547, + "id": 2550, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -22633,7 +22633,7 @@ } }, { - "id": 2560, + "id": 2563, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -22671,7 +22671,7 @@ } }, { - "id": 2561, + "id": 2564, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -22709,7 +22709,7 @@ } }, { - "id": 2549, + "id": 2552, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -22746,7 +22746,7 @@ } }, { - "id": 2530, + "id": 2533, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -22776,7 +22776,7 @@ ], "type": { "type": "reference", - "id": 2588, + "id": 2591, "name": "FrameParams" }, "inheritedFrom": { @@ -22785,7 +22785,7 @@ } }, { - "id": 2517, + "id": 2520, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -22819,7 +22819,7 @@ } }, { - "id": 2535, + "id": 2538, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -22855,7 +22855,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -22865,7 +22865,7 @@ } }, { - "id": 2568, + "id": 2571, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -22897,7 +22897,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2594, + "id": 2597, "name": "HomeLeftNavItem" } }, @@ -22907,7 +22907,7 @@ } }, { - "id": 2566, + "id": 2569, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -22939,7 +22939,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2605, + "id": 2608, "name": "HomepageModule" } }, @@ -22949,7 +22949,7 @@ } }, { - "id": 2565, + "id": 2568, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -22981,7 +22981,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2890, + "id": 2883, "name": "ListPageColumns" } }, @@ -22991,7 +22991,7 @@ } }, { - "id": 2508, + "id": 2511, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -23029,7 +23029,7 @@ } }, { - "id": 2505, + "id": 2508, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -23067,7 +23067,7 @@ } }, { - "id": 2502, + "id": 2505, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -23105,7 +23105,7 @@ } }, { - "id": 2576, + "id": 2579, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -23147,7 +23147,7 @@ } }, { - "id": 2569, + "id": 2572, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -23189,7 +23189,7 @@ } }, { - "id": 2507, + "id": 2510, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -23227,7 +23227,7 @@ } }, { - "id": 2506, + "id": 2509, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -23265,7 +23265,7 @@ } }, { - "id": 2514, + "id": 2517, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -23302,7 +23302,7 @@ } }, { - "id": 2509, + "id": 2512, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -23340,7 +23340,7 @@ } }, { - "id": 2513, + "id": 2516, "name": "hideTagFilterChips", "kind": 1024, "kindString": "Property", @@ -23374,7 +23374,7 @@ } }, { - "id": 2523, + "id": 2526, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -23400,12 +23400,12 @@ ], "type": { "type": "reference", - "id": 2848, + "id": 2841, "name": "HomePageSearchBarMode" } }, { - "id": 2543, + "id": 2546, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -23443,7 +23443,7 @@ } }, { - "id": 2581, + "id": 2584, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -23481,7 +23481,7 @@ } }, { - "id": 2582, + "id": 2585, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -23519,7 +23519,7 @@ } }, { - "id": 2574, + "id": 2577, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -23561,7 +23561,7 @@ } }, { - "id": 2572, + "id": 2575, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -23599,7 +23599,7 @@ } }, { - "id": 2525, + "id": 2528, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -23633,7 +23633,7 @@ } }, { - "id": 2522, + "id": 2525, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -23662,7 +23662,7 @@ } }, { - "id": 2526, + "id": 2529, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -23696,7 +23696,7 @@ } }, { - "id": 2524, + "id": 2527, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -23734,7 +23734,7 @@ } }, { - "id": 2527, + "id": 2530, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -23771,7 +23771,7 @@ } }, { - "id": 2528, + "id": 2531, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -23805,7 +23805,7 @@ } }, { - "id": 2552, + "id": 2555, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -23843,7 +23843,7 @@ } }, { - "id": 2580, + "id": 2583, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -23881,7 +23881,7 @@ } }, { - "id": 2537, + "id": 2540, "name": "locale", "kind": 1024, "kindString": "Property", @@ -23919,7 +23919,7 @@ } }, { - "id": 2518, + "id": 2521, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -23957,7 +23957,7 @@ } }, { - "id": 2551, + "id": 2554, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -23995,7 +23995,7 @@ } }, { - "id": 2511, + "id": 2514, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -24025,12 +24025,12 @@ ], "type": { "type": "reference", - "id": 1882, + "id": 1885, "name": "Page" } }, { - "id": 2510, + "id": 2513, "name": "path", "kind": 1024, "kindString": "Property", @@ -24064,7 +24064,7 @@ } }, { - "id": 2545, + "id": 2548, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -24102,7 +24102,7 @@ } }, { - "id": 2553, + "id": 2556, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -24140,7 +24140,7 @@ } }, { - "id": 2567, + "id": 2570, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -24172,7 +24172,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2605, + "id": 2608, "name": "HomepageModule" } }, @@ -24182,7 +24182,7 @@ } }, { - "id": 2557, + "id": 2560, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -24214,7 +24214,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1903, + "id": 1906, "name": "RuntimeFilter" } }, @@ -24224,7 +24224,7 @@ } }, { - "id": 2558, + "id": 2561, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -24256,7 +24256,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2815, "name": "RuntimeParameter" } }, @@ -24266,7 +24266,7 @@ } }, { - "id": 2555, + "id": 2558, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -24303,7 +24303,7 @@ } }, { - "id": 2571, + "id": 2574, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -24345,7 +24345,7 @@ } }, { - "id": 2577, + "id": 2580, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -24387,7 +24387,7 @@ } }, { - "id": 2570, + "id": 2573, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -24429,7 +24429,7 @@ } }, { - "id": 2575, + "id": 2578, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -24471,7 +24471,7 @@ } }, { - "id": 2501, + "id": 2504, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -24509,7 +24509,7 @@ } }, { - "id": 2512, + "id": 2515, "name": "tag", "kind": 1024, "kindString": "Property", @@ -24543,7 +24543,7 @@ } }, { - "id": 2536, + "id": 2539, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -24579,7 +24579,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -24594,78 +24594,78 @@ "title": "Properties", "kind": 1024, "children": [ - 2538, + 2541, + 2565, + 2523, 2562, - 2520, + 2582, 2559, - 2579, - 2556, - 2542, - 2521, - 2563, - 2503, - 2550, - 2534, - 2533, + 2545, + 2524, + 2566, + 2506, + 2553, + 2537, + 2536, + 2522, + 2549, + 2576, + 2581, + 2567, + 2507, 2519, - 2546, - 2573, - 2578, + 2550, + 2563, 2564, - 2504, - 2516, - 2547, - 2560, - 2561, - 2549, - 2530, - 2517, - 2535, + 2552, + 2533, + 2520, + 2538, + 2571, + 2569, 2568, - 2566, - 2565, + 2511, 2508, 2505, - 2502, - 2576, - 2569, - 2507, - 2506, - 2514, - 2509, - 2513, - 2523, - 2543, - 2581, - 2582, - 2574, + 2579, 2572, - 2525, - 2522, + 2510, + 2509, + 2517, + 2512, + 2516, 2526, - 2524, - 2527, + 2546, + 2584, + 2585, + 2577, + 2575, 2528, - 2552, - 2580, - 2537, - 2518, - 2551, - 2511, - 2510, - 2545, - 2553, - 2567, - 2557, - 2558, + 2525, + 2529, + 2527, + 2530, + 2531, 2555, - 2571, - 2577, + 2583, + 2540, + 2521, + 2554, + 2514, + 2513, + 2548, + 2556, 2570, - 2575, - 2501, - 2512, - 2536 + 2560, + 2561, + 2558, + 2574, + 2580, + 2573, + 2578, + 2504, + 2515, + 2539 ] } ], @@ -24684,7 +24684,7 @@ ] }, { - "id": 1746, + "id": 1749, "name": "AuthEventEmitter", "kind": 256, "kindString": "Interface", @@ -24700,14 +24700,14 @@ }, "children": [ { - "id": 1783, + "id": 1786, "name": "emit", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1784, + "id": 1787, "name": "emit", "kind": 4096, "kindString": "Call signature", @@ -24717,19 +24717,19 @@ }, "parameters": [ { - "id": 1785, + "id": 1788, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1745, + "id": 1748, "name": "TRIGGER_SSO_POPUP" } }, { - "id": 1786, + "id": 1789, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -24753,14 +24753,14 @@ ] }, { - "id": 1787, + "id": 1790, "name": "off", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1788, + "id": 1791, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -24770,7 +24770,7 @@ }, "parameters": [ { - "id": 1789, + "id": 1792, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24778,12 +24778,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1736, + "id": 1739, "name": "AuthStatus" } }, { - "id": 1790, + "id": 1793, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24792,21 +24792,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1791, + "id": 1794, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1792, + "id": 1795, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1793, + "id": 1796, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -24832,7 +24832,7 @@ } }, { - "id": 1794, + "id": 1797, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -24844,7 +24844,7 @@ } }, { - "id": 1795, + "id": 1798, "name": "once", "kind": 32768, "kindString": "Parameter", @@ -24860,21 +24860,21 @@ ], "type": { "type": "reference", - "id": 1746, + "id": 1749, "name": "AuthEventEmitter" } } ] }, { - "id": 1747, + "id": 1750, "name": "on", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1748, + "id": 1751, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -24884,7 +24884,7 @@ }, "parameters": [ { - "id": 1749, + "id": 1752, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24892,12 +24892,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1737, + "id": 1740, "name": "FAILURE" } }, { - "id": 1750, + "id": 1753, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24908,28 +24908,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1751, + "id": 1754, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1752, + "id": 1755, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1753, + "id": 1756, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1729, + "id": 1732, "name": "AuthFailureType" } } @@ -24946,12 +24946,12 @@ ], "type": { "type": "reference", - "id": 1746, + "id": 1749, "name": "AuthEventEmitter" } }, { - "id": 1754, + "id": 1757, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -24961,7 +24961,7 @@ }, "parameters": [ { - "id": 1755, + "id": 1758, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24972,29 +24972,29 @@ "types": [ { "type": "reference", - "id": 1738, + "id": 1741, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1741, + "id": 1744, "name": "LOGOUT" }, { "type": "reference", - "id": 1742, + "id": 1745, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1743, + "id": 1746, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1756, + "id": 1759, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25005,14 +25005,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1757, + "id": 1760, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1758, + "id": 1761, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -25029,31 +25029,31 @@ ], "type": { "type": "reference", - "id": 1746, + "id": 1749, "name": "AuthEventEmitter" } }, { - "id": 1759, + "id": 1762, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1760, + "id": 1763, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1740, + "id": 1743, "name": "SUCCESS" } }, { - "id": 1761, + "id": 1764, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25061,21 +25061,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1762, + "id": 1765, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1763, + "id": 1766, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1764, + "id": 1767, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -25098,40 +25098,40 @@ ], "type": { "type": "reference", - "id": 1746, + "id": 1749, "name": "AuthEventEmitter" } } ] }, { - "id": 1765, + "id": 1768, "name": "once", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1766, + "id": 1769, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1767, + "id": 1770, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1737, + "id": 1740, "name": "FAILURE" } }, { - "id": 1768, + "id": 1771, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25139,28 +25139,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1769, + "id": 1772, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1770, + "id": 1773, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1771, + "id": 1774, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1729, + "id": 1732, "name": "AuthFailureType" } } @@ -25177,19 +25177,19 @@ ], "type": { "type": "reference", - "id": 1746, + "id": 1749, "name": "AuthEventEmitter" } }, { - "id": 1772, + "id": 1775, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1773, + "id": 1776, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25199,29 +25199,29 @@ "types": [ { "type": "reference", - "id": 1738, + "id": 1741, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1741, + "id": 1744, "name": "LOGOUT" }, { "type": "reference", - "id": 1742, + "id": 1745, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1743, + "id": 1746, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1774, + "id": 1777, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25229,14 +25229,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1775, + "id": 1778, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1776, + "id": 1779, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -25253,31 +25253,31 @@ ], "type": { "type": "reference", - "id": 1746, + "id": 1749, "name": "AuthEventEmitter" } }, { - "id": 1777, + "id": 1780, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1778, + "id": 1781, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1740, + "id": 1743, "name": "SUCCESS" } }, { - "id": 1779, + "id": 1782, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25285,21 +25285,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1780, + "id": 1783, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1781, + "id": 1784, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1782, + "id": 1785, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -25322,21 +25322,21 @@ ], "type": { "type": "reference", - "id": 1746, + "id": 1749, "name": "AuthEventEmitter" } } ] }, { - "id": 1796, + "id": 1799, "name": "removeAllListeners", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1797, + "id": 1800, "name": "removeAllListeners", "kind": 4096, "kindString": "Call signature", @@ -25346,7 +25346,7 @@ }, "parameters": [ { - "id": 1798, + "id": 1801, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25356,14 +25356,14 @@ }, "type": { "type": "reference", - "id": 1736, + "id": 1739, "name": "AuthStatus" } } ], "type": { "type": "reference", - "id": 1746, + "id": 1749, "name": "AuthEventEmitter" } } @@ -25375,11 +25375,11 @@ "title": "Methods", "kind": 2048, "children": [ - 1783, - 1787, - 1747, - 1765, - 1796 + 1786, + 1790, + 1750, + 1768, + 1799 ] } ], @@ -25392,7 +25392,7 @@ ] }, { - "id": 1257, + "id": 1260, "name": "BodylessConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -25412,7 +25412,7 @@ }, "children": [ { - "id": 1268, + "id": 1271, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -25443,20 +25443,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1269, + "id": 1272, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1270, + "id": 1273, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1271, + "id": 1274, "name": "key", "kind": 32768, "flags": {}, @@ -25488,12 +25488,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1239, + "id": 1242, "name": "SpotterAgentEmbedViewConfig.additionalFlags" } }, { - "id": 1285, + "id": 1288, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -25530,12 +25530,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1256, + "id": 1259, "name": "SpotterAgentEmbedViewConfig.customActions" } }, { - "id": 1272, + "id": 1275, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -25564,17 +25564,17 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2632, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1243, + "id": 1246, "name": "SpotterAgentEmbedViewConfig.customizations" } }, { - "id": 1280, + "id": 1283, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -25608,12 +25608,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1251, + "id": 1254, "name": "SpotterAgentEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1264, + "id": 1267, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -25647,12 +25647,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1235, + "id": 1238, "name": "SpotterAgentEmbedViewConfig.disabledActionReason" } }, { - "id": 1263, + "id": 1266, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -25684,18 +25684,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1234, + "id": 1237, "name": "SpotterAgentEmbedViewConfig.disabledActions" } }, { - "id": 1276, + "id": 1279, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -25732,12 +25732,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1247, + "id": 1250, "name": "SpotterAgentEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1277, + "id": 1280, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -25771,12 +25771,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1248, + "id": 1251, "name": "SpotterAgentEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1279, + "id": 1282, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -25809,12 +25809,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1250, + "id": 1253, "name": "SpotterAgentEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1260, + "id": 1263, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -25844,17 +25844,17 @@ ], "type": { "type": "reference", - "id": 2588, + "id": 2591, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1231, + "id": 1234, "name": "SpotterAgentEmbedViewConfig.frameParams" } }, { - "id": 1265, + "id": 1268, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -25890,18 +25890,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1236, + "id": 1239, "name": "SpotterAgentEmbedViewConfig.hiddenActions" } }, { - "id": 1273, + "id": 1276, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -25935,12 +25935,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1244, + "id": 1247, "name": "SpotterAgentEmbedViewConfig.insertAsSibling" } }, { - "id": 1282, + "id": 1285, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -25974,12 +25974,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1253, + "id": 1256, "name": "SpotterAgentEmbedViewConfig.linkOverride" } }, { - "id": 1267, + "id": 1270, "name": "locale", "kind": 1024, "kindString": "Property", @@ -26013,12 +26013,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1238, + "id": 1241, "name": "SpotterAgentEmbedViewConfig.locale" } }, { - "id": 1281, + "id": 1284, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -26052,12 +26052,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1252, + "id": 1255, "name": "SpotterAgentEmbedViewConfig.overrideOrgId" } }, { - "id": 1275, + "id": 1278, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -26091,12 +26091,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1246, + "id": 1249, "name": "SpotterAgentEmbedViewConfig.preRenderId" } }, { - "id": 1284, + "id": 1287, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -26129,12 +26129,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1255, + "id": 1258, "name": "SpotterAgentEmbedViewConfig.showAlerts" } }, { - "id": 1266, + "id": 1269, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -26170,18 +26170,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1237, + "id": 1240, "name": "SpotterAgentEmbedViewConfig.visibleActions" } }, { - "id": 1258, + "id": 1261, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -26202,7 +26202,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1229, + "id": 1232, "name": "SpotterAgentEmbedViewConfig.worksheetId" } } @@ -26212,25 +26212,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1268, - 1285, - 1272, + 1271, + 1288, + 1275, + 1283, + 1267, + 1266, + 1279, 1280, - 1264, + 1282, 1263, + 1268, 1276, - 1277, - 1279, - 1260, - 1265, - 1273, - 1282, - 1267, - 1281, - 1275, + 1285, + 1270, 1284, - 1266, - 1258 + 1278, + 1287, + 1269, + 1261 ] } ], @@ -26244,13 +26244,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1228, + "id": 1231, "name": "SpotterAgentEmbedViewConfig" } ] }, { - "id": 1523, + "id": 1526, "name": "ConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -26270,7 +26270,7 @@ }, "children": [ { - "id": 1545, + "id": 1548, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -26301,20 +26301,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1546, + "id": 1549, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1547, + "id": 1550, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1548, + "id": 1551, "name": "key", "kind": 32768, "flags": {}, @@ -26346,12 +26346,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1505, + "id": 1508, "name": "SpotterEmbedViewConfig.additionalFlags" } }, { - "id": 1562, + "id": 1565, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -26388,12 +26388,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1522, + "id": 1525, "name": "SpotterEmbedViewConfig.customActions" } }, { - "id": 1549, + "id": 1552, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -26422,17 +26422,17 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2632, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1509, + "id": 1512, "name": "SpotterEmbedViewConfig.customizations" } }, { - "id": 1528, + "id": 1531, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -26470,12 +26470,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1488, + "id": 1491, "name": "SpotterEmbedViewConfig.dataPanelV2" } }, { - "id": 1557, + "id": 1560, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -26509,12 +26509,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1517, + "id": 1520, "name": "SpotterEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1526, + "id": 1529, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -26548,12 +26548,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1486, + "id": 1489, "name": "SpotterEmbedViewConfig.disableSourceSelection" } }, { - "id": 1541, + "id": 1544, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -26587,12 +26587,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1501, + "id": 1504, "name": "SpotterEmbedViewConfig.disabledActionReason" } }, { - "id": 1540, + "id": 1543, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -26624,18 +26624,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1500, + "id": 1503, "name": "SpotterEmbedViewConfig.disabledActions" } }, { - "id": 1553, + "id": 1556, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -26672,12 +26672,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1513, + "id": 1516, "name": "SpotterEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1535, + "id": 1538, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -26715,12 +26715,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1495, + "id": 1498, "name": "SpotterEmbedViewConfig.enablePastConversationsSidebar" } }, { - "id": 1554, + "id": 1557, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -26754,12 +26754,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1514, + "id": 1517, "name": "SpotterEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1532, + "id": 1535, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -26793,12 +26793,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1492, + "id": 1495, "name": "SpotterEmbedViewConfig.excludeRuntimeFiltersfromURL" } }, { - "id": 1534, + "id": 1537, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -26832,12 +26832,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1494, + "id": 1497, "name": "SpotterEmbedViewConfig.excludeRuntimeParametersfromURL" } }, { - "id": 1556, + "id": 1559, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -26870,12 +26870,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1516, + "id": 1519, "name": "SpotterEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1537, + "id": 1540, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -26905,17 +26905,17 @@ ], "type": { "type": "reference", - "id": 2588, + "id": 2591, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1497, + "id": 1500, "name": "SpotterEmbedViewConfig.frameParams" } }, { - "id": 1542, + "id": 1545, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -26951,18 +26951,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1502, + "id": 1505, "name": "SpotterEmbedViewConfig.hiddenActions" } }, { - "id": 1530, + "id": 1533, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -26996,12 +26996,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1490, + "id": 1493, "name": "SpotterEmbedViewConfig.hideSampleQuestions" } }, { - "id": 1527, + "id": 1530, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -27035,12 +27035,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1487, + "id": 1490, "name": "SpotterEmbedViewConfig.hideSourceSelection" } }, { - "id": 1550, + "id": 1553, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -27074,12 +27074,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1510, + "id": 1513, "name": "SpotterEmbedViewConfig.insertAsSibling" } }, { - "id": 1559, + "id": 1562, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -27113,12 +27113,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1519, + "id": 1522, "name": "SpotterEmbedViewConfig.linkOverride" } }, { - "id": 1544, + "id": 1547, "name": "locale", "kind": 1024, "kindString": "Property", @@ -27152,12 +27152,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1504, + "id": 1507, "name": "SpotterEmbedViewConfig.locale" } }, { - "id": 1558, + "id": 1561, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -27191,12 +27191,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1518, + "id": 1521, "name": "SpotterEmbedViewConfig.overrideOrgId" } }, { - "id": 1552, + "id": 1555, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -27230,12 +27230,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1512, + "id": 1515, "name": "SpotterEmbedViewConfig.preRenderId" } }, { - "id": 1531, + "id": 1534, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -27267,18 +27267,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 1903, + "id": 1906, "name": "RuntimeFilter" } }, "inheritedFrom": { "type": "reference", - "id": 1491, + "id": 1494, "name": "SpotterEmbedViewConfig.runtimeFilters" } }, { - "id": 1533, + "id": 1536, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -27310,18 +27310,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2815, "name": "RuntimeParameter" } }, "inheritedFrom": { "type": "reference", - "id": 1493, + "id": 1496, "name": "SpotterEmbedViewConfig.runtimeParameters" } }, { - "id": 1525, + "id": 1528, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -27344,12 +27344,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1485, + "id": 1488, "name": "SpotterEmbedViewConfig.searchOptions" } }, { - "id": 1561, + "id": 1564, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -27382,12 +27382,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1521, + "id": 1524, "name": "SpotterEmbedViewConfig.showAlerts" } }, { - "id": 1529, + "id": 1532, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -27421,12 +27421,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1489, + "id": 1492, "name": "SpotterEmbedViewConfig.showSpotterLimitations" } }, { - "id": 1543, + "id": 1546, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -27462,18 +27462,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1503, + "id": 1506, "name": "SpotterEmbedViewConfig.visibleActions" } }, { - "id": 1524, + "id": 1527, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -27494,7 +27494,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1484, + "id": 1487, "name": "SpotterEmbedViewConfig.worksheetId" } } @@ -27504,36 +27504,36 @@ "title": "Properties", "kind": 1024, "children": [ - 1545, - 1562, - 1549, - 1528, + 1548, + 1565, + 1552, + 1531, + 1560, + 1529, + 1544, + 1543, + 1556, + 1538, 1557, - 1526, - 1541, - 1540, - 1553, 1535, - 1554, - 1532, - 1534, - 1556, 1537, - 1542, - 1530, - 1527, - 1550, 1559, - 1544, - 1558, - 1552, - 1531, + 1540, + 1545, 1533, - 1525, + 1530, + 1553, + 1562, + 1547, 1561, - 1529, - 1543, - 1524 + 1555, + 1534, + 1536, + 1528, + 1564, + 1532, + 1546, + 1527 ] } ], @@ -27547,13 +27547,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1483, + "id": 1486, "name": "SpotterEmbedViewConfig" } ] }, { - "id": 2863, + "id": 2856, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -27568,7 +27568,7 @@ }, "children": [ { - "id": 2864, + "id": 2857, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -27585,14 +27585,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2865, + "id": 2858, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2866, + "id": 2859, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -27606,12 +27606,12 @@ ], "type": { "type": "reference", - "id": 2860, + "id": 2853, "name": "VizPoint" } }, { - "id": 2867, + "id": 2860, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -27627,7 +27627,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2860, + "id": 2853, "name": "VizPoint" } } @@ -27638,8 +27638,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2866, - 2867 + 2859, + 2860 ] } ] @@ -27647,7 +27647,7 @@ } }, { - "id": 2868, + "id": 2861, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -27662,14 +27662,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2869, + "id": 2862, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2877, + "id": 2870, "name": "columns", "kind": 1024, "kindString": "Property", @@ -27690,7 +27690,7 @@ } }, { - "id": 2878, + "id": 2871, "name": "data", "kind": 1024, "kindString": "Property", @@ -27711,7 +27711,7 @@ } }, { - "id": 2871, + "id": 2864, "name": "id", "kind": 1024, "kindString": "Property", @@ -27729,7 +27729,7 @@ } }, { - "id": 2870, + "id": 2863, "name": "name", "kind": 1024, "kindString": "Property", @@ -27747,7 +27747,7 @@ } }, { - "id": 2872, + "id": 2865, "name": "sources", "kind": 1024, "kindString": "Property", @@ -27762,14 +27762,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2873, + "id": 2866, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2874, + "id": 2867, "name": "header", "kind": 1024, "kindString": "Property", @@ -27784,14 +27784,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2875, + "id": 2868, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2876, + "id": 2869, "name": "guid", "kind": 1024, "kindString": "Property", @@ -27814,7 +27814,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2876 + 2869 ] } ] @@ -27827,7 +27827,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2874 + 2867 ] } ] @@ -27840,23 +27840,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2877, - 2878, - 2871, 2870, - 2872 + 2871, + 2864, + 2863, + 2865 ] } ], "indexSignature": { - "id": 2879, + "id": 2872, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2880, + "id": 2873, "name": "key", "kind": 32768, "flags": {}, @@ -27875,7 +27875,7 @@ } }, { - "id": 2881, + "id": 2874, "name": "session", "kind": 1024, "kindString": "Property", @@ -27889,12 +27889,12 @@ ], "type": { "type": "reference", - "id": 1872, + "id": 1875, "name": "SessionInterface" } }, { - "id": 2882, + "id": 2875, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -27919,10 +27919,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2864, - 2868, - 2881, - 2882 + 2857, + 2861, + 2874, + 2875 ] } ], @@ -27935,7 +27935,7 @@ ] }, { - "id": 2651, + "id": 2654, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -27945,7 +27945,7 @@ }, "children": [ { - "id": 2705, + "id": 2708, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -27968,7 +27968,7 @@ } }, { - "id": 2704, + "id": 2707, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -27991,7 +27991,7 @@ } }, { - "id": 2674, + "id": 2677, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -28014,7 +28014,7 @@ } }, { - "id": 2675, + "id": 2678, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -28037,7 +28037,7 @@ } }, { - "id": 2677, + "id": 2680, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -28060,7 +28060,7 @@ } }, { - "id": 2676, + "id": 2679, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -28083,7 +28083,7 @@ } }, { - "id": 2656, + "id": 2659, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -28106,7 +28106,7 @@ } }, { - "id": 2717, + "id": 2720, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -28129,7 +28129,7 @@ } }, { - "id": 2718, + "id": 2721, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -28152,7 +28152,7 @@ } }, { - "id": 2715, + "id": 2718, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -28175,7 +28175,7 @@ } }, { - "id": 2716, + "id": 2719, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -28198,7 +28198,7 @@ } }, { - "id": 2679, + "id": 2682, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -28221,7 +28221,7 @@ } }, { - "id": 2684, + "id": 2687, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -28244,7 +28244,7 @@ } }, { - "id": 2681, + "id": 2684, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -28267,7 +28267,7 @@ } }, { - "id": 2683, + "id": 2686, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -28290,7 +28290,7 @@ } }, { - "id": 2682, + "id": 2685, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -28313,7 +28313,7 @@ } }, { - "id": 2680, + "id": 2683, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -28336,7 +28336,7 @@ } }, { - "id": 2689, + "id": 2692, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -28359,7 +28359,7 @@ } }, { - "id": 2686, + "id": 2689, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -28382,7 +28382,7 @@ } }, { - "id": 2688, + "id": 2691, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -28405,7 +28405,7 @@ } }, { - "id": 2687, + "id": 2690, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -28428,7 +28428,7 @@ } }, { - "id": 2685, + "id": 2688, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -28451,7 +28451,7 @@ } }, { - "id": 2693, + "id": 2696, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -28474,7 +28474,7 @@ } }, { - "id": 2692, + "id": 2695, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -28497,7 +28497,7 @@ } }, { - "id": 2691, + "id": 2694, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -28520,7 +28520,7 @@ } }, { - "id": 2690, + "id": 2693, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -28543,7 +28543,7 @@ } }, { - "id": 2678, + "id": 2681, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -28566,7 +28566,7 @@ } }, { - "id": 2821, + "id": 2814, "name": "--ts-var-cca-modal-summary-header-background", "kind": 1024, "kindString": "Property", @@ -28579,7 +28579,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 907, + "line": 849, "character": 4 } ], @@ -28589,7 +28589,7 @@ } }, { - "id": 2816, + "id": 2809, "name": "--ts-var-change-analysis-insights-background", "kind": 1024, "kindString": "Property", @@ -28602,7 +28602,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 882, + "line": 824, "character": 4 } ], @@ -28612,7 +28612,7 @@ } }, { - "id": 2811, + "id": 2804, "name": "--ts-var-chart-heatmap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28625,7 +28625,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 857, + "line": 799, "character": 4 } ], @@ -28635,7 +28635,7 @@ } }, { - "id": 2810, + "id": 2803, "name": "--ts-var-chart-heatmap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28648,7 +28648,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 852, + "line": 794, "character": 4 } ], @@ -28658,7 +28658,7 @@ } }, { - "id": 2813, + "id": 2806, "name": "--ts-var-chart-treemap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28671,7 +28671,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 867, + "line": 809, "character": 4 } ], @@ -28681,7 +28681,7 @@ } }, { - "id": 2812, + "id": 2805, "name": "--ts-var-chart-treemap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28694,7 +28694,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 862, + "line": 804, "character": 4 } ], @@ -28704,7 +28704,7 @@ } }, { - "id": 2740, + "id": 2743, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -28727,7 +28727,7 @@ } }, { - "id": 2743, + "id": 2746, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -28750,7 +28750,7 @@ } }, { - "id": 2738, + "id": 2741, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -28773,7 +28773,7 @@ } }, { - "id": 2741, + "id": 2744, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -28796,7 +28796,7 @@ } }, { - "id": 2742, + "id": 2745, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -28819,7 +28819,7 @@ } }, { - "id": 2737, + "id": 2740, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -28842,7 +28842,7 @@ } }, { - "id": 2739, + "id": 2742, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -28865,7 +28865,7 @@ } }, { - "id": 2710, + "id": 2713, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -28888,7 +28888,7 @@ } }, { - "id": 2709, + "id": 2712, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -28911,7 +28911,7 @@ } }, { - "id": 2712, + "id": 2715, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -28934,7 +28934,7 @@ } }, { - "id": 2711, + "id": 2714, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -28957,7 +28957,7 @@ } }, { - "id": 2708, + "id": 2711, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -28980,7 +28980,7 @@ } }, { - "id": 2706, + "id": 2709, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -29003,7 +29003,7 @@ } }, { - "id": 2707, + "id": 2710, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -29026,7 +29026,7 @@ } }, { - "id": 2713, + "id": 2716, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -29049,7 +29049,7 @@ } }, { - "id": 2714, + "id": 2717, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -29072,7 +29072,7 @@ } }, { - "id": 2725, + "id": 2728, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -29095,7 +29095,7 @@ } }, { - "id": 2726, + "id": 2729, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -29118,7 +29118,7 @@ } }, { - "id": 2729, + "id": 2732, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -29141,7 +29141,7 @@ } }, { - "id": 2727, + "id": 2730, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -29164,7 +29164,7 @@ } }, { - "id": 2728, + "id": 2731, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -29187,7 +29187,7 @@ } }, { - "id": 2736, + "id": 2739, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -29210,7 +29210,7 @@ } }, { - "id": 2735, + "id": 2738, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -29233,7 +29233,7 @@ } }, { - "id": 2734, + "id": 2737, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -29256,7 +29256,7 @@ } }, { - "id": 2733, + "id": 2736, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -29279,7 +29279,7 @@ } }, { - "id": 2809, + "id": 2802, "name": "--ts-var-kpi-analyze-text-color", "kind": 1024, "kindString": "Property", @@ -29292,7 +29292,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 847, + "line": 789, "character": 4 } ], @@ -29302,7 +29302,7 @@ } }, { - "id": 2808, + "id": 2801, "name": "--ts-var-kpi-comparison-color", "kind": 1024, "kindString": "Property", @@ -29315,7 +29315,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 842, + "line": 784, "character": 4 } ], @@ -29325,7 +29325,7 @@ } }, { - "id": 2807, + "id": 2800, "name": "--ts-var-kpi-hero-color", "kind": 1024, "kindString": "Property", @@ -29338,7 +29338,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 837, + "line": 779, "character": 4 } ], @@ -29348,7 +29348,7 @@ } }, { - "id": 2815, + "id": 2808, "name": "--ts-var-kpi-negative-change-color", "kind": 1024, "kindString": "Property", @@ -29361,7 +29361,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 877, + "line": 819, "character": 4 } ], @@ -29371,7 +29371,7 @@ } }, { - "id": 2814, + "id": 2807, "name": "--ts-var-kpi-positive-change-color", "kind": 1024, "kindString": "Property", @@ -29384,7 +29384,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 872, + "line": 814, "character": 4 } ], @@ -29394,7 +29394,7 @@ } }, { - "id": 2731, + "id": 2734, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -29417,7 +29417,7 @@ } }, { - "id": 2730, + "id": 2733, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -29440,7 +29440,7 @@ } }, { - "id": 2766, + "id": 2761, "name": "--ts-var-liveboard-answer-viz-padding", "kind": 1024, "kindString": "Property", @@ -29453,7 +29453,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 610, + "line": 562, "character": 4 } ], @@ -29463,7 +29463,7 @@ } }, { - "id": 2779, + "id": 2774, "name": "--ts-var-liveboard-chip--active-background", "kind": 1024, "kindString": "Property", @@ -29477,7 +29477,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 697, + "line": 649, "character": 4 } ], @@ -29487,7 +29487,7 @@ } }, { - "id": 2778, + "id": 2773, "name": "--ts-var-liveboard-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -29501,7 +29501,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 690, + "line": 642, "character": 4 } ], @@ -29511,7 +29511,7 @@ } }, { - "id": 2776, + "id": 2771, "name": "--ts-var-liveboard-chip-background", "kind": 1024, "kindString": "Property", @@ -29525,7 +29525,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 676, + "line": 628, "character": 4 } ], @@ -29535,7 +29535,7 @@ } }, { - "id": 2777, + "id": 2772, "name": "--ts-var-liveboard-chip-color", "kind": 1024, "kindString": "Property", @@ -29549,7 +29549,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 683, + "line": 635, "character": 4 } ], @@ -29559,7 +29559,7 @@ } }, { - "id": 2784, + "id": 2779, "name": "--ts-var-liveboard-cross-filter-layout-background", "kind": 1024, "kindString": "Property", @@ -29572,7 +29572,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 722, + "line": 674, "character": 4 } ], @@ -29582,7 +29582,7 @@ } }, { - "id": 2782, + "id": 2777, "name": "--ts-var-liveboard-dual-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -29595,7 +29595,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 712, + "line": 664, "character": 4 } ], @@ -29605,7 +29605,7 @@ } }, { - "id": 2781, + "id": 2776, "name": "--ts-var-liveboard-edit-bar-background", "kind": 1024, "kindString": "Property", @@ -29618,7 +29618,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 707, + "line": 659, "character": 4 } ], @@ -29628,7 +29628,7 @@ } }, { - "id": 2767, + "id": 2762, "name": "--ts-var-liveboard-group-background", "kind": 1024, "kindString": "Property", @@ -29642,7 +29642,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 617, + "line": 569, "character": 4 } ], @@ -29652,7 +29652,7 @@ } }, { - "id": 2768, + "id": 2763, "name": "--ts-var-liveboard-group-border-color", "kind": 1024, "kindString": "Property", @@ -29666,7 +29666,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 624, + "line": 576, "character": 4 } ], @@ -29676,7 +29676,7 @@ } }, { - "id": 2772, + "id": 2767, "name": "--ts-var-liveboard-group-description-font-color", "kind": 1024, "kindString": "Property", @@ -29690,31 +29690,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 648, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2762, - "name": "--ts-var-liveboard-group-description-font-size", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Font size of the description of the groups in the Liveboard.", - "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 584, + "line": 600, "character": 4 } ], @@ -29724,31 +29700,7 @@ } }, { - "id": 2763, - "name": "--ts-var-liveboard-group-description-font-weight", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Font weight of the description of the groups in the Liveboard.", - "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 591, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2756, + "id": 2755, "name": "--ts-var-liveboard-group-padding", "kind": 1024, "kindString": "Property", @@ -29762,7 +29714,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 542, + "line": 522, "character": 4 } ], @@ -29772,7 +29724,7 @@ } }, { - "id": 2775, + "id": 2770, "name": "--ts-var-liveboard-group-tile-background", "kind": 1024, "kindString": "Property", @@ -29786,7 +29738,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 669, + "line": 621, "character": 4 } ], @@ -29796,31 +29748,7 @@ } }, { - "id": 2764, - "name": "--ts-var-liveboard-group-tile-border", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Border of the group tiles in the Liveboard.", - "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 598, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2774, + "id": 2769, "name": "--ts-var-liveboard-group-tile-description-font-color", "kind": 1024, "kindString": "Property", @@ -29834,7 +29762,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 662, + "line": 614, "character": 4 } ], @@ -29844,7 +29772,7 @@ } }, { - "id": 2765, + "id": 2760, "name": "--ts-var-liveboard-group-tile-padding", "kind": 1024, "kindString": "Property", @@ -29858,7 +29786,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 605, + "line": 557, "character": 4 } ], @@ -29868,7 +29796,7 @@ } }, { - "id": 2773, + "id": 2768, "name": "--ts-var-liveboard-group-tile-title-font-color", "kind": 1024, "kindString": "Property", @@ -29882,7 +29810,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 655, + "line": 607, "character": 4 } ], @@ -29892,7 +29820,7 @@ } }, { - "id": 2760, + "id": 2758, "name": "--ts-var-liveboard-group-tile-title-font-size", "kind": 1024, "kindString": "Property", @@ -29906,7 +29834,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 570, + "line": 543, "character": 4 } ], @@ -29916,7 +29844,7 @@ } }, { - "id": 2761, + "id": 2759, "name": "--ts-var-liveboard-group-tile-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29930,7 +29858,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 577, + "line": 550, "character": 4 } ], @@ -29940,7 +29868,7 @@ } }, { - "id": 2771, + "id": 2766, "name": "--ts-var-liveboard-group-title-font-color", "kind": 1024, "kindString": "Property", @@ -29954,7 +29882,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 641, + "line": 593, "character": 4 } ], @@ -29964,7 +29892,7 @@ } }, { - "id": 2758, + "id": 2756, "name": "--ts-var-liveboard-group-title-font-size", "kind": 1024, "kindString": "Property", @@ -29978,7 +29906,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 556, + "line": 529, "character": 4 } ], @@ -29988,7 +29916,7 @@ } }, { - "id": 2759, + "id": 2757, "name": "--ts-var-liveboard-group-title-font-weight", "kind": 1024, "kindString": "Property", @@ -30002,7 +29930,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 563, + "line": 536, "character": 4 } ], @@ -30012,31 +29940,7 @@ } }, { - "id": 2757, - "name": "--ts-var-liveboard-group-title-padding", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Padding of the title of the groups in the Liveboard.", - "text": "Please enable the Liveboard styling and grouping feature in your ThoughtSpot instance and then set the isLiveboardStylingAndGrouping SDK flag to true to start modifying this CSS variable.\n" - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 549, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2800, + "id": 2793, "name": "--ts-var-liveboard-header-action-button-active-color", "kind": 1024, "kindString": "Property", @@ -30049,7 +29953,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 802, + "line": 744, "character": 4 } ], @@ -30059,7 +29963,7 @@ } }, { - "id": 2797, + "id": 2790, "name": "--ts-var-liveboard-header-action-button-background", "kind": 1024, "kindString": "Property", @@ -30072,7 +29976,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 787, + "line": 729, "character": 4 } ], @@ -30082,7 +29986,7 @@ } }, { - "id": 2798, + "id": 2791, "name": "--ts-var-liveboard-header-action-button-font-color", "kind": 1024, "kindString": "Property", @@ -30095,7 +29999,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 792, + "line": 734, "character": 4 } ], @@ -30105,7 +30009,7 @@ } }, { - "id": 2799, + "id": 2792, "name": "--ts-var-liveboard-header-action-button-hover-color", "kind": 1024, "kindString": "Property", @@ -30118,7 +30022,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 797, + "line": 739, "character": 4 } ], @@ -30141,7 +30045,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 500, + "line": 485, "character": 4 } ], @@ -30151,7 +30055,7 @@ } }, { - "id": 2806, + "id": 2799, "name": "--ts-var-liveboard-header-badge-active-color", "kind": 1024, "kindString": "Property", @@ -30164,7 +30068,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 832, + "line": 774, "character": 4 } ], @@ -30174,7 +30078,7 @@ } }, { - "id": 2801, + "id": 2794, "name": "--ts-var-liveboard-header-badge-background", "kind": 1024, "kindString": "Property", @@ -30187,7 +30091,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 807, + "line": 749, "character": 4 } ], @@ -30197,7 +30101,7 @@ } }, { - "id": 2802, + "id": 2795, "name": "--ts-var-liveboard-header-badge-font-color", "kind": 1024, "kindString": "Property", @@ -30210,7 +30114,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 812, + "line": 754, "character": 4 } ], @@ -30220,7 +30124,7 @@ } }, { - "id": 2805, + "id": 2798, "name": "--ts-var-liveboard-header-badge-hover-color", "kind": 1024, "kindString": "Property", @@ -30233,7 +30137,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 827, + "line": 769, "character": 4 } ], @@ -30243,7 +30147,7 @@ } }, { - "id": 2803, + "id": 2796, "name": "--ts-var-liveboard-header-badge-modified-background", "kind": 1024, "kindString": "Property", @@ -30256,7 +30160,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 817, + "line": 759, "character": 4 } ], @@ -30266,7 +30170,7 @@ } }, { - "id": 2804, + "id": 2797, "name": "--ts-var-liveboard-header-badge-modified-font-color", "kind": 1024, "kindString": "Property", @@ -30279,7 +30183,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 822, + "line": 764, "character": 4 } ], @@ -30289,7 +30193,7 @@ } }, { - "id": 2750, + "id": 2749, "name": "--ts-var-liveboard-header-font-color", "kind": 1024, "kindString": "Property", @@ -30299,75 +30203,6 @@ "comment": { "shortText": "Font color of the header in the Liveboard." }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 510, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2749, - "name": "--ts-var-liveboard-header-fontsize", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Font size of the header in the Liveboard." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 505, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2745, - "name": "--ts-var-liveboard-layout-background", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Background color of the layout in the Liveboard." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 485, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2746, - "name": "--ts-var-liveboard-layout-title-color", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Font color of the title of the layout in the Liveboard." - }, "sources": [ { "fileName": "css-variables.ts", @@ -30382,19 +30217,19 @@ }, { "id": 2747, - "name": "--ts-var-liveboard-layout-title-fontsize", + "name": "--ts-var-liveboard-layout-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font size of the title of the layout in the Liveboard." + "shortText": "Background color of the layout in the Liveboard." }, "sources": [ { "fileName": "css-variables.ts", - "line": 495, + "line": 480, "character": 4 } ], @@ -30404,7 +30239,7 @@ } }, { - "id": 2770, + "id": 2765, "name": "--ts-var-liveboard-notetitle-body-font-color", "kind": 1024, "kindString": "Property", @@ -30417,7 +30252,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 634, + "line": 586, "character": 4 } ], @@ -30427,7 +30262,7 @@ } }, { - "id": 2769, + "id": 2764, "name": "--ts-var-liveboard-notetitle-heading-font-color", "kind": 1024, "kindString": "Property", @@ -30440,7 +30275,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 629, + "line": 581, "character": 4 } ], @@ -30450,7 +30285,7 @@ } }, { - "id": 2783, + "id": 2778, "name": "--ts-var-liveboard-single-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -30463,7 +30298,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 717, + "line": 669, "character": 4 } ], @@ -30473,7 +30308,7 @@ } }, { - "id": 2785, + "id": 2780, "name": "--ts-var-liveboard-tab-active-border-color", "kind": 1024, "kindString": "Property", @@ -30486,7 +30321,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 727, + "line": 679, "character": 4 } ], @@ -30496,7 +30331,7 @@ } }, { - "id": 2786, + "id": 2781, "name": "--ts-var-liveboard-tab-hover-color", "kind": 1024, "kindString": "Property", @@ -30509,7 +30344,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 732, + "line": 684, "character": 4 } ], @@ -30519,7 +30354,7 @@ } }, { - "id": 2752, + "id": 2751, "name": "--ts-var-liveboard-tile-background", "kind": 1024, "kindString": "Property", @@ -30532,7 +30367,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 520, + "line": 500, "character": 4 } ], @@ -30542,7 +30377,7 @@ } }, { - "id": 2751, + "id": 2750, "name": "--ts-var-liveboard-tile-border-color", "kind": 1024, "kindString": "Property", @@ -30555,7 +30390,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 515, + "line": 495, "character": 4 } ], @@ -30565,7 +30400,7 @@ } }, { - "id": 2753, + "id": 2752, "name": "--ts-var-liveboard-tile-border-radius", "kind": 1024, "kindString": "Property", @@ -30578,53 +30413,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 525, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2789, - "name": "--ts-var-liveboard-tile-description-font-weight", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Font weight of the description of the tiles in the Liveboard." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 747, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2790, - "name": "--ts-var-liveboard-tile-description-opacity", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Opacity of the description of the tiles in the Liveboard." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 752, + "line": 505, "character": 4 } ], @@ -30634,7 +30423,7 @@ } }, { - "id": 2754, + "id": 2753, "name": "--ts-var-liveboard-tile-padding", "kind": 1024, "kindString": "Property", @@ -30647,7 +30436,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 530, + "line": 510, "character": 4 } ], @@ -30657,7 +30446,7 @@ } }, { - "id": 2755, + "id": 2754, "name": "--ts-var-liveboard-tile-table-header-background", "kind": 1024, "kindString": "Property", @@ -30670,7 +30459,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 535, + "line": 515, "character": 4 } ], @@ -30680,7 +30469,7 @@ } }, { - "id": 2787, + "id": 2782, "name": "--ts-var-liveboard-tile-title-fontsize", "kind": 1024, "kindString": "Property", @@ -30693,7 +30482,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 737, + "line": 689, "character": 4 } ], @@ -30703,7 +30492,7 @@ } }, { - "id": 2788, + "id": 2783, "name": "--ts-var-liveboard-tile-title-fontweight", "kind": 1024, "kindString": "Property", @@ -30716,7 +30505,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 742, + "line": 694, "character": 4 } ], @@ -30726,7 +30515,7 @@ } }, { - "id": 2723, + "id": 2726, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -30749,7 +30538,7 @@ } }, { - "id": 2720, + "id": 2723, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -30772,7 +30561,7 @@ } }, { - "id": 2719, + "id": 2722, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -30795,7 +30584,7 @@ } }, { - "id": 2721, + "id": 2724, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -30818,7 +30607,7 @@ } }, { - "id": 2724, + "id": 2727, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -30841,7 +30630,7 @@ } }, { - "id": 2722, + "id": 2725, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -30864,7 +30653,7 @@ } }, { - "id": 2657, + "id": 2660, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -30887,7 +30676,7 @@ } }, { - "id": 2658, + "id": 2661, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -30910,7 +30699,7 @@ } }, { - "id": 2795, + "id": 2788, "name": "--ts-var-parameter-chip-active-background", "kind": 1024, "kindString": "Property", @@ -30923,7 +30712,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 777, + "line": 719, "character": 4 } ], @@ -30933,7 +30722,7 @@ } }, { - "id": 2796, + "id": 2789, "name": "--ts-var-parameter-chip-active-text-color", "kind": 1024, "kindString": "Property", @@ -30946,7 +30735,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 782, + "line": 724, "character": 4 } ], @@ -30956,7 +30745,7 @@ } }, { - "id": 2791, + "id": 2784, "name": "--ts-var-parameter-chip-background", "kind": 1024, "kindString": "Property", @@ -30969,7 +30758,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 757, + "line": 699, "character": 4 } ], @@ -30979,7 +30768,7 @@ } }, { - "id": 2793, + "id": 2786, "name": "--ts-var-parameter-chip-hover-background", "kind": 1024, "kindString": "Property", @@ -30992,7 +30781,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 767, + "line": 709, "character": 4 } ], @@ -31002,7 +30791,7 @@ } }, { - "id": 2794, + "id": 2787, "name": "--ts-var-parameter-chip-hover-text-color", "kind": 1024, "kindString": "Property", @@ -31015,7 +30804,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 772, + "line": 714, "character": 4 } ], @@ -31025,7 +30814,7 @@ } }, { - "id": 2792, + "id": 2785, "name": "--ts-var-parameter-chip-text-color", "kind": 1024, "kindString": "Property", @@ -31038,7 +30827,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 762, + "line": 704, "character": 4 } ], @@ -31048,7 +30837,7 @@ } }, { - "id": 2652, + "id": 2655, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -31071,7 +30860,7 @@ } }, { - "id": 2653, + "id": 2656, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -31094,7 +30883,7 @@ } }, { - "id": 2654, + "id": 2657, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -31117,7 +30906,7 @@ } }, { - "id": 2655, + "id": 2658, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -31140,7 +30929,7 @@ } }, { - "id": 2666, + "id": 2669, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -31163,7 +30952,7 @@ } }, { - "id": 2670, + "id": 2673, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -31186,7 +30975,7 @@ } }, { - "id": 2671, + "id": 2674, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -31209,7 +30998,7 @@ } }, { - "id": 2669, + "id": 2672, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -31232,7 +31021,7 @@ } }, { - "id": 2665, + "id": 2668, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -31255,7 +31044,7 @@ } }, { - "id": 2668, + "id": 2671, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -31278,7 +31067,7 @@ } }, { - "id": 2662, + "id": 2665, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -31301,7 +31090,7 @@ } }, { - "id": 2663, + "id": 2666, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -31324,7 +31113,7 @@ } }, { - "id": 2664, + "id": 2667, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -31347,7 +31136,7 @@ } }, { - "id": 2659, + "id": 2662, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -31370,7 +31159,7 @@ } }, { - "id": 2660, + "id": 2663, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -31393,7 +31182,7 @@ } }, { - "id": 2661, + "id": 2664, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -31416,7 +31205,7 @@ } }, { - "id": 2667, + "id": 2670, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -31439,7 +31228,7 @@ } }, { - "id": 2732, + "id": 2735, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -31462,7 +31251,7 @@ } }, { - "id": 2780, + "id": 2775, "name": "--ts-var-side-panel-width", "kind": 1024, "kindString": "Property", @@ -31475,7 +31264,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 702, + "line": 654, "character": 4 } ], @@ -31485,7 +31274,7 @@ } }, { - "id": 2820, + "id": 2813, "name": "--ts-var-spotiq-analyze-crosscorrelation-card-background", "kind": 1024, "kindString": "Property", @@ -31498,7 +31287,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 902, + "line": 844, "character": 4 } ], @@ -31508,7 +31297,7 @@ } }, { - "id": 2817, + "id": 2810, "name": "--ts-var-spotiq-analyze-forecasting-card-background", "kind": 1024, "kindString": "Property", @@ -31521,7 +31310,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 887, + "line": 829, "character": 4 } ], @@ -31531,7 +31320,7 @@ } }, { - "id": 2818, + "id": 2811, "name": "--ts-var-spotiq-analyze-outlier-card-background", "kind": 1024, "kindString": "Property", @@ -31544,7 +31333,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 892, + "line": 834, "character": 4 } ], @@ -31554,7 +31343,7 @@ } }, { - "id": 2819, + "id": 2812, "name": "--ts-var-spotiq-analyze-trend-card-background", "kind": 1024, "kindString": "Property", @@ -31567,7 +31356,7 @@ "sources": [ { "fileName": "css-variables.ts", - "line": 897, + "line": 839, "character": 4 } ], @@ -31577,7 +31366,7 @@ } }, { - "id": 2672, + "id": 2675, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -31600,7 +31389,7 @@ } }, { - "id": 2673, + "id": 2676, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -31623,7 +31412,7 @@ } }, { - "id": 2702, + "id": 2705, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -31646,7 +31435,7 @@ } }, { - "id": 2700, + "id": 2703, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -31669,7 +31458,7 @@ } }, { - "id": 2701, + "id": 2704, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -31692,7 +31481,7 @@ } }, { - "id": 2697, + "id": 2700, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -31715,7 +31504,7 @@ } }, { - "id": 2698, + "id": 2701, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -31738,7 +31527,7 @@ } }, { - "id": 2699, + "id": 2702, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -31761,7 +31550,7 @@ } }, { - "id": 2703, + "id": 2706, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -31784,30 +31573,7 @@ } }, { - "id": 2744, - "name": "--ts-var-viz-tile-height", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Height of the tiles in the Liveboard." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 480, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2694, + "id": 2697, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -31830,7 +31596,7 @@ } }, { - "id": 2695, + "id": 2698, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -31853,7 +31619,7 @@ } }, { - "id": 2696, + "id": 2699, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -31881,176 +31647,166 @@ "title": "Properties", "kind": 1024, "children": [ - 2705, - 2704, - 2674, - 2675, + 2708, + 2707, 2677, - 2676, - 2656, - 2717, - 2718, - 2715, - 2716, + 2678, + 2680, 2679, - 2684, - 2681, - 2683, + 2659, + 2720, + 2721, + 2718, + 2719, 2682, - 2680, - 2689, - 2686, - 2688, 2687, + 2684, + 2686, 2685, - 2693, + 2683, 2692, + 2689, 2691, 2690, - 2678, - 2821, - 2816, - 2811, - 2810, - 2813, - 2812, - 2740, + 2688, + 2696, + 2695, + 2694, + 2693, + 2681, + 2814, + 2809, + 2804, + 2803, + 2806, + 2805, 2743, - 2738, + 2746, 2741, + 2744, + 2745, + 2740, 2742, - 2737, - 2739, - 2710, - 2709, - 2712, - 2711, - 2708, - 2706, - 2707, 2713, + 2712, + 2715, 2714, - 2725, - 2726, - 2729, - 2727, + 2711, + 2709, + 2710, + 2716, + 2717, 2728, + 2729, + 2732, + 2730, + 2731, + 2739, + 2738, + 2737, 2736, - 2735, - 2734, - 2733, - 2809, + 2802, + 2801, + 2800, 2808, 2807, - 2815, - 2814, - 2731, - 2730, - 2766, + 2734, + 2733, + 2761, + 2774, + 2773, + 2771, + 2772, 2779, - 2778, - 2776, 2777, - 2784, - 2782, - 2781, - 2767, - 2768, - 2772, + 2776, 2762, 2763, - 2756, - 2775, - 2764, - 2774, - 2765, - 2773, + 2767, + 2755, + 2770, + 2769, 2760, - 2761, - 2771, + 2768, 2758, 2759, + 2766, + 2756, 2757, - 2800, - 2797, - 2798, - 2799, + 2793, + 2790, + 2791, + 2792, 2748, - 2806, - 2801, - 2802, - 2805, - 2803, - 2804, - 2750, + 2799, + 2794, + 2795, + 2798, + 2796, + 2797, 2749, - 2745, - 2746, 2747, - 2770, - 2769, - 2783, - 2785, - 2786, - 2752, + 2765, + 2764, + 2778, + 2780, + 2781, 2751, + 2750, + 2752, 2753, - 2789, - 2790, 2754, - 2755, - 2787, - 2788, + 2782, + 2783, + 2726, 2723, - 2720, - 2719, - 2721, - 2724, 2722, + 2724, + 2727, + 2725, + 2660, + 2661, + 2788, + 2789, + 2784, + 2786, + 2787, + 2785, + 2655, + 2656, 2657, 2658, - 2795, - 2796, - 2791, - 2793, - 2794, - 2792, - 2652, - 2653, - 2654, - 2655, - 2666, - 2670, - 2671, 2669, - 2665, + 2673, + 2674, + 2672, 2668, + 2671, + 2665, + 2666, + 2667, 2662, 2663, 2664, - 2659, - 2660, - 2661, - 2667, - 2732, - 2780, - 2820, - 2817, - 2818, - 2819, - 2672, - 2673, - 2702, + 2670, + 2735, + 2775, + 2813, + 2810, + 2811, + 2812, + 2675, + 2676, + 2705, + 2703, + 2704, 2700, 2701, + 2702, + 2706, 2697, 2698, - 2699, - 2703, - 2744, - 2694, - 2695, - 2696 + 2699 ] } ], @@ -32063,7 +31819,7 @@ ] }, { - "id": 2639, + "id": 2642, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -32073,7 +31829,7 @@ }, "children": [ { - "id": 2641, + "id": 2644, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -32089,12 +31845,12 @@ ], "type": { "type": "reference", - "id": 2642, + "id": 2645, "name": "customCssInterface" } }, { - "id": 2640, + "id": 2643, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -32119,8 +31875,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2641, - 2640 + 2644, + 2643 ] } ], @@ -32133,7 +31889,7 @@ ] }, { - "id": 2629, + "id": 2632, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -32149,7 +31905,7 @@ }, "children": [ { - "id": 2631, + "id": 2634, "name": "content", "kind": 1024, "kindString": "Property", @@ -32166,14 +31922,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2632, + "id": 2635, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2634, + "id": 2637, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -32203,7 +31959,7 @@ } }, { - "id": 2635, + "id": 2638, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -32223,7 +31979,7 @@ } }, { - "id": 2633, + "id": 2636, "name": "strings", "kind": 1024, "kindString": "Property", @@ -32266,21 +32022,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2634, - 2635, - 2633 + 2637, + 2638, + 2636 ] } ], "indexSignature": { - "id": 2636, + "id": 2639, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2637, + "id": 2640, "name": "key", "kind": 32768, "flags": {}, @@ -32299,7 +32055,7 @@ } }, { - "id": 2638, + "id": 2641, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -32319,7 +32075,7 @@ } }, { - "id": 2630, + "id": 2633, "name": "style", "kind": 1024, "kindString": "Property", @@ -32335,7 +32091,7 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2642, "name": "CustomStyles" } } @@ -32345,9 +32101,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2631, - 2638, - 2630 + 2634, + 2641, + 2633 ] } ], @@ -32360,7 +32116,7 @@ ] }, { - "id": 2233, + "id": 2236, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -32376,7 +32132,7 @@ }, "children": [ { - "id": 2275, + "id": 2278, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -32406,20 +32162,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2276, + "id": 2279, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2277, + "id": 2280, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2278, + "id": 2281, "name": "key", "kind": 32768, "flags": {}, @@ -32451,7 +32207,7 @@ } }, { - "id": 2236, + "id": 2239, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -32474,7 +32230,7 @@ } }, { - "id": 2257, + "id": 2260, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -32516,7 +32272,7 @@ } }, { - "id": 2259, + "id": 2262, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -32545,7 +32301,7 @@ } }, { - "id": 2235, + "id": 2238, "name": "authType", "kind": 1024, "kindString": "Property", @@ -32562,12 +32318,12 @@ ], "type": { "type": "reference", - "id": 1891, + "id": 1894, "name": "AuthType" } }, { - "id": 2248, + "id": 2251, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -32596,7 +32352,7 @@ } }, { - "id": 2260, + "id": 2263, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -32629,7 +32385,7 @@ } }, { - "id": 2251, + "id": 2254, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -32658,7 +32414,7 @@ } }, { - "id": 2272, + "id": 2275, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -32687,7 +32443,7 @@ } }, { - "id": 2282, + "id": 2285, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -32723,7 +32479,7 @@ } }, { - "id": 2279, + "id": 2282, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -32766,7 +32522,7 @@ } }, { - "id": 2256, + "id": 2259, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -32791,12 +32547,12 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2632, "name": "CustomisationsInterface" } }, { - "id": 2270, + "id": 2273, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -32825,7 +32581,7 @@ } }, { - "id": 2253, + "id": 2256, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -32855,7 +32611,7 @@ } }, { - "id": 2281, + "id": 2284, "name": "disableFullscreenPresentation", "kind": 1024, "kindString": "Property", @@ -32892,7 +32648,7 @@ } }, { - "id": 2274, + "id": 2277, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -32921,7 +32677,7 @@ } }, { - "id": 2249, + "id": 2252, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -32954,7 +32710,7 @@ } }, { - "id": 2280, + "id": 2283, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -32974,7 +32730,7 @@ } }, { - "id": 2269, + "id": 2272, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -33003,7 +32759,7 @@ } }, { - "id": 2247, + "id": 2250, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -33032,7 +32788,7 @@ } }, { - "id": 2242, + "id": 2245, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -33066,7 +32822,7 @@ } }, { - "id": 2268, + "id": 2271, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -33099,12 +32855,12 @@ ], "type": { "type": "reference", - "id": 2825, + "id": 2818, "name": "LogLevel" } }, { - "id": 2250, + "id": 2253, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -33133,7 +32889,7 @@ } }, { - "id": 2241, + "id": 2244, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -33166,7 +32922,7 @@ } }, { - "id": 2271, + "id": 2274, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -33195,7 +32951,7 @@ } }, { - "id": 2240, + "id": 2243, "name": "password", "kind": 1024, "kindString": "Property", @@ -33219,7 +32975,7 @@ } }, { - "id": 2266, + "id": 2269, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -33248,7 +33004,7 @@ } }, { - "id": 2252, + "id": 2255, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -33281,7 +33037,7 @@ } }, { - "id": 2243, + "id": 2246, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -33311,7 +33067,7 @@ } }, { - "id": 2245, + "id": 2248, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -33340,7 +33096,7 @@ } }, { - "id": 2267, + "id": 2270, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -33369,7 +33125,7 @@ } }, { - "id": 2246, + "id": 2249, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -33398,7 +33154,7 @@ } }, { - "id": 2255, + "id": 2258, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -33421,7 +33177,7 @@ } }, { - "id": 2254, + "id": 2257, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -33450,7 +33206,7 @@ } }, { - "id": 2234, + "id": 2237, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -33471,7 +33227,7 @@ } }, { - "id": 2258, + "id": 2261, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -33494,7 +33250,7 @@ } }, { - "id": 2239, + "id": 2242, "name": "username", "kind": 1024, "kindString": "Property", @@ -33517,7 +33273,7 @@ } }, { - "id": 2237, + "id": 2240, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -33533,7 +33289,7 @@ ], "signatures": [ { - "id": 2238, + "id": 2241, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -33561,50 +33317,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2275, - 2236, - 2257, - 2259, - 2235, - 2248, + 2278, + 2239, 2260, + 2262, + 2238, 2251, - 2272, + 2263, + 2254, + 2275, + 2285, 2282, - 2279, + 2259, + 2273, 2256, - 2270, - 2253, - 2281, - 2274, - 2249, - 2280, - 2269, - 2247, - 2242, - 2268, + 2284, + 2277, + 2252, + 2283, + 2272, 2250, - 2241, + 2245, 2271, - 2240, - 2266, - 2252, + 2253, + 2244, + 2274, 2243, - 2245, - 2267, - 2246, + 2269, 2255, - 2254, - 2234, + 2246, + 2248, + 2270, + 2249, 2258, - 2239 + 2257, + 2237, + 2261, + 2242 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2237 + 2240 ] } ], @@ -33617,7 +33373,7 @@ ] }, { - "id": 2588, + "id": 2591, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -33633,7 +33389,7 @@ }, "children": [ { - "id": 2590, + "id": 2593, "name": "height", "kind": 1024, "kindString": "Property", @@ -33665,7 +33421,7 @@ } }, { - "id": 2591, + "id": 2594, "name": "loading", "kind": 1024, "kindString": "Property", @@ -33701,7 +33457,7 @@ } }, { - "id": 2589, + "id": 2592, "name": "width", "kind": 1024, "kindString": "Property", @@ -33738,9 +33494,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2590, - 2591, - 2589 + 2593, + 2594, + 2592 ] } ], @@ -33752,7 +33508,7 @@ } ], "indexSignature": { - "id": 2592, + "id": 2595, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -33762,7 +33518,7 @@ }, "parameters": [ { - "id": 2593, + "id": 2596, "name": "key", "kind": 32768, "flags": {}, @@ -33796,7 +33552,7 @@ } }, { - "id": 2379, + "id": 2382, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -33812,7 +33568,7 @@ }, "children": [ { - "id": 2390, + "id": 2393, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -33846,7 +33602,7 @@ } }, { - "id": 2412, + "id": 2415, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -33877,20 +33633,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2413, + "id": 2416, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2414, + "id": 2417, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2415, + "id": 2418, "name": "key", "kind": 32768, "flags": {}, @@ -33926,7 +33682,7 @@ } }, { - "id": 2436, + "id": 2439, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -33968,7 +33724,7 @@ } }, { - "id": 2433, + "id": 2436, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -33998,7 +33754,7 @@ ], "type": { "type": "reference", - "id": 2229, + "id": 2232, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -34007,7 +33763,7 @@ } }, { - "id": 2449, + "id": 2452, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -34045,7 +33801,7 @@ } }, { - "id": 2430, + "id": 2433, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -34086,7 +33842,7 @@ } }, { - "id": 2416, + "id": 2419, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -34115,7 +33871,7 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2632, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -34124,7 +33880,7 @@ } }, { - "id": 2437, + "id": 2440, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -34166,7 +33922,7 @@ } }, { - "id": 2381, + "id": 2384, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -34204,7 +33960,7 @@ } }, { - "id": 2424, + "id": 2427, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -34242,7 +33998,7 @@ } }, { - "id": 2408, + "id": 2411, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -34280,7 +34036,7 @@ } }, { - "id": 2407, + "id": 2410, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -34312,7 +34068,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -34322,7 +34078,7 @@ } }, { - "id": 2420, + "id": 2423, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -34363,7 +34119,7 @@ } }, { - "id": 2443, + "id": 2446, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -34405,7 +34161,7 @@ } }, { - "id": 2448, + "id": 2451, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -34447,7 +34203,7 @@ } }, { - "id": 2438, + "id": 2441, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -34489,7 +34245,7 @@ } }, { - "id": 2421, + "id": 2424, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -34527,7 +34283,7 @@ } }, { - "id": 2382, + "id": 2385, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -34563,7 +34319,7 @@ } }, { - "id": 2434, + "id": 2437, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -34601,7 +34357,7 @@ } }, { - "id": 2435, + "id": 2438, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -34639,7 +34395,7 @@ } }, { - "id": 2423, + "id": 2426, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -34676,7 +34432,7 @@ } }, { - "id": 2404, + "id": 2407, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -34706,7 +34462,7 @@ ], "type": { "type": "reference", - "id": 2588, + "id": 2591, "name": "FrameParams" }, "inheritedFrom": { @@ -34715,7 +34471,7 @@ } }, { - "id": 2380, + "id": 2383, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -34749,7 +34505,7 @@ } }, { - "id": 2409, + "id": 2412, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -34785,7 +34541,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -34795,7 +34551,7 @@ } }, { - "id": 2396, + "id": 2399, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -34832,7 +34588,7 @@ } }, { - "id": 2446, + "id": 2449, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -34874,7 +34630,7 @@ } }, { - "id": 2439, + "id": 2442, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -34916,7 +34672,7 @@ } }, { - "id": 2391, + "id": 2394, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -34950,7 +34706,7 @@ } }, { - "id": 2417, + "id": 2420, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -34988,7 +34744,7 @@ } }, { - "id": 2451, + "id": 2454, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -35026,7 +34782,7 @@ } }, { - "id": 2452, + "id": 2455, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -35064,7 +34820,7 @@ } }, { - "id": 2444, + "id": 2447, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -35106,7 +34862,7 @@ } }, { - "id": 2442, + "id": 2445, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -35144,7 +34900,7 @@ } }, { - "id": 2398, + "id": 2401, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -35178,7 +34934,7 @@ } }, { - "id": 2399, + "id": 2402, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -35212,7 +34968,7 @@ } }, { - "id": 2400, + "id": 2403, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -35249,7 +35005,7 @@ } }, { - "id": 2401, + "id": 2404, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -35283,7 +35039,7 @@ } }, { - "id": 2426, + "id": 2429, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -35321,7 +35077,7 @@ } }, { - "id": 2383, + "id": 2386, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -35355,7 +35111,7 @@ } }, { - "id": 2389, + "id": 2392, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -35389,7 +35145,7 @@ } }, { - "id": 2450, + "id": 2453, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -35427,7 +35183,7 @@ } }, { - "id": 2411, + "id": 2414, "name": "locale", "kind": 1024, "kindString": "Property", @@ -35465,7 +35221,7 @@ } }, { - "id": 2425, + "id": 2428, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -35503,7 +35259,7 @@ } }, { - "id": 2419, + "id": 2422, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -35541,7 +35297,7 @@ } }, { - "id": 2386, + "id": 2389, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -35575,7 +35331,7 @@ } }, { - "id": 2427, + "id": 2430, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -35613,7 +35369,7 @@ } }, { - "id": 2431, + "id": 2434, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -35645,7 +35401,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1903, + "id": 1906, "name": "RuntimeFilter" } }, @@ -35655,7 +35411,7 @@ } }, { - "id": 2432, + "id": 2435, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -35687,7 +35443,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2815, "name": "RuntimeParameter" } }, @@ -35697,7 +35453,7 @@ } }, { - "id": 2429, + "id": 2432, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -35734,7 +35490,7 @@ } }, { - "id": 2441, + "id": 2444, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -35776,7 +35532,7 @@ } }, { - "id": 2447, + "id": 2450, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -35818,7 +35574,7 @@ } }, { - "id": 2440, + "id": 2443, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -35860,7 +35616,7 @@ } }, { - "id": 2445, + "id": 2448, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -35902,7 +35658,7 @@ } }, { - "id": 2392, + "id": 2395, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -35936,7 +35692,7 @@ } }, { - "id": 2402, + "id": 2405, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -35969,7 +35725,7 @@ } }, { - "id": 2410, + "id": 2413, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -36005,7 +35761,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -36015,7 +35771,7 @@ } }, { - "id": 2397, + "id": 2400, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -36052,7 +35808,7 @@ } }, { - "id": 2387, + "id": 2390, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -36089,7 +35845,7 @@ } }, { - "id": 2385, + "id": 2388, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -36128,65 +35884,65 @@ "title": "Properties", "kind": 1024, "children": [ - 2390, - 2412, + 2393, + 2415, + 2439, 2436, + 2452, 2433, - 2449, - 2430, - 2416, - 2437, - 2381, - 2424, - 2408, - 2407, - 2420, - 2443, - 2448, - 2438, - 2421, - 2382, - 2434, - 2435, + 2419, + 2440, + 2384, + 2427, + 2411, + 2410, 2423, - 2404, - 2380, - 2409, - 2396, 2446, - 2439, - 2391, - 2417, 2451, - 2452, - 2444, - 2442, - 2398, - 2399, - 2400, - 2401, + 2441, + 2424, + 2385, + 2437, + 2438, 2426, + 2407, 2383, - 2389, - 2450, - 2411, - 2425, - 2419, - 2386, - 2427, - 2431, - 2432, - 2429, - 2441, + 2412, + 2399, + 2449, + 2442, + 2394, + 2420, + 2454, + 2455, 2447, - 2440, 2445, - 2392, + 2401, 2402, - 2410, - 2397, - 2387, - 2385 + 2403, + 2404, + 2429, + 2386, + 2392, + 2453, + 2414, + 2428, + 2422, + 2389, + 2430, + 2434, + 2435, + 2432, + 2444, + 2450, + 2443, + 2448, + 2395, + 2405, + 2413, + 2400, + 2390, + 2388 ] } ], @@ -36213,7 +35969,7 @@ ] }, { - "id": 1903, + "id": 1906, "name": "RuntimeFilter", "kind": 256, "kindString": "Interface", @@ -36223,7 +35979,7 @@ }, "children": [ { - "id": 1904, + "id": 1907, "name": "columnName", "kind": 1024, "kindString": "Property", @@ -36244,7 +36000,7 @@ } }, { - "id": 1905, + "id": 1908, "name": "operator", "kind": 1024, "kindString": "Property", @@ -36261,12 +36017,12 @@ ], "type": { "type": "reference", - "id": 1907, + "id": 1910, "name": "RuntimeFilterOp" } }, { - "id": 1906, + "id": 1909, "name": "values", "kind": 1024, "kindString": "Property", @@ -36312,9 +36068,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1904, - 1905, - 1906 + 1907, + 1908, + 1909 ] } ], @@ -36327,7 +36083,7 @@ ] }, { - "id": 2822, + "id": 2815, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -36337,7 +36093,7 @@ }, "children": [ { - "id": 2823, + "id": 2816, "name": "name", "kind": 1024, "kindString": "Property", @@ -36358,7 +36114,7 @@ } }, { - "id": 2824, + "id": 2817, "name": "value", "kind": 1024, "kindString": "Property", @@ -36397,8 +36153,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2823, - 2824 + 2816, + 2817 ] } ], @@ -36411,7 +36167,7 @@ ] }, { - "id": 2453, + "id": 2456, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -36431,7 +36187,7 @@ }, "children": [ { - "id": 2482, + "id": 2485, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -36462,20 +36218,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2483, + "id": 2486, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2484, + "id": 2487, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2485, + "id": 2488, "name": "key", "kind": 32768, "flags": {}, @@ -36511,7 +36267,7 @@ } }, { - "id": 2470, + "id": 2473, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -36553,7 +36309,7 @@ } }, { - "id": 2467, + "id": 2470, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -36583,7 +36339,7 @@ ], "type": { "type": "reference", - "id": 2229, + "id": 2232, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -36592,7 +36348,7 @@ } }, { - "id": 2499, + "id": 2502, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -36633,7 +36389,7 @@ } }, { - "id": 2486, + "id": 2489, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -36662,7 +36418,7 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2632, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -36671,7 +36427,7 @@ } }, { - "id": 2471, + "id": 2474, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -36713,7 +36469,7 @@ } }, { - "id": 2463, + "id": 2466, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -36736,7 +36492,7 @@ } }, { - "id": 2494, + "id": 2497, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -36774,7 +36530,7 @@ } }, { - "id": 2458, + "id": 2461, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -36803,7 +36559,7 @@ } }, { - "id": 2478, + "id": 2481, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -36841,7 +36597,7 @@ } }, { - "id": 2477, + "id": 2480, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -36873,7 +36629,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -36883,7 +36639,7 @@ } }, { - "id": 2490, + "id": 2493, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -36924,7 +36680,7 @@ } }, { - "id": 2472, + "id": 2475, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -36966,7 +36722,7 @@ } }, { - "id": 2491, + "id": 2494, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -37004,7 +36760,7 @@ } }, { - "id": 2468, + "id": 2471, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -37042,7 +36798,7 @@ } }, { - "id": 2469, + "id": 2472, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -37080,7 +36836,7 @@ } }, { - "id": 2493, + "id": 2496, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -37117,7 +36873,7 @@ } }, { - "id": 2474, + "id": 2477, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -37147,7 +36903,7 @@ ], "type": { "type": "reference", - "id": 2588, + "id": 2591, "name": "FrameParams" }, "inheritedFrom": { @@ -37156,7 +36912,7 @@ } }, { - "id": 2479, + "id": 2482, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -37192,7 +36948,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -37202,7 +36958,7 @@ } }, { - "id": 2460, + "id": 2463, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -37231,7 +36987,7 @@ } }, { - "id": 2457, + "id": 2460, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -37260,7 +37016,7 @@ } }, { - "id": 2462, + "id": 2465, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -37294,7 +37050,7 @@ } }, { - "id": 2456, + "id": 2459, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -37327,7 +37083,7 @@ } }, { - "id": 2459, + "id": 2462, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -37356,7 +37112,7 @@ } }, { - "id": 2487, + "id": 2490, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -37394,7 +37150,7 @@ } }, { - "id": 2496, + "id": 2499, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -37432,7 +37188,7 @@ } }, { - "id": 2481, + "id": 2484, "name": "locale", "kind": 1024, "kindString": "Property", @@ -37470,7 +37226,7 @@ } }, { - "id": 2495, + "id": 2498, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -37508,7 +37264,7 @@ } }, { - "id": 2489, + "id": 2492, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -37546,7 +37302,7 @@ } }, { - "id": 2465, + "id": 2468, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -37578,7 +37334,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1903, + "id": 1906, "name": "RuntimeFilter" } }, @@ -37588,7 +37344,7 @@ } }, { - "id": 2466, + "id": 2469, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -37620,7 +37376,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2815, "name": "RuntimeParameter" } }, @@ -37630,7 +37386,7 @@ } }, { - "id": 2464, + "id": 2467, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -37664,7 +37420,7 @@ } }, { - "id": 2498, + "id": 2501, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -37701,7 +37457,7 @@ } }, { - "id": 2454, + "id": 2457, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -37730,7 +37486,7 @@ } }, { - "id": 2461, + "id": 2464, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -37759,7 +37515,7 @@ } }, { - "id": 2480, + "id": 2483, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -37795,7 +37551,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -37810,42 +37566,42 @@ "title": "Properties", "kind": 1024, "children": [ - 2482, + 2485, + 2473, 2470, - 2467, - 2499, - 2486, - 2471, - 2463, + 2502, + 2489, + 2474, + 2466, + 2497, + 2461, + 2481, + 2480, + 2493, + 2475, 2494, - 2458, - 2478, + 2471, + 2472, + 2496, 2477, + 2482, + 2463, + 2460, + 2465, + 2459, + 2462, 2490, - 2472, - 2491, + 2499, + 2484, + 2498, + 2492, 2468, 2469, - 2493, - 2474, - 2479, - 2460, + 2467, + 2501, 2457, - 2462, - 2456, - 2459, - 2487, - 2496, - 2481, - 2495, - 2489, - 2465, - 2466, 2464, - 2498, - 2454, - 2461, - 2480 + 2483 ] } ], @@ -37899,7 +37655,7 @@ ] }, { - "id": 2337, + "id": 2340, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -37914,7 +37670,7 @@ }, "children": [ { - "id": 2352, + "id": 2355, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -37945,20 +37701,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2353, + "id": 2356, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2354, + "id": 2357, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2355, + "id": 2358, "name": "key", "kind": 32768, "flags": {}, @@ -37994,7 +37750,7 @@ } }, { - "id": 2376, + "id": 2379, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -38036,7 +37792,7 @@ } }, { - "id": 2373, + "id": 2376, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -38066,7 +37822,7 @@ ], "type": { "type": "reference", - "id": 2229, + "id": 2232, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -38075,7 +37831,7 @@ } }, { - "id": 2370, + "id": 2373, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -38116,7 +37872,7 @@ } }, { - "id": 2356, + "id": 2359, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -38145,7 +37901,7 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2632, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -38154,7 +37910,7 @@ } }, { - "id": 2377, + "id": 2380, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -38196,7 +37952,7 @@ } }, { - "id": 2339, + "id": 2342, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -38230,7 +37986,7 @@ } }, { - "id": 2338, + "id": 2341, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -38271,7 +38027,7 @@ } }, { - "id": 2364, + "id": 2367, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -38309,7 +38065,7 @@ } }, { - "id": 2348, + "id": 2351, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -38347,7 +38103,7 @@ } }, { - "id": 2347, + "id": 2350, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -38379,7 +38135,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -38389,7 +38145,7 @@ } }, { - "id": 2360, + "id": 2363, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -38430,7 +38186,7 @@ } }, { - "id": 2378, + "id": 2381, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -38472,7 +38228,7 @@ } }, { - "id": 2361, + "id": 2364, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -38510,7 +38266,7 @@ } }, { - "id": 2374, + "id": 2377, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -38548,7 +38304,7 @@ } }, { - "id": 2375, + "id": 2378, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -38586,7 +38342,7 @@ } }, { - "id": 2342, + "id": 2345, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -38620,7 +38376,7 @@ } }, { - "id": 2363, + "id": 2366, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -38657,7 +38413,7 @@ } }, { - "id": 2344, + "id": 2347, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -38687,7 +38443,7 @@ ], "type": { "type": "reference", - "id": 2588, + "id": 2591, "name": "FrameParams" }, "inheritedFrom": { @@ -38696,7 +38452,7 @@ } }, { - "id": 2349, + "id": 2352, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -38732,7 +38488,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -38742,7 +38498,7 @@ } }, { - "id": 2357, + "id": 2360, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -38780,7 +38536,7 @@ } }, { - "id": 2366, + "id": 2369, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -38818,7 +38574,7 @@ } }, { - "id": 2351, + "id": 2354, "name": "locale", "kind": 1024, "kindString": "Property", @@ -38856,7 +38612,7 @@ } }, { - "id": 2365, + "id": 2368, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -38894,7 +38650,7 @@ } }, { - "id": 2359, + "id": 2362, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -38932,7 +38688,7 @@ } }, { - "id": 2367, + "id": 2370, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -38970,7 +38726,7 @@ } }, { - "id": 2371, + "id": 2374, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -39002,7 +38758,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1903, + "id": 1906, "name": "RuntimeFilter" } }, @@ -39012,7 +38768,7 @@ } }, { - "id": 2372, + "id": 2375, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -39044,7 +38800,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2815, "name": "RuntimeParameter" } }, @@ -39054,7 +38810,7 @@ } }, { - "id": 2341, + "id": 2344, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -39088,7 +38844,7 @@ } }, { - "id": 2369, + "id": 2372, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -39125,7 +38881,7 @@ } }, { - "id": 2340, + "id": 2343, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -39159,7 +38915,7 @@ } }, { - "id": 2350, + "id": 2353, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -39195,7 +38951,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -39210,38 +38966,38 @@ "title": "Properties", "kind": 1024, "children": [ - 2352, + 2355, + 2379, 2376, 2373, - 2370, - 2356, - 2377, - 2339, - 2338, + 2359, + 2380, + 2342, + 2341, + 2367, + 2351, + 2350, + 2363, + 2381, 2364, - 2348, + 2377, + 2378, + 2345, + 2366, 2347, + 2352, 2360, - 2378, - 2361, + 2369, + 2354, + 2368, + 2362, + 2370, 2374, 2375, - 2342, - 2363, 2344, - 2349, - 2357, - 2366, - 2351, - 2365, - 2359, - 2367, - 2371, 2372, - 2341, - 2369, - 2340, - 2350 + 2343, + 2353 ] } ], @@ -39264,7 +39020,7 @@ ] }, { - "id": 2283, + "id": 2286, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -39280,7 +39036,7 @@ }, "children": [ { - "id": 2319, + "id": 2322, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -39311,20 +39067,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2320, + "id": 2323, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2321, + "id": 2324, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2322, + "id": 2325, "name": "key", "kind": 32768, "flags": {}, @@ -39360,7 +39116,7 @@ } }, { - "id": 2295, + "id": 2298, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -39394,7 +39150,7 @@ } }, { - "id": 2285, + "id": 2288, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -39428,7 +39184,7 @@ } }, { - "id": 2284, + "id": 2287, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -39462,7 +39218,7 @@ } }, { - "id": 2307, + "id": 2310, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -39504,7 +39260,7 @@ } }, { - "id": 2298, + "id": 2301, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -39541,7 +39297,7 @@ } }, { - "id": 2304, + "id": 2307, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -39571,7 +39327,7 @@ ], "type": { "type": "reference", - "id": 2229, + "id": 2232, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -39580,7 +39336,7 @@ } }, { - "id": 2336, + "id": 2339, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -39621,7 +39377,7 @@ } }, { - "id": 2323, + "id": 2326, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -39650,7 +39406,7 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2632, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -39659,7 +39415,7 @@ } }, { - "id": 2300, + "id": 2303, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -39697,7 +39453,7 @@ } }, { - "id": 2308, + "id": 2311, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -39739,7 +39495,7 @@ } }, { - "id": 2291, + "id": 2294, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -39773,7 +39529,7 @@ } }, { - "id": 2290, + "id": 2293, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -39809,7 +39565,7 @@ } }, { - "id": 2331, + "id": 2334, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -39847,7 +39603,7 @@ } }, { - "id": 2315, + "id": 2318, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -39885,7 +39641,7 @@ } }, { - "id": 2314, + "id": 2317, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -39917,7 +39673,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -39927,7 +39683,7 @@ } }, { - "id": 2327, + "id": 2330, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -39968,7 +39724,7 @@ } }, { - "id": 2309, + "id": 2312, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -40010,7 +39766,7 @@ } }, { - "id": 2288, + "id": 2291, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -40044,7 +39800,7 @@ } }, { - "id": 2328, + "id": 2331, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -40082,7 +39838,7 @@ } }, { - "id": 2305, + "id": 2308, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -40120,7 +39876,7 @@ } }, { - "id": 2306, + "id": 2309, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -40158,7 +39914,7 @@ } }, { - "id": 2294, + "id": 2297, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -40192,7 +39948,7 @@ } }, { - "id": 2330, + "id": 2333, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -40229,7 +39985,7 @@ } }, { - "id": 2301, + "id": 2304, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -40267,7 +40023,7 @@ } }, { - "id": 2289, + "id": 2292, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -40301,7 +40057,7 @@ } }, { - "id": 2311, + "id": 2314, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -40331,7 +40087,7 @@ ], "type": { "type": "reference", - "id": 2588, + "id": 2591, "name": "FrameParams" }, "inheritedFrom": { @@ -40340,7 +40096,7 @@ } }, { - "id": 2316, + "id": 2319, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -40376,7 +40132,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -40386,7 +40142,7 @@ } }, { - "id": 2286, + "id": 2289, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -40420,7 +40176,7 @@ } }, { - "id": 2287, + "id": 2290, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -40454,7 +40210,7 @@ } }, { - "id": 2296, + "id": 2299, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -40488,7 +40244,7 @@ } }, { - "id": 2324, + "id": 2327, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -40526,7 +40282,7 @@ } }, { - "id": 2299, + "id": 2302, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -40556,7 +40312,7 @@ } }, { - "id": 2333, + "id": 2336, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -40594,7 +40350,7 @@ } }, { - "id": 2318, + "id": 2321, "name": "locale", "kind": 1024, "kindString": "Property", @@ -40632,7 +40388,7 @@ } }, { - "id": 2332, + "id": 2335, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -40670,7 +40426,7 @@ } }, { - "id": 2326, + "id": 2329, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -40708,7 +40464,7 @@ } }, { - "id": 2302, + "id": 2305, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -40740,7 +40496,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1903, + "id": 1906, "name": "RuntimeFilter" } }, @@ -40750,7 +40506,7 @@ } }, { - "id": 2303, + "id": 2306, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -40782,7 +40538,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2815, "name": "RuntimeParameter" } }, @@ -40792,7 +40548,7 @@ } }, { - "id": 2293, + "id": 2296, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -40822,7 +40578,7 @@ } }, { - "id": 2292, + "id": 2295, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -40851,7 +40607,7 @@ } }, { - "id": 2335, + "id": 2338, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -40888,7 +40644,7 @@ } }, { - "id": 2297, + "id": 2300, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -40918,7 +40674,7 @@ } }, { - "id": 2317, + "id": 2320, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -40954,7 +40710,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -40969,50 +40725,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2319, - 2295, - 2285, - 2284, - 2307, + 2322, 2298, - 2304, - 2336, - 2323, - 2300, - 2308, - 2291, - 2290, - 2331, - 2315, - 2314, - 2327, - 2309, 2288, - 2328, - 2305, - 2306, - 2294, - 2330, - 2301, - 2289, - 2311, - 2316, - 2286, 2287, - 2296, - 2324, - 2299, - 2333, - 2318, - 2332, + 2310, + 2301, + 2307, + 2339, 2326, - 2302, 2303, + 2311, + 2294, 2293, + 2334, + 2318, + 2317, + 2330, + 2312, + 2291, + 2331, + 2308, + 2309, + 2297, + 2333, + 2304, 2292, + 2314, + 2319, + 2289, + 2290, + 2299, + 2327, + 2302, + 2336, + 2321, 2335, - 2297, - 2317 + 2329, + 2305, + 2306, + 2296, + 2295, + 2338, + 2300, + 2320 ] } ], @@ -41045,14 +40801,14 @@ ] }, { - "id": 1872, + "id": 1875, "name": "SessionInterface", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1875, + "id": 1878, "name": "acSession", "kind": 1024, "kindString": "Property", @@ -41067,14 +40823,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1876, + "id": 1879, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1878, + "id": 1881, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -41092,7 +40848,7 @@ } }, { - "id": 1877, + "id": 1880, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -41115,8 +40871,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1878, - 1877 + 1881, + 1880 ] } ] @@ -41124,7 +40880,7 @@ } }, { - "id": 1874, + "id": 1877, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -41142,7 +40898,7 @@ } }, { - "id": 1873, + "id": 1876, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -41165,9 +40921,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1875, - 1874, - 1873 + 1878, + 1877, + 1876 ] } ], @@ -41180,7 +40936,7 @@ ] }, { - "id": 1228, + "id": 1231, "name": "SpotterAgentEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -41196,7 +40952,7 @@ }, "children": [ { - "id": 1239, + "id": 1242, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -41227,20 +40983,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1240, + "id": 1243, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1241, + "id": 1244, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1242, + "id": 1245, "name": "key", "kind": 32768, "flags": {}, @@ -41276,7 +41032,7 @@ } }, { - "id": 1256, + "id": 1259, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -41317,7 +41073,7 @@ } }, { - "id": 1243, + "id": 1246, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -41346,7 +41102,7 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2632, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -41355,7 +41111,7 @@ } }, { - "id": 1251, + "id": 1254, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -41393,7 +41149,7 @@ } }, { - "id": 1235, + "id": 1238, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -41431,7 +41187,7 @@ } }, { - "id": 1234, + "id": 1237, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -41463,7 +41219,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -41473,7 +41229,7 @@ } }, { - "id": 1247, + "id": 1250, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -41514,7 +41270,7 @@ } }, { - "id": 1248, + "id": 1251, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -41552,7 +41308,7 @@ } }, { - "id": 1250, + "id": 1253, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -41589,7 +41345,7 @@ } }, { - "id": 1231, + "id": 1234, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -41619,7 +41375,7 @@ ], "type": { "type": "reference", - "id": 2588, + "id": 2591, "name": "FrameParams" }, "inheritedFrom": { @@ -41628,7 +41384,7 @@ } }, { - "id": 1236, + "id": 1239, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -41664,7 +41420,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -41674,7 +41430,7 @@ } }, { - "id": 1244, + "id": 1247, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -41712,7 +41468,7 @@ } }, { - "id": 1253, + "id": 1256, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -41750,7 +41506,7 @@ } }, { - "id": 1238, + "id": 1241, "name": "locale", "kind": 1024, "kindString": "Property", @@ -41788,7 +41544,7 @@ } }, { - "id": 1252, + "id": 1255, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -41826,7 +41582,7 @@ } }, { - "id": 1246, + "id": 1249, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -41864,7 +41620,7 @@ } }, { - "id": 1255, + "id": 1258, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -41901,7 +41657,7 @@ } }, { - "id": 1237, + "id": 1240, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -41937,7 +41693,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -41947,7 +41703,7 @@ } }, { - "id": 1229, + "id": 1232, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -41973,25 +41729,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1239, - 1256, - 1243, + 1242, + 1259, + 1246, + 1254, + 1238, + 1237, + 1250, 1251, - 1235, + 1253, 1234, + 1239, 1247, - 1248, - 1250, - 1231, - 1236, - 1244, - 1253, - 1238, - 1252, - 1246, + 1256, + 1241, 1255, - 1237, - 1229 + 1249, + 1258, + 1240, + 1232 ] } ], @@ -42021,13 +41777,13 @@ "extendedBy": [ { "type": "reference", - "id": 1257, + "id": 1260, "name": "BodylessConversationViewConfig" } ] }, { - "id": 1483, + "id": 1486, "name": "SpotterEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -42043,7 +41799,7 @@ }, "children": [ { - "id": 1505, + "id": 1508, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -42074,20 +41830,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1506, + "id": 1509, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1507, + "id": 1510, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1508, + "id": 1511, "name": "key", "kind": 32768, "flags": {}, @@ -42123,7 +41879,7 @@ } }, { - "id": 1522, + "id": 1525, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -42164,7 +41920,7 @@ } }, { - "id": 1509, + "id": 1512, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -42193,7 +41949,7 @@ ], "type": { "type": "reference", - "id": 2629, + "id": 2632, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -42202,7 +41958,7 @@ } }, { - "id": 1488, + "id": 1491, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -42240,7 +41996,7 @@ } }, { - "id": 1517, + "id": 1520, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -42278,7 +42034,7 @@ } }, { - "id": 1486, + "id": 1489, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -42312,7 +42068,7 @@ } }, { - "id": 1501, + "id": 1504, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -42350,7 +42106,7 @@ } }, { - "id": 1500, + "id": 1503, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -42382,7 +42138,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -42392,7 +42148,7 @@ } }, { - "id": 1513, + "id": 1516, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -42433,7 +42189,7 @@ } }, { - "id": 1495, + "id": 1498, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -42471,7 +42227,7 @@ } }, { - "id": 1514, + "id": 1517, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -42509,7 +42265,7 @@ } }, { - "id": 1492, + "id": 1495, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -42543,7 +42299,7 @@ } }, { - "id": 1494, + "id": 1497, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -42577,7 +42333,7 @@ } }, { - "id": 1516, + "id": 1519, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -42614,7 +42370,7 @@ } }, { - "id": 1497, + "id": 1500, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -42644,7 +42400,7 @@ ], "type": { "type": "reference", - "id": 2588, + "id": 2591, "name": "FrameParams" }, "inheritedFrom": { @@ -42653,7 +42409,7 @@ } }, { - "id": 1502, + "id": 1505, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -42689,7 +42445,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -42699,7 +42455,7 @@ } }, { - "id": 1490, + "id": 1493, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -42733,7 +42489,7 @@ } }, { - "id": 1487, + "id": 1490, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -42767,7 +42523,7 @@ } }, { - "id": 1510, + "id": 1513, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -42805,7 +42561,7 @@ } }, { - "id": 1519, + "id": 1522, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -42843,7 +42599,7 @@ } }, { - "id": 1504, + "id": 1507, "name": "locale", "kind": 1024, "kindString": "Property", @@ -42881,7 +42637,7 @@ } }, { - "id": 1518, + "id": 1521, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -42919,7 +42675,7 @@ } }, { - "id": 1512, + "id": 1515, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -42957,7 +42713,7 @@ } }, { - "id": 1491, + "id": 1494, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -42989,13 +42745,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1903, + "id": 1906, "name": "RuntimeFilter" } } }, { - "id": 1493, + "id": 1496, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -43027,13 +42783,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2815, "name": "RuntimeParameter" } } }, { - "id": 1485, + "id": 1488, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -43056,7 +42812,7 @@ } }, { - "id": 1521, + "id": 1524, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -43093,7 +42849,7 @@ } }, { - "id": 1489, + "id": 1492, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -43127,7 +42883,7 @@ } }, { - "id": 1503, + "id": 1506, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -43163,7 +42919,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -43173,7 +42929,7 @@ } }, { - "id": 1484, + "id": 1487, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -43199,36 +42955,36 @@ "title": "Properties", "kind": 1024, "children": [ - 1505, - 1522, - 1509, - 1488, + 1508, + 1525, + 1512, + 1491, + 1520, + 1489, + 1504, + 1503, + 1516, + 1498, 1517, - 1486, - 1501, - 1500, - 1513, 1495, - 1514, - 1492, - 1494, - 1516, 1497, - 1502, - 1490, - 1487, - 1510, 1519, - 1504, - 1518, - 1512, - 1491, + 1500, + 1505, 1493, - 1485, + 1490, + 1513, + 1522, + 1507, 1521, - 1489, - 1503, - 1484 + 1515, + 1494, + 1496, + 1488, + 1524, + 1492, + 1506, + 1487 ] } ], @@ -43258,20 +43014,20 @@ "extendedBy": [ { "type": "reference", - "id": 1523, + "id": 1526, "name": "ConversationViewConfig" } ] }, { - "id": 1879, + "id": 1882, "name": "UnderlyingDataPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1880, + "id": 1883, "name": "columnId", "kind": 1024, "kindString": "Property", @@ -43289,7 +43045,7 @@ } }, { - "id": 1881, + "id": 1884, "name": "dataValue", "kind": 1024, "kindString": "Property", @@ -43312,8 +43068,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1880, - 1881 + 1883, + 1884 ] } ], @@ -43326,14 +43082,14 @@ ] }, { - "id": 2860, + "id": 2853, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2861, + "id": 2854, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -43354,7 +43110,7 @@ } }, { - "id": 2862, + "id": 2855, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -43380,8 +43136,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2861, - 2862 + 2854, + 2855 ] } ], @@ -43394,7 +43150,7 @@ ] }, { - "id": 2642, + "id": 2645, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -43404,7 +43160,7 @@ }, "children": [ { - "id": 2644, + "id": 2647, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -43434,20 +43190,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2645, + "id": 2648, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2646, + "id": 2649, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2647, + "id": 2650, "name": "selector", "kind": 32768, "flags": {}, @@ -43460,7 +43216,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2648, + "id": 2651, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43473,14 +43229,14 @@ } ], "indexSignature": { - "id": 2649, + "id": 2652, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2650, + "id": 2653, "name": "declaration", "kind": 32768, "flags": {}, @@ -43502,7 +43258,7 @@ } }, { - "id": 2643, + "id": 2646, "name": "variables", "kind": 1024, "kindString": "Property", @@ -43521,7 +43277,7 @@ ], "type": { "type": "reference", - "id": 2651, + "id": 2654, "name": "CustomCssVariables" } } @@ -43531,8 +43287,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2644, - 2643 + 2647, + 2646 ] } ], @@ -43837,7 +43593,7 @@ ] }, { - "id": 2612, + "id": 2615, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -43864,7 +43620,7 @@ } }, { - "id": 2616, + "id": 2619, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -43879,7 +43635,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2617, + "id": 2620, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43902,7 +43658,7 @@ ], "signatures": [ { - "id": 2618, + "id": 2621, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43912,19 +43668,19 @@ }, "parameters": [ { - "id": 2619, + "id": 2622, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2624, + "id": 2627, "name": "MessagePayload" } }, { - "id": 2620, + "id": 2623, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -43934,7 +43690,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2621, + "id": 2624, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43948,7 +43704,7 @@ ], "signatures": [ { - "id": 2622, + "id": 2625, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43958,7 +43714,7 @@ }, "parameters": [ { - "id": 2623, + "id": 2626, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -43989,7 +43745,7 @@ } }, { - "id": 2613, + "id": 2616, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -44013,14 +43769,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2614, + "id": 2617, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2615, + "id": 2618, "name": "start", "kind": 1024, "kindString": "Property", @@ -44048,7 +43804,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2615 + 2618 ] } ], @@ -44063,7 +43819,7 @@ } }, { - "id": 2624, + "id": 2627, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -44087,14 +43843,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2625, + "id": 2628, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2627, + "id": 2630, "name": "data", "kind": 1024, "kindString": "Property", @@ -44112,7 +43868,7 @@ } }, { - "id": 2628, + "id": 2631, "name": "status", "kind": 1024, "kindString": "Property", @@ -44132,7 +43888,7 @@ } }, { - "id": 2626, + "id": 2629, "name": "type", "kind": 1024, "kindString": "Property", @@ -44155,9 +43911,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2627, - 2628, - 2626 + 2630, + 2631, + 2629 ] } ], @@ -44172,7 +43928,7 @@ } }, { - "id": 48, + "id": 51, "name": "createLiveboardWithAnswers", "kind": 64, "kindString": "Function", @@ -44188,7 +43944,7 @@ ], "signatures": [ { - "id": 49, + "id": 52, "name": "createLiveboardWithAnswers", "kind": 4096, "kindString": "Call signature", @@ -44210,7 +43966,7 @@ }, "parameters": [ { - "id": 50, + "id": 53, "name": "answers", "kind": 32768, "kindString": "Parameter", @@ -44222,13 +43978,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } } }, { - "id": 51, + "id": 54, "name": "name", "kind": 32768, "kindString": "Parameter", @@ -44392,7 +44148,7 @@ ] }, { - "id": 41, + "id": 44, "name": "getAnswerFromQuery", "kind": 64, "kindString": "Function", @@ -44408,7 +44164,7 @@ ], "signatures": [ { - "id": 42, + "id": 45, "name": "getAnswerFromQuery", "kind": 4096, "kindString": "Call signature", @@ -44429,7 +44185,7 @@ }, "parameters": [ { - "id": 43, + "id": 46, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -44443,7 +44199,7 @@ } }, { - "id": 44, + "id": 47, "name": "worksheetId", "kind": 32768, "kindString": "Parameter", @@ -44463,14 +44219,14 @@ { "type": "reflection", "declaration": { - "id": 45, + "id": 48, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 46, + "id": 49, "name": "answer", "kind": 1024, "kindString": "Property", @@ -44484,12 +44240,12 @@ ], "type": { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } }, { - "id": 47, + "id": 50, "name": "suggestion", "kind": 1024, "kindString": "Property", @@ -44512,8 +44268,8 @@ "title": "Properties", "kind": 1024, "children": [ - 46, - 47 + 49, + 50 ] } ] @@ -44571,7 +44327,7 @@ }, "type": { "type": "reference", - "id": 2233, + "id": 2236, "name": "EmbedConfig" } } @@ -44671,14 +44427,14 @@ }, "type": { "type": "reference", - "id": 2233, + "id": 2236, "name": "EmbedConfig" } } ], "type": { "type": "reference", - "id": 1746, + "id": 1749, "name": "AuthEventEmitter" } } @@ -44818,7 +44574,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2583, + "id": 2586, "name": "PrefetchFeatures" } } @@ -44890,7 +44646,7 @@ ] }, { - "id": 2909, + "id": 2902, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -44906,7 +44662,7 @@ ], "signatures": [ { - "id": 2910, + "id": 2903, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -45021,11 +44777,86 @@ ], "name": "Promise" } + }, + { + "id": 41, + "name": "tokenizedFetch", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Fetch wrapper that adds the authentication token to the request.\nUse this to call the ThoughtSpot APIs when using the visual embed sdk.\nThe interface for this method is the same as Web `Fetch`.", + "tags": [ + { + "tag": "example", + "text": "\n```js\ntokenizedFetch(\"/api/rest/2.0/auth/session/user\", {\n // .. fetch options ..\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.28.0" + }, + { + "tag": "group", + "text": "Global methods\n" + } + ] + }, + "parameters": [ + { + "id": 42, + "name": "input", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "name": "URL" + }, + { + "type": "reference", + "name": "globalThis.Request" + } + ] + } + }, + { + "id": 43, + "name": "init", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "comment": {}, + "type": { + "type": "reference", + "name": "RequestInit" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "Response" + } + ], + "name": "Promise" + } } ] }, { - "id": 2832, + "id": 2825, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -45039,7 +44870,7 @@ ], "signatures": [ { - "id": 2833, + "id": 2826, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -45049,7 +44880,7 @@ }, "parameters": [ { - "id": 2834, + "id": 2827, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -45061,7 +44892,7 @@ } }, { - "id": 2835, + "id": 2828, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -45072,7 +44903,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2836, + "id": 2829, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -45095,74 +44926,74 @@ "title": "Enumerations", "kind": 4, "children": [ - 2091, - 1744, - 1729, - 1736, - 1891, - 2229, - 2904, - 2900, - 2896, - 2087, - 1923, - 2594, - 2854, - 2848, - 2605, - 2016, - 2857, - 2890, - 2825, - 1882, - 2583, - 2852, - 1907, - 2883 + 2094, + 1747, + 1732, + 1739, + 1894, + 2232, + 2897, + 2893, + 2889, + 2090, + 1926, + 2597, + 2847, + 2841, + 2608, + 2019, + 2850, + 2883, + 2818, + 1885, + 2586, + 2845, + 1910, + 2876 ] }, { "title": "Classes", "kind": 128, "children": [ - 1799, - 986, - 1286, - 1563, - 587, - 810, - 228, - 52, - 1196, - 1317 + 1802, + 989, + 1289, + 1566, + 590, + 813, + 231, + 55, + 1199, + 1320 ] }, { "title": "Interfaces", "kind": 256, "children": [ - 2500, - 1746, - 1257, - 1523, - 2863, - 2651, - 2639, - 2629, - 2233, - 2588, - 2379, - 1903, - 2822, - 2453, - 2337, - 2283, - 1872, - 1228, - 1483, - 1879, - 2860, + 2503, + 1749, + 1260, + 1526, + 2856, + 2654, 2642, + 2632, + 2236, + 2591, + 2382, + 1906, + 2815, + 2456, + 2340, + 2286, + 1875, + 1231, + 1486, + 1882, + 2853, + 2645, 21, 25 ] @@ -45171,28 +45002,28 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2612, + 2615, + 2619, 2616, - 2613, - 2624 + 2627 ] }, { "title": "Functions", "kind": 64, "children": [ - 48, + 51, 15, 18, - 41, + 44, 33, 35, 1, 4, 7, - 2909, + 2902, 37, - 2832 + 2825 ] } ], From 9575d2913c69091b63c7b0793d0900ac6c7eac1f Mon Sep 17 00:00:00 2001 From: Chinmay <162949039+chinmay-ts@users.noreply.github.com> Date: Fri, 17 Oct 2025 11:26:38 +0530 Subject: [PATCH 20/31] SCAL-277875 Added TSE flag isEnhancedFilterInteractivityEnabled (#333) --- src/embed/app.spec.ts | 14 + src/embed/app.ts | 2 + src/embed/liveboard.spec.ts | 15 + src/embed/liveboard.ts | 2 + src/types.ts | 18 +- static/typedoc/typedoc.json | 6843 ++++++++++++++++++----------------- 6 files changed, 3473 insertions(+), 3421 deletions(-) diff --git a/src/embed/app.spec.ts b/src/embed/app.spec.ts index 0ed72a8f1..a96941577 100644 --- a/src/embed/app.spec.ts +++ b/src/embed/app.spec.ts @@ -623,6 +623,20 @@ describe('App embed tests', () => { }); }); + test('Should add isLiveboardPermissionV2Enabled flag to the iframe src', async () => { + const appEmbed = new AppEmbed(getRootEl(), { + ...defaultViewConfig, + isEnhancedFilterInteractivityEnabled: false, + } as AppViewConfig); + appEmbed.render(); + await executeAfterWait(() => { + expectUrlMatchesWithParams( + getIFrameSrc(), + `http://${thoughtSpotHost}/?embedApp=true&primaryNavHidden=true&profileAndHelpInNavBarHidden=false&isLiveboardPermissionV2Enabled=false${defaultParams}${defaultParamsPost}#/home`, + ); + }); + }); + test('Should add default values of flags to the iframe src', async () => { const appEmbed = new AppEmbed(getRootEl(), { ...defaultViewConfig, diff --git a/src/embed/app.ts b/src/embed/app.ts index 3dfbe4a39..6adecdd17 100644 --- a/src/embed/app.ts +++ b/src/embed/app.ts @@ -676,6 +676,7 @@ export class AppEmbed extends V1Embed { showLiveboardVerifiedBadge = true, showLiveboardReverifyBanner = true, hideIrrelevantChipsInLiveboardTabs = false, + isEnhancedFilterInteractivityEnabled = false, homePageSearchBarMode, isUnifiedSearchExperienceEnabled = true, enablePendoHelp = true, @@ -699,6 +700,7 @@ export class AppEmbed extends V1Embed { params[Param.LiveboardHeaderSticky] = isLiveboardHeaderSticky; params[Param.IsFullAppEmbed] = true; params[Param.LiveboardHeaderV2] = isLiveboardCompactHeaderEnabled; + params[Param.IsEnhancedFilterInteractivityEnabled] = isEnhancedFilterInteractivityEnabled; params[Param.ShowLiveboardVerifiedBadge] = showLiveboardVerifiedBadge; params[Param.ShowLiveboardReverifyBanner] = showLiveboardReverifyBanner; params[Param.HideIrrelevantFiltersInTab] = hideIrrelevantChipsInLiveboardTabs; diff --git a/src/embed/liveboard.spec.ts b/src/embed/liveboard.spec.ts index 9aee48740..c863d7046 100644 --- a/src/embed/liveboard.spec.ts +++ b/src/embed/liveboard.spec.ts @@ -183,6 +183,21 @@ describe('Liveboard/viz embed tests', () => { }); }); + test('should set isLiveboardPermissionV2Enabled to true in url', async () => { + const liveboardEmbed = new LiveboardEmbed(getRootEl(), { + isEnhancedFilterInteractivityEnabled: true, + ...defaultViewConfig, + liveboardId, + } as LiveboardViewConfig); + liveboardEmbed.render(); + await executeAfterWait(() => { + expectUrlMatchesWithParams( + getIFrameSrc(), + `http://${thoughtSpotHost}/?embedApp=true${defaultParams}&isLiveboardPermissionV2Enabled=true${prefixParams}#/embed/viz/${liveboardId}`, + ); + }); + }); + test('should set isPNGInScheduledEmailsEnabled to true in url', async () => { const liveboardEmbed = new LiveboardEmbed(getRootEl(), { isPNGInScheduledEmailsEnabled: true, diff --git a/src/embed/liveboard.ts b/src/embed/liveboard.ts index d5a9c9ae8..e730e73ae 100644 --- a/src/embed/liveboard.ts +++ b/src/embed/liveboard.ts @@ -465,6 +465,7 @@ export class LiveboardEmbed extends V1Embed { showLiveboardVerifiedBadge = true, showLiveboardReverifyBanner = true, hideIrrelevantChipsInLiveboardTabs = false, + isEnhancedFilterInteractivityEnabled = false, enableAskSage, enable2ColumnLayout, dataPanelV2 = true, @@ -569,6 +570,7 @@ export class LiveboardEmbed extends V1Embed { params[Param.ShowLiveboardVerifiedBadge] = showLiveboardVerifiedBadge; params[Param.ShowLiveboardReverifyBanner] = showLiveboardReverifyBanner; params[Param.HideIrrelevantFiltersInTab] = hideIrrelevantChipsInLiveboardTabs; + params[Param.IsEnhancedFilterInteractivityEnabled] = isEnhancedFilterInteractivityEnabled; params[Param.DataPanelV2Enabled] = dataPanelV2; params[Param.EnableCustomColumnGroups] = enableCustomColumnGroups; params[Param.CoverAndFilterOptionInPDF] = coverAndFilterOptionInPDF; diff --git a/src/types.ts b/src/types.ts index ae2623aa9..d63269343 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1545,7 +1545,22 @@ export interface LiveboardAppEmbedViewConfig { * ``` */ isLinkParametersEnabled?: boolean; - + + /** + * This flag is used to enable or disable the enhanced filter interactivity in liveboard. + * + * Supported embed types: `AppEmbed`, `LiveboardEmbed` + * @version SDK: 1.42.0 | ThoughtSpot: 10.15.0.cl + * @example + * ```js + * // Replace with embed component name. For example, AppEmbed or LiveboardEmbed + * const embed = new ('#tsEmbed', { + * ... // other embed view config + * isEnhancedFilterInteractivityEnabled: true, + * }) + * ``` + */ + isEnhancedFilterInteractivityEnabled?: boolean; } export interface AllEmbedViewConfig extends BaseViewConfig, SearchLiveboardCommonViewConfig, HomePageConfig, LiveboardAppEmbedViewConfig { } @@ -4368,6 +4383,7 @@ export enum Param { ShowLiveboardReverifyBanner = 'showLiveboardReverifyBanner', LiveboardHeaderV2 = 'isLiveboardHeaderV2Enabled', HideIrrelevantFiltersInTab = 'hideIrrelevantFiltersAtTabLevel', + IsEnhancedFilterInteractivityEnabled = 'isLiveboardPermissionV2Enabled', SpotterEnabled = 'isSpotterExperienceEnabled', IsUnifiedSearchExperienceEnabled = 'isUnifiedSearchExperienceEnabled', OverrideOrgId = 'orgId', diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 1b24436a3..e19e14c85 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 2094, + "id": 2091, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 2207, + "id": 2204, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -48,14 +48,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5455, + "line": 5471, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2114, + "id": 2111, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -76,14 +76,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4601, + "line": 4617, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 2107, + "id": 2104, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -104,14 +104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4530, + "line": 4546, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 2106, + "id": 2103, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -128,14 +128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4519, + "line": 4535, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 2112, + "id": 2109, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -152,14 +152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4582, + "line": 4598, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 2113, + "id": 2110, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -176,14 +176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4591, + "line": 4607, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 2115, + "id": 2112, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -204,14 +204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4611, + "line": 4627, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 2189, + "id": 2186, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -232,14 +232,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5249, + "line": 5265, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 2162, + "id": 2159, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -260,14 +260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4971, + "line": 4987, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 2204, + "id": 2201, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -288,14 +288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5422, + "line": 5438, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 2161, + "id": 2158, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -316,14 +316,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4959, + "line": 4975, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2160, + "id": 2157, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -344,14 +344,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4947, + "line": 4963, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2203, + "id": 2200, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -373,14 +373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5411, + "line": 5427, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 2173, + "id": 2170, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -401,14 +401,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5084, + "line": 5100, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 2176, + "id": 2173, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -429,14 +429,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5118, + "line": 5134, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 2181, + "id": 2178, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -457,14 +457,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5173, + "line": 5189, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 2175, + "id": 2172, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -485,14 +485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5107, + "line": 5123, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 2178, + "id": 2175, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -513,14 +513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5141, + "line": 5157, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 2182, + "id": 2179, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -541,14 +541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5183, + "line": 5199, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 2179, + "id": 2176, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -569,14 +569,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5152, + "line": 5168, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 2184, + "id": 2181, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -597,14 +597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5205, + "line": 5221, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 2180, + "id": 2177, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -625,14 +625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5162, + "line": 5178, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 2177, + "id": 2174, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -653,14 +653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5129, + "line": 5145, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 2183, + "id": 2180, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -681,14 +681,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5193, + "line": 5209, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 2174, + "id": 2171, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -709,14 +709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5095, + "line": 5111, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 2216, + "id": 2213, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -737,14 +737,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5553, + "line": 5569, "character": 4 } ], "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 2111, + "id": 2108, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -761,14 +761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4573, + "line": 4589, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 2110, + "id": 2107, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -789,14 +789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4564, + "line": 4580, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 2109, + "id": 2106, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -817,14 +817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4552, + "line": 4568, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 2223, + "id": 2220, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -845,14 +845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5629, + "line": 5645, "character": 4 } ], "defaultValue": "\"columnRename\"" }, { - "id": 2108, + "id": 2105, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -869,14 +869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4541, + "line": 4557, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 2153, + "id": 2150, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -884,14 +884,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4898, + "line": 4914, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 2101, + "id": 2098, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -908,14 +908,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4478, + "line": 4494, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2152, + "id": 2149, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -932,14 +932,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4897, + "line": 4913, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2224, + "id": 2221, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -960,14 +960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5639, + "line": 5655, "character": 4 } ], "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 2201, + "id": 2198, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -988,14 +988,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5386, + "line": 5402, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 2164, + "id": 2161, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1016,14 +1016,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4991, + "line": 5007, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2169, + "id": 2166, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1044,14 +1044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5042, + "line": 5058, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 2221, + "id": 2218, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1072,14 +1072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5610, + "line": 5626, "character": 4 } ], "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 2213, + "id": 2210, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1100,14 +1100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5522, + "line": 5538, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 2215, + "id": 2212, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1128,14 +1128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5541, + "line": 5557, "character": 4 } ], "defaultValue": "\"disableChipReorder\"" }, { - "id": 2123, + "id": 2120, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1152,14 +1152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4661, + "line": 4677, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 2126, + "id": 2123, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1176,14 +1176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4694, + "line": 4710, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2125, + "id": 2122, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1201,14 +1201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4684, + "line": 4700, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2124, + "id": 2121, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1225,14 +1225,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4671, + "line": 4687, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2127, + "id": 2124, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1249,14 +1249,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4704, + "line": 4720, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2157, + "id": 2154, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1273,14 +1273,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4914, + "line": 4930, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 2151, + "id": 2148, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1297,14 +1297,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4887, + "line": 4903, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 2150, + "id": 2147, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1321,14 +1321,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4878, + "line": 4894, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 2135, + "id": 2132, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1345,14 +1345,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4780, + "line": 4796, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2100, + "id": 2097, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1369,14 +1369,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4469, + "line": 4485, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 2163, + "id": 2160, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1397,14 +1397,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4980, + "line": 4996, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 2155, + "id": 2152, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1412,14 +1412,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4903, + "line": 4919, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 2220, + "id": 2217, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1440,14 +1440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5599, + "line": 5615, "character": 4 } ], "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 2193, + "id": 2190, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1468,14 +1468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5293, + "line": 5309, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 2208, + "id": 2205, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1496,14 +1496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5468, + "line": 5484, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 2132, + "id": 2129, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1520,14 +1520,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4748, + "line": 4764, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2136, + "id": 2133, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1544,14 +1544,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4788, + "line": 4804, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 2222, + "id": 2219, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1572,14 +1572,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5620, + "line": 5636, "character": 4 } ], "defaultValue": "\"editTokens\"" }, { - "id": 2190, + "id": 2187, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1600,14 +1600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5259, + "line": 5275, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 2191, + "id": 2188, "name": "EnableIterativeChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1628,14 +1628,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5270, + "line": 5286, "character": 4 } ], "defaultValue": "\"enableIterativeChangeAnalysis\"" }, { - "id": 2149, + "id": 2146, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1652,14 +1652,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4867, + "line": 4883, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2129, + "id": 2126, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1677,14 +1677,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4720, + "line": 4736, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2130, + "id": 2127, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1701,14 +1701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4730, + "line": 4746, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 2225, + "id": 2222, "name": "InConversationTraining", "kind": 16, "kindString": "Enumeration member", @@ -1729,14 +1729,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5655, + "line": 5671, "character": 4 } ], "defaultValue": "\"InConversationTraining\"" }, { - "id": 2214, + "id": 2211, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1757,14 +1757,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5532, + "line": 5548, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 2143, + "id": 2140, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1781,14 +1781,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4829, + "line": 4845, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2231, + "id": 2228, "name": "LiveboardStylePanel", "kind": 16, "kindString": "Enumeration member", @@ -1809,14 +1809,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5721, + "line": 5737, "character": 4 } ], "defaultValue": "\"liveboardStylePanel\"" }, { - "id": 2199, + "id": 2196, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1837,14 +1837,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5354, + "line": 5370, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 2099, + "id": 2096, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1861,14 +1861,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4460, + "line": 4476, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2197, + "id": 2194, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1885,14 +1885,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5334, + "line": 5350, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2168, + "id": 2165, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1913,14 +1913,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5032, + "line": 5048, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2212, + "id": 2209, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1941,14 +1941,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5511, + "line": 5527, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 2188, + "id": 2185, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1969,14 +1969,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5239, + "line": 5255, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 2195, + "id": 2192, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1996,14 +1996,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5314, + "line": 5330, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 2196, + "id": 2193, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -2020,14 +2020,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5323, + "line": 5339, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 2206, + "id": 2203, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -2048,14 +2048,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5444, + "line": 5460, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 2209, + "id": 2206, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2076,14 +2076,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5479, + "line": 5495, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 2198, + "id": 2195, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2104,14 +2104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5344, + "line": 5360, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 2146, + "id": 2143, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2128,14 +2128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4846, + "line": 4862, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2229, + "id": 2226, "name": "PngScreenshotInEmail", "kind": 16, "kindString": "Enumeration member", @@ -2152,14 +2152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5699, + "line": 5715, "character": 4 } ], "defaultValue": "\"pngScreenshotInEmail\"" }, { - "id": 2133, + "id": 2130, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2176,14 +2176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4758, + "line": 4774, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2217, + "id": 2214, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2204,14 +2204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5565, + "line": 5581, "character": 4 } ], "defaultValue": "\"previewDataSpotter\"" }, { - "id": 2159, + "id": 2156, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2229,14 +2229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4937, + "line": 4953, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 2137, + "id": 2134, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2253,14 +2253,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4798, + "line": 4814, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2230, + "id": 2227, "name": "RemoveAttachment", "kind": 16, "kindString": "Enumeration member", @@ -2281,14 +2281,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5711, + "line": 5727, "character": 4 } ], "defaultValue": "\"removeAttachment\"" }, { - "id": 2172, + "id": 2169, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2309,14 +2309,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5073, + "line": 5089, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 2205, + "id": 2202, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2337,14 +2337,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5433, + "line": 5449, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 2186, + "id": 2183, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2365,14 +2365,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5219, + "line": 5235, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 2165, + "id": 2162, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2396,14 +2396,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5001, + "line": 5017, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 2158, + "id": 2155, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2420,14 +2420,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4923, + "line": 4939, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 2187, + "id": 2184, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2448,14 +2448,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5229, + "line": 5245, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 2218, + "id": 2215, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2476,14 +2476,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5577, + "line": 5593, "character": 4 } ], "defaultValue": "\"resetSpotterChat\"" }, { - "id": 2194, + "id": 2191, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2504,14 +2504,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5305, + "line": 5321, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 2095, + "id": 2092, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2528,14 +2528,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4429, + "line": 4445, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2098, + "id": 2095, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2552,14 +2552,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4447, + "line": 4463, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 2103, + "id": 2100, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2576,14 +2576,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4492, + "line": 4508, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2104, + "id": 2101, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2600,14 +2600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4501, + "line": 4517, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2156, + "id": 2153, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2615,14 +2615,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4904, + "line": 4920, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 2105, + "id": 2102, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2639,14 +2639,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4510, + "line": 4526, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2120, + "id": 2117, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2657,14 +2657,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4636, + "line": 4652, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 2192, + "id": 2189, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2685,14 +2685,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5280, + "line": 5296, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 2122, + "id": 2119, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2709,14 +2709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4651, + "line": 4667, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2117, + "id": 2114, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2733,14 +2733,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4624, + "line": 4640, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2219, + "id": 2216, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2761,14 +2761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5588, + "line": 5604, "character": 4 } ], "defaultValue": "\"spotterFeedback\"" }, { - "id": 2228, + "id": 2225, "name": "SpotterTokenQuickEdit", "kind": 16, "kindString": "Enumeration member", @@ -2789,14 +2789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5688, + "line": 5704, "character": 4 } ], "defaultValue": "\"SpotterTokenQuickEdit\"" }, { - "id": 2226, + "id": 2223, "name": "SpotterWarningsBanner", "kind": 16, "kindString": "Enumeration member", @@ -2817,14 +2817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5666, + "line": 5682, "character": 4 } ], "defaultValue": "\"SpotterWarningsBanner\"" }, { - "id": 2227, + "id": 2224, "name": "SpotterWarningsOnTokens", "kind": 16, "kindString": "Enumeration member", @@ -2845,14 +2845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5677, + "line": 5693, "character": 4 } ], "defaultValue": "\"SpotterWarningsOnTokens\"" }, { - "id": 2148, + "id": 2145, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2869,14 +2869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4859, + "line": 4875, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2167, + "id": 2164, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2897,14 +2897,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5022, + "line": 5038, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2166, + "id": 2163, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2925,14 +2925,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5011, + "line": 5027, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2170, + "id": 2167, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2953,14 +2953,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5052, + "line": 5068, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 2171, + "id": 2168, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2981,14 +2981,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5062, + "line": 5078, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 2200, + "id": 2197, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -3013,14 +3013,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5373, + "line": 5389, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 2134, + "id": 2131, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -3037,14 +3037,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4770, + "line": 4786, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 2211, + "id": 2208, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3065,14 +3065,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5501, + "line": 5517, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 2131, + "id": 2128, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -3089,14 +3089,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4739, + "line": 4755, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2202, + "id": 2199, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -3117,14 +3117,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5397, + "line": 5413, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 2210, + "id": 2207, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3145,7 +3145,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5490, + "line": 5506, "character": 4 } ], @@ -3157,138 +3157,138 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2207, - 2114, - 2107, - 2106, - 2112, - 2113, - 2115, - 2189, - 2162, 2204, - 2161, - 2160, - 2203, + 2111, + 2104, + 2103, + 2109, + 2110, + 2112, + 2186, + 2159, + 2201, + 2158, + 2157, + 2200, + 2170, 2173, - 2176, - 2181, - 2175, 2178, - 2182, + 2172, + 2175, 2179, - 2184, - 2180, + 2176, + 2181, 2177, - 2183, 2174, - 2216, - 2111, - 2110, - 2109, - 2223, + 2180, + 2171, + 2213, 2108, - 2153, - 2101, - 2152, - 2224, - 2201, - 2164, - 2169, + 2107, + 2106, + 2220, + 2105, + 2150, + 2098, + 2149, 2221, - 2213, - 2215, + 2198, + 2161, + 2166, + 2218, + 2210, + 2212, + 2120, 2123, - 2126, - 2125, + 2122, + 2121, 2124, - 2127, - 2157, - 2151, - 2150, - 2135, - 2100, - 2163, - 2155, - 2220, - 2193, - 2208, + 2154, + 2148, + 2147, 2132, - 2136, - 2222, + 2097, + 2160, + 2152, + 2217, 2190, - 2191, - 2149, + 2205, 2129, - 2130, - 2225, - 2214, - 2143, - 2231, - 2199, - 2099, - 2197, - 2168, - 2212, - 2188, - 2195, - 2196, - 2206, - 2209, - 2198, - 2146, - 2229, 2133, - 2217, - 2159, - 2137, - 2230, - 2172, - 2205, - 2186, - 2165, - 2158, + 2219, 2187, - 2218, + 2188, + 2146, + 2126, + 2127, + 2222, + 2211, + 2140, + 2228, + 2196, + 2096, 2194, - 2095, - 2098, - 2103, - 2104, - 2156, - 2105, - 2120, + 2165, + 2209, + 2185, 2192, - 2122, - 2117, - 2219, - 2228, + 2193, + 2203, + 2206, + 2195, + 2143, 2226, + 2130, + 2214, + 2156, + 2134, 2227, - 2148, + 2169, + 2202, + 2183, + 2162, + 2155, + 2184, + 2215, + 2191, + 2092, + 2095, + 2100, + 2101, + 2153, + 2102, + 2117, + 2189, + 2119, + 2114, + 2216, + 2225, + 2223, + 2224, + 2145, + 2164, + 2163, 2167, - 2166, - 2170, - 2171, - 2200, - 2134, - 2211, + 2168, + 2197, 2131, - 2202, - 2210 + 2208, + 2128, + 2199, + 2207 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4420, + "line": 4436, "character": 12 } ] }, { - "id": 1747, + "id": 1744, "name": "AuthEvent", "kind": 4, "kindString": "Enumeration", @@ -3304,7 +3304,7 @@ }, "children": [ { - "id": 1748, + "id": 1745, "name": "TRIGGER_SSO_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3327,7 +3327,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1748 + 1745 ] } ], @@ -3340,7 +3340,7 @@ ] }, { - "id": 1732, + "id": 1729, "name": "AuthFailureType", "kind": 4, "kindString": "Enumeration", @@ -3356,7 +3356,7 @@ }, "children": [ { - "id": 1735, + "id": 1732, "name": "EXPIRY", "kind": 16, "kindString": "Enumeration member", @@ -3371,7 +3371,7 @@ "defaultValue": "\"EXPIRY\"" }, { - "id": 1737, + "id": 1734, "name": "IDLE_SESSION_TIMEOUT", "kind": 16, "kindString": "Enumeration member", @@ -3386,7 +3386,7 @@ "defaultValue": "\"IDLE_SESSION_TIMEOUT\"" }, { - "id": 1734, + "id": 1731, "name": "NO_COOKIE_ACCESS", "kind": 16, "kindString": "Enumeration member", @@ -3401,7 +3401,7 @@ "defaultValue": "\"NO_COOKIE_ACCESS\"" }, { - "id": 1736, + "id": 1733, "name": "OTHER", "kind": 16, "kindString": "Enumeration member", @@ -3416,7 +3416,7 @@ "defaultValue": "\"OTHER\"" }, { - "id": 1733, + "id": 1730, "name": "SDK", "kind": 16, "kindString": "Enumeration member", @@ -3431,7 +3431,7 @@ "defaultValue": "\"SDK\"" }, { - "id": 1738, + "id": 1735, "name": "UNAUTHENTICATED_FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3451,12 +3451,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1735, - 1737, + 1732, 1734, - 1736, + 1731, 1733, - 1738 + 1730, + 1735 ] } ], @@ -3469,7 +3469,7 @@ ] }, { - "id": 1739, + "id": 1736, "name": "AuthStatus", "kind": 4, "kindString": "Enumeration", @@ -3485,7 +3485,7 @@ }, "children": [ { - "id": 1740, + "id": 1737, "name": "FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3503,7 +3503,7 @@ "defaultValue": "\"FAILURE\"" }, { - "id": 1744, + "id": 1741, "name": "LOGOUT", "kind": 16, "kindString": "Enumeration member", @@ -3521,7 +3521,7 @@ "defaultValue": "\"LOGOUT\"" }, { - "id": 1746, + "id": 1743, "name": "SAML_POPUP_CLOSED_NO_AUTH", "kind": 16, "kindString": "Enumeration member", @@ -3539,7 +3539,7 @@ "defaultValue": "\"SAML_POPUP_CLOSED_NO_AUTH\"" }, { - "id": 1741, + "id": 1738, "name": "SDK_SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3557,7 +3557,7 @@ "defaultValue": "\"SDK_SUCCESS\"" }, { - "id": 1743, + "id": 1740, "name": "SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3575,7 +3575,7 @@ "defaultValue": "\"SUCCESS\"" }, { - "id": 1745, + "id": 1742, "name": "WAITING_FOR_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3604,12 +3604,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1740, - 1744, - 1746, + 1737, 1741, 1743, - 1745 + 1738, + 1740, + 1742 ] } ], @@ -3622,7 +3622,7 @@ ] }, { - "id": 1894, + "id": 1891, "name": "AuthType", "kind": 4, "kindString": "Enumeration", @@ -3638,7 +3638,7 @@ }, "children": [ { - "id": 1905, + "id": 1902, "name": "Basic", "kind": 16, "kindString": "Enumeration member", @@ -3657,7 +3657,7 @@ "defaultValue": "\"Basic\"" }, { - "id": 1896, + "id": 1893, "name": "EmbeddedSSO", "kind": 16, "kindString": "Enumeration member", @@ -3686,7 +3686,7 @@ "defaultValue": "\"EmbeddedSSO\"" }, { - "id": 1895, + "id": 1892, "name": "None", "kind": 16, "kindString": "Enumeration member", @@ -3710,7 +3710,7 @@ "defaultValue": "\"None\"" }, { - "id": 1901, + "id": 1898, "name": "OIDCRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3728,7 +3728,7 @@ "defaultValue": "\"SSO_OIDC\"" }, { - "id": 1899, + "id": 1896, "name": "SAMLRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3761,7 +3761,7 @@ "defaultValue": "\"SSO_SAML\"" }, { - "id": 1903, + "id": 1900, "name": "TrustedAuthToken", "kind": 16, "kindString": "Enumeration member", @@ -3785,7 +3785,7 @@ "defaultValue": "\"AuthServer\"" }, { - "id": 1904, + "id": 1901, "name": "TrustedAuthTokenCookieless", "kind": 16, "kindString": "Enumeration member", @@ -3818,13 +3818,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1905, + 1902, + 1893, + 1892, + 1898, 1896, - 1895, - 1901, - 1899, - 1903, - 1904 + 1900, + 1901 ] } ], @@ -3837,7 +3837,7 @@ ] }, { - "id": 2232, + "id": 2229, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3847,7 +3847,7 @@ }, "children": [ { - "id": 2235, + "id": 2232, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3855,14 +3855,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5742, + "line": 5758, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 2233, + "id": 2230, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3870,14 +3870,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5740, + "line": 5756, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 2234, + "id": 2231, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3885,7 +3885,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5741, + "line": 5757, "character": 4 } ], @@ -3897,22 +3897,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2235, - 2233, - 2234 + 2232, + 2230, + 2231 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5739, + "line": 5755, "character": 12 } ] }, { - "id": 2897, + "id": 2896, "name": "CustomActionTarget", "kind": 4, "kindString": "Enumeration", @@ -3922,7 +3922,7 @@ }, "children": [ { - "id": 2900, + "id": 2899, "name": "ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -3930,14 +3930,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5827, + "line": 5843, "character": 4 } ], "defaultValue": "\"ANSWER\"" }, { - "id": 2898, + "id": 2897, "name": "LIVEBOARD", "kind": 16, "kindString": "Enumeration member", @@ -3945,14 +3945,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5825, + "line": 5841, "character": 4 } ], "defaultValue": "\"LIVEBOARD\"" }, { - "id": 2901, + "id": 2900, "name": "SPOTTER", "kind": 16, "kindString": "Enumeration member", @@ -3960,14 +3960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5828, + "line": 5844, "character": 4 } ], "defaultValue": "\"SPOTTER\"" }, { - "id": 2899, + "id": 2898, "name": "VIZ", "kind": 16, "kindString": "Enumeration member", @@ -3975,7 +3975,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5826, + "line": 5842, "character": 4 } ], @@ -3987,23 +3987,23 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2899, + 2897, 2900, - 2898, - 2901, - 2899 + 2898 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5824, + "line": 5840, "character": 12 } ] }, { - "id": 2893, + "id": 2892, "name": "CustomActionsPosition", "kind": 4, "kindString": "Enumeration", @@ -4013,7 +4013,7 @@ }, "children": [ { - "id": 2896, + "id": 2895, "name": "CONTEXTMENU", "kind": 16, "kindString": "Enumeration member", @@ -4021,14 +4021,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5818, + "line": 5834, "character": 4 } ], "defaultValue": "\"CONTEXTMENU\"" }, { - "id": 2895, + "id": 2894, "name": "MENU", "kind": 16, "kindString": "Enumeration member", @@ -4036,14 +4036,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5817, + "line": 5833, "character": 4 } ], "defaultValue": "\"MENU\"" }, { - "id": 2894, + "id": 2893, "name": "PRIMARY", "kind": 16, "kindString": "Enumeration member", @@ -4051,7 +4051,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5816, + "line": 5832, "character": 4 } ], @@ -4063,22 +4063,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2896, 2895, - 2894 + 2894, + 2893 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5815, + "line": 5831, "character": 12 } ] }, { - "id": 2889, + "id": 2888, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -4088,7 +4088,7 @@ }, "children": [ { - "id": 2891, + "id": 2890, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4106,7 +4106,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 2890, + "id": 2889, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4124,7 +4124,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 2892, + "id": 2891, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -4147,9 +4147,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2891, 2890, - 2892 + 2889, + 2891 ] } ], @@ -4162,7 +4162,7 @@ ] }, { - "id": 2090, + "id": 2087, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -4172,7 +4172,7 @@ }, "children": [ { - "id": 2092, + "id": 2089, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -4183,14 +4183,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4252, + "line": 4267, "character": 4 } ], "defaultValue": "\"collapse\"" }, { - "id": 2093, + "id": 2090, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -4201,14 +4201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4256, + "line": 4271, "character": 4 } ], "defaultValue": "\"expand\"" }, { - "id": 2091, + "id": 2088, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -4219,7 +4219,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4248, + "line": 4263, "character": 4 } ], @@ -4231,22 +4231,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2092, - 2093, - 2091 + 2089, + 2090, + 2088 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4244, + "line": 4259, "character": 12 } ] }, { - "id": 1926, + "id": 1923, "name": "EmbedEvent", "kind": 4, "kindString": "Enumeration", @@ -4271,7 +4271,7 @@ }, "children": [ { - "id": 1954, + "id": 1951, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -4292,14 +4292,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2172, + "line": 2187, "character": 4 } ], "defaultValue": "\"*\"" }, { - "id": 1934, + "id": 1931, "name": "AddRemoveColumns", "kind": 16, "kindString": "Enumeration member", @@ -4324,14 +4324,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1938, + "line": 1953, "character": 4 } ], "defaultValue": "\"addRemoveColumns\"" }, { - "id": 1978, + "id": 1975, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -4352,14 +4352,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2483, + "line": 2498, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 1939, + "id": 1936, "name": "Alert", "kind": 16, "kindString": "Enumeration member", @@ -4384,14 +4384,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2030, + "line": 2045, "character": 4 } ], "defaultValue": "\"alert\"" }, { - "id": 1974, + "id": 1971, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -4412,14 +4412,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2451, + "line": 2466, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1961, + "id": 1958, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -4440,14 +4440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2276, + "line": 2291, "character": 4 } ], "defaultValue": "\"answerDelete\"" }, { - "id": 2001, + "id": 1998, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -4480,14 +4480,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2692, + "line": 2707, "character": 4 } ], "defaultValue": "\"AskSageInit\"" }, { - "id": 1940, + "id": 1937, "name": "AuthExpire", "kind": 16, "kindString": "Enumeration member", @@ -4508,14 +4508,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2043, + "line": 2058, "character": 4 } ], "defaultValue": "\"ThoughtspotAuthExpired\"" }, { - "id": 1928, + "id": 1925, "name": "AuthInit", "kind": 16, "kindString": "Enumeration member", @@ -4540,14 +4540,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1840, + "line": 1855, "character": 4 } ], "defaultValue": "\"authInit\"" }, { - "id": 1985, + "id": 1982, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -4568,14 +4568,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2559, + "line": 2574, "character": 4 } ], "defaultValue": "\"cancel\"" }, { - "id": 1972, + "id": 1969, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -4596,14 +4596,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2429, + "line": 2444, "character": 4 } ], "defaultValue": "\"copyAEdit\"" }, { - "id": 1987, + "id": 1984, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -4624,14 +4624,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2579, + "line": 2594, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1967, + "id": 1964, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -4652,14 +4652,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2366, + "line": 2381, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1995, + "id": 1992, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -4676,14 +4676,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2643, + "line": 2658, "character": 4 } ], "defaultValue": "\"createConnection\"" }, { - "id": 2006, + "id": 2003, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -4701,14 +4701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2823, + "line": 2838, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 2007, + "id": 2004, "name": "CreateModel", "kind": 16, "kindString": "Enumeration member", @@ -4725,14 +4725,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2828, + "line": 2843, "character": 4 } ], "defaultValue": "\"createModel\"" }, { - "id": 2000, + "id": 1997, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -4749,14 +4749,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2683, + "line": 2698, "character": 4 } ], "defaultValue": "\"createWorksheet\"" }, { - "id": 1988, + "id": 1985, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4777,14 +4777,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2590, + "line": 2605, "character": 4 } ], "defaultValue": "\"cross-filter-changed\"" }, { - "id": 1935, + "id": 1932, "name": "CustomAction", "kind": 16, "kindString": "Enumeration member", @@ -4813,14 +4813,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1955, + "line": 1970, "character": 4 } ], "defaultValue": "\"customAction\"" }, { - "id": 1930, + "id": 1927, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -4849,14 +4849,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1868, + "line": 1883, "character": 4 } ], "defaultValue": "\"data\"" }, { - "id": 1933, + "id": 1930, "name": "DataSourceSelected", "kind": 16, "kindString": "Enumeration member", @@ -4881,14 +4881,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1926, + "line": 1941, "character": 4 } ], "defaultValue": "\"dataSourceSelected\"" }, { - "id": 1983, + "id": 1980, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -4909,14 +4909,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2541, + "line": 2556, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1999, + "id": 1996, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -4941,14 +4941,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2678, + "line": 2693, "character": 4 } ], "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 1952, + "id": 1949, "name": "DialogClose", "kind": 16, "kindString": "Enumeration member", @@ -4969,14 +4969,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2139, + "line": 2154, "character": 4 } ], "defaultValue": "\"dialog-close\"" }, { - "id": 1951, + "id": 1948, "name": "DialogOpen", "kind": 16, "kindString": "Enumeration member", @@ -4997,14 +4997,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2128, + "line": 2143, "character": 4 } ], "defaultValue": "\"dialog-open\"" }, { - "id": 1956, + "id": 1953, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -5026,14 +5026,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2206, + "line": 2221, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 1959, + "id": 1956, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -5054,14 +5054,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2248, + "line": 2263, "character": 4 } ], "defaultValue": "\"downloadAsCsv\"" }, { - "id": 1958, + "id": 1955, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -5082,14 +5082,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2234, + "line": 2249, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1957, + "id": 1954, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -5110,14 +5110,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2220, + "line": 2235, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1960, + "id": 1957, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -5138,14 +5138,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2262, + "line": 2277, "character": 4 } ], "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 1966, + "id": 1963, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -5166,14 +5166,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2355, + "line": 2370, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1965, + "id": 1962, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -5194,14 +5194,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2343, + "line": 2358, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1932, + "id": 1929, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -5238,14 +5238,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1914, + "line": 1929, "character": 4 } ], "defaultValue": "\"drillDown\"" }, { - "id": 1980, + "id": 1977, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -5266,14 +5266,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2505, + "line": 2520, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1969, + "id": 1966, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -5294,14 +5294,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2389, + "line": 2404, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 1938, + "id": 1935, "name": "Error", "kind": 16, "kindString": "Enumeration member", @@ -5331,14 +5331,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2020, + "line": 2035, "character": 4 } ], "defaultValue": "\"Error\"" }, { - "id": 1986, + "id": 1983, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -5359,14 +5359,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2569, + "line": 2584, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1970, + "id": 1967, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -5387,14 +5387,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2404, + "line": 2419, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1991, + "id": 1988, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5411,14 +5411,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2620, + "line": 2635, "character": 4 } ], "defaultValue": "\"filterChanged\"" }, { - "id": 1946, + "id": 1943, "name": "GetDataClick", "kind": 16, "kindString": "Enumeration member", @@ -5439,14 +5439,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2085, + "line": 2100, "character": 4 } ], "defaultValue": "\"getDataClick\"" }, { - "id": 1927, + "id": 1924, "name": "Init", "kind": 16, "kindString": "Enumeration member", @@ -5467,14 +5467,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1828, + "line": 1843, "character": 4 } ], "defaultValue": "\"init\"" }, { - "id": 2014, + "id": 2011, "name": "LastPromptDeleted", "kind": 16, "kindString": "Enumeration member", @@ -5495,14 +5495,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2895, + "line": 2910, "character": 4 } ], "defaultValue": "\"LastPromptDeleted\"" }, { - "id": 2013, + "id": 2010, "name": "LastPromptEdited", "kind": 16, "kindString": "Enumeration member", @@ -5523,14 +5523,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2884, + "line": 2899, "character": 4 } ], "defaultValue": "\"LastPromptEdited\"" }, { - "id": 1977, + "id": 1974, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -5551,14 +5551,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2472, + "line": 2487, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1953, + "id": 1950, "name": "LiveboardRendered", "kind": 16, "kindString": "Enumeration member", @@ -5583,14 +5583,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2161, + "line": 2176, "character": 4 } ], "defaultValue": "\"PinboardRendered\"" }, { - "id": 1929, + "id": 1926, "name": "Load", "kind": 16, "kindString": "Enumeration member", @@ -5615,14 +5615,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1854, + "line": 1869, "character": 4 } ], "defaultValue": "\"load\"" }, { - "id": 1981, + "id": 1978, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -5643,14 +5643,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2516, + "line": 2531, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1949, + "id": 1946, "name": "NoCookieAccess", "kind": 16, "kindString": "Enumeration member", @@ -5671,14 +5671,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2111, + "line": 2126, "character": 4 } ], "defaultValue": "\"noCookieAccess\"" }, { - "id": 2003, + "id": 2000, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", @@ -5708,14 +5708,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2756, + "line": 2771, "character": 4 } ], "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 2018, + "id": 2015, "name": "OrgSwitched", "kind": 16, "kindString": "Enumeration member", @@ -5736,14 +5736,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2940, + "line": 2955, "character": 4 } ], "defaultValue": "\"orgSwitched\"" }, { - "id": 2004, + "id": 2001, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5760,14 +5760,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2767, + "line": 2782, "character": 4 } ], "defaultValue": "\"parameterChanged\"" }, { - "id": 1962, + "id": 1959, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -5788,14 +5788,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2295, + "line": 2310, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1982, + "id": 1979, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -5820,14 +5820,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2531, + "line": 2546, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2011, + "id": 2008, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -5848,14 +5848,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2862, + "line": 2877, "character": 4 } ], "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 1931, + "id": 1928, "name": "QueryChanged", "kind": 16, "kindString": "Enumeration member", @@ -5876,14 +5876,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1877, + "line": 1892, "character": 4 } ], "defaultValue": "\"queryChanged\"" }, { - "id": 2002, + "id": 1999, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -5900,14 +5900,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2697, + "line": 2712, "character": 4 } ], "defaultValue": "\"rename\"" }, { - "id": 1998, + "id": 1995, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -5940,14 +5940,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2671, + "line": 2686, "character": 4 } ], "defaultValue": "\"resetLiveboard\"" }, { - "id": 2015, + "id": 2012, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -5968,14 +5968,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2906, + "line": 2921, "character": 4 } ], "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 1947, + "id": 1944, "name": "RouteChange", "kind": 16, "kindString": "Enumeration member", @@ -5996,14 +5996,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2095, + "line": 2110, "character": 4 } ], "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 1992, + "id": 1989, "name": "SageEmbedQuery", "kind": 16, "kindString": "Enumeration member", @@ -6020,14 +6020,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2626, + "line": 2641, "character": 4 } ], "defaultValue": "\"sageEmbedQuery\"" }, { - "id": 1993, + "id": 1990, "name": "SageWorksheetUpdated", "kind": 16, "kindString": "Enumeration member", @@ -6044,14 +6044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2633, + "line": 2648, "character": 4 } ], "defaultValue": "\"sageWorksheetUpdated\"" }, { - "id": 1955, + "id": 1952, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -6072,14 +6072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2190, + "line": 2205, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1971, + "id": 1968, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -6100,14 +6100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2415, + "line": 2430, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 1997, + "id": 1994, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6140,14 +6140,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2662, + "line": 2677, "character": 4 } ], "defaultValue": "\"savePersonalisedView\"" }, { - "id": 1979, + "id": 1976, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -6168,14 +6168,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2494, + "line": 2509, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1984, + "id": 1981, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -6196,14 +6196,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2550, + "line": 2565, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1964, + "id": 1961, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -6224,14 +6224,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2331, + "line": 2346, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1973, + "id": 1970, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -6252,14 +6252,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2440, + "line": 2455, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1963, + "id": 1960, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -6280,14 +6280,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2313, + "line": 2328, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2010, + "id": 2007, "name": "SpotterData", "kind": 16, "kindString": "Enumeration member", @@ -6308,14 +6308,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2851, + "line": 2866, "character": 4 } ], "defaultValue": "\"SpotterData\"" }, { - "id": 2016, + "id": 2013, "name": "SpotterInit", "kind": 16, "kindString": "Enumeration member", @@ -6336,14 +6336,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2917, + "line": 2932, "character": 4 } ], "defaultValue": "\"spotterInit\"" }, { - "id": 2012, + "id": 2009, "name": "SpotterQueryTriggered", "kind": 16, "kindString": "Enumeration member", @@ -6364,14 +6364,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2873, + "line": 2888, "character": 4 } ], "defaultValue": "\"SpotterQueryTriggered\"" }, { - "id": 2005, + "id": 2002, "name": "TableVizRendered", "kind": 16, "kindString": "Enumeration member", @@ -6393,14 +6393,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2810, + "line": 2825, "character": 4 } ], "defaultValue": "\"TableVizRendered\"" }, { - "id": 1994, + "id": 1991, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -6417,14 +6417,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2638, + "line": 2653, "character": 4 } ], "defaultValue": "\"updateConnection\"" }, { - "id": 1996, + "id": 1993, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6457,14 +6457,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2653, + "line": 2668, "character": 4 } ], "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 1968, + "id": 1965, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -6485,14 +6485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2377, + "line": 2392, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1937, + "id": 1934, "name": "VizPointClick", "kind": 16, "kindString": "Enumeration member", @@ -6521,14 +6521,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1986, + "line": 2001, "character": 4 } ], "defaultValue": "\"vizPointClick\"" }, { - "id": 1936, + "id": 1933, "name": "VizPointDoubleClick", "kind": 16, "kindString": "Enumeration member", @@ -6553,14 +6553,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1967, + "line": 1982, "character": 4 } ], "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 1989, + "id": 1986, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -6581,7 +6581,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2601, + "line": 2616, "character": 4 } ], @@ -6593,98 +6593,98 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1954, - 1934, - 1978, - 1939, - 1974, - 1961, - 2001, - 1940, - 1928, - 1985, - 1972, - 1987, - 1967, - 1995, - 2006, - 2007, - 2000, - 1988, - 1935, - 1930, - 1933, - 1983, - 1999, - 1952, 1951, - 1956, - 1959, + 1931, + 1975, + 1936, + 1971, 1958, - 1957, - 1960, - 1966, - 1965, - 1932, - 1980, + 1998, + 1937, + 1925, + 1982, 1969, - 1938, - 1986, - 1970, - 1991, - 1946, - 1927, - 2014, - 2013, - 1977, - 1953, - 1929, - 1981, - 1949, + 1984, + 1964, + 1992, 2003, - 2018, 2004, + 1997, + 1985, + 1932, + 1927, + 1930, + 1980, + 1996, + 1949, + 1948, + 1953, + 1956, + 1955, + 1954, + 1957, + 1963, 1962, - 1982, + 1929, + 1977, + 1966, + 1935, + 1983, + 1967, + 1988, + 1943, + 1924, 2011, - 1931, - 2002, - 1998, + 2010, + 1974, + 1950, + 1926, + 1978, + 1946, + 2000, 2015, - 1947, - 1992, - 1993, - 1955, - 1971, - 1997, + 2001, + 1959, 1979, - 1984, - 1964, - 1973, - 1963, - 2010, - 2016, + 2008, + 1928, + 1999, + 1995, 2012, - 2005, - 1994, - 1996, + 1944, + 1989, + 1990, + 1952, 1968, - 1937, - 1936, - 1989 + 1994, + 1976, + 1981, + 1961, + 1970, + 1960, + 2007, + 2013, + 2009, + 2002, + 1991, + 1993, + 1965, + 1934, + 1933, + 1986 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1815, + "line": 1830, "character": 12 } ] }, { - "id": 2597, + "id": 2596, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -6694,7 +6694,7 @@ }, "children": [ { - "id": 2601, + "id": 2600, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -6717,7 +6717,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2605, + "id": 2604, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6741,7 +6741,7 @@ "defaultValue": "\"create\"" }, { - "id": 2607, + "id": 2606, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -6765,7 +6765,7 @@ "defaultValue": "\"favorites\"" }, { - "id": 2599, + "id": 2598, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6788,7 +6788,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2604, + "id": 2603, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6811,7 +6811,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2600, + "id": 2599, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6834,7 +6834,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2602, + "id": 2601, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6857,7 +6857,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2598, + "id": 2597, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6880,7 +6880,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2603, + "id": 2602, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6903,7 +6903,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2606, + "id": 2605, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -6932,16 +6932,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2601, - 2605, - 2607, - 2599, - 2604, 2600, - 2602, + 2604, + 2606, 2598, 2603, - 2606 + 2599, + 2601, + 2597, + 2602, + 2605 ] } ], @@ -6954,7 +6954,7 @@ ] }, { - "id": 2847, + "id": 2846, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -6970,7 +6970,7 @@ }, "children": [ { - "id": 2848, + "id": 2847, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -6988,7 +6988,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2849, + "id": 2848, "name": "ModularWithStylingChanges", "kind": 16, "kindString": "Enumeration member", @@ -7011,8 +7011,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2848, - 2849 + 2847, + 2848 ] } ], @@ -7025,14 +7025,14 @@ ] }, { - "id": 2841, + "id": 2840, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2843, + "id": 2842, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -7047,7 +7047,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2844, + "id": 2843, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -7062,7 +7062,7 @@ "defaultValue": "\"none\"" }, { - "id": 2842, + "id": 2841, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -7082,9 +7082,9 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2842, 2843, - 2844, - 2842 + 2841 ] } ], @@ -7097,7 +7097,7 @@ ] }, { - "id": 2608, + "id": 2607, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -7113,7 +7113,7 @@ }, "children": [ { - "id": 2611, + "id": 2610, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -7124,14 +7124,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1696, + "line": 1711, "character": 4 } ], "defaultValue": "\"FAVORITE\"" }, { - "id": 2614, + "id": 2613, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -7142,14 +7142,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1708, + "line": 1723, "character": 4 } ], "defaultValue": "\"LEARNING\"" }, { - "id": 2612, + "id": 2611, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -7160,14 +7160,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1700, + "line": 1715, "character": 4 } ], "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2609, + "id": 2608, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7178,14 +7178,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1688, + "line": 1703, "character": 4 } ], "defaultValue": "\"SEARCH\"" }, { - "id": 2613, + "id": 2612, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -7196,14 +7196,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1704, + "line": 1719, "character": 4 } ], "defaultValue": "\"TRENDING\"" }, { - "id": 2610, + "id": 2609, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -7214,7 +7214,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1692, + "line": 1707, "character": 4 } ], @@ -7226,25 +7226,25 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2610, + 2613, 2611, - 2614, + 2608, 2612, - 2609, - 2613, - 2610 + 2609 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1684, + "line": 1699, "character": 12 } ] }, { - "id": 2019, + "id": 2016, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -7273,7 +7273,7 @@ }, "children": [ { - "id": 2030, + "id": 2027, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -7299,14 +7299,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3193, + "line": 3208, "character": 4 } ], "defaultValue": "\"addColumns\"" }, { - "id": 2085, + "id": 2082, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -7332,14 +7332,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4191, + "line": 4206, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2070, + "id": 2067, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -7360,14 +7360,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3998, + "line": 4013, "character": 4 } ], "defaultValue": "\"AskSage\"" }, { - "id": 2088, + "id": 2085, "name": "AskSpotter", "kind": 16, "kindString": "Enumeration member", @@ -7393,14 +7393,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4225, + "line": 4240, "character": 4 } ], "defaultValue": "\"AskSpotter\"" }, { - "id": 2047, + "id": 2044, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -7426,14 +7426,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3507, + "line": 3522, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2044, + "id": 2041, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -7463,14 +7463,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3437, + "line": 3452, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2051, + "id": 2048, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -7496,14 +7496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3584, + "line": 3599, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2084, + "id": 2081, "name": "DeleteLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -7524,14 +7524,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4179, + "line": 4194, "character": 4 } ], "defaultValue": "\"DeleteLastPrompt\"" }, { - "id": 2053, + "id": 2050, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -7561,14 +7561,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3626, + "line": 3641, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2055, + "id": 2052, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -7594,14 +7594,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3669, + "line": 3684, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2040, + "id": 2037, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -7631,14 +7631,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3367, + "line": 3382, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2054, + "id": 2051, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -7659,14 +7659,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3646, + "line": 3661, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2056, + "id": 2053, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -7692,14 +7692,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3692, + "line": 3707, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2021, + "id": 2018, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -7749,14 +7749,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3068, + "line": 3083, "character": 4 } ], "defaultValue": "\"triggerDrillDown\"" }, { - "id": 2046, + "id": 2043, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -7796,14 +7796,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3490, + "line": 3505, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2081, + "id": 2078, "name": "EditLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -7829,14 +7829,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4152, + "line": 4167, "character": 4 } ], "defaultValue": "\"EditLastPrompt\"" }, { - "id": 2038, + "id": 2035, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -7857,14 +7857,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3336, + "line": 3351, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2043, + "id": 2040, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -7890,14 +7890,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3420, + "line": 3435, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2037, + "id": 2034, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -7918,14 +7918,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3326, + "line": 3341, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2069, + "id": 2066, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -7951,14 +7951,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3988, + "line": 4003, "character": 4 } ], "defaultValue": "\"getAnswerSession\"" }, { - "id": 2063, + "id": 2060, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -7979,14 +7979,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3815, + "line": 3830, "character": 4 } ], "defaultValue": "\"getFilters\"" }, { - "id": 2024, + "id": 2021, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -8007,14 +8007,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3090, + "line": 3105, "character": 4 } ], "defaultValue": "\"GetIframeUrl\"" }, { - "id": 2074, + "id": 2071, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -8036,14 +8036,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4055, + "line": 4070, "character": 4 } ], "defaultValue": "\"GetParameters\"" }, { - "id": 2049, + "id": 2046, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -8072,14 +8072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3548, + "line": 3563, "character": 4 } ], "defaultValue": "\"getTML\"" }, { - "id": 2065, + "id": 2062, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -8100,14 +8100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3918, + "line": 3933, "character": 4 } ], "defaultValue": "\"getTabs\"" }, { - "id": 2034, + "id": 2031, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -8128,14 +8128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3298, + "line": 3313, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2041, + "id": 2038, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -8172,14 +8172,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3396, + "line": 3411, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2045, + "id": 2042, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -8213,14 +8213,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3458, + "line": 3473, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2061, + "id": 2058, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -8246,14 +8246,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3792, + "line": 3807, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2028, + "id": 2025, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -8279,14 +8279,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3163, + "line": 3178, "character": 4 } ], "defaultValue": "\"Navigate\"" }, { - "id": 2029, + "id": 2026, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -8316,14 +8316,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3183, + "line": 3198, "character": 4 } ], "defaultValue": "\"openFilter\"" }, { - "id": 2033, + "id": 2030, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -8384,14 +8384,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3288, + "line": 3303, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2048, + "id": 2045, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -8417,14 +8417,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3524, + "line": 3539, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2082, + "id": 2079, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -8445,14 +8445,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4161, + "line": 4176, "character": 4 } ], "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 2042, + "id": 2039, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -8477,14 +8477,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3410, + "line": 3425, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2031, + "id": 2028, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -8510,14 +8510,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3203, + "line": 3218, "character": 4 } ], "defaultValue": "\"removeColumn\"" }, { - "id": 2072, + "id": 2069, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8538,14 +8538,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4023, + "line": 4038, "character": 4 } ], "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 2062, + "id": 2059, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -8566,14 +8566,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3804, + "line": 3819, "character": 4 } ], "defaultValue": "\"resetSearch\"" }, { - "id": 2083, + "id": 2080, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -8594,14 +8594,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4170, + "line": 4185, "character": 4 } ], "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 2058, + "id": 2055, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -8627,14 +8627,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3745, + "line": 3760, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2077, + "id": 2074, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -8669,14 +8669,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4102, + "line": 4117, "character": 4 } ], "defaultValue": "\"saveAnswer\"" }, { - "id": 2035, + "id": 2032, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -8697,14 +8697,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3307, + "line": 3322, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2036, + "id": 2033, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -8725,14 +8725,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3316, + "line": 3331, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2020, + "id": 2017, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -8764,14 +8764,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3017, + "line": 3032, "character": 4 } ], "defaultValue": "\"search\"" }, { - "id": 2026, + "id": 2023, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -8797,14 +8797,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3115, + "line": 3130, "character": 4 } ], "defaultValue": "\"SetActiveTab\"" }, { - "id": 2067, + "id": 2064, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -8830,14 +8830,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3944, + "line": 3959, "character": 4 } ], "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 2066, + "id": 2063, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -8863,14 +8863,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3931, + "line": 3946, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 2025, + "id": 2022, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -8896,14 +8896,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3103, + "line": 3118, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 2057, + "id": 2054, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8924,14 +8924,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3705, + "line": 3720, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2050, + "id": 2047, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -8957,14 +8957,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3567, + "line": 3582, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2052, + "id": 2049, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -8990,14 +8990,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3604, + "line": 3619, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2080, + "id": 2077, "name": "SpotterSearch", "kind": 16, "kindString": "Enumeration member", @@ -9028,14 +9028,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4142, + "line": 4157, "character": 4 } ], "defaultValue": "\"SpotterSearch\"" }, { - "id": 2060, + "id": 2057, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -9061,14 +9061,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3776, + "line": 3791, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2059, + "id": 2056, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -9094,14 +9094,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3760, + "line": 3775, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2079, + "id": 2076, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -9127,14 +9127,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4127, + "line": 4142, "character": 4 } ], "defaultValue": "\"TransformTableVizData\"" }, { - "id": 2071, + "id": 2068, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -9155,14 +9155,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4014, + "line": 4029, "character": 4 } ], "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 2064, + "id": 2061, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -9205,14 +9205,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3905, + "line": 3920, "character": 4 } ], "defaultValue": "\"updateFilters\"" }, { - "id": 2073, + "id": 2070, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -9229,14 +9229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4037, + "line": 4052, "character": 4 } ], "defaultValue": "\"UpdateParameters\"" }, { - "id": 2075, + "id": 2072, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -9253,14 +9253,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4063, + "line": 4078, "character": 4 } ], "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 2027, + "id": 2024, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -9291,14 +9291,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3151, + "line": 3166, "character": 4 } ], "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 2068, + "id": 2065, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -9329,14 +9329,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3958, + "line": 3973, "character": 4 } ], "defaultValue": "\"updateSageQuery\"" }, { - "id": 2039, + "id": 2036, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -9357,14 +9357,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3345, + "line": 3360, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2032, + "id": 2029, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -9385,7 +9385,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3219, + "line": 3234, "character": 4 } ], @@ -9397,82 +9397,82 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2030, + 2027, + 2082, + 2067, 2085, - 2070, - 2088, - 2047, 2044, + 2041, + 2048, + 2081, + 2050, + 2052, + 2037, 2051, - 2084, 2053, - 2055, + 2018, + 2043, + 2078, + 2035, 2040, - 2054, - 2056, + 2034, + 2066, + 2060, 2021, + 2071, 2046, - 2081, + 2062, + 2031, 2038, - 2043, - 2037, - 2069, - 2063, - 2024, - 2074, - 2049, - 2065, - 2034, - 2041, - 2045, - 2061, - 2028, - 2029, - 2033, - 2048, - 2082, 2042, - 2031, - 2072, - 2062, - 2083, 2058, - 2077, - 2035, - 2036, - 2020, - 2026, - 2067, - 2066, 2025, - 2057, - 2050, - 2052, - 2080, - 2060, - 2059, + 2026, + 2030, + 2045, 2079, - 2071, + 2039, + 2028, + 2069, + 2059, + 2080, + 2055, + 2074, + 2032, + 2033, + 2017, + 2023, 2064, - 2073, - 2075, - 2027, + 2063, + 2022, + 2054, + 2047, + 2049, + 2077, + 2057, + 2056, + 2076, 2068, - 2039, - 2032 + 2061, + 2070, + 2072, + 2024, + 2065, + 2036, + 2029 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2997, + "line": 3012, "character": 12 } ] }, { - "id": 2850, + "id": 2849, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -9488,7 +9488,7 @@ }, "children": [ { - "id": 2851, + "id": 2850, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -9506,7 +9506,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2852, + "id": 2851, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -9529,8 +9529,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2851, - 2852 + 2850, + 2851 ] } ], @@ -9543,7 +9543,7 @@ ] }, { - "id": 2883, + "id": 2882, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -9559,7 +9559,7 @@ }, "children": [ { - "id": 2886, + "id": 2885, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -9570,14 +9570,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1729, + "line": 1744, "character": 4 } ], "defaultValue": "\"AUTHOR\"" }, { - "id": 2887, + "id": 2886, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -9588,14 +9588,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1733, + "line": 1748, "character": 4 } ], "defaultValue": "\"DATE_SORT\"" }, { - "id": 2884, + "id": 2883, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -9606,14 +9606,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1721, + "line": 1736, "character": 4 } ], "defaultValue": "\"FAVOURITE\"" }, { - "id": 2888, + "id": 2887, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -9624,14 +9624,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1737, + "line": 1752, "character": 4 } ], "defaultValue": "\"SHARE\"" }, { - "id": 2885, + "id": 2884, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -9642,7 +9642,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1725, + "line": 1740, "character": 4 } ], @@ -9654,24 +9654,24 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2885, 2886, + 2883, 2887, - 2884, - 2888, - 2885 + 2884 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1717, + "line": 1732, "character": 12 } ] }, { - "id": 2818, + "id": 2817, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -9681,7 +9681,7 @@ }, "children": [ { - "id": 2823, + "id": 2822, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -9702,14 +9702,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5902, + "line": 5918, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2820, + "id": 2819, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -9730,14 +9730,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5863, + "line": 5879, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2822, + "id": 2821, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -9758,14 +9758,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5888, + "line": 5904, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2819, + "id": 2818, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -9786,14 +9786,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5851, + "line": 5867, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2824, + "id": 2823, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -9814,14 +9814,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5914, + "line": 5930, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2821, + "id": 2820, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -9842,7 +9842,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5875, + "line": 5891, "character": 4 } ], @@ -9854,25 +9854,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2823, - 2820, 2822, 2819, - 2824, - 2821 + 2821, + 2818, + 2823, + 2820 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5838, + "line": 5854, "character": 12 } ] }, { - "id": 1885, + "id": 1882, "name": "Page", "kind": 4, "kindString": "Enumeration", @@ -9882,7 +9882,7 @@ }, "children": [ { - "id": 1888, + "id": 1885, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -9900,7 +9900,7 @@ "defaultValue": "\"answers\"" }, { - "id": 1891, + "id": 1888, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -9918,7 +9918,7 @@ "defaultValue": "\"data\"" }, { - "id": 1886, + "id": 1883, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -9936,7 +9936,7 @@ "defaultValue": "\"home\"" }, { - "id": 1889, + "id": 1886, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -9954,7 +9954,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 1893, + "id": 1890, "name": "Monitor", "kind": 16, "kindString": "Enumeration member", @@ -9972,7 +9972,7 @@ "defaultValue": "\"monitor\"" }, { - "id": 1887, + "id": 1884, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -9990,7 +9990,7 @@ "defaultValue": "\"search\"" }, { - "id": 1892, + "id": 1889, "name": "SpotIQ", "kind": 16, "kindString": "Enumeration member", @@ -10013,13 +10013,13 @@ "title": "Enumeration members", "kind": 16, "children": [ + 1885, 1888, - 1891, + 1883, 1886, - 1889, - 1893, - 1887, - 1892 + 1890, + 1884, + 1889 ] } ], @@ -10032,14 +10032,14 @@ ] }, { - "id": 2586, + "id": 2585, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2587, + "id": 2586, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -10047,14 +10047,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5729, + "line": 5745, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2589, + "id": 2588, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10062,14 +10062,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5731, + "line": 5747, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2588, + "id": 2587, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10077,14 +10077,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5730, + "line": 5746, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2590, + "id": 2589, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10092,7 +10092,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5732, + "line": 5748, "character": 4 } ], @@ -10104,23 +10104,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2587, - 2589, + 2586, 2588, - 2590 + 2587, + 2589 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5728, + "line": 5744, "character": 12 } ] }, { - "id": 2845, + "id": 2844, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -10136,7 +10136,7 @@ }, "children": [ { - "id": 2846, + "id": 2845, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -10159,7 +10159,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2846 + 2845 ] } ], @@ -10172,7 +10172,7 @@ ] }, { - "id": 1910, + "id": 1907, "name": "RuntimeFilterOp", "kind": 4, "kindString": "Enumeration", @@ -10182,7 +10182,7 @@ }, "children": [ { - "id": 1918, + "id": 1915, "name": "BEGINS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -10193,14 +10193,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1645, + "line": 1660, "character": 4 } ], "defaultValue": "\"BEGINS_WITH\"" }, { - "id": 1923, + "id": 1920, "name": "BW", "kind": 16, "kindString": "Enumeration member", @@ -10211,14 +10211,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1665, + "line": 1680, "character": 4 } ], "defaultValue": "\"BW\"" }, { - "id": 1922, + "id": 1919, "name": "BW_INC", "kind": 16, "kindString": "Enumeration member", @@ -10229,14 +10229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1661, + "line": 1676, "character": 4 } ], "defaultValue": "\"BW_INC\"" }, { - "id": 1920, + "id": 1917, "name": "BW_INC_MAX", "kind": 16, "kindString": "Enumeration member", @@ -10247,14 +10247,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1653, + "line": 1668, "character": 4 } ], "defaultValue": "\"BW_INC_MAX\"" }, { - "id": 1921, + "id": 1918, "name": "BW_INC_MIN", "kind": 16, "kindString": "Enumeration member", @@ -10265,14 +10265,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1657, + "line": 1672, "character": 4 } ], "defaultValue": "\"BW_INC_MIN\"" }, { - "id": 1917, + "id": 1914, "name": "CONTAINS", "kind": 16, "kindString": "Enumeration member", @@ -10283,14 +10283,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1641, + "line": 1656, "character": 4 } ], "defaultValue": "\"CONTAINS\"" }, { - "id": 1919, + "id": 1916, "name": "ENDS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -10301,14 +10301,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1649, + "line": 1664, "character": 4 } ], "defaultValue": "\"ENDS_WITH\"" }, { - "id": 1911, + "id": 1908, "name": "EQ", "kind": 16, "kindString": "Enumeration member", @@ -10319,14 +10319,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1617, + "line": 1632, "character": 4 } ], "defaultValue": "\"EQ\"" }, { - "id": 1916, + "id": 1913, "name": "GE", "kind": 16, "kindString": "Enumeration member", @@ -10337,14 +10337,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1637, + "line": 1652, "character": 4 } ], "defaultValue": "\"GE\"" }, { - "id": 1915, + "id": 1912, "name": "GT", "kind": 16, "kindString": "Enumeration member", @@ -10355,14 +10355,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1633, + "line": 1648, "character": 4 } ], "defaultValue": "\"GT\"" }, { - "id": 1924, + "id": 1921, "name": "IN", "kind": 16, "kindString": "Enumeration member", @@ -10373,14 +10373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1669, + "line": 1684, "character": 4 } ], "defaultValue": "\"IN\"" }, { - "id": 1914, + "id": 1911, "name": "LE", "kind": 16, "kindString": "Enumeration member", @@ -10391,14 +10391,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1629, + "line": 1644, "character": 4 } ], "defaultValue": "\"LE\"" }, { - "id": 1913, + "id": 1910, "name": "LT", "kind": 16, "kindString": "Enumeration member", @@ -10409,14 +10409,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1625, + "line": 1640, "character": 4 } ], "defaultValue": "\"LT\"" }, { - "id": 1912, + "id": 1909, "name": "NE", "kind": 16, "kindString": "Enumeration member", @@ -10427,14 +10427,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1621, + "line": 1636, "character": 4 } ], "defaultValue": "\"NE\"" }, { - "id": 1925, + "id": 1922, "name": "NOT_IN", "kind": 16, "kindString": "Enumeration member", @@ -10445,7 +10445,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1673, + "line": 1688, "character": 4 } ], @@ -10457,41 +10457,41 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1918, - 1923, - 1922, + 1915, 1920, - 1921, - 1917, 1919, - 1911, - 1916, - 1915, - 1924, + 1917, + 1918, 1914, + 1916, + 1908, 1913, 1912, - 1925 + 1921, + 1911, + 1910, + 1909, + 1922 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1613, + "line": 1628, "character": 12 } ] }, { - "id": 2876, + "id": 2875, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2881, + "id": 2880, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -10506,7 +10506,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2880, + "id": 2879, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -10521,7 +10521,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2879, + "id": 2878, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -10536,7 +10536,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2882, + "id": 2881, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -10551,7 +10551,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2877, + "id": 2876, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -10566,7 +10566,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2878, + "id": 2877, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -10586,12 +10586,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2881, 2880, 2879, - 2882, - 2877, - 2878 + 2878, + 2881, + 2876, + 2877 ] } ], @@ -10604,7 +10604,7 @@ ] }, { - "id": 1802, + "id": 1799, "name": "AnswerService", "kind": 128, "kindString": "Class", @@ -10633,7 +10633,7 @@ }, "children": [ { - "id": 1803, + "id": 1800, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -10650,7 +10650,7 @@ ], "signatures": [ { - "id": 1804, + "id": 1801, "name": "new AnswerService", "kind": 16384, "kindString": "Constructor signature", @@ -10660,7 +10660,7 @@ }, "parameters": [ { - "id": 1805, + "id": 1802, "name": "session", "kind": 32768, "kindString": "Parameter", @@ -10668,12 +10668,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1875, + "id": 1872, "name": "SessionInterface" } }, { - "id": 1806, + "id": 1803, "name": "answer", "kind": 32768, "kindString": "Parameter", @@ -10685,7 +10685,7 @@ } }, { - "id": 1807, + "id": 1804, "name": "thoughtSpotHost", "kind": 32768, "kindString": "Parameter", @@ -10697,7 +10697,7 @@ } }, { - "id": 1808, + "id": 1805, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -10711,7 +10711,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2853, + "id": 2852, "name": "VizPoint" } } @@ -10719,14 +10719,14 @@ ], "type": { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } } ] }, { - "id": 1817, + "id": 1814, "name": "addColumns", "kind": 2048, "kindString": "Method", @@ -10742,7 +10742,7 @@ ], "signatures": [ { - "id": 1818, + "id": 1815, "name": "addColumns", "kind": 4096, "kindString": "Call signature", @@ -10753,7 +10753,7 @@ }, "parameters": [ { - "id": 1819, + "id": 1816, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -10782,7 +10782,7 @@ ] }, { - "id": 1820, + "id": 1817, "name": "addColumnsByName", "kind": 2048, "kindString": "Method", @@ -10798,7 +10798,7 @@ ], "signatures": [ { - "id": 1821, + "id": 1818, "name": "addColumnsByName", "kind": 4096, "kindString": "Call signature", @@ -10814,7 +10814,7 @@ }, "parameters": [ { - "id": 1822, + "id": 1819, "name": "columnNames", "kind": 32768, "kindString": "Parameter", @@ -10843,7 +10843,7 @@ ] }, { - "id": 1869, + "id": 1866, "name": "addDisplayedVizToLiveboard", "kind": 2048, "kindString": "Method", @@ -10859,14 +10859,14 @@ ], "signatures": [ { - "id": 1870, + "id": 1867, "name": "addDisplayedVizToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1871, + "id": 1868, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -10891,7 +10891,7 @@ ] }, { - "id": 1823, + "id": 1820, "name": "addFilter", "kind": 2048, "kindString": "Method", @@ -10907,7 +10907,7 @@ ], "signatures": [ { - "id": 1824, + "id": 1821, "name": "addFilter", "kind": 4096, "kindString": "Call signature", @@ -10918,7 +10918,7 @@ }, "parameters": [ { - "id": 1825, + "id": 1822, "name": "columnName", "kind": 32768, "kindString": "Parameter", @@ -10930,7 +10930,7 @@ } }, { - "id": 1826, + "id": 1823, "name": "operator", "kind": 32768, "kindString": "Parameter", @@ -10938,12 +10938,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1910, + "id": 1907, "name": "RuntimeFilterOp" } }, { - "id": 1827, + "id": 1824, "name": "values", "kind": 32768, "kindString": "Parameter", @@ -10989,7 +10989,7 @@ ] }, { - "id": 1859, + "id": 1856, "name": "executeQuery", "kind": 2048, "kindString": "Method", @@ -11005,7 +11005,7 @@ ], "signatures": [ { - "id": 1860, + "id": 1857, "name": "executeQuery", "kind": 4096, "kindString": "Call signature", @@ -11016,7 +11016,7 @@ }, "parameters": [ { - "id": 1861, + "id": 1858, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -11030,7 +11030,7 @@ } }, { - "id": 1862, + "id": 1859, "name": "variables", "kind": 32768, "kindString": "Parameter", @@ -11058,7 +11058,7 @@ ] }, { - "id": 1837, + "id": 1834, "name": "fetchCSVBlob", "kind": 2048, "kindString": "Method", @@ -11074,7 +11074,7 @@ ], "signatures": [ { - "id": 1838, + "id": 1835, "name": "fetchCSVBlob", "kind": 4096, "kindString": "Call signature", @@ -11085,7 +11085,7 @@ }, "parameters": [ { - "id": 1839, + "id": 1836, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11098,7 +11098,7 @@ "defaultValue": "'en-us'" }, { - "id": 1840, + "id": 1837, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -11127,7 +11127,7 @@ ] }, { - "id": 1830, + "id": 1827, "name": "fetchData", "kind": 2048, "kindString": "Method", @@ -11143,7 +11143,7 @@ ], "signatures": [ { - "id": 1831, + "id": 1828, "name": "fetchData", "kind": 4096, "kindString": "Call signature", @@ -11154,7 +11154,7 @@ }, "parameters": [ { - "id": 1832, + "id": 1829, "name": "offset", "kind": 32768, "kindString": "Parameter", @@ -11167,7 +11167,7 @@ "defaultValue": "0" }, { - "id": 1833, + "id": 1830, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -11186,14 +11186,14 @@ { "type": "reflection", "declaration": { - "id": 1834, + "id": 1831, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1835, + "id": 1832, "name": "columns", "kind": 1024, "kindString": "Property", @@ -11204,7 +11204,7 @@ } }, { - "id": 1836, + "id": 1833, "name": "data", "kind": 1024, "kindString": "Property", @@ -11220,8 +11220,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1835, - 1836 + 1832, + 1833 ] } ] @@ -11234,7 +11234,7 @@ ] }, { - "id": 1841, + "id": 1838, "name": "fetchPNGBlob", "kind": 2048, "kindString": "Method", @@ -11250,7 +11250,7 @@ ], "signatures": [ { - "id": 1842, + "id": 1839, "name": "fetchPNGBlob", "kind": 4096, "kindString": "Call signature", @@ -11261,7 +11261,7 @@ }, "parameters": [ { - "id": 1843, + "id": 1840, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11274,7 +11274,7 @@ "defaultValue": "'en-us'" }, { - "id": 1844, + "id": 1841, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -11289,7 +11289,7 @@ "defaultValue": "false" }, { - "id": 1845, + "id": 1842, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -11318,7 +11318,7 @@ ] }, { - "id": 1865, + "id": 1862, "name": "getAnswer", "kind": 2048, "kindString": "Method", @@ -11334,7 +11334,7 @@ ], "signatures": [ { - "id": 1866, + "id": 1863, "name": "getAnswer", "kind": 4096, "kindString": "Call signature", @@ -11353,7 +11353,7 @@ ] }, { - "id": 1846, + "id": 1843, "name": "getFetchCSVBlobUrl", "kind": 2048, "kindString": "Method", @@ -11369,7 +11369,7 @@ ], "signatures": [ { - "id": 1847, + "id": 1844, "name": "getFetchCSVBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -11380,7 +11380,7 @@ }, "parameters": [ { - "id": 1848, + "id": 1845, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11393,7 +11393,7 @@ "defaultValue": "'en-us'" }, { - "id": 1849, + "id": 1846, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -11414,7 +11414,7 @@ ] }, { - "id": 1850, + "id": 1847, "name": "getFetchPNGBlobUrl", "kind": 2048, "kindString": "Method", @@ -11430,7 +11430,7 @@ ], "signatures": [ { - "id": 1851, + "id": 1848, "name": "getFetchPNGBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -11440,7 +11440,7 @@ }, "parameters": [ { - "id": 1852, + "id": 1849, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11453,7 +11453,7 @@ "defaultValue": "'en-us'" }, { - "id": 1853, + "id": 1850, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -11466,7 +11466,7 @@ "defaultValue": "false" }, { - "id": 1854, + "id": 1851, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -11489,7 +11489,7 @@ ] }, { - "id": 1828, + "id": 1825, "name": "getSQLQuery", "kind": 2048, "kindString": "Method", @@ -11505,7 +11505,7 @@ ], "signatures": [ { - "id": 1829, + "id": 1826, "name": "getSQLQuery", "kind": 4096, "kindString": "Call signature", @@ -11524,7 +11524,7 @@ ] }, { - "id": 1863, + "id": 1860, "name": "getSession", "kind": 2048, "kindString": "Method", @@ -11540,7 +11540,7 @@ ], "signatures": [ { - "id": 1864, + "id": 1861, "name": "getSession", "kind": 4096, "kindString": "Call signature", @@ -11551,14 +11551,14 @@ }, "type": { "type": "reference", - "id": 1875, + "id": 1872, "name": "SessionInterface" } } ] }, { - "id": 1812, + "id": 1809, "name": "getSourceDetail", "kind": 2048, "kindString": "Method", @@ -11574,7 +11574,7 @@ ], "signatures": [ { - "id": 1813, + "id": 1810, "name": "getSourceDetail", "kind": 4096, "kindString": "Call signature", @@ -11596,7 +11596,7 @@ ] }, { - "id": 1867, + "id": 1864, "name": "getTML", "kind": 2048, "kindString": "Method", @@ -11612,7 +11612,7 @@ ], "signatures": [ { - "id": 1868, + "id": 1865, "name": "getTML", "kind": 4096, "kindString": "Call signature", @@ -11631,7 +11631,7 @@ ] }, { - "id": 1855, + "id": 1852, "name": "getUnderlyingDataForPoint", "kind": 2048, "kindString": "Method", @@ -11647,7 +11647,7 @@ ], "signatures": [ { - "id": 1856, + "id": 1853, "name": "getUnderlyingDataForPoint", "kind": 4096, "kindString": "Call signature", @@ -11667,7 +11667,7 @@ }, "parameters": [ { - "id": 1857, + "id": 1854, "name": "outputColumnNames", "kind": 32768, "kindString": "Parameter", @@ -11682,7 +11682,7 @@ } }, { - "id": 1858, + "id": 1855, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -11694,7 +11694,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1882, + "id": 1879, "name": "UnderlyingDataPoint" } } @@ -11705,7 +11705,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } ], @@ -11715,7 +11715,7 @@ ] }, { - "id": 1814, + "id": 1811, "name": "removeColumns", "kind": 2048, "kindString": "Method", @@ -11731,7 +11731,7 @@ ], "signatures": [ { - "id": 1815, + "id": 1812, "name": "removeColumns", "kind": 4096, "kindString": "Call signature", @@ -11742,7 +11742,7 @@ }, "parameters": [ { - "id": 1816, + "id": 1813, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -11771,7 +11771,7 @@ ] }, { - "id": 1872, + "id": 1869, "name": "setTMLOverride", "kind": 2048, "kindString": "Method", @@ -11787,14 +11787,14 @@ ], "signatures": [ { - "id": 1873, + "id": 1870, "name": "setTMLOverride", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1874, + "id": 1871, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -11818,31 +11818,31 @@ "title": "Constructors", "kind": 512, "children": [ - 1803 + 1800 ] }, { "title": "Methods", "kind": 2048, "children": [ + 1814, 1817, + 1866, 1820, - 1869, - 1823, - 1859, - 1837, - 1830, - 1841, - 1865, - 1846, - 1850, - 1828, - 1863, - 1812, - 1867, - 1855, - 1814, - 1872 + 1856, + 1834, + 1827, + 1838, + 1862, + 1843, + 1847, + 1825, + 1860, + 1809, + 1864, + 1852, + 1811, + 1869 ] } ], @@ -11855,7 +11855,7 @@ ] }, { - "id": 989, + "id": 986, "name": "AppEmbed", "kind": 128, "kindString": "Class", @@ -11871,7 +11871,7 @@ }, "children": [ { - "id": 990, + "id": 987, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -11885,40 +11885,40 @@ ], "signatures": [ { - "id": 991, + "id": 988, "name": "new AppEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 992, + "id": 989, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2615, + "id": 2614, "name": "DOMSelector" } }, { - "id": 993, + "id": 990, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2503, + "id": 2501, "name": "AppViewConfig" } } ], "type": { "type": "reference", - "id": 989, + "id": 986, "name": "AppEmbed" }, "overwrites": { @@ -11933,7 +11933,7 @@ } }, { - "id": 1027, + "id": 1024, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -11943,13 +11943,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1005, + "line": 1007, "character": 11 } ], "signatures": [ { - "id": 1028, + "id": 1025, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -11979,7 +11979,7 @@ } }, { - "id": 1196, + "id": 1193, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -11995,7 +11995,7 @@ ], "signatures": [ { - "id": 1197, + "id": 1194, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -12011,7 +12011,7 @@ }, "parameters": [ { - "id": 1198, + "id": 1195, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -12032,7 +12032,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } ], @@ -12050,7 +12050,7 @@ } }, { - "id": 1004, + "id": 1001, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -12060,13 +12060,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 874, + "line": 876, "character": 11 } ], "signatures": [ { - "id": 1005, + "id": 1002, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -12082,7 +12082,7 @@ ] }, { - "id": 1165, + "id": 1162, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -12098,7 +12098,7 @@ ], "signatures": [ { - "id": 1166, + "id": 1163, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -12119,7 +12119,7 @@ } }, { - "id": 1191, + "id": 1188, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -12135,7 +12135,7 @@ ], "signatures": [ { - "id": 1192, + "id": 1189, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -12157,14 +12157,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1193, + "id": 1190, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1195, + "id": 1192, "name": "child", "kind": 1024, "kindString": "Property", @@ -12176,7 +12176,7 @@ "defaultValue": "..." }, { - "id": 1194, + "id": 1191, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -12193,8 +12193,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1195, - 1194 + 1192, + 1191 ] } ] @@ -12212,7 +12212,7 @@ } }, { - "id": 1173, + "id": 1170, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -12228,7 +12228,7 @@ ], "signatures": [ { - "id": 1174, + "id": 1171, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -12244,7 +12244,7 @@ }, "parameters": [ { - "id": 1175, + "id": 1172, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -12252,20 +12252,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1176, + "id": 1173, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1177, + "id": 1174, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1178, + "id": 1175, "name": "key", "kind": 32768, "flags": {}, @@ -12310,7 +12310,7 @@ } }, { - "id": 1179, + "id": 1176, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -12326,7 +12326,7 @@ ], "signatures": [ { - "id": 1180, + "id": 1177, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -12347,7 +12347,7 @@ } }, { - "id": 1189, + "id": 1186, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -12363,7 +12363,7 @@ ], "signatures": [ { - "id": 1190, + "id": 1187, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -12387,7 +12387,7 @@ } }, { - "id": 1023, + "id": 1020, "name": "navigateToPage", "kind": 2048, "kindString": "Method", @@ -12397,13 +12397,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 979, + "line": 981, "character": 11 } ], "signatures": [ { - "id": 1024, + "id": 1021, "name": "navigateToPage", "kind": 4096, "kindString": "Call signature", @@ -12419,7 +12419,7 @@ }, "parameters": [ { - "id": 1025, + "id": 1022, "name": "path", "kind": 32768, "kindString": "Parameter", @@ -12442,7 +12442,7 @@ } }, { - "id": 1026, + "id": 1023, "name": "noReload", "kind": 32768, "kindString": "Parameter", @@ -12465,7 +12465,7 @@ ] }, { - "id": 1136, + "id": 1133, "name": "off", "kind": 2048, "kindString": "Method", @@ -12481,7 +12481,7 @@ ], "signatures": [ { - "id": 1137, + "id": 1134, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -12497,7 +12497,7 @@ }, "parameters": [ { - "id": 1138, + "id": 1135, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12507,12 +12507,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 1139, + "id": 1136, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -12522,7 +12522,7 @@ }, "type": { "type": "reference", - "id": 2619, + "id": 2618, "name": "MessageCallback" } } @@ -12543,7 +12543,7 @@ } }, { - "id": 1042, + "id": 1039, "name": "on", "kind": 2048, "kindString": "Method", @@ -12559,7 +12559,7 @@ ], "signatures": [ { - "id": 1043, + "id": 1040, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -12582,38 +12582,38 @@ }, "parameters": [ { - "id": 1044, + "id": 1041, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 1045, + "id": 1042, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2619, + "id": 2618, "name": "MessageCallback" } }, { - "id": 1046, + "id": 1043, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2616, + "id": 2615, "name": "MessageOptions" }, "defaultValue": "..." @@ -12635,7 +12635,7 @@ } }, { - "id": 1169, + "id": 1166, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -12651,7 +12651,7 @@ ], "signatures": [ { - "id": 1170, + "id": 1167, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -12661,7 +12661,7 @@ }, "parameters": [ { - "id": 1171, + "id": 1168, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -12676,7 +12676,7 @@ "defaultValue": "false" }, { - "id": 1172, + "id": 1169, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -12710,7 +12710,7 @@ } }, { - "id": 1181, + "id": 1178, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -12726,7 +12726,7 @@ ], "signatures": [ { - "id": 1182, + "id": 1179, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -12763,7 +12763,7 @@ } }, { - "id": 1035, + "id": 1032, "name": "render", "kind": 2048, "kindString": "Method", @@ -12773,13 +12773,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1034, + "line": 1036, "character": 17 } ], "signatures": [ { - "id": 1036, + "id": 1033, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -12792,7 +12792,7 @@ "typeArguments": [ { "type": "reference", - "id": 989, + "id": 986, "name": "AppEmbed" } ], @@ -12810,7 +12810,7 @@ } }, { - "id": 1185, + "id": 1182, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -12826,7 +12826,7 @@ ], "signatures": [ { - "id": 1186, + "id": 1183, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -12856,7 +12856,7 @@ } }, { - "id": 1187, + "id": 1184, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -12872,7 +12872,7 @@ ], "signatures": [ { - "id": 1188, + "id": 1185, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -12902,7 +12902,7 @@ } }, { - "id": 1154, + "id": 1151, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -12918,7 +12918,7 @@ ], "signatures": [ { - "id": 1155, + "id": 1152, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -12929,19 +12929,19 @@ }, "typeParameter": [ { - "id": 1156, + "id": 1153, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2016, "name": "HostEvent" } }, { - "id": 1157, + "id": 1154, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -12950,7 +12950,7 @@ ], "parameters": [ { - "id": 1158, + "id": 1155, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12964,7 +12964,7 @@ } }, { - "id": 1159, + "id": 1156, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -13021,7 +13021,7 @@ } }, { - "id": 1160, + "id": 1157, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -13037,7 +13037,7 @@ ], "signatures": [ { - "id": 1161, + "id": 1158, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -13048,21 +13048,21 @@ }, "typeParameter": [ { - "id": 1162, + "id": 1159, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2876, + "id": 2875, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1163, + "id": 1160, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -13076,7 +13076,7 @@ } }, { - "id": 1164, + "id": 1161, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -13129,31 +13129,31 @@ "title": "Constructors", "kind": 512, "children": [ - 990 + 987 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1027, - 1196, - 1004, - 1165, - 1191, - 1173, - 1179, - 1189, - 1023, - 1136, - 1042, - 1169, - 1181, - 1035, - 1185, - 1187, - 1154, - 1160 + 1024, + 1193, + 1001, + 1162, + 1188, + 1170, + 1176, + 1186, + 1020, + 1133, + 1039, + 1166, + 1178, + 1032, + 1182, + 1184, + 1151, + 1157 ] } ], @@ -13172,7 +13172,7 @@ ] }, { - "id": 1289, + "id": 1286, "name": "BodylessConversation", "kind": 128, "kindString": "Class", @@ -13196,7 +13196,7 @@ }, "children": [ { - "id": 1290, + "id": 1287, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -13210,45 +13210,45 @@ ], "signatures": [ { - "id": 1291, + "id": 1288, "name": "new BodylessConversation", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1292, + "id": 1289, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1260, + "id": 1257, "name": "BodylessConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1289, + "id": 1286, "name": "BodylessConversation" }, "overwrites": { "type": "reference", - "id": 1201, + "id": 1198, "name": "SpotterAgentEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1200, + "id": 1197, "name": "SpotterAgentEmbed.constructor" } }, { - "id": 1293, + "id": 1290, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -13264,14 +13264,14 @@ ], "signatures": [ { - "id": 1294, + "id": 1291, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1295, + "id": 1292, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -13291,14 +13291,14 @@ { "type": "reflection", "declaration": { - "id": 1296, + "id": 1293, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1298, + "id": 1295, "name": "container", "kind": 1024, "kindString": "Property", @@ -13309,7 +13309,7 @@ } }, { - "id": 1297, + "id": 1294, "name": "error", "kind": 1024, "kindString": "Property", @@ -13320,7 +13320,7 @@ } }, { - "id": 1299, + "id": 1296, "name": "viz", "kind": 1024, "kindString": "Property", @@ -13337,9 +13337,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1298, - 1297, - 1299 + 1295, + 1294, + 1296 ] } ] @@ -13348,14 +13348,14 @@ { "type": "reflection", "declaration": { - "id": 1300, + "id": 1297, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1301, + "id": 1298, "name": "container", "kind": 1024, "kindString": "Property", @@ -13366,7 +13366,7 @@ } }, { - "id": 1303, + "id": 1300, "name": "error", "kind": 1024, "kindString": "Property", @@ -13377,7 +13377,7 @@ } }, { - "id": 1302, + "id": 1299, "name": "viz", "kind": 1024, "kindString": "Property", @@ -13394,9 +13394,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1301, - 1303, - 1302 + 1298, + 1300, + 1299 ] } ] @@ -13409,19 +13409,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1205, + "id": 1202, "name": "SpotterAgentEmbed.sendMessage" } } ], "inheritedFrom": { "type": "reference", - "id": 1204, + "id": 1201, "name": "SpotterAgentEmbed.sendMessage" } }, { - "id": 1304, + "id": 1301, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -13437,7 +13437,7 @@ ], "signatures": [ { - "id": 1305, + "id": 1302, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -13448,7 +13448,7 @@ }, "parameters": [ { - "id": 1306, + "id": 1303, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -13471,14 +13471,14 @@ { "type": "reflection", "declaration": { - "id": 1307, + "id": 1304, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1309, + "id": 1306, "name": "data", "kind": 1024, "kindString": "Property", @@ -13490,7 +13490,7 @@ "defaultValue": "..." }, { - "id": 1308, + "id": 1305, "name": "error", "kind": 1024, "kindString": "Property", @@ -13506,8 +13506,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1309, - 1308 + 1306, + 1305 ] } ] @@ -13516,14 +13516,14 @@ { "type": "reflection", "declaration": { - "id": 1310, + "id": 1307, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1311, + "id": 1308, "name": "data", "kind": 1024, "kindString": "Property", @@ -13531,14 +13531,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1312, + "id": 1309, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1318, + "id": 1315, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -13550,7 +13550,7 @@ "defaultValue": "..." }, { - "id": 1317, + "id": 1314, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -13562,7 +13562,7 @@ "defaultValue": "..." }, { - "id": 1313, + "id": 1310, "name": "convId", "kind": 1024, "kindString": "Property", @@ -13574,7 +13574,7 @@ "defaultValue": "..." }, { - "id": 1316, + "id": 1313, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -13586,7 +13586,7 @@ "defaultValue": "..." }, { - "id": 1314, + "id": 1311, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -13598,7 +13598,7 @@ "defaultValue": "..." }, { - "id": 1315, + "id": 1312, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -13615,12 +13615,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1318, - 1317, - 1313, - 1316, + 1315, 1314, - 1315 + 1310, + 1313, + 1311, + 1312 ] } ] @@ -13629,7 +13629,7 @@ "defaultValue": "..." }, { - "id": 1319, + "id": 1316, "name": "error", "kind": 1024, "kindString": "Property", @@ -13645,8 +13645,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1311, - 1319 + 1308, + 1316 ] } ] @@ -13659,14 +13659,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1216, + "id": 1213, "name": "SpotterAgentEmbed.sendMessageData" } } ], "inheritedFrom": { "type": "reference", - "id": 1215, + "id": 1212, "name": "SpotterAgentEmbed.sendMessageData" } } @@ -13676,15 +13676,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1290 + 1287 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1293, - 1304 + 1290, + 1301 ] } ], @@ -13698,13 +13698,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1199, + "id": 1196, "name": "SpotterAgentEmbed" } ] }, { - "id": 1566, + "id": 1563, "name": "ConversationEmbed", "kind": 128, "kindString": "Class", @@ -13732,7 +13732,7 @@ }, "children": [ { - "id": 1567, + "id": 1564, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -13746,14 +13746,14 @@ ], "signatures": [ { - "id": 1568, + "id": 1565, "name": "new ConversationEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1569, + "id": 1566, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -13764,38 +13764,38 @@ } }, { - "id": 1570, + "id": 1567, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1526, + "id": 1523, "name": "ConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1566, + "id": 1563, "name": "ConversationEmbed" }, "overwrites": { "type": "reference", - "id": 1322, + "id": 1319, "name": "SpotterEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1321, + "id": 1318, "name": "SpotterEmbed.constructor" } }, { - "id": 1710, + "id": 1707, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -13811,7 +13811,7 @@ ], "signatures": [ { - "id": 1711, + "id": 1708, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -13831,19 +13831,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1465, + "id": 1462, "name": "SpotterEmbed.destroy" } } ], "inheritedFrom": { "type": "reference", - "id": 1464, + "id": 1461, "name": "SpotterEmbed.destroy" } }, { - "id": 1729, + "id": 1726, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -13859,7 +13859,7 @@ ], "signatures": [ { - "id": 1730, + "id": 1727, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -13875,7 +13875,7 @@ }, "parameters": [ { - "id": 1731, + "id": 1728, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -13896,7 +13896,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } ], @@ -13904,19 +13904,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1484, + "id": 1481, "name": "SpotterEmbed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "id": 1483, + "id": 1480, "name": "SpotterEmbed.getAnswerService" } }, { - "id": 1574, + "id": 1571, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -13932,7 +13932,7 @@ ], "signatures": [ { - "id": 1575, + "id": 1572, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -13943,19 +13943,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1329, + "id": 1326, "name": "SpotterEmbed.getIframeSrc" } } ], "inheritedFrom": { "type": "reference", - "id": 1328, + "id": 1325, "name": "SpotterEmbed.getIframeSrc" } }, { - "id": 1724, + "id": 1721, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -13971,7 +13971,7 @@ ], "signatures": [ { - "id": 1725, + "id": 1722, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -13993,14 +13993,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1726, + "id": 1723, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1728, + "id": 1725, "name": "child", "kind": 1024, "kindString": "Property", @@ -14012,7 +14012,7 @@ "defaultValue": "..." }, { - "id": 1727, + "id": 1724, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -14029,8 +14029,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1728, - 1727 + 1725, + 1724 ] } ] @@ -14038,19 +14038,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1479, + "id": 1476, "name": "SpotterEmbed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "id": 1478, + "id": 1475, "name": "SpotterEmbed.getPreRenderIds" } }, { - "id": 1704, + "id": 1701, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -14066,7 +14066,7 @@ ], "signatures": [ { - "id": 1705, + "id": 1702, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -14082,7 +14082,7 @@ }, "parameters": [ { - "id": 1706, + "id": 1703, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -14090,20 +14090,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1707, + "id": 1704, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1708, + "id": 1705, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1709, + "id": 1706, "name": "key", "kind": 32768, "flags": {}, @@ -14138,19 +14138,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1459, + "id": 1456, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "id": 1458, + "id": 1455, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } }, { - "id": 1712, + "id": 1709, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -14166,7 +14166,7 @@ ], "signatures": [ { - "id": 1713, + "id": 1710, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -14177,19 +14177,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1467, + "id": 1464, "name": "SpotterEmbed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "id": 1466, + "id": 1463, "name": "SpotterEmbed.getUnderlyingFrameElement" } }, { - "id": 1722, + "id": 1719, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -14205,7 +14205,7 @@ ], "signatures": [ { - "id": 1723, + "id": 1720, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -14219,19 +14219,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1477, + "id": 1474, "name": "SpotterEmbed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1476, + "id": 1473, "name": "SpotterEmbed.hidePreRender" } }, { - "id": 1669, + "id": 1666, "name": "off", "kind": 2048, "kindString": "Method", @@ -14247,7 +14247,7 @@ ], "signatures": [ { - "id": 1670, + "id": 1667, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -14263,7 +14263,7 @@ }, "parameters": [ { - "id": 1671, + "id": 1668, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14273,12 +14273,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 1672, + "id": 1669, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14288,7 +14288,7 @@ }, "type": { "type": "reference", - "id": 2619, + "id": 2618, "name": "MessageCallback" } } @@ -14299,19 +14299,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1424, + "id": 1421, "name": "SpotterEmbed.off" } } ], "inheritedFrom": { "type": "reference", - "id": 1423, + "id": 1420, "name": "SpotterEmbed.off" } }, { - "id": 1663, + "id": 1660, "name": "on", "kind": 2048, "kindString": "Method", @@ -14327,7 +14327,7 @@ ], "signatures": [ { - "id": 1664, + "id": 1661, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -14347,7 +14347,7 @@ }, "parameters": [ { - "id": 1665, + "id": 1662, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14357,12 +14357,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 1666, + "id": 1663, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14372,12 +14372,12 @@ }, "type": { "type": "reference", - "id": 2619, + "id": 2618, "name": "MessageCallback" } }, { - "id": 1667, + "id": 1664, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -14387,13 +14387,13 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2615, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1668, + "id": 1665, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -14412,19 +14412,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1418, + "id": 1415, "name": "SpotterEmbed.on" } } ], "inheritedFrom": { "type": "reference", - "id": 1417, + "id": 1414, "name": "SpotterEmbed.on" } }, { - "id": 1700, + "id": 1697, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -14440,7 +14440,7 @@ ], "signatures": [ { - "id": 1701, + "id": 1698, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -14450,7 +14450,7 @@ }, "parameters": [ { - "id": 1702, + "id": 1699, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -14465,7 +14465,7 @@ "defaultValue": "false" }, { - "id": 1703, + "id": 1700, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -14489,19 +14489,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1455, + "id": 1452, "name": "SpotterEmbed.preRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1454, + "id": 1451, "name": "SpotterEmbed.preRender" } }, { - "id": 1714, + "id": 1711, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -14517,7 +14517,7 @@ ], "signatures": [ { - "id": 1715, + "id": 1712, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -14544,19 +14544,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1469, + "id": 1466, "name": "SpotterEmbed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "id": 1468, + "id": 1465, "name": "SpotterEmbed.prerenderGeneric" } }, { - "id": 1576, + "id": 1573, "name": "render", "kind": 2048, "kindString": "Method", @@ -14572,7 +14572,7 @@ ], "signatures": [ { - "id": 1577, + "id": 1574, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -14582,7 +14582,7 @@ "typeArguments": [ { "type": "reference", - "id": 1320, + "id": 1317, "name": "SpotterEmbed" } ], @@ -14590,19 +14590,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1331, + "id": 1328, "name": "SpotterEmbed.render" } } ], "inheritedFrom": { "type": "reference", - "id": 1330, + "id": 1327, "name": "SpotterEmbed.render" } }, { - "id": 1718, + "id": 1715, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -14618,7 +14618,7 @@ ], "signatures": [ { - "id": 1719, + "id": 1716, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -14638,19 +14638,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1473, + "id": 1470, "name": "SpotterEmbed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1472, + "id": 1469, "name": "SpotterEmbed.showPreRender" } }, { - "id": 1720, + "id": 1717, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -14666,7 +14666,7 @@ ], "signatures": [ { - "id": 1721, + "id": 1718, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -14686,19 +14686,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1475, + "id": 1472, "name": "SpotterEmbed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "id": 1474, + "id": 1471, "name": "SpotterEmbed.syncPreRenderStyle" } }, { - "id": 1687, + "id": 1684, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -14714,7 +14714,7 @@ ], "signatures": [ { - "id": 1688, + "id": 1685, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -14725,19 +14725,19 @@ }, "typeParameter": [ { - "id": 1689, + "id": 1686, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2016, "name": "HostEvent" } }, { - "id": 1690, + "id": 1687, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -14746,7 +14746,7 @@ ], "parameters": [ { - "id": 1691, + "id": 1688, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14760,7 +14760,7 @@ } }, { - "id": 1692, + "id": 1689, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -14807,19 +14807,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1442, + "id": 1439, "name": "SpotterEmbed.trigger" } } ], "inheritedFrom": { "type": "reference", - "id": 1441, + "id": 1438, "name": "SpotterEmbed.trigger" } }, { - "id": 1693, + "id": 1690, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -14835,7 +14835,7 @@ ], "signatures": [ { - "id": 1694, + "id": 1691, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -14846,21 +14846,21 @@ }, "typeParameter": [ { - "id": 1695, + "id": 1692, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2876, + "id": 2875, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1696, + "id": 1693, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -14874,7 +14874,7 @@ } }, { - "id": 1697, + "id": 1694, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -14912,14 +14912,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1448, + "id": 1445, "name": "SpotterEmbed.triggerUIPassThrough" } } ], "inheritedFrom": { "type": "reference", - "id": 1447, + "id": 1444, "name": "SpotterEmbed.triggerUIPassThrough" } } @@ -14929,29 +14929,29 @@ "title": "Constructors", "kind": 512, "children": [ - 1567 + 1564 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1710, - 1729, - 1574, - 1724, - 1704, - 1712, - 1722, - 1669, - 1663, - 1700, - 1714, - 1576, - 1718, - 1720, - 1687, - 1693 + 1707, + 1726, + 1571, + 1721, + 1701, + 1709, + 1719, + 1666, + 1660, + 1697, + 1711, + 1573, + 1715, + 1717, + 1684, + 1690 ] } ], @@ -14965,13 +14965,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1320, + "id": 1317, "name": "SpotterEmbed" } ] }, { - "id": 590, + "id": 587, "name": "LiveboardEmbed", "kind": 128, "kindString": "Class", @@ -14991,7 +14991,7 @@ }, "children": [ { - "id": 591, + "id": 588, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -15005,40 +15005,40 @@ ], "signatures": [ { - "id": 592, + "id": 589, "name": "new LiveboardEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 593, + "id": 590, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2615, + "id": 2614, "name": "DOMSelector" } }, { - "id": 594, + "id": 591, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2382, + "id": 2379, "name": "LiveboardViewConfig" } } ], "type": { "type": "reference", - "id": 590, + "id": 587, "name": "LiveboardEmbed" }, "overwrites": { @@ -15053,7 +15053,7 @@ } }, { - "id": 646, + "id": 643, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -15063,13 +15063,13 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 766, + "line": 768, "character": 11 } ], "signatures": [ { - "id": 647, + "id": 644, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -15099,7 +15099,7 @@ } }, { - "id": 810, + "id": 807, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -15115,7 +15115,7 @@ ], "signatures": [ { - "id": 811, + "id": 808, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -15131,7 +15131,7 @@ }, "parameters": [ { - "id": 812, + "id": 809, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15152,7 +15152,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } ], @@ -15170,7 +15170,7 @@ } }, { - "id": 783, + "id": 780, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -15186,7 +15186,7 @@ ], "signatures": [ { - "id": 784, + "id": 781, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -15207,7 +15207,7 @@ } }, { - "id": 661, + "id": 658, "name": "getLiveboardUrl", "kind": 2048, "kindString": "Method", @@ -15217,13 +15217,13 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 825, + "line": 827, "character": 11 } ], "signatures": [ { - "id": 662, + "id": 659, "name": "getLiveboardUrl", "kind": 4096, "kindString": "Call signature", @@ -15240,7 +15240,7 @@ ] }, { - "id": 805, + "id": 802, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -15256,7 +15256,7 @@ ], "signatures": [ { - "id": 806, + "id": 803, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -15278,14 +15278,14 @@ "type": { "type": "reflection", "declaration": { - "id": 807, + "id": 804, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 809, + "id": 806, "name": "child", "kind": 1024, "kindString": "Property", @@ -15297,7 +15297,7 @@ "defaultValue": "..." }, { - "id": 808, + "id": 805, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -15314,8 +15314,8 @@ "title": "Properties", "kind": 1024, "children": [ - 809, - 808 + 806, + 805 ] } ] @@ -15333,7 +15333,7 @@ } }, { - "id": 789, + "id": 786, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -15349,7 +15349,7 @@ ], "signatures": [ { - "id": 790, + "id": 787, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -15365,7 +15365,7 @@ }, "parameters": [ { - "id": 791, + "id": 788, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -15373,20 +15373,20 @@ "type": { "type": "reflection", "declaration": { - "id": 792, + "id": 789, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 793, + "id": 790, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 794, + "id": 791, "name": "key", "kind": 32768, "flags": {}, @@ -15431,7 +15431,7 @@ } }, { - "id": 795, + "id": 792, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -15447,7 +15447,7 @@ ], "signatures": [ { - "id": 796, + "id": 793, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -15468,7 +15468,7 @@ } }, { - "id": 803, + "id": 800, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -15484,7 +15484,7 @@ ], "signatures": [ { - "id": 804, + "id": 801, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -15508,7 +15508,7 @@ } }, { - "id": 656, + "id": 653, "name": "navigateToLiveboard", "kind": 2048, "kindString": "Method", @@ -15518,20 +15518,20 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 806, + "line": 808, "character": 11 } ], "signatures": [ { - "id": 657, + "id": 654, "name": "navigateToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 658, + "id": 655, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -15542,7 +15542,7 @@ } }, { - "id": 659, + "id": 656, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15555,7 +15555,7 @@ } }, { - "id": 660, + "id": 657, "name": "activeTabId", "kind": 32768, "kindString": "Parameter", @@ -15576,7 +15576,7 @@ ] }, { - "id": 760, + "id": 757, "name": "off", "kind": 2048, "kindString": "Method", @@ -15592,7 +15592,7 @@ ], "signatures": [ { - "id": 761, + "id": 758, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -15608,7 +15608,7 @@ }, "parameters": [ { - "id": 762, + "id": 759, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15618,12 +15618,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 763, + "id": 760, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -15633,7 +15633,7 @@ }, "type": { "type": "reference", - "id": 2619, + "id": 2618, "name": "MessageCallback" } } @@ -15654,7 +15654,7 @@ } }, { - "id": 668, + "id": 665, "name": "on", "kind": 2048, "kindString": "Method", @@ -15670,7 +15670,7 @@ ], "signatures": [ { - "id": 669, + "id": 666, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -15693,38 +15693,38 @@ }, "parameters": [ { - "id": 670, + "id": 667, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 671, + "id": 668, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2619, + "id": 2618, "name": "MessageCallback" } }, { - "id": 672, + "id": 669, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2616, + "id": 2615, "name": "MessageOptions" }, "defaultValue": "..." @@ -15746,7 +15746,7 @@ } }, { - "id": 785, + "id": 782, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -15762,7 +15762,7 @@ ], "signatures": [ { - "id": 786, + "id": 783, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -15772,7 +15772,7 @@ }, "parameters": [ { - "id": 787, + "id": 784, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -15787,7 +15787,7 @@ "defaultValue": "false" }, { - "id": 788, + "id": 785, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -15821,7 +15821,7 @@ } }, { - "id": 797, + "id": 794, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -15837,7 +15837,7 @@ ], "signatures": [ { - "id": 798, + "id": 795, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -15874,7 +15874,7 @@ } }, { - "id": 654, + "id": 651, "name": "render", "kind": 2048, "kindString": "Method", @@ -15884,13 +15884,13 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 795, + "line": 797, "character": 17 } ], "signatures": [ { - "id": 655, + "id": 652, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -15903,7 +15903,7 @@ "typeArguments": [ { "type": "reference", - "id": 590, + "id": 587, "name": "LiveboardEmbed" } ], @@ -15921,7 +15921,7 @@ } }, { - "id": 799, + "id": 796, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -15937,7 +15937,7 @@ ], "signatures": [ { - "id": 800, + "id": 797, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -15967,7 +15967,7 @@ } }, { - "id": 801, + "id": 798, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -15983,7 +15983,7 @@ ], "signatures": [ { - "id": 802, + "id": 799, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -16013,7 +16013,7 @@ } }, { - "id": 640, + "id": 637, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -16023,13 +16023,13 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 748, + "line": 750, "character": 11 } ], "signatures": [ { - "id": 641, + "id": 638, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -16040,19 +16040,19 @@ }, "typeParameter": [ { - "id": 642, + "id": 639, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2016, "name": "HostEvent" } }, { - "id": 643, + "id": 640, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -16061,7 +16061,7 @@ ], "parameters": [ { - "id": 644, + "id": 641, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16075,7 +16075,7 @@ } }, { - "id": 645, + "id": 642, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -16132,7 +16132,7 @@ } }, { - "id": 778, + "id": 775, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -16148,7 +16148,7 @@ ], "signatures": [ { - "id": 779, + "id": 776, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -16159,21 +16159,21 @@ }, "typeParameter": [ { - "id": 780, + "id": 777, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2876, + "id": 2875, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 781, + "id": 778, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -16187,7 +16187,7 @@ } }, { - "id": 782, + "id": 779, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -16240,31 +16240,31 @@ "title": "Constructors", "kind": 512, "children": [ - 591 + 588 ] }, { "title": "Methods", "kind": 2048, "children": [ - 646, - 810, - 783, - 661, - 805, - 789, - 795, - 803, - 656, - 760, - 668, - 785, - 797, - 654, - 799, - 801, - 640, - 778 + 643, + 807, + 780, + 658, + 802, + 786, + 792, + 800, + 653, + 757, + 665, + 782, + 794, + 651, + 796, + 798, + 637, + 775 ] } ], @@ -16283,7 +16283,7 @@ ] }, { - "id": 813, + "id": 810, "name": "SageEmbed", "kind": 128, "kindString": "Class", @@ -16303,7 +16303,7 @@ }, "children": [ { - "id": 814, + "id": 811, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -16317,40 +16317,40 @@ ], "signatures": [ { - "id": 815, + "id": 812, "name": "new SageEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 816, + "id": 813, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2615, + "id": 2614, "name": "DOMSelector" } }, { - "id": 817, + "id": 814, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2456, + "id": 2454, "name": "SageViewConfig" } } ], "type": { "type": "reference", - "id": 813, + "id": 810, "name": "SageEmbed" }, "overwrites": { @@ -16365,7 +16365,7 @@ } }, { - "id": 967, + "id": 964, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -16381,7 +16381,7 @@ ], "signatures": [ { - "id": 968, + "id": 965, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -16411,7 +16411,7 @@ } }, { - "id": 986, + "id": 983, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -16427,7 +16427,7 @@ ], "signatures": [ { - "id": 987, + "id": 984, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -16443,7 +16443,7 @@ }, "parameters": [ { - "id": 988, + "id": 985, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -16464,7 +16464,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } ], @@ -16482,7 +16482,7 @@ } }, { - "id": 823, + "id": 820, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -16498,7 +16498,7 @@ ], "signatures": [ { - "id": 824, + "id": 821, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -16515,7 +16515,7 @@ ] }, { - "id": 953, + "id": 950, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -16531,7 +16531,7 @@ ], "signatures": [ { - "id": 954, + "id": 951, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -16552,7 +16552,7 @@ } }, { - "id": 981, + "id": 978, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -16568,7 +16568,7 @@ ], "signatures": [ { - "id": 982, + "id": 979, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -16590,14 +16590,14 @@ "type": { "type": "reflection", "declaration": { - "id": 983, + "id": 980, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 985, + "id": 982, "name": "child", "kind": 1024, "kindString": "Property", @@ -16609,7 +16609,7 @@ "defaultValue": "..." }, { - "id": 984, + "id": 981, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -16626,8 +16626,8 @@ "title": "Properties", "kind": 1024, "children": [ - 985, - 984 + 982, + 981 ] } ] @@ -16645,7 +16645,7 @@ } }, { - "id": 961, + "id": 958, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -16661,7 +16661,7 @@ ], "signatures": [ { - "id": 962, + "id": 959, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -16677,7 +16677,7 @@ }, "parameters": [ { - "id": 963, + "id": 960, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -16685,20 +16685,20 @@ "type": { "type": "reflection", "declaration": { - "id": 964, + "id": 961, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 965, + "id": 962, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 966, + "id": 963, "name": "key", "kind": 32768, "flags": {}, @@ -16743,7 +16743,7 @@ } }, { - "id": 969, + "id": 966, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -16759,7 +16759,7 @@ ], "signatures": [ { - "id": 970, + "id": 967, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -16780,7 +16780,7 @@ } }, { - "id": 979, + "id": 976, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -16796,7 +16796,7 @@ ], "signatures": [ { - "id": 980, + "id": 977, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -16820,7 +16820,7 @@ } }, { - "id": 924, + "id": 921, "name": "off", "kind": 2048, "kindString": "Method", @@ -16836,7 +16836,7 @@ ], "signatures": [ { - "id": 925, + "id": 922, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -16852,7 +16852,7 @@ }, "parameters": [ { - "id": 926, + "id": 923, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16862,12 +16862,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 927, + "id": 924, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -16877,7 +16877,7 @@ }, "type": { "type": "reference", - "id": 2619, + "id": 2618, "name": "MessageCallback" } } @@ -16898,7 +16898,7 @@ } }, { - "id": 832, + "id": 829, "name": "on", "kind": 2048, "kindString": "Method", @@ -16914,7 +16914,7 @@ ], "signatures": [ { - "id": 833, + "id": 830, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -16937,38 +16937,38 @@ }, "parameters": [ { - "id": 834, + "id": 831, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 835, + "id": 832, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2619, + "id": 2618, "name": "MessageCallback" } }, { - "id": 836, + "id": 833, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2616, + "id": 2615, "name": "MessageOptions" }, "defaultValue": "..." @@ -16990,7 +16990,7 @@ } }, { - "id": 957, + "id": 954, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -17006,7 +17006,7 @@ ], "signatures": [ { - "id": 958, + "id": 955, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -17016,7 +17016,7 @@ }, "parameters": [ { - "id": 959, + "id": 956, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -17031,7 +17031,7 @@ "defaultValue": "false" }, { - "id": 960, + "id": 957, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -17065,7 +17065,7 @@ } }, { - "id": 971, + "id": 968, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -17081,7 +17081,7 @@ ], "signatures": [ { - "id": 972, + "id": 969, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -17118,7 +17118,7 @@ } }, { - "id": 825, + "id": 822, "name": "render", "kind": 2048, "kindString": "Method", @@ -17134,7 +17134,7 @@ ], "signatures": [ { - "id": 826, + "id": 823, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -17148,7 +17148,7 @@ "typeArguments": [ { "type": "reference", - "id": 813, + "id": 810, "name": "SageEmbed" } ], @@ -17166,7 +17166,7 @@ } }, { - "id": 975, + "id": 972, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -17182,7 +17182,7 @@ ], "signatures": [ { - "id": 976, + "id": 973, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -17212,7 +17212,7 @@ } }, { - "id": 977, + "id": 974, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -17228,7 +17228,7 @@ ], "signatures": [ { - "id": 978, + "id": 975, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -17258,7 +17258,7 @@ } }, { - "id": 942, + "id": 939, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -17274,7 +17274,7 @@ ], "signatures": [ { - "id": 943, + "id": 940, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -17285,19 +17285,19 @@ }, "typeParameter": [ { - "id": 944, + "id": 941, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2016, "name": "HostEvent" } }, { - "id": 945, + "id": 942, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -17306,7 +17306,7 @@ ], "parameters": [ { - "id": 946, + "id": 943, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17320,7 +17320,7 @@ } }, { - "id": 947, + "id": 944, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -17377,7 +17377,7 @@ } }, { - "id": 948, + "id": 945, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -17393,7 +17393,7 @@ ], "signatures": [ { - "id": 949, + "id": 946, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -17404,21 +17404,21 @@ }, "typeParameter": [ { - "id": 950, + "id": 947, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2876, + "id": 2875, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 951, + "id": 948, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -17432,7 +17432,7 @@ } }, { - "id": 952, + "id": 949, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -17485,30 +17485,30 @@ "title": "Constructors", "kind": 512, "children": [ - 814 + 811 ] }, { "title": "Methods", "kind": 2048, "children": [ - 967, - 986, - 823, - 953, - 981, - 961, - 969, - 979, - 924, - 832, - 957, - 971, - 825, - 975, - 977, - 942, - 948 + 964, + 983, + 820, + 950, + 978, + 958, + 966, + 976, + 921, + 829, + 954, + 968, + 822, + 972, + 974, + 939, + 945 ] } ], @@ -17527,7 +17527,7 @@ ] }, { - "id": 231, + "id": 228, "name": "SearchBarEmbed", "kind": 128, "kindString": "Class", @@ -17547,7 +17547,7 @@ }, "children": [ { - "id": 232, + "id": 229, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -17561,14 +17561,14 @@ ], "signatures": [ { - "id": 233, + "id": 230, "name": "new SearchBarEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 234, + "id": 231, "name": "domSelector", "kind": 32768, "kindString": "Parameter", @@ -17579,21 +17579,21 @@ } }, { - "id": 235, + "id": 232, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2340, + "id": 2337, "name": "SearchBarViewConfig" } } ], "type": { "type": "reference", - "id": 231, + "id": 228, "name": "SearchBarEmbed" }, "overwrites": { @@ -17608,7 +17608,7 @@ } }, { - "id": 382, + "id": 379, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -17624,7 +17624,7 @@ ], "signatures": [ { - "id": 383, + "id": 380, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -17654,7 +17654,7 @@ } }, { - "id": 401, + "id": 398, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -17670,7 +17670,7 @@ ], "signatures": [ { - "id": 402, + "id": 399, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -17686,7 +17686,7 @@ }, "parameters": [ { - "id": 403, + "id": 400, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -17707,7 +17707,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } ], @@ -17725,7 +17725,7 @@ } }, { - "id": 368, + "id": 365, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -17741,7 +17741,7 @@ ], "signatures": [ { - "id": 369, + "id": 366, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -17762,7 +17762,7 @@ } }, { - "id": 396, + "id": 393, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -17778,7 +17778,7 @@ ], "signatures": [ { - "id": 397, + "id": 394, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -17800,14 +17800,14 @@ "type": { "type": "reflection", "declaration": { - "id": 398, + "id": 395, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 400, + "id": 397, "name": "child", "kind": 1024, "kindString": "Property", @@ -17819,7 +17819,7 @@ "defaultValue": "..." }, { - "id": 399, + "id": 396, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -17836,8 +17836,8 @@ "title": "Properties", "kind": 1024, "children": [ - 400, - 399 + 397, + 396 ] } ] @@ -17855,7 +17855,7 @@ } }, { - "id": 376, + "id": 373, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -17871,7 +17871,7 @@ ], "signatures": [ { - "id": 377, + "id": 374, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -17887,7 +17887,7 @@ }, "parameters": [ { - "id": 378, + "id": 375, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -17895,20 +17895,20 @@ "type": { "type": "reflection", "declaration": { - "id": 379, + "id": 376, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 380, + "id": 377, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 381, + "id": 378, "name": "key", "kind": 32768, "flags": {}, @@ -17953,7 +17953,7 @@ } }, { - "id": 384, + "id": 381, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -17969,7 +17969,7 @@ ], "signatures": [ { - "id": 385, + "id": 382, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -17990,7 +17990,7 @@ } }, { - "id": 394, + "id": 391, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -18006,7 +18006,7 @@ ], "signatures": [ { - "id": 395, + "id": 392, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -18030,7 +18030,7 @@ } }, { - "id": 339, + "id": 336, "name": "off", "kind": 2048, "kindString": "Method", @@ -18046,7 +18046,7 @@ ], "signatures": [ { - "id": 340, + "id": 337, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -18062,7 +18062,7 @@ }, "parameters": [ { - "id": 341, + "id": 338, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18072,12 +18072,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 342, + "id": 339, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18087,7 +18087,7 @@ }, "type": { "type": "reference", - "id": 2619, + "id": 2618, "name": "MessageCallback" } } @@ -18108,7 +18108,7 @@ } }, { - "id": 333, + "id": 330, "name": "on", "kind": 2048, "kindString": "Method", @@ -18124,7 +18124,7 @@ ], "signatures": [ { - "id": 334, + "id": 331, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -18144,7 +18144,7 @@ }, "parameters": [ { - "id": 335, + "id": 332, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18154,12 +18154,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 336, + "id": 333, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18169,12 +18169,12 @@ }, "type": { "type": "reference", - "id": 2619, + "id": 2618, "name": "MessageCallback" } }, { - "id": 337, + "id": 334, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -18184,13 +18184,13 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2615, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 338, + "id": 335, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -18219,7 +18219,7 @@ } }, { - "id": 372, + "id": 369, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -18235,7 +18235,7 @@ ], "signatures": [ { - "id": 373, + "id": 370, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -18245,7 +18245,7 @@ }, "parameters": [ { - "id": 374, + "id": 371, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -18260,7 +18260,7 @@ "defaultValue": "false" }, { - "id": 375, + "id": 372, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -18294,7 +18294,7 @@ } }, { - "id": 386, + "id": 383, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -18310,7 +18310,7 @@ ], "signatures": [ { - "id": 387, + "id": 384, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -18347,7 +18347,7 @@ } }, { - "id": 242, + "id": 239, "name": "render", "kind": 2048, "kindString": "Method", @@ -18363,7 +18363,7 @@ ], "signatures": [ { - "id": 243, + "id": 240, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -18376,7 +18376,7 @@ "typeArguments": [ { "type": "reference", - "id": 231, + "id": 228, "name": "SearchBarEmbed" } ], @@ -18394,7 +18394,7 @@ } }, { - "id": 390, + "id": 387, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -18410,7 +18410,7 @@ ], "signatures": [ { - "id": 391, + "id": 388, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -18440,7 +18440,7 @@ } }, { - "id": 392, + "id": 389, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -18456,7 +18456,7 @@ ], "signatures": [ { - "id": 393, + "id": 390, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -18486,7 +18486,7 @@ } }, { - "id": 357, + "id": 354, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -18502,7 +18502,7 @@ ], "signatures": [ { - "id": 358, + "id": 355, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -18513,19 +18513,19 @@ }, "typeParameter": [ { - "id": 359, + "id": 356, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2016, "name": "HostEvent" } }, { - "id": 360, + "id": 357, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -18534,7 +18534,7 @@ ], "parameters": [ { - "id": 361, + "id": 358, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18548,7 +18548,7 @@ } }, { - "id": 362, + "id": 359, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -18605,7 +18605,7 @@ } }, { - "id": 363, + "id": 360, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -18621,7 +18621,7 @@ ], "signatures": [ { - "id": 364, + "id": 361, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -18632,21 +18632,21 @@ }, "typeParameter": [ { - "id": 365, + "id": 362, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2876, + "id": 2875, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 366, + "id": 363, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -18660,7 +18660,7 @@ } }, { - "id": 367, + "id": 364, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -18713,29 +18713,29 @@ "title": "Constructors", "kind": 512, "children": [ - 232 + 229 ] }, { "title": "Methods", "kind": 2048, "children": [ - 382, - 401, - 368, - 396, - 376, - 384, - 394, - 339, - 333, - 372, - 386, - 242, - 390, - 392, - 357, - 363 + 379, + 398, + 365, + 393, + 373, + 381, + 391, + 336, + 330, + 369, + 383, + 239, + 387, + 389, + 354, + 360 ] } ], @@ -18754,7 +18754,7 @@ ] }, { - "id": 55, + "id": 52, "name": "SearchEmbed", "kind": 128, "kindString": "Class", @@ -18770,7 +18770,7 @@ }, "children": [ { - "id": 56, + "id": 53, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -18784,40 +18784,40 @@ ], "signatures": [ { - "id": 57, + "id": 54, "name": "new SearchEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 58, + "id": 55, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2615, + "id": 2614, "name": "DOMSelector" } }, { - "id": 59, + "id": 56, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2286, + "id": 2283, "name": "SearchViewConfig" } } ], "type": { "type": "reference", - "id": 55, + "id": 52, "name": "SearchEmbed" }, "overwrites": { @@ -18832,7 +18832,7 @@ } }, { - "id": 209, + "id": 206, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -18848,7 +18848,7 @@ ], "signatures": [ { - "id": 210, + "id": 207, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -18878,7 +18878,7 @@ } }, { - "id": 228, + "id": 225, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -18894,7 +18894,7 @@ ], "signatures": [ { - "id": 229, + "id": 226, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -18910,7 +18910,7 @@ }, "parameters": [ { - "id": 230, + "id": 227, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -18931,7 +18931,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } ], @@ -18949,7 +18949,7 @@ } }, { - "id": 75, + "id": 72, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -18965,7 +18965,7 @@ ], "signatures": [ { - "id": 76, + "id": 73, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -18981,7 +18981,7 @@ ] }, { - "id": 195, + "id": 192, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -18997,7 +18997,7 @@ ], "signatures": [ { - "id": 196, + "id": 193, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -19018,7 +19018,7 @@ } }, { - "id": 223, + "id": 220, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -19034,7 +19034,7 @@ ], "signatures": [ { - "id": 224, + "id": 221, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -19056,14 +19056,14 @@ "type": { "type": "reflection", "declaration": { - "id": 225, + "id": 222, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 227, + "id": 224, "name": "child", "kind": 1024, "kindString": "Property", @@ -19075,7 +19075,7 @@ "defaultValue": "..." }, { - "id": 226, + "id": 223, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -19092,8 +19092,8 @@ "title": "Properties", "kind": 1024, "children": [ - 227, - 226 + 224, + 223 ] } ] @@ -19111,7 +19111,7 @@ } }, { - "id": 203, + "id": 200, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -19127,7 +19127,7 @@ ], "signatures": [ { - "id": 204, + "id": 201, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -19143,7 +19143,7 @@ }, "parameters": [ { - "id": 205, + "id": 202, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -19151,20 +19151,20 @@ "type": { "type": "reflection", "declaration": { - "id": 206, + "id": 203, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 207, + "id": 204, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 208, + "id": 205, "name": "key", "kind": 32768, "flags": {}, @@ -19209,7 +19209,7 @@ } }, { - "id": 211, + "id": 208, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -19225,7 +19225,7 @@ ], "signatures": [ { - "id": 212, + "id": 209, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -19246,7 +19246,7 @@ } }, { - "id": 221, + "id": 218, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -19262,7 +19262,7 @@ ], "signatures": [ { - "id": 222, + "id": 219, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -19286,7 +19286,7 @@ } }, { - "id": 166, + "id": 163, "name": "off", "kind": 2048, "kindString": "Method", @@ -19302,7 +19302,7 @@ ], "signatures": [ { - "id": 167, + "id": 164, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -19318,7 +19318,7 @@ }, "parameters": [ { - "id": 168, + "id": 165, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19328,12 +19328,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 169, + "id": 166, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19343,7 +19343,7 @@ }, "type": { "type": "reference", - "id": 2619, + "id": 2618, "name": "MessageCallback" } } @@ -19364,7 +19364,7 @@ } }, { - "id": 160, + "id": 157, "name": "on", "kind": 2048, "kindString": "Method", @@ -19380,7 +19380,7 @@ ], "signatures": [ { - "id": 161, + "id": 158, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -19400,7 +19400,7 @@ }, "parameters": [ { - "id": 162, + "id": 159, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19410,12 +19410,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 163, + "id": 160, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19425,12 +19425,12 @@ }, "type": { "type": "reference", - "id": 2619, + "id": 2618, "name": "MessageCallback" } }, { - "id": 164, + "id": 161, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -19440,13 +19440,13 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2615, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 165, + "id": 162, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -19475,7 +19475,7 @@ } }, { - "id": 199, + "id": 196, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -19491,7 +19491,7 @@ ], "signatures": [ { - "id": 200, + "id": 197, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -19501,7 +19501,7 @@ }, "parameters": [ { - "id": 201, + "id": 198, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -19516,7 +19516,7 @@ "defaultValue": "false" }, { - "id": 202, + "id": 199, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -19550,7 +19550,7 @@ } }, { - "id": 213, + "id": 210, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -19566,7 +19566,7 @@ ], "signatures": [ { - "id": 214, + "id": 211, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -19603,7 +19603,7 @@ } }, { - "id": 77, + "id": 74, "name": "render", "kind": 2048, "kindString": "Method", @@ -19619,7 +19619,7 @@ ], "signatures": [ { - "id": 78, + "id": 75, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -19632,7 +19632,7 @@ "typeArguments": [ { "type": "reference", - "id": 55, + "id": 52, "name": "SearchEmbed" } ], @@ -19650,7 +19650,7 @@ } }, { - "id": 217, + "id": 214, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -19666,7 +19666,7 @@ ], "signatures": [ { - "id": 218, + "id": 215, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -19696,7 +19696,7 @@ } }, { - "id": 219, + "id": 216, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -19712,7 +19712,7 @@ ], "signatures": [ { - "id": 220, + "id": 217, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -19742,7 +19742,7 @@ } }, { - "id": 184, + "id": 181, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -19758,7 +19758,7 @@ ], "signatures": [ { - "id": 185, + "id": 182, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -19769,19 +19769,19 @@ }, "typeParameter": [ { - "id": 186, + "id": 183, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2016, "name": "HostEvent" } }, { - "id": 187, + "id": 184, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -19790,7 +19790,7 @@ ], "parameters": [ { - "id": 188, + "id": 185, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19804,7 +19804,7 @@ } }, { - "id": 189, + "id": 186, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -19861,7 +19861,7 @@ } }, { - "id": 190, + "id": 187, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -19877,7 +19877,7 @@ ], "signatures": [ { - "id": 191, + "id": 188, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -19888,21 +19888,21 @@ }, "typeParameter": [ { - "id": 192, + "id": 189, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2876, + "id": 2875, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 193, + "id": 190, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -19916,7 +19916,7 @@ } }, { - "id": 194, + "id": 191, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -19969,30 +19969,30 @@ "title": "Constructors", "kind": 512, "children": [ - 56 + 53 ] }, { "title": "Methods", "kind": 2048, "children": [ - 209, - 228, - 75, - 195, - 223, - 203, - 211, - 221, - 166, - 160, - 199, - 213, - 77, - 217, - 219, - 184, - 190 + 206, + 225, + 72, + 192, + 220, + 200, + 208, + 218, + 163, + 157, + 196, + 210, + 74, + 214, + 216, + 181, + 187 ] } ], @@ -20011,7 +20011,7 @@ ] }, { - "id": 1199, + "id": 1196, "name": "SpotterAgentEmbed", "kind": 128, "kindString": "Class", @@ -20035,7 +20035,7 @@ }, "children": [ { - "id": 1200, + "id": 1197, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -20049,35 +20049,35 @@ ], "signatures": [ { - "id": 1201, + "id": 1198, "name": "new SpotterAgentEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1202, + "id": 1199, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1231, + "id": 1228, "name": "SpotterAgentEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1199, + "id": 1196, "name": "SpotterAgentEmbed" } } ] }, { - "id": 1204, + "id": 1201, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -20093,14 +20093,14 @@ ], "signatures": [ { - "id": 1205, + "id": 1202, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1206, + "id": 1203, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -20120,14 +20120,14 @@ { "type": "reflection", "declaration": { - "id": 1207, + "id": 1204, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1209, + "id": 1206, "name": "container", "kind": 1024, "kindString": "Property", @@ -20138,7 +20138,7 @@ } }, { - "id": 1208, + "id": 1205, "name": "error", "kind": 1024, "kindString": "Property", @@ -20149,7 +20149,7 @@ } }, { - "id": 1210, + "id": 1207, "name": "viz", "kind": 1024, "kindString": "Property", @@ -20166,9 +20166,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1209, - 1208, - 1210 + 1206, + 1205, + 1207 ] } ] @@ -20177,14 +20177,14 @@ { "type": "reflection", "declaration": { - "id": 1211, + "id": 1208, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1212, + "id": 1209, "name": "container", "kind": 1024, "kindString": "Property", @@ -20195,7 +20195,7 @@ } }, { - "id": 1214, + "id": 1211, "name": "error", "kind": 1024, "kindString": "Property", @@ -20206,7 +20206,7 @@ } }, { - "id": 1213, + "id": 1210, "name": "viz", "kind": 1024, "kindString": "Property", @@ -20223,9 +20223,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1212, - 1214, - 1213 + 1209, + 1211, + 1210 ] } ] @@ -20240,7 +20240,7 @@ ] }, { - "id": 1215, + "id": 1212, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -20256,7 +20256,7 @@ ], "signatures": [ { - "id": 1216, + "id": 1213, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -20267,7 +20267,7 @@ }, "parameters": [ { - "id": 1217, + "id": 1214, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -20290,14 +20290,14 @@ { "type": "reflection", "declaration": { - "id": 1218, + "id": 1215, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1220, + "id": 1217, "name": "data", "kind": 1024, "kindString": "Property", @@ -20309,7 +20309,7 @@ "defaultValue": "..." }, { - "id": 1219, + "id": 1216, "name": "error", "kind": 1024, "kindString": "Property", @@ -20325,8 +20325,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1220, - 1219 + 1217, + 1216 ] } ] @@ -20335,14 +20335,14 @@ { "type": "reflection", "declaration": { - "id": 1221, + "id": 1218, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1222, + "id": 1219, "name": "data", "kind": 1024, "kindString": "Property", @@ -20350,14 +20350,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1223, + "id": 1220, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1229, + "id": 1226, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -20369,7 +20369,7 @@ "defaultValue": "..." }, { - "id": 1228, + "id": 1225, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -20381,7 +20381,7 @@ "defaultValue": "..." }, { - "id": 1224, + "id": 1221, "name": "convId", "kind": 1024, "kindString": "Property", @@ -20393,7 +20393,7 @@ "defaultValue": "..." }, { - "id": 1227, + "id": 1224, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -20405,7 +20405,7 @@ "defaultValue": "..." }, { - "id": 1225, + "id": 1222, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -20417,7 +20417,7 @@ "defaultValue": "..." }, { - "id": 1226, + "id": 1223, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -20434,12 +20434,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1229, - 1228, - 1224, - 1227, + 1226, 1225, - 1226 + 1221, + 1224, + 1222, + 1223 ] } ] @@ -20448,7 +20448,7 @@ "defaultValue": "..." }, { - "id": 1230, + "id": 1227, "name": "error", "kind": 1024, "kindString": "Property", @@ -20464,8 +20464,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1222, - 1230 + 1219, + 1227 ] } ] @@ -20485,15 +20485,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1200 + 1197 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1204, - 1215 + 1201, + 1212 ] } ], @@ -20507,13 +20507,13 @@ "extendedBy": [ { "type": "reference", - "id": 1289, + "id": 1286, "name": "BodylessConversation" } ] }, { - "id": 1320, + "id": 1317, "name": "SpotterEmbed", "kind": 128, "kindString": "Class", @@ -20537,7 +20537,7 @@ }, "children": [ { - "id": 1321, + "id": 1318, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -20551,14 +20551,14 @@ ], "signatures": [ { - "id": 1322, + "id": 1319, "name": "new SpotterEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1323, + "id": 1320, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -20569,21 +20569,21 @@ } }, { - "id": 1324, + "id": 1321, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1486, + "id": 1483, "name": "SpotterEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1320, + "id": 1317, "name": "SpotterEmbed" }, "overwrites": { @@ -20598,7 +20598,7 @@ } }, { - "id": 1464, + "id": 1461, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -20614,7 +20614,7 @@ ], "signatures": [ { - "id": 1465, + "id": 1462, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -20644,7 +20644,7 @@ } }, { - "id": 1483, + "id": 1480, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -20660,7 +20660,7 @@ ], "signatures": [ { - "id": 1484, + "id": 1481, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -20676,7 +20676,7 @@ }, "parameters": [ { - "id": 1485, + "id": 1482, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -20697,7 +20697,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } ], @@ -20715,7 +20715,7 @@ } }, { - "id": 1328, + "id": 1325, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -20731,7 +20731,7 @@ ], "signatures": [ { - "id": 1329, + "id": 1326, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -20752,7 +20752,7 @@ } }, { - "id": 1478, + "id": 1475, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -20768,7 +20768,7 @@ ], "signatures": [ { - "id": 1479, + "id": 1476, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -20790,14 +20790,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1480, + "id": 1477, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1482, + "id": 1479, "name": "child", "kind": 1024, "kindString": "Property", @@ -20809,7 +20809,7 @@ "defaultValue": "..." }, { - "id": 1481, + "id": 1478, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -20826,8 +20826,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1482, - 1481 + 1479, + 1478 ] } ] @@ -20845,7 +20845,7 @@ } }, { - "id": 1458, + "id": 1455, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -20861,7 +20861,7 @@ ], "signatures": [ { - "id": 1459, + "id": 1456, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -20877,7 +20877,7 @@ }, "parameters": [ { - "id": 1460, + "id": 1457, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -20885,20 +20885,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1461, + "id": 1458, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1462, + "id": 1459, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1463, + "id": 1460, "name": "key", "kind": 32768, "flags": {}, @@ -20943,7 +20943,7 @@ } }, { - "id": 1466, + "id": 1463, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -20959,7 +20959,7 @@ ], "signatures": [ { - "id": 1467, + "id": 1464, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -20980,7 +20980,7 @@ } }, { - "id": 1476, + "id": 1473, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -20996,7 +20996,7 @@ ], "signatures": [ { - "id": 1477, + "id": 1474, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -21020,7 +21020,7 @@ } }, { - "id": 1423, + "id": 1420, "name": "off", "kind": 2048, "kindString": "Method", @@ -21036,7 +21036,7 @@ ], "signatures": [ { - "id": 1424, + "id": 1421, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -21052,7 +21052,7 @@ }, "parameters": [ { - "id": 1425, + "id": 1422, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21062,12 +21062,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 1426, + "id": 1423, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -21077,7 +21077,7 @@ }, "type": { "type": "reference", - "id": 2619, + "id": 2618, "name": "MessageCallback" } } @@ -21098,7 +21098,7 @@ } }, { - "id": 1417, + "id": 1414, "name": "on", "kind": 2048, "kindString": "Method", @@ -21114,7 +21114,7 @@ ], "signatures": [ { - "id": 1418, + "id": 1415, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -21134,7 +21134,7 @@ }, "parameters": [ { - "id": 1419, + "id": 1416, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21144,12 +21144,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1923, "name": "EmbedEvent" } }, { - "id": 1420, + "id": 1417, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -21159,12 +21159,12 @@ }, "type": { "type": "reference", - "id": 2619, + "id": 2618, "name": "MessageCallback" } }, { - "id": 1421, + "id": 1418, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -21174,13 +21174,13 @@ }, "type": { "type": "reference", - "id": 2616, + "id": 2615, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1422, + "id": 1419, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -21209,7 +21209,7 @@ } }, { - "id": 1454, + "id": 1451, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -21225,7 +21225,7 @@ ], "signatures": [ { - "id": 1455, + "id": 1452, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -21235,7 +21235,7 @@ }, "parameters": [ { - "id": 1456, + "id": 1453, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -21250,7 +21250,7 @@ "defaultValue": "false" }, { - "id": 1457, + "id": 1454, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -21284,7 +21284,7 @@ } }, { - "id": 1468, + "id": 1465, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -21300,7 +21300,7 @@ ], "signatures": [ { - "id": 1469, + "id": 1466, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -21337,7 +21337,7 @@ } }, { - "id": 1330, + "id": 1327, "name": "render", "kind": 2048, "kindString": "Method", @@ -21353,7 +21353,7 @@ ], "signatures": [ { - "id": 1331, + "id": 1328, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -21363,7 +21363,7 @@ "typeArguments": [ { "type": "reference", - "id": 1320, + "id": 1317, "name": "SpotterEmbed" } ], @@ -21381,7 +21381,7 @@ } }, { - "id": 1472, + "id": 1469, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -21397,7 +21397,7 @@ ], "signatures": [ { - "id": 1473, + "id": 1470, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -21427,7 +21427,7 @@ } }, { - "id": 1474, + "id": 1471, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -21443,7 +21443,7 @@ ], "signatures": [ { - "id": 1475, + "id": 1472, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -21473,7 +21473,7 @@ } }, { - "id": 1441, + "id": 1438, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -21489,7 +21489,7 @@ ], "signatures": [ { - "id": 1442, + "id": 1439, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -21500,19 +21500,19 @@ }, "typeParameter": [ { - "id": 1443, + "id": 1440, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2016, "name": "HostEvent" } }, { - "id": 1444, + "id": 1441, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -21521,7 +21521,7 @@ ], "parameters": [ { - "id": 1445, + "id": 1442, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21535,7 +21535,7 @@ } }, { - "id": 1446, + "id": 1443, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -21592,7 +21592,7 @@ } }, { - "id": 1447, + "id": 1444, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -21608,7 +21608,7 @@ ], "signatures": [ { - "id": 1448, + "id": 1445, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -21619,21 +21619,21 @@ }, "typeParameter": [ { - "id": 1449, + "id": 1446, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2876, + "id": 2875, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1450, + "id": 1447, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -21647,7 +21647,7 @@ } }, { - "id": 1451, + "id": 1448, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -21700,29 +21700,29 @@ "title": "Constructors", "kind": 512, "children": [ - 1321 + 1318 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1464, - 1483, - 1328, - 1478, - 1458, - 1466, - 1476, - 1423, - 1417, - 1454, - 1468, - 1330, - 1472, - 1474, - 1441, - 1447 + 1461, + 1480, + 1325, + 1475, + 1455, + 1463, + 1473, + 1420, + 1414, + 1451, + 1465, + 1327, + 1469, + 1471, + 1438, + 1444 ] } ], @@ -21742,13 +21742,13 @@ "extendedBy": [ { "type": "reference", - "id": 1566, + "id": 1563, "name": "ConversationEmbed" } ] }, { - "id": 2503, + "id": 2501, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -21764,7 +21764,7 @@ }, "children": [ { - "id": 2541, + "id": 2539, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -21795,20 +21795,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2542, + "id": 2540, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2543, + "id": 2541, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2544, + "id": 2542, "name": "key", "kind": 32768, "flags": {}, @@ -21844,7 +21844,7 @@ } }, { - "id": 2565, + "id": 2563, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -21886,7 +21886,7 @@ } }, { - "id": 2523, + "id": 2521, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -21923,7 +21923,7 @@ } }, { - "id": 2562, + "id": 2560, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -21953,7 +21953,7 @@ ], "type": { "type": "reference", - "id": 2232, + "id": 2229, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -21962,7 +21962,7 @@ } }, { - "id": 2582, + "id": 2580, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -22000,7 +22000,7 @@ } }, { - "id": 2559, + "id": 2557, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -22041,7 +22041,7 @@ } }, { - "id": 2545, + "id": 2543, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -22070,7 +22070,7 @@ ], "type": { "type": "reference", - "id": 2632, + "id": 2631, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -22079,7 +22079,7 @@ } }, { - "id": 2524, + "id": 2522, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -22113,12 +22113,12 @@ ], "type": { "type": "reference", - "id": 2889, + "id": 2888, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2566, + "id": 2564, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -22160,7 +22160,7 @@ } }, { - "id": 2506, + "id": 2504, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -22198,7 +22198,7 @@ } }, { - "id": 2553, + "id": 2551, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -22236,7 +22236,7 @@ } }, { - "id": 2537, + "id": 2535, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -22274,7 +22274,7 @@ } }, { - "id": 2536, + "id": 2534, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -22306,7 +22306,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -22316,7 +22316,7 @@ } }, { - "id": 2522, + "id": 2520, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -22354,7 +22354,7 @@ } }, { - "id": 2549, + "id": 2547, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -22395,7 +22395,7 @@ } }, { - "id": 2576, + "id": 2574, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -22437,7 +22437,7 @@ } }, { - "id": 2581, + "id": 2579, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -22479,7 +22479,7 @@ } }, { - "id": 2567, + "id": 2565, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -22521,7 +22521,7 @@ } }, { - "id": 2507, + "id": 2505, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -22557,7 +22557,7 @@ } }, { - "id": 2519, + "id": 2517, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -22595,7 +22595,7 @@ } }, { - "id": 2550, + "id": 2548, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -22633,7 +22633,7 @@ } }, { - "id": 2563, + "id": 2561, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -22671,7 +22671,7 @@ } }, { - "id": 2564, + "id": 2562, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -22709,7 +22709,7 @@ } }, { - "id": 2552, + "id": 2550, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -22746,7 +22746,7 @@ } }, { - "id": 2533, + "id": 2531, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -22776,7 +22776,7 @@ ], "type": { "type": "reference", - "id": 2591, + "id": 2590, "name": "FrameParams" }, "inheritedFrom": { @@ -22785,7 +22785,7 @@ } }, { - "id": 2520, + "id": 2518, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -22819,7 +22819,7 @@ } }, { - "id": 2538, + "id": 2536, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -22855,7 +22855,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -22865,7 +22865,7 @@ } }, { - "id": 2571, + "id": 2569, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -22897,7 +22897,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2597, + "id": 2596, "name": "HomeLeftNavItem" } }, @@ -22907,7 +22907,7 @@ } }, { - "id": 2569, + "id": 2567, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -22939,7 +22939,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2608, + "id": 2607, "name": "HomepageModule" } }, @@ -22949,7 +22949,7 @@ } }, { - "id": 2568, + "id": 2566, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -22981,7 +22981,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2883, + "id": 2882, "name": "ListPageColumns" } }, @@ -22991,7 +22991,7 @@ } }, { - "id": 2511, + "id": 2509, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -23029,7 +23029,7 @@ } }, { - "id": 2508, + "id": 2506, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -23067,7 +23067,7 @@ } }, { - "id": 2505, + "id": 2503, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -23105,7 +23105,7 @@ } }, { - "id": 2579, + "id": 2577, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -23147,7 +23147,7 @@ } }, { - "id": 2572, + "id": 2570, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -23189,7 +23189,7 @@ } }, { - "id": 2510, + "id": 2508, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -23227,7 +23227,7 @@ } }, { - "id": 2509, + "id": 2507, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -23265,7 +23265,7 @@ } }, { - "id": 2517, + "id": 2515, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -23302,7 +23302,7 @@ } }, { - "id": 2512, + "id": 2510, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -23340,7 +23340,7 @@ } }, { - "id": 2516, + "id": 2514, "name": "hideTagFilterChips", "kind": 1024, "kindString": "Property", @@ -23374,7 +23374,7 @@ } }, { - "id": 2526, + "id": 2524, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -23400,12 +23400,12 @@ ], "type": { "type": "reference", - "id": 2841, + "id": 2840, "name": "HomePageSearchBarMode" } }, { - "id": 2546, + "id": 2544, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -23443,7 +23443,7 @@ } }, { - "id": 2584, + "id": 2582, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -23481,7 +23481,45 @@ } }, { - "id": 2585, + "id": 2584, + "name": "isEnhancedFilterInteractivityEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag is used to enable or disable the enhanced filter interactivity in liveboard.", + "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.42.0 | ThoughtSpot: 10.15.0.cl" + }, + { + "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 isEnhancedFilterInteractivityEnabled: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1563, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "AllEmbedViewConfig.isEnhancedFilterInteractivityEnabled" + } + }, + { + "id": 2583, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -23519,7 +23557,7 @@ } }, { - "id": 2577, + "id": 2575, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -23561,7 +23599,7 @@ } }, { - "id": 2575, + "id": 2573, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -23599,7 +23637,7 @@ } }, { - "id": 2528, + "id": 2526, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -23633,7 +23671,7 @@ } }, { - "id": 2525, + "id": 2523, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -23662,7 +23700,7 @@ } }, { - "id": 2529, + "id": 2527, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -23696,7 +23734,7 @@ } }, { - "id": 2527, + "id": 2525, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -23734,7 +23772,7 @@ } }, { - "id": 2530, + "id": 2528, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -23771,7 +23809,7 @@ } }, { - "id": 2531, + "id": 2529, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -23805,7 +23843,7 @@ } }, { - "id": 2555, + "id": 2553, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -23843,7 +23881,7 @@ } }, { - "id": 2583, + "id": 2581, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -23881,7 +23919,7 @@ } }, { - "id": 2540, + "id": 2538, "name": "locale", "kind": 1024, "kindString": "Property", @@ -23919,7 +23957,7 @@ } }, { - "id": 2521, + "id": 2519, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -23957,7 +23995,7 @@ } }, { - "id": 2554, + "id": 2552, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -23995,7 +24033,7 @@ } }, { - "id": 2514, + "id": 2512, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -24025,12 +24063,12 @@ ], "type": { "type": "reference", - "id": 1885, + "id": 1882, "name": "Page" } }, { - "id": 2513, + "id": 2511, "name": "path", "kind": 1024, "kindString": "Property", @@ -24064,7 +24102,7 @@ } }, { - "id": 2548, + "id": 2546, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -24102,7 +24140,7 @@ } }, { - "id": 2556, + "id": 2554, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -24140,7 +24178,7 @@ } }, { - "id": 2570, + "id": 2568, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -24172,7 +24210,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2608, + "id": 2607, "name": "HomepageModule" } }, @@ -24182,7 +24220,7 @@ } }, { - "id": 2560, + "id": 2558, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -24214,7 +24252,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1903, "name": "RuntimeFilter" } }, @@ -24224,7 +24262,7 @@ } }, { - "id": 2561, + "id": 2559, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -24256,7 +24294,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2815, + "id": 2814, "name": "RuntimeParameter" } }, @@ -24266,7 +24304,7 @@ } }, { - "id": 2558, + "id": 2556, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -24303,7 +24341,7 @@ } }, { - "id": 2574, + "id": 2572, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -24345,7 +24383,7 @@ } }, { - "id": 2580, + "id": 2578, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -24387,7 +24425,7 @@ } }, { - "id": 2573, + "id": 2571, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -24429,7 +24467,7 @@ } }, { - "id": 2578, + "id": 2576, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -24471,7 +24509,7 @@ } }, { - "id": 2504, + "id": 2502, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -24509,7 +24547,7 @@ } }, { - "id": 2515, + "id": 2513, "name": "tag", "kind": 1024, "kindString": "Property", @@ -24543,7 +24581,7 @@ } }, { - "id": 2539, + "id": 2537, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -24579,7 +24617,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -24594,78 +24632,79 @@ "title": "Properties", "kind": 1024, "children": [ - 2541, - 2565, - 2523, - 2562, - 2582, - 2559, - 2545, - 2524, - 2566, - 2506, - 2553, - 2537, - 2536, - 2522, - 2549, - 2576, - 2581, - 2567, - 2507, - 2519, - 2550, + 2539, 2563, + 2521, + 2560, + 2580, + 2557, + 2543, + 2522, 2564, - 2552, - 2533, + 2504, + 2551, + 2535, + 2534, 2520, - 2538, - 2571, + 2547, + 2574, + 2579, + 2565, + 2505, + 2517, + 2548, + 2561, + 2562, + 2550, + 2531, + 2518, + 2536, 2569, - 2568, - 2511, + 2567, + 2566, + 2509, + 2506, + 2503, + 2577, + 2570, 2508, - 2505, - 2579, - 2572, + 2507, + 2515, 2510, - 2509, - 2517, - 2512, - 2516, - 2526, - 2546, + 2514, + 2524, + 2544, + 2582, 2584, - 2585, - 2577, + 2583, 2575, - 2528, + 2573, + 2526, + 2523, + 2527, 2525, + 2528, 2529, - 2527, - 2530, - 2531, - 2555, - 2583, - 2540, - 2521, + 2553, + 2581, + 2538, + 2519, + 2552, + 2512, + 2511, + 2546, 2554, - 2514, - 2513, - 2548, - 2556, - 2570, - 2560, - 2561, + 2568, 2558, - 2574, - 2580, - 2573, + 2559, + 2556, + 2572, 2578, - 2504, - 2515, - 2539 + 2571, + 2576, + 2502, + 2513, + 2537 ] } ], @@ -24684,7 +24723,7 @@ ] }, { - "id": 1749, + "id": 1746, "name": "AuthEventEmitter", "kind": 256, "kindString": "Interface", @@ -24700,14 +24739,14 @@ }, "children": [ { - "id": 1786, + "id": 1783, "name": "emit", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1787, + "id": 1784, "name": "emit", "kind": 4096, "kindString": "Call signature", @@ -24717,19 +24756,19 @@ }, "parameters": [ { - "id": 1788, + "id": 1785, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1748, + "id": 1745, "name": "TRIGGER_SSO_POPUP" } }, { - "id": 1789, + "id": 1786, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -24753,14 +24792,14 @@ ] }, { - "id": 1790, + "id": 1787, "name": "off", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1791, + "id": 1788, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -24770,7 +24809,7 @@ }, "parameters": [ { - "id": 1792, + "id": 1789, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24778,12 +24817,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1739, + "id": 1736, "name": "AuthStatus" } }, { - "id": 1793, + "id": 1790, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24792,21 +24831,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1794, + "id": 1791, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1795, + "id": 1792, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1796, + "id": 1793, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -24832,7 +24871,7 @@ } }, { - "id": 1797, + "id": 1794, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -24844,7 +24883,7 @@ } }, { - "id": 1798, + "id": 1795, "name": "once", "kind": 32768, "kindString": "Parameter", @@ -24860,21 +24899,21 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1746, "name": "AuthEventEmitter" } } ] }, { - "id": 1750, + "id": 1747, "name": "on", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1751, + "id": 1748, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -24884,7 +24923,7 @@ }, "parameters": [ { - "id": 1752, + "id": 1749, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24892,12 +24931,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1740, + "id": 1737, "name": "FAILURE" } }, { - "id": 1753, + "id": 1750, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24908,28 +24947,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1754, + "id": 1751, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1755, + "id": 1752, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1756, + "id": 1753, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1732, + "id": 1729, "name": "AuthFailureType" } } @@ -24946,12 +24985,12 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1746, "name": "AuthEventEmitter" } }, { - "id": 1757, + "id": 1754, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -24961,7 +25000,7 @@ }, "parameters": [ { - "id": 1758, + "id": 1755, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24972,29 +25011,29 @@ "types": [ { "type": "reference", - "id": 1741, + "id": 1738, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1744, + "id": 1741, "name": "LOGOUT" }, { "type": "reference", - "id": 1745, + "id": 1742, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1746, + "id": 1743, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1759, + "id": 1756, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25005,14 +25044,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1760, + "id": 1757, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1761, + "id": 1758, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -25029,31 +25068,31 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1746, "name": "AuthEventEmitter" } }, { - "id": 1762, + "id": 1759, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1763, + "id": 1760, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1743, + "id": 1740, "name": "SUCCESS" } }, { - "id": 1764, + "id": 1761, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25061,21 +25100,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1765, + "id": 1762, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1766, + "id": 1763, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1767, + "id": 1764, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -25098,40 +25137,40 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1746, "name": "AuthEventEmitter" } } ] }, { - "id": 1768, + "id": 1765, "name": "once", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1769, + "id": 1766, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1770, + "id": 1767, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1740, + "id": 1737, "name": "FAILURE" } }, { - "id": 1771, + "id": 1768, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25139,28 +25178,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1772, + "id": 1769, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1773, + "id": 1770, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1774, + "id": 1771, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1732, + "id": 1729, "name": "AuthFailureType" } } @@ -25177,19 +25216,19 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1746, "name": "AuthEventEmitter" } }, { - "id": 1775, + "id": 1772, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1776, + "id": 1773, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25199,29 +25238,29 @@ "types": [ { "type": "reference", - "id": 1741, + "id": 1738, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1744, + "id": 1741, "name": "LOGOUT" }, { "type": "reference", - "id": 1745, + "id": 1742, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1746, + "id": 1743, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1777, + "id": 1774, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25229,14 +25268,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1778, + "id": 1775, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1779, + "id": 1776, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -25253,31 +25292,31 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1746, "name": "AuthEventEmitter" } }, { - "id": 1780, + "id": 1777, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1781, + "id": 1778, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1743, + "id": 1740, "name": "SUCCESS" } }, { - "id": 1782, + "id": 1779, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25285,21 +25324,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1783, + "id": 1780, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1784, + "id": 1781, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1785, + "id": 1782, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -25322,21 +25361,21 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1746, "name": "AuthEventEmitter" } } ] }, { - "id": 1799, + "id": 1796, "name": "removeAllListeners", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1800, + "id": 1797, "name": "removeAllListeners", "kind": 4096, "kindString": "Call signature", @@ -25346,7 +25385,7 @@ }, "parameters": [ { - "id": 1801, + "id": 1798, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25356,14 +25395,14 @@ }, "type": { "type": "reference", - "id": 1739, + "id": 1736, "name": "AuthStatus" } } ], "type": { "type": "reference", - "id": 1749, + "id": 1746, "name": "AuthEventEmitter" } } @@ -25375,11 +25414,11 @@ "title": "Methods", "kind": 2048, "children": [ - 1786, - 1790, - 1750, - 1768, - 1799 + 1783, + 1787, + 1747, + 1765, + 1796 ] } ], @@ -25392,7 +25431,7 @@ ] }, { - "id": 1260, + "id": 1257, "name": "BodylessConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -25412,7 +25451,7 @@ }, "children": [ { - "id": 1271, + "id": 1268, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -25443,20 +25482,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1272, + "id": 1269, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1273, + "id": 1270, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1274, + "id": 1271, "name": "key", "kind": 32768, "flags": {}, @@ -25488,12 +25527,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1242, + "id": 1239, "name": "SpotterAgentEmbedViewConfig.additionalFlags" } }, { - "id": 1288, + "id": 1285, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -25530,12 +25569,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1259, + "id": 1256, "name": "SpotterAgentEmbedViewConfig.customActions" } }, { - "id": 1275, + "id": 1272, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -25564,17 +25603,17 @@ ], "type": { "type": "reference", - "id": 2632, + "id": 2631, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1246, + "id": 1243, "name": "SpotterAgentEmbedViewConfig.customizations" } }, { - "id": 1283, + "id": 1280, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -25608,12 +25647,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1254, + "id": 1251, "name": "SpotterAgentEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1267, + "id": 1264, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -25647,12 +25686,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1238, + "id": 1235, "name": "SpotterAgentEmbedViewConfig.disabledActionReason" } }, { - "id": 1266, + "id": 1263, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -25684,18 +25723,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1237, + "id": 1234, "name": "SpotterAgentEmbedViewConfig.disabledActions" } }, { - "id": 1279, + "id": 1276, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -25732,12 +25771,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1250, + "id": 1247, "name": "SpotterAgentEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1280, + "id": 1277, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -25771,12 +25810,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1251, + "id": 1248, "name": "SpotterAgentEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1282, + "id": 1279, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -25809,12 +25848,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1253, + "id": 1250, "name": "SpotterAgentEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1263, + "id": 1260, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -25844,17 +25883,17 @@ ], "type": { "type": "reference", - "id": 2591, + "id": 2590, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1234, + "id": 1231, "name": "SpotterAgentEmbedViewConfig.frameParams" } }, { - "id": 1268, + "id": 1265, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -25890,18 +25929,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1239, + "id": 1236, "name": "SpotterAgentEmbedViewConfig.hiddenActions" } }, { - "id": 1276, + "id": 1273, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -25935,12 +25974,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1247, + "id": 1244, "name": "SpotterAgentEmbedViewConfig.insertAsSibling" } }, { - "id": 1285, + "id": 1282, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -25974,12 +26013,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1256, + "id": 1253, "name": "SpotterAgentEmbedViewConfig.linkOverride" } }, { - "id": 1270, + "id": 1267, "name": "locale", "kind": 1024, "kindString": "Property", @@ -26013,12 +26052,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1241, + "id": 1238, "name": "SpotterAgentEmbedViewConfig.locale" } }, { - "id": 1284, + "id": 1281, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -26052,12 +26091,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1255, + "id": 1252, "name": "SpotterAgentEmbedViewConfig.overrideOrgId" } }, { - "id": 1278, + "id": 1275, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -26091,12 +26130,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1249, + "id": 1246, "name": "SpotterAgentEmbedViewConfig.preRenderId" } }, { - "id": 1287, + "id": 1284, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -26129,12 +26168,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1258, + "id": 1255, "name": "SpotterAgentEmbedViewConfig.showAlerts" } }, { - "id": 1269, + "id": 1266, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -26170,18 +26209,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1240, + "id": 1237, "name": "SpotterAgentEmbedViewConfig.visibleActions" } }, { - "id": 1261, + "id": 1258, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -26202,7 +26241,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1232, + "id": 1229, "name": "SpotterAgentEmbedViewConfig.worksheetId" } } @@ -26212,25 +26251,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1271, - 1288, - 1275, - 1283, - 1267, - 1266, - 1279, + 1268, + 1285, + 1272, 1280, - 1282, + 1264, 1263, - 1268, 1276, - 1285, - 1270, + 1277, + 1279, + 1260, + 1265, + 1273, + 1282, + 1267, + 1281, + 1275, 1284, - 1278, - 1287, - 1269, - 1261 + 1266, + 1258 ] } ], @@ -26244,13 +26283,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1231, + "id": 1228, "name": "SpotterAgentEmbedViewConfig" } ] }, { - "id": 1526, + "id": 1523, "name": "ConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -26270,7 +26309,7 @@ }, "children": [ { - "id": 1548, + "id": 1545, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -26301,20 +26340,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1549, + "id": 1546, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1550, + "id": 1547, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1551, + "id": 1548, "name": "key", "kind": 32768, "flags": {}, @@ -26346,12 +26385,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1508, + "id": 1505, "name": "SpotterEmbedViewConfig.additionalFlags" } }, { - "id": 1565, + "id": 1562, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -26388,12 +26427,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1525, + "id": 1522, "name": "SpotterEmbedViewConfig.customActions" } }, { - "id": 1552, + "id": 1549, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -26422,17 +26461,17 @@ ], "type": { "type": "reference", - "id": 2632, + "id": 2631, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1512, + "id": 1509, "name": "SpotterEmbedViewConfig.customizations" } }, { - "id": 1531, + "id": 1528, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -26470,12 +26509,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1491, + "id": 1488, "name": "SpotterEmbedViewConfig.dataPanelV2" } }, { - "id": 1560, + "id": 1557, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -26509,12 +26548,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1520, + "id": 1517, "name": "SpotterEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1529, + "id": 1526, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -26548,12 +26587,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1489, + "id": 1486, "name": "SpotterEmbedViewConfig.disableSourceSelection" } }, { - "id": 1544, + "id": 1541, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -26587,12 +26626,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1504, + "id": 1501, "name": "SpotterEmbedViewConfig.disabledActionReason" } }, { - "id": 1543, + "id": 1540, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -26624,18 +26663,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1503, + "id": 1500, "name": "SpotterEmbedViewConfig.disabledActions" } }, { - "id": 1556, + "id": 1553, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -26672,12 +26711,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1516, + "id": 1513, "name": "SpotterEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1538, + "id": 1535, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -26715,12 +26754,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1498, + "id": 1495, "name": "SpotterEmbedViewConfig.enablePastConversationsSidebar" } }, { - "id": 1557, + "id": 1554, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -26754,12 +26793,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1517, + "id": 1514, "name": "SpotterEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1535, + "id": 1532, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -26793,12 +26832,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1495, + "id": 1492, "name": "SpotterEmbedViewConfig.excludeRuntimeFiltersfromURL" } }, { - "id": 1537, + "id": 1534, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -26832,12 +26871,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1497, + "id": 1494, "name": "SpotterEmbedViewConfig.excludeRuntimeParametersfromURL" } }, { - "id": 1559, + "id": 1556, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -26870,12 +26909,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1519, + "id": 1516, "name": "SpotterEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1540, + "id": 1537, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -26905,17 +26944,17 @@ ], "type": { "type": "reference", - "id": 2591, + "id": 2590, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1500, + "id": 1497, "name": "SpotterEmbedViewConfig.frameParams" } }, { - "id": 1545, + "id": 1542, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -26951,18 +26990,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1505, + "id": 1502, "name": "SpotterEmbedViewConfig.hiddenActions" } }, { - "id": 1533, + "id": 1530, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -26996,12 +27035,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1493, + "id": 1490, "name": "SpotterEmbedViewConfig.hideSampleQuestions" } }, { - "id": 1530, + "id": 1527, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -27035,12 +27074,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1490, + "id": 1487, "name": "SpotterEmbedViewConfig.hideSourceSelection" } }, { - "id": 1553, + "id": 1550, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -27074,12 +27113,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1513, + "id": 1510, "name": "SpotterEmbedViewConfig.insertAsSibling" } }, { - "id": 1562, + "id": 1559, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -27113,12 +27152,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1522, + "id": 1519, "name": "SpotterEmbedViewConfig.linkOverride" } }, { - "id": 1547, + "id": 1544, "name": "locale", "kind": 1024, "kindString": "Property", @@ -27152,12 +27191,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1507, + "id": 1504, "name": "SpotterEmbedViewConfig.locale" } }, { - "id": 1561, + "id": 1558, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -27191,12 +27230,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1521, + "id": 1518, "name": "SpotterEmbedViewConfig.overrideOrgId" } }, { - "id": 1555, + "id": 1552, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -27230,12 +27269,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1515, + "id": 1512, "name": "SpotterEmbedViewConfig.preRenderId" } }, { - "id": 1534, + "id": 1531, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -27267,18 +27306,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1903, "name": "RuntimeFilter" } }, "inheritedFrom": { "type": "reference", - "id": 1494, + "id": 1491, "name": "SpotterEmbedViewConfig.runtimeFilters" } }, { - "id": 1536, + "id": 1533, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -27310,18 +27349,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2815, + "id": 2814, "name": "RuntimeParameter" } }, "inheritedFrom": { "type": "reference", - "id": 1496, + "id": 1493, "name": "SpotterEmbedViewConfig.runtimeParameters" } }, { - "id": 1528, + "id": 1525, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -27344,12 +27383,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1488, + "id": 1485, "name": "SpotterEmbedViewConfig.searchOptions" } }, { - "id": 1564, + "id": 1561, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -27382,12 +27421,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1524, + "id": 1521, "name": "SpotterEmbedViewConfig.showAlerts" } }, { - "id": 1532, + "id": 1529, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -27421,12 +27460,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1492, + "id": 1489, "name": "SpotterEmbedViewConfig.showSpotterLimitations" } }, { - "id": 1546, + "id": 1543, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -27462,18 +27501,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1506, + "id": 1503, "name": "SpotterEmbedViewConfig.visibleActions" } }, { - "id": 1527, + "id": 1524, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -27494,7 +27533,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1487, + "id": 1484, "name": "SpotterEmbedViewConfig.worksheetId" } } @@ -27504,36 +27543,36 @@ "title": "Properties", "kind": 1024, "children": [ - 1548, - 1565, - 1552, - 1531, - 1560, - 1529, - 1544, - 1543, - 1556, - 1538, + 1545, + 1562, + 1549, + 1528, 1557, + 1526, + 1541, + 1540, + 1553, 1535, + 1554, + 1532, + 1534, + 1556, 1537, + 1542, + 1530, + 1527, + 1550, 1559, - 1540, - 1545, + 1544, + 1558, + 1552, + 1531, 1533, - 1530, - 1553, - 1562, - 1547, + 1525, 1561, - 1555, - 1534, - 1536, - 1528, - 1564, - 1532, - 1546, - 1527 + 1529, + 1543, + 1524 ] } ], @@ -27547,13 +27586,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1486, + "id": 1483, "name": "SpotterEmbedViewConfig" } ] }, { - "id": 2856, + "id": 2855, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -27568,7 +27607,7 @@ }, "children": [ { - "id": 2857, + "id": 2856, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -27578,21 +27617,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5773, + "line": 5789, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2858, + "id": 2857, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2859, + "id": 2858, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -27600,18 +27639,18 @@ "sources": [ { "fileName": "types.ts", - "line": 5774, + "line": 5790, "character": 8 } ], "type": { "type": "reference", - "id": 2853, + "id": 2852, "name": "VizPoint" } }, { - "id": 2860, + "id": 2859, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -27619,7 +27658,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5775, + "line": 5791, "character": 8 } ], @@ -27627,7 +27666,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2853, + "id": 2852, "name": "VizPoint" } } @@ -27638,8 +27677,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2859, - 2860 + 2858, + 2859 ] } ] @@ -27647,7 +27686,7 @@ } }, { - "id": 2861, + "id": 2860, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -27655,21 +27694,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5777, + "line": 5793, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2862, + "id": 2861, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2870, + "id": 2869, "name": "columns", "kind": 1024, "kindString": "Property", @@ -27677,7 +27716,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5785, + "line": 5801, "character": 8 } ], @@ -27690,7 +27729,7 @@ } }, { - "id": 2871, + "id": 2870, "name": "data", "kind": 1024, "kindString": "Property", @@ -27698,7 +27737,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5786, + "line": 5802, "character": 8 } ], @@ -27711,7 +27750,7 @@ } }, { - "id": 2864, + "id": 2863, "name": "id", "kind": 1024, "kindString": "Property", @@ -27719,7 +27758,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5779, + "line": 5795, "character": 8 } ], @@ -27729,7 +27768,7 @@ } }, { - "id": 2863, + "id": 2862, "name": "name", "kind": 1024, "kindString": "Property", @@ -27737,7 +27776,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5778, + "line": 5794, "character": 8 } ], @@ -27747,7 +27786,7 @@ } }, { - "id": 2865, + "id": 2864, "name": "sources", "kind": 1024, "kindString": "Property", @@ -27755,21 +27794,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5780, + "line": 5796, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2866, + "id": 2865, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2867, + "id": 2866, "name": "header", "kind": 1024, "kindString": "Property", @@ -27777,21 +27816,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5781, + "line": 5797, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2868, + "id": 2867, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2869, + "id": 2868, "name": "guid", "kind": 1024, "kindString": "Property", @@ -27799,7 +27838,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5782, + "line": 5798, "character": 16 } ], @@ -27814,7 +27853,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2869 + 2868 ] } ] @@ -27827,7 +27866,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2867 + 2866 ] } ] @@ -27840,23 +27879,23 @@ "title": "Properties", "kind": 1024, "children": [ + 2869, 2870, - 2871, - 2864, 2863, - 2865 + 2862, + 2864 ] } ], "indexSignature": { - "id": 2872, + "id": 2871, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2873, + "id": 2872, "name": "key", "kind": 32768, "flags": {}, @@ -27875,7 +27914,7 @@ } }, { - "id": 2874, + "id": 2873, "name": "session", "kind": 1024, "kindString": "Property", @@ -27883,18 +27922,18 @@ "sources": [ { "fileName": "types.ts", - "line": 5789, + "line": 5805, "character": 4 } ], "type": { "type": "reference", - "id": 1875, + "id": 1872, "name": "SessionInterface" } }, { - "id": 2875, + "id": 2874, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -27904,7 +27943,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5790, + "line": 5806, "character": 4 } ], @@ -27919,23 +27958,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2857, - 2861, - 2874, - 2875 + 2856, + 2860, + 2873, + 2874 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5772, + "line": 5788, "character": 17 } ] }, { - "id": 2654, + "id": 2653, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -27945,7 +27984,7 @@ }, "children": [ { - "id": 2708, + "id": 2707, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -27968,7 +28007,7 @@ } }, { - "id": 2707, + "id": 2706, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -27991,7 +28030,7 @@ } }, { - "id": 2677, + "id": 2676, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -28014,7 +28053,7 @@ } }, { - "id": 2678, + "id": 2677, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -28037,7 +28076,7 @@ } }, { - "id": 2680, + "id": 2679, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -28060,7 +28099,7 @@ } }, { - "id": 2679, + "id": 2678, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -28083,7 +28122,7 @@ } }, { - "id": 2659, + "id": 2658, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -28106,7 +28145,7 @@ } }, { - "id": 2720, + "id": 2719, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -28129,7 +28168,7 @@ } }, { - "id": 2721, + "id": 2720, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -28152,7 +28191,7 @@ } }, { - "id": 2718, + "id": 2717, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -28175,7 +28214,7 @@ } }, { - "id": 2719, + "id": 2718, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -28198,7 +28237,7 @@ } }, { - "id": 2682, + "id": 2681, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -28221,7 +28260,7 @@ } }, { - "id": 2687, + "id": 2686, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -28244,7 +28283,7 @@ } }, { - "id": 2684, + "id": 2683, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -28267,7 +28306,7 @@ } }, { - "id": 2686, + "id": 2685, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -28290,7 +28329,7 @@ } }, { - "id": 2685, + "id": 2684, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -28313,7 +28352,7 @@ } }, { - "id": 2683, + "id": 2682, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -28336,7 +28375,7 @@ } }, { - "id": 2692, + "id": 2691, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -28359,7 +28398,7 @@ } }, { - "id": 2689, + "id": 2688, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -28382,7 +28421,7 @@ } }, { - "id": 2691, + "id": 2690, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -28405,7 +28444,7 @@ } }, { - "id": 2690, + "id": 2689, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -28428,7 +28467,7 @@ } }, { - "id": 2688, + "id": 2687, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -28451,7 +28490,7 @@ } }, { - "id": 2696, + "id": 2695, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -28474,7 +28513,7 @@ } }, { - "id": 2695, + "id": 2694, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -28497,7 +28536,7 @@ } }, { - "id": 2694, + "id": 2693, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -28520,7 +28559,7 @@ } }, { - "id": 2693, + "id": 2692, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -28543,7 +28582,7 @@ } }, { - "id": 2681, + "id": 2680, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -28566,7 +28605,7 @@ } }, { - "id": 2814, + "id": 2813, "name": "--ts-var-cca-modal-summary-header-background", "kind": 1024, "kindString": "Property", @@ -28589,7 +28628,7 @@ } }, { - "id": 2809, + "id": 2808, "name": "--ts-var-change-analysis-insights-background", "kind": 1024, "kindString": "Property", @@ -28612,7 +28651,7 @@ } }, { - "id": 2804, + "id": 2803, "name": "--ts-var-chart-heatmap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28635,7 +28674,7 @@ } }, { - "id": 2803, + "id": 2802, "name": "--ts-var-chart-heatmap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28658,7 +28697,7 @@ } }, { - "id": 2806, + "id": 2805, "name": "--ts-var-chart-treemap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28681,7 +28720,7 @@ } }, { - "id": 2805, + "id": 2804, "name": "--ts-var-chart-treemap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28704,7 +28743,7 @@ } }, { - "id": 2743, + "id": 2742, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -28727,7 +28766,7 @@ } }, { - "id": 2746, + "id": 2745, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -28750,7 +28789,7 @@ } }, { - "id": 2741, + "id": 2740, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -28773,7 +28812,7 @@ } }, { - "id": 2744, + "id": 2743, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -28796,7 +28835,7 @@ } }, { - "id": 2745, + "id": 2744, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -28819,7 +28858,7 @@ } }, { - "id": 2740, + "id": 2739, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -28842,7 +28881,7 @@ } }, { - "id": 2742, + "id": 2741, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -28865,7 +28904,7 @@ } }, { - "id": 2713, + "id": 2712, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -28888,7 +28927,7 @@ } }, { - "id": 2712, + "id": 2711, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -28911,7 +28950,7 @@ } }, { - "id": 2715, + "id": 2714, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -28934,7 +28973,7 @@ } }, { - "id": 2714, + "id": 2713, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -28957,7 +28996,7 @@ } }, { - "id": 2711, + "id": 2710, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -28980,7 +29019,7 @@ } }, { - "id": 2709, + "id": 2708, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -29003,7 +29042,7 @@ } }, { - "id": 2710, + "id": 2709, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -29026,7 +29065,7 @@ } }, { - "id": 2716, + "id": 2715, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -29049,7 +29088,7 @@ } }, { - "id": 2717, + "id": 2716, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -29072,7 +29111,7 @@ } }, { - "id": 2728, + "id": 2727, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -29095,7 +29134,7 @@ } }, { - "id": 2729, + "id": 2728, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -29118,7 +29157,7 @@ } }, { - "id": 2732, + "id": 2731, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -29141,7 +29180,7 @@ } }, { - "id": 2730, + "id": 2729, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -29164,7 +29203,7 @@ } }, { - "id": 2731, + "id": 2730, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -29187,7 +29226,7 @@ } }, { - "id": 2739, + "id": 2738, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -29210,7 +29249,7 @@ } }, { - "id": 2738, + "id": 2737, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -29233,7 +29272,7 @@ } }, { - "id": 2737, + "id": 2736, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -29256,7 +29295,7 @@ } }, { - "id": 2736, + "id": 2735, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -29279,7 +29318,7 @@ } }, { - "id": 2802, + "id": 2801, "name": "--ts-var-kpi-analyze-text-color", "kind": 1024, "kindString": "Property", @@ -29302,7 +29341,7 @@ } }, { - "id": 2801, + "id": 2800, "name": "--ts-var-kpi-comparison-color", "kind": 1024, "kindString": "Property", @@ -29325,7 +29364,7 @@ } }, { - "id": 2800, + "id": 2799, "name": "--ts-var-kpi-hero-color", "kind": 1024, "kindString": "Property", @@ -29348,7 +29387,7 @@ } }, { - "id": 2808, + "id": 2807, "name": "--ts-var-kpi-negative-change-color", "kind": 1024, "kindString": "Property", @@ -29371,7 +29410,7 @@ } }, { - "id": 2807, + "id": 2806, "name": "--ts-var-kpi-positive-change-color", "kind": 1024, "kindString": "Property", @@ -29394,7 +29433,7 @@ } }, { - "id": 2734, + "id": 2733, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -29417,7 +29456,7 @@ } }, { - "id": 2733, + "id": 2732, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -29440,7 +29479,7 @@ } }, { - "id": 2761, + "id": 2760, "name": "--ts-var-liveboard-answer-viz-padding", "kind": 1024, "kindString": "Property", @@ -29463,7 +29502,7 @@ } }, { - "id": 2774, + "id": 2773, "name": "--ts-var-liveboard-chip--active-background", "kind": 1024, "kindString": "Property", @@ -29487,7 +29526,7 @@ } }, { - "id": 2773, + "id": 2772, "name": "--ts-var-liveboard-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -29511,7 +29550,7 @@ } }, { - "id": 2771, + "id": 2770, "name": "--ts-var-liveboard-chip-background", "kind": 1024, "kindString": "Property", @@ -29535,7 +29574,7 @@ } }, { - "id": 2772, + "id": 2771, "name": "--ts-var-liveboard-chip-color", "kind": 1024, "kindString": "Property", @@ -29559,7 +29598,7 @@ } }, { - "id": 2779, + "id": 2778, "name": "--ts-var-liveboard-cross-filter-layout-background", "kind": 1024, "kindString": "Property", @@ -29582,7 +29621,7 @@ } }, { - "id": 2777, + "id": 2776, "name": "--ts-var-liveboard-dual-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -29605,7 +29644,7 @@ } }, { - "id": 2776, + "id": 2775, "name": "--ts-var-liveboard-edit-bar-background", "kind": 1024, "kindString": "Property", @@ -29628,7 +29667,7 @@ } }, { - "id": 2762, + "id": 2761, "name": "--ts-var-liveboard-group-background", "kind": 1024, "kindString": "Property", @@ -29652,7 +29691,7 @@ } }, { - "id": 2763, + "id": 2762, "name": "--ts-var-liveboard-group-border-color", "kind": 1024, "kindString": "Property", @@ -29676,7 +29715,7 @@ } }, { - "id": 2767, + "id": 2766, "name": "--ts-var-liveboard-group-description-font-color", "kind": 1024, "kindString": "Property", @@ -29700,7 +29739,7 @@ } }, { - "id": 2755, + "id": 2754, "name": "--ts-var-liveboard-group-padding", "kind": 1024, "kindString": "Property", @@ -29724,7 +29763,7 @@ } }, { - "id": 2770, + "id": 2769, "name": "--ts-var-liveboard-group-tile-background", "kind": 1024, "kindString": "Property", @@ -29748,7 +29787,7 @@ } }, { - "id": 2769, + "id": 2768, "name": "--ts-var-liveboard-group-tile-description-font-color", "kind": 1024, "kindString": "Property", @@ -29772,7 +29811,7 @@ } }, { - "id": 2760, + "id": 2759, "name": "--ts-var-liveboard-group-tile-padding", "kind": 1024, "kindString": "Property", @@ -29796,7 +29835,7 @@ } }, { - "id": 2768, + "id": 2767, "name": "--ts-var-liveboard-group-tile-title-font-color", "kind": 1024, "kindString": "Property", @@ -29820,7 +29859,7 @@ } }, { - "id": 2758, + "id": 2757, "name": "--ts-var-liveboard-group-tile-title-font-size", "kind": 1024, "kindString": "Property", @@ -29844,7 +29883,7 @@ } }, { - "id": 2759, + "id": 2758, "name": "--ts-var-liveboard-group-tile-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29868,7 +29907,7 @@ } }, { - "id": 2766, + "id": 2765, "name": "--ts-var-liveboard-group-title-font-color", "kind": 1024, "kindString": "Property", @@ -29892,7 +29931,7 @@ } }, { - "id": 2756, + "id": 2755, "name": "--ts-var-liveboard-group-title-font-size", "kind": 1024, "kindString": "Property", @@ -29916,7 +29955,7 @@ } }, { - "id": 2757, + "id": 2756, "name": "--ts-var-liveboard-group-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29940,7 +29979,7 @@ } }, { - "id": 2793, + "id": 2792, "name": "--ts-var-liveboard-header-action-button-active-color", "kind": 1024, "kindString": "Property", @@ -29963,7 +30002,7 @@ } }, { - "id": 2790, + "id": 2789, "name": "--ts-var-liveboard-header-action-button-background", "kind": 1024, "kindString": "Property", @@ -29986,7 +30025,7 @@ } }, { - "id": 2791, + "id": 2790, "name": "--ts-var-liveboard-header-action-button-font-color", "kind": 1024, "kindString": "Property", @@ -30009,7 +30048,7 @@ } }, { - "id": 2792, + "id": 2791, "name": "--ts-var-liveboard-header-action-button-hover-color", "kind": 1024, "kindString": "Property", @@ -30032,7 +30071,7 @@ } }, { - "id": 2748, + "id": 2747, "name": "--ts-var-liveboard-header-background", "kind": 1024, "kindString": "Property", @@ -30055,7 +30094,7 @@ } }, { - "id": 2799, + "id": 2798, "name": "--ts-var-liveboard-header-badge-active-color", "kind": 1024, "kindString": "Property", @@ -30078,7 +30117,7 @@ } }, { - "id": 2794, + "id": 2793, "name": "--ts-var-liveboard-header-badge-background", "kind": 1024, "kindString": "Property", @@ -30101,7 +30140,7 @@ } }, { - "id": 2795, + "id": 2794, "name": "--ts-var-liveboard-header-badge-font-color", "kind": 1024, "kindString": "Property", @@ -30124,7 +30163,7 @@ } }, { - "id": 2798, + "id": 2797, "name": "--ts-var-liveboard-header-badge-hover-color", "kind": 1024, "kindString": "Property", @@ -30147,7 +30186,7 @@ } }, { - "id": 2796, + "id": 2795, "name": "--ts-var-liveboard-header-badge-modified-background", "kind": 1024, "kindString": "Property", @@ -30170,7 +30209,7 @@ } }, { - "id": 2797, + "id": 2796, "name": "--ts-var-liveboard-header-badge-modified-font-color", "kind": 1024, "kindString": "Property", @@ -30193,7 +30232,7 @@ } }, { - "id": 2749, + "id": 2748, "name": "--ts-var-liveboard-header-font-color", "kind": 1024, "kindString": "Property", @@ -30216,7 +30255,7 @@ } }, { - "id": 2747, + "id": 2746, "name": "--ts-var-liveboard-layout-background", "kind": 1024, "kindString": "Property", @@ -30239,7 +30278,7 @@ } }, { - "id": 2765, + "id": 2764, "name": "--ts-var-liveboard-notetitle-body-font-color", "kind": 1024, "kindString": "Property", @@ -30262,7 +30301,7 @@ } }, { - "id": 2764, + "id": 2763, "name": "--ts-var-liveboard-notetitle-heading-font-color", "kind": 1024, "kindString": "Property", @@ -30285,7 +30324,7 @@ } }, { - "id": 2778, + "id": 2777, "name": "--ts-var-liveboard-single-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -30308,7 +30347,7 @@ } }, { - "id": 2780, + "id": 2779, "name": "--ts-var-liveboard-tab-active-border-color", "kind": 1024, "kindString": "Property", @@ -30331,7 +30370,7 @@ } }, { - "id": 2781, + "id": 2780, "name": "--ts-var-liveboard-tab-hover-color", "kind": 1024, "kindString": "Property", @@ -30354,7 +30393,7 @@ } }, { - "id": 2751, + "id": 2750, "name": "--ts-var-liveboard-tile-background", "kind": 1024, "kindString": "Property", @@ -30377,7 +30416,7 @@ } }, { - "id": 2750, + "id": 2749, "name": "--ts-var-liveboard-tile-border-color", "kind": 1024, "kindString": "Property", @@ -30400,7 +30439,7 @@ } }, { - "id": 2752, + "id": 2751, "name": "--ts-var-liveboard-tile-border-radius", "kind": 1024, "kindString": "Property", @@ -30423,7 +30462,7 @@ } }, { - "id": 2753, + "id": 2752, "name": "--ts-var-liveboard-tile-padding", "kind": 1024, "kindString": "Property", @@ -30446,7 +30485,7 @@ } }, { - "id": 2754, + "id": 2753, "name": "--ts-var-liveboard-tile-table-header-background", "kind": 1024, "kindString": "Property", @@ -30469,7 +30508,7 @@ } }, { - "id": 2782, + "id": 2781, "name": "--ts-var-liveboard-tile-title-fontsize", "kind": 1024, "kindString": "Property", @@ -30492,7 +30531,7 @@ } }, { - "id": 2783, + "id": 2782, "name": "--ts-var-liveboard-tile-title-fontweight", "kind": 1024, "kindString": "Property", @@ -30515,7 +30554,7 @@ } }, { - "id": 2726, + "id": 2725, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -30538,7 +30577,7 @@ } }, { - "id": 2723, + "id": 2722, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -30561,7 +30600,7 @@ } }, { - "id": 2722, + "id": 2721, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -30584,7 +30623,7 @@ } }, { - "id": 2724, + "id": 2723, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -30607,7 +30646,7 @@ } }, { - "id": 2727, + "id": 2726, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -30630,7 +30669,7 @@ } }, { - "id": 2725, + "id": 2724, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -30653,7 +30692,7 @@ } }, { - "id": 2660, + "id": 2659, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -30676,7 +30715,7 @@ } }, { - "id": 2661, + "id": 2660, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -30699,7 +30738,7 @@ } }, { - "id": 2788, + "id": 2787, "name": "--ts-var-parameter-chip-active-background", "kind": 1024, "kindString": "Property", @@ -30722,7 +30761,7 @@ } }, { - "id": 2789, + "id": 2788, "name": "--ts-var-parameter-chip-active-text-color", "kind": 1024, "kindString": "Property", @@ -30745,7 +30784,7 @@ } }, { - "id": 2784, + "id": 2783, "name": "--ts-var-parameter-chip-background", "kind": 1024, "kindString": "Property", @@ -30768,7 +30807,7 @@ } }, { - "id": 2786, + "id": 2785, "name": "--ts-var-parameter-chip-hover-background", "kind": 1024, "kindString": "Property", @@ -30791,7 +30830,7 @@ } }, { - "id": 2787, + "id": 2786, "name": "--ts-var-parameter-chip-hover-text-color", "kind": 1024, "kindString": "Property", @@ -30814,7 +30853,7 @@ } }, { - "id": 2785, + "id": 2784, "name": "--ts-var-parameter-chip-text-color", "kind": 1024, "kindString": "Property", @@ -30837,7 +30876,7 @@ } }, { - "id": 2655, + "id": 2654, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -30860,7 +30899,7 @@ } }, { - "id": 2656, + "id": 2655, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -30883,7 +30922,7 @@ } }, { - "id": 2657, + "id": 2656, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -30906,7 +30945,7 @@ } }, { - "id": 2658, + "id": 2657, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -30929,7 +30968,7 @@ } }, { - "id": 2669, + "id": 2668, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -30952,7 +30991,7 @@ } }, { - "id": 2673, + "id": 2672, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -30975,7 +31014,7 @@ } }, { - "id": 2674, + "id": 2673, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -30998,7 +31037,7 @@ } }, { - "id": 2672, + "id": 2671, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -31021,7 +31060,7 @@ } }, { - "id": 2668, + "id": 2667, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -31044,7 +31083,7 @@ } }, { - "id": 2671, + "id": 2670, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -31067,7 +31106,7 @@ } }, { - "id": 2665, + "id": 2664, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -31090,7 +31129,7 @@ } }, { - "id": 2666, + "id": 2665, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -31113,7 +31152,7 @@ } }, { - "id": 2667, + "id": 2666, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -31136,7 +31175,7 @@ } }, { - "id": 2662, + "id": 2661, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -31159,7 +31198,7 @@ } }, { - "id": 2663, + "id": 2662, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -31182,7 +31221,7 @@ } }, { - "id": 2664, + "id": 2663, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -31205,7 +31244,7 @@ } }, { - "id": 2670, + "id": 2669, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -31228,7 +31267,7 @@ } }, { - "id": 2735, + "id": 2734, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -31251,7 +31290,7 @@ } }, { - "id": 2775, + "id": 2774, "name": "--ts-var-side-panel-width", "kind": 1024, "kindString": "Property", @@ -31274,7 +31313,7 @@ } }, { - "id": 2813, + "id": 2812, "name": "--ts-var-spotiq-analyze-crosscorrelation-card-background", "kind": 1024, "kindString": "Property", @@ -31297,7 +31336,7 @@ } }, { - "id": 2810, + "id": 2809, "name": "--ts-var-spotiq-analyze-forecasting-card-background", "kind": 1024, "kindString": "Property", @@ -31320,7 +31359,7 @@ } }, { - "id": 2811, + "id": 2810, "name": "--ts-var-spotiq-analyze-outlier-card-background", "kind": 1024, "kindString": "Property", @@ -31343,7 +31382,7 @@ } }, { - "id": 2812, + "id": 2811, "name": "--ts-var-spotiq-analyze-trend-card-background", "kind": 1024, "kindString": "Property", @@ -31366,7 +31405,7 @@ } }, { - "id": 2675, + "id": 2674, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -31389,7 +31428,7 @@ } }, { - "id": 2676, + "id": 2675, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -31412,7 +31451,7 @@ } }, { - "id": 2705, + "id": 2704, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -31435,7 +31474,7 @@ } }, { - "id": 2703, + "id": 2702, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -31458,7 +31497,7 @@ } }, { - "id": 2704, + "id": 2703, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -31481,7 +31520,7 @@ } }, { - "id": 2700, + "id": 2699, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -31504,7 +31543,7 @@ } }, { - "id": 2701, + "id": 2700, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -31527,7 +31566,7 @@ } }, { - "id": 2702, + "id": 2701, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -31550,7 +31589,7 @@ } }, { - "id": 2706, + "id": 2705, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -31573,7 +31612,7 @@ } }, { - "id": 2697, + "id": 2696, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -31596,7 +31635,7 @@ } }, { - "id": 2698, + "id": 2697, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -31619,7 +31658,7 @@ } }, { - "id": 2699, + "id": 2698, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -31647,166 +31686,166 @@ "title": "Properties", "kind": 1024, "children": [ - 2708, 2707, + 2706, + 2676, 2677, - 2678, - 2680, 2679, - 2659, + 2678, + 2658, + 2719, 2720, - 2721, + 2717, 2718, - 2719, - 2682, - 2687, - 2684, + 2681, 2686, - 2685, 2683, - 2692, - 2689, + 2685, + 2684, + 2682, 2691, - 2690, 2688, - 2696, + 2690, + 2689, + 2687, 2695, 2694, 2693, - 2681, - 2814, - 2809, - 2804, + 2692, + 2680, + 2813, + 2808, 2803, - 2806, + 2802, 2805, - 2743, - 2746, - 2741, - 2744, + 2804, + 2742, 2745, 2740, - 2742, - 2713, + 2743, + 2744, + 2739, + 2741, 2712, - 2715, - 2714, 2711, - 2709, + 2714, + 2713, 2710, + 2708, + 2709, + 2715, 2716, - 2717, + 2727, 2728, + 2731, 2729, - 2732, 2730, - 2731, - 2739, 2738, 2737, 2736, - 2802, + 2735, 2801, 2800, - 2808, + 2799, 2807, - 2734, + 2806, 2733, - 2761, - 2774, + 2732, + 2760, 2773, - 2771, 2772, - 2779, - 2777, + 2770, + 2771, + 2778, 2776, + 2775, + 2761, 2762, - 2763, - 2767, - 2755, - 2770, + 2766, + 2754, 2769, - 2760, 2768, - 2758, 2759, - 2766, - 2756, + 2767, 2757, - 2793, + 2758, + 2765, + 2755, + 2756, + 2792, + 2789, 2790, 2791, - 2792, - 2748, - 2799, + 2747, + 2798, + 2793, 2794, + 2797, 2795, - 2798, 2796, - 2797, - 2749, - 2747, - 2765, + 2748, + 2746, 2764, - 2778, + 2763, + 2777, + 2779, 2780, - 2781, - 2751, 2750, + 2749, + 2751, 2752, 2753, - 2754, + 2781, 2782, - 2783, - 2726, - 2723, + 2725, 2722, + 2721, + 2723, + 2726, 2724, - 2727, - 2725, + 2659, 2660, - 2661, - 2788, - 2789, - 2784, - 2786, 2787, + 2788, + 2783, 2785, + 2786, + 2784, + 2654, 2655, 2656, 2657, - 2658, - 2669, - 2673, - 2674, - 2672, 2668, + 2672, + 2673, 2671, + 2667, + 2670, + 2664, 2665, 2666, - 2667, + 2661, 2662, 2663, - 2664, - 2670, - 2735, - 2775, - 2813, + 2669, + 2734, + 2774, + 2812, + 2809, 2810, 2811, - 2812, + 2674, 2675, - 2676, - 2705, - 2703, 2704, + 2702, + 2703, + 2699, 2700, 2701, - 2702, - 2706, + 2705, + 2696, 2697, - 2698, - 2699 + 2698 ] } ], @@ -31819,7 +31858,7 @@ ] }, { - "id": 2642, + "id": 2641, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -31829,7 +31868,7 @@ }, "children": [ { - "id": 2644, + "id": 2643, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -31845,12 +31884,12 @@ ], "type": { "type": "reference", - "id": 2645, + "id": 2644, "name": "customCssInterface" } }, { - "id": 2643, + "id": 2642, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -31875,8 +31914,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2644, - 2643 + 2643, + 2642 ] } ], @@ -31889,7 +31928,7 @@ ] }, { - "id": 2632, + "id": 2631, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -31905,7 +31944,7 @@ }, "children": [ { - "id": 2634, + "id": 2633, "name": "content", "kind": 1024, "kindString": "Property", @@ -31922,14 +31961,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2635, + "id": 2634, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2637, + "id": 2636, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -31959,7 +31998,7 @@ } }, { - "id": 2638, + "id": 2637, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -31979,7 +32018,7 @@ } }, { - "id": 2636, + "id": 2635, "name": "strings", "kind": 1024, "kindString": "Property", @@ -32022,21 +32061,21 @@ "title": "Properties", "kind": 1024, "children": [ + 2636, 2637, - 2638, - 2636 + 2635 ] } ], "indexSignature": { - "id": 2639, + "id": 2638, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2640, + "id": 2639, "name": "key", "kind": 32768, "flags": {}, @@ -32055,7 +32094,7 @@ } }, { - "id": 2641, + "id": 2640, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -32075,7 +32114,7 @@ } }, { - "id": 2633, + "id": 2632, "name": "style", "kind": 1024, "kindString": "Property", @@ -32091,7 +32130,7 @@ ], "type": { "type": "reference", - "id": 2642, + "id": 2641, "name": "CustomStyles" } } @@ -32101,9 +32140,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2634, - 2641, - 2633 + 2633, + 2640, + 2632 ] } ], @@ -32116,7 +32155,7 @@ ] }, { - "id": 2236, + "id": 2233, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -32132,7 +32171,7 @@ }, "children": [ { - "id": 2278, + "id": 2275, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -32162,20 +32201,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2279, + "id": 2276, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2280, + "id": 2277, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2281, + "id": 2278, "name": "key", "kind": 32768, "flags": {}, @@ -32207,7 +32246,7 @@ } }, { - "id": 2239, + "id": 2236, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -32230,7 +32269,7 @@ } }, { - "id": 2260, + "id": 2257, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -32272,7 +32311,7 @@ } }, { - "id": 2262, + "id": 2259, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -32301,7 +32340,7 @@ } }, { - "id": 2238, + "id": 2235, "name": "authType", "kind": 1024, "kindString": "Property", @@ -32318,12 +32357,12 @@ ], "type": { "type": "reference", - "id": 1894, + "id": 1891, "name": "AuthType" } }, { - "id": 2251, + "id": 2248, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -32352,7 +32391,7 @@ } }, { - "id": 2263, + "id": 2260, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -32385,7 +32424,7 @@ } }, { - "id": 2254, + "id": 2251, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -32414,7 +32453,7 @@ } }, { - "id": 2275, + "id": 2272, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -32443,7 +32482,7 @@ } }, { - "id": 2285, + "id": 2282, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -32479,7 +32518,7 @@ } }, { - "id": 2282, + "id": 2279, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -32522,7 +32561,7 @@ } }, { - "id": 2259, + "id": 2256, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -32547,12 +32586,12 @@ ], "type": { "type": "reference", - "id": 2632, + "id": 2631, "name": "CustomisationsInterface" } }, { - "id": 2273, + "id": 2270, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -32581,7 +32620,7 @@ } }, { - "id": 2256, + "id": 2253, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -32611,7 +32650,7 @@ } }, { - "id": 2284, + "id": 2281, "name": "disableFullscreenPresentation", "kind": 1024, "kindString": "Property", @@ -32648,7 +32687,7 @@ } }, { - "id": 2277, + "id": 2274, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -32677,7 +32716,7 @@ } }, { - "id": 2252, + "id": 2249, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -32710,7 +32749,7 @@ } }, { - "id": 2283, + "id": 2280, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -32730,7 +32769,7 @@ } }, { - "id": 2272, + "id": 2269, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -32759,7 +32798,7 @@ } }, { - "id": 2250, + "id": 2247, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -32788,7 +32827,7 @@ } }, { - "id": 2245, + "id": 2242, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -32822,7 +32861,7 @@ } }, { - "id": 2271, + "id": 2268, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -32855,12 +32894,12 @@ ], "type": { "type": "reference", - "id": 2818, + "id": 2817, "name": "LogLevel" } }, { - "id": 2253, + "id": 2250, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -32889,7 +32928,7 @@ } }, { - "id": 2244, + "id": 2241, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -32922,7 +32961,7 @@ } }, { - "id": 2274, + "id": 2271, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -32951,7 +32990,7 @@ } }, { - "id": 2243, + "id": 2240, "name": "password", "kind": 1024, "kindString": "Property", @@ -32975,7 +33014,7 @@ } }, { - "id": 2269, + "id": 2266, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -33004,7 +33043,7 @@ } }, { - "id": 2255, + "id": 2252, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -33037,7 +33076,7 @@ } }, { - "id": 2246, + "id": 2243, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -33067,7 +33106,7 @@ } }, { - "id": 2248, + "id": 2245, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -33096,7 +33135,7 @@ } }, { - "id": 2270, + "id": 2267, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -33125,7 +33164,7 @@ } }, { - "id": 2249, + "id": 2246, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -33154,7 +33193,7 @@ } }, { - "id": 2258, + "id": 2255, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -33177,7 +33216,7 @@ } }, { - "id": 2257, + "id": 2254, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -33206,7 +33245,7 @@ } }, { - "id": 2237, + "id": 2234, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -33227,7 +33266,7 @@ } }, { - "id": 2261, + "id": 2258, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -33250,7 +33289,7 @@ } }, { - "id": 2242, + "id": 2239, "name": "username", "kind": 1024, "kindString": "Property", @@ -33273,7 +33312,7 @@ } }, { - "id": 2240, + "id": 2237, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -33289,7 +33328,7 @@ ], "signatures": [ { - "id": 2241, + "id": 2238, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -33317,50 +33356,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2278, - 2239, + 2275, + 2236, + 2257, + 2259, + 2235, + 2248, 2260, - 2262, - 2238, 2251, - 2263, - 2254, - 2275, - 2285, + 2272, 2282, - 2259, - 2273, + 2279, 2256, - 2284, - 2277, - 2252, - 2283, - 2272, - 2250, - 2245, - 2271, + 2270, 2253, - 2244, + 2281, 2274, - 2243, + 2249, + 2280, 2269, - 2255, + 2247, + 2242, + 2268, + 2250, + 2241, + 2271, + 2240, + 2266, + 2252, + 2243, + 2245, + 2267, 2246, - 2248, - 2270, - 2249, + 2255, + 2254, + 2234, 2258, - 2257, - 2237, - 2261, - 2242 + 2239 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2240 + 2237 ] } ], @@ -33373,7 +33412,7 @@ ] }, { - "id": 2591, + "id": 2590, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -33389,7 +33428,7 @@ }, "children": [ { - "id": 2593, + "id": 2592, "name": "height", "kind": 1024, "kindString": "Property", @@ -33421,7 +33460,7 @@ } }, { - "id": 2594, + "id": 2593, "name": "loading", "kind": 1024, "kindString": "Property", @@ -33457,7 +33496,7 @@ } }, { - "id": 2592, + "id": 2591, "name": "width", "kind": 1024, "kindString": "Property", @@ -33494,9 +33533,9 @@ "title": "Properties", "kind": 1024, "children": [ + 2592, 2593, - 2594, - 2592 + 2591 ] } ], @@ -33508,7 +33547,7 @@ } ], "indexSignature": { - "id": 2595, + "id": 2594, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -33518,7 +33557,7 @@ }, "parameters": [ { - "id": 2596, + "id": 2595, "name": "key", "kind": 32768, "flags": {}, @@ -33552,7 +33591,7 @@ } }, { - "id": 2382, + "id": 2379, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -33568,7 +33607,7 @@ }, "children": [ { - "id": 2393, + "id": 2390, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -33602,7 +33641,7 @@ } }, { - "id": 2415, + "id": 2412, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -33633,20 +33672,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2416, + "id": 2413, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2417, + "id": 2414, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2418, + "id": 2415, "name": "key", "kind": 32768, "flags": {}, @@ -33682,7 +33721,7 @@ } }, { - "id": 2439, + "id": 2436, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -33724,7 +33763,7 @@ } }, { - "id": 2436, + "id": 2433, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -33754,7 +33793,7 @@ ], "type": { "type": "reference", - "id": 2232, + "id": 2229, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -33763,7 +33802,7 @@ } }, { - "id": 2452, + "id": 2449, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -33801,7 +33840,7 @@ } }, { - "id": 2433, + "id": 2430, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -33842,7 +33881,7 @@ } }, { - "id": 2419, + "id": 2416, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -33871,7 +33910,7 @@ ], "type": { "type": "reference", - "id": 2632, + "id": 2631, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -33880,7 +33919,7 @@ } }, { - "id": 2440, + "id": 2437, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -33922,7 +33961,7 @@ } }, { - "id": 2384, + "id": 2381, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -33960,7 +33999,7 @@ } }, { - "id": 2427, + "id": 2424, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -33998,7 +34037,7 @@ } }, { - "id": 2411, + "id": 2408, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -34036,7 +34075,7 @@ } }, { - "id": 2410, + "id": 2407, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -34068,7 +34107,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -34078,7 +34117,7 @@ } }, { - "id": 2423, + "id": 2420, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -34119,7 +34158,7 @@ } }, { - "id": 2446, + "id": 2443, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -34161,7 +34200,7 @@ } }, { - "id": 2451, + "id": 2448, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -34203,7 +34242,7 @@ } }, { - "id": 2441, + "id": 2438, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -34245,7 +34284,7 @@ } }, { - "id": 2424, + "id": 2421, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -34283,7 +34322,7 @@ } }, { - "id": 2385, + "id": 2382, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -34319,7 +34358,7 @@ } }, { - "id": 2437, + "id": 2434, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -34357,7 +34396,7 @@ } }, { - "id": 2438, + "id": 2435, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -34395,7 +34434,7 @@ } }, { - "id": 2426, + "id": 2423, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -34432,7 +34471,7 @@ } }, { - "id": 2407, + "id": 2404, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -34462,7 +34501,7 @@ ], "type": { "type": "reference", - "id": 2591, + "id": 2590, "name": "FrameParams" }, "inheritedFrom": { @@ -34471,7 +34510,7 @@ } }, { - "id": 2383, + "id": 2380, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -34505,7 +34544,7 @@ } }, { - "id": 2412, + "id": 2409, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -34541,7 +34580,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -34551,7 +34590,7 @@ } }, { - "id": 2399, + "id": 2396, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -34588,7 +34627,7 @@ } }, { - "id": 2449, + "id": 2446, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -34630,7 +34669,7 @@ } }, { - "id": 2442, + "id": 2439, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -34672,7 +34711,7 @@ } }, { - "id": 2394, + "id": 2391, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -34706,7 +34745,7 @@ } }, { - "id": 2420, + "id": 2417, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -34744,7 +34783,7 @@ } }, { - "id": 2454, + "id": 2451, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -34782,7 +34821,45 @@ } }, { - "id": 2455, + "id": 2453, + "name": "isEnhancedFilterInteractivityEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag is used to enable or disable the enhanced filter interactivity in liveboard.", + "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.42.0 | ThoughtSpot: 10.15.0.cl" + }, + { + "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 isEnhancedFilterInteractivityEnabled: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1563, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "LiveboardAppEmbedViewConfig.isEnhancedFilterInteractivityEnabled" + } + }, + { + "id": 2452, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -34820,7 +34897,7 @@ } }, { - "id": 2447, + "id": 2444, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -34862,7 +34939,7 @@ } }, { - "id": 2445, + "id": 2442, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -34900,7 +34977,7 @@ } }, { - "id": 2401, + "id": 2398, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -34934,7 +35011,7 @@ } }, { - "id": 2402, + "id": 2399, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -34968,7 +35045,7 @@ } }, { - "id": 2403, + "id": 2400, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -35005,7 +35082,7 @@ } }, { - "id": 2404, + "id": 2401, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -35039,7 +35116,7 @@ } }, { - "id": 2429, + "id": 2426, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -35077,7 +35154,7 @@ } }, { - "id": 2386, + "id": 2383, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -35111,7 +35188,7 @@ } }, { - "id": 2392, + "id": 2389, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -35145,7 +35222,7 @@ } }, { - "id": 2453, + "id": 2450, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -35183,7 +35260,7 @@ } }, { - "id": 2414, + "id": 2411, "name": "locale", "kind": 1024, "kindString": "Property", @@ -35221,7 +35298,7 @@ } }, { - "id": 2428, + "id": 2425, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -35259,7 +35336,7 @@ } }, { - "id": 2422, + "id": 2419, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -35297,7 +35374,7 @@ } }, { - "id": 2389, + "id": 2386, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -35331,7 +35408,7 @@ } }, { - "id": 2430, + "id": 2427, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -35369,7 +35446,7 @@ } }, { - "id": 2434, + "id": 2431, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -35401,7 +35478,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1903, "name": "RuntimeFilter" } }, @@ -35411,7 +35488,7 @@ } }, { - "id": 2435, + "id": 2432, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -35443,7 +35520,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2815, + "id": 2814, "name": "RuntimeParameter" } }, @@ -35453,7 +35530,7 @@ } }, { - "id": 2432, + "id": 2429, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -35490,7 +35567,7 @@ } }, { - "id": 2444, + "id": 2441, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -35532,7 +35609,7 @@ } }, { - "id": 2450, + "id": 2447, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -35574,7 +35651,7 @@ } }, { - "id": 2443, + "id": 2440, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -35616,7 +35693,7 @@ } }, { - "id": 2448, + "id": 2445, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -35658,7 +35735,7 @@ } }, { - "id": 2395, + "id": 2392, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -35692,7 +35769,7 @@ } }, { - "id": 2405, + "id": 2402, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -35725,7 +35802,7 @@ } }, { - "id": 2413, + "id": 2410, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -35761,7 +35838,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -35771,7 +35848,7 @@ } }, { - "id": 2400, + "id": 2397, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -35808,7 +35885,7 @@ } }, { - "id": 2390, + "id": 2387, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -35845,7 +35922,7 @@ } }, { - "id": 2388, + "id": 2385, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -35884,65 +35961,66 @@ "title": "Properties", "kind": 1024, "children": [ - 2393, - 2415, - 2439, + 2390, + 2412, 2436, - 2452, 2433, - 2419, - 2440, - 2384, - 2427, - 2411, - 2410, + 2449, + 2430, + 2416, + 2437, + 2381, + 2424, + 2408, + 2407, + 2420, + 2443, + 2448, + 2438, + 2421, + 2382, + 2434, + 2435, 2423, + 2404, + 2380, + 2409, + 2396, 2446, + 2439, + 2391, + 2417, 2451, - 2441, - 2424, - 2385, - 2437, - 2438, + 2453, + 2452, + 2444, + 2442, + 2398, + 2399, + 2400, + 2401, 2426, - 2407, 2383, - 2412, - 2399, - 2449, - 2442, - 2394, - 2420, - 2454, - 2455, + 2389, + 2450, + 2411, + 2425, + 2419, + 2386, + 2427, + 2431, + 2432, + 2429, + 2441, 2447, + 2440, 2445, - 2401, - 2402, - 2403, - 2404, - 2429, - 2386, 2392, - 2453, - 2414, - 2428, - 2422, - 2389, - 2430, - 2434, - 2435, - 2432, - 2444, - 2450, - 2443, - 2448, - 2395, - 2405, - 2413, - 2400, - 2390, - 2388 + 2402, + 2410, + 2397, + 2387, + 2385 ] } ], @@ -35969,7 +36047,7 @@ ] }, { - "id": 1906, + "id": 1903, "name": "RuntimeFilter", "kind": 256, "kindString": "Interface", @@ -35979,7 +36057,7 @@ }, "children": [ { - "id": 1907, + "id": 1904, "name": "columnName", "kind": 1024, "kindString": "Property", @@ -35990,7 +36068,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1748, + "line": 1763, "character": 4 } ], @@ -36000,7 +36078,7 @@ } }, { - "id": 1908, + "id": 1905, "name": "operator", "kind": 1024, "kindString": "Property", @@ -36011,18 +36089,18 @@ "sources": [ { "fileName": "types.ts", - "line": 1752, + "line": 1767, "character": 4 } ], "type": { "type": "reference", - "id": 1910, + "id": 1907, "name": "RuntimeFilterOp" } }, { - "id": 1909, + "id": 1906, "name": "values", "kind": 1024, "kindString": "Property", @@ -36033,7 +36111,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1758, + "line": 1773, "character": 4 } ], @@ -36068,22 +36146,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1907, - 1908, - 1909 + 1904, + 1905, + 1906 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1744, + "line": 1759, "character": 17 } ] }, { - "id": 2815, + "id": 2814, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -36093,7 +36171,7 @@ }, "children": [ { - "id": 2816, + "id": 2815, "name": "name", "kind": 1024, "kindString": "Property", @@ -36104,7 +36182,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1768, + "line": 1783, "character": 4 } ], @@ -36114,7 +36192,7 @@ } }, { - "id": 2817, + "id": 2816, "name": "value", "kind": 1024, "kindString": "Property", @@ -36125,7 +36203,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1772, + "line": 1787, "character": 4 } ], @@ -36153,21 +36231,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2816, - 2817 + 2815, + 2816 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1764, + "line": 1779, "character": 17 } ] }, { - "id": 2456, + "id": 2454, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -36187,7 +36265,7 @@ }, "children": [ { - "id": 2485, + "id": 2483, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -36218,20 +36296,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2486, + "id": 2484, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2487, + "id": 2485, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2488, + "id": 2486, "name": "key", "kind": 32768, "flags": {}, @@ -36267,7 +36345,7 @@ } }, { - "id": 2473, + "id": 2471, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -36309,7 +36387,7 @@ } }, { - "id": 2470, + "id": 2468, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -36339,7 +36417,7 @@ ], "type": { "type": "reference", - "id": 2232, + "id": 2229, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -36348,7 +36426,7 @@ } }, { - "id": 2502, + "id": 2500, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -36389,7 +36467,7 @@ } }, { - "id": 2489, + "id": 2487, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -36418,7 +36496,7 @@ ], "type": { "type": "reference", - "id": 2632, + "id": 2631, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -36427,7 +36505,7 @@ } }, { - "id": 2474, + "id": 2472, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -36469,7 +36547,7 @@ } }, { - "id": 2466, + "id": 2464, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -36492,7 +36570,7 @@ } }, { - "id": 2497, + "id": 2495, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -36530,7 +36608,7 @@ } }, { - "id": 2461, + "id": 2459, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -36559,7 +36637,7 @@ } }, { - "id": 2481, + "id": 2479, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -36597,7 +36675,7 @@ } }, { - "id": 2480, + "id": 2478, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -36629,7 +36707,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -36639,7 +36717,7 @@ } }, { - "id": 2493, + "id": 2491, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -36680,7 +36758,7 @@ } }, { - "id": 2475, + "id": 2473, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -36722,7 +36800,7 @@ } }, { - "id": 2494, + "id": 2492, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -36760,7 +36838,7 @@ } }, { - "id": 2471, + "id": 2469, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -36798,7 +36876,7 @@ } }, { - "id": 2472, + "id": 2470, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -36836,7 +36914,7 @@ } }, { - "id": 2496, + "id": 2494, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -36873,7 +36951,7 @@ } }, { - "id": 2477, + "id": 2475, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -36903,7 +36981,7 @@ ], "type": { "type": "reference", - "id": 2591, + "id": 2590, "name": "FrameParams" }, "inheritedFrom": { @@ -36912,7 +36990,7 @@ } }, { - "id": 2482, + "id": 2480, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -36948,7 +37026,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -36958,7 +37036,7 @@ } }, { - "id": 2463, + "id": 2461, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -36987,7 +37065,7 @@ } }, { - "id": 2460, + "id": 2458, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -37016,7 +37094,7 @@ } }, { - "id": 2465, + "id": 2463, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -37050,7 +37128,7 @@ } }, { - "id": 2459, + "id": 2457, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -37083,7 +37161,7 @@ } }, { - "id": 2462, + "id": 2460, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -37112,7 +37190,7 @@ } }, { - "id": 2490, + "id": 2488, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -37150,7 +37228,7 @@ } }, { - "id": 2499, + "id": 2497, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -37188,7 +37266,7 @@ } }, { - "id": 2484, + "id": 2482, "name": "locale", "kind": 1024, "kindString": "Property", @@ -37226,7 +37304,7 @@ } }, { - "id": 2498, + "id": 2496, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -37264,7 +37342,7 @@ } }, { - "id": 2492, + "id": 2490, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -37302,7 +37380,7 @@ } }, { - "id": 2468, + "id": 2466, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -37334,7 +37412,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1903, "name": "RuntimeFilter" } }, @@ -37344,7 +37422,7 @@ } }, { - "id": 2469, + "id": 2467, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -37376,7 +37454,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2815, + "id": 2814, "name": "RuntimeParameter" } }, @@ -37386,7 +37464,7 @@ } }, { - "id": 2467, + "id": 2465, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -37420,7 +37498,7 @@ } }, { - "id": 2501, + "id": 2499, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -37457,7 +37535,7 @@ } }, { - "id": 2457, + "id": 2455, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -37486,7 +37564,7 @@ } }, { - "id": 2464, + "id": 2462, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -37515,7 +37593,7 @@ } }, { - "id": 2483, + "id": 2481, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -37551,7 +37629,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -37566,42 +37644,42 @@ "title": "Properties", "kind": 1024, "children": [ - 2485, + 2483, + 2471, + 2468, + 2500, + 2487, + 2472, + 2464, + 2495, + 2459, + 2479, + 2478, + 2491, 2473, + 2492, + 2469, 2470, - 2502, - 2489, - 2474, - 2466, - 2497, - 2461, - 2481, - 2480, - 2493, - 2475, 2494, - 2471, - 2472, - 2496, - 2477, - 2482, + 2475, + 2480, + 2461, + 2458, 2463, + 2457, 2460, - 2465, - 2459, - 2462, + 2488, + 2497, + 2482, + 2496, 2490, - 2499, - 2484, - 2498, - 2492, - 2468, - 2469, + 2466, 2467, - 2501, - 2457, - 2464, - 2483 + 2465, + 2499, + 2455, + 2462, + 2481 ] } ], @@ -37655,7 +37733,7 @@ ] }, { - "id": 2340, + "id": 2337, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -37670,7 +37748,7 @@ }, "children": [ { - "id": 2355, + "id": 2352, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -37701,20 +37779,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2356, + "id": 2353, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2357, + "id": 2354, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2358, + "id": 2355, "name": "key", "kind": 32768, "flags": {}, @@ -37750,7 +37828,7 @@ } }, { - "id": 2379, + "id": 2376, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -37792,7 +37870,7 @@ } }, { - "id": 2376, + "id": 2373, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -37822,7 +37900,7 @@ ], "type": { "type": "reference", - "id": 2232, + "id": 2229, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -37831,7 +37909,7 @@ } }, { - "id": 2373, + "id": 2370, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -37872,7 +37950,7 @@ } }, { - "id": 2359, + "id": 2356, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -37901,7 +37979,7 @@ ], "type": { "type": "reference", - "id": 2632, + "id": 2631, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -37910,7 +37988,7 @@ } }, { - "id": 2380, + "id": 2377, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -37952,7 +38030,7 @@ } }, { - "id": 2342, + "id": 2339, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -37986,7 +38064,7 @@ } }, { - "id": 2341, + "id": 2338, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -38027,7 +38105,7 @@ } }, { - "id": 2367, + "id": 2364, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -38065,7 +38143,7 @@ } }, { - "id": 2351, + "id": 2348, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -38103,7 +38181,7 @@ } }, { - "id": 2350, + "id": 2347, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -38135,7 +38213,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -38145,7 +38223,7 @@ } }, { - "id": 2363, + "id": 2360, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -38186,7 +38264,7 @@ } }, { - "id": 2381, + "id": 2378, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -38228,7 +38306,7 @@ } }, { - "id": 2364, + "id": 2361, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -38266,7 +38344,7 @@ } }, { - "id": 2377, + "id": 2374, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -38304,7 +38382,7 @@ } }, { - "id": 2378, + "id": 2375, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -38342,7 +38420,7 @@ } }, { - "id": 2345, + "id": 2342, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -38376,7 +38454,7 @@ } }, { - "id": 2366, + "id": 2363, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -38413,7 +38491,7 @@ } }, { - "id": 2347, + "id": 2344, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -38443,7 +38521,7 @@ ], "type": { "type": "reference", - "id": 2591, + "id": 2590, "name": "FrameParams" }, "inheritedFrom": { @@ -38452,7 +38530,7 @@ } }, { - "id": 2352, + "id": 2349, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -38488,7 +38566,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -38498,7 +38576,7 @@ } }, { - "id": 2360, + "id": 2357, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -38536,7 +38614,7 @@ } }, { - "id": 2369, + "id": 2366, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -38574,7 +38652,7 @@ } }, { - "id": 2354, + "id": 2351, "name": "locale", "kind": 1024, "kindString": "Property", @@ -38612,7 +38690,7 @@ } }, { - "id": 2368, + "id": 2365, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -38650,7 +38728,7 @@ } }, { - "id": 2362, + "id": 2359, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -38688,7 +38766,7 @@ } }, { - "id": 2370, + "id": 2367, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -38726,7 +38804,7 @@ } }, { - "id": 2374, + "id": 2371, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -38758,7 +38836,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1903, "name": "RuntimeFilter" } }, @@ -38768,7 +38846,7 @@ } }, { - "id": 2375, + "id": 2372, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -38800,7 +38878,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2815, + "id": 2814, "name": "RuntimeParameter" } }, @@ -38810,7 +38888,7 @@ } }, { - "id": 2344, + "id": 2341, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -38844,7 +38922,7 @@ } }, { - "id": 2372, + "id": 2369, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -38881,7 +38959,7 @@ } }, { - "id": 2343, + "id": 2340, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -38915,7 +38993,7 @@ } }, { - "id": 2353, + "id": 2350, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -38951,7 +39029,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -38966,38 +39044,38 @@ "title": "Properties", "kind": 1024, "children": [ - 2355, - 2379, + 2352, 2376, 2373, - 2359, - 2380, - 2342, - 2341, - 2367, - 2351, - 2350, - 2363, - 2381, - 2364, + 2370, + 2356, 2377, - 2378, - 2345, - 2366, + 2339, + 2338, + 2364, + 2348, 2347, - 2352, 2360, - 2369, - 2354, - 2368, - 2362, - 2370, + 2378, + 2361, 2374, 2375, + 2342, + 2363, 2344, + 2349, + 2357, + 2366, + 2351, + 2365, + 2359, + 2367, + 2371, 2372, - 2343, - 2353 + 2341, + 2369, + 2340, + 2350 ] } ], @@ -39020,7 +39098,7 @@ ] }, { - "id": 2286, + "id": 2283, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -39036,7 +39114,7 @@ }, "children": [ { - "id": 2322, + "id": 2319, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -39067,20 +39145,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2323, + "id": 2320, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2324, + "id": 2321, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2325, + "id": 2322, "name": "key", "kind": 32768, "flags": {}, @@ -39116,7 +39194,7 @@ } }, { - "id": 2298, + "id": 2295, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -39150,7 +39228,7 @@ } }, { - "id": 2288, + "id": 2285, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -39184,7 +39262,7 @@ } }, { - "id": 2287, + "id": 2284, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -39218,7 +39296,7 @@ } }, { - "id": 2310, + "id": 2307, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -39260,7 +39338,7 @@ } }, { - "id": 2301, + "id": 2298, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -39297,7 +39375,7 @@ } }, { - "id": 2307, + "id": 2304, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -39327,7 +39405,7 @@ ], "type": { "type": "reference", - "id": 2232, + "id": 2229, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -39336,7 +39414,7 @@ } }, { - "id": 2339, + "id": 2336, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -39377,7 +39455,7 @@ } }, { - "id": 2326, + "id": 2323, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -39406,7 +39484,7 @@ ], "type": { "type": "reference", - "id": 2632, + "id": 2631, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -39415,7 +39493,7 @@ } }, { - "id": 2303, + "id": 2300, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -39453,7 +39531,7 @@ } }, { - "id": 2311, + "id": 2308, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -39495,7 +39573,7 @@ } }, { - "id": 2294, + "id": 2291, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -39529,7 +39607,7 @@ } }, { - "id": 2293, + "id": 2290, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -39565,7 +39643,7 @@ } }, { - "id": 2334, + "id": 2331, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -39603,7 +39681,7 @@ } }, { - "id": 2318, + "id": 2315, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -39641,7 +39719,7 @@ } }, { - "id": 2317, + "id": 2314, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -39673,7 +39751,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -39683,7 +39761,7 @@ } }, { - "id": 2330, + "id": 2327, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -39724,7 +39802,7 @@ } }, { - "id": 2312, + "id": 2309, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -39766,7 +39844,7 @@ } }, { - "id": 2291, + "id": 2288, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -39800,7 +39878,7 @@ } }, { - "id": 2331, + "id": 2328, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -39838,7 +39916,7 @@ } }, { - "id": 2308, + "id": 2305, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -39876,7 +39954,7 @@ } }, { - "id": 2309, + "id": 2306, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -39914,7 +39992,7 @@ } }, { - "id": 2297, + "id": 2294, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -39948,7 +40026,7 @@ } }, { - "id": 2333, + "id": 2330, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -39985,7 +40063,7 @@ } }, { - "id": 2304, + "id": 2301, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -40023,7 +40101,7 @@ } }, { - "id": 2292, + "id": 2289, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -40057,7 +40135,7 @@ } }, { - "id": 2314, + "id": 2311, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -40087,7 +40165,7 @@ ], "type": { "type": "reference", - "id": 2591, + "id": 2590, "name": "FrameParams" }, "inheritedFrom": { @@ -40096,7 +40174,7 @@ } }, { - "id": 2319, + "id": 2316, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -40132,7 +40210,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -40142,7 +40220,7 @@ } }, { - "id": 2289, + "id": 2286, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -40176,7 +40254,7 @@ } }, { - "id": 2290, + "id": 2287, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -40210,7 +40288,7 @@ } }, { - "id": 2299, + "id": 2296, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -40244,7 +40322,7 @@ } }, { - "id": 2327, + "id": 2324, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -40282,7 +40360,7 @@ } }, { - "id": 2302, + "id": 2299, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -40312,7 +40390,7 @@ } }, { - "id": 2336, + "id": 2333, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -40350,7 +40428,7 @@ } }, { - "id": 2321, + "id": 2318, "name": "locale", "kind": 1024, "kindString": "Property", @@ -40388,7 +40466,7 @@ } }, { - "id": 2335, + "id": 2332, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -40426,7 +40504,7 @@ } }, { - "id": 2329, + "id": 2326, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -40464,7 +40542,7 @@ } }, { - "id": 2305, + "id": 2302, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -40496,7 +40574,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1903, "name": "RuntimeFilter" } }, @@ -40506,7 +40584,7 @@ } }, { - "id": 2306, + "id": 2303, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -40538,7 +40616,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2815, + "id": 2814, "name": "RuntimeParameter" } }, @@ -40548,7 +40626,7 @@ } }, { - "id": 2296, + "id": 2293, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -40578,7 +40656,7 @@ } }, { - "id": 2295, + "id": 2292, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -40607,7 +40685,7 @@ } }, { - "id": 2338, + "id": 2335, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -40644,7 +40722,7 @@ } }, { - "id": 2300, + "id": 2297, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -40674,7 +40752,7 @@ } }, { - "id": 2320, + "id": 2317, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -40710,7 +40788,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -40725,50 +40803,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2322, - 2298, - 2288, - 2287, - 2310, - 2301, + 2319, + 2295, + 2285, + 2284, 2307, - 2339, - 2326, - 2303, - 2311, - 2294, - 2293, - 2334, - 2318, - 2317, - 2330, - 2312, + 2298, + 2304, + 2336, + 2323, + 2300, + 2308, 2291, + 2290, 2331, - 2308, - 2309, - 2297, - 2333, - 2304, - 2292, + 2315, 2314, - 2319, - 2289, - 2290, - 2299, 2327, - 2302, - 2336, - 2321, - 2335, - 2329, + 2309, + 2288, + 2328, 2305, 2306, + 2294, + 2330, + 2301, + 2289, + 2311, + 2316, + 2286, + 2287, 2296, - 2295, - 2338, - 2300, - 2320 + 2324, + 2299, + 2333, + 2318, + 2332, + 2326, + 2302, + 2303, + 2293, + 2292, + 2335, + 2297, + 2317 ] } ], @@ -40801,14 +40879,14 @@ ] }, { - "id": 1875, + "id": 1872, "name": "SessionInterface", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1878, + "id": 1875, "name": "acSession", "kind": 1024, "kindString": "Property", @@ -40823,14 +40901,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1879, + "id": 1876, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1881, + "id": 1878, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -40848,7 +40926,7 @@ } }, { - "id": 1880, + "id": 1877, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -40871,8 +40949,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1881, - 1880 + 1878, + 1877 ] } ] @@ -40880,7 +40958,7 @@ } }, { - "id": 1877, + "id": 1874, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -40898,7 +40976,7 @@ } }, { - "id": 1876, + "id": 1873, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -40921,9 +40999,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1878, - 1877, - 1876 + 1875, + 1874, + 1873 ] } ], @@ -40936,7 +41014,7 @@ ] }, { - "id": 1231, + "id": 1228, "name": "SpotterAgentEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -40952,7 +41030,7 @@ }, "children": [ { - "id": 1242, + "id": 1239, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -40983,20 +41061,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1243, + "id": 1240, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1244, + "id": 1241, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1245, + "id": 1242, "name": "key", "kind": 32768, "flags": {}, @@ -41032,7 +41110,7 @@ } }, { - "id": 1259, + "id": 1256, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -41073,7 +41151,7 @@ } }, { - "id": 1246, + "id": 1243, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -41102,7 +41180,7 @@ ], "type": { "type": "reference", - "id": 2632, + "id": 2631, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -41111,7 +41189,7 @@ } }, { - "id": 1254, + "id": 1251, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -41149,7 +41227,7 @@ } }, { - "id": 1238, + "id": 1235, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -41187,7 +41265,7 @@ } }, { - "id": 1237, + "id": 1234, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -41219,7 +41297,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -41229,7 +41307,7 @@ } }, { - "id": 1250, + "id": 1247, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -41270,7 +41348,7 @@ } }, { - "id": 1251, + "id": 1248, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -41308,7 +41386,7 @@ } }, { - "id": 1253, + "id": 1250, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -41345,7 +41423,7 @@ } }, { - "id": 1234, + "id": 1231, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -41375,7 +41453,7 @@ ], "type": { "type": "reference", - "id": 2591, + "id": 2590, "name": "FrameParams" }, "inheritedFrom": { @@ -41384,7 +41462,7 @@ } }, { - "id": 1239, + "id": 1236, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -41420,7 +41498,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -41430,7 +41508,7 @@ } }, { - "id": 1247, + "id": 1244, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -41468,7 +41546,7 @@ } }, { - "id": 1256, + "id": 1253, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -41506,7 +41584,7 @@ } }, { - "id": 1241, + "id": 1238, "name": "locale", "kind": 1024, "kindString": "Property", @@ -41544,7 +41622,7 @@ } }, { - "id": 1255, + "id": 1252, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -41582,7 +41660,7 @@ } }, { - "id": 1249, + "id": 1246, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -41620,7 +41698,7 @@ } }, { - "id": 1258, + "id": 1255, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -41657,7 +41735,7 @@ } }, { - "id": 1240, + "id": 1237, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -41693,7 +41771,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -41703,7 +41781,7 @@ } }, { - "id": 1232, + "id": 1229, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -41729,25 +41807,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1242, - 1259, - 1246, - 1254, - 1238, - 1237, - 1250, + 1239, + 1256, + 1243, 1251, - 1253, + 1235, 1234, - 1239, 1247, - 1256, - 1241, + 1248, + 1250, + 1231, + 1236, + 1244, + 1253, + 1238, + 1252, + 1246, 1255, - 1249, - 1258, - 1240, - 1232 + 1237, + 1229 ] } ], @@ -41777,13 +41855,13 @@ "extendedBy": [ { "type": "reference", - "id": 1260, + "id": 1257, "name": "BodylessConversationViewConfig" } ] }, { - "id": 1486, + "id": 1483, "name": "SpotterEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -41799,7 +41877,7 @@ }, "children": [ { - "id": 1508, + "id": 1505, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -41830,20 +41908,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1509, + "id": 1506, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1510, + "id": 1507, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1511, + "id": 1508, "name": "key", "kind": 32768, "flags": {}, @@ -41879,7 +41957,7 @@ } }, { - "id": 1525, + "id": 1522, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -41920,7 +41998,7 @@ } }, { - "id": 1512, + "id": 1509, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -41949,7 +42027,7 @@ ], "type": { "type": "reference", - "id": 2632, + "id": 2631, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -41958,7 +42036,7 @@ } }, { - "id": 1491, + "id": 1488, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -41996,7 +42074,7 @@ } }, { - "id": 1520, + "id": 1517, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -42034,7 +42112,7 @@ } }, { - "id": 1489, + "id": 1486, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -42068,7 +42146,7 @@ } }, { - "id": 1504, + "id": 1501, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -42106,7 +42184,7 @@ } }, { - "id": 1503, + "id": 1500, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -42138,7 +42216,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -42148,7 +42226,7 @@ } }, { - "id": 1516, + "id": 1513, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -42189,7 +42267,7 @@ } }, { - "id": 1498, + "id": 1495, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -42227,7 +42305,7 @@ } }, { - "id": 1517, + "id": 1514, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -42265,7 +42343,7 @@ } }, { - "id": 1495, + "id": 1492, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -42299,7 +42377,7 @@ } }, { - "id": 1497, + "id": 1494, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -42333,7 +42411,7 @@ } }, { - "id": 1519, + "id": 1516, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -42370,7 +42448,7 @@ } }, { - "id": 1500, + "id": 1497, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -42400,7 +42478,7 @@ ], "type": { "type": "reference", - "id": 2591, + "id": 2590, "name": "FrameParams" }, "inheritedFrom": { @@ -42409,7 +42487,7 @@ } }, { - "id": 1505, + "id": 1502, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -42445,7 +42523,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -42455,7 +42533,7 @@ } }, { - "id": 1493, + "id": 1490, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -42489,7 +42567,7 @@ } }, { - "id": 1490, + "id": 1487, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -42523,7 +42601,7 @@ } }, { - "id": 1513, + "id": 1510, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -42561,7 +42639,7 @@ } }, { - "id": 1522, + "id": 1519, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -42599,7 +42677,7 @@ } }, { - "id": 1507, + "id": 1504, "name": "locale", "kind": 1024, "kindString": "Property", @@ -42637,7 +42715,7 @@ } }, { - "id": 1521, + "id": 1518, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -42675,7 +42753,7 @@ } }, { - "id": 1515, + "id": 1512, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -42713,7 +42791,7 @@ } }, { - "id": 1494, + "id": 1491, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -42745,13 +42823,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1903, "name": "RuntimeFilter" } } }, { - "id": 1496, + "id": 1493, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -42783,13 +42861,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2815, + "id": 2814, "name": "RuntimeParameter" } } }, { - "id": 1488, + "id": 1485, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -42812,7 +42890,7 @@ } }, { - "id": 1524, + "id": 1521, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -42849,7 +42927,7 @@ } }, { - "id": 1492, + "id": 1489, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -42883,7 +42961,7 @@ } }, { - "id": 1506, + "id": 1503, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -42919,7 +42997,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2091, "name": "Action" } }, @@ -42929,7 +43007,7 @@ } }, { - "id": 1487, + "id": 1484, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -42955,36 +43033,36 @@ "title": "Properties", "kind": 1024, "children": [ - 1508, - 1525, - 1512, - 1491, - 1520, - 1489, - 1504, - 1503, - 1516, - 1498, + 1505, + 1522, + 1509, + 1488, 1517, + 1486, + 1501, + 1500, + 1513, 1495, + 1514, + 1492, + 1494, + 1516, 1497, + 1502, + 1490, + 1487, + 1510, 1519, - 1500, - 1505, + 1504, + 1518, + 1512, + 1491, 1493, - 1490, - 1513, - 1522, - 1507, + 1485, 1521, - 1515, - 1494, - 1496, - 1488, - 1524, - 1492, - 1506, - 1487 + 1489, + 1503, + 1484 ] } ], @@ -43014,20 +43092,20 @@ "extendedBy": [ { "type": "reference", - "id": 1526, + "id": 1523, "name": "ConversationViewConfig" } ] }, { - "id": 1882, + "id": 1879, "name": "UnderlyingDataPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1883, + "id": 1880, "name": "columnId", "kind": 1024, "kindString": "Property", @@ -43045,7 +43123,7 @@ } }, { - "id": 1884, + "id": 1881, "name": "dataValue", "kind": 1024, "kindString": "Property", @@ -43068,8 +43146,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1883, - 1884 + 1880, + 1881 ] } ], @@ -43082,14 +43160,14 @@ ] }, { - "id": 2853, + "id": 2852, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2854, + "id": 2853, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -43097,7 +43175,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5765, + "line": 5781, "character": 4 } ], @@ -43110,7 +43188,7 @@ } }, { - "id": 2855, + "id": 2854, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -43118,7 +43196,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5766, + "line": 5782, "character": 4 } ], @@ -43136,21 +43214,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2854, - 2855 + 2853, + 2854 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5764, + "line": 5780, "character": 17 } ] }, { - "id": 2645, + "id": 2644, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -43160,7 +43238,7 @@ }, "children": [ { - "id": 2647, + "id": 2646, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -43190,20 +43268,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2648, + "id": 2647, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2649, + "id": 2648, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2650, + "id": 2649, "name": "selector", "kind": 32768, "flags": {}, @@ -43216,7 +43294,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2651, + "id": 2650, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43229,14 +43307,14 @@ } ], "indexSignature": { - "id": 2652, + "id": 2651, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2653, + "id": 2652, "name": "declaration", "kind": 32768, "flags": {}, @@ -43258,7 +43336,7 @@ } }, { - "id": 2646, + "id": 2645, "name": "variables", "kind": 1024, "kindString": "Property", @@ -43277,7 +43355,7 @@ ], "type": { "type": "reference", - "id": 2654, + "id": 2653, "name": "CustomCssVariables" } } @@ -43287,8 +43365,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2647, - 2646 + 2646, + 2645 ] } ], @@ -43593,7 +43671,7 @@ ] }, { - "id": 2615, + "id": 2614, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -43620,7 +43698,7 @@ } }, { - "id": 2619, + "id": 2618, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -43628,14 +43706,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1581, + "line": 1596, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2620, + "id": 2619, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43652,13 +43730,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1581, + "line": 1596, "character": 30 } ], "signatures": [ { - "id": 2621, + "id": 2620, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43668,19 +43746,19 @@ }, "parameters": [ { - "id": 2622, + "id": 2621, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2627, + "id": 2626, "name": "MessagePayload" } }, { - "id": 2623, + "id": 2622, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -43690,7 +43768,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2624, + "id": 2623, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43698,13 +43776,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1588, + "line": 1603, "character": 16 } ], "signatures": [ { - "id": 2625, + "id": 2624, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43714,7 +43792,7 @@ }, "parameters": [ { - "id": 2626, + "id": 2625, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -43745,7 +43823,7 @@ } }, { - "id": 2616, + "id": 2615, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -43762,21 +43840,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1570, + "line": 1585, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2617, + "id": 2616, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2618, + "id": 2617, "name": "start", "kind": 1024, "kindString": "Property", @@ -43789,7 +43867,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1575, + "line": 1590, "character": 4 } ], @@ -43804,14 +43882,14 @@ "title": "Properties", "kind": 1024, "children": [ - 2618 + 2617 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1570, + "line": 1585, "character": 29 } ] @@ -43819,7 +43897,7 @@ } }, { - "id": 2627, + "id": 2626, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -43836,21 +43914,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1557, + "line": 1572, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2628, + "id": 2627, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2630, + "id": 2629, "name": "data", "kind": 1024, "kindString": "Property", @@ -43858,7 +43936,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1561, + "line": 1576, "character": 4 } ], @@ -43868,7 +43946,7 @@ } }, { - "id": 2631, + "id": 2630, "name": "status", "kind": 1024, "kindString": "Property", @@ -43878,7 +43956,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1563, + "line": 1578, "character": 4 } ], @@ -43888,7 +43966,7 @@ } }, { - "id": 2629, + "id": 2628, "name": "type", "kind": 1024, "kindString": "Property", @@ -43896,7 +43974,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1559, + "line": 1574, "character": 4 } ], @@ -43911,16 +43989,16 @@ "title": "Properties", "kind": 1024, "children": [ + 2629, 2630, - 2631, - 2629 + 2628 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1557, + "line": 1572, "character": 29 } ] @@ -43928,7 +44006,7 @@ } }, { - "id": 51, + "id": 48, "name": "createLiveboardWithAnswers", "kind": 64, "kindString": "Function", @@ -43944,7 +44022,7 @@ ], "signatures": [ { - "id": 52, + "id": 49, "name": "createLiveboardWithAnswers", "kind": 4096, "kindString": "Call signature", @@ -43966,7 +44044,7 @@ }, "parameters": [ { - "id": 53, + "id": 50, "name": "answers", "kind": 32768, "kindString": "Parameter", @@ -43978,13 +44056,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } } }, { - "id": 54, + "id": 51, "name": "name", "kind": 32768, "kindString": "Parameter", @@ -44148,7 +44226,7 @@ ] }, { - "id": 44, + "id": 41, "name": "getAnswerFromQuery", "kind": 64, "kindString": "Function", @@ -44164,7 +44242,7 @@ ], "signatures": [ { - "id": 45, + "id": 42, "name": "getAnswerFromQuery", "kind": 4096, "kindString": "Call signature", @@ -44185,7 +44263,7 @@ }, "parameters": [ { - "id": 46, + "id": 43, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -44199,7 +44277,7 @@ } }, { - "id": 47, + "id": 44, "name": "worksheetId", "kind": 32768, "kindString": "Parameter", @@ -44219,14 +44297,14 @@ { "type": "reflection", "declaration": { - "id": 48, + "id": 45, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 49, + "id": 46, "name": "answer", "kind": 1024, "kindString": "Property", @@ -44240,12 +44318,12 @@ ], "type": { "type": "reference", - "id": 1802, + "id": 1799, "name": "AnswerService" } }, { - "id": 50, + "id": 47, "name": "suggestion", "kind": 1024, "kindString": "Property", @@ -44268,8 +44346,8 @@ "title": "Properties", "kind": 1024, "children": [ - 49, - 50 + 46, + 47 ] } ] @@ -44327,7 +44405,7 @@ }, "type": { "type": "reference", - "id": 2236, + "id": 2233, "name": "EmbedConfig" } } @@ -44427,14 +44505,14 @@ }, "type": { "type": "reference", - "id": 2236, + "id": 2233, "name": "EmbedConfig" } } ], "type": { "type": "reference", - "id": 1749, + "id": 1746, "name": "AuthEventEmitter" } } @@ -44574,7 +44652,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2586, + "id": 2585, "name": "PrefetchFeatures" } } @@ -44646,7 +44724,7 @@ ] }, { - "id": 2902, + "id": 2901, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -44662,7 +44740,7 @@ ], "signatures": [ { - "id": 2903, + "id": 2902, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -44777,86 +44855,11 @@ ], "name": "Promise" } - }, - { - "id": 41, - "name": "tokenizedFetch", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Fetch wrapper that adds the authentication token to the request.\nUse this to call the ThoughtSpot APIs when using the visual embed sdk.\nThe interface for this method is the same as Web `Fetch`.", - "tags": [ - { - "tag": "example", - "text": "\n```js\ntokenizedFetch(\"/api/rest/2.0/auth/session/user\", {\n // .. fetch options ..\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.28.0" - }, - { - "tag": "group", - "text": "Global methods\n" - } - ] - }, - "parameters": [ - { - "id": 42, - "name": "input", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "reference", - "name": "URL" - }, - { - "type": "reference", - "name": "globalThis.Request" - } - ] - } - }, - { - "id": 43, - "name": "init", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "comment": {}, - "type": { - "type": "reference", - "name": "RequestInit" - } - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "Response" - } - ], - "name": "Promise" - } } ] }, { - "id": 2825, + "id": 2824, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -44870,7 +44873,7 @@ ], "signatures": [ { - "id": 2826, + "id": 2825, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -44880,7 +44883,7 @@ }, "parameters": [ { - "id": 2827, + "id": 2826, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -44892,7 +44895,7 @@ } }, { - "id": 2828, + "id": 2827, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -44903,7 +44906,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2829, + "id": 2828, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -44926,74 +44929,74 @@ "title": "Enumerations", "kind": 4, "children": [ - 2094, - 1747, - 1732, - 1739, - 1894, - 2232, - 2897, - 2893, - 2889, - 2090, - 1926, - 2597, - 2847, - 2841, - 2608, - 2019, - 2850, - 2883, - 2818, - 1885, - 2586, - 2845, - 1910, - 2876 + 2091, + 1744, + 1729, + 1736, + 1891, + 2229, + 2896, + 2892, + 2888, + 2087, + 1923, + 2596, + 2846, + 2840, + 2607, + 2016, + 2849, + 2882, + 2817, + 1882, + 2585, + 2844, + 1907, + 2875 ] }, { "title": "Classes", "kind": 128, "children": [ - 1802, - 989, - 1289, - 1566, - 590, - 813, - 231, - 55, - 1199, - 1320 + 1799, + 986, + 1286, + 1563, + 587, + 810, + 228, + 52, + 1196, + 1317 ] }, { "title": "Interfaces", "kind": 256, "children": [ - 2503, - 1749, - 1260, - 1526, - 2856, - 2654, - 2642, - 2632, - 2236, - 2591, - 2382, - 1906, - 2815, - 2456, - 2340, - 2286, - 1875, - 1231, - 1486, - 1882, - 2853, - 2645, + 2501, + 1746, + 1257, + 1523, + 2855, + 2653, + 2641, + 2631, + 2233, + 2590, + 2379, + 1903, + 2814, + 2454, + 2337, + 2283, + 1872, + 1228, + 1483, + 1879, + 2852, + 2644, 21, 25 ] @@ -45002,28 +45005,28 @@ "title": "Type aliases", "kind": 4194304, "children": [ + 2614, + 2618, 2615, - 2619, - 2616, - 2627 + 2626 ] }, { "title": "Functions", "kind": 64, "children": [ - 51, + 48, 15, 18, - 44, + 41, 33, 35, 1, 4, 7, - 2902, + 2901, 37, - 2825 + 2824 ] } ], From c2da3fd33549ff006af9af6f7ab8700dd6a48715 Mon Sep 17 00:00:00 2001 From: ShashiSubramanya <76986173+ShashiSubramanya@users.noreply.github.com> Date: Wed, 22 Oct 2025 09:55:52 +0530 Subject: [PATCH 21/31] worksheet terminology update, SCAL-278257 fix (#334) --- src/embed/bodyless-conversation.ts | 2 +- src/embed/sage.ts | 8 +- src/errors.ts | 2 +- src/types.ts | 14 +- static/typedoc/typedoc.json | 6589 ++++++++++++++-------------- 5 files changed, 3344 insertions(+), 3271 deletions(-) diff --git a/src/embed/bodyless-conversation.ts b/src/embed/bodyless-conversation.ts index bf560a9e7..3e93d3355 100644 --- a/src/embed/bodyless-conversation.ts +++ b/src/embed/bodyless-conversation.ts @@ -10,7 +10,7 @@ import { getQueryParamString } from '../utils'; */ export interface SpotterAgentEmbedViewConfig extends Omit { /** - * The ID of the worksheet to use for the conversation. + * The ID of the Model to use for the conversation. */ worksheetId: string; } diff --git a/src/embed/sage.ts b/src/embed/sage.ts index 8d4a582ca..a8818ae75 100644 --- a/src/embed/sage.ts +++ b/src/embed/sage.ts @@ -69,12 +69,12 @@ export interface SageViewConfig */ hideSageAnswerHeader?: boolean; /** - * Disable the worksheet selection option. + * Disable the data source selection option. * @version SDK: 1.26.0 | ThoughtSpot: 9.8.0.cl, 9.8.0.sw */ disableWorksheetChange?: boolean; /** - * Hide the worksheet selection panel. + * Hide the data source selection panel. * @version SDK: 1.26.0 | ThoughtSpot: 9.8.0.cl, 9.8.0.sw */ hideWorksheetSelector?: boolean; @@ -92,7 +92,7 @@ export interface SageViewConfig showObjectSuggestions?: boolean; /** * Show or hide sample questions. - * The sample questions are autogenerated based on the worksheet + * The sample questions are autogenerated based on the data Model. * selected for the search operation. * * Supported embed types: `SageEmbed` @@ -107,7 +107,7 @@ export interface SageViewConfig */ hideSampleQuestions?: boolean; /** - * The data source GUID (Worksheet GUID) to set on load. + * The data source GUID (Model GUID) to set on load. */ dataSource?: string; /** diff --git a/src/errors.ts b/src/errors.ts index 9ad860eb9..38ff5f817 100644 --- a/src/errors.ts +++ b/src/errors.ts @@ -1,6 +1,6 @@ export const ERROR_MESSAGE = { INVALID_THOUGHTSPOT_HOST: 'Error parsing ThoughtSpot host. Please provide a valid URL.', - SPOTTER_EMBED_WORKSHEED_ID_NOT_FOUND: 'Please select a worksheet to get started', + SPOTTER_EMBED_WORKSHEED_ID_NOT_FOUND: 'Please select a Model to get started', LIVEBOARD_VIZ_ID_VALIDATION: 'Please select a Liveboard to embed.', TRIGGER_TIMED_OUT: 'Trigger timed-out in getting a response', SEARCHEMBED_BETA_WRANING_MESSAGE: 'SearchEmbed is in Beta in this release.', diff --git a/src/types.ts b/src/types.ts index d63269343..7ba167181 100644 --- a/src/types.ts +++ b/src/types.ts @@ -2807,7 +2807,7 @@ export enum EmbedEvent { * the table visualization. * * If the Row-Level Security (RLS) rules are applied on the - * Worksheet or Model, exercise caution when changing column + * Model, exercise caution when changing column * or table cell values to maintain data security. * * @example @@ -2865,7 +2865,7 @@ export enum EmbedEvent { */ SpotterData = 'SpotterData', /** - * Emitted when user opens up the worksheet preview modal in Spotter embed. + * Emitted when user opens up the data source preview modal in Spotter embed. * @example * ```js * spotterEmbed.on(EmbedEvent.PreviewSpotterData, (payload) => { @@ -3092,9 +3092,7 @@ export enum HostEvent { */ Reload = 'reload', /** - * Get iframe URL for the current embed view on the playground. - * Developers can use this URL to embed a ThoughtSpot object - * in apps like Salesforce or Sharepoint. + * Get iframe URL for the current embed view. * @example * ```js * const url = embed.trigger(HostEvent.GetIframeUrl); @@ -4166,7 +4164,7 @@ export enum HostEvent { */ EditLastPrompt = 'EditLastPrompt', /** - * Opens the Worksheet preview modal in Spotter Embed. + * Opens the data source preview modal in Spotter Embed. * @example * ```js * spotterEmbed.trigger(HostEvent.PreviewSpotterData); @@ -4516,7 +4514,7 @@ export enum Action { */ SchedulesList = 'schedule-list', /** - * The **Share** action on a Liveboard, Answer, or Worksheet. + * The **Share** action on a Liveboard, Answer, or Model. * Allows users to share an object with other users and groups. * @example * ```js @@ -4975,7 +4973,7 @@ export enum Action { AnswerChartSwitcher = 'answerChartSwitcher', /** * The Favorites icon (*) for Answers, - * Liveboard, and data objects like Worksheet, Model, + * Liveboard, and data objects like Model, * Tables and Views. * Allows adding an object to the user's favorites list. * @example diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index e19e14c85..16536ae61 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 2091, + "id": 2094, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 2204, + "id": 2207, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -48,14 +48,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5471, + "line": 5469, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2111, + "id": 2114, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -76,14 +76,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4617, + "line": 4615, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 2104, + "id": 2107, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -104,14 +104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4546, + "line": 4544, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 2103, + "id": 2106, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -128,14 +128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4535, + "line": 4533, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 2109, + "id": 2112, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -152,14 +152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4598, + "line": 4596, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 2110, + "id": 2113, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -176,14 +176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4607, + "line": 4605, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 2112, + "id": 2115, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -204,14 +204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4627, + "line": 4625, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 2186, + "id": 2189, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -232,20 +232,20 @@ "sources": [ { "fileName": "types.ts", - "line": 5265, + "line": 5263, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 2159, + "id": 2162, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "The Favorites icon (*) for Answers,\nLiveboard, and data objects like Worksheet, Model,\nTables and Views.\nAllows adding an object to the user's favorites list.", + "shortText": "The Favorites icon (*) for Answers,\nLiveboard, and data objects like Model,\nTables and Views.\nAllows adding an object to the user's favorites list.", "tags": [ { "tag": "example", @@ -260,14 +260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4987, + "line": 4985, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 2201, + "id": 2204, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -288,14 +288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5438, + "line": 5436, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 2158, + "id": 2161, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -316,14 +316,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4975, + "line": 4973, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2157, + "id": 2160, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -344,14 +344,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4963, + "line": 4961, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2200, + "id": 2203, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -373,14 +373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5427, + "line": 5425, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 2170, + "id": 2173, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -401,14 +401,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5100, + "line": 5098, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 2173, + "id": 2176, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -429,14 +429,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5134, + "line": 5132, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 2178, + "id": 2181, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -457,14 +457,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5189, + "line": 5187, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 2172, + "id": 2175, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -485,14 +485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5123, + "line": 5121, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 2175, + "id": 2178, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -513,14 +513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5157, + "line": 5155, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 2179, + "id": 2182, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -541,14 +541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5199, + "line": 5197, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 2176, + "id": 2179, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -569,14 +569,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5168, + "line": 5166, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 2181, + "id": 2184, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -597,14 +597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5221, + "line": 5219, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 2177, + "id": 2180, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -625,14 +625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5178, + "line": 5176, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 2174, + "id": 2177, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -653,14 +653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5145, + "line": 5143, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 2180, + "id": 2183, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -681,14 +681,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5209, + "line": 5207, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 2171, + "id": 2174, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -709,14 +709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5111, + "line": 5109, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 2213, + "id": 2216, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -737,14 +737,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5569, + "line": 5567, "character": 4 } ], "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 2108, + "id": 2111, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -761,14 +761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4589, + "line": 4587, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 2107, + "id": 2110, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -789,14 +789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4580, + "line": 4578, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 2106, + "id": 2109, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -817,14 +817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4568, + "line": 4566, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 2220, + "id": 2223, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -845,14 +845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5645, + "line": 5643, "character": 4 } ], "defaultValue": "\"columnRename\"" }, { - "id": 2105, + "id": 2108, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -869,14 +869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4557, + "line": 4555, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 2150, + "id": 2153, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -884,14 +884,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4914, + "line": 4912, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 2098, + "id": 2101, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -908,14 +908,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4494, + "line": 4492, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2149, + "id": 2152, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -932,14 +932,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4913, + "line": 4911, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2221, + "id": 2224, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -960,14 +960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5655, + "line": 5653, "character": 4 } ], "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 2198, + "id": 2201, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -988,14 +988,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5402, + "line": 5400, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 2161, + "id": 2164, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1016,14 +1016,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5007, + "line": 5005, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2166, + "id": 2169, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1044,14 +1044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5058, + "line": 5056, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 2218, + "id": 2221, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1072,14 +1072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5626, + "line": 5624, "character": 4 } ], "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 2210, + "id": 2213, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1100,14 +1100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5538, + "line": 5536, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 2212, + "id": 2215, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1128,14 +1128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5557, + "line": 5555, "character": 4 } ], "defaultValue": "\"disableChipReorder\"" }, { - "id": 2120, + "id": 2123, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1152,14 +1152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4677, + "line": 4675, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 2123, + "id": 2126, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1176,14 +1176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4710, + "line": 4708, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2122, + "id": 2125, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1201,14 +1201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4700, + "line": 4698, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2121, + "id": 2124, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1225,14 +1225,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4687, + "line": 4685, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2124, + "id": 2127, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1249,14 +1249,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4720, + "line": 4718, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2154, + "id": 2157, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1273,14 +1273,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4930, + "line": 4928, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 2148, + "id": 2151, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1297,14 +1297,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4903, + "line": 4901, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 2147, + "id": 2150, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1321,14 +1321,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4894, + "line": 4892, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 2132, + "id": 2135, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1345,14 +1345,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4796, + "line": 4794, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2097, + "id": 2100, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1369,14 +1369,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4485, + "line": 4483, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 2160, + "id": 2163, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1397,14 +1397,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4996, + "line": 4994, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 2152, + "id": 2155, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1412,14 +1412,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4919, + "line": 4917, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 2217, + "id": 2220, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1440,14 +1440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5615, + "line": 5613, "character": 4 } ], "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 2190, + "id": 2193, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1468,14 +1468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5309, + "line": 5307, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 2205, + "id": 2208, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1496,14 +1496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5484, + "line": 5482, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 2129, + "id": 2132, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1520,14 +1520,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4764, + "line": 4762, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2133, + "id": 2136, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1544,14 +1544,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4804, + "line": 4802, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 2219, + "id": 2222, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1572,14 +1572,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5636, + "line": 5634, "character": 4 } ], "defaultValue": "\"editTokens\"" }, { - "id": 2187, + "id": 2190, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1600,14 +1600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5275, + "line": 5273, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 2188, + "id": 2191, "name": "EnableIterativeChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1628,14 +1628,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5286, + "line": 5284, "character": 4 } ], "defaultValue": "\"enableIterativeChangeAnalysis\"" }, { - "id": 2146, + "id": 2149, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1652,14 +1652,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4883, + "line": 4881, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2126, + "id": 2129, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1677,14 +1677,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4736, + "line": 4734, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2127, + "id": 2130, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1701,14 +1701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4746, + "line": 4744, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 2222, + "id": 2225, "name": "InConversationTraining", "kind": 16, "kindString": "Enumeration member", @@ -1729,14 +1729,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5671, + "line": 5669, "character": 4 } ], "defaultValue": "\"InConversationTraining\"" }, { - "id": 2211, + "id": 2214, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1757,14 +1757,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5548, + "line": 5546, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 2140, + "id": 2143, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1781,14 +1781,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4845, + "line": 4843, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2228, + "id": 2231, "name": "LiveboardStylePanel", "kind": 16, "kindString": "Enumeration member", @@ -1809,14 +1809,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5737, + "line": 5735, "character": 4 } ], "defaultValue": "\"liveboardStylePanel\"" }, { - "id": 2196, + "id": 2199, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1837,14 +1837,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5370, + "line": 5368, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 2096, + "id": 2099, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1861,14 +1861,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4476, + "line": 4474, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2194, + "id": 2197, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1885,14 +1885,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5350, + "line": 5348, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2165, + "id": 2168, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1913,14 +1913,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5048, + "line": 5046, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2209, + "id": 2212, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1941,14 +1941,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5527, + "line": 5525, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 2185, + "id": 2188, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1969,14 +1969,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5255, + "line": 5253, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 2192, + "id": 2195, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1996,14 +1996,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5330, + "line": 5328, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 2193, + "id": 2196, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -2020,14 +2020,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5339, + "line": 5337, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 2203, + "id": 2206, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -2048,14 +2048,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5460, + "line": 5458, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 2206, + "id": 2209, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2076,14 +2076,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5495, + "line": 5493, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 2195, + "id": 2198, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2104,14 +2104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5360, + "line": 5358, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 2143, + "id": 2146, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2128,14 +2128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4862, + "line": 4860, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2226, + "id": 2229, "name": "PngScreenshotInEmail", "kind": 16, "kindString": "Enumeration member", @@ -2152,14 +2152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5715, + "line": 5713, "character": 4 } ], "defaultValue": "\"pngScreenshotInEmail\"" }, { - "id": 2130, + "id": 2133, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2176,14 +2176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4774, + "line": 4772, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2214, + "id": 2217, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2204,14 +2204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5581, + "line": 5579, "character": 4 } ], "defaultValue": "\"previewDataSpotter\"" }, { - "id": 2156, + "id": 2159, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2229,14 +2229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4953, + "line": 4951, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 2134, + "id": 2137, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2253,14 +2253,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4814, + "line": 4812, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2227, + "id": 2230, "name": "RemoveAttachment", "kind": 16, "kindString": "Enumeration member", @@ -2281,14 +2281,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5727, + "line": 5725, "character": 4 } ], "defaultValue": "\"removeAttachment\"" }, { - "id": 2169, + "id": 2172, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2309,14 +2309,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5089, + "line": 5087, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 2202, + "id": 2205, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2337,14 +2337,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5449, + "line": 5447, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 2183, + "id": 2186, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2365,14 +2365,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5235, + "line": 5233, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 2162, + "id": 2165, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2396,14 +2396,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5017, + "line": 5015, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 2155, + "id": 2158, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2420,14 +2420,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4939, + "line": 4937, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 2184, + "id": 2187, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2448,14 +2448,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5245, + "line": 5243, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 2215, + "id": 2218, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2476,14 +2476,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5593, + "line": 5591, "character": 4 } ], "defaultValue": "\"resetSpotterChat\"" }, { - "id": 2191, + "id": 2194, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2504,14 +2504,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5321, + "line": 5319, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 2092, + "id": 2095, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2528,14 +2528,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4445, + "line": 4443, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2095, + "id": 2098, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2552,14 +2552,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4463, + "line": 4461, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 2100, + "id": 2103, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2576,14 +2576,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4508, + "line": 4506, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2101, + "id": 2104, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2600,14 +2600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4517, + "line": 4515, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2153, + "id": 2156, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2615,20 +2615,20 @@ "sources": [ { "fileName": "types.ts", - "line": 4920, + "line": 4918, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 2102, + "id": 2105, "name": "Share", "kind": 16, "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "The **Share** action on a Liveboard, Answer, or Worksheet.\nAllows users to share an object with other users and groups.", + "shortText": "The **Share** action on a Liveboard, Answer, or Model.\nAllows users to share an object with other users and groups.", "tags": [ { "tag": "example", @@ -2639,14 +2639,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4526, + "line": 4524, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2117, + "id": 2120, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2657,14 +2657,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4652, + "line": 4650, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 2189, + "id": 2192, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2685,14 +2685,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5296, + "line": 5294, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 2119, + "id": 2122, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2709,14 +2709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4667, + "line": 4665, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2114, + "id": 2117, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2733,14 +2733,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4640, + "line": 4638, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2216, + "id": 2219, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2761,14 +2761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5604, + "line": 5602, "character": 4 } ], "defaultValue": "\"spotterFeedback\"" }, { - "id": 2225, + "id": 2228, "name": "SpotterTokenQuickEdit", "kind": 16, "kindString": "Enumeration member", @@ -2789,14 +2789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5704, + "line": 5702, "character": 4 } ], "defaultValue": "\"SpotterTokenQuickEdit\"" }, { - "id": 2223, + "id": 2226, "name": "SpotterWarningsBanner", "kind": 16, "kindString": "Enumeration member", @@ -2817,14 +2817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5682, + "line": 5680, "character": 4 } ], "defaultValue": "\"SpotterWarningsBanner\"" }, { - "id": 2224, + "id": 2227, "name": "SpotterWarningsOnTokens", "kind": 16, "kindString": "Enumeration member", @@ -2845,14 +2845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5693, + "line": 5691, "character": 4 } ], "defaultValue": "\"SpotterWarningsOnTokens\"" }, { - "id": 2145, + "id": 2148, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2869,14 +2869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4875, + "line": 4873, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2164, + "id": 2167, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2897,14 +2897,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5038, + "line": 5036, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2163, + "id": 2166, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2925,14 +2925,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5027, + "line": 5025, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2167, + "id": 2170, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2953,14 +2953,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5068, + "line": 5066, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 2168, + "id": 2171, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2981,14 +2981,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5078, + "line": 5076, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 2197, + "id": 2200, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -3013,14 +3013,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5389, + "line": 5387, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 2131, + "id": 2134, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -3037,14 +3037,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4786, + "line": 4784, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 2208, + "id": 2211, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3065,14 +3065,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5517, + "line": 5515, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 2128, + "id": 2131, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -3089,14 +3089,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4755, + "line": 4753, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2199, + "id": 2202, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -3117,14 +3117,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5413, + "line": 5411, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 2207, + "id": 2210, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3145,7 +3145,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5506, + "line": 5504, "character": 4 } ], @@ -3157,138 +3157,138 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2204, - 2111, - 2104, - 2103, - 2109, - 2110, + 2207, + 2114, + 2107, + 2106, 2112, - 2186, - 2159, - 2201, - 2158, - 2157, - 2200, - 2170, + 2113, + 2115, + 2189, + 2162, + 2204, + 2161, + 2160, + 2203, 2173, - 2178, - 2172, - 2175, - 2179, 2176, 2181, + 2175, + 2178, + 2182, + 2179, + 2184, + 2180, 2177, + 2183, 2174, - 2180, - 2171, - 2213, + 2216, + 2111, + 2110, + 2109, + 2223, 2108, - 2107, - 2106, - 2220, - 2105, - 2150, - 2098, - 2149, + 2153, + 2101, + 2152, + 2224, + 2201, + 2164, + 2169, 2221, - 2198, - 2161, - 2166, - 2218, - 2210, - 2212, - 2120, + 2213, + 2215, 2123, - 2122, - 2121, + 2126, + 2125, 2124, - 2154, - 2148, - 2147, + 2127, + 2157, + 2151, + 2150, + 2135, + 2100, + 2163, + 2155, + 2220, + 2193, + 2208, 2132, - 2097, - 2160, - 2152, - 2217, + 2136, + 2222, 2190, - 2205, + 2191, + 2149, 2129, - 2133, - 2219, - 2187, + 2130, + 2225, + 2214, + 2143, + 2231, + 2199, + 2099, + 2197, + 2168, + 2212, 2188, - 2146, - 2126, - 2127, - 2222, - 2211, - 2140, - 2228, + 2195, 2196, - 2096, - 2194, - 2165, + 2206, 2209, - 2185, + 2198, + 2146, + 2229, + 2133, + 2217, + 2159, + 2137, + 2230, + 2172, + 2205, + 2186, + 2165, + 2158, + 2187, + 2218, + 2194, + 2095, + 2098, + 2103, + 2104, + 2156, + 2105, + 2120, 2192, - 2193, - 2203, - 2206, - 2195, - 2143, + 2122, + 2117, + 2219, + 2228, 2226, - 2130, - 2214, - 2156, - 2134, 2227, - 2169, - 2202, - 2183, - 2162, - 2155, - 2184, - 2215, - 2191, - 2092, - 2095, - 2100, - 2101, - 2153, - 2102, - 2117, - 2189, - 2119, - 2114, - 2216, - 2225, - 2223, - 2224, - 2145, - 2164, - 2163, + 2148, 2167, - 2168, - 2197, + 2166, + 2170, + 2171, + 2200, + 2134, + 2211, 2131, - 2208, - 2128, - 2199, - 2207 + 2202, + 2210 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4436, + "line": 4434, "character": 12 } ] }, { - "id": 1744, + "id": 1747, "name": "AuthEvent", "kind": 4, "kindString": "Enumeration", @@ -3304,7 +3304,7 @@ }, "children": [ { - "id": 1745, + "id": 1748, "name": "TRIGGER_SSO_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3327,7 +3327,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1745 + 1748 ] } ], @@ -3340,7 +3340,7 @@ ] }, { - "id": 1729, + "id": 1732, "name": "AuthFailureType", "kind": 4, "kindString": "Enumeration", @@ -3356,7 +3356,7 @@ }, "children": [ { - "id": 1732, + "id": 1735, "name": "EXPIRY", "kind": 16, "kindString": "Enumeration member", @@ -3371,7 +3371,7 @@ "defaultValue": "\"EXPIRY\"" }, { - "id": 1734, + "id": 1737, "name": "IDLE_SESSION_TIMEOUT", "kind": 16, "kindString": "Enumeration member", @@ -3386,7 +3386,7 @@ "defaultValue": "\"IDLE_SESSION_TIMEOUT\"" }, { - "id": 1731, + "id": 1734, "name": "NO_COOKIE_ACCESS", "kind": 16, "kindString": "Enumeration member", @@ -3401,7 +3401,7 @@ "defaultValue": "\"NO_COOKIE_ACCESS\"" }, { - "id": 1733, + "id": 1736, "name": "OTHER", "kind": 16, "kindString": "Enumeration member", @@ -3416,7 +3416,7 @@ "defaultValue": "\"OTHER\"" }, { - "id": 1730, + "id": 1733, "name": "SDK", "kind": 16, "kindString": "Enumeration member", @@ -3431,7 +3431,7 @@ "defaultValue": "\"SDK\"" }, { - "id": 1735, + "id": 1738, "name": "UNAUTHENTICATED_FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3451,12 +3451,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1732, + 1735, + 1737, 1734, - 1731, + 1736, 1733, - 1730, - 1735 + 1738 ] } ], @@ -3469,7 +3469,7 @@ ] }, { - "id": 1736, + "id": 1739, "name": "AuthStatus", "kind": 4, "kindString": "Enumeration", @@ -3485,7 +3485,7 @@ }, "children": [ { - "id": 1737, + "id": 1740, "name": "FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3503,7 +3503,7 @@ "defaultValue": "\"FAILURE\"" }, { - "id": 1741, + "id": 1744, "name": "LOGOUT", "kind": 16, "kindString": "Enumeration member", @@ -3521,7 +3521,7 @@ "defaultValue": "\"LOGOUT\"" }, { - "id": 1743, + "id": 1746, "name": "SAML_POPUP_CLOSED_NO_AUTH", "kind": 16, "kindString": "Enumeration member", @@ -3539,7 +3539,7 @@ "defaultValue": "\"SAML_POPUP_CLOSED_NO_AUTH\"" }, { - "id": 1738, + "id": 1741, "name": "SDK_SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3557,7 +3557,7 @@ "defaultValue": "\"SDK_SUCCESS\"" }, { - "id": 1740, + "id": 1743, "name": "SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3575,7 +3575,7 @@ "defaultValue": "\"SUCCESS\"" }, { - "id": 1742, + "id": 1745, "name": "WAITING_FOR_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3604,12 +3604,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1737, + 1740, + 1744, + 1746, 1741, 1743, - 1738, - 1740, - 1742 + 1745 ] } ], @@ -3622,7 +3622,7 @@ ] }, { - "id": 1891, + "id": 1894, "name": "AuthType", "kind": 4, "kindString": "Enumeration", @@ -3638,7 +3638,7 @@ }, "children": [ { - "id": 1902, + "id": 1905, "name": "Basic", "kind": 16, "kindString": "Enumeration member", @@ -3657,7 +3657,7 @@ "defaultValue": "\"Basic\"" }, { - "id": 1893, + "id": 1896, "name": "EmbeddedSSO", "kind": 16, "kindString": "Enumeration member", @@ -3686,7 +3686,7 @@ "defaultValue": "\"EmbeddedSSO\"" }, { - "id": 1892, + "id": 1895, "name": "None", "kind": 16, "kindString": "Enumeration member", @@ -3710,7 +3710,7 @@ "defaultValue": "\"None\"" }, { - "id": 1898, + "id": 1901, "name": "OIDCRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3728,7 +3728,7 @@ "defaultValue": "\"SSO_OIDC\"" }, { - "id": 1896, + "id": 1899, "name": "SAMLRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3761,7 +3761,7 @@ "defaultValue": "\"SSO_SAML\"" }, { - "id": 1900, + "id": 1903, "name": "TrustedAuthToken", "kind": 16, "kindString": "Enumeration member", @@ -3785,7 +3785,7 @@ "defaultValue": "\"AuthServer\"" }, { - "id": 1901, + "id": 1904, "name": "TrustedAuthTokenCookieless", "kind": 16, "kindString": "Enumeration member", @@ -3818,13 +3818,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1902, - 1893, - 1892, - 1898, + 1905, 1896, - 1900, - 1901 + 1895, + 1901, + 1899, + 1903, + 1904 ] } ], @@ -3837,7 +3837,7 @@ ] }, { - "id": 2229, + "id": 2232, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3847,7 +3847,7 @@ }, "children": [ { - "id": 2232, + "id": 2235, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3855,14 +3855,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5758, + "line": 5756, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 2230, + "id": 2233, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3870,14 +3870,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5756, + "line": 5754, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 2231, + "id": 2234, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3885,7 +3885,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5757, + "line": 5755, "character": 4 } ], @@ -3897,22 +3897,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2232, - 2230, - 2231 + 2235, + 2233, + 2234 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5755, + "line": 5753, "character": 12 } ] }, { - "id": 2896, + "id": 2899, "name": "CustomActionTarget", "kind": 4, "kindString": "Enumeration", @@ -3922,7 +3922,7 @@ }, "children": [ { - "id": 2899, + "id": 2902, "name": "ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -3930,14 +3930,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5843, + "line": 5841, "character": 4 } ], "defaultValue": "\"ANSWER\"" }, { - "id": 2897, + "id": 2900, "name": "LIVEBOARD", "kind": 16, "kindString": "Enumeration member", @@ -3945,14 +3945,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5841, + "line": 5839, "character": 4 } ], "defaultValue": "\"LIVEBOARD\"" }, { - "id": 2900, + "id": 2903, "name": "SPOTTER", "kind": 16, "kindString": "Enumeration member", @@ -3960,14 +3960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5844, + "line": 5842, "character": 4 } ], "defaultValue": "\"SPOTTER\"" }, { - "id": 2898, + "id": 2901, "name": "VIZ", "kind": 16, "kindString": "Enumeration member", @@ -3975,7 +3975,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5842, + "line": 5840, "character": 4 } ], @@ -3987,23 +3987,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2899, - 2897, + 2902, 2900, - 2898 + 2903, + 2901 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5840, + "line": 5838, "character": 12 } ] }, { - "id": 2892, + "id": 2895, "name": "CustomActionsPosition", "kind": 4, "kindString": "Enumeration", @@ -4013,7 +4013,7 @@ }, "children": [ { - "id": 2895, + "id": 2898, "name": "CONTEXTMENU", "kind": 16, "kindString": "Enumeration member", @@ -4021,14 +4021,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5834, + "line": 5832, "character": 4 } ], "defaultValue": "\"CONTEXTMENU\"" }, { - "id": 2894, + "id": 2897, "name": "MENU", "kind": 16, "kindString": "Enumeration member", @@ -4036,14 +4036,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5833, + "line": 5831, "character": 4 } ], "defaultValue": "\"MENU\"" }, { - "id": 2893, + "id": 2896, "name": "PRIMARY", "kind": 16, "kindString": "Enumeration member", @@ -4051,7 +4051,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5832, + "line": 5830, "character": 4 } ], @@ -4063,22 +4063,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2895, - 2894, - 2893 + 2898, + 2897, + 2896 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5831, + "line": 5829, "character": 12 } ] }, { - "id": 2888, + "id": 2891, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -4088,7 +4088,7 @@ }, "children": [ { - "id": 2890, + "id": 2893, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4106,7 +4106,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 2889, + "id": 2892, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4124,7 +4124,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 2891, + "id": 2894, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -4147,9 +4147,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2890, - 2889, - 2891 + 2893, + 2892, + 2894 ] } ], @@ -4162,7 +4162,7 @@ ] }, { - "id": 2087, + "id": 2090, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -4172,7 +4172,7 @@ }, "children": [ { - "id": 2089, + "id": 2092, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -4183,14 +4183,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4267, + "line": 4265, "character": 4 } ], "defaultValue": "\"collapse\"" }, { - "id": 2090, + "id": 2093, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -4201,14 +4201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4271, + "line": 4269, "character": 4 } ], "defaultValue": "\"expand\"" }, { - "id": 2088, + "id": 2091, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -4219,7 +4219,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4263, + "line": 4261, "character": 4 } ], @@ -4231,22 +4231,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2089, - 2090, - 2088 + 2092, + 2093, + 2091 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4259, + "line": 4257, "character": 12 } ] }, { - "id": 1923, + "id": 1926, "name": "EmbedEvent", "kind": 4, "kindString": "Enumeration", @@ -4271,7 +4271,7 @@ }, "children": [ { - "id": 1951, + "id": 1954, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -4299,7 +4299,7 @@ "defaultValue": "\"*\"" }, { - "id": 1931, + "id": 1934, "name": "AddRemoveColumns", "kind": 16, "kindString": "Enumeration member", @@ -4331,7 +4331,7 @@ "defaultValue": "\"addRemoveColumns\"" }, { - "id": 1975, + "id": 1978, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -4359,7 +4359,7 @@ "defaultValue": "\"addToFavorites\"" }, { - "id": 1936, + "id": 1939, "name": "Alert", "kind": 16, "kindString": "Enumeration member", @@ -4391,7 +4391,7 @@ "defaultValue": "\"alert\"" }, { - "id": 1971, + "id": 1974, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -4419,7 +4419,7 @@ "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1958, + "id": 1961, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -4447,7 +4447,7 @@ "defaultValue": "\"answerDelete\"" }, { - "id": 1998, + "id": 2001, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -4487,7 +4487,7 @@ "defaultValue": "\"AskSageInit\"" }, { - "id": 1937, + "id": 1940, "name": "AuthExpire", "kind": 16, "kindString": "Enumeration member", @@ -4515,7 +4515,7 @@ "defaultValue": "\"ThoughtspotAuthExpired\"" }, { - "id": 1925, + "id": 1928, "name": "AuthInit", "kind": 16, "kindString": "Enumeration member", @@ -4547,7 +4547,7 @@ "defaultValue": "\"authInit\"" }, { - "id": 1982, + "id": 1985, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -4575,7 +4575,7 @@ "defaultValue": "\"cancel\"" }, { - "id": 1969, + "id": 1972, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -4603,7 +4603,7 @@ "defaultValue": "\"copyAEdit\"" }, { - "id": 1984, + "id": 1987, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -4631,7 +4631,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 1964, + "id": 1967, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -4659,7 +4659,7 @@ "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1992, + "id": 1995, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -4683,7 +4683,7 @@ "defaultValue": "\"createConnection\"" }, { - "id": 2003, + "id": 2006, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -4708,7 +4708,7 @@ "defaultValue": "\"createLiveboard\"" }, { - "id": 2004, + "id": 2007, "name": "CreateModel", "kind": 16, "kindString": "Enumeration member", @@ -4732,7 +4732,7 @@ "defaultValue": "\"createModel\"" }, { - "id": 1997, + "id": 2000, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -4756,7 +4756,7 @@ "defaultValue": "\"createWorksheet\"" }, { - "id": 1985, + "id": 1988, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4784,7 +4784,7 @@ "defaultValue": "\"cross-filter-changed\"" }, { - "id": 1932, + "id": 1935, "name": "CustomAction", "kind": 16, "kindString": "Enumeration member", @@ -4820,7 +4820,7 @@ "defaultValue": "\"customAction\"" }, { - "id": 1927, + "id": 1930, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -4856,7 +4856,7 @@ "defaultValue": "\"data\"" }, { - "id": 1930, + "id": 1933, "name": "DataSourceSelected", "kind": 16, "kindString": "Enumeration member", @@ -4888,7 +4888,7 @@ "defaultValue": "\"dataSourceSelected\"" }, { - "id": 1980, + "id": 1983, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -4916,7 +4916,7 @@ "defaultValue": "\"delete\"" }, { - "id": 1996, + "id": 1999, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -4948,7 +4948,7 @@ "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 1949, + "id": 1952, "name": "DialogClose", "kind": 16, "kindString": "Enumeration member", @@ -4976,7 +4976,7 @@ "defaultValue": "\"dialog-close\"" }, { - "id": 1948, + "id": 1951, "name": "DialogOpen", "kind": 16, "kindString": "Enumeration member", @@ -5004,7 +5004,7 @@ "defaultValue": "\"dialog-open\"" }, { - "id": 1953, + "id": 1956, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -5033,7 +5033,7 @@ "defaultValue": "\"download\"" }, { - "id": 1956, + "id": 1959, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -5061,7 +5061,7 @@ "defaultValue": "\"downloadAsCsv\"" }, { - "id": 1955, + "id": 1958, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -5089,7 +5089,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1954, + "id": 1957, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -5117,7 +5117,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 1957, + "id": 1960, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -5145,7 +5145,7 @@ "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 1963, + "id": 1966, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -5173,7 +5173,7 @@ "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1962, + "id": 1965, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -5201,7 +5201,7 @@ "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1929, + "id": 1932, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -5245,7 +5245,7 @@ "defaultValue": "\"drillDown\"" }, { - "id": 1977, + "id": 1980, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -5273,7 +5273,7 @@ "defaultValue": "\"edit\"" }, { - "id": 1966, + "id": 1969, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -5301,7 +5301,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 1935, + "id": 1938, "name": "Error", "kind": 16, "kindString": "Enumeration member", @@ -5338,7 +5338,7 @@ "defaultValue": "\"Error\"" }, { - "id": 1983, + "id": 1986, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -5366,7 +5366,7 @@ "defaultValue": "\"explore\"" }, { - "id": 1967, + "id": 1970, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -5394,7 +5394,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 1988, + "id": 1991, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5418,7 +5418,7 @@ "defaultValue": "\"filterChanged\"" }, { - "id": 1943, + "id": 1946, "name": "GetDataClick", "kind": 16, "kindString": "Enumeration member", @@ -5446,7 +5446,7 @@ "defaultValue": "\"getDataClick\"" }, { - "id": 1924, + "id": 1927, "name": "Init", "kind": 16, "kindString": "Enumeration member", @@ -5474,7 +5474,7 @@ "defaultValue": "\"init\"" }, { - "id": 2011, + "id": 2014, "name": "LastPromptDeleted", "kind": 16, "kindString": "Enumeration member", @@ -5502,7 +5502,7 @@ "defaultValue": "\"LastPromptDeleted\"" }, { - "id": 2010, + "id": 2013, "name": "LastPromptEdited", "kind": 16, "kindString": "Enumeration member", @@ -5530,7 +5530,7 @@ "defaultValue": "\"LastPromptEdited\"" }, { - "id": 1974, + "id": 1977, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -5558,7 +5558,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 1950, + "id": 1953, "name": "LiveboardRendered", "kind": 16, "kindString": "Enumeration member", @@ -5590,7 +5590,7 @@ "defaultValue": "\"PinboardRendered\"" }, { - "id": 1926, + "id": 1929, "name": "Load", "kind": 16, "kindString": "Enumeration member", @@ -5622,7 +5622,7 @@ "defaultValue": "\"load\"" }, { - "id": 1978, + "id": 1981, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -5650,7 +5650,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 1946, + "id": 1949, "name": "NoCookieAccess", "kind": 16, "kindString": "Enumeration member", @@ -5678,7 +5678,7 @@ "defaultValue": "\"noCookieAccess\"" }, { - "id": 2000, + "id": 2003, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", @@ -5715,7 +5715,7 @@ "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 2015, + "id": 2018, "name": "OrgSwitched", "kind": 16, "kindString": "Enumeration member", @@ -5743,7 +5743,7 @@ "defaultValue": "\"orgSwitched\"" }, { - "id": 2001, + "id": 2004, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5767,7 +5767,7 @@ "defaultValue": "\"parameterChanged\"" }, { - "id": 1959, + "id": 1962, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -5795,7 +5795,7 @@ "defaultValue": "\"pin\"" }, { - "id": 1979, + "id": 1982, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -5827,13 +5827,13 @@ "defaultValue": "\"present\"" }, { - "id": 2008, + "id": 2011, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Emitted when user opens up the worksheet preview modal in Spotter embed.", + "shortText": "Emitted when user opens up the data source preview modal in Spotter embed.", "tags": [ { "tag": "example", @@ -5855,7 +5855,7 @@ "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 1928, + "id": 1931, "name": "QueryChanged", "kind": 16, "kindString": "Enumeration member", @@ -5883,7 +5883,7 @@ "defaultValue": "\"queryChanged\"" }, { - "id": 1999, + "id": 2002, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -5907,7 +5907,7 @@ "defaultValue": "\"rename\"" }, { - "id": 1995, + "id": 1998, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -5947,7 +5947,7 @@ "defaultValue": "\"resetLiveboard\"" }, { - "id": 2012, + "id": 2015, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -5975,7 +5975,7 @@ "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 1944, + "id": 1947, "name": "RouteChange", "kind": 16, "kindString": "Enumeration member", @@ -6003,7 +6003,7 @@ "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 1989, + "id": 1992, "name": "SageEmbedQuery", "kind": 16, "kindString": "Enumeration member", @@ -6027,7 +6027,7 @@ "defaultValue": "\"sageEmbedQuery\"" }, { - "id": 1990, + "id": 1993, "name": "SageWorksheetUpdated", "kind": 16, "kindString": "Enumeration member", @@ -6051,7 +6051,7 @@ "defaultValue": "\"sageWorksheetUpdated\"" }, { - "id": 1952, + "id": 1955, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -6079,7 +6079,7 @@ "defaultValue": "\"save\"" }, { - "id": 1968, + "id": 1971, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -6107,7 +6107,7 @@ "defaultValue": "\"saveAsView\"" }, { - "id": 1994, + "id": 1997, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6147,7 +6147,7 @@ "defaultValue": "\"savePersonalisedView\"" }, { - "id": 1976, + "id": 1979, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -6175,7 +6175,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 1981, + "id": 1984, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -6203,7 +6203,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 1961, + "id": 1964, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -6231,7 +6231,7 @@ "defaultValue": "\"share\"" }, { - "id": 1970, + "id": 1973, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -6259,7 +6259,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1960, + "id": 1963, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -6287,7 +6287,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2007, + "id": 2010, "name": "SpotterData", "kind": 16, "kindString": "Enumeration member", @@ -6315,7 +6315,7 @@ "defaultValue": "\"SpotterData\"" }, { - "id": 2013, + "id": 2016, "name": "SpotterInit", "kind": 16, "kindString": "Enumeration member", @@ -6343,7 +6343,7 @@ "defaultValue": "\"spotterInit\"" }, { - "id": 2009, + "id": 2012, "name": "SpotterQueryTriggered", "kind": 16, "kindString": "Enumeration member", @@ -6371,14 +6371,14 @@ "defaultValue": "\"SpotterQueryTriggered\"" }, { - "id": 2002, + "id": 2005, "name": "TableVizRendered", "kind": 16, "kindString": "Enumeration member", "flags": {}, "comment": { "shortText": "Emits when a table visualization is rendered in\nthe ThoughtSpot embedded app.", - "text": "You can also use this event as a hook to trigger host events\nsuch as `HostEvent.TransformTableVizData` on the table visualization.\nThe event payload contains the data used in the rendered table.\nYou can extract the relevant data from the payload\nstored in `payload.data.data.columnDataLite`.\n\n`columnDataLite` is a multidimensional array that contains\ndata values for each column, which was used in the query to\ngenerate the table visualization. To find and modify specific cell data,\nyou can either loop through the array or directly access a cell if\nyou know its position and data index.\n\nIn the following code sample, the first cell in the first column\n(`columnDataLite[0].dataValue[0]`) is set to `new fob`.\nNote that any changes made to the data in the payload will only update the\nvisual presentation and do not affect the underlying data.\nTo persist data value modifications after a reload or during chart\ninteractions such as drill down, ensure that the modified\npayload in the `columnDataLite` is passed on to\n`HostEvent.TransformTableVizData` and trigger an update to\nthe table visualization.\n\nIf the Row-Level Security (RLS) rules are applied on the\nWorksheet or Model, exercise caution when changing column\nor table cell values to maintain data security.\n", + "text": "You can also use this event as a hook to trigger host events\nsuch as `HostEvent.TransformTableVizData` on the table visualization.\nThe event payload contains the data used in the rendered table.\nYou can extract the relevant data from the payload\nstored in `payload.data.data.columnDataLite`.\n\n`columnDataLite` is a multidimensional array that contains\ndata values for each column, which was used in the query to\ngenerate the table visualization. To find and modify specific cell data,\nyou can either loop through the array or directly access a cell if\nyou know its position and data index.\n\nIn the following code sample, the first cell in the first column\n(`columnDataLite[0].dataValue[0]`) is set to `new fob`.\nNote that any changes made to the data in the payload will only update the\nvisual presentation and do not affect the underlying data.\nTo persist data value modifications after a reload or during chart\ninteractions such as drill down, ensure that the modified\npayload in the `columnDataLite` is passed on to\n`HostEvent.TransformTableVizData` and trigger an update to\nthe table visualization.\n\nIf the Row-Level Security (RLS) rules are applied on the\nModel, exercise caution when changing column\nor table cell values to maintain data security.\n", "tags": [ { "tag": "example", @@ -6400,7 +6400,7 @@ "defaultValue": "\"TableVizRendered\"" }, { - "id": 1991, + "id": 1994, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -6424,7 +6424,7 @@ "defaultValue": "\"updateConnection\"" }, { - "id": 1993, + "id": 1996, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6464,7 +6464,7 @@ "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 1965, + "id": 1968, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -6492,7 +6492,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 1934, + "id": 1937, "name": "VizPointClick", "kind": 16, "kindString": "Enumeration member", @@ -6528,7 +6528,7 @@ "defaultValue": "\"vizPointClick\"" }, { - "id": 1933, + "id": 1936, "name": "VizPointDoubleClick", "kind": 16, "kindString": "Enumeration member", @@ -6560,7 +6560,7 @@ "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 1986, + "id": 1989, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -6593,85 +6593,85 @@ "title": "Enumeration members", "kind": 16, "children": [ + 1954, + 1934, + 1978, + 1939, + 1974, + 1961, + 2001, + 1940, + 1928, + 1985, + 1972, + 1987, + 1967, + 1995, + 2006, + 2007, + 2000, + 1988, + 1935, + 1930, + 1933, + 1983, + 1999, + 1952, 1951, - 1931, - 1975, - 1936, - 1971, + 1956, + 1959, 1958, - 1998, - 1937, - 1925, - 1982, - 1969, - 1984, - 1964, - 1992, - 2003, - 2004, - 1997, - 1985, + 1957, + 1960, + 1966, + 1965, 1932, - 1927, - 1930, 1980, - 1996, - 1949, - 1948, + 1969, + 1938, + 1986, + 1970, + 1991, + 1946, + 1927, + 2014, + 2013, + 1977, 1953, - 1956, - 1955, - 1954, - 1957, - 1963, - 1962, 1929, - 1977, - 1966, - 1935, - 1983, - 1967, - 1988, - 1943, - 1924, + 1981, + 1949, + 2003, + 2018, + 2004, + 1962, + 1982, 2011, - 2010, - 1974, - 1950, - 1926, - 1978, - 1946, - 2000, + 1931, + 2002, + 1998, 2015, - 2001, - 1959, + 1947, + 1992, + 1993, + 1955, + 1971, + 1997, 1979, - 2008, - 1928, - 1999, - 1995, + 1984, + 1964, + 1973, + 1963, + 2010, + 2016, 2012, - 1944, - 1989, - 1990, - 1952, - 1968, + 2005, 1994, - 1976, - 1981, - 1961, - 1970, - 1960, - 2007, - 2013, - 2009, - 2002, - 1991, - 1993, - 1965, - 1934, - 1933, - 1986 + 1996, + 1968, + 1937, + 1936, + 1989 ] } ], @@ -6684,7 +6684,7 @@ ] }, { - "id": 2596, + "id": 2599, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -6694,7 +6694,7 @@ }, "children": [ { - "id": 2600, + "id": 2603, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -6717,7 +6717,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2604, + "id": 2607, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6741,7 +6741,7 @@ "defaultValue": "\"create\"" }, { - "id": 2606, + "id": 2609, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -6765,7 +6765,7 @@ "defaultValue": "\"favorites\"" }, { - "id": 2598, + "id": 2601, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6788,7 +6788,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2603, + "id": 2606, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6811,7 +6811,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2599, + "id": 2602, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6834,7 +6834,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2601, + "id": 2604, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6857,7 +6857,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2597, + "id": 2600, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6880,7 +6880,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2602, + "id": 2605, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6903,7 +6903,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2605, + "id": 2608, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -6932,16 +6932,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2600, - 2604, - 2606, - 2598, 2603, - 2599, + 2607, + 2609, 2601, - 2597, + 2606, 2602, - 2605 + 2604, + 2600, + 2605, + 2608 ] } ], @@ -6954,7 +6954,7 @@ ] }, { - "id": 2846, + "id": 2849, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -6970,7 +6970,7 @@ }, "children": [ { - "id": 2847, + "id": 2850, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -6988,7 +6988,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2848, + "id": 2851, "name": "ModularWithStylingChanges", "kind": 16, "kindString": "Enumeration member", @@ -7011,8 +7011,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2847, - 2848 + 2850, + 2851 ] } ], @@ -7025,14 +7025,14 @@ ] }, { - "id": 2840, + "id": 2843, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2842, + "id": 2845, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -7047,7 +7047,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2843, + "id": 2846, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -7062,7 +7062,7 @@ "defaultValue": "\"none\"" }, { - "id": 2841, + "id": 2844, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -7082,9 +7082,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2842, - 2843, - 2841 + 2845, + 2846, + 2844 ] } ], @@ -7097,7 +7097,7 @@ ] }, { - "id": 2607, + "id": 2610, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -7113,7 +7113,7 @@ }, "children": [ { - "id": 2610, + "id": 2613, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -7131,7 +7131,7 @@ "defaultValue": "\"FAVORITE\"" }, { - "id": 2613, + "id": 2616, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -7149,7 +7149,7 @@ "defaultValue": "\"LEARNING\"" }, { - "id": 2611, + "id": 2614, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -7167,7 +7167,7 @@ "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2608, + "id": 2611, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7185,7 +7185,7 @@ "defaultValue": "\"SEARCH\"" }, { - "id": 2612, + "id": 2615, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -7203,7 +7203,7 @@ "defaultValue": "\"TRENDING\"" }, { - "id": 2609, + "id": 2612, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -7226,12 +7226,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2610, 2613, + 2616, + 2614, 2611, - 2608, - 2612, - 2609 + 2615, + 2612 ] } ], @@ -7244,7 +7244,7 @@ ] }, { - "id": 2016, + "id": 2019, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -7273,7 +7273,7 @@ }, "children": [ { - "id": 2027, + "id": 2030, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -7299,14 +7299,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3208, + "line": 3206, "character": 4 } ], "defaultValue": "\"addColumns\"" }, { - "id": 2082, + "id": 2085, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -7332,14 +7332,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4206, + "line": 4204, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2067, + "id": 2070, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -7360,14 +7360,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4013, + "line": 4011, "character": 4 } ], "defaultValue": "\"AskSage\"" }, { - "id": 2085, + "id": 2088, "name": "AskSpotter", "kind": 16, "kindString": "Enumeration member", @@ -7393,14 +7393,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4240, + "line": 4238, "character": 4 } ], "defaultValue": "\"AskSpotter\"" }, { - "id": 2044, + "id": 2047, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -7426,14 +7426,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3522, + "line": 3520, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2041, + "id": 2044, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -7463,14 +7463,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3452, + "line": 3450, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2048, + "id": 2051, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -7496,14 +7496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3599, + "line": 3597, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2081, + "id": 2084, "name": "DeleteLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -7524,14 +7524,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4194, + "line": 4192, "character": 4 } ], "defaultValue": "\"DeleteLastPrompt\"" }, { - "id": 2050, + "id": 2053, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -7561,14 +7561,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3641, + "line": 3639, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2052, + "id": 2055, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -7594,14 +7594,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3684, + "line": 3682, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2037, + "id": 2040, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -7631,14 +7631,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3382, + "line": 3380, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2051, + "id": 2054, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -7659,14 +7659,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3661, + "line": 3659, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2053, + "id": 2056, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -7692,14 +7692,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3707, + "line": 3705, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2018, + "id": 2021, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -7756,7 +7756,7 @@ "defaultValue": "\"triggerDrillDown\"" }, { - "id": 2043, + "id": 2046, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -7796,14 +7796,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3505, + "line": 3503, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2078, + "id": 2081, "name": "EditLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -7829,14 +7829,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4167, + "line": 4165, "character": 4 } ], "defaultValue": "\"EditLastPrompt\"" }, { - "id": 2035, + "id": 2038, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -7857,14 +7857,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3351, + "line": 3349, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2040, + "id": 2043, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -7890,14 +7890,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3435, + "line": 3433, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2034, + "id": 2037, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -7918,14 +7918,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3341, + "line": 3339, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2066, + "id": 2069, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -7951,14 +7951,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4003, + "line": 4001, "character": 4 } ], "defaultValue": "\"getAnswerSession\"" }, { - "id": 2060, + "id": 2063, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -7979,20 +7979,20 @@ "sources": [ { "fileName": "types.ts", - "line": 3830, + "line": 3828, "character": 4 } ], "defaultValue": "\"getFilters\"" }, { - "id": 2021, + "id": 2024, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Get iframe URL for the current embed view on the playground.\nDevelopers can use this URL to embed a ThoughtSpot object\nin apps like Salesforce or Sharepoint.", + "shortText": "Get iframe URL for the current embed view.", "tags": [ { "tag": "example", @@ -8007,14 +8007,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3105, + "line": 3103, "character": 4 } ], "defaultValue": "\"GetIframeUrl\"" }, { - "id": 2071, + "id": 2074, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -8036,14 +8036,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4070, + "line": 4068, "character": 4 } ], "defaultValue": "\"GetParameters\"" }, { - "id": 2046, + "id": 2049, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -8072,14 +8072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3563, + "line": 3561, "character": 4 } ], "defaultValue": "\"getTML\"" }, { - "id": 2062, + "id": 2065, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -8100,14 +8100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3933, + "line": 3931, "character": 4 } ], "defaultValue": "\"getTabs\"" }, { - "id": 2031, + "id": 2034, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -8128,14 +8128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3313, + "line": 3311, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2038, + "id": 2041, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -8172,14 +8172,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3411, + "line": 3409, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2042, + "id": 2045, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -8213,14 +8213,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3473, + "line": 3471, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2058, + "id": 2061, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -8246,14 +8246,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3807, + "line": 3805, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2025, + "id": 2028, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -8279,14 +8279,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3178, + "line": 3176, "character": 4 } ], "defaultValue": "\"Navigate\"" }, { - "id": 2026, + "id": 2029, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -8316,14 +8316,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3198, + "line": 3196, "character": 4 } ], "defaultValue": "\"openFilter\"" }, { - "id": 2030, + "id": 2033, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -8384,14 +8384,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3303, + "line": 3301, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2045, + "id": 2048, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -8417,20 +8417,20 @@ "sources": [ { "fileName": "types.ts", - "line": 3539, + "line": 3537, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2079, + "id": 2082, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Opens the Worksheet preview modal in Spotter Embed.", + "shortText": "Opens the data source preview modal in Spotter Embed.", "tags": [ { "tag": "example", @@ -8445,14 +8445,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4176, + "line": 4174, "character": 4 } ], "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 2039, + "id": 2042, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -8477,14 +8477,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3425, + "line": 3423, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2028, + "id": 2031, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -8510,14 +8510,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3218, + "line": 3216, "character": 4 } ], "defaultValue": "\"removeColumn\"" }, { - "id": 2069, + "id": 2072, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8538,14 +8538,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4038, + "line": 4036, "character": 4 } ], "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 2059, + "id": 2062, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -8566,14 +8566,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3819, + "line": 3817, "character": 4 } ], "defaultValue": "\"resetSearch\"" }, { - "id": 2080, + "id": 2083, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -8594,14 +8594,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4185, + "line": 4183, "character": 4 } ], "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 2055, + "id": 2058, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -8627,14 +8627,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3760, + "line": 3758, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2074, + "id": 2077, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -8669,14 +8669,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4117, + "line": 4115, "character": 4 } ], "defaultValue": "\"saveAnswer\"" }, { - "id": 2032, + "id": 2035, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -8697,14 +8697,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3322, + "line": 3320, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2033, + "id": 2036, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -8725,14 +8725,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3331, + "line": 3329, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2017, + "id": 2020, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -8771,7 +8771,7 @@ "defaultValue": "\"search\"" }, { - "id": 2023, + "id": 2026, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -8797,14 +8797,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3130, + "line": 3128, "character": 4 } ], "defaultValue": "\"SetActiveTab\"" }, { - "id": 2064, + "id": 2067, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -8830,14 +8830,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3959, + "line": 3957, "character": 4 } ], "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 2063, + "id": 2066, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -8863,14 +8863,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3946, + "line": 3944, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 2022, + "id": 2025, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -8896,14 +8896,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3118, + "line": 3116, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 2054, + "id": 2057, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8924,14 +8924,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3720, + "line": 3718, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2047, + "id": 2050, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -8957,14 +8957,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3582, + "line": 3580, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2049, + "id": 2052, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -8990,14 +8990,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3619, + "line": 3617, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2077, + "id": 2080, "name": "SpotterSearch", "kind": 16, "kindString": "Enumeration member", @@ -9028,14 +9028,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4157, + "line": 4155, "character": 4 } ], "defaultValue": "\"SpotterSearch\"" }, { - "id": 2057, + "id": 2060, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -9061,14 +9061,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3791, + "line": 3789, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2056, + "id": 2059, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -9094,14 +9094,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3775, + "line": 3773, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2076, + "id": 2079, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -9127,14 +9127,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4142, + "line": 4140, "character": 4 } ], "defaultValue": "\"TransformTableVizData\"" }, { - "id": 2068, + "id": 2071, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -9155,14 +9155,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4029, + "line": 4027, "character": 4 } ], "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 2061, + "id": 2064, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -9205,14 +9205,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3920, + "line": 3918, "character": 4 } ], "defaultValue": "\"updateFilters\"" }, { - "id": 2070, + "id": 2073, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -9229,14 +9229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4052, + "line": 4050, "character": 4 } ], "defaultValue": "\"UpdateParameters\"" }, { - "id": 2072, + "id": 2075, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -9253,14 +9253,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4078, + "line": 4076, "character": 4 } ], "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 2024, + "id": 2027, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -9291,14 +9291,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3166, + "line": 3164, "character": 4 } ], "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 2065, + "id": 2068, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -9329,14 +9329,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3973, + "line": 3971, "character": 4 } ], "defaultValue": "\"updateSageQuery\"" }, { - "id": 2036, + "id": 2039, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -9357,14 +9357,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3360, + "line": 3358, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2029, + "id": 2032, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -9385,7 +9385,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3234, + "line": 3232, "character": 4 } ], @@ -9397,69 +9397,69 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2027, - 2082, - 2067, + 2030, 2085, + 2070, + 2088, + 2047, 2044, - 2041, - 2048, - 2081, - 2050, - 2052, - 2037, 2051, + 2084, 2053, - 2018, - 2043, - 2078, - 2035, + 2055, 2040, - 2034, - 2066, - 2060, + 2054, + 2056, 2021, - 2071, 2046, - 2062, - 2031, + 2081, 2038, - 2042, - 2058, - 2025, - 2026, - 2030, - 2045, - 2079, - 2039, - 2028, + 2043, + 2037, 2069, - 2059, - 2080, - 2055, - 2074, - 2032, - 2033, - 2017, - 2023, - 2064, 2063, - 2022, - 2054, - 2047, + 2024, + 2074, 2049, - 2077, - 2057, - 2056, - 2076, - 2068, + 2065, + 2034, + 2041, + 2045, 2061, - 2070, + 2028, + 2029, + 2033, + 2048, + 2082, + 2042, + 2031, 2072, - 2024, - 2065, + 2062, + 2083, + 2058, + 2077, + 2035, 2036, - 2029 + 2020, + 2026, + 2067, + 2066, + 2025, + 2057, + 2050, + 2052, + 2080, + 2060, + 2059, + 2079, + 2071, + 2064, + 2073, + 2075, + 2027, + 2068, + 2039, + 2032 ] } ], @@ -9472,7 +9472,7 @@ ] }, { - "id": 2849, + "id": 2852, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -9488,7 +9488,7 @@ }, "children": [ { - "id": 2850, + "id": 2853, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -9506,7 +9506,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2851, + "id": 2854, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -9529,8 +9529,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2850, - 2851 + 2853, + 2854 ] } ], @@ -9543,7 +9543,7 @@ ] }, { - "id": 2882, + "id": 2885, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -9559,7 +9559,7 @@ }, "children": [ { - "id": 2885, + "id": 2888, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -9577,7 +9577,7 @@ "defaultValue": "\"AUTHOR\"" }, { - "id": 2886, + "id": 2889, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -9595,7 +9595,7 @@ "defaultValue": "\"DATE_SORT\"" }, { - "id": 2883, + "id": 2886, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -9613,7 +9613,7 @@ "defaultValue": "\"FAVOURITE\"" }, { - "id": 2887, + "id": 2890, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -9631,7 +9631,7 @@ "defaultValue": "\"SHARE\"" }, { - "id": 2884, + "id": 2887, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -9654,11 +9654,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2885, + 2888, + 2889, 2886, - 2883, - 2887, - 2884 + 2890, + 2887 ] } ], @@ -9671,7 +9671,7 @@ ] }, { - "id": 2817, + "id": 2820, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -9681,7 +9681,7 @@ }, "children": [ { - "id": 2822, + "id": 2825, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -9702,14 +9702,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5918, + "line": 5916, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2819, + "id": 2822, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -9730,14 +9730,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5879, + "line": 5877, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2821, + "id": 2824, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -9758,14 +9758,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5904, + "line": 5902, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2818, + "id": 2821, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -9786,14 +9786,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5867, + "line": 5865, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2823, + "id": 2826, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -9814,14 +9814,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5930, + "line": 5928, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2820, + "id": 2823, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -9842,7 +9842,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5891, + "line": 5889, "character": 4 } ], @@ -9854,25 +9854,25 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2825, 2822, - 2819, + 2824, 2821, - 2818, - 2823, - 2820 + 2826, + 2823 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5854, + "line": 5852, "character": 12 } ] }, { - "id": 1882, + "id": 1885, "name": "Page", "kind": 4, "kindString": "Enumeration", @@ -9882,7 +9882,7 @@ }, "children": [ { - "id": 1885, + "id": 1888, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -9900,7 +9900,7 @@ "defaultValue": "\"answers\"" }, { - "id": 1888, + "id": 1891, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -9918,7 +9918,7 @@ "defaultValue": "\"data\"" }, { - "id": 1883, + "id": 1886, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -9936,7 +9936,7 @@ "defaultValue": "\"home\"" }, { - "id": 1886, + "id": 1889, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -9954,7 +9954,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 1890, + "id": 1893, "name": "Monitor", "kind": 16, "kindString": "Enumeration member", @@ -9972,7 +9972,7 @@ "defaultValue": "\"monitor\"" }, { - "id": 1884, + "id": 1887, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -9990,7 +9990,7 @@ "defaultValue": "\"search\"" }, { - "id": 1889, + "id": 1892, "name": "SpotIQ", "kind": 16, "kindString": "Enumeration member", @@ -10013,13 +10013,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1885, 1888, - 1883, + 1891, 1886, - 1890, - 1884, - 1889 + 1889, + 1893, + 1887, + 1892 ] } ], @@ -10032,14 +10032,14 @@ ] }, { - "id": 2585, + "id": 2588, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2586, + "id": 2589, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -10047,14 +10047,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5745, + "line": 5743, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2588, + "id": 2591, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10062,14 +10062,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5747, + "line": 5745, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2587, + "id": 2590, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10077,14 +10077,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5746, + "line": 5744, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2589, + "id": 2592, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10092,7 +10092,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5748, + "line": 5746, "character": 4 } ], @@ -10104,23 +10104,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2586, - 2588, - 2587, - 2589 + 2589, + 2591, + 2590, + 2592 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5744, + "line": 5742, "character": 12 } ] }, { - "id": 2844, + "id": 2847, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -10136,7 +10136,7 @@ }, "children": [ { - "id": 2845, + "id": 2848, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -10159,7 +10159,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2845 + 2848 ] } ], @@ -10172,7 +10172,7 @@ ] }, { - "id": 1907, + "id": 1910, "name": "RuntimeFilterOp", "kind": 4, "kindString": "Enumeration", @@ -10182,7 +10182,7 @@ }, "children": [ { - "id": 1915, + "id": 1918, "name": "BEGINS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -10200,7 +10200,7 @@ "defaultValue": "\"BEGINS_WITH\"" }, { - "id": 1920, + "id": 1923, "name": "BW", "kind": 16, "kindString": "Enumeration member", @@ -10218,7 +10218,7 @@ "defaultValue": "\"BW\"" }, { - "id": 1919, + "id": 1922, "name": "BW_INC", "kind": 16, "kindString": "Enumeration member", @@ -10236,7 +10236,7 @@ "defaultValue": "\"BW_INC\"" }, { - "id": 1917, + "id": 1920, "name": "BW_INC_MAX", "kind": 16, "kindString": "Enumeration member", @@ -10254,7 +10254,7 @@ "defaultValue": "\"BW_INC_MAX\"" }, { - "id": 1918, + "id": 1921, "name": "BW_INC_MIN", "kind": 16, "kindString": "Enumeration member", @@ -10272,7 +10272,7 @@ "defaultValue": "\"BW_INC_MIN\"" }, { - "id": 1914, + "id": 1917, "name": "CONTAINS", "kind": 16, "kindString": "Enumeration member", @@ -10290,7 +10290,7 @@ "defaultValue": "\"CONTAINS\"" }, { - "id": 1916, + "id": 1919, "name": "ENDS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -10308,7 +10308,7 @@ "defaultValue": "\"ENDS_WITH\"" }, { - "id": 1908, + "id": 1911, "name": "EQ", "kind": 16, "kindString": "Enumeration member", @@ -10326,7 +10326,7 @@ "defaultValue": "\"EQ\"" }, { - "id": 1913, + "id": 1916, "name": "GE", "kind": 16, "kindString": "Enumeration member", @@ -10344,7 +10344,7 @@ "defaultValue": "\"GE\"" }, { - "id": 1912, + "id": 1915, "name": "GT", "kind": 16, "kindString": "Enumeration member", @@ -10362,7 +10362,7 @@ "defaultValue": "\"GT\"" }, { - "id": 1921, + "id": 1924, "name": "IN", "kind": 16, "kindString": "Enumeration member", @@ -10380,7 +10380,7 @@ "defaultValue": "\"IN\"" }, { - "id": 1911, + "id": 1914, "name": "LE", "kind": 16, "kindString": "Enumeration member", @@ -10398,7 +10398,7 @@ "defaultValue": "\"LE\"" }, { - "id": 1910, + "id": 1913, "name": "LT", "kind": 16, "kindString": "Enumeration member", @@ -10416,7 +10416,7 @@ "defaultValue": "\"LT\"" }, { - "id": 1909, + "id": 1912, "name": "NE", "kind": 16, "kindString": "Enumeration member", @@ -10434,7 +10434,7 @@ "defaultValue": "\"NE\"" }, { - "id": 1922, + "id": 1925, "name": "NOT_IN", "kind": 16, "kindString": "Enumeration member", @@ -10457,21 +10457,21 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1915, + 1918, + 1923, + 1922, 1920, - 1919, + 1921, 1917, - 1918, - 1914, + 1919, + 1911, 1916, - 1908, + 1915, + 1924, + 1914, 1913, 1912, - 1921, - 1911, - 1910, - 1909, - 1922 + 1925 ] } ], @@ -10484,14 +10484,14 @@ ] }, { - "id": 2875, + "id": 2878, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2880, + "id": 2883, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -10506,7 +10506,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2879, + "id": 2882, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -10521,7 +10521,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2878, + "id": 2881, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -10536,7 +10536,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2881, + "id": 2884, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -10551,7 +10551,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2876, + "id": 2879, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -10566,7 +10566,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2877, + "id": 2880, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -10586,12 +10586,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2880, - 2879, - 2878, + 2883, + 2882, 2881, - 2876, - 2877 + 2884, + 2879, + 2880 ] } ], @@ -10604,7 +10604,7 @@ ] }, { - "id": 1799, + "id": 1802, "name": "AnswerService", "kind": 128, "kindString": "Class", @@ -10633,7 +10633,7 @@ }, "children": [ { - "id": 1800, + "id": 1803, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -10650,7 +10650,7 @@ ], "signatures": [ { - "id": 1801, + "id": 1804, "name": "new AnswerService", "kind": 16384, "kindString": "Constructor signature", @@ -10660,7 +10660,7 @@ }, "parameters": [ { - "id": 1802, + "id": 1805, "name": "session", "kind": 32768, "kindString": "Parameter", @@ -10668,12 +10668,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1872, + "id": 1875, "name": "SessionInterface" } }, { - "id": 1803, + "id": 1806, "name": "answer", "kind": 32768, "kindString": "Parameter", @@ -10685,7 +10685,7 @@ } }, { - "id": 1804, + "id": 1807, "name": "thoughtSpotHost", "kind": 32768, "kindString": "Parameter", @@ -10697,7 +10697,7 @@ } }, { - "id": 1805, + "id": 1808, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -10711,7 +10711,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2852, + "id": 2855, "name": "VizPoint" } } @@ -10719,14 +10719,14 @@ ], "type": { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } } ] }, { - "id": 1814, + "id": 1817, "name": "addColumns", "kind": 2048, "kindString": "Method", @@ -10742,7 +10742,7 @@ ], "signatures": [ { - "id": 1815, + "id": 1818, "name": "addColumns", "kind": 4096, "kindString": "Call signature", @@ -10753,7 +10753,7 @@ }, "parameters": [ { - "id": 1816, + "id": 1819, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -10782,7 +10782,7 @@ ] }, { - "id": 1817, + "id": 1820, "name": "addColumnsByName", "kind": 2048, "kindString": "Method", @@ -10798,7 +10798,7 @@ ], "signatures": [ { - "id": 1818, + "id": 1821, "name": "addColumnsByName", "kind": 4096, "kindString": "Call signature", @@ -10814,7 +10814,7 @@ }, "parameters": [ { - "id": 1819, + "id": 1822, "name": "columnNames", "kind": 32768, "kindString": "Parameter", @@ -10843,7 +10843,7 @@ ] }, { - "id": 1866, + "id": 1869, "name": "addDisplayedVizToLiveboard", "kind": 2048, "kindString": "Method", @@ -10859,14 +10859,14 @@ ], "signatures": [ { - "id": 1867, + "id": 1870, "name": "addDisplayedVizToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1868, + "id": 1871, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -10891,7 +10891,7 @@ ] }, { - "id": 1820, + "id": 1823, "name": "addFilter", "kind": 2048, "kindString": "Method", @@ -10907,7 +10907,7 @@ ], "signatures": [ { - "id": 1821, + "id": 1824, "name": "addFilter", "kind": 4096, "kindString": "Call signature", @@ -10918,7 +10918,7 @@ }, "parameters": [ { - "id": 1822, + "id": 1825, "name": "columnName", "kind": 32768, "kindString": "Parameter", @@ -10930,7 +10930,7 @@ } }, { - "id": 1823, + "id": 1826, "name": "operator", "kind": 32768, "kindString": "Parameter", @@ -10938,12 +10938,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1907, + "id": 1910, "name": "RuntimeFilterOp" } }, { - "id": 1824, + "id": 1827, "name": "values", "kind": 32768, "kindString": "Parameter", @@ -10989,7 +10989,7 @@ ] }, { - "id": 1856, + "id": 1859, "name": "executeQuery", "kind": 2048, "kindString": "Method", @@ -11005,7 +11005,7 @@ ], "signatures": [ { - "id": 1857, + "id": 1860, "name": "executeQuery", "kind": 4096, "kindString": "Call signature", @@ -11016,7 +11016,7 @@ }, "parameters": [ { - "id": 1858, + "id": 1861, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -11030,7 +11030,7 @@ } }, { - "id": 1859, + "id": 1862, "name": "variables", "kind": 32768, "kindString": "Parameter", @@ -11058,7 +11058,7 @@ ] }, { - "id": 1834, + "id": 1837, "name": "fetchCSVBlob", "kind": 2048, "kindString": "Method", @@ -11074,7 +11074,7 @@ ], "signatures": [ { - "id": 1835, + "id": 1838, "name": "fetchCSVBlob", "kind": 4096, "kindString": "Call signature", @@ -11085,7 +11085,7 @@ }, "parameters": [ { - "id": 1836, + "id": 1839, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11098,7 +11098,7 @@ "defaultValue": "'en-us'" }, { - "id": 1837, + "id": 1840, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -11127,7 +11127,7 @@ ] }, { - "id": 1827, + "id": 1830, "name": "fetchData", "kind": 2048, "kindString": "Method", @@ -11143,7 +11143,7 @@ ], "signatures": [ { - "id": 1828, + "id": 1831, "name": "fetchData", "kind": 4096, "kindString": "Call signature", @@ -11154,7 +11154,7 @@ }, "parameters": [ { - "id": 1829, + "id": 1832, "name": "offset", "kind": 32768, "kindString": "Parameter", @@ -11167,7 +11167,7 @@ "defaultValue": "0" }, { - "id": 1830, + "id": 1833, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -11186,14 +11186,14 @@ { "type": "reflection", "declaration": { - "id": 1831, + "id": 1834, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1832, + "id": 1835, "name": "columns", "kind": 1024, "kindString": "Property", @@ -11204,7 +11204,7 @@ } }, { - "id": 1833, + "id": 1836, "name": "data", "kind": 1024, "kindString": "Property", @@ -11220,8 +11220,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1832, - 1833 + 1835, + 1836 ] } ] @@ -11234,7 +11234,7 @@ ] }, { - "id": 1838, + "id": 1841, "name": "fetchPNGBlob", "kind": 2048, "kindString": "Method", @@ -11250,7 +11250,7 @@ ], "signatures": [ { - "id": 1839, + "id": 1842, "name": "fetchPNGBlob", "kind": 4096, "kindString": "Call signature", @@ -11261,7 +11261,7 @@ }, "parameters": [ { - "id": 1840, + "id": 1843, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11274,7 +11274,7 @@ "defaultValue": "'en-us'" }, { - "id": 1841, + "id": 1844, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -11289,7 +11289,7 @@ "defaultValue": "false" }, { - "id": 1842, + "id": 1845, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -11318,7 +11318,7 @@ ] }, { - "id": 1862, + "id": 1865, "name": "getAnswer", "kind": 2048, "kindString": "Method", @@ -11334,7 +11334,7 @@ ], "signatures": [ { - "id": 1863, + "id": 1866, "name": "getAnswer", "kind": 4096, "kindString": "Call signature", @@ -11353,7 +11353,7 @@ ] }, { - "id": 1843, + "id": 1846, "name": "getFetchCSVBlobUrl", "kind": 2048, "kindString": "Method", @@ -11369,7 +11369,7 @@ ], "signatures": [ { - "id": 1844, + "id": 1847, "name": "getFetchCSVBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -11380,7 +11380,7 @@ }, "parameters": [ { - "id": 1845, + "id": 1848, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11393,7 +11393,7 @@ "defaultValue": "'en-us'" }, { - "id": 1846, + "id": 1849, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -11414,7 +11414,7 @@ ] }, { - "id": 1847, + "id": 1850, "name": "getFetchPNGBlobUrl", "kind": 2048, "kindString": "Method", @@ -11430,7 +11430,7 @@ ], "signatures": [ { - "id": 1848, + "id": 1851, "name": "getFetchPNGBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -11440,7 +11440,7 @@ }, "parameters": [ { - "id": 1849, + "id": 1852, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11453,7 +11453,7 @@ "defaultValue": "'en-us'" }, { - "id": 1850, + "id": 1853, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -11466,7 +11466,7 @@ "defaultValue": "false" }, { - "id": 1851, + "id": 1854, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -11489,7 +11489,7 @@ ] }, { - "id": 1825, + "id": 1828, "name": "getSQLQuery", "kind": 2048, "kindString": "Method", @@ -11505,7 +11505,7 @@ ], "signatures": [ { - "id": 1826, + "id": 1829, "name": "getSQLQuery", "kind": 4096, "kindString": "Call signature", @@ -11524,7 +11524,7 @@ ] }, { - "id": 1860, + "id": 1863, "name": "getSession", "kind": 2048, "kindString": "Method", @@ -11540,7 +11540,7 @@ ], "signatures": [ { - "id": 1861, + "id": 1864, "name": "getSession", "kind": 4096, "kindString": "Call signature", @@ -11551,14 +11551,14 @@ }, "type": { "type": "reference", - "id": 1872, + "id": 1875, "name": "SessionInterface" } } ] }, { - "id": 1809, + "id": 1812, "name": "getSourceDetail", "kind": 2048, "kindString": "Method", @@ -11574,7 +11574,7 @@ ], "signatures": [ { - "id": 1810, + "id": 1813, "name": "getSourceDetail", "kind": 4096, "kindString": "Call signature", @@ -11596,7 +11596,7 @@ ] }, { - "id": 1864, + "id": 1867, "name": "getTML", "kind": 2048, "kindString": "Method", @@ -11612,7 +11612,7 @@ ], "signatures": [ { - "id": 1865, + "id": 1868, "name": "getTML", "kind": 4096, "kindString": "Call signature", @@ -11631,7 +11631,7 @@ ] }, { - "id": 1852, + "id": 1855, "name": "getUnderlyingDataForPoint", "kind": 2048, "kindString": "Method", @@ -11647,7 +11647,7 @@ ], "signatures": [ { - "id": 1853, + "id": 1856, "name": "getUnderlyingDataForPoint", "kind": 4096, "kindString": "Call signature", @@ -11667,7 +11667,7 @@ }, "parameters": [ { - "id": 1854, + "id": 1857, "name": "outputColumnNames", "kind": 32768, "kindString": "Parameter", @@ -11682,7 +11682,7 @@ } }, { - "id": 1855, + "id": 1858, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -11694,7 +11694,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1879, + "id": 1882, "name": "UnderlyingDataPoint" } } @@ -11705,7 +11705,7 @@ "typeArguments": [ { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } ], @@ -11715,7 +11715,7 @@ ] }, { - "id": 1811, + "id": 1814, "name": "removeColumns", "kind": 2048, "kindString": "Method", @@ -11731,7 +11731,7 @@ ], "signatures": [ { - "id": 1812, + "id": 1815, "name": "removeColumns", "kind": 4096, "kindString": "Call signature", @@ -11742,7 +11742,7 @@ }, "parameters": [ { - "id": 1813, + "id": 1816, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -11771,7 +11771,7 @@ ] }, { - "id": 1869, + "id": 1872, "name": "setTMLOverride", "kind": 2048, "kindString": "Method", @@ -11787,14 +11787,14 @@ ], "signatures": [ { - "id": 1870, + "id": 1873, "name": "setTMLOverride", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1871, + "id": 1874, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -11818,31 +11818,31 @@ "title": "Constructors", "kind": 512, "children": [ - 1800 + 1803 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1814, 1817, - 1866, 1820, - 1856, - 1834, - 1827, - 1838, - 1862, - 1843, - 1847, - 1825, - 1860, - 1809, - 1864, - 1852, - 1811, - 1869 + 1869, + 1823, + 1859, + 1837, + 1830, + 1841, + 1865, + 1846, + 1850, + 1828, + 1863, + 1812, + 1867, + 1855, + 1814, + 1872 ] } ], @@ -11855,7 +11855,7 @@ ] }, { - "id": 986, + "id": 989, "name": "AppEmbed", "kind": 128, "kindString": "Class", @@ -11871,7 +11871,7 @@ }, "children": [ { - "id": 987, + "id": 990, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -11885,40 +11885,40 @@ ], "signatures": [ { - "id": 988, + "id": 991, "name": "new AppEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 989, + "id": 992, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2614, + "id": 2617, "name": "DOMSelector" } }, { - "id": 990, + "id": 993, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2501, + "id": 2504, "name": "AppViewConfig" } } ], "type": { "type": "reference", - "id": 986, + "id": 989, "name": "AppEmbed" }, "overwrites": { @@ -11933,7 +11933,7 @@ } }, { - "id": 1024, + "id": 1027, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -11949,7 +11949,7 @@ ], "signatures": [ { - "id": 1025, + "id": 1028, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -11979,7 +11979,7 @@ } }, { - "id": 1193, + "id": 1196, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -11995,7 +11995,7 @@ ], "signatures": [ { - "id": 1194, + "id": 1197, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -12011,7 +12011,7 @@ }, "parameters": [ { - "id": 1195, + "id": 1198, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -12032,7 +12032,7 @@ "typeArguments": [ { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } ], @@ -12050,7 +12050,7 @@ } }, { - "id": 1001, + "id": 1004, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -12066,7 +12066,7 @@ ], "signatures": [ { - "id": 1002, + "id": 1005, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -12082,7 +12082,7 @@ ] }, { - "id": 1162, + "id": 1165, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -12098,7 +12098,7 @@ ], "signatures": [ { - "id": 1163, + "id": 1166, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -12119,7 +12119,7 @@ } }, { - "id": 1188, + "id": 1191, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -12135,7 +12135,7 @@ ], "signatures": [ { - "id": 1189, + "id": 1192, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -12157,14 +12157,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1190, + "id": 1193, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1192, + "id": 1195, "name": "child", "kind": 1024, "kindString": "Property", @@ -12176,7 +12176,7 @@ "defaultValue": "..." }, { - "id": 1191, + "id": 1194, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -12193,8 +12193,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1192, - 1191 + 1195, + 1194 ] } ] @@ -12212,7 +12212,7 @@ } }, { - "id": 1170, + "id": 1173, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -12228,7 +12228,7 @@ ], "signatures": [ { - "id": 1171, + "id": 1174, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -12244,7 +12244,7 @@ }, "parameters": [ { - "id": 1172, + "id": 1175, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -12252,20 +12252,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1173, + "id": 1176, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1174, + "id": 1177, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1175, + "id": 1178, "name": "key", "kind": 32768, "flags": {}, @@ -12310,7 +12310,7 @@ } }, { - "id": 1176, + "id": 1179, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -12326,7 +12326,7 @@ ], "signatures": [ { - "id": 1177, + "id": 1180, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -12347,7 +12347,7 @@ } }, { - "id": 1186, + "id": 1189, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -12363,7 +12363,7 @@ ], "signatures": [ { - "id": 1187, + "id": 1190, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -12387,7 +12387,7 @@ } }, { - "id": 1020, + "id": 1023, "name": "navigateToPage", "kind": 2048, "kindString": "Method", @@ -12403,7 +12403,7 @@ ], "signatures": [ { - "id": 1021, + "id": 1024, "name": "navigateToPage", "kind": 4096, "kindString": "Call signature", @@ -12419,7 +12419,7 @@ }, "parameters": [ { - "id": 1022, + "id": 1025, "name": "path", "kind": 32768, "kindString": "Parameter", @@ -12442,7 +12442,7 @@ } }, { - "id": 1023, + "id": 1026, "name": "noReload", "kind": 32768, "kindString": "Parameter", @@ -12465,7 +12465,7 @@ ] }, { - "id": 1133, + "id": 1136, "name": "off", "kind": 2048, "kindString": "Method", @@ -12481,7 +12481,7 @@ ], "signatures": [ { - "id": 1134, + "id": 1137, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -12497,7 +12497,7 @@ }, "parameters": [ { - "id": 1135, + "id": 1138, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12507,12 +12507,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 1136, + "id": 1139, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -12522,7 +12522,7 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2621, "name": "MessageCallback" } } @@ -12543,7 +12543,7 @@ } }, { - "id": 1039, + "id": 1042, "name": "on", "kind": 2048, "kindString": "Method", @@ -12559,7 +12559,7 @@ ], "signatures": [ { - "id": 1040, + "id": 1043, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -12582,38 +12582,38 @@ }, "parameters": [ { - "id": 1041, + "id": 1044, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 1042, + "id": 1045, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2618, + "id": 2621, "name": "MessageCallback" } }, { - "id": 1043, + "id": 1046, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2615, + "id": 2618, "name": "MessageOptions" }, "defaultValue": "..." @@ -12635,7 +12635,7 @@ } }, { - "id": 1166, + "id": 1169, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -12651,7 +12651,7 @@ ], "signatures": [ { - "id": 1167, + "id": 1170, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -12661,7 +12661,7 @@ }, "parameters": [ { - "id": 1168, + "id": 1171, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -12676,7 +12676,7 @@ "defaultValue": "false" }, { - "id": 1169, + "id": 1172, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -12710,7 +12710,7 @@ } }, { - "id": 1178, + "id": 1181, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -12726,7 +12726,7 @@ ], "signatures": [ { - "id": 1179, + "id": 1182, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -12763,7 +12763,7 @@ } }, { - "id": 1032, + "id": 1035, "name": "render", "kind": 2048, "kindString": "Method", @@ -12779,7 +12779,7 @@ ], "signatures": [ { - "id": 1033, + "id": 1036, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -12792,7 +12792,7 @@ "typeArguments": [ { "type": "reference", - "id": 986, + "id": 989, "name": "AppEmbed" } ], @@ -12810,7 +12810,7 @@ } }, { - "id": 1182, + "id": 1185, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -12826,7 +12826,7 @@ ], "signatures": [ { - "id": 1183, + "id": 1186, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -12856,7 +12856,7 @@ } }, { - "id": 1184, + "id": 1187, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -12872,7 +12872,7 @@ ], "signatures": [ { - "id": 1185, + "id": 1188, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -12902,7 +12902,7 @@ } }, { - "id": 1151, + "id": 1154, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -12918,7 +12918,7 @@ ], "signatures": [ { - "id": 1152, + "id": 1155, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -12929,19 +12929,19 @@ }, "typeParameter": [ { - "id": 1153, + "id": 1156, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2016, + "id": 2019, "name": "HostEvent" } }, { - "id": 1154, + "id": 1157, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -12950,7 +12950,7 @@ ], "parameters": [ { - "id": 1155, + "id": 1158, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12964,7 +12964,7 @@ } }, { - "id": 1156, + "id": 1159, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -13021,7 +13021,7 @@ } }, { - "id": 1157, + "id": 1160, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -13037,7 +13037,7 @@ ], "signatures": [ { - "id": 1158, + "id": 1161, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -13048,21 +13048,21 @@ }, "typeParameter": [ { - "id": 1159, + "id": 1162, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2875, + "id": 2878, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1160, + "id": 1163, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -13076,7 +13076,7 @@ } }, { - "id": 1161, + "id": 1164, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -13129,31 +13129,31 @@ "title": "Constructors", "kind": 512, "children": [ - 987 + 990 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1024, - 1193, - 1001, - 1162, - 1188, - 1170, - 1176, - 1186, - 1020, - 1133, - 1039, - 1166, - 1178, - 1032, - 1182, - 1184, - 1151, - 1157 + 1027, + 1196, + 1004, + 1165, + 1191, + 1173, + 1179, + 1189, + 1023, + 1136, + 1042, + 1169, + 1181, + 1035, + 1185, + 1187, + 1154, + 1160 ] } ], @@ -13172,7 +13172,7 @@ ] }, { - "id": 1286, + "id": 1289, "name": "BodylessConversation", "kind": 128, "kindString": "Class", @@ -13196,7 +13196,7 @@ }, "children": [ { - "id": 1287, + "id": 1290, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -13210,45 +13210,45 @@ ], "signatures": [ { - "id": 1288, + "id": 1291, "name": "new BodylessConversation", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1289, + "id": 1292, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1257, + "id": 1260, "name": "BodylessConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1286, + "id": 1289, "name": "BodylessConversation" }, "overwrites": { "type": "reference", - "id": 1198, + "id": 1201, "name": "SpotterAgentEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1197, + "id": 1200, "name": "SpotterAgentEmbed.constructor" } }, { - "id": 1290, + "id": 1293, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -13264,14 +13264,14 @@ ], "signatures": [ { - "id": 1291, + "id": 1294, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1292, + "id": 1295, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -13291,14 +13291,14 @@ { "type": "reflection", "declaration": { - "id": 1293, + "id": 1296, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1295, + "id": 1298, "name": "container", "kind": 1024, "kindString": "Property", @@ -13309,7 +13309,7 @@ } }, { - "id": 1294, + "id": 1297, "name": "error", "kind": 1024, "kindString": "Property", @@ -13320,7 +13320,7 @@ } }, { - "id": 1296, + "id": 1299, "name": "viz", "kind": 1024, "kindString": "Property", @@ -13337,9 +13337,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1295, - 1294, - 1296 + 1298, + 1297, + 1299 ] } ] @@ -13348,14 +13348,14 @@ { "type": "reflection", "declaration": { - "id": 1297, + "id": 1300, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1298, + "id": 1301, "name": "container", "kind": 1024, "kindString": "Property", @@ -13366,7 +13366,7 @@ } }, { - "id": 1300, + "id": 1303, "name": "error", "kind": 1024, "kindString": "Property", @@ -13377,7 +13377,7 @@ } }, { - "id": 1299, + "id": 1302, "name": "viz", "kind": 1024, "kindString": "Property", @@ -13394,9 +13394,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1298, - 1300, - 1299 + 1301, + 1303, + 1302 ] } ] @@ -13409,19 +13409,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1202, + "id": 1205, "name": "SpotterAgentEmbed.sendMessage" } } ], "inheritedFrom": { "type": "reference", - "id": 1201, + "id": 1204, "name": "SpotterAgentEmbed.sendMessage" } }, { - "id": 1301, + "id": 1304, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -13437,7 +13437,7 @@ ], "signatures": [ { - "id": 1302, + "id": 1305, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -13448,7 +13448,7 @@ }, "parameters": [ { - "id": 1303, + "id": 1306, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -13471,14 +13471,14 @@ { "type": "reflection", "declaration": { - "id": 1304, + "id": 1307, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1306, + "id": 1309, "name": "data", "kind": 1024, "kindString": "Property", @@ -13490,7 +13490,7 @@ "defaultValue": "..." }, { - "id": 1305, + "id": 1308, "name": "error", "kind": 1024, "kindString": "Property", @@ -13506,8 +13506,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1306, - 1305 + 1309, + 1308 ] } ] @@ -13516,14 +13516,14 @@ { "type": "reflection", "declaration": { - "id": 1307, + "id": 1310, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1308, + "id": 1311, "name": "data", "kind": 1024, "kindString": "Property", @@ -13531,14 +13531,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1309, + "id": 1312, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1315, + "id": 1318, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -13550,7 +13550,7 @@ "defaultValue": "..." }, { - "id": 1314, + "id": 1317, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -13562,7 +13562,7 @@ "defaultValue": "..." }, { - "id": 1310, + "id": 1313, "name": "convId", "kind": 1024, "kindString": "Property", @@ -13574,7 +13574,7 @@ "defaultValue": "..." }, { - "id": 1313, + "id": 1316, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -13586,7 +13586,7 @@ "defaultValue": "..." }, { - "id": 1311, + "id": 1314, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -13598,7 +13598,7 @@ "defaultValue": "..." }, { - "id": 1312, + "id": 1315, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -13615,12 +13615,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1315, - 1314, - 1310, + 1318, + 1317, 1313, - 1311, - 1312 + 1316, + 1314, + 1315 ] } ] @@ -13629,7 +13629,7 @@ "defaultValue": "..." }, { - "id": 1316, + "id": 1319, "name": "error", "kind": 1024, "kindString": "Property", @@ -13645,8 +13645,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1308, - 1316 + 1311, + 1319 ] } ] @@ -13659,14 +13659,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1213, + "id": 1216, "name": "SpotterAgentEmbed.sendMessageData" } } ], "inheritedFrom": { "type": "reference", - "id": 1212, + "id": 1215, "name": "SpotterAgentEmbed.sendMessageData" } } @@ -13676,15 +13676,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1287 + 1290 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1290, - 1301 + 1293, + 1304 ] } ], @@ -13698,13 +13698,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1196, + "id": 1199, "name": "SpotterAgentEmbed" } ] }, { - "id": 1563, + "id": 1566, "name": "ConversationEmbed", "kind": 128, "kindString": "Class", @@ -13732,7 +13732,7 @@ }, "children": [ { - "id": 1564, + "id": 1567, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -13746,14 +13746,14 @@ ], "signatures": [ { - "id": 1565, + "id": 1568, "name": "new ConversationEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1566, + "id": 1569, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -13764,38 +13764,38 @@ } }, { - "id": 1567, + "id": 1570, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1523, + "id": 1526, "name": "ConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1563, + "id": 1566, "name": "ConversationEmbed" }, "overwrites": { "type": "reference", - "id": 1319, + "id": 1322, "name": "SpotterEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1318, + "id": 1321, "name": "SpotterEmbed.constructor" } }, { - "id": 1707, + "id": 1710, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -13811,7 +13811,7 @@ ], "signatures": [ { - "id": 1708, + "id": 1711, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -13831,19 +13831,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1462, + "id": 1465, "name": "SpotterEmbed.destroy" } } ], "inheritedFrom": { "type": "reference", - "id": 1461, + "id": 1464, "name": "SpotterEmbed.destroy" } }, { - "id": 1726, + "id": 1729, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -13859,7 +13859,7 @@ ], "signatures": [ { - "id": 1727, + "id": 1730, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -13875,7 +13875,7 @@ }, "parameters": [ { - "id": 1728, + "id": 1731, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -13896,7 +13896,7 @@ "typeArguments": [ { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } ], @@ -13904,19 +13904,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1481, + "id": 1484, "name": "SpotterEmbed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "id": 1480, + "id": 1483, "name": "SpotterEmbed.getAnswerService" } }, { - "id": 1571, + "id": 1574, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -13932,7 +13932,7 @@ ], "signatures": [ { - "id": 1572, + "id": 1575, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -13943,19 +13943,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1326, + "id": 1329, "name": "SpotterEmbed.getIframeSrc" } } ], "inheritedFrom": { "type": "reference", - "id": 1325, + "id": 1328, "name": "SpotterEmbed.getIframeSrc" } }, { - "id": 1721, + "id": 1724, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -13971,7 +13971,7 @@ ], "signatures": [ { - "id": 1722, + "id": 1725, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -13993,14 +13993,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1723, + "id": 1726, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1725, + "id": 1728, "name": "child", "kind": 1024, "kindString": "Property", @@ -14012,7 +14012,7 @@ "defaultValue": "..." }, { - "id": 1724, + "id": 1727, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -14029,8 +14029,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1725, - 1724 + 1728, + 1727 ] } ] @@ -14038,19 +14038,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1476, + "id": 1479, "name": "SpotterEmbed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "id": 1475, + "id": 1478, "name": "SpotterEmbed.getPreRenderIds" } }, { - "id": 1701, + "id": 1704, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -14066,7 +14066,7 @@ ], "signatures": [ { - "id": 1702, + "id": 1705, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -14082,7 +14082,7 @@ }, "parameters": [ { - "id": 1703, + "id": 1706, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -14090,20 +14090,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1704, + "id": 1707, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1705, + "id": 1708, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1706, + "id": 1709, "name": "key", "kind": 32768, "flags": {}, @@ -14138,19 +14138,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1456, + "id": 1459, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "id": 1455, + "id": 1458, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } }, { - "id": 1709, + "id": 1712, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -14166,7 +14166,7 @@ ], "signatures": [ { - "id": 1710, + "id": 1713, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -14177,19 +14177,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1464, + "id": 1467, "name": "SpotterEmbed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "id": 1463, + "id": 1466, "name": "SpotterEmbed.getUnderlyingFrameElement" } }, { - "id": 1719, + "id": 1722, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -14205,7 +14205,7 @@ ], "signatures": [ { - "id": 1720, + "id": 1723, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -14219,19 +14219,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1474, + "id": 1477, "name": "SpotterEmbed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1473, + "id": 1476, "name": "SpotterEmbed.hidePreRender" } }, { - "id": 1666, + "id": 1669, "name": "off", "kind": 2048, "kindString": "Method", @@ -14247,7 +14247,7 @@ ], "signatures": [ { - "id": 1667, + "id": 1670, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -14263,7 +14263,7 @@ }, "parameters": [ { - "id": 1668, + "id": 1671, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14273,12 +14273,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 1669, + "id": 1672, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14288,7 +14288,7 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2621, "name": "MessageCallback" } } @@ -14299,19 +14299,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1421, + "id": 1424, "name": "SpotterEmbed.off" } } ], "inheritedFrom": { "type": "reference", - "id": 1420, + "id": 1423, "name": "SpotterEmbed.off" } }, { - "id": 1660, + "id": 1663, "name": "on", "kind": 2048, "kindString": "Method", @@ -14327,7 +14327,7 @@ ], "signatures": [ { - "id": 1661, + "id": 1664, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -14347,7 +14347,7 @@ }, "parameters": [ { - "id": 1662, + "id": 1665, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14357,12 +14357,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 1663, + "id": 1666, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14372,12 +14372,12 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2621, "name": "MessageCallback" } }, { - "id": 1664, + "id": 1667, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -14387,13 +14387,13 @@ }, "type": { "type": "reference", - "id": 2615, + "id": 2618, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1665, + "id": 1668, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -14412,19 +14412,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1415, + "id": 1418, "name": "SpotterEmbed.on" } } ], "inheritedFrom": { "type": "reference", - "id": 1414, + "id": 1417, "name": "SpotterEmbed.on" } }, { - "id": 1697, + "id": 1700, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -14440,7 +14440,7 @@ ], "signatures": [ { - "id": 1698, + "id": 1701, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -14450,7 +14450,7 @@ }, "parameters": [ { - "id": 1699, + "id": 1702, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -14465,7 +14465,7 @@ "defaultValue": "false" }, { - "id": 1700, + "id": 1703, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -14489,19 +14489,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1452, + "id": 1455, "name": "SpotterEmbed.preRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1451, + "id": 1454, "name": "SpotterEmbed.preRender" } }, { - "id": 1711, + "id": 1714, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -14517,7 +14517,7 @@ ], "signatures": [ { - "id": 1712, + "id": 1715, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -14544,19 +14544,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1466, + "id": 1469, "name": "SpotterEmbed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "id": 1465, + "id": 1468, "name": "SpotterEmbed.prerenderGeneric" } }, { - "id": 1573, + "id": 1576, "name": "render", "kind": 2048, "kindString": "Method", @@ -14572,7 +14572,7 @@ ], "signatures": [ { - "id": 1574, + "id": 1577, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -14582,7 +14582,7 @@ "typeArguments": [ { "type": "reference", - "id": 1317, + "id": 1320, "name": "SpotterEmbed" } ], @@ -14590,19 +14590,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1328, + "id": 1331, "name": "SpotterEmbed.render" } } ], "inheritedFrom": { "type": "reference", - "id": 1327, + "id": 1330, "name": "SpotterEmbed.render" } }, { - "id": 1715, + "id": 1718, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -14618,7 +14618,7 @@ ], "signatures": [ { - "id": 1716, + "id": 1719, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -14638,19 +14638,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1470, + "id": 1473, "name": "SpotterEmbed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1469, + "id": 1472, "name": "SpotterEmbed.showPreRender" } }, { - "id": 1717, + "id": 1720, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -14666,7 +14666,7 @@ ], "signatures": [ { - "id": 1718, + "id": 1721, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -14686,19 +14686,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1472, + "id": 1475, "name": "SpotterEmbed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "id": 1471, + "id": 1474, "name": "SpotterEmbed.syncPreRenderStyle" } }, { - "id": 1684, + "id": 1687, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -14714,7 +14714,7 @@ ], "signatures": [ { - "id": 1685, + "id": 1688, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -14725,19 +14725,19 @@ }, "typeParameter": [ { - "id": 1686, + "id": 1689, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2016, + "id": 2019, "name": "HostEvent" } }, { - "id": 1687, + "id": 1690, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -14746,7 +14746,7 @@ ], "parameters": [ { - "id": 1688, + "id": 1691, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14760,7 +14760,7 @@ } }, { - "id": 1689, + "id": 1692, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -14807,19 +14807,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1439, + "id": 1442, "name": "SpotterEmbed.trigger" } } ], "inheritedFrom": { "type": "reference", - "id": 1438, + "id": 1441, "name": "SpotterEmbed.trigger" } }, { - "id": 1690, + "id": 1693, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -14835,7 +14835,7 @@ ], "signatures": [ { - "id": 1691, + "id": 1694, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -14846,21 +14846,21 @@ }, "typeParameter": [ { - "id": 1692, + "id": 1695, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2875, + "id": 2878, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1693, + "id": 1696, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -14874,7 +14874,7 @@ } }, { - "id": 1694, + "id": 1697, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -14912,14 +14912,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1445, + "id": 1448, "name": "SpotterEmbed.triggerUIPassThrough" } } ], "inheritedFrom": { "type": "reference", - "id": 1444, + "id": 1447, "name": "SpotterEmbed.triggerUIPassThrough" } } @@ -14929,29 +14929,29 @@ "title": "Constructors", "kind": 512, "children": [ - 1564 + 1567 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1707, - 1726, - 1571, - 1721, - 1701, - 1709, - 1719, - 1666, - 1660, - 1697, - 1711, - 1573, - 1715, - 1717, - 1684, - 1690 + 1710, + 1729, + 1574, + 1724, + 1704, + 1712, + 1722, + 1669, + 1663, + 1700, + 1714, + 1576, + 1718, + 1720, + 1687, + 1693 ] } ], @@ -14965,13 +14965,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1317, + "id": 1320, "name": "SpotterEmbed" } ] }, { - "id": 587, + "id": 590, "name": "LiveboardEmbed", "kind": 128, "kindString": "Class", @@ -14991,7 +14991,7 @@ }, "children": [ { - "id": 588, + "id": 591, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -15005,40 +15005,40 @@ ], "signatures": [ { - "id": 589, + "id": 592, "name": "new LiveboardEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 590, + "id": 593, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2614, + "id": 2617, "name": "DOMSelector" } }, { - "id": 591, + "id": 594, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2379, + "id": 2382, "name": "LiveboardViewConfig" } } ], "type": { "type": "reference", - "id": 587, + "id": 590, "name": "LiveboardEmbed" }, "overwrites": { @@ -15053,7 +15053,7 @@ } }, { - "id": 643, + "id": 646, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -15069,7 +15069,7 @@ ], "signatures": [ { - "id": 644, + "id": 647, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -15099,7 +15099,7 @@ } }, { - "id": 807, + "id": 810, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -15115,7 +15115,7 @@ ], "signatures": [ { - "id": 808, + "id": 811, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -15131,7 +15131,7 @@ }, "parameters": [ { - "id": 809, + "id": 812, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15152,7 +15152,7 @@ "typeArguments": [ { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } ], @@ -15170,7 +15170,7 @@ } }, { - "id": 780, + "id": 783, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -15186,7 +15186,7 @@ ], "signatures": [ { - "id": 781, + "id": 784, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -15207,7 +15207,7 @@ } }, { - "id": 658, + "id": 661, "name": "getLiveboardUrl", "kind": 2048, "kindString": "Method", @@ -15223,7 +15223,7 @@ ], "signatures": [ { - "id": 659, + "id": 662, "name": "getLiveboardUrl", "kind": 4096, "kindString": "Call signature", @@ -15240,7 +15240,7 @@ ] }, { - "id": 802, + "id": 805, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -15256,7 +15256,7 @@ ], "signatures": [ { - "id": 803, + "id": 806, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -15278,14 +15278,14 @@ "type": { "type": "reflection", "declaration": { - "id": 804, + "id": 807, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 806, + "id": 809, "name": "child", "kind": 1024, "kindString": "Property", @@ -15297,7 +15297,7 @@ "defaultValue": "..." }, { - "id": 805, + "id": 808, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -15314,8 +15314,8 @@ "title": "Properties", "kind": 1024, "children": [ - 806, - 805 + 809, + 808 ] } ] @@ -15333,7 +15333,7 @@ } }, { - "id": 786, + "id": 789, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -15349,7 +15349,7 @@ ], "signatures": [ { - "id": 787, + "id": 790, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -15365,7 +15365,7 @@ }, "parameters": [ { - "id": 788, + "id": 791, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -15373,20 +15373,20 @@ "type": { "type": "reflection", "declaration": { - "id": 789, + "id": 792, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 790, + "id": 793, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 791, + "id": 794, "name": "key", "kind": 32768, "flags": {}, @@ -15431,7 +15431,7 @@ } }, { - "id": 792, + "id": 795, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -15447,7 +15447,7 @@ ], "signatures": [ { - "id": 793, + "id": 796, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -15468,7 +15468,7 @@ } }, { - "id": 800, + "id": 803, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -15484,7 +15484,7 @@ ], "signatures": [ { - "id": 801, + "id": 804, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -15508,7 +15508,7 @@ } }, { - "id": 653, + "id": 656, "name": "navigateToLiveboard", "kind": 2048, "kindString": "Method", @@ -15524,14 +15524,14 @@ ], "signatures": [ { - "id": 654, + "id": 657, "name": "navigateToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 655, + "id": 658, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -15542,7 +15542,7 @@ } }, { - "id": 656, + "id": 659, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15555,7 +15555,7 @@ } }, { - "id": 657, + "id": 660, "name": "activeTabId", "kind": 32768, "kindString": "Parameter", @@ -15576,7 +15576,7 @@ ] }, { - "id": 757, + "id": 760, "name": "off", "kind": 2048, "kindString": "Method", @@ -15592,7 +15592,7 @@ ], "signatures": [ { - "id": 758, + "id": 761, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -15608,7 +15608,7 @@ }, "parameters": [ { - "id": 759, + "id": 762, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15618,12 +15618,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 760, + "id": 763, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -15633,7 +15633,7 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2621, "name": "MessageCallback" } } @@ -15654,7 +15654,7 @@ } }, { - "id": 665, + "id": 668, "name": "on", "kind": 2048, "kindString": "Method", @@ -15670,7 +15670,7 @@ ], "signatures": [ { - "id": 666, + "id": 669, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -15693,38 +15693,38 @@ }, "parameters": [ { - "id": 667, + "id": 670, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 668, + "id": 671, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2618, + "id": 2621, "name": "MessageCallback" } }, { - "id": 669, + "id": 672, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2615, + "id": 2618, "name": "MessageOptions" }, "defaultValue": "..." @@ -15746,7 +15746,7 @@ } }, { - "id": 782, + "id": 785, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -15762,7 +15762,7 @@ ], "signatures": [ { - "id": 783, + "id": 786, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -15772,7 +15772,7 @@ }, "parameters": [ { - "id": 784, + "id": 787, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -15787,7 +15787,7 @@ "defaultValue": "false" }, { - "id": 785, + "id": 788, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -15821,7 +15821,7 @@ } }, { - "id": 794, + "id": 797, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -15837,7 +15837,7 @@ ], "signatures": [ { - "id": 795, + "id": 798, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -15874,7 +15874,7 @@ } }, { - "id": 651, + "id": 654, "name": "render", "kind": 2048, "kindString": "Method", @@ -15890,7 +15890,7 @@ ], "signatures": [ { - "id": 652, + "id": 655, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -15903,7 +15903,7 @@ "typeArguments": [ { "type": "reference", - "id": 587, + "id": 590, "name": "LiveboardEmbed" } ], @@ -15921,7 +15921,7 @@ } }, { - "id": 796, + "id": 799, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -15937,7 +15937,7 @@ ], "signatures": [ { - "id": 797, + "id": 800, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -15967,7 +15967,7 @@ } }, { - "id": 798, + "id": 801, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -15983,7 +15983,7 @@ ], "signatures": [ { - "id": 799, + "id": 802, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -16013,7 +16013,7 @@ } }, { - "id": 637, + "id": 640, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -16029,7 +16029,7 @@ ], "signatures": [ { - "id": 638, + "id": 641, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -16040,19 +16040,19 @@ }, "typeParameter": [ { - "id": 639, + "id": 642, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2016, + "id": 2019, "name": "HostEvent" } }, { - "id": 640, + "id": 643, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -16061,7 +16061,7 @@ ], "parameters": [ { - "id": 641, + "id": 644, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16075,7 +16075,7 @@ } }, { - "id": 642, + "id": 645, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -16132,7 +16132,7 @@ } }, { - "id": 775, + "id": 778, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -16148,7 +16148,7 @@ ], "signatures": [ { - "id": 776, + "id": 779, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -16159,21 +16159,21 @@ }, "typeParameter": [ { - "id": 777, + "id": 780, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2875, + "id": 2878, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 778, + "id": 781, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -16187,7 +16187,7 @@ } }, { - "id": 779, + "id": 782, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -16240,31 +16240,31 @@ "title": "Constructors", "kind": 512, "children": [ - 588 + 591 ] }, { "title": "Methods", "kind": 2048, "children": [ - 643, - 807, - 780, - 658, - 802, - 786, - 792, - 800, - 653, - 757, - 665, - 782, - 794, - 651, - 796, - 798, - 637, - 775 + 646, + 810, + 783, + 661, + 805, + 789, + 795, + 803, + 656, + 760, + 668, + 785, + 797, + 654, + 799, + 801, + 640, + 778 ] } ], @@ -16283,7 +16283,7 @@ ] }, { - "id": 810, + "id": 813, "name": "SageEmbed", "kind": 128, "kindString": "Class", @@ -16303,7 +16303,7 @@ }, "children": [ { - "id": 811, + "id": 814, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -16317,40 +16317,40 @@ ], "signatures": [ { - "id": 812, + "id": 815, "name": "new SageEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 813, + "id": 816, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2614, + "id": 2617, "name": "DOMSelector" } }, { - "id": 814, + "id": 817, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2454, + "id": 2457, "name": "SageViewConfig" } } ], "type": { "type": "reference", - "id": 810, + "id": 813, "name": "SageEmbed" }, "overwrites": { @@ -16365,7 +16365,7 @@ } }, { - "id": 964, + "id": 967, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -16381,7 +16381,7 @@ ], "signatures": [ { - "id": 965, + "id": 968, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -16411,7 +16411,7 @@ } }, { - "id": 983, + "id": 986, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -16427,7 +16427,7 @@ ], "signatures": [ { - "id": 984, + "id": 987, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -16443,7 +16443,7 @@ }, "parameters": [ { - "id": 985, + "id": 988, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -16464,7 +16464,7 @@ "typeArguments": [ { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } ], @@ -16482,7 +16482,7 @@ } }, { - "id": 820, + "id": 823, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -16498,7 +16498,7 @@ ], "signatures": [ { - "id": 821, + "id": 824, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -16515,7 +16515,7 @@ ] }, { - "id": 950, + "id": 953, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -16531,7 +16531,7 @@ ], "signatures": [ { - "id": 951, + "id": 954, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -16552,7 +16552,7 @@ } }, { - "id": 978, + "id": 981, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -16568,7 +16568,7 @@ ], "signatures": [ { - "id": 979, + "id": 982, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -16590,14 +16590,14 @@ "type": { "type": "reflection", "declaration": { - "id": 980, + "id": 983, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 982, + "id": 985, "name": "child", "kind": 1024, "kindString": "Property", @@ -16609,7 +16609,7 @@ "defaultValue": "..." }, { - "id": 981, + "id": 984, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -16626,8 +16626,8 @@ "title": "Properties", "kind": 1024, "children": [ - 982, - 981 + 985, + 984 ] } ] @@ -16645,7 +16645,7 @@ } }, { - "id": 958, + "id": 961, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -16661,7 +16661,7 @@ ], "signatures": [ { - "id": 959, + "id": 962, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -16677,7 +16677,7 @@ }, "parameters": [ { - "id": 960, + "id": 963, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -16685,20 +16685,20 @@ "type": { "type": "reflection", "declaration": { - "id": 961, + "id": 964, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 962, + "id": 965, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 963, + "id": 966, "name": "key", "kind": 32768, "flags": {}, @@ -16743,7 +16743,7 @@ } }, { - "id": 966, + "id": 969, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -16759,7 +16759,7 @@ ], "signatures": [ { - "id": 967, + "id": 970, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -16780,7 +16780,7 @@ } }, { - "id": 976, + "id": 979, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -16796,7 +16796,7 @@ ], "signatures": [ { - "id": 977, + "id": 980, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -16820,7 +16820,7 @@ } }, { - "id": 921, + "id": 924, "name": "off", "kind": 2048, "kindString": "Method", @@ -16836,7 +16836,7 @@ ], "signatures": [ { - "id": 922, + "id": 925, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -16852,7 +16852,7 @@ }, "parameters": [ { - "id": 923, + "id": 926, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16862,12 +16862,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 924, + "id": 927, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -16877,7 +16877,7 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2621, "name": "MessageCallback" } } @@ -16898,7 +16898,7 @@ } }, { - "id": 829, + "id": 832, "name": "on", "kind": 2048, "kindString": "Method", @@ -16914,7 +16914,7 @@ ], "signatures": [ { - "id": 830, + "id": 833, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -16937,38 +16937,38 @@ }, "parameters": [ { - "id": 831, + "id": 834, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 832, + "id": 835, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2618, + "id": 2621, "name": "MessageCallback" } }, { - "id": 833, + "id": 836, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2615, + "id": 2618, "name": "MessageOptions" }, "defaultValue": "..." @@ -16990,7 +16990,7 @@ } }, { - "id": 954, + "id": 957, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -17006,7 +17006,7 @@ ], "signatures": [ { - "id": 955, + "id": 958, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -17016,7 +17016,7 @@ }, "parameters": [ { - "id": 956, + "id": 959, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -17031,7 +17031,7 @@ "defaultValue": "false" }, { - "id": 957, + "id": 960, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -17065,7 +17065,7 @@ } }, { - "id": 968, + "id": 971, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -17081,7 +17081,7 @@ ], "signatures": [ { - "id": 969, + "id": 972, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -17118,7 +17118,7 @@ } }, { - "id": 822, + "id": 825, "name": "render", "kind": 2048, "kindString": "Method", @@ -17134,7 +17134,7 @@ ], "signatures": [ { - "id": 823, + "id": 826, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -17148,7 +17148,7 @@ "typeArguments": [ { "type": "reference", - "id": 810, + "id": 813, "name": "SageEmbed" } ], @@ -17166,7 +17166,7 @@ } }, { - "id": 972, + "id": 975, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -17182,7 +17182,7 @@ ], "signatures": [ { - "id": 973, + "id": 976, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -17212,7 +17212,7 @@ } }, { - "id": 974, + "id": 977, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -17228,7 +17228,7 @@ ], "signatures": [ { - "id": 975, + "id": 978, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -17258,7 +17258,7 @@ } }, { - "id": 939, + "id": 942, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -17274,7 +17274,7 @@ ], "signatures": [ { - "id": 940, + "id": 943, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -17285,19 +17285,19 @@ }, "typeParameter": [ { - "id": 941, + "id": 944, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2016, + "id": 2019, "name": "HostEvent" } }, { - "id": 942, + "id": 945, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -17306,7 +17306,7 @@ ], "parameters": [ { - "id": 943, + "id": 946, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17320,7 +17320,7 @@ } }, { - "id": 944, + "id": 947, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -17377,7 +17377,7 @@ } }, { - "id": 945, + "id": 948, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -17393,7 +17393,7 @@ ], "signatures": [ { - "id": 946, + "id": 949, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -17404,21 +17404,21 @@ }, "typeParameter": [ { - "id": 947, + "id": 950, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2875, + "id": 2878, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 948, + "id": 951, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -17432,7 +17432,7 @@ } }, { - "id": 949, + "id": 952, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -17485,30 +17485,30 @@ "title": "Constructors", "kind": 512, "children": [ - 811 + 814 ] }, { "title": "Methods", "kind": 2048, "children": [ - 964, - 983, - 820, - 950, - 978, - 958, - 966, - 976, - 921, - 829, - 954, - 968, - 822, - 972, - 974, - 939, - 945 + 967, + 986, + 823, + 953, + 981, + 961, + 969, + 979, + 924, + 832, + 957, + 971, + 825, + 975, + 977, + 942, + 948 ] } ], @@ -17527,7 +17527,7 @@ ] }, { - "id": 228, + "id": 231, "name": "SearchBarEmbed", "kind": 128, "kindString": "Class", @@ -17547,7 +17547,7 @@ }, "children": [ { - "id": 229, + "id": 232, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -17561,14 +17561,14 @@ ], "signatures": [ { - "id": 230, + "id": 233, "name": "new SearchBarEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 231, + "id": 234, "name": "domSelector", "kind": 32768, "kindString": "Parameter", @@ -17579,21 +17579,21 @@ } }, { - "id": 232, + "id": 235, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2337, + "id": 2340, "name": "SearchBarViewConfig" } } ], "type": { "type": "reference", - "id": 228, + "id": 231, "name": "SearchBarEmbed" }, "overwrites": { @@ -17608,7 +17608,7 @@ } }, { - "id": 379, + "id": 382, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -17624,7 +17624,7 @@ ], "signatures": [ { - "id": 380, + "id": 383, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -17654,7 +17654,7 @@ } }, { - "id": 398, + "id": 401, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -17670,7 +17670,7 @@ ], "signatures": [ { - "id": 399, + "id": 402, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -17686,7 +17686,7 @@ }, "parameters": [ { - "id": 400, + "id": 403, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -17707,7 +17707,7 @@ "typeArguments": [ { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } ], @@ -17725,7 +17725,7 @@ } }, { - "id": 365, + "id": 368, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -17741,7 +17741,7 @@ ], "signatures": [ { - "id": 366, + "id": 369, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -17762,7 +17762,7 @@ } }, { - "id": 393, + "id": 396, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -17778,7 +17778,7 @@ ], "signatures": [ { - "id": 394, + "id": 397, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -17800,14 +17800,14 @@ "type": { "type": "reflection", "declaration": { - "id": 395, + "id": 398, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 397, + "id": 400, "name": "child", "kind": 1024, "kindString": "Property", @@ -17819,7 +17819,7 @@ "defaultValue": "..." }, { - "id": 396, + "id": 399, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -17836,8 +17836,8 @@ "title": "Properties", "kind": 1024, "children": [ - 397, - 396 + 400, + 399 ] } ] @@ -17855,7 +17855,7 @@ } }, { - "id": 373, + "id": 376, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -17871,7 +17871,7 @@ ], "signatures": [ { - "id": 374, + "id": 377, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -17887,7 +17887,7 @@ }, "parameters": [ { - "id": 375, + "id": 378, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -17895,20 +17895,20 @@ "type": { "type": "reflection", "declaration": { - "id": 376, + "id": 379, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 377, + "id": 380, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 378, + "id": 381, "name": "key", "kind": 32768, "flags": {}, @@ -17953,7 +17953,7 @@ } }, { - "id": 381, + "id": 384, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -17969,7 +17969,7 @@ ], "signatures": [ { - "id": 382, + "id": 385, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -17990,7 +17990,7 @@ } }, { - "id": 391, + "id": 394, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -18006,7 +18006,7 @@ ], "signatures": [ { - "id": 392, + "id": 395, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -18030,7 +18030,7 @@ } }, { - "id": 336, + "id": 339, "name": "off", "kind": 2048, "kindString": "Method", @@ -18046,7 +18046,7 @@ ], "signatures": [ { - "id": 337, + "id": 340, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -18062,7 +18062,7 @@ }, "parameters": [ { - "id": 338, + "id": 341, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18072,12 +18072,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 339, + "id": 342, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18087,7 +18087,7 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2621, "name": "MessageCallback" } } @@ -18108,7 +18108,7 @@ } }, { - "id": 330, + "id": 333, "name": "on", "kind": 2048, "kindString": "Method", @@ -18124,7 +18124,7 @@ ], "signatures": [ { - "id": 331, + "id": 334, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -18144,7 +18144,7 @@ }, "parameters": [ { - "id": 332, + "id": 335, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18154,12 +18154,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 333, + "id": 336, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18169,12 +18169,12 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2621, "name": "MessageCallback" } }, { - "id": 334, + "id": 337, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -18184,13 +18184,13 @@ }, "type": { "type": "reference", - "id": 2615, + "id": 2618, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 335, + "id": 338, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -18219,7 +18219,7 @@ } }, { - "id": 369, + "id": 372, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -18235,7 +18235,7 @@ ], "signatures": [ { - "id": 370, + "id": 373, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -18245,7 +18245,7 @@ }, "parameters": [ { - "id": 371, + "id": 374, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -18260,7 +18260,7 @@ "defaultValue": "false" }, { - "id": 372, + "id": 375, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -18294,7 +18294,7 @@ } }, { - "id": 383, + "id": 386, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -18310,7 +18310,7 @@ ], "signatures": [ { - "id": 384, + "id": 387, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -18347,7 +18347,7 @@ } }, { - "id": 239, + "id": 242, "name": "render", "kind": 2048, "kindString": "Method", @@ -18363,7 +18363,7 @@ ], "signatures": [ { - "id": 240, + "id": 243, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -18376,7 +18376,7 @@ "typeArguments": [ { "type": "reference", - "id": 228, + "id": 231, "name": "SearchBarEmbed" } ], @@ -18394,7 +18394,7 @@ } }, { - "id": 387, + "id": 390, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -18410,7 +18410,7 @@ ], "signatures": [ { - "id": 388, + "id": 391, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -18440,7 +18440,7 @@ } }, { - "id": 389, + "id": 392, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -18456,7 +18456,7 @@ ], "signatures": [ { - "id": 390, + "id": 393, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -18486,7 +18486,7 @@ } }, { - "id": 354, + "id": 357, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -18502,7 +18502,7 @@ ], "signatures": [ { - "id": 355, + "id": 358, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -18513,19 +18513,19 @@ }, "typeParameter": [ { - "id": 356, + "id": 359, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2016, + "id": 2019, "name": "HostEvent" } }, { - "id": 357, + "id": 360, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -18534,7 +18534,7 @@ ], "parameters": [ { - "id": 358, + "id": 361, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18548,7 +18548,7 @@ } }, { - "id": 359, + "id": 362, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -18605,7 +18605,7 @@ } }, { - "id": 360, + "id": 363, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -18621,7 +18621,7 @@ ], "signatures": [ { - "id": 361, + "id": 364, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -18632,21 +18632,21 @@ }, "typeParameter": [ { - "id": 362, + "id": 365, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2875, + "id": 2878, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 363, + "id": 366, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -18660,7 +18660,7 @@ } }, { - "id": 364, + "id": 367, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -18713,29 +18713,29 @@ "title": "Constructors", "kind": 512, "children": [ - 229 + 232 ] }, { "title": "Methods", "kind": 2048, "children": [ - 379, - 398, - 365, - 393, - 373, - 381, - 391, - 336, - 330, - 369, - 383, - 239, - 387, - 389, - 354, - 360 + 382, + 401, + 368, + 396, + 376, + 384, + 394, + 339, + 333, + 372, + 386, + 242, + 390, + 392, + 357, + 363 ] } ], @@ -18754,7 +18754,7 @@ ] }, { - "id": 52, + "id": 55, "name": "SearchEmbed", "kind": 128, "kindString": "Class", @@ -18770,7 +18770,7 @@ }, "children": [ { - "id": 53, + "id": 56, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -18784,40 +18784,40 @@ ], "signatures": [ { - "id": 54, + "id": 57, "name": "new SearchEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 55, + "id": 58, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2614, + "id": 2617, "name": "DOMSelector" } }, { - "id": 56, + "id": 59, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2283, + "id": 2286, "name": "SearchViewConfig" } } ], "type": { "type": "reference", - "id": 52, + "id": 55, "name": "SearchEmbed" }, "overwrites": { @@ -18832,7 +18832,7 @@ } }, { - "id": 206, + "id": 209, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -18848,7 +18848,7 @@ ], "signatures": [ { - "id": 207, + "id": 210, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -18878,7 +18878,7 @@ } }, { - "id": 225, + "id": 228, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -18894,7 +18894,7 @@ ], "signatures": [ { - "id": 226, + "id": 229, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -18910,7 +18910,7 @@ }, "parameters": [ { - "id": 227, + "id": 230, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -18931,7 +18931,7 @@ "typeArguments": [ { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } ], @@ -18949,7 +18949,7 @@ } }, { - "id": 72, + "id": 75, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -18965,7 +18965,7 @@ ], "signatures": [ { - "id": 73, + "id": 76, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -18981,7 +18981,7 @@ ] }, { - "id": 192, + "id": 195, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -18997,7 +18997,7 @@ ], "signatures": [ { - "id": 193, + "id": 196, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -19018,7 +19018,7 @@ } }, { - "id": 220, + "id": 223, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -19034,7 +19034,7 @@ ], "signatures": [ { - "id": 221, + "id": 224, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -19056,14 +19056,14 @@ "type": { "type": "reflection", "declaration": { - "id": 222, + "id": 225, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 224, + "id": 227, "name": "child", "kind": 1024, "kindString": "Property", @@ -19075,7 +19075,7 @@ "defaultValue": "..." }, { - "id": 223, + "id": 226, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -19092,8 +19092,8 @@ "title": "Properties", "kind": 1024, "children": [ - 224, - 223 + 227, + 226 ] } ] @@ -19111,7 +19111,7 @@ } }, { - "id": 200, + "id": 203, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -19127,7 +19127,7 @@ ], "signatures": [ { - "id": 201, + "id": 204, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -19143,7 +19143,7 @@ }, "parameters": [ { - "id": 202, + "id": 205, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -19151,20 +19151,20 @@ "type": { "type": "reflection", "declaration": { - "id": 203, + "id": 206, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 204, + "id": 207, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 205, + "id": 208, "name": "key", "kind": 32768, "flags": {}, @@ -19209,7 +19209,7 @@ } }, { - "id": 208, + "id": 211, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -19225,7 +19225,7 @@ ], "signatures": [ { - "id": 209, + "id": 212, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -19246,7 +19246,7 @@ } }, { - "id": 218, + "id": 221, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -19262,7 +19262,7 @@ ], "signatures": [ { - "id": 219, + "id": 222, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -19286,7 +19286,7 @@ } }, { - "id": 163, + "id": 166, "name": "off", "kind": 2048, "kindString": "Method", @@ -19302,7 +19302,7 @@ ], "signatures": [ { - "id": 164, + "id": 167, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -19318,7 +19318,7 @@ }, "parameters": [ { - "id": 165, + "id": 168, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19328,12 +19328,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 166, + "id": 169, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19343,7 +19343,7 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2621, "name": "MessageCallback" } } @@ -19364,7 +19364,7 @@ } }, { - "id": 157, + "id": 160, "name": "on", "kind": 2048, "kindString": "Method", @@ -19380,7 +19380,7 @@ ], "signatures": [ { - "id": 158, + "id": 161, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -19400,7 +19400,7 @@ }, "parameters": [ { - "id": 159, + "id": 162, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19410,12 +19410,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 160, + "id": 163, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19425,12 +19425,12 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2621, "name": "MessageCallback" } }, { - "id": 161, + "id": 164, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -19440,13 +19440,13 @@ }, "type": { "type": "reference", - "id": 2615, + "id": 2618, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 162, + "id": 165, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -19475,7 +19475,7 @@ } }, { - "id": 196, + "id": 199, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -19491,7 +19491,7 @@ ], "signatures": [ { - "id": 197, + "id": 200, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -19501,7 +19501,7 @@ }, "parameters": [ { - "id": 198, + "id": 201, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -19516,7 +19516,7 @@ "defaultValue": "false" }, { - "id": 199, + "id": 202, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -19550,7 +19550,7 @@ } }, { - "id": 210, + "id": 213, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -19566,7 +19566,7 @@ ], "signatures": [ { - "id": 211, + "id": 214, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -19603,7 +19603,7 @@ } }, { - "id": 74, + "id": 77, "name": "render", "kind": 2048, "kindString": "Method", @@ -19619,7 +19619,7 @@ ], "signatures": [ { - "id": 75, + "id": 78, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -19632,7 +19632,7 @@ "typeArguments": [ { "type": "reference", - "id": 52, + "id": 55, "name": "SearchEmbed" } ], @@ -19650,7 +19650,7 @@ } }, { - "id": 214, + "id": 217, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -19666,7 +19666,7 @@ ], "signatures": [ { - "id": 215, + "id": 218, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -19696,7 +19696,7 @@ } }, { - "id": 216, + "id": 219, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -19712,7 +19712,7 @@ ], "signatures": [ { - "id": 217, + "id": 220, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -19742,7 +19742,7 @@ } }, { - "id": 181, + "id": 184, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -19758,7 +19758,7 @@ ], "signatures": [ { - "id": 182, + "id": 185, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -19769,19 +19769,19 @@ }, "typeParameter": [ { - "id": 183, + "id": 186, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2016, + "id": 2019, "name": "HostEvent" } }, { - "id": 184, + "id": 187, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -19790,7 +19790,7 @@ ], "parameters": [ { - "id": 185, + "id": 188, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19804,7 +19804,7 @@ } }, { - "id": 186, + "id": 189, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -19861,7 +19861,7 @@ } }, { - "id": 187, + "id": 190, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -19877,7 +19877,7 @@ ], "signatures": [ { - "id": 188, + "id": 191, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -19888,21 +19888,21 @@ }, "typeParameter": [ { - "id": 189, + "id": 192, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2875, + "id": 2878, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 190, + "id": 193, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -19916,7 +19916,7 @@ } }, { - "id": 191, + "id": 194, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -19969,30 +19969,30 @@ "title": "Constructors", "kind": 512, "children": [ - 53 + 56 ] }, { "title": "Methods", "kind": 2048, "children": [ - 206, - 225, - 72, - 192, - 220, - 200, - 208, - 218, - 163, - 157, - 196, - 210, - 74, - 214, - 216, - 181, - 187 + 209, + 228, + 75, + 195, + 223, + 203, + 211, + 221, + 166, + 160, + 199, + 213, + 77, + 217, + 219, + 184, + 190 ] } ], @@ -20011,7 +20011,7 @@ ] }, { - "id": 1196, + "id": 1199, "name": "SpotterAgentEmbed", "kind": 128, "kindString": "Class", @@ -20035,7 +20035,7 @@ }, "children": [ { - "id": 1197, + "id": 1200, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -20049,35 +20049,35 @@ ], "signatures": [ { - "id": 1198, + "id": 1201, "name": "new SpotterAgentEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1199, + "id": 1202, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1228, + "id": 1231, "name": "SpotterAgentEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1196, + "id": 1199, "name": "SpotterAgentEmbed" } } ] }, { - "id": 1201, + "id": 1204, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -20093,14 +20093,14 @@ ], "signatures": [ { - "id": 1202, + "id": 1205, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1203, + "id": 1206, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -20120,14 +20120,14 @@ { "type": "reflection", "declaration": { - "id": 1204, + "id": 1207, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1206, + "id": 1209, "name": "container", "kind": 1024, "kindString": "Property", @@ -20138,7 +20138,7 @@ } }, { - "id": 1205, + "id": 1208, "name": "error", "kind": 1024, "kindString": "Property", @@ -20149,7 +20149,7 @@ } }, { - "id": 1207, + "id": 1210, "name": "viz", "kind": 1024, "kindString": "Property", @@ -20166,9 +20166,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1206, - 1205, - 1207 + 1209, + 1208, + 1210 ] } ] @@ -20177,14 +20177,14 @@ { "type": "reflection", "declaration": { - "id": 1208, + "id": 1211, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1209, + "id": 1212, "name": "container", "kind": 1024, "kindString": "Property", @@ -20195,7 +20195,7 @@ } }, { - "id": 1211, + "id": 1214, "name": "error", "kind": 1024, "kindString": "Property", @@ -20206,7 +20206,7 @@ } }, { - "id": 1210, + "id": 1213, "name": "viz", "kind": 1024, "kindString": "Property", @@ -20223,9 +20223,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1209, - 1211, - 1210 + 1212, + 1214, + 1213 ] } ] @@ -20240,7 +20240,7 @@ ] }, { - "id": 1212, + "id": 1215, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -20256,7 +20256,7 @@ ], "signatures": [ { - "id": 1213, + "id": 1216, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -20267,7 +20267,7 @@ }, "parameters": [ { - "id": 1214, + "id": 1217, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -20290,14 +20290,14 @@ { "type": "reflection", "declaration": { - "id": 1215, + "id": 1218, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1217, + "id": 1220, "name": "data", "kind": 1024, "kindString": "Property", @@ -20309,7 +20309,7 @@ "defaultValue": "..." }, { - "id": 1216, + "id": 1219, "name": "error", "kind": 1024, "kindString": "Property", @@ -20325,8 +20325,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1217, - 1216 + 1220, + 1219 ] } ] @@ -20335,14 +20335,14 @@ { "type": "reflection", "declaration": { - "id": 1218, + "id": 1221, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1219, + "id": 1222, "name": "data", "kind": 1024, "kindString": "Property", @@ -20350,14 +20350,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1220, + "id": 1223, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1226, + "id": 1229, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -20369,7 +20369,7 @@ "defaultValue": "..." }, { - "id": 1225, + "id": 1228, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -20381,7 +20381,7 @@ "defaultValue": "..." }, { - "id": 1221, + "id": 1224, "name": "convId", "kind": 1024, "kindString": "Property", @@ -20393,7 +20393,7 @@ "defaultValue": "..." }, { - "id": 1224, + "id": 1227, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -20405,7 +20405,7 @@ "defaultValue": "..." }, { - "id": 1222, + "id": 1225, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -20417,7 +20417,7 @@ "defaultValue": "..." }, { - "id": 1223, + "id": 1226, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -20434,12 +20434,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1226, - 1225, - 1221, + 1229, + 1228, 1224, - 1222, - 1223 + 1227, + 1225, + 1226 ] } ] @@ -20448,7 +20448,7 @@ "defaultValue": "..." }, { - "id": 1227, + "id": 1230, "name": "error", "kind": 1024, "kindString": "Property", @@ -20464,8 +20464,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1219, - 1227 + 1222, + 1230 ] } ] @@ -20485,15 +20485,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1197 + 1200 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1201, - 1212 + 1204, + 1215 ] } ], @@ -20507,13 +20507,13 @@ "extendedBy": [ { "type": "reference", - "id": 1286, + "id": 1289, "name": "BodylessConversation" } ] }, { - "id": 1317, + "id": 1320, "name": "SpotterEmbed", "kind": 128, "kindString": "Class", @@ -20537,7 +20537,7 @@ }, "children": [ { - "id": 1318, + "id": 1321, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -20551,14 +20551,14 @@ ], "signatures": [ { - "id": 1319, + "id": 1322, "name": "new SpotterEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1320, + "id": 1323, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -20569,21 +20569,21 @@ } }, { - "id": 1321, + "id": 1324, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1483, + "id": 1486, "name": "SpotterEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1317, + "id": 1320, "name": "SpotterEmbed" }, "overwrites": { @@ -20598,7 +20598,7 @@ } }, { - "id": 1461, + "id": 1464, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -20614,7 +20614,7 @@ ], "signatures": [ { - "id": 1462, + "id": 1465, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -20644,7 +20644,7 @@ } }, { - "id": 1480, + "id": 1483, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -20660,7 +20660,7 @@ ], "signatures": [ { - "id": 1481, + "id": 1484, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -20676,7 +20676,7 @@ }, "parameters": [ { - "id": 1482, + "id": 1485, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -20697,7 +20697,7 @@ "typeArguments": [ { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } ], @@ -20715,7 +20715,7 @@ } }, { - "id": 1325, + "id": 1328, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -20731,7 +20731,7 @@ ], "signatures": [ { - "id": 1326, + "id": 1329, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -20752,7 +20752,7 @@ } }, { - "id": 1475, + "id": 1478, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -20768,7 +20768,7 @@ ], "signatures": [ { - "id": 1476, + "id": 1479, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -20790,14 +20790,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1477, + "id": 1480, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1479, + "id": 1482, "name": "child", "kind": 1024, "kindString": "Property", @@ -20809,7 +20809,7 @@ "defaultValue": "..." }, { - "id": 1478, + "id": 1481, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -20826,8 +20826,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1479, - 1478 + 1482, + 1481 ] } ] @@ -20845,7 +20845,7 @@ } }, { - "id": 1455, + "id": 1458, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -20861,7 +20861,7 @@ ], "signatures": [ { - "id": 1456, + "id": 1459, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -20877,7 +20877,7 @@ }, "parameters": [ { - "id": 1457, + "id": 1460, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -20885,20 +20885,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1458, + "id": 1461, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1459, + "id": 1462, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1460, + "id": 1463, "name": "key", "kind": 32768, "flags": {}, @@ -20943,7 +20943,7 @@ } }, { - "id": 1463, + "id": 1466, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -20959,7 +20959,7 @@ ], "signatures": [ { - "id": 1464, + "id": 1467, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -20980,7 +20980,7 @@ } }, { - "id": 1473, + "id": 1476, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -20996,7 +20996,7 @@ ], "signatures": [ { - "id": 1474, + "id": 1477, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -21020,7 +21020,7 @@ } }, { - "id": 1420, + "id": 1423, "name": "off", "kind": 2048, "kindString": "Method", @@ -21036,7 +21036,7 @@ ], "signatures": [ { - "id": 1421, + "id": 1424, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -21052,7 +21052,7 @@ }, "parameters": [ { - "id": 1422, + "id": 1425, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21062,12 +21062,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 1423, + "id": 1426, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -21077,7 +21077,7 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2621, "name": "MessageCallback" } } @@ -21098,7 +21098,7 @@ } }, { - "id": 1414, + "id": 1417, "name": "on", "kind": 2048, "kindString": "Method", @@ -21114,7 +21114,7 @@ ], "signatures": [ { - "id": 1415, + "id": 1418, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -21134,7 +21134,7 @@ }, "parameters": [ { - "id": 1416, + "id": 1419, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21144,12 +21144,12 @@ }, "type": { "type": "reference", - "id": 1923, + "id": 1926, "name": "EmbedEvent" } }, { - "id": 1417, + "id": 1420, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -21159,12 +21159,12 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2621, "name": "MessageCallback" } }, { - "id": 1418, + "id": 1421, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -21174,13 +21174,13 @@ }, "type": { "type": "reference", - "id": 2615, + "id": 2618, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1419, + "id": 1422, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -21209,7 +21209,7 @@ } }, { - "id": 1451, + "id": 1454, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -21225,7 +21225,7 @@ ], "signatures": [ { - "id": 1452, + "id": 1455, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -21235,7 +21235,7 @@ }, "parameters": [ { - "id": 1453, + "id": 1456, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -21250,7 +21250,7 @@ "defaultValue": "false" }, { - "id": 1454, + "id": 1457, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -21284,7 +21284,7 @@ } }, { - "id": 1465, + "id": 1468, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -21300,7 +21300,7 @@ ], "signatures": [ { - "id": 1466, + "id": 1469, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -21337,7 +21337,7 @@ } }, { - "id": 1327, + "id": 1330, "name": "render", "kind": 2048, "kindString": "Method", @@ -21353,7 +21353,7 @@ ], "signatures": [ { - "id": 1328, + "id": 1331, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -21363,7 +21363,7 @@ "typeArguments": [ { "type": "reference", - "id": 1317, + "id": 1320, "name": "SpotterEmbed" } ], @@ -21381,7 +21381,7 @@ } }, { - "id": 1469, + "id": 1472, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -21397,7 +21397,7 @@ ], "signatures": [ { - "id": 1470, + "id": 1473, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -21427,7 +21427,7 @@ } }, { - "id": 1471, + "id": 1474, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -21443,7 +21443,7 @@ ], "signatures": [ { - "id": 1472, + "id": 1475, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -21473,7 +21473,7 @@ } }, { - "id": 1438, + "id": 1441, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -21489,7 +21489,7 @@ ], "signatures": [ { - "id": 1439, + "id": 1442, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -21500,19 +21500,19 @@ }, "typeParameter": [ { - "id": 1440, + "id": 1443, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2016, + "id": 2019, "name": "HostEvent" } }, { - "id": 1441, + "id": 1444, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -21521,7 +21521,7 @@ ], "parameters": [ { - "id": 1442, + "id": 1445, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21535,7 +21535,7 @@ } }, { - "id": 1443, + "id": 1446, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -21592,7 +21592,7 @@ } }, { - "id": 1444, + "id": 1447, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -21608,7 +21608,7 @@ ], "signatures": [ { - "id": 1445, + "id": 1448, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -21619,21 +21619,21 @@ }, "typeParameter": [ { - "id": 1446, + "id": 1449, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2875, + "id": 2878, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1447, + "id": 1450, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -21647,7 +21647,7 @@ } }, { - "id": 1448, + "id": 1451, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -21700,29 +21700,29 @@ "title": "Constructors", "kind": 512, "children": [ - 1318 + 1321 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1461, - 1480, - 1325, - 1475, - 1455, - 1463, - 1473, - 1420, - 1414, - 1451, - 1465, - 1327, - 1469, - 1471, - 1438, - 1444 + 1464, + 1483, + 1328, + 1478, + 1458, + 1466, + 1476, + 1423, + 1417, + 1454, + 1468, + 1330, + 1472, + 1474, + 1441, + 1447 ] } ], @@ -21742,13 +21742,13 @@ "extendedBy": [ { "type": "reference", - "id": 1563, + "id": 1566, "name": "ConversationEmbed" } ] }, { - "id": 2501, + "id": 2504, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -21764,7 +21764,7 @@ }, "children": [ { - "id": 2539, + "id": 2542, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -21795,20 +21795,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2540, + "id": 2543, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2541, + "id": 2544, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2542, + "id": 2545, "name": "key", "kind": 32768, "flags": {}, @@ -21844,7 +21844,7 @@ } }, { - "id": 2563, + "id": 2566, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -21886,7 +21886,7 @@ } }, { - "id": 2521, + "id": 2524, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -21923,7 +21923,7 @@ } }, { - "id": 2560, + "id": 2563, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -21953,7 +21953,7 @@ ], "type": { "type": "reference", - "id": 2229, + "id": 2232, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -21962,7 +21962,7 @@ } }, { - "id": 2580, + "id": 2583, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -22000,7 +22000,7 @@ } }, { - "id": 2557, + "id": 2560, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -22041,7 +22041,7 @@ } }, { - "id": 2543, + "id": 2546, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -22070,7 +22070,7 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2634, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -22079,7 +22079,7 @@ } }, { - "id": 2522, + "id": 2525, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -22113,12 +22113,12 @@ ], "type": { "type": "reference", - "id": 2888, + "id": 2891, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2564, + "id": 2567, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -22160,7 +22160,7 @@ } }, { - "id": 2504, + "id": 2507, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -22198,7 +22198,7 @@ } }, { - "id": 2551, + "id": 2554, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -22236,7 +22236,7 @@ } }, { - "id": 2535, + "id": 2538, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -22274,7 +22274,7 @@ } }, { - "id": 2534, + "id": 2537, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -22306,7 +22306,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -22316,7 +22316,7 @@ } }, { - "id": 2520, + "id": 2523, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -22354,7 +22354,7 @@ } }, { - "id": 2547, + "id": 2550, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -22395,7 +22395,7 @@ } }, { - "id": 2574, + "id": 2577, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -22437,7 +22437,7 @@ } }, { - "id": 2579, + "id": 2582, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -22479,7 +22479,7 @@ } }, { - "id": 2565, + "id": 2568, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -22521,7 +22521,7 @@ } }, { - "id": 2505, + "id": 2508, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -22557,7 +22557,7 @@ } }, { - "id": 2517, + "id": 2520, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -22595,7 +22595,7 @@ } }, { - "id": 2548, + "id": 2551, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -22633,7 +22633,7 @@ } }, { - "id": 2561, + "id": 2564, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -22671,7 +22671,7 @@ } }, { - "id": 2562, + "id": 2565, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -22709,7 +22709,7 @@ } }, { - "id": 2550, + "id": 2553, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -22746,7 +22746,7 @@ } }, { - "id": 2531, + "id": 2534, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -22776,7 +22776,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2593, "name": "FrameParams" }, "inheritedFrom": { @@ -22785,7 +22785,7 @@ } }, { - "id": 2518, + "id": 2521, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -22819,7 +22819,7 @@ } }, { - "id": 2536, + "id": 2539, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -22855,7 +22855,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -22865,7 +22865,7 @@ } }, { - "id": 2569, + "id": 2572, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -22897,7 +22897,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2596, + "id": 2599, "name": "HomeLeftNavItem" } }, @@ -22907,7 +22907,7 @@ } }, { - "id": 2567, + "id": 2570, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -22939,7 +22939,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2607, + "id": 2610, "name": "HomepageModule" } }, @@ -22949,7 +22949,7 @@ } }, { - "id": 2566, + "id": 2569, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -22981,7 +22981,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2882, + "id": 2885, "name": "ListPageColumns" } }, @@ -22991,7 +22991,7 @@ } }, { - "id": 2509, + "id": 2512, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -23029,7 +23029,7 @@ } }, { - "id": 2506, + "id": 2509, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -23067,7 +23067,7 @@ } }, { - "id": 2503, + "id": 2506, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -23105,7 +23105,7 @@ } }, { - "id": 2577, + "id": 2580, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -23147,7 +23147,7 @@ } }, { - "id": 2570, + "id": 2573, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -23189,7 +23189,7 @@ } }, { - "id": 2508, + "id": 2511, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -23227,7 +23227,7 @@ } }, { - "id": 2507, + "id": 2510, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -23265,7 +23265,7 @@ } }, { - "id": 2515, + "id": 2518, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -23302,7 +23302,7 @@ } }, { - "id": 2510, + "id": 2513, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -23340,7 +23340,7 @@ } }, { - "id": 2514, + "id": 2517, "name": "hideTagFilterChips", "kind": 1024, "kindString": "Property", @@ -23374,7 +23374,7 @@ } }, { - "id": 2524, + "id": 2527, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -23400,12 +23400,12 @@ ], "type": { "type": "reference", - "id": 2840, + "id": 2843, "name": "HomePageSearchBarMode" } }, { - "id": 2544, + "id": 2547, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -23443,7 +23443,7 @@ } }, { - "id": 2582, + "id": 2585, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -23481,7 +23481,7 @@ } }, { - "id": 2584, + "id": 2587, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -23519,7 +23519,7 @@ } }, { - "id": 2583, + "id": 2586, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -23557,7 +23557,7 @@ } }, { - "id": 2575, + "id": 2578, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -23599,7 +23599,7 @@ } }, { - "id": 2573, + "id": 2576, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -23637,7 +23637,7 @@ } }, { - "id": 2526, + "id": 2529, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -23671,7 +23671,7 @@ } }, { - "id": 2523, + "id": 2526, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -23700,7 +23700,7 @@ } }, { - "id": 2527, + "id": 2530, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -23734,7 +23734,7 @@ } }, { - "id": 2525, + "id": 2528, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -23772,7 +23772,7 @@ } }, { - "id": 2528, + "id": 2531, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -23809,7 +23809,7 @@ } }, { - "id": 2529, + "id": 2532, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -23843,7 +23843,7 @@ } }, { - "id": 2553, + "id": 2556, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -23881,7 +23881,7 @@ } }, { - "id": 2581, + "id": 2584, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -23919,7 +23919,7 @@ } }, { - "id": 2538, + "id": 2541, "name": "locale", "kind": 1024, "kindString": "Property", @@ -23957,7 +23957,7 @@ } }, { - "id": 2519, + "id": 2522, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -23995,7 +23995,7 @@ } }, { - "id": 2552, + "id": 2555, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -24033,7 +24033,7 @@ } }, { - "id": 2512, + "id": 2515, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -24063,12 +24063,12 @@ ], "type": { "type": "reference", - "id": 1882, + "id": 1885, "name": "Page" } }, { - "id": 2511, + "id": 2514, "name": "path", "kind": 1024, "kindString": "Property", @@ -24102,7 +24102,7 @@ } }, { - "id": 2546, + "id": 2549, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -24140,7 +24140,7 @@ } }, { - "id": 2554, + "id": 2557, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -24178,7 +24178,7 @@ } }, { - "id": 2568, + "id": 2571, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -24210,7 +24210,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2607, + "id": 2610, "name": "HomepageModule" } }, @@ -24220,7 +24220,7 @@ } }, { - "id": 2558, + "id": 2561, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -24252,7 +24252,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1903, + "id": 1906, "name": "RuntimeFilter" } }, @@ -24262,7 +24262,7 @@ } }, { - "id": 2559, + "id": 2562, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -24294,7 +24294,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2814, + "id": 2817, "name": "RuntimeParameter" } }, @@ -24304,7 +24304,7 @@ } }, { - "id": 2556, + "id": 2559, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -24341,7 +24341,7 @@ } }, { - "id": 2572, + "id": 2575, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -24383,7 +24383,7 @@ } }, { - "id": 2578, + "id": 2581, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -24425,7 +24425,7 @@ } }, { - "id": 2571, + "id": 2574, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -24467,7 +24467,7 @@ } }, { - "id": 2576, + "id": 2579, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -24509,7 +24509,7 @@ } }, { - "id": 2502, + "id": 2505, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -24547,7 +24547,7 @@ } }, { - "id": 2513, + "id": 2516, "name": "tag", "kind": 1024, "kindString": "Property", @@ -24581,7 +24581,7 @@ } }, { - "id": 2537, + "id": 2540, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -24617,7 +24617,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -24632,79 +24632,79 @@ "title": "Properties", "kind": 1024, "children": [ - 2539, + 2542, + 2566, + 2524, 2563, - 2521, + 2583, 2560, - 2580, - 2557, - 2543, - 2522, - 2564, - 2504, - 2551, - 2535, - 2534, + 2546, + 2525, + 2567, + 2507, + 2554, + 2538, + 2537, + 2523, + 2550, + 2577, + 2582, + 2568, + 2508, 2520, - 2547, - 2574, - 2579, + 2551, + 2564, 2565, - 2505, - 2517, - 2548, - 2561, - 2562, - 2550, - 2531, - 2518, - 2536, + 2553, + 2534, + 2521, + 2539, + 2572, + 2570, 2569, - 2567, - 2566, + 2512, 2509, 2506, - 2503, - 2577, - 2570, - 2508, - 2507, - 2515, - 2510, - 2514, - 2524, - 2544, - 2582, - 2584, - 2583, - 2575, + 2580, 2573, - 2526, - 2523, + 2511, + 2510, + 2518, + 2513, + 2517, 2527, - 2525, - 2528, + 2547, + 2585, + 2587, + 2586, + 2578, + 2576, 2529, - 2553, - 2581, - 2538, - 2519, - 2552, - 2512, - 2511, - 2546, - 2554, - 2568, - 2558, - 2559, + 2526, + 2530, + 2528, + 2531, + 2532, 2556, - 2572, - 2578, + 2584, + 2541, + 2522, + 2555, + 2515, + 2514, + 2549, + 2557, 2571, - 2576, - 2502, - 2513, - 2537 + 2561, + 2562, + 2559, + 2575, + 2581, + 2574, + 2579, + 2505, + 2516, + 2540 ] } ], @@ -24723,7 +24723,7 @@ ] }, { - "id": 1746, + "id": 1749, "name": "AuthEventEmitter", "kind": 256, "kindString": "Interface", @@ -24739,14 +24739,14 @@ }, "children": [ { - "id": 1783, + "id": 1786, "name": "emit", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1784, + "id": 1787, "name": "emit", "kind": 4096, "kindString": "Call signature", @@ -24756,19 +24756,19 @@ }, "parameters": [ { - "id": 1785, + "id": 1788, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1745, + "id": 1748, "name": "TRIGGER_SSO_POPUP" } }, { - "id": 1786, + "id": 1789, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -24792,14 +24792,14 @@ ] }, { - "id": 1787, + "id": 1790, "name": "off", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1788, + "id": 1791, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -24809,7 +24809,7 @@ }, "parameters": [ { - "id": 1789, + "id": 1792, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24817,12 +24817,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1736, + "id": 1739, "name": "AuthStatus" } }, { - "id": 1790, + "id": 1793, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24831,21 +24831,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1791, + "id": 1794, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1792, + "id": 1795, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1793, + "id": 1796, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -24871,7 +24871,7 @@ } }, { - "id": 1794, + "id": 1797, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -24883,7 +24883,7 @@ } }, { - "id": 1795, + "id": 1798, "name": "once", "kind": 32768, "kindString": "Parameter", @@ -24899,21 +24899,21 @@ ], "type": { "type": "reference", - "id": 1746, + "id": 1749, "name": "AuthEventEmitter" } } ] }, { - "id": 1747, + "id": 1750, "name": "on", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1748, + "id": 1751, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -24923,7 +24923,7 @@ }, "parameters": [ { - "id": 1749, + "id": 1752, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24931,12 +24931,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1737, + "id": 1740, "name": "FAILURE" } }, { - "id": 1750, + "id": 1753, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24947,28 +24947,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1751, + "id": 1754, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1752, + "id": 1755, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1753, + "id": 1756, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1729, + "id": 1732, "name": "AuthFailureType" } } @@ -24985,12 +24985,12 @@ ], "type": { "type": "reference", - "id": 1746, + "id": 1749, "name": "AuthEventEmitter" } }, { - "id": 1754, + "id": 1757, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -25000,7 +25000,7 @@ }, "parameters": [ { - "id": 1755, + "id": 1758, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25011,29 +25011,29 @@ "types": [ { "type": "reference", - "id": 1738, + "id": 1741, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1741, + "id": 1744, "name": "LOGOUT" }, { "type": "reference", - "id": 1742, + "id": 1745, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1743, + "id": 1746, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1756, + "id": 1759, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25044,14 +25044,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1757, + "id": 1760, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1758, + "id": 1761, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -25068,31 +25068,31 @@ ], "type": { "type": "reference", - "id": 1746, + "id": 1749, "name": "AuthEventEmitter" } }, { - "id": 1759, + "id": 1762, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1760, + "id": 1763, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1740, + "id": 1743, "name": "SUCCESS" } }, { - "id": 1761, + "id": 1764, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25100,21 +25100,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1762, + "id": 1765, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1763, + "id": 1766, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1764, + "id": 1767, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -25137,40 +25137,40 @@ ], "type": { "type": "reference", - "id": 1746, + "id": 1749, "name": "AuthEventEmitter" } } ] }, { - "id": 1765, + "id": 1768, "name": "once", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1766, + "id": 1769, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1767, + "id": 1770, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1737, + "id": 1740, "name": "FAILURE" } }, { - "id": 1768, + "id": 1771, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25178,28 +25178,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1769, + "id": 1772, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1770, + "id": 1773, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1771, + "id": 1774, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1729, + "id": 1732, "name": "AuthFailureType" } } @@ -25216,19 +25216,19 @@ ], "type": { "type": "reference", - "id": 1746, + "id": 1749, "name": "AuthEventEmitter" } }, { - "id": 1772, + "id": 1775, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1773, + "id": 1776, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25238,29 +25238,29 @@ "types": [ { "type": "reference", - "id": 1738, + "id": 1741, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1741, + "id": 1744, "name": "LOGOUT" }, { "type": "reference", - "id": 1742, + "id": 1745, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1743, + "id": 1746, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1774, + "id": 1777, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25268,14 +25268,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1775, + "id": 1778, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1776, + "id": 1779, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -25292,31 +25292,31 @@ ], "type": { "type": "reference", - "id": 1746, + "id": 1749, "name": "AuthEventEmitter" } }, { - "id": 1777, + "id": 1780, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1778, + "id": 1781, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1740, + "id": 1743, "name": "SUCCESS" } }, { - "id": 1779, + "id": 1782, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25324,21 +25324,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1780, + "id": 1783, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1781, + "id": 1784, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1782, + "id": 1785, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -25361,21 +25361,21 @@ ], "type": { "type": "reference", - "id": 1746, + "id": 1749, "name": "AuthEventEmitter" } } ] }, { - "id": 1796, + "id": 1799, "name": "removeAllListeners", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1797, + "id": 1800, "name": "removeAllListeners", "kind": 4096, "kindString": "Call signature", @@ -25385,7 +25385,7 @@ }, "parameters": [ { - "id": 1798, + "id": 1801, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25395,14 +25395,14 @@ }, "type": { "type": "reference", - "id": 1736, + "id": 1739, "name": "AuthStatus" } } ], "type": { "type": "reference", - "id": 1746, + "id": 1749, "name": "AuthEventEmitter" } } @@ -25414,11 +25414,11 @@ "title": "Methods", "kind": 2048, "children": [ - 1783, - 1787, - 1747, - 1765, - 1796 + 1786, + 1790, + 1750, + 1768, + 1799 ] } ], @@ -25431,7 +25431,7 @@ ] }, { - "id": 1257, + "id": 1260, "name": "BodylessConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -25451,7 +25451,7 @@ }, "children": [ { - "id": 1268, + "id": 1271, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -25482,20 +25482,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1269, + "id": 1272, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1270, + "id": 1273, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1271, + "id": 1274, "name": "key", "kind": 32768, "flags": {}, @@ -25527,12 +25527,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1239, + "id": 1242, "name": "SpotterAgentEmbedViewConfig.additionalFlags" } }, { - "id": 1285, + "id": 1288, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -25569,12 +25569,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1256, + "id": 1259, "name": "SpotterAgentEmbedViewConfig.customActions" } }, { - "id": 1272, + "id": 1275, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -25603,17 +25603,17 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2634, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1243, + "id": 1246, "name": "SpotterAgentEmbedViewConfig.customizations" } }, { - "id": 1280, + "id": 1283, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -25647,12 +25647,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1251, + "id": 1254, "name": "SpotterAgentEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1264, + "id": 1267, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -25686,12 +25686,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1235, + "id": 1238, "name": "SpotterAgentEmbedViewConfig.disabledActionReason" } }, { - "id": 1263, + "id": 1266, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -25723,18 +25723,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1234, + "id": 1237, "name": "SpotterAgentEmbedViewConfig.disabledActions" } }, { - "id": 1276, + "id": 1279, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -25771,12 +25771,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1247, + "id": 1250, "name": "SpotterAgentEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1277, + "id": 1280, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -25810,12 +25810,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1248, + "id": 1251, "name": "SpotterAgentEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1279, + "id": 1282, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -25848,12 +25848,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1250, + "id": 1253, "name": "SpotterAgentEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1260, + "id": 1263, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -25883,17 +25883,17 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2593, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1231, + "id": 1234, "name": "SpotterAgentEmbedViewConfig.frameParams" } }, { - "id": 1265, + "id": 1268, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -25929,18 +25929,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1236, + "id": 1239, "name": "SpotterAgentEmbedViewConfig.hiddenActions" } }, { - "id": 1273, + "id": 1276, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -25974,12 +25974,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1244, + "id": 1247, "name": "SpotterAgentEmbedViewConfig.insertAsSibling" } }, { - "id": 1282, + "id": 1285, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -26013,12 +26013,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1253, + "id": 1256, "name": "SpotterAgentEmbedViewConfig.linkOverride" } }, { - "id": 1267, + "id": 1270, "name": "locale", "kind": 1024, "kindString": "Property", @@ -26052,12 +26052,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1238, + "id": 1241, "name": "SpotterAgentEmbedViewConfig.locale" } }, { - "id": 1281, + "id": 1284, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -26091,12 +26091,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1252, + "id": 1255, "name": "SpotterAgentEmbedViewConfig.overrideOrgId" } }, { - "id": 1275, + "id": 1278, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -26130,12 +26130,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1246, + "id": 1249, "name": "SpotterAgentEmbedViewConfig.preRenderId" } }, { - "id": 1284, + "id": 1287, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -26168,12 +26168,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1255, + "id": 1258, "name": "SpotterAgentEmbedViewConfig.showAlerts" } }, { - "id": 1266, + "id": 1269, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -26209,24 +26209,24 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1237, + "id": 1240, "name": "SpotterAgentEmbedViewConfig.visibleActions" } }, { - "id": 1258, + "id": 1261, "name": "worksheetId", "kind": 1024, "kindString": "Property", "flags": {}, "comment": { - "shortText": "The ID of the worksheet to use for the conversation." + "shortText": "The ID of the Model to use for the conversation." }, "sources": [ { @@ -26241,7 +26241,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1229, + "id": 1232, "name": "SpotterAgentEmbedViewConfig.worksheetId" } } @@ -26251,25 +26251,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1268, - 1285, - 1272, + 1271, + 1288, + 1275, + 1283, + 1267, + 1266, + 1279, 1280, - 1264, + 1282, 1263, + 1268, 1276, - 1277, - 1279, - 1260, - 1265, - 1273, - 1282, - 1267, - 1281, - 1275, + 1285, + 1270, 1284, - 1266, - 1258 + 1278, + 1287, + 1269, + 1261 ] } ], @@ -26283,13 +26283,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1228, + "id": 1231, "name": "SpotterAgentEmbedViewConfig" } ] }, { - "id": 1523, + "id": 1526, "name": "ConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -26309,7 +26309,7 @@ }, "children": [ { - "id": 1545, + "id": 1548, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -26340,20 +26340,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1546, + "id": 1549, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1547, + "id": 1550, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1548, + "id": 1551, "name": "key", "kind": 32768, "flags": {}, @@ -26385,12 +26385,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1505, + "id": 1508, "name": "SpotterEmbedViewConfig.additionalFlags" } }, { - "id": 1562, + "id": 1565, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -26427,12 +26427,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1522, + "id": 1525, "name": "SpotterEmbedViewConfig.customActions" } }, { - "id": 1549, + "id": 1552, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -26461,17 +26461,17 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2634, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1509, + "id": 1512, "name": "SpotterEmbedViewConfig.customizations" } }, { - "id": 1528, + "id": 1531, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -26509,12 +26509,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1488, + "id": 1491, "name": "SpotterEmbedViewConfig.dataPanelV2" } }, { - "id": 1557, + "id": 1560, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -26548,12 +26548,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1517, + "id": 1520, "name": "SpotterEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1526, + "id": 1529, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -26587,12 +26587,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1486, + "id": 1489, "name": "SpotterEmbedViewConfig.disableSourceSelection" } }, { - "id": 1541, + "id": 1544, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -26626,12 +26626,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1501, + "id": 1504, "name": "SpotterEmbedViewConfig.disabledActionReason" } }, { - "id": 1540, + "id": 1543, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -26663,18 +26663,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1500, + "id": 1503, "name": "SpotterEmbedViewConfig.disabledActions" } }, { - "id": 1553, + "id": 1556, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -26711,12 +26711,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1513, + "id": 1516, "name": "SpotterEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1535, + "id": 1538, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -26754,12 +26754,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1495, + "id": 1498, "name": "SpotterEmbedViewConfig.enablePastConversationsSidebar" } }, { - "id": 1554, + "id": 1557, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -26793,12 +26793,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1514, + "id": 1517, "name": "SpotterEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1532, + "id": 1535, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -26832,12 +26832,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1492, + "id": 1495, "name": "SpotterEmbedViewConfig.excludeRuntimeFiltersfromURL" } }, { - "id": 1534, + "id": 1537, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -26871,12 +26871,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1494, + "id": 1497, "name": "SpotterEmbedViewConfig.excludeRuntimeParametersfromURL" } }, { - "id": 1556, + "id": 1559, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -26909,12 +26909,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1516, + "id": 1519, "name": "SpotterEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1537, + "id": 1540, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -26944,17 +26944,17 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2593, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1497, + "id": 1500, "name": "SpotterEmbedViewConfig.frameParams" } }, { - "id": 1542, + "id": 1545, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -26990,18 +26990,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1502, + "id": 1505, "name": "SpotterEmbedViewConfig.hiddenActions" } }, { - "id": 1530, + "id": 1533, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -27035,12 +27035,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1490, + "id": 1493, "name": "SpotterEmbedViewConfig.hideSampleQuestions" } }, { - "id": 1527, + "id": 1530, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -27074,12 +27074,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1487, + "id": 1490, "name": "SpotterEmbedViewConfig.hideSourceSelection" } }, { - "id": 1550, + "id": 1553, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -27113,12 +27113,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1510, + "id": 1513, "name": "SpotterEmbedViewConfig.insertAsSibling" } }, { - "id": 1559, + "id": 1562, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -27152,12 +27152,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1519, + "id": 1522, "name": "SpotterEmbedViewConfig.linkOverride" } }, { - "id": 1544, + "id": 1547, "name": "locale", "kind": 1024, "kindString": "Property", @@ -27191,12 +27191,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1504, + "id": 1507, "name": "SpotterEmbedViewConfig.locale" } }, { - "id": 1558, + "id": 1561, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -27230,12 +27230,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1518, + "id": 1521, "name": "SpotterEmbedViewConfig.overrideOrgId" } }, { - "id": 1552, + "id": 1555, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -27269,12 +27269,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1512, + "id": 1515, "name": "SpotterEmbedViewConfig.preRenderId" } }, { - "id": 1531, + "id": 1534, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -27306,18 +27306,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 1903, + "id": 1906, "name": "RuntimeFilter" } }, "inheritedFrom": { "type": "reference", - "id": 1491, + "id": 1494, "name": "SpotterEmbedViewConfig.runtimeFilters" } }, { - "id": 1533, + "id": 1536, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -27349,18 +27349,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2814, + "id": 2817, "name": "RuntimeParameter" } }, "inheritedFrom": { "type": "reference", - "id": 1493, + "id": 1496, "name": "SpotterEmbedViewConfig.runtimeParameters" } }, { - "id": 1525, + "id": 1528, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -27383,12 +27383,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1485, + "id": 1488, "name": "SpotterEmbedViewConfig.searchOptions" } }, { - "id": 1561, + "id": 1564, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -27421,12 +27421,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1521, + "id": 1524, "name": "SpotterEmbedViewConfig.showAlerts" } }, { - "id": 1529, + "id": 1532, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -27460,12 +27460,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1489, + "id": 1492, "name": "SpotterEmbedViewConfig.showSpotterLimitations" } }, { - "id": 1543, + "id": 1546, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -27501,18 +27501,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1503, + "id": 1506, "name": "SpotterEmbedViewConfig.visibleActions" } }, { - "id": 1524, + "id": 1527, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -27533,7 +27533,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1484, + "id": 1487, "name": "SpotterEmbedViewConfig.worksheetId" } } @@ -27543,36 +27543,36 @@ "title": "Properties", "kind": 1024, "children": [ - 1545, - 1562, - 1549, - 1528, + 1548, + 1565, + 1552, + 1531, + 1560, + 1529, + 1544, + 1543, + 1556, + 1538, 1557, - 1526, - 1541, - 1540, - 1553, 1535, - 1554, - 1532, - 1534, - 1556, 1537, - 1542, - 1530, - 1527, - 1550, 1559, - 1544, - 1558, - 1552, - 1531, + 1540, + 1545, 1533, - 1525, + 1530, + 1553, + 1562, + 1547, 1561, - 1529, - 1543, - 1524 + 1555, + 1534, + 1536, + 1528, + 1564, + 1532, + 1546, + 1527 ] } ], @@ -27586,13 +27586,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1483, + "id": 1486, "name": "SpotterEmbedViewConfig" } ] }, { - "id": 2855, + "id": 2858, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -27607,7 +27607,7 @@ }, "children": [ { - "id": 2856, + "id": 2859, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -27617,21 +27617,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5789, + "line": 5787, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2857, + "id": 2860, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2858, + "id": 2861, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -27639,18 +27639,18 @@ "sources": [ { "fileName": "types.ts", - "line": 5790, + "line": 5788, "character": 8 } ], "type": { "type": "reference", - "id": 2852, + "id": 2855, "name": "VizPoint" } }, { - "id": 2859, + "id": 2862, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -27658,7 +27658,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5791, + "line": 5789, "character": 8 } ], @@ -27666,7 +27666,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2852, + "id": 2855, "name": "VizPoint" } } @@ -27677,8 +27677,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2858, - 2859 + 2861, + 2862 ] } ] @@ -27686,7 +27686,7 @@ } }, { - "id": 2860, + "id": 2863, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -27694,21 +27694,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5793, + "line": 5791, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2861, + "id": 2864, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2869, + "id": 2872, "name": "columns", "kind": 1024, "kindString": "Property", @@ -27716,7 +27716,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5801, + "line": 5799, "character": 8 } ], @@ -27729,7 +27729,7 @@ } }, { - "id": 2870, + "id": 2873, "name": "data", "kind": 1024, "kindString": "Property", @@ -27737,7 +27737,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5802, + "line": 5800, "character": 8 } ], @@ -27750,7 +27750,7 @@ } }, { - "id": 2863, + "id": 2866, "name": "id", "kind": 1024, "kindString": "Property", @@ -27758,7 +27758,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5795, + "line": 5793, "character": 8 } ], @@ -27768,7 +27768,7 @@ } }, { - "id": 2862, + "id": 2865, "name": "name", "kind": 1024, "kindString": "Property", @@ -27776,7 +27776,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5794, + "line": 5792, "character": 8 } ], @@ -27786,7 +27786,7 @@ } }, { - "id": 2864, + "id": 2867, "name": "sources", "kind": 1024, "kindString": "Property", @@ -27794,21 +27794,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5796, + "line": 5794, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2865, + "id": 2868, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2866, + "id": 2869, "name": "header", "kind": 1024, "kindString": "Property", @@ -27816,21 +27816,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5797, + "line": 5795, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2867, + "id": 2870, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2868, + "id": 2871, "name": "guid", "kind": 1024, "kindString": "Property", @@ -27838,7 +27838,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5798, + "line": 5796, "character": 16 } ], @@ -27853,7 +27853,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2868 + 2871 ] } ] @@ -27866,7 +27866,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2866 + 2869 ] } ] @@ -27879,23 +27879,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2869, - 2870, - 2863, - 2862, - 2864 + 2872, + 2873, + 2866, + 2865, + 2867 ] } ], "indexSignature": { - "id": 2871, + "id": 2874, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2872, + "id": 2875, "name": "key", "kind": 32768, "flags": {}, @@ -27914,7 +27914,7 @@ } }, { - "id": 2873, + "id": 2876, "name": "session", "kind": 1024, "kindString": "Property", @@ -27922,18 +27922,18 @@ "sources": [ { "fileName": "types.ts", - "line": 5805, + "line": 5803, "character": 4 } ], "type": { "type": "reference", - "id": 1872, + "id": 1875, "name": "SessionInterface" } }, { - "id": 2874, + "id": 2877, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -27943,7 +27943,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5806, + "line": 5804, "character": 4 } ], @@ -27958,23 +27958,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2856, - 2860, - 2873, - 2874 + 2859, + 2863, + 2876, + 2877 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5788, + "line": 5786, "character": 17 } ] }, { - "id": 2653, + "id": 2656, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -27984,7 +27984,7 @@ }, "children": [ { - "id": 2707, + "id": 2710, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -28007,7 +28007,7 @@ } }, { - "id": 2706, + "id": 2709, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -28030,7 +28030,7 @@ } }, { - "id": 2676, + "id": 2679, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -28053,7 +28053,7 @@ } }, { - "id": 2677, + "id": 2680, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -28076,7 +28076,7 @@ } }, { - "id": 2679, + "id": 2682, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -28099,7 +28099,7 @@ } }, { - "id": 2678, + "id": 2681, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -28122,7 +28122,7 @@ } }, { - "id": 2658, + "id": 2661, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -28145,7 +28145,7 @@ } }, { - "id": 2719, + "id": 2722, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -28168,7 +28168,7 @@ } }, { - "id": 2720, + "id": 2723, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -28191,7 +28191,7 @@ } }, { - "id": 2717, + "id": 2720, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -28214,7 +28214,7 @@ } }, { - "id": 2718, + "id": 2721, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -28237,7 +28237,7 @@ } }, { - "id": 2681, + "id": 2684, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -28260,7 +28260,7 @@ } }, { - "id": 2686, + "id": 2689, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -28283,7 +28283,7 @@ } }, { - "id": 2683, + "id": 2686, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -28306,7 +28306,7 @@ } }, { - "id": 2685, + "id": 2688, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -28329,7 +28329,7 @@ } }, { - "id": 2684, + "id": 2687, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -28352,7 +28352,7 @@ } }, { - "id": 2682, + "id": 2685, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -28375,7 +28375,7 @@ } }, { - "id": 2691, + "id": 2694, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -28398,7 +28398,7 @@ } }, { - "id": 2688, + "id": 2691, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -28421,7 +28421,7 @@ } }, { - "id": 2690, + "id": 2693, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -28444,7 +28444,7 @@ } }, { - "id": 2689, + "id": 2692, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -28467,7 +28467,7 @@ } }, { - "id": 2687, + "id": 2690, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -28490,7 +28490,7 @@ } }, { - "id": 2695, + "id": 2698, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -28513,7 +28513,7 @@ } }, { - "id": 2694, + "id": 2697, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -28536,7 +28536,7 @@ } }, { - "id": 2693, + "id": 2696, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -28559,7 +28559,7 @@ } }, { - "id": 2692, + "id": 2695, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -28582,7 +28582,7 @@ } }, { - "id": 2680, + "id": 2683, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -28605,7 +28605,7 @@ } }, { - "id": 2813, + "id": 2816, "name": "--ts-var-cca-modal-summary-header-background", "kind": 1024, "kindString": "Property", @@ -28628,7 +28628,7 @@ } }, { - "id": 2808, + "id": 2811, "name": "--ts-var-change-analysis-insights-background", "kind": 1024, "kindString": "Property", @@ -28651,7 +28651,7 @@ } }, { - "id": 2803, + "id": 2806, "name": "--ts-var-chart-heatmap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28674,7 +28674,7 @@ } }, { - "id": 2802, + "id": 2805, "name": "--ts-var-chart-heatmap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28697,7 +28697,7 @@ } }, { - "id": 2805, + "id": 2808, "name": "--ts-var-chart-treemap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28720,7 +28720,7 @@ } }, { - "id": 2804, + "id": 2807, "name": "--ts-var-chart-treemap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28743,7 +28743,7 @@ } }, { - "id": 2742, + "id": 2745, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -28766,7 +28766,7 @@ } }, { - "id": 2745, + "id": 2748, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -28789,7 +28789,7 @@ } }, { - "id": 2740, + "id": 2743, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -28812,7 +28812,7 @@ } }, { - "id": 2743, + "id": 2746, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -28835,7 +28835,7 @@ } }, { - "id": 2744, + "id": 2747, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -28858,7 +28858,7 @@ } }, { - "id": 2739, + "id": 2742, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -28881,7 +28881,7 @@ } }, { - "id": 2741, + "id": 2744, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -28904,7 +28904,7 @@ } }, { - "id": 2712, + "id": 2715, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -28927,7 +28927,7 @@ } }, { - "id": 2711, + "id": 2714, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -28950,7 +28950,7 @@ } }, { - "id": 2714, + "id": 2717, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -28973,7 +28973,7 @@ } }, { - "id": 2713, + "id": 2716, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -28996,7 +28996,7 @@ } }, { - "id": 2710, + "id": 2713, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -29019,7 +29019,7 @@ } }, { - "id": 2708, + "id": 2711, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -29042,7 +29042,7 @@ } }, { - "id": 2709, + "id": 2712, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -29065,7 +29065,7 @@ } }, { - "id": 2715, + "id": 2718, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -29088,7 +29088,7 @@ } }, { - "id": 2716, + "id": 2719, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -29111,7 +29111,7 @@ } }, { - "id": 2727, + "id": 2730, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -29134,7 +29134,7 @@ } }, { - "id": 2728, + "id": 2731, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -29157,7 +29157,7 @@ } }, { - "id": 2731, + "id": 2734, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -29180,7 +29180,7 @@ } }, { - "id": 2729, + "id": 2732, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -29203,7 +29203,7 @@ } }, { - "id": 2730, + "id": 2733, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -29226,7 +29226,7 @@ } }, { - "id": 2738, + "id": 2741, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -29249,7 +29249,7 @@ } }, { - "id": 2737, + "id": 2740, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -29272,7 +29272,7 @@ } }, { - "id": 2736, + "id": 2739, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -29295,7 +29295,7 @@ } }, { - "id": 2735, + "id": 2738, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -29318,7 +29318,7 @@ } }, { - "id": 2801, + "id": 2804, "name": "--ts-var-kpi-analyze-text-color", "kind": 1024, "kindString": "Property", @@ -29341,7 +29341,7 @@ } }, { - "id": 2800, + "id": 2803, "name": "--ts-var-kpi-comparison-color", "kind": 1024, "kindString": "Property", @@ -29364,7 +29364,7 @@ } }, { - "id": 2799, + "id": 2802, "name": "--ts-var-kpi-hero-color", "kind": 1024, "kindString": "Property", @@ -29387,7 +29387,7 @@ } }, { - "id": 2807, + "id": 2810, "name": "--ts-var-kpi-negative-change-color", "kind": 1024, "kindString": "Property", @@ -29410,7 +29410,7 @@ } }, { - "id": 2806, + "id": 2809, "name": "--ts-var-kpi-positive-change-color", "kind": 1024, "kindString": "Property", @@ -29433,7 +29433,7 @@ } }, { - "id": 2733, + "id": 2736, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -29456,7 +29456,7 @@ } }, { - "id": 2732, + "id": 2735, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -29479,7 +29479,7 @@ } }, { - "id": 2760, + "id": 2763, "name": "--ts-var-liveboard-answer-viz-padding", "kind": 1024, "kindString": "Property", @@ -29502,7 +29502,7 @@ } }, { - "id": 2773, + "id": 2776, "name": "--ts-var-liveboard-chip--active-background", "kind": 1024, "kindString": "Property", @@ -29526,7 +29526,7 @@ } }, { - "id": 2772, + "id": 2775, "name": "--ts-var-liveboard-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -29550,7 +29550,7 @@ } }, { - "id": 2770, + "id": 2773, "name": "--ts-var-liveboard-chip-background", "kind": 1024, "kindString": "Property", @@ -29574,7 +29574,7 @@ } }, { - "id": 2771, + "id": 2774, "name": "--ts-var-liveboard-chip-color", "kind": 1024, "kindString": "Property", @@ -29598,7 +29598,7 @@ } }, { - "id": 2778, + "id": 2781, "name": "--ts-var-liveboard-cross-filter-layout-background", "kind": 1024, "kindString": "Property", @@ -29621,7 +29621,7 @@ } }, { - "id": 2776, + "id": 2779, "name": "--ts-var-liveboard-dual-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -29644,7 +29644,7 @@ } }, { - "id": 2775, + "id": 2778, "name": "--ts-var-liveboard-edit-bar-background", "kind": 1024, "kindString": "Property", @@ -29667,7 +29667,7 @@ } }, { - "id": 2761, + "id": 2764, "name": "--ts-var-liveboard-group-background", "kind": 1024, "kindString": "Property", @@ -29691,7 +29691,7 @@ } }, { - "id": 2762, + "id": 2765, "name": "--ts-var-liveboard-group-border-color", "kind": 1024, "kindString": "Property", @@ -29715,7 +29715,7 @@ } }, { - "id": 2766, + "id": 2769, "name": "--ts-var-liveboard-group-description-font-color", "kind": 1024, "kindString": "Property", @@ -29739,7 +29739,7 @@ } }, { - "id": 2754, + "id": 2757, "name": "--ts-var-liveboard-group-padding", "kind": 1024, "kindString": "Property", @@ -29763,7 +29763,7 @@ } }, { - "id": 2769, + "id": 2772, "name": "--ts-var-liveboard-group-tile-background", "kind": 1024, "kindString": "Property", @@ -29787,7 +29787,7 @@ } }, { - "id": 2768, + "id": 2771, "name": "--ts-var-liveboard-group-tile-description-font-color", "kind": 1024, "kindString": "Property", @@ -29811,7 +29811,7 @@ } }, { - "id": 2759, + "id": 2762, "name": "--ts-var-liveboard-group-tile-padding", "kind": 1024, "kindString": "Property", @@ -29835,7 +29835,7 @@ } }, { - "id": 2767, + "id": 2770, "name": "--ts-var-liveboard-group-tile-title-font-color", "kind": 1024, "kindString": "Property", @@ -29859,7 +29859,7 @@ } }, { - "id": 2757, + "id": 2760, "name": "--ts-var-liveboard-group-tile-title-font-size", "kind": 1024, "kindString": "Property", @@ -29883,7 +29883,7 @@ } }, { - "id": 2758, + "id": 2761, "name": "--ts-var-liveboard-group-tile-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29907,7 +29907,7 @@ } }, { - "id": 2765, + "id": 2768, "name": "--ts-var-liveboard-group-title-font-color", "kind": 1024, "kindString": "Property", @@ -29931,7 +29931,7 @@ } }, { - "id": 2755, + "id": 2758, "name": "--ts-var-liveboard-group-title-font-size", "kind": 1024, "kindString": "Property", @@ -29955,7 +29955,7 @@ } }, { - "id": 2756, + "id": 2759, "name": "--ts-var-liveboard-group-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29979,7 +29979,7 @@ } }, { - "id": 2792, + "id": 2795, "name": "--ts-var-liveboard-header-action-button-active-color", "kind": 1024, "kindString": "Property", @@ -30002,7 +30002,7 @@ } }, { - "id": 2789, + "id": 2792, "name": "--ts-var-liveboard-header-action-button-background", "kind": 1024, "kindString": "Property", @@ -30025,7 +30025,7 @@ } }, { - "id": 2790, + "id": 2793, "name": "--ts-var-liveboard-header-action-button-font-color", "kind": 1024, "kindString": "Property", @@ -30048,7 +30048,7 @@ } }, { - "id": 2791, + "id": 2794, "name": "--ts-var-liveboard-header-action-button-hover-color", "kind": 1024, "kindString": "Property", @@ -30071,7 +30071,7 @@ } }, { - "id": 2747, + "id": 2750, "name": "--ts-var-liveboard-header-background", "kind": 1024, "kindString": "Property", @@ -30094,7 +30094,7 @@ } }, { - "id": 2798, + "id": 2801, "name": "--ts-var-liveboard-header-badge-active-color", "kind": 1024, "kindString": "Property", @@ -30117,7 +30117,7 @@ } }, { - "id": 2793, + "id": 2796, "name": "--ts-var-liveboard-header-badge-background", "kind": 1024, "kindString": "Property", @@ -30140,7 +30140,7 @@ } }, { - "id": 2794, + "id": 2797, "name": "--ts-var-liveboard-header-badge-font-color", "kind": 1024, "kindString": "Property", @@ -30163,7 +30163,7 @@ } }, { - "id": 2797, + "id": 2800, "name": "--ts-var-liveboard-header-badge-hover-color", "kind": 1024, "kindString": "Property", @@ -30186,7 +30186,7 @@ } }, { - "id": 2795, + "id": 2798, "name": "--ts-var-liveboard-header-badge-modified-background", "kind": 1024, "kindString": "Property", @@ -30209,7 +30209,7 @@ } }, { - "id": 2796, + "id": 2799, "name": "--ts-var-liveboard-header-badge-modified-font-color", "kind": 1024, "kindString": "Property", @@ -30232,7 +30232,7 @@ } }, { - "id": 2748, + "id": 2751, "name": "--ts-var-liveboard-header-font-color", "kind": 1024, "kindString": "Property", @@ -30255,7 +30255,7 @@ } }, { - "id": 2746, + "id": 2749, "name": "--ts-var-liveboard-layout-background", "kind": 1024, "kindString": "Property", @@ -30278,7 +30278,7 @@ } }, { - "id": 2764, + "id": 2767, "name": "--ts-var-liveboard-notetitle-body-font-color", "kind": 1024, "kindString": "Property", @@ -30301,7 +30301,7 @@ } }, { - "id": 2763, + "id": 2766, "name": "--ts-var-liveboard-notetitle-heading-font-color", "kind": 1024, "kindString": "Property", @@ -30324,7 +30324,7 @@ } }, { - "id": 2777, + "id": 2780, "name": "--ts-var-liveboard-single-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -30347,7 +30347,7 @@ } }, { - "id": 2779, + "id": 2782, "name": "--ts-var-liveboard-tab-active-border-color", "kind": 1024, "kindString": "Property", @@ -30370,7 +30370,7 @@ } }, { - "id": 2780, + "id": 2783, "name": "--ts-var-liveboard-tab-hover-color", "kind": 1024, "kindString": "Property", @@ -30393,7 +30393,7 @@ } }, { - "id": 2750, + "id": 2753, "name": "--ts-var-liveboard-tile-background", "kind": 1024, "kindString": "Property", @@ -30416,7 +30416,7 @@ } }, { - "id": 2749, + "id": 2752, "name": "--ts-var-liveboard-tile-border-color", "kind": 1024, "kindString": "Property", @@ -30439,7 +30439,7 @@ } }, { - "id": 2751, + "id": 2754, "name": "--ts-var-liveboard-tile-border-radius", "kind": 1024, "kindString": "Property", @@ -30462,7 +30462,7 @@ } }, { - "id": 2752, + "id": 2755, "name": "--ts-var-liveboard-tile-padding", "kind": 1024, "kindString": "Property", @@ -30485,7 +30485,7 @@ } }, { - "id": 2753, + "id": 2756, "name": "--ts-var-liveboard-tile-table-header-background", "kind": 1024, "kindString": "Property", @@ -30508,7 +30508,7 @@ } }, { - "id": 2781, + "id": 2784, "name": "--ts-var-liveboard-tile-title-fontsize", "kind": 1024, "kindString": "Property", @@ -30531,7 +30531,7 @@ } }, { - "id": 2782, + "id": 2785, "name": "--ts-var-liveboard-tile-title-fontweight", "kind": 1024, "kindString": "Property", @@ -30554,7 +30554,7 @@ } }, { - "id": 2725, + "id": 2728, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -30577,7 +30577,7 @@ } }, { - "id": 2722, + "id": 2725, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -30600,7 +30600,7 @@ } }, { - "id": 2721, + "id": 2724, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -30623,7 +30623,7 @@ } }, { - "id": 2723, + "id": 2726, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -30646,7 +30646,7 @@ } }, { - "id": 2726, + "id": 2729, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -30669,7 +30669,7 @@ } }, { - "id": 2724, + "id": 2727, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -30692,7 +30692,7 @@ } }, { - "id": 2659, + "id": 2662, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -30715,7 +30715,7 @@ } }, { - "id": 2660, + "id": 2663, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -30738,7 +30738,7 @@ } }, { - "id": 2787, + "id": 2790, "name": "--ts-var-parameter-chip-active-background", "kind": 1024, "kindString": "Property", @@ -30761,7 +30761,7 @@ } }, { - "id": 2788, + "id": 2791, "name": "--ts-var-parameter-chip-active-text-color", "kind": 1024, "kindString": "Property", @@ -30784,7 +30784,7 @@ } }, { - "id": 2783, + "id": 2786, "name": "--ts-var-parameter-chip-background", "kind": 1024, "kindString": "Property", @@ -30807,7 +30807,7 @@ } }, { - "id": 2785, + "id": 2788, "name": "--ts-var-parameter-chip-hover-background", "kind": 1024, "kindString": "Property", @@ -30830,7 +30830,7 @@ } }, { - "id": 2786, + "id": 2789, "name": "--ts-var-parameter-chip-hover-text-color", "kind": 1024, "kindString": "Property", @@ -30853,7 +30853,7 @@ } }, { - "id": 2784, + "id": 2787, "name": "--ts-var-parameter-chip-text-color", "kind": 1024, "kindString": "Property", @@ -30876,7 +30876,7 @@ } }, { - "id": 2654, + "id": 2657, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -30899,7 +30899,7 @@ } }, { - "id": 2655, + "id": 2658, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -30922,7 +30922,7 @@ } }, { - "id": 2656, + "id": 2659, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -30945,7 +30945,7 @@ } }, { - "id": 2657, + "id": 2660, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -30968,7 +30968,7 @@ } }, { - "id": 2668, + "id": 2671, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -30991,7 +30991,7 @@ } }, { - "id": 2672, + "id": 2675, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -31014,7 +31014,7 @@ } }, { - "id": 2673, + "id": 2676, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -31037,7 +31037,7 @@ } }, { - "id": 2671, + "id": 2674, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -31060,7 +31060,7 @@ } }, { - "id": 2667, + "id": 2670, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -31083,7 +31083,7 @@ } }, { - "id": 2670, + "id": 2673, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -31106,7 +31106,7 @@ } }, { - "id": 2664, + "id": 2667, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -31129,7 +31129,7 @@ } }, { - "id": 2665, + "id": 2668, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -31152,7 +31152,7 @@ } }, { - "id": 2666, + "id": 2669, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -31175,7 +31175,7 @@ } }, { - "id": 2661, + "id": 2664, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -31198,7 +31198,7 @@ } }, { - "id": 2662, + "id": 2665, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -31221,7 +31221,7 @@ } }, { - "id": 2663, + "id": 2666, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -31244,7 +31244,7 @@ } }, { - "id": 2669, + "id": 2672, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -31267,7 +31267,7 @@ } }, { - "id": 2734, + "id": 2737, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -31290,7 +31290,7 @@ } }, { - "id": 2774, + "id": 2777, "name": "--ts-var-side-panel-width", "kind": 1024, "kindString": "Property", @@ -31313,7 +31313,7 @@ } }, { - "id": 2812, + "id": 2815, "name": "--ts-var-spotiq-analyze-crosscorrelation-card-background", "kind": 1024, "kindString": "Property", @@ -31336,7 +31336,7 @@ } }, { - "id": 2809, + "id": 2812, "name": "--ts-var-spotiq-analyze-forecasting-card-background", "kind": 1024, "kindString": "Property", @@ -31359,7 +31359,7 @@ } }, { - "id": 2810, + "id": 2813, "name": "--ts-var-spotiq-analyze-outlier-card-background", "kind": 1024, "kindString": "Property", @@ -31382,7 +31382,7 @@ } }, { - "id": 2811, + "id": 2814, "name": "--ts-var-spotiq-analyze-trend-card-background", "kind": 1024, "kindString": "Property", @@ -31405,7 +31405,7 @@ } }, { - "id": 2674, + "id": 2677, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -31428,7 +31428,7 @@ } }, { - "id": 2675, + "id": 2678, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -31451,7 +31451,7 @@ } }, { - "id": 2704, + "id": 2707, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -31474,7 +31474,7 @@ } }, { - "id": 2702, + "id": 2705, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -31497,7 +31497,7 @@ } }, { - "id": 2703, + "id": 2706, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -31520,7 +31520,7 @@ } }, { - "id": 2699, + "id": 2702, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -31543,7 +31543,7 @@ } }, { - "id": 2700, + "id": 2703, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -31566,7 +31566,7 @@ } }, { - "id": 2701, + "id": 2704, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -31589,7 +31589,7 @@ } }, { - "id": 2705, + "id": 2708, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -31612,7 +31612,7 @@ } }, { - "id": 2696, + "id": 2699, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -31635,7 +31635,7 @@ } }, { - "id": 2697, + "id": 2700, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -31658,7 +31658,7 @@ } }, { - "id": 2698, + "id": 2701, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -31686,166 +31686,166 @@ "title": "Properties", "kind": 1024, "children": [ - 2707, - 2706, - 2676, - 2677, + 2710, + 2709, 2679, - 2678, - 2658, - 2719, - 2720, - 2717, - 2718, + 2680, + 2682, 2681, - 2686, - 2683, - 2685, + 2661, + 2722, + 2723, + 2720, + 2721, 2684, - 2682, - 2691, - 2688, - 2690, 2689, + 2686, + 2688, 2687, - 2695, + 2685, 2694, + 2691, 2693, 2692, - 2680, - 2813, - 2808, - 2803, - 2802, + 2690, + 2698, + 2697, + 2696, + 2695, + 2683, + 2816, + 2811, + 2806, 2805, - 2804, - 2742, + 2808, + 2807, 2745, - 2740, + 2748, 2743, + 2746, + 2747, + 2742, 2744, - 2739, - 2741, - 2712, - 2711, - 2714, - 2713, - 2710, - 2708, - 2709, 2715, + 2714, + 2717, 2716, - 2727, - 2728, - 2731, - 2729, + 2713, + 2711, + 2712, + 2718, + 2719, 2730, + 2731, + 2734, + 2732, + 2733, + 2741, + 2740, + 2739, 2738, - 2737, + 2804, + 2803, + 2802, + 2810, + 2809, 2736, 2735, - 2801, - 2800, - 2799, - 2807, - 2806, - 2733, - 2732, - 2760, + 2763, + 2776, + 2775, 2773, + 2774, + 2781, + 2779, + 2778, + 2764, + 2765, + 2769, + 2757, 2772, - 2770, 2771, - 2778, - 2776, - 2775, - 2761, 2762, - 2766, - 2754, - 2769, + 2770, + 2760, + 2761, 2768, - 2759, - 2767, - 2757, 2758, - 2765, - 2755, - 2756, + 2759, + 2795, 2792, - 2789, - 2790, - 2791, - 2747, - 2798, 2793, 2794, - 2797, - 2795, - 2796, - 2748, - 2746, - 2764, - 2763, - 2777, - 2779, - 2780, 2750, - 2749, + 2801, + 2796, + 2797, + 2800, + 2798, + 2799, 2751, - 2752, - 2753, - 2781, + 2749, + 2767, + 2766, + 2780, 2782, - 2725, - 2722, - 2721, - 2723, - 2726, - 2724, - 2659, - 2660, - 2787, - 2788, 2783, + 2753, + 2752, + 2754, + 2755, + 2756, + 2784, 2785, + 2728, + 2725, + 2724, + 2726, + 2729, + 2727, + 2662, + 2663, + 2790, + 2791, 2786, - 2784, - 2654, - 2655, - 2656, + 2788, + 2789, + 2787, 2657, - 2668, - 2672, - 2673, + 2658, + 2659, + 2660, 2671, - 2667, + 2675, + 2676, + 2674, 2670, + 2673, + 2667, + 2668, + 2669, 2664, 2665, 2666, - 2661, - 2662, - 2663, - 2669, - 2734, - 2774, + 2672, + 2737, + 2777, + 2815, 2812, - 2809, - 2810, - 2811, - 2674, - 2675, - 2704, + 2813, + 2814, + 2677, + 2678, + 2707, + 2705, + 2706, 2702, 2703, + 2704, + 2708, 2699, 2700, - 2701, - 2705, - 2696, - 2697, - 2698 + 2701 ] } ], @@ -31858,7 +31858,7 @@ ] }, { - "id": 2641, + "id": 2644, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -31868,7 +31868,7 @@ }, "children": [ { - "id": 2643, + "id": 2646, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -31884,12 +31884,12 @@ ], "type": { "type": "reference", - "id": 2644, + "id": 2647, "name": "customCssInterface" } }, { - "id": 2642, + "id": 2645, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -31914,8 +31914,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2643, - 2642 + 2646, + 2645 ] } ], @@ -31928,7 +31928,7 @@ ] }, { - "id": 2631, + "id": 2634, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -31944,7 +31944,7 @@ }, "children": [ { - "id": 2633, + "id": 2636, "name": "content", "kind": 1024, "kindString": "Property", @@ -31961,14 +31961,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2634, + "id": 2637, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2636, + "id": 2639, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -31998,7 +31998,7 @@ } }, { - "id": 2637, + "id": 2640, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -32018,7 +32018,7 @@ } }, { - "id": 2635, + "id": 2638, "name": "strings", "kind": 1024, "kindString": "Property", @@ -32061,21 +32061,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2636, - 2637, - 2635 + 2639, + 2640, + 2638 ] } ], "indexSignature": { - "id": 2638, + "id": 2641, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2639, + "id": 2642, "name": "key", "kind": 32768, "flags": {}, @@ -32094,7 +32094,7 @@ } }, { - "id": 2640, + "id": 2643, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -32114,7 +32114,7 @@ } }, { - "id": 2632, + "id": 2635, "name": "style", "kind": 1024, "kindString": "Property", @@ -32130,7 +32130,7 @@ ], "type": { "type": "reference", - "id": 2641, + "id": 2644, "name": "CustomStyles" } } @@ -32140,9 +32140,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2633, - 2640, - 2632 + 2636, + 2643, + 2635 ] } ], @@ -32155,7 +32155,7 @@ ] }, { - "id": 2233, + "id": 2236, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -32171,7 +32171,7 @@ }, "children": [ { - "id": 2275, + "id": 2278, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -32201,20 +32201,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2276, + "id": 2279, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2277, + "id": 2280, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2278, + "id": 2281, "name": "key", "kind": 32768, "flags": {}, @@ -32246,7 +32246,7 @@ } }, { - "id": 2236, + "id": 2239, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -32269,7 +32269,7 @@ } }, { - "id": 2257, + "id": 2260, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -32311,7 +32311,7 @@ } }, { - "id": 2259, + "id": 2262, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -32340,7 +32340,7 @@ } }, { - "id": 2235, + "id": 2238, "name": "authType", "kind": 1024, "kindString": "Property", @@ -32357,12 +32357,12 @@ ], "type": { "type": "reference", - "id": 1891, + "id": 1894, "name": "AuthType" } }, { - "id": 2248, + "id": 2251, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -32391,7 +32391,7 @@ } }, { - "id": 2260, + "id": 2263, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -32424,7 +32424,7 @@ } }, { - "id": 2251, + "id": 2254, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -32453,7 +32453,7 @@ } }, { - "id": 2272, + "id": 2275, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -32482,7 +32482,7 @@ } }, { - "id": 2282, + "id": 2285, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -32518,7 +32518,7 @@ } }, { - "id": 2279, + "id": 2282, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -32561,7 +32561,7 @@ } }, { - "id": 2256, + "id": 2259, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -32586,12 +32586,12 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2634, "name": "CustomisationsInterface" } }, { - "id": 2270, + "id": 2273, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -32620,7 +32620,7 @@ } }, { - "id": 2253, + "id": 2256, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -32650,7 +32650,7 @@ } }, { - "id": 2281, + "id": 2284, "name": "disableFullscreenPresentation", "kind": 1024, "kindString": "Property", @@ -32687,7 +32687,7 @@ } }, { - "id": 2274, + "id": 2277, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -32716,7 +32716,7 @@ } }, { - "id": 2249, + "id": 2252, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -32749,7 +32749,7 @@ } }, { - "id": 2280, + "id": 2283, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -32769,7 +32769,7 @@ } }, { - "id": 2269, + "id": 2272, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -32798,7 +32798,7 @@ } }, { - "id": 2247, + "id": 2250, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -32827,7 +32827,7 @@ } }, { - "id": 2242, + "id": 2245, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -32861,7 +32861,7 @@ } }, { - "id": 2268, + "id": 2271, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -32894,12 +32894,12 @@ ], "type": { "type": "reference", - "id": 2817, + "id": 2820, "name": "LogLevel" } }, { - "id": 2250, + "id": 2253, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -32928,7 +32928,7 @@ } }, { - "id": 2241, + "id": 2244, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -32961,7 +32961,7 @@ } }, { - "id": 2271, + "id": 2274, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -32990,7 +32990,7 @@ } }, { - "id": 2240, + "id": 2243, "name": "password", "kind": 1024, "kindString": "Property", @@ -33014,7 +33014,7 @@ } }, { - "id": 2266, + "id": 2269, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -33043,7 +33043,7 @@ } }, { - "id": 2252, + "id": 2255, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -33076,7 +33076,7 @@ } }, { - "id": 2243, + "id": 2246, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -33106,7 +33106,7 @@ } }, { - "id": 2245, + "id": 2248, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -33135,7 +33135,7 @@ } }, { - "id": 2267, + "id": 2270, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -33164,7 +33164,7 @@ } }, { - "id": 2246, + "id": 2249, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -33193,7 +33193,7 @@ } }, { - "id": 2255, + "id": 2258, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -33216,7 +33216,7 @@ } }, { - "id": 2254, + "id": 2257, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -33245,7 +33245,7 @@ } }, { - "id": 2234, + "id": 2237, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -33266,7 +33266,7 @@ } }, { - "id": 2258, + "id": 2261, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -33289,7 +33289,7 @@ } }, { - "id": 2239, + "id": 2242, "name": "username", "kind": 1024, "kindString": "Property", @@ -33312,7 +33312,7 @@ } }, { - "id": 2237, + "id": 2240, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -33328,7 +33328,7 @@ ], "signatures": [ { - "id": 2238, + "id": 2241, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -33356,50 +33356,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2275, - 2236, - 2257, - 2259, - 2235, - 2248, + 2278, + 2239, 2260, + 2262, + 2238, 2251, - 2272, + 2263, + 2254, + 2275, + 2285, 2282, - 2279, + 2259, + 2273, 2256, - 2270, - 2253, - 2281, - 2274, - 2249, - 2280, - 2269, - 2247, - 2242, - 2268, + 2284, + 2277, + 2252, + 2283, + 2272, 2250, - 2241, + 2245, 2271, - 2240, - 2266, - 2252, + 2253, + 2244, + 2274, 2243, - 2245, - 2267, - 2246, + 2269, 2255, - 2254, - 2234, + 2246, + 2248, + 2270, + 2249, 2258, - 2239 + 2257, + 2237, + 2261, + 2242 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2237 + 2240 ] } ], @@ -33412,7 +33412,7 @@ ] }, { - "id": 2590, + "id": 2593, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -33428,7 +33428,7 @@ }, "children": [ { - "id": 2592, + "id": 2595, "name": "height", "kind": 1024, "kindString": "Property", @@ -33460,7 +33460,7 @@ } }, { - "id": 2593, + "id": 2596, "name": "loading", "kind": 1024, "kindString": "Property", @@ -33496,7 +33496,7 @@ } }, { - "id": 2591, + "id": 2594, "name": "width", "kind": 1024, "kindString": "Property", @@ -33533,9 +33533,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2592, - 2593, - 2591 + 2595, + 2596, + 2594 ] } ], @@ -33547,7 +33547,7 @@ } ], "indexSignature": { - "id": 2594, + "id": 2597, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -33557,7 +33557,7 @@ }, "parameters": [ { - "id": 2595, + "id": 2598, "name": "key", "kind": 32768, "flags": {}, @@ -33591,7 +33591,7 @@ } }, { - "id": 2379, + "id": 2382, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -33607,7 +33607,7 @@ }, "children": [ { - "id": 2390, + "id": 2393, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -33641,7 +33641,7 @@ } }, { - "id": 2412, + "id": 2415, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -33672,20 +33672,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2413, + "id": 2416, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2414, + "id": 2417, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2415, + "id": 2418, "name": "key", "kind": 32768, "flags": {}, @@ -33721,7 +33721,7 @@ } }, { - "id": 2436, + "id": 2439, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -33763,7 +33763,7 @@ } }, { - "id": 2433, + "id": 2436, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -33793,7 +33793,7 @@ ], "type": { "type": "reference", - "id": 2229, + "id": 2232, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -33802,7 +33802,7 @@ } }, { - "id": 2449, + "id": 2452, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -33840,7 +33840,7 @@ } }, { - "id": 2430, + "id": 2433, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -33881,7 +33881,7 @@ } }, { - "id": 2416, + "id": 2419, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -33910,7 +33910,7 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2634, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -33919,7 +33919,7 @@ } }, { - "id": 2437, + "id": 2440, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -33961,7 +33961,7 @@ } }, { - "id": 2381, + "id": 2384, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -33999,7 +33999,7 @@ } }, { - "id": 2424, + "id": 2427, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -34037,7 +34037,7 @@ } }, { - "id": 2408, + "id": 2411, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -34075,7 +34075,7 @@ } }, { - "id": 2407, + "id": 2410, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -34107,7 +34107,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -34117,7 +34117,7 @@ } }, { - "id": 2420, + "id": 2423, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -34158,7 +34158,7 @@ } }, { - "id": 2443, + "id": 2446, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -34200,7 +34200,7 @@ } }, { - "id": 2448, + "id": 2451, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -34242,7 +34242,7 @@ } }, { - "id": 2438, + "id": 2441, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -34284,7 +34284,7 @@ } }, { - "id": 2421, + "id": 2424, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -34322,7 +34322,7 @@ } }, { - "id": 2382, + "id": 2385, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -34358,7 +34358,7 @@ } }, { - "id": 2434, + "id": 2437, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -34396,7 +34396,7 @@ } }, { - "id": 2435, + "id": 2438, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -34434,7 +34434,7 @@ } }, { - "id": 2423, + "id": 2426, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -34471,7 +34471,7 @@ } }, { - "id": 2404, + "id": 2407, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -34501,7 +34501,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2593, "name": "FrameParams" }, "inheritedFrom": { @@ -34510,7 +34510,7 @@ } }, { - "id": 2380, + "id": 2383, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -34544,7 +34544,7 @@ } }, { - "id": 2409, + "id": 2412, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -34580,7 +34580,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -34590,7 +34590,7 @@ } }, { - "id": 2396, + "id": 2399, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -34627,7 +34627,7 @@ } }, { - "id": 2446, + "id": 2449, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -34669,7 +34669,7 @@ } }, { - "id": 2439, + "id": 2442, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -34711,7 +34711,7 @@ } }, { - "id": 2391, + "id": 2394, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -34745,7 +34745,7 @@ } }, { - "id": 2417, + "id": 2420, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -34783,7 +34783,7 @@ } }, { - "id": 2451, + "id": 2454, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -34821,7 +34821,7 @@ } }, { - "id": 2453, + "id": 2456, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -34859,7 +34859,7 @@ } }, { - "id": 2452, + "id": 2455, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -34897,7 +34897,7 @@ } }, { - "id": 2444, + "id": 2447, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -34939,7 +34939,7 @@ } }, { - "id": 2442, + "id": 2445, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -34977,7 +34977,7 @@ } }, { - "id": 2398, + "id": 2401, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -35011,7 +35011,7 @@ } }, { - "id": 2399, + "id": 2402, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -35045,7 +35045,7 @@ } }, { - "id": 2400, + "id": 2403, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -35082,7 +35082,7 @@ } }, { - "id": 2401, + "id": 2404, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -35116,7 +35116,7 @@ } }, { - "id": 2426, + "id": 2429, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -35154,7 +35154,7 @@ } }, { - "id": 2383, + "id": 2386, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -35188,7 +35188,7 @@ } }, { - "id": 2389, + "id": 2392, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -35222,7 +35222,7 @@ } }, { - "id": 2450, + "id": 2453, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -35260,7 +35260,7 @@ } }, { - "id": 2411, + "id": 2414, "name": "locale", "kind": 1024, "kindString": "Property", @@ -35298,7 +35298,7 @@ } }, { - "id": 2425, + "id": 2428, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -35336,7 +35336,7 @@ } }, { - "id": 2419, + "id": 2422, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -35374,7 +35374,7 @@ } }, { - "id": 2386, + "id": 2389, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -35408,7 +35408,7 @@ } }, { - "id": 2427, + "id": 2430, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -35446,7 +35446,7 @@ } }, { - "id": 2431, + "id": 2434, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -35478,7 +35478,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1903, + "id": 1906, "name": "RuntimeFilter" } }, @@ -35488,7 +35488,7 @@ } }, { - "id": 2432, + "id": 2435, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -35520,7 +35520,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2814, + "id": 2817, "name": "RuntimeParameter" } }, @@ -35530,7 +35530,7 @@ } }, { - "id": 2429, + "id": 2432, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -35567,7 +35567,7 @@ } }, { - "id": 2441, + "id": 2444, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -35609,7 +35609,7 @@ } }, { - "id": 2447, + "id": 2450, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -35651,7 +35651,7 @@ } }, { - "id": 2440, + "id": 2443, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -35693,7 +35693,7 @@ } }, { - "id": 2445, + "id": 2448, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -35735,7 +35735,7 @@ } }, { - "id": 2392, + "id": 2395, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -35769,7 +35769,7 @@ } }, { - "id": 2402, + "id": 2405, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -35802,7 +35802,7 @@ } }, { - "id": 2410, + "id": 2413, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -35838,7 +35838,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -35848,7 +35848,7 @@ } }, { - "id": 2397, + "id": 2400, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -35885,7 +35885,7 @@ } }, { - "id": 2387, + "id": 2390, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -35922,7 +35922,7 @@ } }, { - "id": 2385, + "id": 2388, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -35961,66 +35961,66 @@ "title": "Properties", "kind": 1024, "children": [ - 2390, - 2412, + 2393, + 2415, + 2439, 2436, + 2452, 2433, - 2449, - 2430, - 2416, - 2437, - 2381, - 2424, - 2408, - 2407, - 2420, - 2443, - 2448, - 2438, - 2421, - 2382, - 2434, - 2435, + 2419, + 2440, + 2384, + 2427, + 2411, + 2410, 2423, - 2404, - 2380, - 2409, - 2396, 2446, - 2439, - 2391, - 2417, 2451, - 2453, - 2452, - 2444, - 2442, - 2398, - 2399, - 2400, - 2401, + 2441, + 2424, + 2385, + 2437, + 2438, 2426, + 2407, 2383, - 2389, - 2450, - 2411, - 2425, - 2419, - 2386, - 2427, - 2431, - 2432, - 2429, - 2441, + 2412, + 2399, + 2449, + 2442, + 2394, + 2420, + 2454, + 2456, + 2455, 2447, - 2440, 2445, - 2392, + 2401, 2402, - 2410, - 2397, - 2387, - 2385 + 2403, + 2404, + 2429, + 2386, + 2392, + 2453, + 2414, + 2428, + 2422, + 2389, + 2430, + 2434, + 2435, + 2432, + 2444, + 2450, + 2443, + 2448, + 2395, + 2405, + 2413, + 2400, + 2390, + 2388 ] } ], @@ -36047,7 +36047,7 @@ ] }, { - "id": 1903, + "id": 1906, "name": "RuntimeFilter", "kind": 256, "kindString": "Interface", @@ -36057,7 +36057,7 @@ }, "children": [ { - "id": 1904, + "id": 1907, "name": "columnName", "kind": 1024, "kindString": "Property", @@ -36078,7 +36078,7 @@ } }, { - "id": 1905, + "id": 1908, "name": "operator", "kind": 1024, "kindString": "Property", @@ -36095,12 +36095,12 @@ ], "type": { "type": "reference", - "id": 1907, + "id": 1910, "name": "RuntimeFilterOp" } }, { - "id": 1906, + "id": 1909, "name": "values", "kind": 1024, "kindString": "Property", @@ -36146,9 +36146,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1904, - 1905, - 1906 + 1907, + 1908, + 1909 ] } ], @@ -36161,7 +36161,7 @@ ] }, { - "id": 2814, + "id": 2817, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -36171,7 +36171,7 @@ }, "children": [ { - "id": 2815, + "id": 2818, "name": "name", "kind": 1024, "kindString": "Property", @@ -36192,7 +36192,7 @@ } }, { - "id": 2816, + "id": 2819, "name": "value", "kind": 1024, "kindString": "Property", @@ -36231,8 +36231,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2815, - 2816 + 2818, + 2819 ] } ], @@ -36245,7 +36245,7 @@ ] }, { - "id": 2454, + "id": 2457, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -36265,7 +36265,7 @@ }, "children": [ { - "id": 2483, + "id": 2486, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -36296,20 +36296,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2484, + "id": 2487, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2485, + "id": 2488, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2486, + "id": 2489, "name": "key", "kind": 32768, "flags": {}, @@ -36345,7 +36345,7 @@ } }, { - "id": 2471, + "id": 2474, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -36387,7 +36387,7 @@ } }, { - "id": 2468, + "id": 2471, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -36417,7 +36417,7 @@ ], "type": { "type": "reference", - "id": 2229, + "id": 2232, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -36426,7 +36426,7 @@ } }, { - "id": 2500, + "id": 2503, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -36467,7 +36467,7 @@ } }, { - "id": 2487, + "id": 2490, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -36496,7 +36496,7 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2634, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -36505,7 +36505,7 @@ } }, { - "id": 2472, + "id": 2475, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -36547,7 +36547,7 @@ } }, { - "id": 2464, + "id": 2467, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -36555,7 +36555,7 @@ "isOptional": true }, "comment": { - "shortText": "The data source GUID (Worksheet GUID) to set on load." + "shortText": "The data source GUID (Model GUID) to set on load." }, "sources": [ { @@ -36570,7 +36570,7 @@ } }, { - "id": 2495, + "id": 2498, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -36608,7 +36608,7 @@ } }, { - "id": 2459, + "id": 2462, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -36616,7 +36616,7 @@ "isOptional": true }, "comment": { - "shortText": "Disable the worksheet selection option.", + "shortText": "Disable the data source selection option.", "tags": [ { "tag": "version", @@ -36637,7 +36637,7 @@ } }, { - "id": 2479, + "id": 2482, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -36675,7 +36675,7 @@ } }, { - "id": 2478, + "id": 2481, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -36707,7 +36707,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -36717,7 +36717,7 @@ } }, { - "id": 2491, + "id": 2494, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -36758,7 +36758,7 @@ } }, { - "id": 2473, + "id": 2476, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -36800,7 +36800,7 @@ } }, { - "id": 2492, + "id": 2495, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -36838,7 +36838,7 @@ } }, { - "id": 2469, + "id": 2472, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -36876,7 +36876,7 @@ } }, { - "id": 2470, + "id": 2473, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -36914,7 +36914,7 @@ } }, { - "id": 2494, + "id": 2497, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -36951,7 +36951,7 @@ } }, { - "id": 2475, + "id": 2478, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -36981,7 +36981,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2593, "name": "FrameParams" }, "inheritedFrom": { @@ -36990,7 +36990,7 @@ } }, { - "id": 2480, + "id": 2483, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -37026,7 +37026,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -37036,7 +37036,7 @@ } }, { - "id": 2461, + "id": 2464, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -37065,7 +37065,7 @@ } }, { - "id": 2458, + "id": 2461, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -37094,7 +37094,7 @@ } }, { - "id": 2463, + "id": 2466, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -37102,7 +37102,7 @@ "isOptional": true }, "comment": { - "shortText": "Show or hide sample questions.\nThe sample questions are autogenerated based on the worksheet\nselected for the search operation.", + "shortText": "Show or hide sample questions.\nThe sample questions are autogenerated based on the data Model.\nselected for the search operation.", "text": "Supported embed types: `SageEmbed`", "tags": [ { @@ -37128,7 +37128,7 @@ } }, { - "id": 2457, + "id": 2460, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -37161,7 +37161,7 @@ } }, { - "id": 2460, + "id": 2463, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -37169,7 +37169,7 @@ "isOptional": true }, "comment": { - "shortText": "Hide the worksheet selection panel.", + "shortText": "Hide the data source selection panel.", "tags": [ { "tag": "version", @@ -37190,7 +37190,7 @@ } }, { - "id": 2488, + "id": 2491, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -37228,7 +37228,7 @@ } }, { - "id": 2497, + "id": 2500, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -37266,7 +37266,7 @@ } }, { - "id": 2482, + "id": 2485, "name": "locale", "kind": 1024, "kindString": "Property", @@ -37304,7 +37304,7 @@ } }, { - "id": 2496, + "id": 2499, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -37342,7 +37342,7 @@ } }, { - "id": 2490, + "id": 2493, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -37380,7 +37380,7 @@ } }, { - "id": 2466, + "id": 2469, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -37412,7 +37412,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1903, + "id": 1906, "name": "RuntimeFilter" } }, @@ -37422,7 +37422,7 @@ } }, { - "id": 2467, + "id": 2470, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -37454,7 +37454,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2814, + "id": 2817, "name": "RuntimeParameter" } }, @@ -37464,7 +37464,7 @@ } }, { - "id": 2465, + "id": 2468, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -37498,7 +37498,7 @@ } }, { - "id": 2499, + "id": 2502, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -37535,7 +37535,7 @@ } }, { - "id": 2455, + "id": 2458, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -37564,7 +37564,7 @@ } }, { - "id": 2462, + "id": 2465, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -37593,7 +37593,7 @@ } }, { - "id": 2481, + "id": 2484, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -37629,7 +37629,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -37644,42 +37644,42 @@ "title": "Properties", "kind": 1024, "children": [ - 2483, + 2486, + 2474, 2471, - 2468, - 2500, - 2487, - 2472, - 2464, + 2503, + 2490, + 2475, + 2467, + 2498, + 2462, + 2482, + 2481, + 2494, + 2476, 2495, - 2459, - 2479, + 2472, + 2473, + 2497, 2478, + 2483, + 2464, + 2461, + 2466, + 2460, + 2463, 2491, - 2473, - 2492, + 2500, + 2485, + 2499, + 2493, 2469, 2470, - 2494, - 2475, - 2480, - 2461, + 2468, + 2502, 2458, - 2463, - 2457, - 2460, - 2488, - 2497, - 2482, - 2496, - 2490, - 2466, - 2467, 2465, - 2499, - 2455, - 2462, - 2481 + 2484 ] } ], @@ -37733,7 +37733,7 @@ ] }, { - "id": 2337, + "id": 2340, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -37748,7 +37748,7 @@ }, "children": [ { - "id": 2352, + "id": 2355, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -37779,20 +37779,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2353, + "id": 2356, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2354, + "id": 2357, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2355, + "id": 2358, "name": "key", "kind": 32768, "flags": {}, @@ -37828,7 +37828,7 @@ } }, { - "id": 2376, + "id": 2379, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -37870,7 +37870,7 @@ } }, { - "id": 2373, + "id": 2376, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -37900,7 +37900,7 @@ ], "type": { "type": "reference", - "id": 2229, + "id": 2232, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -37909,7 +37909,7 @@ } }, { - "id": 2370, + "id": 2373, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -37950,7 +37950,7 @@ } }, { - "id": 2356, + "id": 2359, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -37979,7 +37979,7 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2634, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -37988,7 +37988,7 @@ } }, { - "id": 2377, + "id": 2380, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -38030,7 +38030,7 @@ } }, { - "id": 2339, + "id": 2342, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -38064,7 +38064,7 @@ } }, { - "id": 2338, + "id": 2341, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -38105,7 +38105,7 @@ } }, { - "id": 2364, + "id": 2367, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -38143,7 +38143,7 @@ } }, { - "id": 2348, + "id": 2351, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -38181,7 +38181,7 @@ } }, { - "id": 2347, + "id": 2350, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -38213,7 +38213,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -38223,7 +38223,7 @@ } }, { - "id": 2360, + "id": 2363, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -38264,7 +38264,7 @@ } }, { - "id": 2378, + "id": 2381, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -38306,7 +38306,7 @@ } }, { - "id": 2361, + "id": 2364, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -38344,7 +38344,7 @@ } }, { - "id": 2374, + "id": 2377, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -38382,7 +38382,7 @@ } }, { - "id": 2375, + "id": 2378, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -38420,7 +38420,7 @@ } }, { - "id": 2342, + "id": 2345, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -38454,7 +38454,7 @@ } }, { - "id": 2363, + "id": 2366, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -38491,7 +38491,7 @@ } }, { - "id": 2344, + "id": 2347, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -38521,7 +38521,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2593, "name": "FrameParams" }, "inheritedFrom": { @@ -38530,7 +38530,7 @@ } }, { - "id": 2349, + "id": 2352, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -38566,7 +38566,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -38576,7 +38576,7 @@ } }, { - "id": 2357, + "id": 2360, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -38614,7 +38614,7 @@ } }, { - "id": 2366, + "id": 2369, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -38652,7 +38652,7 @@ } }, { - "id": 2351, + "id": 2354, "name": "locale", "kind": 1024, "kindString": "Property", @@ -38690,7 +38690,7 @@ } }, { - "id": 2365, + "id": 2368, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -38728,7 +38728,7 @@ } }, { - "id": 2359, + "id": 2362, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -38766,7 +38766,7 @@ } }, { - "id": 2367, + "id": 2370, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -38804,7 +38804,7 @@ } }, { - "id": 2371, + "id": 2374, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -38836,7 +38836,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1903, + "id": 1906, "name": "RuntimeFilter" } }, @@ -38846,7 +38846,7 @@ } }, { - "id": 2372, + "id": 2375, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -38878,7 +38878,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2814, + "id": 2817, "name": "RuntimeParameter" } }, @@ -38888,7 +38888,7 @@ } }, { - "id": 2341, + "id": 2344, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -38922,7 +38922,7 @@ } }, { - "id": 2369, + "id": 2372, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -38959,7 +38959,7 @@ } }, { - "id": 2340, + "id": 2343, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -38993,7 +38993,7 @@ } }, { - "id": 2350, + "id": 2353, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -39029,7 +39029,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -39044,38 +39044,38 @@ "title": "Properties", "kind": 1024, "children": [ - 2352, + 2355, + 2379, 2376, 2373, - 2370, - 2356, - 2377, - 2339, - 2338, + 2359, + 2380, + 2342, + 2341, + 2367, + 2351, + 2350, + 2363, + 2381, 2364, - 2348, + 2377, + 2378, + 2345, + 2366, 2347, + 2352, 2360, - 2378, - 2361, + 2369, + 2354, + 2368, + 2362, + 2370, 2374, 2375, - 2342, - 2363, 2344, - 2349, - 2357, - 2366, - 2351, - 2365, - 2359, - 2367, - 2371, 2372, - 2341, - 2369, - 2340, - 2350 + 2343, + 2353 ] } ], @@ -39098,7 +39098,7 @@ ] }, { - "id": 2283, + "id": 2286, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -39114,7 +39114,7 @@ }, "children": [ { - "id": 2319, + "id": 2322, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -39145,20 +39145,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2320, + "id": 2323, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2321, + "id": 2324, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2322, + "id": 2325, "name": "key", "kind": 32768, "flags": {}, @@ -39194,7 +39194,7 @@ } }, { - "id": 2295, + "id": 2298, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -39228,7 +39228,7 @@ } }, { - "id": 2285, + "id": 2288, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -39262,7 +39262,7 @@ } }, { - "id": 2284, + "id": 2287, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -39296,7 +39296,7 @@ } }, { - "id": 2307, + "id": 2310, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -39338,7 +39338,7 @@ } }, { - "id": 2298, + "id": 2301, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -39375,7 +39375,7 @@ } }, { - "id": 2304, + "id": 2307, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -39405,7 +39405,7 @@ ], "type": { "type": "reference", - "id": 2229, + "id": 2232, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -39414,7 +39414,7 @@ } }, { - "id": 2336, + "id": 2339, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -39455,7 +39455,7 @@ } }, { - "id": 2323, + "id": 2326, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -39484,7 +39484,7 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2634, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -39493,7 +39493,7 @@ } }, { - "id": 2300, + "id": 2303, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -39531,7 +39531,7 @@ } }, { - "id": 2308, + "id": 2311, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -39573,7 +39573,7 @@ } }, { - "id": 2291, + "id": 2294, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -39607,7 +39607,7 @@ } }, { - "id": 2290, + "id": 2293, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -39643,7 +39643,7 @@ } }, { - "id": 2331, + "id": 2334, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -39681,7 +39681,7 @@ } }, { - "id": 2315, + "id": 2318, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -39719,7 +39719,7 @@ } }, { - "id": 2314, + "id": 2317, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -39751,7 +39751,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -39761,7 +39761,7 @@ } }, { - "id": 2327, + "id": 2330, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -39802,7 +39802,7 @@ } }, { - "id": 2309, + "id": 2312, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -39844,7 +39844,7 @@ } }, { - "id": 2288, + "id": 2291, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -39878,7 +39878,7 @@ } }, { - "id": 2328, + "id": 2331, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -39916,7 +39916,7 @@ } }, { - "id": 2305, + "id": 2308, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -39954,7 +39954,7 @@ } }, { - "id": 2306, + "id": 2309, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -39992,7 +39992,7 @@ } }, { - "id": 2294, + "id": 2297, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -40026,7 +40026,7 @@ } }, { - "id": 2330, + "id": 2333, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -40063,7 +40063,7 @@ } }, { - "id": 2301, + "id": 2304, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -40101,7 +40101,7 @@ } }, { - "id": 2289, + "id": 2292, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -40135,7 +40135,7 @@ } }, { - "id": 2311, + "id": 2314, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -40165,7 +40165,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2593, "name": "FrameParams" }, "inheritedFrom": { @@ -40174,7 +40174,7 @@ } }, { - "id": 2316, + "id": 2319, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -40210,7 +40210,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -40220,7 +40220,7 @@ } }, { - "id": 2286, + "id": 2289, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -40254,7 +40254,7 @@ } }, { - "id": 2287, + "id": 2290, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -40288,7 +40288,7 @@ } }, { - "id": 2296, + "id": 2299, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -40322,7 +40322,7 @@ } }, { - "id": 2324, + "id": 2327, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -40360,7 +40360,7 @@ } }, { - "id": 2299, + "id": 2302, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -40390,7 +40390,7 @@ } }, { - "id": 2333, + "id": 2336, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -40428,7 +40428,7 @@ } }, { - "id": 2318, + "id": 2321, "name": "locale", "kind": 1024, "kindString": "Property", @@ -40466,7 +40466,7 @@ } }, { - "id": 2332, + "id": 2335, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -40504,7 +40504,7 @@ } }, { - "id": 2326, + "id": 2329, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -40542,7 +40542,7 @@ } }, { - "id": 2302, + "id": 2305, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -40574,7 +40574,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1903, + "id": 1906, "name": "RuntimeFilter" } }, @@ -40584,7 +40584,7 @@ } }, { - "id": 2303, + "id": 2306, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -40616,7 +40616,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2814, + "id": 2817, "name": "RuntimeParameter" } }, @@ -40626,7 +40626,7 @@ } }, { - "id": 2293, + "id": 2296, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -40656,7 +40656,7 @@ } }, { - "id": 2292, + "id": 2295, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -40685,7 +40685,7 @@ } }, { - "id": 2335, + "id": 2338, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -40722,7 +40722,7 @@ } }, { - "id": 2297, + "id": 2300, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -40752,7 +40752,7 @@ } }, { - "id": 2317, + "id": 2320, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -40788,7 +40788,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -40803,50 +40803,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2319, - 2295, - 2285, - 2284, - 2307, + 2322, 2298, - 2304, - 2336, - 2323, - 2300, - 2308, - 2291, - 2290, - 2331, - 2315, - 2314, - 2327, - 2309, 2288, - 2328, - 2305, - 2306, - 2294, - 2330, - 2301, - 2289, - 2311, - 2316, - 2286, 2287, - 2296, - 2324, - 2299, - 2333, - 2318, - 2332, + 2310, + 2301, + 2307, + 2339, 2326, - 2302, 2303, + 2311, + 2294, 2293, + 2334, + 2318, + 2317, + 2330, + 2312, + 2291, + 2331, + 2308, + 2309, + 2297, + 2333, + 2304, 2292, + 2314, + 2319, + 2289, + 2290, + 2299, + 2327, + 2302, + 2336, + 2321, 2335, - 2297, - 2317 + 2329, + 2305, + 2306, + 2296, + 2295, + 2338, + 2300, + 2320 ] } ], @@ -40879,14 +40879,14 @@ ] }, { - "id": 1872, + "id": 1875, "name": "SessionInterface", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1875, + "id": 1878, "name": "acSession", "kind": 1024, "kindString": "Property", @@ -40901,14 +40901,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1876, + "id": 1879, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1878, + "id": 1881, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -40926,7 +40926,7 @@ } }, { - "id": 1877, + "id": 1880, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -40949,8 +40949,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1878, - 1877 + 1881, + 1880 ] } ] @@ -40958,7 +40958,7 @@ } }, { - "id": 1874, + "id": 1877, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -40976,7 +40976,7 @@ } }, { - "id": 1873, + "id": 1876, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -40999,9 +40999,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1875, - 1874, - 1873 + 1878, + 1877, + 1876 ] } ], @@ -41014,7 +41014,7 @@ ] }, { - "id": 1228, + "id": 1231, "name": "SpotterAgentEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -41030,7 +41030,7 @@ }, "children": [ { - "id": 1239, + "id": 1242, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -41061,20 +41061,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1240, + "id": 1243, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1241, + "id": 1244, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1242, + "id": 1245, "name": "key", "kind": 32768, "flags": {}, @@ -41110,7 +41110,7 @@ } }, { - "id": 1256, + "id": 1259, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -41151,7 +41151,7 @@ } }, { - "id": 1243, + "id": 1246, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -41180,7 +41180,7 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2634, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -41189,7 +41189,7 @@ } }, { - "id": 1251, + "id": 1254, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -41227,7 +41227,7 @@ } }, { - "id": 1235, + "id": 1238, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -41265,7 +41265,7 @@ } }, { - "id": 1234, + "id": 1237, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -41297,7 +41297,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -41307,7 +41307,7 @@ } }, { - "id": 1247, + "id": 1250, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -41348,7 +41348,7 @@ } }, { - "id": 1248, + "id": 1251, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -41386,7 +41386,7 @@ } }, { - "id": 1250, + "id": 1253, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -41423,7 +41423,7 @@ } }, { - "id": 1231, + "id": 1234, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -41453,7 +41453,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2593, "name": "FrameParams" }, "inheritedFrom": { @@ -41462,7 +41462,7 @@ } }, { - "id": 1236, + "id": 1239, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -41498,7 +41498,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -41508,7 +41508,7 @@ } }, { - "id": 1244, + "id": 1247, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -41546,7 +41546,7 @@ } }, { - "id": 1253, + "id": 1256, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -41584,7 +41584,7 @@ } }, { - "id": 1238, + "id": 1241, "name": "locale", "kind": 1024, "kindString": "Property", @@ -41622,7 +41622,7 @@ } }, { - "id": 1252, + "id": 1255, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -41660,7 +41660,7 @@ } }, { - "id": 1246, + "id": 1249, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -41698,7 +41698,7 @@ } }, { - "id": 1255, + "id": 1258, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -41735,7 +41735,7 @@ } }, { - "id": 1237, + "id": 1240, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -41771,7 +41771,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -41781,13 +41781,13 @@ } }, { - "id": 1229, + "id": 1232, "name": "worksheetId", "kind": 1024, "kindString": "Property", "flags": {}, "comment": { - "shortText": "The ID of the worksheet to use for the conversation." + "shortText": "The ID of the Model to use for the conversation." }, "sources": [ { @@ -41807,25 +41807,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1239, - 1256, - 1243, + 1242, + 1259, + 1246, + 1254, + 1238, + 1237, + 1250, 1251, - 1235, + 1253, 1234, + 1239, 1247, - 1248, - 1250, - 1231, - 1236, - 1244, - 1253, - 1238, - 1252, - 1246, + 1256, + 1241, 1255, - 1237, - 1229 + 1249, + 1258, + 1240, + 1232 ] } ], @@ -41855,13 +41855,13 @@ "extendedBy": [ { "type": "reference", - "id": 1257, + "id": 1260, "name": "BodylessConversationViewConfig" } ] }, { - "id": 1483, + "id": 1486, "name": "SpotterEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -41877,7 +41877,7 @@ }, "children": [ { - "id": 1505, + "id": 1508, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -41908,20 +41908,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1506, + "id": 1509, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1507, + "id": 1510, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1508, + "id": 1511, "name": "key", "kind": 32768, "flags": {}, @@ -41957,7 +41957,7 @@ } }, { - "id": 1522, + "id": 1525, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -41998,7 +41998,7 @@ } }, { - "id": 1509, + "id": 1512, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -42027,7 +42027,7 @@ ], "type": { "type": "reference", - "id": 2631, + "id": 2634, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -42036,7 +42036,7 @@ } }, { - "id": 1488, + "id": 1491, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -42074,7 +42074,7 @@ } }, { - "id": 1517, + "id": 1520, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -42112,7 +42112,7 @@ } }, { - "id": 1486, + "id": 1489, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -42146,7 +42146,7 @@ } }, { - "id": 1501, + "id": 1504, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -42184,7 +42184,7 @@ } }, { - "id": 1500, + "id": 1503, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -42216,7 +42216,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -42226,7 +42226,7 @@ } }, { - "id": 1513, + "id": 1516, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -42267,7 +42267,7 @@ } }, { - "id": 1495, + "id": 1498, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -42305,7 +42305,7 @@ } }, { - "id": 1514, + "id": 1517, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -42343,7 +42343,7 @@ } }, { - "id": 1492, + "id": 1495, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -42377,7 +42377,7 @@ } }, { - "id": 1494, + "id": 1497, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -42411,7 +42411,7 @@ } }, { - "id": 1516, + "id": 1519, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -42448,7 +42448,7 @@ } }, { - "id": 1497, + "id": 1500, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -42478,7 +42478,7 @@ ], "type": { "type": "reference", - "id": 2590, + "id": 2593, "name": "FrameParams" }, "inheritedFrom": { @@ -42487,7 +42487,7 @@ } }, { - "id": 1502, + "id": 1505, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -42523,7 +42523,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -42533,7 +42533,7 @@ } }, { - "id": 1490, + "id": 1493, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -42567,7 +42567,7 @@ } }, { - "id": 1487, + "id": 1490, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -42601,7 +42601,7 @@ } }, { - "id": 1510, + "id": 1513, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -42639,7 +42639,7 @@ } }, { - "id": 1519, + "id": 1522, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -42677,7 +42677,7 @@ } }, { - "id": 1504, + "id": 1507, "name": "locale", "kind": 1024, "kindString": "Property", @@ -42715,7 +42715,7 @@ } }, { - "id": 1518, + "id": 1521, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -42753,7 +42753,7 @@ } }, { - "id": 1512, + "id": 1515, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -42791,7 +42791,7 @@ } }, { - "id": 1491, + "id": 1494, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -42823,13 +42823,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1903, + "id": 1906, "name": "RuntimeFilter" } } }, { - "id": 1493, + "id": 1496, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -42861,13 +42861,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2814, + "id": 2817, "name": "RuntimeParameter" } } }, { - "id": 1485, + "id": 1488, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -42890,7 +42890,7 @@ } }, { - "id": 1521, + "id": 1524, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -42927,7 +42927,7 @@ } }, { - "id": 1489, + "id": 1492, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -42961,7 +42961,7 @@ } }, { - "id": 1503, + "id": 1506, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -42997,7 +42997,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2094, "name": "Action" } }, @@ -43007,7 +43007,7 @@ } }, { - "id": 1484, + "id": 1487, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -43033,36 +43033,36 @@ "title": "Properties", "kind": 1024, "children": [ - 1505, - 1522, - 1509, - 1488, + 1508, + 1525, + 1512, + 1491, + 1520, + 1489, + 1504, + 1503, + 1516, + 1498, 1517, - 1486, - 1501, - 1500, - 1513, 1495, - 1514, - 1492, - 1494, - 1516, 1497, - 1502, - 1490, - 1487, - 1510, 1519, - 1504, - 1518, - 1512, - 1491, + 1500, + 1505, 1493, - 1485, + 1490, + 1513, + 1522, + 1507, 1521, - 1489, - 1503, - 1484 + 1515, + 1494, + 1496, + 1488, + 1524, + 1492, + 1506, + 1487 ] } ], @@ -43092,20 +43092,20 @@ "extendedBy": [ { "type": "reference", - "id": 1523, + "id": 1526, "name": "ConversationViewConfig" } ] }, { - "id": 1879, + "id": 1882, "name": "UnderlyingDataPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1880, + "id": 1883, "name": "columnId", "kind": 1024, "kindString": "Property", @@ -43123,7 +43123,7 @@ } }, { - "id": 1881, + "id": 1884, "name": "dataValue", "kind": 1024, "kindString": "Property", @@ -43146,8 +43146,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1880, - 1881 + 1883, + 1884 ] } ], @@ -43160,14 +43160,14 @@ ] }, { - "id": 2852, + "id": 2855, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2853, + "id": 2856, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -43175,7 +43175,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5781, + "line": 5779, "character": 4 } ], @@ -43188,7 +43188,7 @@ } }, { - "id": 2854, + "id": 2857, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -43196,7 +43196,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5782, + "line": 5780, "character": 4 } ], @@ -43214,21 +43214,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2853, - 2854 + 2856, + 2857 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5780, + "line": 5778, "character": 17 } ] }, { - "id": 2644, + "id": 2647, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -43238,7 +43238,7 @@ }, "children": [ { - "id": 2646, + "id": 2649, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -43268,20 +43268,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2647, + "id": 2650, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2648, + "id": 2651, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2649, + "id": 2652, "name": "selector", "kind": 32768, "flags": {}, @@ -43294,7 +43294,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2650, + "id": 2653, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43307,14 +43307,14 @@ } ], "indexSignature": { - "id": 2651, + "id": 2654, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2652, + "id": 2655, "name": "declaration", "kind": 32768, "flags": {}, @@ -43336,7 +43336,7 @@ } }, { - "id": 2645, + "id": 2648, "name": "variables", "kind": 1024, "kindString": "Property", @@ -43355,7 +43355,7 @@ ], "type": { "type": "reference", - "id": 2653, + "id": 2656, "name": "CustomCssVariables" } } @@ -43365,8 +43365,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2646, - 2645 + 2649, + 2648 ] } ], @@ -43671,7 +43671,7 @@ ] }, { - "id": 2614, + "id": 2617, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -43698,7 +43698,7 @@ } }, { - "id": 2618, + "id": 2621, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -43713,7 +43713,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2619, + "id": 2622, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43736,7 +43736,7 @@ ], "signatures": [ { - "id": 2620, + "id": 2623, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43746,19 +43746,19 @@ }, "parameters": [ { - "id": 2621, + "id": 2624, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2626, + "id": 2629, "name": "MessagePayload" } }, { - "id": 2622, + "id": 2625, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -43768,7 +43768,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2623, + "id": 2626, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43782,7 +43782,7 @@ ], "signatures": [ { - "id": 2624, + "id": 2627, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43792,7 +43792,7 @@ }, "parameters": [ { - "id": 2625, + "id": 2628, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -43823,7 +43823,7 @@ } }, { - "id": 2615, + "id": 2618, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -43847,14 +43847,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2616, + "id": 2619, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2617, + "id": 2620, "name": "start", "kind": 1024, "kindString": "Property", @@ -43882,7 +43882,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2617 + 2620 ] } ], @@ -43897,7 +43897,7 @@ } }, { - "id": 2626, + "id": 2629, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -43921,14 +43921,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2627, + "id": 2630, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2629, + "id": 2632, "name": "data", "kind": 1024, "kindString": "Property", @@ -43946,7 +43946,7 @@ } }, { - "id": 2630, + "id": 2633, "name": "status", "kind": 1024, "kindString": "Property", @@ -43966,7 +43966,7 @@ } }, { - "id": 2628, + "id": 2631, "name": "type", "kind": 1024, "kindString": "Property", @@ -43989,9 +43989,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2629, - 2630, - 2628 + 2632, + 2633, + 2631 ] } ], @@ -44006,7 +44006,7 @@ } }, { - "id": 48, + "id": 51, "name": "createLiveboardWithAnswers", "kind": 64, "kindString": "Function", @@ -44022,7 +44022,7 @@ ], "signatures": [ { - "id": 49, + "id": 52, "name": "createLiveboardWithAnswers", "kind": 4096, "kindString": "Call signature", @@ -44044,7 +44044,7 @@ }, "parameters": [ { - "id": 50, + "id": 53, "name": "answers", "kind": 32768, "kindString": "Parameter", @@ -44056,13 +44056,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } } }, { - "id": 51, + "id": 54, "name": "name", "kind": 32768, "kindString": "Parameter", @@ -44226,7 +44226,7 @@ ] }, { - "id": 41, + "id": 44, "name": "getAnswerFromQuery", "kind": 64, "kindString": "Function", @@ -44242,7 +44242,7 @@ ], "signatures": [ { - "id": 42, + "id": 45, "name": "getAnswerFromQuery", "kind": 4096, "kindString": "Call signature", @@ -44263,7 +44263,7 @@ }, "parameters": [ { - "id": 43, + "id": 46, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -44277,7 +44277,7 @@ } }, { - "id": 44, + "id": 47, "name": "worksheetId", "kind": 32768, "kindString": "Parameter", @@ -44297,14 +44297,14 @@ { "type": "reflection", "declaration": { - "id": 45, + "id": 48, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 46, + "id": 49, "name": "answer", "kind": 1024, "kindString": "Property", @@ -44318,12 +44318,12 @@ ], "type": { "type": "reference", - "id": 1799, + "id": 1802, "name": "AnswerService" } }, { - "id": 47, + "id": 50, "name": "suggestion", "kind": 1024, "kindString": "Property", @@ -44346,8 +44346,8 @@ "title": "Properties", "kind": 1024, "children": [ - 46, - 47 + 49, + 50 ] } ] @@ -44405,7 +44405,7 @@ }, "type": { "type": "reference", - "id": 2233, + "id": 2236, "name": "EmbedConfig" } } @@ -44505,14 +44505,14 @@ }, "type": { "type": "reference", - "id": 2233, + "id": 2236, "name": "EmbedConfig" } } ], "type": { "type": "reference", - "id": 1746, + "id": 1749, "name": "AuthEventEmitter" } } @@ -44652,7 +44652,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2585, + "id": 2588, "name": "PrefetchFeatures" } } @@ -44724,7 +44724,7 @@ ] }, { - "id": 2901, + "id": 2904, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -44740,7 +44740,7 @@ ], "signatures": [ { - "id": 2902, + "id": 2905, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -44855,11 +44855,86 @@ ], "name": "Promise" } + }, + { + "id": 41, + "name": "tokenizedFetch", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Fetch wrapper that adds the authentication token to the request.\nUse this to call the ThoughtSpot APIs when using the visual embed sdk.\nThe interface for this method is the same as Web `Fetch`.", + "tags": [ + { + "tag": "example", + "text": "\n```js\ntokenizedFetch(\"/api/rest/2.0/auth/session/user\", {\n // .. fetch options ..\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.28.0" + }, + { + "tag": "group", + "text": "Global methods\n" + } + ] + }, + "parameters": [ + { + "id": 42, + "name": "input", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "name": "URL" + }, + { + "type": "reference", + "name": "globalThis.Request" + } + ] + } + }, + { + "id": 43, + "name": "init", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "comment": {}, + "type": { + "type": "reference", + "name": "RequestInit" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "Response" + } + ], + "name": "Promise" + } } ] }, { - "id": 2824, + "id": 2827, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -44873,7 +44948,7 @@ ], "signatures": [ { - "id": 2825, + "id": 2828, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -44883,7 +44958,7 @@ }, "parameters": [ { - "id": 2826, + "id": 2829, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -44895,7 +44970,7 @@ } }, { - "id": 2827, + "id": 2830, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -44906,7 +44981,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2828, + "id": 2831, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -44929,74 +45004,74 @@ "title": "Enumerations", "kind": 4, "children": [ - 2091, - 1744, - 1729, - 1736, - 1891, - 2229, - 2896, - 2892, - 2888, - 2087, - 1923, - 2596, - 2846, - 2840, - 2607, - 2016, + 2094, + 1747, + 1732, + 1739, + 1894, + 2232, + 2899, + 2895, + 2891, + 2090, + 1926, + 2599, 2849, - 2882, - 2817, - 1882, - 2585, - 2844, - 1907, - 2875 + 2843, + 2610, + 2019, + 2852, + 2885, + 2820, + 1885, + 2588, + 2847, + 1910, + 2878 ] }, { "title": "Classes", "kind": 128, "children": [ - 1799, - 986, - 1286, - 1563, - 587, - 810, - 228, - 52, - 1196, - 1317 + 1802, + 989, + 1289, + 1566, + 590, + 813, + 231, + 55, + 1199, + 1320 ] }, { "title": "Interfaces", "kind": 256, "children": [ - 2501, - 1746, - 1257, - 1523, - 2855, - 2653, - 2641, - 2631, - 2233, - 2590, - 2379, - 1903, - 2814, - 2454, - 2337, - 2283, - 1872, - 1228, - 1483, - 1879, - 2852, + 2504, + 1749, + 1260, + 1526, + 2858, + 2656, 2644, + 2634, + 2236, + 2593, + 2382, + 1906, + 2817, + 2457, + 2340, + 2286, + 1875, + 1231, + 1486, + 1882, + 2855, + 2647, 21, 25 ] @@ -45005,28 +45080,28 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2614, + 2617, + 2621, 2618, - 2615, - 2626 + 2629 ] }, { "title": "Functions", "kind": 64, "children": [ - 48, + 51, 15, 18, - 41, + 44, 33, 35, 1, 4, 7, - 2901, + 2904, 37, - 2824 + 2827 ] } ], From cb0605fa087da565a688b979d15886273146b430 Mon Sep 17 00:00:00 2001 From: Aditya Mittal <114516106+adityamittal3107@users.noreply.github.com> Date: Wed, 22 Oct 2025 12:29:50 +0530 Subject: [PATCH 22/31] Add warning if CA names length is greater than 30 characters (#335) --- package-lock.json | 4 ++-- package.json | 2 +- src/react/all-types-export.ts | 2 ++ src/utils/custom-actions.spec.ts | 22 ++++++++++++++++++++++ src/utils/custom-actions.ts | 11 +++++++++++ 5 files changed, 38 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9673e28aa..eaaf10267 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@thoughtspot/visual-embed-sdk", - "version": "1.42.1", + "version": "1.42.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@thoughtspot/visual-embed-sdk", - "version": "1.42.1", + "version": "1.42.2", "license": "ThoughtSpot Development Tools End User License Agreement", "dependencies": { "classnames": "^2.3.1", diff --git a/package.json b/package.json index c205d9fd8..eef7f0037 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@thoughtspot/visual-embed-sdk", - "version": "1.42.1", + "version": "1.42.2", "description": "ThoughtSpot Embed SDK", "module": "lib/src/index.js", "main": "dist/tsembed.js", diff --git a/src/react/all-types-export.ts b/src/react/all-types-export.ts index 2f4872026..edf35b594 100644 --- a/src/react/all-types-export.ts +++ b/src/react/all-types-export.ts @@ -59,4 +59,6 @@ export { resetCachedAuthToken, UIPassthroughEvent, DataPanelCustomColumnGroupsAccordionState, + CustomActionsPosition, + CustomActionTarget, } from '../index'; diff --git a/src/utils/custom-actions.spec.ts b/src/utils/custom-actions.spec.ts index dd53f02df..2e0750128 100644 --- a/src/utils/custom-actions.spec.ts +++ b/src/utils/custom-actions.spec.ts @@ -428,4 +428,26 @@ describe('getCustomActions function', () => { expect(result.errors[0]).toContain("Position 'PRIMARY' is not supported for spotter-level custom actions. Supported positions: MENU, CONTEXTMENU"); }); }); + + describe('Warnings', () => { + test('should warn when action name length exceeds 30 characters', () => { + // Arrange + const longName = 'A'.repeat(31); + const action: CustomAction = { + id: 'long-name-id', + name: longName, + target: CustomActionTarget.LIVEBOARD, + position: CustomActionsPosition.PRIMARY, + }; + + // Act + const result = getCustomActions([action]); + + // Assert + expect(result.actions).toHaveLength(1); + expect(logger.warn).toHaveBeenCalledWith([ + `Custom action name '${longName}' exceeds 30 characters. This may cause display or truncation issues in the UI.` + ]); + }); + }); }); diff --git a/src/utils/custom-actions.ts b/src/utils/custom-actions.ts index 605493827..149b26992 100644 --- a/src/utils/custom-actions.ts +++ b/src/utils/custom-actions.ts @@ -2,6 +2,7 @@ import { CustomAction, CustomActionsPosition, CustomActionTarget } from '../type import { arrayIncludesString } from '../utils'; import sortBy from 'lodash/sortBy'; import { CUSTOM_ACTIONS_ERROR_MESSAGE } from '../errors'; +import { logger } from './logger'; export interface CustomActionsValidationResult { actions: CustomAction[]; @@ -208,6 +209,16 @@ export const getCustomActions = (customActions: CustomAction[]): CustomActionsVa } }); + // Step 4: Collect warnings for long custom action names + const MAX_ACTION_NAME_LENGTH = 30; + const warnings = finalValidActions + .filter(action => action.name.length > MAX_ACTION_NAME_LENGTH) + .map(action => `Custom action name '${action.name}' exceeds ${MAX_ACTION_NAME_LENGTH} characters. This may cause display or truncation issues in the UI.`); + + if (warnings.length > 0) { + logger.warn(warnings); + } + const sortedActions = sortBy(finalValidActions, (a) => a.name.toLocaleLowerCase()); return { From 6649d3ac3d4db14152b3b084355475fd39c046b5 Mon Sep 17 00:00:00 2001 From: jbhanu-thoughtspot <53254394+jbhanu-thoughtspot@users.noreply.github.com> Date: Mon, 27 Oct 2025 12:15:49 -0700 Subject: [PATCH 23/31] SCAL-255929 - Added cleanup event on destroy (#338) --- package.json | 2 +- src/embed/base.ts | 2 + src/embed/ts-embed.spec.ts | 212 +++++++++++++++++++++++++++++-------- src/embed/ts-embed.ts | 15 ++- src/types.ts | 22 ++++ 5 files changed, 207 insertions(+), 46 deletions(-) diff --git a/package.json b/package.json index eef7f0037..f4114d32e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@thoughtspot/visual-embed-sdk", - "version": "1.42.2", + "version": "1.42.3", "description": "ThoughtSpot Embed SDK", "module": "lib/src/index.js", "main": "dist/tsembed.js", diff --git a/src/embed/base.ts b/src/embed/base.ts index bc8ec3121..faf669d5a 100644 --- a/src/embed/base.ts +++ b/src/embed/base.ts @@ -41,6 +41,8 @@ const CONFIG_DEFAULTS: Partial = { authTriggerText: 'Authorize', authType: AuthType.None, logLevel: LogLevel.ERROR, + waitForCleanupOnDestroy: false, + cleanupTimeout: 5000, }; export interface executeTMLInput { diff --git a/src/embed/ts-embed.spec.ts b/src/embed/ts-embed.spec.ts index 8acfdbd05..9e1ef6492 100644 --- a/src/embed/ts-embed.spec.ts +++ b/src/embed/ts-embed.spec.ts @@ -2428,50 +2428,6 @@ describe('Unit test case for ts embed', () => { }); }); - describe('When destroyed', () => { - it('should remove the iframe', async () => { - const appEmbed = new AppEmbed(getRootEl(), { - frameParams: { - width: '100%', - height: '100%', - }, - }); - await appEmbed.render(); - expect(getIFrameEl()).toBeTruthy(); - appEmbed.destroy(); - expect(getIFrameEl()).toBeFalsy(); - }); - - it('should remove the iframe when insertAsSibling is true', async () => { - const appEmbed = new AppEmbed(getRootEl(), { - frameParams: { - width: '100%', - height: '100%', - }, - insertAsSibling: true, - }); - await appEmbed.render(); - expect(getIFrameEl()).toBeTruthy(); - appEmbed.destroy(); - expect(getIFrameEl()).toBeFalsy(); - }); - - it("Should remove the error message on destroy if it's present", async () => { - jest.spyOn(baseInstance, 'getAuthPromise').mockResolvedValueOnce(false); - const appEmbed = new AppEmbed(getRootEl(), { - frameParams: { - width: '100%', - height: '100%', - }, - insertAsSibling: true, - }); - await appEmbed.render(); - expect(getRootEl().nextElementSibling.innerHTML).toContain('Not logged in'); - appEmbed.destroy(); - expect(getRootEl().nextElementSibling.innerHTML).toBe(''); - }); - }); - describe('validate getThoughtSpotPostUrlParams', () => { const { location } = window; @@ -3456,4 +3412,172 @@ describe('Unit test case for ts embed', () => { triggerSpy.mockReset(); }); }); + + describe('When destroyed', () => { + it('should remove the iframe', async () => { + const appEmbed = new AppEmbed(getRootEl(), { + frameParams: { + width: '100%', + height: '100%', + }, + }); + await appEmbed.render(); + expect(getIFrameEl()).toBeTruthy(); + appEmbed.destroy(); + expect(getIFrameEl()).toBeFalsy(); + }); + + it('should remove the iframe when insertAsSibling is true', async () => { + const appEmbed = new AppEmbed(getRootEl(), { + frameParams: { + width: '100%', + height: '100%', + }, + insertAsSibling: true, + }); + await appEmbed.render(); + expect(getIFrameEl()).toBeTruthy(); + appEmbed.destroy(); + expect(getIFrameEl()).toBeFalsy(); + }); + + it("Should remove the error message on destroy if it's present", async () => { + jest.spyOn(baseInstance, 'getAuthPromise').mockResolvedValueOnce(false); + const appEmbed = new AppEmbed(getRootEl(), { + frameParams: { + width: '100%', + height: '100%', + }, + insertAsSibling: true, + }); + await appEmbed.render(); + expect(getRootEl().nextElementSibling.innerHTML).toContain('Not logged in'); + appEmbed.destroy(); + expect(getRootEl().nextElementSibling.innerHTML).toBe(''); + }); + + describe('with waitForCleanupOnDestroy configuration', () => { + let originalEmbedConfig: any; + + beforeEach(() => { + originalEmbedConfig = embedConfig.getEmbedConfig(); + }); + + afterEach(() => { + embedConfig.setEmbedConfig(originalEmbedConfig); + }); + + it('should trigger DestroyEmbed event immediately when waitForCleanupOnDestroy is false', async () => { + embedConfig.setEmbedConfig({ + ...originalEmbedConfig, + waitForCleanupOnDestroy: false, + }); + + const appEmbed = new AppEmbed(getRootEl(), { + frameParams: { + width: '100%', + height: '100%', + }, + }); + await appEmbed.render(); + + const triggerSpy = jest.spyOn(appEmbed, 'trigger').mockResolvedValue(null); + const removeChildSpy = jest.spyOn(Node.prototype, 'removeChild').mockImplementation(() => getRootEl()); + + appEmbed.destroy(); + + expect(triggerSpy).toHaveBeenCalledWith(HostEvent.DestroyEmbed); + expect(removeChildSpy).toHaveBeenCalled(); + }); + + it('should trigger DestroyEmbed event and wait for cleanup when waitForCleanupOnDestroy is true', async () => { + embedConfig.setEmbedConfig({ + ...originalEmbedConfig, + waitForCleanupOnDestroy: true, + cleanupTimeout: 1000, + }); + + const appEmbed = new AppEmbed(getRootEl(), { + frameParams: { + width: '100%', + height: '100%', + }, + }); + await appEmbed.render(); + + const triggerSpy = jest.spyOn(appEmbed, 'trigger').mockResolvedValue(null); + const removeChildSpy = jest.spyOn(Node.prototype, 'removeChild').mockImplementation(() => getRootEl()); + + appEmbed.destroy(); + + // Should be called immediately when waitForCleanupOnDestroy is true + expect(triggerSpy).toHaveBeenCalledWith(HostEvent.DestroyEmbed); + + // Wait for the timeout to complete + await new Promise(resolve => setTimeout(resolve, 1100)); + + expect(removeChildSpy).toHaveBeenCalled(); + }); + + it('should handle Promise.race with successful cleanup completion', async () => { + embedConfig.setEmbedConfig({ + ...originalEmbedConfig, + waitForCleanupOnDestroy: true, + cleanupTimeout: 2000, + }); + + const appEmbed = new AppEmbed(getRootEl(), { + frameParams: { + width: '100%', + height: '100%', + }, + }); + await appEmbed.render(); + + // Mock trigger to resolve quickly (before timeout) + const triggerSpy = jest.spyOn(appEmbed, 'trigger').mockImplementation(() => + new Promise(resolve => setTimeout(() => resolve(null), 100)) + ); + const removeChildSpy = jest.spyOn(Node.prototype, 'removeChild').mockImplementation(() => getRootEl()); + + appEmbed.destroy(); + + // Wait for the trigger to complete + await new Promise(resolve => setTimeout(resolve, 200)); + + expect(triggerSpy).toHaveBeenCalledWith(HostEvent.DestroyEmbed); + expect(removeChildSpy).toHaveBeenCalled(); + }); + + it('should handle Promise.race with timeout when cleanup takes too long', async () => { + embedConfig.setEmbedConfig({ + ...originalEmbedConfig, + waitForCleanupOnDestroy: true, + cleanupTimeout: 100, + }); + + const appEmbed = new AppEmbed(getRootEl(), { + frameParams: { + width: '100%', + height: '100%', + }, + }); + await appEmbed.render(); + + // Mock trigger to take longer than timeout + const triggerSpy = jest.spyOn(appEmbed, 'trigger').mockImplementation(() => + new Promise(resolve => setTimeout(() => resolve(null), 500)) + ); + const removeChildSpy = jest.spyOn(Node.prototype, 'removeChild').mockImplementation(() => getRootEl()); + + appEmbed.destroy(); + + // Wait for the timeout to complete + await new Promise(resolve => setTimeout(resolve, 200)); + + expect(triggerSpy).toHaveBeenCalledWith(HostEvent.DestroyEmbed); + expect(removeChildSpy).toHaveBeenCalled(); + }); + }); + }); }); diff --git a/src/embed/ts-embed.ts b/src/embed/ts-embed.ts index 2d380e0a2..d7c185ef9 100644 --- a/src/embed/ts-embed.ts +++ b/src/embed/ts-embed.ts @@ -1396,8 +1396,21 @@ export class TsEmbed { public destroy(): void { try { this.removeFullscreenChangeHandler(); - this.insertedDomEl?.parentNode.removeChild(this.insertedDomEl); this.unsubscribeToEvents(); + if (!getEmbedConfig().waitForCleanupOnDestroy) { + this.trigger(HostEvent.DestroyEmbed) + this.insertedDomEl?.parentNode?.removeChild(this.insertedDomEl); + } else { + const cleanupTimeout = getEmbedConfig().cleanupTimeout; + Promise.race([ + this.trigger(HostEvent.DestroyEmbed), + new Promise((resolve) => setTimeout(resolve, cleanupTimeout)), + ]).then(() => { + this.insertedDomEl?.parentNode?.removeChild(this.insertedDomEl); + }).catch((e) => { + logger.log('Error destroying TS Embed', e); + }); + } } catch (e) { logger.log('Error destroying TS Embed', e); } diff --git a/src/types.ts b/src/types.ts index 7ba167181..7a00af03a 100644 --- a/src/types.ts +++ b/src/types.ts @@ -692,6 +692,19 @@ export interface EmbedConfig { * ``` */ customActions?: CustomAction[]; + + /** + * Wait for the cleanup to be completed before destroying the embed. + * @version SDK: 1.41.0 | ThoughtSpot: 10.12.0.cl + * @default false + */ + waitForCleanupOnDestroy?: boolean; + /** + * The timeout for the cleanup to be completed before destroying the embed. + * @version SDK: 1.41.0 | ThoughtSpot: 10.12.0.cl + * @default 5000 + */ + cleanupTimeout?: number; } // eslint-disable-next-line @typescript-eslint/no-empty-object-type @@ -4247,6 +4260,15 @@ export enum HostEvent { * ``` */ UpdateEmbedParams = 'updateEmbedParams', + /** + * Triggered when the embed is needed to be destroyed. This is used to clean up any embed related resources internally. + * @example + * ```js + * liveboardEmbed.trigger(HostEvent.DestroyEmbed); + * ``` + * @version SDK: 1.41.0 | ThoughtSpot: 10.12.0.cl + */ + DestroyEmbed = 'EmbedDestroyed', } /** From f51ba275823d13d0cea0a7925ec9fbcfa632bd75 Mon Sep 17 00:00:00 2001 From: elizebeth-shaji Date: Tue, 28 Oct 2025 12:44:30 +0530 Subject: [PATCH 24/31] [SCAL-276944] Added Hostevent and Embedevent for AI highlights (#336) --- src/types.ts | 21 + static/typedoc/typedoc.json | 3866 ++++++++++++++++++----------------- 2 files changed, 1983 insertions(+), 1904 deletions(-) diff --git a/src/types.ts b/src/types.ts index 7a00af03a..3c3415587 100644 --- a/src/types.ts +++ b/src/types.ts @@ -2302,6 +2302,17 @@ export enum EmbedEvent { *``` */ AnswerDelete = 'answerDelete', + /** + * Emitted when the AI Highlights action is triggered on a Liveboard + * @version SDK: 1.44.0 | ThoughtSpot: 10.15.0.cl + * @example + *```js + * liveboardEmbed.on(EmbedEvent.AIHighlights, (payload) => { + * console.log('AI Highlights', payload); + * }) + *``` + */ + AIHighlights = 'AIHighlights', /** * Emitted when a user initiates the Pin action to * add an Answer to a Liveboard. @@ -3391,6 +3402,16 @@ export enum HostEvent { * @version SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1.sw */ DownloadAsPdf = 'downloadAsPdf', + /** + * Trigger the **AI Highlights** action on an embedded Liveboard + * + * @example + * ```js + * liveboardEmbed.trigger(HostEvent.AIHighlights) + * ``` + * @version SDK: 1.44.0 | ThoughtSpot: 10.15.0.cl + */ + AIHighlights = 'AIHighlights', /** * Trigger the **Make a copy** action on a Liveboard, * visualization, or Answer page. diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 16536ae61..0e8a0557d 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 2094, + "id": 2096, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 2207, + "id": 2209, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -48,14 +48,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5469, + "line": 5490, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2114, + "id": 2116, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -76,14 +76,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4615, + "line": 4636, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 2107, + "id": 2109, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -104,14 +104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4544, + "line": 4565, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 2106, + "id": 2108, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -128,14 +128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4533, + "line": 4554, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 2112, + "id": 2114, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -152,14 +152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4596, + "line": 4617, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 2113, + "id": 2115, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -176,14 +176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4605, + "line": 4626, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 2115, + "id": 2117, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -204,14 +204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4625, + "line": 4646, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 2189, + "id": 2191, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -232,14 +232,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5263, + "line": 5284, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 2162, + "id": 2164, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -260,14 +260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4985, + "line": 5006, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 2204, + "id": 2206, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -288,14 +288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5436, + "line": 5457, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 2161, + "id": 2163, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -316,14 +316,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4973, + "line": 4994, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2160, + "id": 2162, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -344,14 +344,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4961, + "line": 4982, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2203, + "id": 2205, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -373,14 +373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5425, + "line": 5446, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 2173, + "id": 2175, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -401,14 +401,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5098, + "line": 5119, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 2176, + "id": 2178, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -429,14 +429,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5132, + "line": 5153, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 2181, + "id": 2183, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -457,14 +457,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5187, + "line": 5208, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 2175, + "id": 2177, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -485,14 +485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5121, + "line": 5142, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 2178, + "id": 2180, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -513,14 +513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5155, + "line": 5176, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 2182, + "id": 2184, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -541,14 +541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5197, + "line": 5218, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 2179, + "id": 2181, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -569,14 +569,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5166, + "line": 5187, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 2184, + "id": 2186, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -597,14 +597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5219, + "line": 5240, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 2180, + "id": 2182, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -625,14 +625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5176, + "line": 5197, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 2177, + "id": 2179, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -653,14 +653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5143, + "line": 5164, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 2183, + "id": 2185, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -681,14 +681,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5207, + "line": 5228, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 2174, + "id": 2176, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -709,14 +709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5109, + "line": 5130, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 2216, + "id": 2218, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -737,14 +737,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5567, + "line": 5588, "character": 4 } ], "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 2111, + "id": 2113, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -761,14 +761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4587, + "line": 4608, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 2110, + "id": 2112, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -789,14 +789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4578, + "line": 4599, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 2109, + "id": 2111, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -817,14 +817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4566, + "line": 4587, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 2223, + "id": 2225, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -845,14 +845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5643, + "line": 5664, "character": 4 } ], "defaultValue": "\"columnRename\"" }, { - "id": 2108, + "id": 2110, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -869,14 +869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4555, + "line": 4576, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 2153, + "id": 2155, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -884,14 +884,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4912, + "line": 4933, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 2101, + "id": 2103, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -908,14 +908,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4492, + "line": 4513, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2152, + "id": 2154, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -932,14 +932,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4911, + "line": 4932, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2224, + "id": 2226, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -960,14 +960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5653, + "line": 5674, "character": 4 } ], "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 2201, + "id": 2203, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -988,14 +988,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5400, + "line": 5421, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 2164, + "id": 2166, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1016,14 +1016,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5005, + "line": 5026, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2169, + "id": 2171, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1044,14 +1044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5056, + "line": 5077, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 2221, + "id": 2223, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1072,14 +1072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5624, + "line": 5645, "character": 4 } ], "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 2213, + "id": 2215, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1100,14 +1100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5536, + "line": 5557, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 2215, + "id": 2217, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1128,14 +1128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5555, + "line": 5576, "character": 4 } ], "defaultValue": "\"disableChipReorder\"" }, { - "id": 2123, + "id": 2125, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1152,14 +1152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4675, + "line": 4696, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 2126, + "id": 2128, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1176,14 +1176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4708, + "line": 4729, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2125, + "id": 2127, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1201,14 +1201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4698, + "line": 4719, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2124, + "id": 2126, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1225,14 +1225,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4685, + "line": 4706, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2127, + "id": 2129, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1249,14 +1249,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4718, + "line": 4739, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2157, + "id": 2159, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1273,14 +1273,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4928, + "line": 4949, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 2151, + "id": 2153, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1297,14 +1297,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4901, + "line": 4922, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 2150, + "id": 2152, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1321,14 +1321,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4892, + "line": 4913, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 2135, + "id": 2137, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1345,14 +1345,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4794, + "line": 4815, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2100, + "id": 2102, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1369,14 +1369,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4483, + "line": 4504, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 2163, + "id": 2165, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1397,14 +1397,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4994, + "line": 5015, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 2155, + "id": 2157, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1412,14 +1412,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4917, + "line": 4938, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 2220, + "id": 2222, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1440,14 +1440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5613, + "line": 5634, "character": 4 } ], "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 2193, + "id": 2195, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1468,14 +1468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5307, + "line": 5328, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 2208, + "id": 2210, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1496,14 +1496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5482, + "line": 5503, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 2132, + "id": 2134, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1520,14 +1520,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4762, + "line": 4783, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2136, + "id": 2138, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1544,14 +1544,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4802, + "line": 4823, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 2222, + "id": 2224, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1572,14 +1572,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5634, + "line": 5655, "character": 4 } ], "defaultValue": "\"editTokens\"" }, { - "id": 2190, + "id": 2192, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1600,14 +1600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5273, + "line": 5294, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 2191, + "id": 2193, "name": "EnableIterativeChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1628,14 +1628,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5284, + "line": 5305, "character": 4 } ], "defaultValue": "\"enableIterativeChangeAnalysis\"" }, { - "id": 2149, + "id": 2151, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1652,14 +1652,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4881, + "line": 4902, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2129, + "id": 2131, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1677,14 +1677,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4734, + "line": 4755, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2130, + "id": 2132, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1701,14 +1701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4744, + "line": 4765, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 2225, + "id": 2227, "name": "InConversationTraining", "kind": 16, "kindString": "Enumeration member", @@ -1729,14 +1729,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5669, + "line": 5690, "character": 4 } ], "defaultValue": "\"InConversationTraining\"" }, { - "id": 2214, + "id": 2216, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1757,14 +1757,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5546, + "line": 5567, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 2143, + "id": 2145, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1781,14 +1781,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4843, + "line": 4864, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2231, + "id": 2233, "name": "LiveboardStylePanel", "kind": 16, "kindString": "Enumeration member", @@ -1809,14 +1809,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5735, + "line": 5756, "character": 4 } ], "defaultValue": "\"liveboardStylePanel\"" }, { - "id": 2199, + "id": 2201, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1837,14 +1837,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5368, + "line": 5389, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 2099, + "id": 2101, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1861,14 +1861,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4474, + "line": 4495, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2197, + "id": 2199, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1885,14 +1885,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5348, + "line": 5369, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2168, + "id": 2170, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1913,14 +1913,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5046, + "line": 5067, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2212, + "id": 2214, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1941,14 +1941,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5525, + "line": 5546, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 2188, + "id": 2190, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1969,14 +1969,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5253, + "line": 5274, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 2195, + "id": 2197, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1996,14 +1996,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5328, + "line": 5349, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 2196, + "id": 2198, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -2020,14 +2020,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5337, + "line": 5358, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 2206, + "id": 2208, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -2048,14 +2048,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5458, + "line": 5479, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 2209, + "id": 2211, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2076,14 +2076,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5493, + "line": 5514, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 2198, + "id": 2200, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2104,14 +2104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5358, + "line": 5379, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 2146, + "id": 2148, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2128,14 +2128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4860, + "line": 4881, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2229, + "id": 2231, "name": "PngScreenshotInEmail", "kind": 16, "kindString": "Enumeration member", @@ -2152,14 +2152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5713, + "line": 5734, "character": 4 } ], "defaultValue": "\"pngScreenshotInEmail\"" }, { - "id": 2133, + "id": 2135, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2176,14 +2176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4772, + "line": 4793, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2217, + "id": 2219, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2204,14 +2204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5579, + "line": 5600, "character": 4 } ], "defaultValue": "\"previewDataSpotter\"" }, { - "id": 2159, + "id": 2161, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2229,14 +2229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4951, + "line": 4972, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 2137, + "id": 2139, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2253,14 +2253,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4812, + "line": 4833, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2230, + "id": 2232, "name": "RemoveAttachment", "kind": 16, "kindString": "Enumeration member", @@ -2281,14 +2281,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5725, + "line": 5746, "character": 4 } ], "defaultValue": "\"removeAttachment\"" }, { - "id": 2172, + "id": 2174, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2309,14 +2309,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5087, + "line": 5108, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 2205, + "id": 2207, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2337,14 +2337,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5447, + "line": 5468, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 2186, + "id": 2188, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2365,14 +2365,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5233, + "line": 5254, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 2165, + "id": 2167, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2396,14 +2396,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5015, + "line": 5036, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 2158, + "id": 2160, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2420,14 +2420,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4937, + "line": 4958, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 2187, + "id": 2189, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2448,14 +2448,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5243, + "line": 5264, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 2218, + "id": 2220, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2476,14 +2476,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5591, + "line": 5612, "character": 4 } ], "defaultValue": "\"resetSpotterChat\"" }, { - "id": 2194, + "id": 2196, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2504,14 +2504,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5319, + "line": 5340, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 2095, + "id": 2097, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2528,14 +2528,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4443, + "line": 4464, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2098, + "id": 2100, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2552,14 +2552,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4461, + "line": 4482, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 2103, + "id": 2105, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2576,14 +2576,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4506, + "line": 4527, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2104, + "id": 2106, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2600,14 +2600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4515, + "line": 4536, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2156, + "id": 2158, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2615,14 +2615,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4918, + "line": 4939, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 2105, + "id": 2107, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2639,14 +2639,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4524, + "line": 4545, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2120, + "id": 2122, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2657,14 +2657,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4650, + "line": 4671, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 2192, + "id": 2194, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2685,14 +2685,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5294, + "line": 5315, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 2122, + "id": 2124, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2709,14 +2709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4665, + "line": 4686, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2117, + "id": 2119, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2733,14 +2733,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4638, + "line": 4659, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2219, + "id": 2221, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2761,14 +2761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5602, + "line": 5623, "character": 4 } ], "defaultValue": "\"spotterFeedback\"" }, { - "id": 2228, + "id": 2230, "name": "SpotterTokenQuickEdit", "kind": 16, "kindString": "Enumeration member", @@ -2789,14 +2789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5702, + "line": 5723, "character": 4 } ], "defaultValue": "\"SpotterTokenQuickEdit\"" }, { - "id": 2226, + "id": 2228, "name": "SpotterWarningsBanner", "kind": 16, "kindString": "Enumeration member", @@ -2817,14 +2817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5680, + "line": 5701, "character": 4 } ], "defaultValue": "\"SpotterWarningsBanner\"" }, { - "id": 2227, + "id": 2229, "name": "SpotterWarningsOnTokens", "kind": 16, "kindString": "Enumeration member", @@ -2845,14 +2845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5691, + "line": 5712, "character": 4 } ], "defaultValue": "\"SpotterWarningsOnTokens\"" }, { - "id": 2148, + "id": 2150, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2869,14 +2869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4873, + "line": 4894, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2167, + "id": 2169, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2897,14 +2897,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5036, + "line": 5057, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2166, + "id": 2168, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2925,14 +2925,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5025, + "line": 5046, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2170, + "id": 2172, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2953,14 +2953,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5066, + "line": 5087, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 2171, + "id": 2173, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2981,14 +2981,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5076, + "line": 5097, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 2200, + "id": 2202, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -3013,14 +3013,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5387, + "line": 5408, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 2134, + "id": 2136, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -3037,14 +3037,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4784, + "line": 4805, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 2211, + "id": 2213, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3065,14 +3065,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5515, + "line": 5536, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 2131, + "id": 2133, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -3089,14 +3089,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4753, + "line": 4774, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2202, + "id": 2204, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -3117,14 +3117,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5411, + "line": 5432, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 2210, + "id": 2212, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3145,7 +3145,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5504, + "line": 5525, "character": 4 } ], @@ -3157,132 +3157,132 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2207, + 2209, + 2116, + 2109, + 2108, 2114, - 2107, - 2106, - 2112, - 2113, 2115, - 2189, + 2117, + 2191, + 2164, + 2206, + 2163, 2162, - 2204, - 2161, - 2160, - 2203, - 2173, - 2176, - 2181, + 2205, 2175, 2178, + 2183, + 2177, + 2180, + 2184, + 2181, + 2186, 2182, 2179, - 2184, - 2180, - 2177, - 2183, - 2174, - 2216, + 2185, + 2176, + 2218, + 2113, + 2112, 2111, + 2225, 2110, - 2109, + 2155, + 2103, + 2154, + 2226, + 2203, + 2166, + 2171, 2223, - 2108, - 2153, - 2101, - 2152, - 2224, - 2201, - 2164, - 2169, - 2221, - 2213, 2215, - 2123, - 2126, + 2217, 2125, - 2124, + 2128, 2127, + 2126, + 2129, + 2159, + 2153, + 2152, + 2137, + 2102, + 2165, 2157, - 2151, - 2150, - 2135, - 2100, - 2163, - 2155, - 2220, + 2222, + 2195, + 2210, + 2134, + 2138, + 2224, + 2192, 2193, - 2208, + 2151, + 2131, 2132, - 2136, - 2222, - 2190, - 2191, - 2149, - 2129, - 2130, - 2225, - 2214, - 2143, - 2231, + 2227, + 2216, + 2145, + 2233, + 2201, + 2101, 2199, - 2099, + 2170, + 2214, + 2190, 2197, - 2168, - 2212, + 2198, + 2208, + 2211, + 2200, + 2148, + 2231, + 2135, + 2219, + 2161, + 2139, + 2232, + 2174, + 2207, 2188, - 2195, + 2167, + 2160, + 2189, + 2220, 2196, - 2206, - 2209, - 2198, - 2146, - 2229, - 2133, - 2217, - 2159, - 2137, - 2230, - 2172, - 2205, - 2186, - 2165, - 2158, - 2187, - 2218, - 2194, - 2095, - 2098, - 2103, - 2104, - 2156, + 2097, + 2100, 2105, - 2120, - 2192, + 2106, + 2158, + 2107, 2122, - 2117, - 2219, + 2194, + 2124, + 2119, + 2221, + 2230, 2228, - 2226, - 2227, - 2148, - 2167, - 2166, - 2170, - 2171, - 2200, - 2134, - 2211, - 2131, + 2229, + 2150, + 2169, + 2168, + 2172, + 2173, 2202, - 2210 + 2136, + 2213, + 2133, + 2204, + 2212 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4434, + "line": 4455, "character": 12 } ] @@ -3837,7 +3837,7 @@ ] }, { - "id": 2232, + "id": 2234, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3847,7 +3847,7 @@ }, "children": [ { - "id": 2235, + "id": 2237, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3855,14 +3855,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5756, + "line": 5777, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 2233, + "id": 2235, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3870,14 +3870,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5754, + "line": 5775, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 2234, + "id": 2236, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3885,7 +3885,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5755, + "line": 5776, "character": 4 } ], @@ -3897,22 +3897,22 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2237, 2235, - 2233, - 2234 + 2236 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5753, + "line": 5774, "character": 12 } ] }, { - "id": 2899, + "id": 2901, "name": "CustomActionTarget", "kind": 4, "kindString": "Enumeration", @@ -3922,7 +3922,7 @@ }, "children": [ { - "id": 2902, + "id": 2904, "name": "ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -3930,14 +3930,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5841, + "line": 5862, "character": 4 } ], "defaultValue": "\"ANSWER\"" }, { - "id": 2900, + "id": 2902, "name": "LIVEBOARD", "kind": 16, "kindString": "Enumeration member", @@ -3945,14 +3945,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5839, + "line": 5860, "character": 4 } ], "defaultValue": "\"LIVEBOARD\"" }, { - "id": 2903, + "id": 2905, "name": "SPOTTER", "kind": 16, "kindString": "Enumeration member", @@ -3960,14 +3960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5842, + "line": 5863, "character": 4 } ], "defaultValue": "\"SPOTTER\"" }, { - "id": 2901, + "id": 2903, "name": "VIZ", "kind": 16, "kindString": "Enumeration member", @@ -3975,7 +3975,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5840, + "line": 5861, "character": 4 } ], @@ -3987,23 +3987,23 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2904, 2902, - 2900, - 2903, - 2901 + 2905, + 2903 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5838, + "line": 5859, "character": 12 } ] }, { - "id": 2895, + "id": 2897, "name": "CustomActionsPosition", "kind": 4, "kindString": "Enumeration", @@ -4013,7 +4013,7 @@ }, "children": [ { - "id": 2898, + "id": 2900, "name": "CONTEXTMENU", "kind": 16, "kindString": "Enumeration member", @@ -4021,14 +4021,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5832, + "line": 5853, "character": 4 } ], "defaultValue": "\"CONTEXTMENU\"" }, { - "id": 2897, + "id": 2899, "name": "MENU", "kind": 16, "kindString": "Enumeration member", @@ -4036,14 +4036,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5831, + "line": 5852, "character": 4 } ], "defaultValue": "\"MENU\"" }, { - "id": 2896, + "id": 2898, "name": "PRIMARY", "kind": 16, "kindString": "Enumeration member", @@ -4051,7 +4051,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5830, + "line": 5851, "character": 4 } ], @@ -4063,22 +4063,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2898, - 2897, - 2896 + 2900, + 2899, + 2898 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5829, + "line": 5850, "character": 12 } ] }, { - "id": 2891, + "id": 2893, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -4088,7 +4088,7 @@ }, "children": [ { - "id": 2893, + "id": 2895, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4106,7 +4106,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 2892, + "id": 2894, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4124,7 +4124,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 2894, + "id": 2896, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -4147,9 +4147,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2893, - 2892, - 2894 + 2895, + 2894, + 2896 ] } ], @@ -4162,7 +4162,7 @@ ] }, { - "id": 2090, + "id": 2092, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -4172,7 +4172,7 @@ }, "children": [ { - "id": 2092, + "id": 2094, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -4183,14 +4183,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4265, + "line": 4286, "character": 4 } ], "defaultValue": "\"collapse\"" }, { - "id": 2093, + "id": 2095, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -4201,14 +4201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4269, + "line": 4290, "character": 4 } ], "defaultValue": "\"expand\"" }, { - "id": 2091, + "id": 2093, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -4219,7 +4219,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4261, + "line": 4282, "character": 4 } ], @@ -4231,16 +4231,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2092, - 2093, - 2091 + 2094, + 2095, + 2093 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4257, + "line": 4278, "character": 12 } ] @@ -4270,6 +4270,34 @@ ] }, "children": [ + { + "id": 1962, + "name": "AIHighlights", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when the AI Highlights action is triggered on a Liveboard", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.44.0 | ThoughtSpot: 10.15.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nliveboardEmbed.on(EmbedEvent.AIHighlights, (payload) => {\n console.log('AI Highlights', payload);\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 2302, + "character": 4 + } + ], + "defaultValue": "\"AIHighlights\"" + }, { "id": 1954, "name": "ALL", @@ -4331,7 +4359,7 @@ "defaultValue": "\"addRemoveColumns\"" }, { - "id": 1978, + "id": 1979, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -4352,7 +4380,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2498, + "line": 2509, "character": 4 } ], @@ -4391,7 +4419,7 @@ "defaultValue": "\"alert\"" }, { - "id": 1974, + "id": 1975, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -4412,7 +4440,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2466, + "line": 2477, "character": 4 } ], @@ -4447,7 +4475,7 @@ "defaultValue": "\"answerDelete\"" }, { - "id": 2001, + "id": 2002, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -4480,7 +4508,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2707, + "line": 2718, "character": 4 } ], @@ -4547,7 +4575,7 @@ "defaultValue": "\"authInit\"" }, { - "id": 1985, + "id": 1986, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -4568,14 +4596,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2574, + "line": 2585, "character": 4 } ], "defaultValue": "\"cancel\"" }, { - "id": 1972, + "id": 1973, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -4596,14 +4624,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2444, + "line": 2455, "character": 4 } ], "defaultValue": "\"copyAEdit\"" }, { - "id": 1987, + "id": 1988, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -4624,14 +4652,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2594, + "line": 2605, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1967, + "id": 1968, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -4652,14 +4680,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2381, + "line": 2392, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1995, + "id": 1996, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -4676,14 +4704,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2658, + "line": 2669, "character": 4 } ], "defaultValue": "\"createConnection\"" }, { - "id": 2006, + "id": 2007, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -4701,14 +4729,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2838, + "line": 2849, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 2007, + "id": 2008, "name": "CreateModel", "kind": 16, "kindString": "Enumeration member", @@ -4725,14 +4753,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2843, + "line": 2854, "character": 4 } ], "defaultValue": "\"createModel\"" }, { - "id": 2000, + "id": 2001, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -4749,14 +4777,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2698, + "line": 2709, "character": 4 } ], "defaultValue": "\"createWorksheet\"" }, { - "id": 1988, + "id": 1989, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4777,7 +4805,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2605, + "line": 2616, "character": 4 } ], @@ -4888,7 +4916,7 @@ "defaultValue": "\"dataSourceSelected\"" }, { - "id": 1983, + "id": 1984, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -4909,14 +4937,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2556, + "line": 2567, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1999, + "id": 2000, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -4941,7 +4969,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2693, + "line": 2704, "character": 4 } ], @@ -5145,7 +5173,7 @@ "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 1966, + "id": 1967, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -5166,14 +5194,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2370, + "line": 2381, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1965, + "id": 1966, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -5194,7 +5222,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2358, + "line": 2369, "character": 4 } ], @@ -5245,7 +5273,7 @@ "defaultValue": "\"drillDown\"" }, { - "id": 1980, + "id": 1981, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -5266,14 +5294,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2520, + "line": 2531, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1969, + "id": 1970, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -5294,7 +5322,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2404, + "line": 2415, "character": 4 } ], @@ -5338,7 +5366,7 @@ "defaultValue": "\"Error\"" }, { - "id": 1986, + "id": 1987, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -5359,14 +5387,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2584, + "line": 2595, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1970, + "id": 1971, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -5387,14 +5415,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2419, + "line": 2430, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1991, + "id": 1992, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5411,7 +5439,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2635, + "line": 2646, "character": 4 } ], @@ -5474,7 +5502,7 @@ "defaultValue": "\"init\"" }, { - "id": 2014, + "id": 2015, "name": "LastPromptDeleted", "kind": 16, "kindString": "Enumeration member", @@ -5495,14 +5523,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2910, + "line": 2921, "character": 4 } ], "defaultValue": "\"LastPromptDeleted\"" }, { - "id": 2013, + "id": 2014, "name": "LastPromptEdited", "kind": 16, "kindString": "Enumeration member", @@ -5523,14 +5551,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2899, + "line": 2910, "character": 4 } ], "defaultValue": "\"LastPromptEdited\"" }, { - "id": 1977, + "id": 1978, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -5551,7 +5579,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2487, + "line": 2498, "character": 4 } ], @@ -5622,7 +5650,7 @@ "defaultValue": "\"load\"" }, { - "id": 1981, + "id": 1982, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -5643,7 +5671,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2531, + "line": 2542, "character": 4 } ], @@ -5678,7 +5706,7 @@ "defaultValue": "\"noCookieAccess\"" }, { - "id": 2003, + "id": 2004, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", @@ -5708,14 +5736,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2771, + "line": 2782, "character": 4 } ], "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 2018, + "id": 2019, "name": "OrgSwitched", "kind": 16, "kindString": "Enumeration member", @@ -5736,14 +5764,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2955, + "line": 2966, "character": 4 } ], "defaultValue": "\"orgSwitched\"" }, { - "id": 2004, + "id": 2005, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5760,14 +5788,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2782, + "line": 2793, "character": 4 } ], "defaultValue": "\"parameterChanged\"" }, { - "id": 1962, + "id": 1963, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -5788,14 +5816,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2310, + "line": 2321, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1982, + "id": 1983, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -5820,14 +5848,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2546, + "line": 2557, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2011, + "id": 2012, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -5848,7 +5876,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2877, + "line": 2888, "character": 4 } ], @@ -5883,7 +5911,7 @@ "defaultValue": "\"queryChanged\"" }, { - "id": 2002, + "id": 2003, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -5900,14 +5928,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2712, + "line": 2723, "character": 4 } ], "defaultValue": "\"rename\"" }, { - "id": 1998, + "id": 1999, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -5940,14 +5968,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2686, + "line": 2697, "character": 4 } ], "defaultValue": "\"resetLiveboard\"" }, { - "id": 2015, + "id": 2016, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -5968,7 +5996,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2921, + "line": 2932, "character": 4 } ], @@ -6003,7 +6031,7 @@ "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 1992, + "id": 1993, "name": "SageEmbedQuery", "kind": 16, "kindString": "Enumeration member", @@ -6020,14 +6048,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2641, + "line": 2652, "character": 4 } ], "defaultValue": "\"sageEmbedQuery\"" }, { - "id": 1993, + "id": 1994, "name": "SageWorksheetUpdated", "kind": 16, "kindString": "Enumeration member", @@ -6044,7 +6072,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2648, + "line": 2659, "character": 4 } ], @@ -6079,7 +6107,7 @@ "defaultValue": "\"save\"" }, { - "id": 1971, + "id": 1972, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -6100,14 +6128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2430, + "line": 2441, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 1997, + "id": 1998, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6140,14 +6168,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2677, + "line": 2688, "character": 4 } ], "defaultValue": "\"savePersonalisedView\"" }, { - "id": 1979, + "id": 1980, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -6168,14 +6196,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2509, + "line": 2520, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1984, + "id": 1985, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -6196,14 +6224,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2565, + "line": 2576, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1964, + "id": 1965, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -6224,14 +6252,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2346, + "line": 2357, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1973, + "id": 1974, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -6252,14 +6280,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2455, + "line": 2466, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1963, + "id": 1964, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -6280,14 +6308,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2328, + "line": 2339, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2010, + "id": 2011, "name": "SpotterData", "kind": 16, "kindString": "Enumeration member", @@ -6308,14 +6336,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2866, + "line": 2877, "character": 4 } ], "defaultValue": "\"SpotterData\"" }, { - "id": 2016, + "id": 2017, "name": "SpotterInit", "kind": 16, "kindString": "Enumeration member", @@ -6336,14 +6364,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2932, + "line": 2943, "character": 4 } ], "defaultValue": "\"spotterInit\"" }, { - "id": 2012, + "id": 2013, "name": "SpotterQueryTriggered", "kind": 16, "kindString": "Enumeration member", @@ -6364,14 +6392,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2888, + "line": 2899, "character": 4 } ], "defaultValue": "\"SpotterQueryTriggered\"" }, { - "id": 2005, + "id": 2006, "name": "TableVizRendered", "kind": 16, "kindString": "Enumeration member", @@ -6393,14 +6421,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2825, + "line": 2836, "character": 4 } ], "defaultValue": "\"TableVizRendered\"" }, { - "id": 1994, + "id": 1995, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -6417,14 +6445,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2653, + "line": 2664, "character": 4 } ], "defaultValue": "\"updateConnection\"" }, { - "id": 1996, + "id": 1997, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6457,14 +6485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2668, + "line": 2679, "character": 4 } ], "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 1968, + "id": 1969, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -6485,7 +6513,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2392, + "line": 2403, "character": 4 } ], @@ -6560,7 +6588,7 @@ "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 1989, + "id": 1990, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -6581,7 +6609,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2616, + "line": 2627, "character": 4 } ], @@ -6593,29 +6621,30 @@ "title": "Enumeration members", "kind": 16, "children": [ + 1962, 1954, 1934, - 1978, + 1979, 1939, - 1974, + 1975, 1961, - 2001, + 2002, 1940, 1928, - 1985, - 1972, - 1987, - 1967, - 1995, - 2006, - 2007, - 2000, + 1986, + 1973, 1988, + 1968, + 1996, + 2007, + 2008, + 2001, + 1989, 1935, 1930, 1933, - 1983, - 1999, + 1984, + 2000, 1952, 1951, 1956, @@ -6623,55 +6652,55 @@ 1958, 1957, 1960, + 1967, 1966, - 1965, 1932, - 1980, - 1969, - 1938, - 1986, + 1981, 1970, - 1991, + 1938, + 1987, + 1971, + 1992, 1946, 1927, + 2015, 2014, - 2013, - 1977, + 1978, 1953, 1929, - 1981, + 1982, 1949, - 2003, - 2018, 2004, - 1962, - 1982, - 2011, + 2019, + 2005, + 1963, + 1983, + 2012, 1931, - 2002, - 1998, - 2015, + 2003, + 1999, + 2016, 1947, - 1992, 1993, + 1994, 1955, - 1971, - 1997, - 1979, - 1984, + 1972, + 1998, + 1980, + 1985, + 1965, + 1974, 1964, - 1973, - 1963, - 2010, - 2016, - 2012, - 2005, - 1994, - 1996, - 1968, + 2011, + 2017, + 2013, + 2006, + 1995, + 1997, + 1969, 1937, 1936, - 1989 + 1990 ] } ], @@ -6684,7 +6713,7 @@ ] }, { - "id": 2599, + "id": 2601, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -6694,7 +6723,7 @@ }, "children": [ { - "id": 2603, + "id": 2605, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -6717,7 +6746,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2607, + "id": 2609, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6741,7 +6770,7 @@ "defaultValue": "\"create\"" }, { - "id": 2609, + "id": 2611, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -6765,7 +6794,7 @@ "defaultValue": "\"favorites\"" }, { - "id": 2601, + "id": 2603, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6788,7 +6817,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2606, + "id": 2608, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6811,7 +6840,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2602, + "id": 2604, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6834,7 +6863,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2604, + "id": 2606, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6857,7 +6886,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2600, + "id": 2602, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6880,7 +6909,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2605, + "id": 2607, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6903,7 +6932,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2608, + "id": 2610, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -6932,16 +6961,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2603, - 2607, + 2605, 2609, - 2601, + 2611, + 2603, + 2608, + 2604, 2606, 2602, - 2604, - 2600, - 2605, - 2608 + 2607, + 2610 ] } ], @@ -6954,7 +6983,7 @@ ] }, { - "id": 2849, + "id": 2851, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -6970,7 +6999,7 @@ }, "children": [ { - "id": 2850, + "id": 2852, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -6988,7 +7017,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2851, + "id": 2853, "name": "ModularWithStylingChanges", "kind": 16, "kindString": "Enumeration member", @@ -7011,8 +7040,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2850, - 2851 + 2852, + 2853 ] } ], @@ -7025,14 +7054,14 @@ ] }, { - "id": 2843, + "id": 2845, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2845, + "id": 2847, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -7047,7 +7076,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2846, + "id": 2848, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -7062,7 +7091,7 @@ "defaultValue": "\"none\"" }, { - "id": 2844, + "id": 2846, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -7082,9 +7111,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2845, - 2846, - 2844 + 2847, + 2848, + 2846 ] } ], @@ -7097,7 +7126,7 @@ ] }, { - "id": 2610, + "id": 2612, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -7113,7 +7142,7 @@ }, "children": [ { - "id": 2613, + "id": 2615, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -7131,7 +7160,7 @@ "defaultValue": "\"FAVORITE\"" }, { - "id": 2616, + "id": 2618, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -7149,7 +7178,7 @@ "defaultValue": "\"LEARNING\"" }, { - "id": 2614, + "id": 2616, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -7167,7 +7196,7 @@ "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2611, + "id": 2613, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7185,7 +7214,7 @@ "defaultValue": "\"SEARCH\"" }, { - "id": 2615, + "id": 2617, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -7203,7 +7232,7 @@ "defaultValue": "\"TRENDING\"" }, { - "id": 2612, + "id": 2614, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -7226,12 +7255,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2613, - 2616, - 2614, - 2611, 2615, - 2612 + 2618, + 2616, + 2613, + 2617, + 2614 ] } ], @@ -7244,7 +7273,7 @@ ] }, { - "id": 2019, + "id": 2020, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -7273,7 +7302,35 @@ }, "children": [ { - "id": 2030, + "id": 2042, + "name": "AIHighlights", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Trigger the **AI Highlights** action on an embedded Liveboard", + "tags": [ + { + "tag": "example", + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.AIHighlights)\n```" + }, + { + "tag": "version", + "text": "SDK: 1.44.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3401, + "character": 4 + } + ], + "defaultValue": "\"AIHighlights\"" + }, + { + "id": 2031, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -7299,14 +7356,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3206, + "line": 3217, "character": 4 } ], "defaultValue": "\"addColumns\"" }, { - "id": 2085, + "id": 2087, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -7332,14 +7389,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4204, + "line": 4225, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2070, + "id": 2072, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -7360,14 +7417,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4011, + "line": 4032, "character": 4 } ], "defaultValue": "\"AskSage\"" }, { - "id": 2088, + "id": 2090, "name": "AskSpotter", "kind": 16, "kindString": "Enumeration member", @@ -7393,14 +7450,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4238, + "line": 4259, "character": 4 } ], "defaultValue": "\"AskSpotter\"" }, { - "id": 2047, + "id": 2049, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -7426,14 +7483,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3520, + "line": 3541, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2044, + "id": 2046, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -7463,14 +7520,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3450, + "line": 3471, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2051, + "id": 2053, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -7496,14 +7553,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3597, + "line": 3618, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2084, + "id": 2086, "name": "DeleteLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -7524,14 +7581,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4192, + "line": 4213, "character": 4 } ], "defaultValue": "\"DeleteLastPrompt\"" }, { - "id": 2053, + "id": 2055, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -7561,14 +7618,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3639, + "line": 3660, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2055, + "id": 2057, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -7594,14 +7651,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3682, + "line": 3703, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2040, + "id": 2041, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -7631,14 +7688,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3380, + "line": 3391, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2054, + "id": 2056, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -7659,14 +7716,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3659, + "line": 3680, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2056, + "id": 2058, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -7692,14 +7749,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3705, + "line": 3726, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2021, + "id": 2022, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -7749,14 +7806,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3083, + "line": 3094, "character": 4 } ], "defaultValue": "\"triggerDrillDown\"" }, { - "id": 2046, + "id": 2048, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -7796,14 +7853,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3503, + "line": 3524, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2081, + "id": 2083, "name": "EditLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -7829,14 +7886,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4165, + "line": 4186, "character": 4 } ], "defaultValue": "\"EditLastPrompt\"" }, { - "id": 2038, + "id": 2039, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -7857,14 +7914,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3349, + "line": 3360, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2043, + "id": 2045, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -7890,14 +7947,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3433, + "line": 3454, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2037, + "id": 2038, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -7918,14 +7975,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3339, + "line": 3350, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2069, + "id": 2071, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -7951,14 +8008,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4001, + "line": 4022, "character": 4 } ], "defaultValue": "\"getAnswerSession\"" }, { - "id": 2063, + "id": 2065, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -7979,14 +8036,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3828, + "line": 3849, "character": 4 } ], "defaultValue": "\"getFilters\"" }, { - "id": 2024, + "id": 2025, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -8007,14 +8064,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3103, + "line": 3114, "character": 4 } ], "defaultValue": "\"GetIframeUrl\"" }, { - "id": 2074, + "id": 2076, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -8036,14 +8093,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4068, + "line": 4089, "character": 4 } ], "defaultValue": "\"GetParameters\"" }, { - "id": 2049, + "id": 2051, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -8072,14 +8129,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3561, + "line": 3582, "character": 4 } ], "defaultValue": "\"getTML\"" }, { - "id": 2065, + "id": 2067, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -8100,14 +8157,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3931, + "line": 3952, "character": 4 } ], "defaultValue": "\"getTabs\"" }, { - "id": 2034, + "id": 2035, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -8128,14 +8185,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3311, + "line": 3322, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2041, + "id": 2043, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -8172,14 +8229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3409, + "line": 3430, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2045, + "id": 2047, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -8213,14 +8270,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3471, + "line": 3492, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2061, + "id": 2063, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -8246,14 +8303,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3805, + "line": 3826, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2028, + "id": 2029, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -8279,14 +8336,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3176, + "line": 3187, "character": 4 } ], "defaultValue": "\"Navigate\"" }, { - "id": 2029, + "id": 2030, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -8316,14 +8373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3196, + "line": 3207, "character": 4 } ], "defaultValue": "\"openFilter\"" }, { - "id": 2033, + "id": 2034, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -8384,14 +8441,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3301, + "line": 3312, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2048, + "id": 2050, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -8417,14 +8474,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3537, + "line": 3558, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2082, + "id": 2084, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -8445,14 +8502,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4174, + "line": 4195, "character": 4 } ], "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 2042, + "id": 2044, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -8477,14 +8534,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3423, + "line": 3444, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2031, + "id": 2032, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -8510,14 +8567,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3216, + "line": 3227, "character": 4 } ], "defaultValue": "\"removeColumn\"" }, { - "id": 2072, + "id": 2074, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8538,14 +8595,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4036, + "line": 4057, "character": 4 } ], "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 2062, + "id": 2064, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -8566,14 +8623,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3817, + "line": 3838, "character": 4 } ], "defaultValue": "\"resetSearch\"" }, { - "id": 2083, + "id": 2085, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -8594,14 +8651,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4183, + "line": 4204, "character": 4 } ], "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 2058, + "id": 2060, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -8627,14 +8684,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3758, + "line": 3779, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2077, + "id": 2079, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -8669,14 +8726,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4115, + "line": 4136, "character": 4 } ], "defaultValue": "\"saveAnswer\"" }, { - "id": 2035, + "id": 2036, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -8697,14 +8754,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3320, + "line": 3331, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2036, + "id": 2037, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -8725,14 +8782,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3329, + "line": 3340, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2020, + "id": 2021, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -8764,14 +8821,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3032, + "line": 3043, "character": 4 } ], "defaultValue": "\"search\"" }, { - "id": 2026, + "id": 2027, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -8797,14 +8854,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3128, + "line": 3139, "character": 4 } ], "defaultValue": "\"SetActiveTab\"" }, { - "id": 2067, + "id": 2069, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -8830,14 +8887,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3957, + "line": 3978, "character": 4 } ], "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 2066, + "id": 2068, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -8863,14 +8920,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3944, + "line": 3965, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 2025, + "id": 2026, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -8896,14 +8953,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3116, + "line": 3127, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 2057, + "id": 2059, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8924,14 +8981,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3718, + "line": 3739, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2050, + "id": 2052, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -8957,14 +9014,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3580, + "line": 3601, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2052, + "id": 2054, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -8990,14 +9047,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3617, + "line": 3638, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2080, + "id": 2082, "name": "SpotterSearch", "kind": 16, "kindString": "Enumeration member", @@ -9028,14 +9085,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4155, + "line": 4176, "character": 4 } ], "defaultValue": "\"SpotterSearch\"" }, { - "id": 2060, + "id": 2062, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -9061,14 +9118,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3789, + "line": 3810, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2059, + "id": 2061, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -9094,14 +9151,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3773, + "line": 3794, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2079, + "id": 2081, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -9127,14 +9184,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4140, + "line": 4161, "character": 4 } ], "defaultValue": "\"TransformTableVizData\"" }, { - "id": 2071, + "id": 2073, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -9155,14 +9212,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4027, + "line": 4048, "character": 4 } ], "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 2064, + "id": 2066, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -9205,14 +9262,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3918, + "line": 3939, "character": 4 } ], "defaultValue": "\"updateFilters\"" }, { - "id": 2073, + "id": 2075, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -9229,14 +9286,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4050, + "line": 4071, "character": 4 } ], "defaultValue": "\"UpdateParameters\"" }, { - "id": 2075, + "id": 2077, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -9253,14 +9310,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4076, + "line": 4097, "character": 4 } ], "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 2027, + "id": 2028, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -9291,14 +9348,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3164, + "line": 3175, "character": 4 } ], "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 2068, + "id": 2070, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -9329,14 +9386,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3971, + "line": 3992, "character": 4 } ], "defaultValue": "\"updateSageQuery\"" }, { - "id": 2039, + "id": 2040, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -9357,14 +9414,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3358, + "line": 3369, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2032, + "id": 2033, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -9385,7 +9442,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3232, + "line": 3243, "character": 4 } ], @@ -9397,82 +9454,83 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2030, - 2085, - 2070, - 2088, - 2047, - 2044, - 2051, - 2084, + 2042, + 2031, + 2087, + 2072, + 2090, + 2049, + 2046, 2053, + 2086, 2055, - 2040, - 2054, + 2057, + 2041, 2056, - 2021, - 2046, - 2081, + 2058, + 2022, + 2048, + 2083, + 2039, + 2045, 2038, + 2071, + 2065, + 2025, + 2076, + 2051, + 2067, + 2035, 2043, - 2037, - 2069, + 2047, 2063, - 2024, - 2074, - 2049, - 2065, - 2034, - 2041, - 2045, - 2061, - 2028, 2029, - 2033, - 2048, - 2082, - 2042, - 2031, - 2072, - 2062, - 2083, - 2058, - 2077, - 2035, - 2036, - 2020, - 2026, - 2067, - 2066, - 2025, - 2057, + 2030, + 2034, 2050, - 2052, - 2080, + 2084, + 2044, + 2032, + 2074, + 2064, + 2085, 2060, - 2059, 2079, - 2071, - 2064, - 2073, - 2075, + 2036, + 2037, + 2021, 2027, + 2069, 2068, - 2039, - 2032 + 2026, + 2059, + 2052, + 2054, + 2082, + 2062, + 2061, + 2081, + 2073, + 2066, + 2075, + 2077, + 2028, + 2070, + 2040, + 2033 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3012, + "line": 3023, "character": 12 } ] }, { - "id": 2852, + "id": 2854, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -9488,7 +9546,7 @@ }, "children": [ { - "id": 2853, + "id": 2855, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -9506,7 +9564,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2854, + "id": 2856, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -9529,8 +9587,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2853, - 2854 + 2855, + 2856 ] } ], @@ -9543,7 +9601,7 @@ ] }, { - "id": 2885, + "id": 2887, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -9559,7 +9617,7 @@ }, "children": [ { - "id": 2888, + "id": 2890, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -9577,7 +9635,7 @@ "defaultValue": "\"AUTHOR\"" }, { - "id": 2889, + "id": 2891, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -9595,7 +9653,7 @@ "defaultValue": "\"DATE_SORT\"" }, { - "id": 2886, + "id": 2888, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -9613,7 +9671,7 @@ "defaultValue": "\"FAVOURITE\"" }, { - "id": 2890, + "id": 2892, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -9631,7 +9689,7 @@ "defaultValue": "\"SHARE\"" }, { - "id": 2887, + "id": 2889, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -9654,11 +9712,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2888, - 2889, - 2886, 2890, - 2887 + 2891, + 2888, + 2892, + 2889 ] } ], @@ -9671,7 +9729,7 @@ ] }, { - "id": 2820, + "id": 2822, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -9681,7 +9739,7 @@ }, "children": [ { - "id": 2825, + "id": 2827, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -9702,14 +9760,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5916, + "line": 5937, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2822, + "id": 2824, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -9730,14 +9788,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5877, + "line": 5898, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2824, + "id": 2826, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -9758,14 +9816,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5902, + "line": 5923, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2821, + "id": 2823, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -9786,14 +9844,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5865, + "line": 5886, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2826, + "id": 2828, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -9814,14 +9872,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5928, + "line": 5949, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2823, + "id": 2825, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -9842,7 +9900,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5889, + "line": 5910, "character": 4 } ], @@ -9854,19 +9912,19 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2825, - 2822, + 2827, 2824, - 2821, 2826, - 2823 + 2823, + 2828, + 2825 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5852, + "line": 5873, "character": 12 } ] @@ -10032,14 +10090,14 @@ ] }, { - "id": 2588, + "id": 2590, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2589, + "id": 2591, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -10047,14 +10105,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5743, + "line": 5764, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2591, + "id": 2593, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10062,14 +10120,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5745, + "line": 5766, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2590, + "id": 2592, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10077,14 +10135,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5744, + "line": 5765, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2592, + "id": 2594, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10092,7 +10150,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5746, + "line": 5767, "character": 4 } ], @@ -10104,23 +10162,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2589, 2591, - 2590, - 2592 + 2593, + 2592, + 2594 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5742, + "line": 5763, "character": 12 } ] }, { - "id": 2847, + "id": 2849, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -10136,7 +10194,7 @@ }, "children": [ { - "id": 2848, + "id": 2850, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -10159,7 +10217,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2848 + 2850 ] } ], @@ -10484,14 +10542,14 @@ ] }, { - "id": 2878, + "id": 2880, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2883, + "id": 2885, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -10506,7 +10564,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2882, + "id": 2884, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -10521,7 +10579,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2881, + "id": 2883, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -10536,7 +10594,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2884, + "id": 2886, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -10551,7 +10609,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2879, + "id": 2881, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -10566,7 +10624,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2880, + "id": 2882, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -10586,12 +10644,12 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2885, + 2884, 2883, - 2882, + 2886, 2881, - 2884, - 2879, - 2880 + 2882 ] } ], @@ -10711,7 +10769,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2855, + "id": 2857, "name": "VizPoint" } } @@ -11899,7 +11957,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2617, + "id": 2619, "name": "DOMSelector" } }, @@ -11911,7 +11969,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2504, + "id": 2506, "name": "AppViewConfig" } } @@ -12522,7 +12580,7 @@ }, "type": { "type": "reference", - "id": 2621, + "id": 2623, "name": "MessageCallback" } } @@ -12601,7 +12659,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2621, + "id": 2623, "name": "MessageCallback" } }, @@ -12613,7 +12671,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2618, + "id": 2620, "name": "MessageOptions" }, "defaultValue": "..." @@ -12936,7 +12994,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2020, "name": "HostEvent" } }, @@ -13055,7 +13113,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2878, + "id": 2880, "name": "UIPassthroughEvent" } } @@ -14288,7 +14346,7 @@ }, "type": { "type": "reference", - "id": 2621, + "id": 2623, "name": "MessageCallback" } } @@ -14372,7 +14430,7 @@ }, "type": { "type": "reference", - "id": 2621, + "id": 2623, "name": "MessageCallback" } }, @@ -14387,7 +14445,7 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2620, "name": "MessageOptions" }, "defaultValue": "..." @@ -14732,7 +14790,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2020, "name": "HostEvent" } }, @@ -14853,7 +14911,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2878, + "id": 2880, "name": "UIPassthroughEvent" } } @@ -15019,7 +15077,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2617, + "id": 2619, "name": "DOMSelector" } }, @@ -15031,7 +15089,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2382, + "id": 2384, "name": "LiveboardViewConfig" } } @@ -15633,7 +15691,7 @@ }, "type": { "type": "reference", - "id": 2621, + "id": 2623, "name": "MessageCallback" } } @@ -15712,7 +15770,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2621, + "id": 2623, "name": "MessageCallback" } }, @@ -15724,7 +15782,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2618, + "id": 2620, "name": "MessageOptions" }, "defaultValue": "..." @@ -16047,7 +16105,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2020, "name": "HostEvent" } }, @@ -16166,7 +16224,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2878, + "id": 2880, "name": "UIPassthroughEvent" } } @@ -16331,7 +16389,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2617, + "id": 2619, "name": "DOMSelector" } }, @@ -16343,7 +16401,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2457, + "id": 2459, "name": "SageViewConfig" } } @@ -16877,7 +16935,7 @@ }, "type": { "type": "reference", - "id": 2621, + "id": 2623, "name": "MessageCallback" } } @@ -16956,7 +17014,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2621, + "id": 2623, "name": "MessageCallback" } }, @@ -16968,7 +17026,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2618, + "id": 2620, "name": "MessageOptions" }, "defaultValue": "..." @@ -17292,7 +17350,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2020, "name": "HostEvent" } }, @@ -17411,7 +17469,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2878, + "id": 2880, "name": "UIPassthroughEvent" } } @@ -17586,7 +17644,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2340, + "id": 2342, "name": "SearchBarViewConfig" } } @@ -18087,7 +18145,7 @@ }, "type": { "type": "reference", - "id": 2621, + "id": 2623, "name": "MessageCallback" } } @@ -18169,7 +18227,7 @@ }, "type": { "type": "reference", - "id": 2621, + "id": 2623, "name": "MessageCallback" } }, @@ -18184,7 +18242,7 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2620, "name": "MessageOptions" }, "defaultValue": "..." @@ -18520,7 +18578,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2020, "name": "HostEvent" } }, @@ -18639,7 +18697,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2878, + "id": 2880, "name": "UIPassthroughEvent" } } @@ -18798,7 +18856,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2617, + "id": 2619, "name": "DOMSelector" } }, @@ -18810,7 +18868,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2286, + "id": 2288, "name": "SearchViewConfig" } } @@ -19343,7 +19401,7 @@ }, "type": { "type": "reference", - "id": 2621, + "id": 2623, "name": "MessageCallback" } } @@ -19425,7 +19483,7 @@ }, "type": { "type": "reference", - "id": 2621, + "id": 2623, "name": "MessageCallback" } }, @@ -19440,7 +19498,7 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2620, "name": "MessageOptions" }, "defaultValue": "..." @@ -19776,7 +19834,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2020, "name": "HostEvent" } }, @@ -19895,7 +19953,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2878, + "id": 2880, "name": "UIPassthroughEvent" } } @@ -21077,7 +21135,7 @@ }, "type": { "type": "reference", - "id": 2621, + "id": 2623, "name": "MessageCallback" } } @@ -21159,7 +21217,7 @@ }, "type": { "type": "reference", - "id": 2621, + "id": 2623, "name": "MessageCallback" } }, @@ -21174,7 +21232,7 @@ }, "type": { "type": "reference", - "id": 2618, + "id": 2620, "name": "MessageOptions" }, "defaultValue": "..." @@ -21507,7 +21565,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2019, + "id": 2020, "name": "HostEvent" } }, @@ -21626,7 +21684,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2878, + "id": 2880, "name": "UIPassthroughEvent" } } @@ -21748,7 +21806,7 @@ ] }, { - "id": 2504, + "id": 2506, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -21764,7 +21822,7 @@ }, "children": [ { - "id": 2542, + "id": 2544, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -21795,20 +21853,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2543, + "id": 2545, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2544, + "id": 2546, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2545, + "id": 2547, "name": "key", "kind": 32768, "flags": {}, @@ -21844,7 +21902,7 @@ } }, { - "id": 2566, + "id": 2568, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -21886,7 +21944,7 @@ } }, { - "id": 2524, + "id": 2526, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -21923,7 +21981,7 @@ } }, { - "id": 2563, + "id": 2565, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -21953,7 +22011,7 @@ ], "type": { "type": "reference", - "id": 2232, + "id": 2234, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -21962,7 +22020,7 @@ } }, { - "id": 2583, + "id": 2585, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -22000,7 +22058,7 @@ } }, { - "id": 2560, + "id": 2562, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -22041,7 +22099,7 @@ } }, { - "id": 2546, + "id": 2548, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -22070,7 +22128,7 @@ ], "type": { "type": "reference", - "id": 2634, + "id": 2636, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -22079,7 +22137,7 @@ } }, { - "id": 2525, + "id": 2527, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -22113,12 +22171,12 @@ ], "type": { "type": "reference", - "id": 2891, + "id": 2893, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2567, + "id": 2569, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -22160,7 +22218,7 @@ } }, { - "id": 2507, + "id": 2509, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -22198,7 +22256,7 @@ } }, { - "id": 2554, + "id": 2556, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -22236,7 +22294,7 @@ } }, { - "id": 2538, + "id": 2540, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -22274,7 +22332,7 @@ } }, { - "id": 2537, + "id": 2539, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -22306,7 +22364,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -22316,7 +22374,7 @@ } }, { - "id": 2523, + "id": 2525, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -22354,7 +22412,7 @@ } }, { - "id": 2550, + "id": 2552, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -22395,7 +22453,7 @@ } }, { - "id": 2577, + "id": 2579, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -22437,7 +22495,7 @@ } }, { - "id": 2582, + "id": 2584, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -22479,7 +22537,7 @@ } }, { - "id": 2568, + "id": 2570, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -22521,7 +22579,7 @@ } }, { - "id": 2508, + "id": 2510, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -22557,7 +22615,7 @@ } }, { - "id": 2520, + "id": 2522, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -22595,7 +22653,7 @@ } }, { - "id": 2551, + "id": 2553, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -22633,7 +22691,7 @@ } }, { - "id": 2564, + "id": 2566, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -22671,7 +22729,7 @@ } }, { - "id": 2565, + "id": 2567, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -22709,7 +22767,7 @@ } }, { - "id": 2553, + "id": 2555, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -22746,7 +22804,7 @@ } }, { - "id": 2534, + "id": 2536, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -22776,7 +22834,7 @@ ], "type": { "type": "reference", - "id": 2593, + "id": 2595, "name": "FrameParams" }, "inheritedFrom": { @@ -22785,7 +22843,7 @@ } }, { - "id": 2521, + "id": 2523, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -22819,7 +22877,7 @@ } }, { - "id": 2539, + "id": 2541, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -22855,7 +22913,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -22865,7 +22923,7 @@ } }, { - "id": 2572, + "id": 2574, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -22897,7 +22955,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2599, + "id": 2601, "name": "HomeLeftNavItem" } }, @@ -22907,7 +22965,7 @@ } }, { - "id": 2570, + "id": 2572, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -22939,7 +22997,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2610, + "id": 2612, "name": "HomepageModule" } }, @@ -22949,7 +23007,7 @@ } }, { - "id": 2569, + "id": 2571, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -22981,7 +23039,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2885, + "id": 2887, "name": "ListPageColumns" } }, @@ -22991,7 +23049,7 @@ } }, { - "id": 2512, + "id": 2514, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -23029,7 +23087,7 @@ } }, { - "id": 2509, + "id": 2511, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -23067,7 +23125,7 @@ } }, { - "id": 2506, + "id": 2508, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -23105,7 +23163,7 @@ } }, { - "id": 2580, + "id": 2582, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -23147,7 +23205,7 @@ } }, { - "id": 2573, + "id": 2575, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -23189,7 +23247,7 @@ } }, { - "id": 2511, + "id": 2513, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -23227,7 +23285,7 @@ } }, { - "id": 2510, + "id": 2512, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -23265,7 +23323,7 @@ } }, { - "id": 2518, + "id": 2520, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -23302,7 +23360,7 @@ } }, { - "id": 2513, + "id": 2515, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -23340,7 +23398,7 @@ } }, { - "id": 2517, + "id": 2519, "name": "hideTagFilterChips", "kind": 1024, "kindString": "Property", @@ -23374,7 +23432,7 @@ } }, { - "id": 2527, + "id": 2529, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -23400,12 +23458,12 @@ ], "type": { "type": "reference", - "id": 2843, + "id": 2845, "name": "HomePageSearchBarMode" } }, { - "id": 2547, + "id": 2549, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -23443,7 +23501,7 @@ } }, { - "id": 2585, + "id": 2587, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -23481,7 +23539,7 @@ } }, { - "id": 2587, + "id": 2589, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -23519,7 +23577,7 @@ } }, { - "id": 2586, + "id": 2588, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -23557,7 +23615,7 @@ } }, { - "id": 2578, + "id": 2580, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -23599,7 +23657,7 @@ } }, { - "id": 2576, + "id": 2578, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -23637,7 +23695,7 @@ } }, { - "id": 2529, + "id": 2531, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -23671,7 +23729,7 @@ } }, { - "id": 2526, + "id": 2528, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -23700,7 +23758,7 @@ } }, { - "id": 2530, + "id": 2532, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -23734,7 +23792,7 @@ } }, { - "id": 2528, + "id": 2530, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -23772,7 +23830,7 @@ } }, { - "id": 2531, + "id": 2533, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -23809,7 +23867,7 @@ } }, { - "id": 2532, + "id": 2534, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -23843,7 +23901,7 @@ } }, { - "id": 2556, + "id": 2558, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -23881,7 +23939,7 @@ } }, { - "id": 2584, + "id": 2586, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -23919,7 +23977,7 @@ } }, { - "id": 2541, + "id": 2543, "name": "locale", "kind": 1024, "kindString": "Property", @@ -23957,7 +24015,7 @@ } }, { - "id": 2522, + "id": 2524, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -23995,7 +24053,7 @@ } }, { - "id": 2555, + "id": 2557, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -24033,7 +24091,7 @@ } }, { - "id": 2515, + "id": 2517, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -24068,7 +24126,7 @@ } }, { - "id": 2514, + "id": 2516, "name": "path", "kind": 1024, "kindString": "Property", @@ -24102,7 +24160,7 @@ } }, { - "id": 2549, + "id": 2551, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -24140,7 +24198,7 @@ } }, { - "id": 2557, + "id": 2559, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -24178,7 +24236,7 @@ } }, { - "id": 2571, + "id": 2573, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -24210,7 +24268,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2610, + "id": 2612, "name": "HomepageModule" } }, @@ -24220,7 +24278,7 @@ } }, { - "id": 2561, + "id": 2563, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -24262,7 +24320,7 @@ } }, { - "id": 2562, + "id": 2564, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -24294,7 +24352,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2817, + "id": 2819, "name": "RuntimeParameter" } }, @@ -24304,7 +24362,7 @@ } }, { - "id": 2559, + "id": 2561, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -24341,7 +24399,7 @@ } }, { - "id": 2575, + "id": 2577, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -24383,7 +24441,7 @@ } }, { - "id": 2581, + "id": 2583, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -24425,7 +24483,7 @@ } }, { - "id": 2574, + "id": 2576, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -24467,7 +24525,7 @@ } }, { - "id": 2579, + "id": 2581, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -24509,7 +24567,7 @@ } }, { - "id": 2505, + "id": 2507, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -24547,7 +24605,7 @@ } }, { - "id": 2516, + "id": 2518, "name": "tag", "kind": 1024, "kindString": "Property", @@ -24581,7 +24639,7 @@ } }, { - "id": 2540, + "id": 2542, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -24617,7 +24675,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -24632,79 +24690,79 @@ "title": "Properties", "kind": 1024, "children": [ - 2542, - 2566, - 2524, - 2563, - 2583, - 2560, - 2546, - 2525, - 2567, - 2507, - 2554, - 2538, - 2537, - 2523, - 2550, - 2577, - 2582, + 2544, 2568, - 2508, - 2520, - 2551, - 2564, + 2526, 2565, - 2553, - 2534, - 2521, - 2539, - 2572, - 2570, + 2585, + 2562, + 2548, + 2527, 2569, - 2512, 2509, - 2506, - 2580, - 2573, - 2511, - 2510, - 2518, - 2513, - 2517, - 2527, - 2547, - 2585, - 2587, - 2586, - 2578, - 2576, - 2529, - 2526, - 2530, - 2528, - 2531, - 2532, 2556, + 2540, + 2539, + 2525, + 2552, + 2579, 2584, - 2541, + 2570, + 2510, 2522, + 2553, + 2566, + 2567, 2555, - 2515, + 2536, + 2523, + 2541, + 2574, + 2572, + 2571, 2514, + 2511, + 2508, + 2582, + 2575, + 2513, + 2512, + 2520, + 2515, + 2519, + 2529, 2549, + 2587, + 2589, + 2588, + 2580, + 2578, + 2531, + 2528, + 2532, + 2530, + 2533, + 2534, + 2558, + 2586, + 2543, + 2524, 2557, - 2571, - 2561, - 2562, + 2517, + 2516, + 2551, 2559, - 2575, + 2573, + 2563, + 2564, + 2561, + 2577, + 2583, + 2576, 2581, - 2574, - 2579, - 2505, - 2516, - 2540 + 2507, + 2518, + 2542 ] } ], @@ -25603,7 +25661,7 @@ ], "type": { "type": "reference", - "id": 2634, + "id": 2636, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -25723,7 +25781,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -25883,7 +25941,7 @@ ], "type": { "type": "reference", - "id": 2593, + "id": 2595, "name": "FrameParams" }, "inheritedFrom": { @@ -25929,7 +25987,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -26209,7 +26267,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -26461,7 +26519,7 @@ ], "type": { "type": "reference", - "id": 2634, + "id": 2636, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -26663,7 +26721,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -26944,7 +27002,7 @@ ], "type": { "type": "reference", - "id": 2593, + "id": 2595, "name": "FrameParams" }, "inheritedFrom": { @@ -26990,7 +27048,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -27349,7 +27407,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2817, + "id": 2819, "name": "RuntimeParameter" } }, @@ -27501,7 +27559,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -27592,7 +27650,7 @@ ] }, { - "id": 2858, + "id": 2860, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -27607,7 +27665,7 @@ }, "children": [ { - "id": 2859, + "id": 2861, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -27617,21 +27675,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5787, + "line": 5808, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2860, + "id": 2862, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2861, + "id": 2863, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -27639,18 +27697,18 @@ "sources": [ { "fileName": "types.ts", - "line": 5788, + "line": 5809, "character": 8 } ], "type": { "type": "reference", - "id": 2855, + "id": 2857, "name": "VizPoint" } }, { - "id": 2862, + "id": 2864, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -27658,7 +27716,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5789, + "line": 5810, "character": 8 } ], @@ -27666,7 +27724,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2855, + "id": 2857, "name": "VizPoint" } } @@ -27677,8 +27735,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2861, - 2862 + 2863, + 2864 ] } ] @@ -27686,7 +27744,7 @@ } }, { - "id": 2863, + "id": 2865, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -27694,21 +27752,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5791, + "line": 5812, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2864, + "id": 2866, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2872, + "id": 2874, "name": "columns", "kind": 1024, "kindString": "Property", @@ -27716,7 +27774,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5799, + "line": 5820, "character": 8 } ], @@ -27729,7 +27787,7 @@ } }, { - "id": 2873, + "id": 2875, "name": "data", "kind": 1024, "kindString": "Property", @@ -27737,7 +27795,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5800, + "line": 5821, "character": 8 } ], @@ -27750,7 +27808,7 @@ } }, { - "id": 2866, + "id": 2868, "name": "id", "kind": 1024, "kindString": "Property", @@ -27758,7 +27816,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5793, + "line": 5814, "character": 8 } ], @@ -27768,7 +27826,7 @@ } }, { - "id": 2865, + "id": 2867, "name": "name", "kind": 1024, "kindString": "Property", @@ -27776,7 +27834,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5792, + "line": 5813, "character": 8 } ], @@ -27786,7 +27844,7 @@ } }, { - "id": 2867, + "id": 2869, "name": "sources", "kind": 1024, "kindString": "Property", @@ -27794,21 +27852,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5794, + "line": 5815, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2868, + "id": 2870, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2869, + "id": 2871, "name": "header", "kind": 1024, "kindString": "Property", @@ -27816,21 +27874,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5795, + "line": 5816, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2870, + "id": 2872, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2871, + "id": 2873, "name": "guid", "kind": 1024, "kindString": "Property", @@ -27838,7 +27896,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5796, + "line": 5817, "character": 16 } ], @@ -27853,7 +27911,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2871 + 2873 ] } ] @@ -27866,7 +27924,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2869 + 2871 ] } ] @@ -27879,23 +27937,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2872, - 2873, - 2866, - 2865, - 2867 + 2874, + 2875, + 2868, + 2867, + 2869 ] } ], "indexSignature": { - "id": 2874, + "id": 2876, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2875, + "id": 2877, "name": "key", "kind": 32768, "flags": {}, @@ -27914,7 +27972,7 @@ } }, { - "id": 2876, + "id": 2878, "name": "session", "kind": 1024, "kindString": "Property", @@ -27922,7 +27980,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5803, + "line": 5824, "character": 4 } ], @@ -27933,7 +27991,7 @@ } }, { - "id": 2877, + "id": 2879, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -27943,7 +28001,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5804, + "line": 5825, "character": 4 } ], @@ -27958,23 +28016,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2859, - 2863, - 2876, - 2877 + 2861, + 2865, + 2878, + 2879 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5786, + "line": 5807, "character": 17 } ] }, { - "id": 2656, + "id": 2658, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -27984,7 +28042,7 @@ }, "children": [ { - "id": 2710, + "id": 2712, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -28007,7 +28065,7 @@ } }, { - "id": 2709, + "id": 2711, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -28030,7 +28088,7 @@ } }, { - "id": 2679, + "id": 2681, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -28053,7 +28111,7 @@ } }, { - "id": 2680, + "id": 2682, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -28076,7 +28134,7 @@ } }, { - "id": 2682, + "id": 2684, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -28099,7 +28157,7 @@ } }, { - "id": 2681, + "id": 2683, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -28122,7 +28180,7 @@ } }, { - "id": 2661, + "id": 2663, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -28145,7 +28203,7 @@ } }, { - "id": 2722, + "id": 2724, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -28168,7 +28226,7 @@ } }, { - "id": 2723, + "id": 2725, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -28191,7 +28249,7 @@ } }, { - "id": 2720, + "id": 2722, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -28214,7 +28272,7 @@ } }, { - "id": 2721, + "id": 2723, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -28237,7 +28295,7 @@ } }, { - "id": 2684, + "id": 2686, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -28260,7 +28318,7 @@ } }, { - "id": 2689, + "id": 2691, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -28283,7 +28341,7 @@ } }, { - "id": 2686, + "id": 2688, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -28306,7 +28364,7 @@ } }, { - "id": 2688, + "id": 2690, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -28329,7 +28387,7 @@ } }, { - "id": 2687, + "id": 2689, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -28352,7 +28410,7 @@ } }, { - "id": 2685, + "id": 2687, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -28375,7 +28433,7 @@ } }, { - "id": 2694, + "id": 2696, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -28398,7 +28456,7 @@ } }, { - "id": 2691, + "id": 2693, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -28421,7 +28479,7 @@ } }, { - "id": 2693, + "id": 2695, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -28444,7 +28502,7 @@ } }, { - "id": 2692, + "id": 2694, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -28467,7 +28525,7 @@ } }, { - "id": 2690, + "id": 2692, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -28490,7 +28548,7 @@ } }, { - "id": 2698, + "id": 2700, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -28513,7 +28571,7 @@ } }, { - "id": 2697, + "id": 2699, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -28536,7 +28594,7 @@ } }, { - "id": 2696, + "id": 2698, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -28559,7 +28617,7 @@ } }, { - "id": 2695, + "id": 2697, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -28582,7 +28640,7 @@ } }, { - "id": 2683, + "id": 2685, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -28605,7 +28663,7 @@ } }, { - "id": 2816, + "id": 2818, "name": "--ts-var-cca-modal-summary-header-background", "kind": 1024, "kindString": "Property", @@ -28628,7 +28686,7 @@ } }, { - "id": 2811, + "id": 2813, "name": "--ts-var-change-analysis-insights-background", "kind": 1024, "kindString": "Property", @@ -28651,7 +28709,7 @@ } }, { - "id": 2806, + "id": 2808, "name": "--ts-var-chart-heatmap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28674,7 +28732,7 @@ } }, { - "id": 2805, + "id": 2807, "name": "--ts-var-chart-heatmap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28697,7 +28755,7 @@ } }, { - "id": 2808, + "id": 2810, "name": "--ts-var-chart-treemap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28720,7 +28778,7 @@ } }, { - "id": 2807, + "id": 2809, "name": "--ts-var-chart-treemap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28743,7 +28801,7 @@ } }, { - "id": 2745, + "id": 2747, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -28766,7 +28824,7 @@ } }, { - "id": 2748, + "id": 2750, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -28789,7 +28847,7 @@ } }, { - "id": 2743, + "id": 2745, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -28812,7 +28870,7 @@ } }, { - "id": 2746, + "id": 2748, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -28835,7 +28893,7 @@ } }, { - "id": 2747, + "id": 2749, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -28858,7 +28916,7 @@ } }, { - "id": 2742, + "id": 2744, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -28881,7 +28939,7 @@ } }, { - "id": 2744, + "id": 2746, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -28904,7 +28962,7 @@ } }, { - "id": 2715, + "id": 2717, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -28927,7 +28985,7 @@ } }, { - "id": 2714, + "id": 2716, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -28950,7 +29008,7 @@ } }, { - "id": 2717, + "id": 2719, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -28973,7 +29031,7 @@ } }, { - "id": 2716, + "id": 2718, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -28996,7 +29054,7 @@ } }, { - "id": 2713, + "id": 2715, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -29019,7 +29077,7 @@ } }, { - "id": 2711, + "id": 2713, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -29042,7 +29100,7 @@ } }, { - "id": 2712, + "id": 2714, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -29065,7 +29123,7 @@ } }, { - "id": 2718, + "id": 2720, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -29088,7 +29146,7 @@ } }, { - "id": 2719, + "id": 2721, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -29111,7 +29169,7 @@ } }, { - "id": 2730, + "id": 2732, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -29134,7 +29192,7 @@ } }, { - "id": 2731, + "id": 2733, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -29157,7 +29215,7 @@ } }, { - "id": 2734, + "id": 2736, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -29180,7 +29238,7 @@ } }, { - "id": 2732, + "id": 2734, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -29203,7 +29261,7 @@ } }, { - "id": 2733, + "id": 2735, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -29226,7 +29284,7 @@ } }, { - "id": 2741, + "id": 2743, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -29249,7 +29307,7 @@ } }, { - "id": 2740, + "id": 2742, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -29272,7 +29330,7 @@ } }, { - "id": 2739, + "id": 2741, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -29295,7 +29353,7 @@ } }, { - "id": 2738, + "id": 2740, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -29318,7 +29376,7 @@ } }, { - "id": 2804, + "id": 2806, "name": "--ts-var-kpi-analyze-text-color", "kind": 1024, "kindString": "Property", @@ -29341,7 +29399,7 @@ } }, { - "id": 2803, + "id": 2805, "name": "--ts-var-kpi-comparison-color", "kind": 1024, "kindString": "Property", @@ -29364,7 +29422,7 @@ } }, { - "id": 2802, + "id": 2804, "name": "--ts-var-kpi-hero-color", "kind": 1024, "kindString": "Property", @@ -29387,7 +29445,7 @@ } }, { - "id": 2810, + "id": 2812, "name": "--ts-var-kpi-negative-change-color", "kind": 1024, "kindString": "Property", @@ -29410,7 +29468,7 @@ } }, { - "id": 2809, + "id": 2811, "name": "--ts-var-kpi-positive-change-color", "kind": 1024, "kindString": "Property", @@ -29433,7 +29491,7 @@ } }, { - "id": 2736, + "id": 2738, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -29456,7 +29514,7 @@ } }, { - "id": 2735, + "id": 2737, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -29479,7 +29537,7 @@ } }, { - "id": 2763, + "id": 2765, "name": "--ts-var-liveboard-answer-viz-padding", "kind": 1024, "kindString": "Property", @@ -29502,7 +29560,7 @@ } }, { - "id": 2776, + "id": 2778, "name": "--ts-var-liveboard-chip--active-background", "kind": 1024, "kindString": "Property", @@ -29526,7 +29584,7 @@ } }, { - "id": 2775, + "id": 2777, "name": "--ts-var-liveboard-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -29550,7 +29608,7 @@ } }, { - "id": 2773, + "id": 2775, "name": "--ts-var-liveboard-chip-background", "kind": 1024, "kindString": "Property", @@ -29574,7 +29632,7 @@ } }, { - "id": 2774, + "id": 2776, "name": "--ts-var-liveboard-chip-color", "kind": 1024, "kindString": "Property", @@ -29598,7 +29656,7 @@ } }, { - "id": 2781, + "id": 2783, "name": "--ts-var-liveboard-cross-filter-layout-background", "kind": 1024, "kindString": "Property", @@ -29621,7 +29679,7 @@ } }, { - "id": 2779, + "id": 2781, "name": "--ts-var-liveboard-dual-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -29644,7 +29702,7 @@ } }, { - "id": 2778, + "id": 2780, "name": "--ts-var-liveboard-edit-bar-background", "kind": 1024, "kindString": "Property", @@ -29667,7 +29725,7 @@ } }, { - "id": 2764, + "id": 2766, "name": "--ts-var-liveboard-group-background", "kind": 1024, "kindString": "Property", @@ -29691,7 +29749,7 @@ } }, { - "id": 2765, + "id": 2767, "name": "--ts-var-liveboard-group-border-color", "kind": 1024, "kindString": "Property", @@ -29715,7 +29773,7 @@ } }, { - "id": 2769, + "id": 2771, "name": "--ts-var-liveboard-group-description-font-color", "kind": 1024, "kindString": "Property", @@ -29739,7 +29797,7 @@ } }, { - "id": 2757, + "id": 2759, "name": "--ts-var-liveboard-group-padding", "kind": 1024, "kindString": "Property", @@ -29763,7 +29821,7 @@ } }, { - "id": 2772, + "id": 2774, "name": "--ts-var-liveboard-group-tile-background", "kind": 1024, "kindString": "Property", @@ -29787,7 +29845,7 @@ } }, { - "id": 2771, + "id": 2773, "name": "--ts-var-liveboard-group-tile-description-font-color", "kind": 1024, "kindString": "Property", @@ -29811,7 +29869,7 @@ } }, { - "id": 2762, + "id": 2764, "name": "--ts-var-liveboard-group-tile-padding", "kind": 1024, "kindString": "Property", @@ -29835,7 +29893,7 @@ } }, { - "id": 2770, + "id": 2772, "name": "--ts-var-liveboard-group-tile-title-font-color", "kind": 1024, "kindString": "Property", @@ -29859,7 +29917,7 @@ } }, { - "id": 2760, + "id": 2762, "name": "--ts-var-liveboard-group-tile-title-font-size", "kind": 1024, "kindString": "Property", @@ -29883,7 +29941,7 @@ } }, { - "id": 2761, + "id": 2763, "name": "--ts-var-liveboard-group-tile-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29907,7 +29965,7 @@ } }, { - "id": 2768, + "id": 2770, "name": "--ts-var-liveboard-group-title-font-color", "kind": 1024, "kindString": "Property", @@ -29931,7 +29989,7 @@ } }, { - "id": 2758, + "id": 2760, "name": "--ts-var-liveboard-group-title-font-size", "kind": 1024, "kindString": "Property", @@ -29955,7 +30013,7 @@ } }, { - "id": 2759, + "id": 2761, "name": "--ts-var-liveboard-group-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29979,7 +30037,7 @@ } }, { - "id": 2795, + "id": 2797, "name": "--ts-var-liveboard-header-action-button-active-color", "kind": 1024, "kindString": "Property", @@ -30002,7 +30060,7 @@ } }, { - "id": 2792, + "id": 2794, "name": "--ts-var-liveboard-header-action-button-background", "kind": 1024, "kindString": "Property", @@ -30025,7 +30083,7 @@ } }, { - "id": 2793, + "id": 2795, "name": "--ts-var-liveboard-header-action-button-font-color", "kind": 1024, "kindString": "Property", @@ -30048,7 +30106,7 @@ } }, { - "id": 2794, + "id": 2796, "name": "--ts-var-liveboard-header-action-button-hover-color", "kind": 1024, "kindString": "Property", @@ -30071,7 +30129,7 @@ } }, { - "id": 2750, + "id": 2752, "name": "--ts-var-liveboard-header-background", "kind": 1024, "kindString": "Property", @@ -30094,7 +30152,7 @@ } }, { - "id": 2801, + "id": 2803, "name": "--ts-var-liveboard-header-badge-active-color", "kind": 1024, "kindString": "Property", @@ -30117,7 +30175,7 @@ } }, { - "id": 2796, + "id": 2798, "name": "--ts-var-liveboard-header-badge-background", "kind": 1024, "kindString": "Property", @@ -30140,7 +30198,7 @@ } }, { - "id": 2797, + "id": 2799, "name": "--ts-var-liveboard-header-badge-font-color", "kind": 1024, "kindString": "Property", @@ -30163,7 +30221,7 @@ } }, { - "id": 2800, + "id": 2802, "name": "--ts-var-liveboard-header-badge-hover-color", "kind": 1024, "kindString": "Property", @@ -30186,7 +30244,7 @@ } }, { - "id": 2798, + "id": 2800, "name": "--ts-var-liveboard-header-badge-modified-background", "kind": 1024, "kindString": "Property", @@ -30209,7 +30267,7 @@ } }, { - "id": 2799, + "id": 2801, "name": "--ts-var-liveboard-header-badge-modified-font-color", "kind": 1024, "kindString": "Property", @@ -30232,7 +30290,7 @@ } }, { - "id": 2751, + "id": 2753, "name": "--ts-var-liveboard-header-font-color", "kind": 1024, "kindString": "Property", @@ -30255,7 +30313,7 @@ } }, { - "id": 2749, + "id": 2751, "name": "--ts-var-liveboard-layout-background", "kind": 1024, "kindString": "Property", @@ -30278,7 +30336,7 @@ } }, { - "id": 2767, + "id": 2769, "name": "--ts-var-liveboard-notetitle-body-font-color", "kind": 1024, "kindString": "Property", @@ -30301,7 +30359,7 @@ } }, { - "id": 2766, + "id": 2768, "name": "--ts-var-liveboard-notetitle-heading-font-color", "kind": 1024, "kindString": "Property", @@ -30324,7 +30382,7 @@ } }, { - "id": 2780, + "id": 2782, "name": "--ts-var-liveboard-single-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -30347,7 +30405,7 @@ } }, { - "id": 2782, + "id": 2784, "name": "--ts-var-liveboard-tab-active-border-color", "kind": 1024, "kindString": "Property", @@ -30370,7 +30428,7 @@ } }, { - "id": 2783, + "id": 2785, "name": "--ts-var-liveboard-tab-hover-color", "kind": 1024, "kindString": "Property", @@ -30393,7 +30451,7 @@ } }, { - "id": 2753, + "id": 2755, "name": "--ts-var-liveboard-tile-background", "kind": 1024, "kindString": "Property", @@ -30416,7 +30474,7 @@ } }, { - "id": 2752, + "id": 2754, "name": "--ts-var-liveboard-tile-border-color", "kind": 1024, "kindString": "Property", @@ -30439,7 +30497,7 @@ } }, { - "id": 2754, + "id": 2756, "name": "--ts-var-liveboard-tile-border-radius", "kind": 1024, "kindString": "Property", @@ -30462,7 +30520,7 @@ } }, { - "id": 2755, + "id": 2757, "name": "--ts-var-liveboard-tile-padding", "kind": 1024, "kindString": "Property", @@ -30485,7 +30543,7 @@ } }, { - "id": 2756, + "id": 2758, "name": "--ts-var-liveboard-tile-table-header-background", "kind": 1024, "kindString": "Property", @@ -30508,7 +30566,7 @@ } }, { - "id": 2784, + "id": 2786, "name": "--ts-var-liveboard-tile-title-fontsize", "kind": 1024, "kindString": "Property", @@ -30531,7 +30589,7 @@ } }, { - "id": 2785, + "id": 2787, "name": "--ts-var-liveboard-tile-title-fontweight", "kind": 1024, "kindString": "Property", @@ -30554,7 +30612,7 @@ } }, { - "id": 2728, + "id": 2730, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -30577,7 +30635,7 @@ } }, { - "id": 2725, + "id": 2727, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -30600,7 +30658,7 @@ } }, { - "id": 2724, + "id": 2726, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -30623,7 +30681,7 @@ } }, { - "id": 2726, + "id": 2728, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -30646,7 +30704,7 @@ } }, { - "id": 2729, + "id": 2731, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -30669,7 +30727,7 @@ } }, { - "id": 2727, + "id": 2729, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -30692,7 +30750,7 @@ } }, { - "id": 2662, + "id": 2664, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -30715,7 +30773,7 @@ } }, { - "id": 2663, + "id": 2665, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -30738,7 +30796,7 @@ } }, { - "id": 2790, + "id": 2792, "name": "--ts-var-parameter-chip-active-background", "kind": 1024, "kindString": "Property", @@ -30761,7 +30819,7 @@ } }, { - "id": 2791, + "id": 2793, "name": "--ts-var-parameter-chip-active-text-color", "kind": 1024, "kindString": "Property", @@ -30784,7 +30842,7 @@ } }, { - "id": 2786, + "id": 2788, "name": "--ts-var-parameter-chip-background", "kind": 1024, "kindString": "Property", @@ -30807,7 +30865,7 @@ } }, { - "id": 2788, + "id": 2790, "name": "--ts-var-parameter-chip-hover-background", "kind": 1024, "kindString": "Property", @@ -30830,7 +30888,7 @@ } }, { - "id": 2789, + "id": 2791, "name": "--ts-var-parameter-chip-hover-text-color", "kind": 1024, "kindString": "Property", @@ -30853,7 +30911,7 @@ } }, { - "id": 2787, + "id": 2789, "name": "--ts-var-parameter-chip-text-color", "kind": 1024, "kindString": "Property", @@ -30876,7 +30934,7 @@ } }, { - "id": 2657, + "id": 2659, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -30899,7 +30957,7 @@ } }, { - "id": 2658, + "id": 2660, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -30922,7 +30980,7 @@ } }, { - "id": 2659, + "id": 2661, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -30945,7 +31003,7 @@ } }, { - "id": 2660, + "id": 2662, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -30968,7 +31026,7 @@ } }, { - "id": 2671, + "id": 2673, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -30991,7 +31049,7 @@ } }, { - "id": 2675, + "id": 2677, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -31014,7 +31072,7 @@ } }, { - "id": 2676, + "id": 2678, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -31037,7 +31095,7 @@ } }, { - "id": 2674, + "id": 2676, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -31060,7 +31118,7 @@ } }, { - "id": 2670, + "id": 2672, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -31083,7 +31141,7 @@ } }, { - "id": 2673, + "id": 2675, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -31106,7 +31164,7 @@ } }, { - "id": 2667, + "id": 2669, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -31129,7 +31187,7 @@ } }, { - "id": 2668, + "id": 2670, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -31152,7 +31210,7 @@ } }, { - "id": 2669, + "id": 2671, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -31175,7 +31233,7 @@ } }, { - "id": 2664, + "id": 2666, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -31198,7 +31256,7 @@ } }, { - "id": 2665, + "id": 2667, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -31221,7 +31279,7 @@ } }, { - "id": 2666, + "id": 2668, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -31244,7 +31302,7 @@ } }, { - "id": 2672, + "id": 2674, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -31267,7 +31325,7 @@ } }, { - "id": 2737, + "id": 2739, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -31290,7 +31348,7 @@ } }, { - "id": 2777, + "id": 2779, "name": "--ts-var-side-panel-width", "kind": 1024, "kindString": "Property", @@ -31313,7 +31371,7 @@ } }, { - "id": 2815, + "id": 2817, "name": "--ts-var-spotiq-analyze-crosscorrelation-card-background", "kind": 1024, "kindString": "Property", @@ -31336,7 +31394,7 @@ } }, { - "id": 2812, + "id": 2814, "name": "--ts-var-spotiq-analyze-forecasting-card-background", "kind": 1024, "kindString": "Property", @@ -31359,7 +31417,7 @@ } }, { - "id": 2813, + "id": 2815, "name": "--ts-var-spotiq-analyze-outlier-card-background", "kind": 1024, "kindString": "Property", @@ -31382,7 +31440,7 @@ } }, { - "id": 2814, + "id": 2816, "name": "--ts-var-spotiq-analyze-trend-card-background", "kind": 1024, "kindString": "Property", @@ -31405,7 +31463,7 @@ } }, { - "id": 2677, + "id": 2679, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -31428,7 +31486,7 @@ } }, { - "id": 2678, + "id": 2680, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -31451,7 +31509,7 @@ } }, { - "id": 2707, + "id": 2709, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -31474,7 +31532,7 @@ } }, { - "id": 2705, + "id": 2707, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -31497,7 +31555,7 @@ } }, { - "id": 2706, + "id": 2708, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -31520,7 +31578,7 @@ } }, { - "id": 2702, + "id": 2704, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -31543,7 +31601,7 @@ } }, { - "id": 2703, + "id": 2705, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -31566,7 +31624,7 @@ } }, { - "id": 2704, + "id": 2706, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -31589,7 +31647,7 @@ } }, { - "id": 2708, + "id": 2710, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -31612,7 +31670,7 @@ } }, { - "id": 2699, + "id": 2701, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -31635,7 +31693,7 @@ } }, { - "id": 2700, + "id": 2702, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -31658,7 +31716,7 @@ } }, { - "id": 2701, + "id": 2703, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -31686,166 +31744,166 @@ "title": "Properties", "kind": 1024, "children": [ - 2710, - 2709, - 2679, - 2680, - 2682, + 2712, + 2711, 2681, - 2661, + 2682, + 2684, + 2683, + 2663, + 2724, + 2725, 2722, 2723, - 2720, - 2721, - 2684, - 2689, 2686, + 2691, 2688, + 2690, + 2689, 2687, - 2685, - 2694, - 2691, + 2696, 2693, + 2695, + 2694, 2692, - 2690, + 2700, + 2699, 2698, 2697, - 2696, - 2695, - 2683, - 2816, - 2811, - 2806, - 2805, + 2685, + 2818, + 2813, 2808, 2807, + 2810, + 2809, + 2747, + 2750, 2745, 2748, - 2743, - 2746, - 2747, - 2742, + 2749, 2744, - 2715, - 2714, + 2746, 2717, 2716, - 2713, - 2711, - 2712, - 2718, 2719, - 2730, - 2731, - 2734, + 2718, + 2715, + 2713, + 2714, + 2720, + 2721, 2732, 2733, + 2736, + 2734, + 2735, + 2743, + 2742, 2741, 2740, - 2739, - 2738, + 2806, + 2805, 2804, - 2803, - 2802, - 2810, - 2809, - 2736, - 2735, - 2763, - 2776, + 2812, + 2811, + 2738, + 2737, + 2765, + 2778, + 2777, 2775, - 2773, - 2774, + 2776, + 2783, 2781, - 2779, - 2778, + 2780, + 2766, + 2767, + 2771, + 2759, + 2774, + 2773, 2764, - 2765, - 2769, - 2757, 2772, - 2771, 2762, + 2763, 2770, 2760, 2761, - 2768, - 2758, - 2759, - 2795, - 2792, - 2793, + 2797, 2794, - 2750, - 2801, + 2795, 2796, - 2797, - 2800, + 2752, + 2803, 2798, 2799, + 2802, + 2800, + 2801, + 2753, 2751, - 2749, - 2767, - 2766, - 2780, + 2769, + 2768, 2782, - 2783, - 2753, - 2752, - 2754, - 2755, - 2756, 2784, 2785, - 2728, - 2725, - 2724, + 2755, + 2754, + 2756, + 2757, + 2758, + 2786, + 2787, + 2730, + 2727, 2726, + 2728, + 2731, 2729, - 2727, - 2662, - 2663, + 2664, + 2665, + 2792, + 2793, + 2788, 2790, 2791, - 2786, - 2788, 2789, - 2787, - 2657, - 2658, 2659, 2660, - 2671, - 2675, + 2661, + 2662, + 2673, + 2677, + 2678, 2676, - 2674, + 2672, + 2675, + 2669, 2670, - 2673, + 2671, + 2666, 2667, 2668, - 2669, - 2664, - 2665, - 2666, - 2672, - 2737, - 2777, - 2815, - 2812, - 2813, + 2674, + 2739, + 2779, + 2817, 2814, - 2677, - 2678, + 2815, + 2816, + 2679, + 2680, + 2709, 2707, + 2708, + 2704, 2705, 2706, + 2710, + 2701, 2702, - 2703, - 2704, - 2708, - 2699, - 2700, - 2701 + 2703 ] } ], @@ -31858,7 +31916,7 @@ ] }, { - "id": 2644, + "id": 2646, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -31868,7 +31926,7 @@ }, "children": [ { - "id": 2646, + "id": 2648, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -31884,12 +31942,12 @@ ], "type": { "type": "reference", - "id": 2647, + "id": 2649, "name": "customCssInterface" } }, { - "id": 2645, + "id": 2647, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -31914,8 +31972,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2646, - 2645 + 2648, + 2647 ] } ], @@ -31928,7 +31986,7 @@ ] }, { - "id": 2634, + "id": 2636, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -31944,7 +32002,7 @@ }, "children": [ { - "id": 2636, + "id": 2638, "name": "content", "kind": 1024, "kindString": "Property", @@ -31961,14 +32019,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2637, + "id": 2639, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2639, + "id": 2641, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -31998,7 +32056,7 @@ } }, { - "id": 2640, + "id": 2642, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -32018,7 +32076,7 @@ } }, { - "id": 2638, + "id": 2640, "name": "strings", "kind": 1024, "kindString": "Property", @@ -32061,21 +32119,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2639, - 2640, - 2638 + 2641, + 2642, + 2640 ] } ], "indexSignature": { - "id": 2641, + "id": 2643, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2642, + "id": 2644, "name": "key", "kind": 32768, "flags": {}, @@ -32094,7 +32152,7 @@ } }, { - "id": 2643, + "id": 2645, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -32114,7 +32172,7 @@ } }, { - "id": 2635, + "id": 2637, "name": "style", "kind": 1024, "kindString": "Property", @@ -32130,7 +32188,7 @@ ], "type": { "type": "reference", - "id": 2644, + "id": 2646, "name": "CustomStyles" } } @@ -32140,9 +32198,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2636, - 2643, - 2635 + 2638, + 2645, + 2637 ] } ], @@ -32155,7 +32213,7 @@ ] }, { - "id": 2236, + "id": 2238, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -32171,7 +32229,7 @@ }, "children": [ { - "id": 2278, + "id": 2280, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -32201,20 +32259,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2279, + "id": 2281, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2280, + "id": 2282, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2281, + "id": 2283, "name": "key", "kind": 32768, "flags": {}, @@ -32246,7 +32304,7 @@ } }, { - "id": 2239, + "id": 2241, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -32269,7 +32327,7 @@ } }, { - "id": 2260, + "id": 2262, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -32311,7 +32369,7 @@ } }, { - "id": 2262, + "id": 2264, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -32340,7 +32398,7 @@ } }, { - "id": 2238, + "id": 2240, "name": "authType", "kind": 1024, "kindString": "Property", @@ -32362,7 +32420,7 @@ } }, { - "id": 2251, + "id": 2253, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -32391,7 +32449,7 @@ } }, { - "id": 2263, + "id": 2265, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -32424,7 +32482,7 @@ } }, { - "id": 2254, + "id": 2256, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -32453,7 +32511,7 @@ } }, { - "id": 2275, + "id": 2277, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -32482,7 +32540,7 @@ } }, { - "id": 2285, + "id": 2287, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -32518,7 +32576,7 @@ } }, { - "id": 2282, + "id": 2284, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -32561,7 +32619,7 @@ } }, { - "id": 2259, + "id": 2261, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -32586,12 +32644,12 @@ ], "type": { "type": "reference", - "id": 2634, + "id": 2636, "name": "CustomisationsInterface" } }, { - "id": 2273, + "id": 2275, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -32620,7 +32678,7 @@ } }, { - "id": 2256, + "id": 2258, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -32650,7 +32708,7 @@ } }, { - "id": 2284, + "id": 2286, "name": "disableFullscreenPresentation", "kind": 1024, "kindString": "Property", @@ -32687,7 +32745,7 @@ } }, { - "id": 2277, + "id": 2279, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -32716,7 +32774,7 @@ } }, { - "id": 2252, + "id": 2254, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -32749,7 +32807,7 @@ } }, { - "id": 2283, + "id": 2285, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -32769,7 +32827,7 @@ } }, { - "id": 2272, + "id": 2274, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -32798,7 +32856,7 @@ } }, { - "id": 2250, + "id": 2252, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -32827,7 +32885,7 @@ } }, { - "id": 2245, + "id": 2247, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -32861,7 +32919,7 @@ } }, { - "id": 2271, + "id": 2273, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -32894,12 +32952,12 @@ ], "type": { "type": "reference", - "id": 2820, + "id": 2822, "name": "LogLevel" } }, { - "id": 2253, + "id": 2255, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -32928,7 +32986,7 @@ } }, { - "id": 2244, + "id": 2246, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -32961,7 +33019,7 @@ } }, { - "id": 2274, + "id": 2276, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -32990,7 +33048,7 @@ } }, { - "id": 2243, + "id": 2245, "name": "password", "kind": 1024, "kindString": "Property", @@ -33014,7 +33072,7 @@ } }, { - "id": 2269, + "id": 2271, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -33043,7 +33101,7 @@ } }, { - "id": 2255, + "id": 2257, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -33076,7 +33134,7 @@ } }, { - "id": 2246, + "id": 2248, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -33106,7 +33164,7 @@ } }, { - "id": 2248, + "id": 2250, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -33135,7 +33193,7 @@ } }, { - "id": 2270, + "id": 2272, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -33164,7 +33222,7 @@ } }, { - "id": 2249, + "id": 2251, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -33193,7 +33251,7 @@ } }, { - "id": 2258, + "id": 2260, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -33216,7 +33274,7 @@ } }, { - "id": 2257, + "id": 2259, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -33245,7 +33303,7 @@ } }, { - "id": 2237, + "id": 2239, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -33266,7 +33324,7 @@ } }, { - "id": 2261, + "id": 2263, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -33289,7 +33347,7 @@ } }, { - "id": 2242, + "id": 2244, "name": "username", "kind": 1024, "kindString": "Property", @@ -33312,7 +33370,7 @@ } }, { - "id": 2240, + "id": 2242, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -33328,7 +33386,7 @@ ], "signatures": [ { - "id": 2241, + "id": 2243, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -33356,50 +33414,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2278, - 2239, - 2260, + 2280, + 2241, 2262, - 2238, - 2251, - 2263, - 2254, - 2275, - 2285, - 2282, - 2259, - 2273, + 2264, + 2240, + 2253, + 2265, 2256, - 2284, 2277, - 2252, - 2283, - 2272, - 2250, - 2245, - 2271, - 2253, - 2244, + 2287, + 2284, + 2261, + 2275, + 2258, + 2286, + 2279, + 2254, + 2285, 2274, - 2243, - 2269, + 2252, + 2247, + 2273, 2255, 2246, - 2248, - 2270, - 2249, - 2258, + 2276, + 2245, + 2271, 2257, - 2237, - 2261, - 2242 + 2248, + 2250, + 2272, + 2251, + 2260, + 2259, + 2239, + 2263, + 2244 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2240 + 2242 ] } ], @@ -33412,7 +33470,7 @@ ] }, { - "id": 2593, + "id": 2595, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -33428,7 +33486,7 @@ }, "children": [ { - "id": 2595, + "id": 2597, "name": "height", "kind": 1024, "kindString": "Property", @@ -33460,7 +33518,7 @@ } }, { - "id": 2596, + "id": 2598, "name": "loading", "kind": 1024, "kindString": "Property", @@ -33496,7 +33554,7 @@ } }, { - "id": 2594, + "id": 2596, "name": "width", "kind": 1024, "kindString": "Property", @@ -33533,9 +33591,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2595, - 2596, - 2594 + 2597, + 2598, + 2596 ] } ], @@ -33547,7 +33605,7 @@ } ], "indexSignature": { - "id": 2597, + "id": 2599, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -33557,7 +33615,7 @@ }, "parameters": [ { - "id": 2598, + "id": 2600, "name": "key", "kind": 32768, "flags": {}, @@ -33591,7 +33649,7 @@ } }, { - "id": 2382, + "id": 2384, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -33607,7 +33665,7 @@ }, "children": [ { - "id": 2393, + "id": 2395, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -33641,7 +33699,7 @@ } }, { - "id": 2415, + "id": 2417, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -33672,20 +33730,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2416, + "id": 2418, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2417, + "id": 2419, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2418, + "id": 2420, "name": "key", "kind": 32768, "flags": {}, @@ -33721,7 +33779,7 @@ } }, { - "id": 2439, + "id": 2441, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -33763,7 +33821,7 @@ } }, { - "id": 2436, + "id": 2438, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -33793,7 +33851,7 @@ ], "type": { "type": "reference", - "id": 2232, + "id": 2234, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -33802,7 +33860,7 @@ } }, { - "id": 2452, + "id": 2454, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -33840,7 +33898,7 @@ } }, { - "id": 2433, + "id": 2435, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -33881,7 +33939,7 @@ } }, { - "id": 2419, + "id": 2421, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -33910,7 +33968,7 @@ ], "type": { "type": "reference", - "id": 2634, + "id": 2636, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -33919,7 +33977,7 @@ } }, { - "id": 2440, + "id": 2442, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -33961,7 +34019,7 @@ } }, { - "id": 2384, + "id": 2386, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -33999,7 +34057,7 @@ } }, { - "id": 2427, + "id": 2429, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -34037,7 +34095,7 @@ } }, { - "id": 2411, + "id": 2413, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -34075,7 +34133,7 @@ } }, { - "id": 2410, + "id": 2412, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -34107,7 +34165,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -34117,7 +34175,7 @@ } }, { - "id": 2423, + "id": 2425, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -34158,7 +34216,7 @@ } }, { - "id": 2446, + "id": 2448, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -34200,7 +34258,7 @@ } }, { - "id": 2451, + "id": 2453, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -34242,7 +34300,7 @@ } }, { - "id": 2441, + "id": 2443, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -34284,7 +34342,7 @@ } }, { - "id": 2424, + "id": 2426, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -34322,7 +34380,7 @@ } }, { - "id": 2385, + "id": 2387, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -34358,7 +34416,7 @@ } }, { - "id": 2437, + "id": 2439, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -34396,7 +34454,7 @@ } }, { - "id": 2438, + "id": 2440, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -34434,7 +34492,7 @@ } }, { - "id": 2426, + "id": 2428, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -34471,7 +34529,7 @@ } }, { - "id": 2407, + "id": 2409, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -34501,7 +34559,7 @@ ], "type": { "type": "reference", - "id": 2593, + "id": 2595, "name": "FrameParams" }, "inheritedFrom": { @@ -34510,7 +34568,7 @@ } }, { - "id": 2383, + "id": 2385, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -34544,7 +34602,7 @@ } }, { - "id": 2412, + "id": 2414, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -34580,7 +34638,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -34590,7 +34648,7 @@ } }, { - "id": 2399, + "id": 2401, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -34627,7 +34685,7 @@ } }, { - "id": 2449, + "id": 2451, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -34669,7 +34727,7 @@ } }, { - "id": 2442, + "id": 2444, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -34711,7 +34769,7 @@ } }, { - "id": 2394, + "id": 2396, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -34745,7 +34803,7 @@ } }, { - "id": 2420, + "id": 2422, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -34783,7 +34841,7 @@ } }, { - "id": 2454, + "id": 2456, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -34821,7 +34879,7 @@ } }, { - "id": 2456, + "id": 2458, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -34859,7 +34917,7 @@ } }, { - "id": 2455, + "id": 2457, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -34897,7 +34955,7 @@ } }, { - "id": 2447, + "id": 2449, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -34939,7 +34997,7 @@ } }, { - "id": 2445, + "id": 2447, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -34977,7 +35035,7 @@ } }, { - "id": 2401, + "id": 2403, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -35011,7 +35069,7 @@ } }, { - "id": 2402, + "id": 2404, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -35045,7 +35103,7 @@ } }, { - "id": 2403, + "id": 2405, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -35082,7 +35140,7 @@ } }, { - "id": 2404, + "id": 2406, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -35116,7 +35174,7 @@ } }, { - "id": 2429, + "id": 2431, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -35154,7 +35212,7 @@ } }, { - "id": 2386, + "id": 2388, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -35188,7 +35246,7 @@ } }, { - "id": 2392, + "id": 2394, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -35222,7 +35280,7 @@ } }, { - "id": 2453, + "id": 2455, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -35260,7 +35318,7 @@ } }, { - "id": 2414, + "id": 2416, "name": "locale", "kind": 1024, "kindString": "Property", @@ -35298,7 +35356,7 @@ } }, { - "id": 2428, + "id": 2430, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -35336,7 +35394,7 @@ } }, { - "id": 2422, + "id": 2424, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -35374,7 +35432,7 @@ } }, { - "id": 2389, + "id": 2391, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -35408,7 +35466,7 @@ } }, { - "id": 2430, + "id": 2432, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -35446,7 +35504,7 @@ } }, { - "id": 2434, + "id": 2436, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -35488,7 +35546,7 @@ } }, { - "id": 2435, + "id": 2437, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -35520,7 +35578,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2817, + "id": 2819, "name": "RuntimeParameter" } }, @@ -35530,7 +35588,7 @@ } }, { - "id": 2432, + "id": 2434, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -35567,7 +35625,7 @@ } }, { - "id": 2444, + "id": 2446, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -35609,7 +35667,7 @@ } }, { - "id": 2450, + "id": 2452, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -35651,7 +35709,7 @@ } }, { - "id": 2443, + "id": 2445, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -35693,7 +35751,7 @@ } }, { - "id": 2448, + "id": 2450, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -35735,7 +35793,7 @@ } }, { - "id": 2395, + "id": 2397, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -35769,7 +35827,7 @@ } }, { - "id": 2405, + "id": 2407, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -35802,7 +35860,7 @@ } }, { - "id": 2413, + "id": 2415, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -35838,7 +35896,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -35848,7 +35906,7 @@ } }, { - "id": 2400, + "id": 2402, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -35885,7 +35943,7 @@ } }, { - "id": 2390, + "id": 2392, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -35922,7 +35980,7 @@ } }, { - "id": 2388, + "id": 2390, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -35961,66 +36019,66 @@ "title": "Properties", "kind": 1024, "children": [ - 2393, - 2415, - 2439, - 2436, - 2452, - 2433, - 2419, - 2440, - 2384, - 2427, - 2411, - 2410, - 2423, - 2446, - 2451, + 2395, + 2417, 2441, - 2424, - 2385, - 2437, 2438, - 2426, - 2407, - 2383, - 2412, - 2399, - 2449, - 2442, - 2394, - 2420, 2454, - 2456, - 2455, - 2447, - 2445, - 2401, - 2402, - 2403, - 2404, - 2429, + 2435, + 2421, + 2442, 2386, - 2392, + 2429, + 2413, + 2412, + 2425, + 2448, 2453, - 2414, + 2443, + 2426, + 2387, + 2439, + 2440, 2428, + 2409, + 2385, + 2414, + 2401, + 2451, + 2444, + 2396, 2422, - 2389, + 2456, + 2458, + 2457, + 2449, + 2447, + 2403, + 2404, + 2405, + 2406, + 2431, + 2388, + 2394, + 2455, + 2416, 2430, - 2434, - 2435, + 2424, + 2391, 2432, - 2444, + 2436, + 2437, + 2434, + 2446, + 2452, + 2445, 2450, - 2443, - 2448, - 2395, - 2405, - 2413, - 2400, - 2390, - 2388 + 2397, + 2407, + 2415, + 2402, + 2392, + 2390 ] } ], @@ -36161,7 +36219,7 @@ ] }, { - "id": 2817, + "id": 2819, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -36171,7 +36229,7 @@ }, "children": [ { - "id": 2818, + "id": 2820, "name": "name", "kind": 1024, "kindString": "Property", @@ -36192,7 +36250,7 @@ } }, { - "id": 2819, + "id": 2821, "name": "value", "kind": 1024, "kindString": "Property", @@ -36231,8 +36289,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2818, - 2819 + 2820, + 2821 ] } ], @@ -36245,7 +36303,7 @@ ] }, { - "id": 2457, + "id": 2459, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -36265,7 +36323,7 @@ }, "children": [ { - "id": 2486, + "id": 2488, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -36296,20 +36354,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2487, + "id": 2489, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2488, + "id": 2490, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2489, + "id": 2491, "name": "key", "kind": 32768, "flags": {}, @@ -36345,7 +36403,7 @@ } }, { - "id": 2474, + "id": 2476, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -36387,7 +36445,7 @@ } }, { - "id": 2471, + "id": 2473, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -36417,7 +36475,7 @@ ], "type": { "type": "reference", - "id": 2232, + "id": 2234, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -36426,7 +36484,7 @@ } }, { - "id": 2503, + "id": 2505, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -36467,7 +36525,7 @@ } }, { - "id": 2490, + "id": 2492, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -36496,7 +36554,7 @@ ], "type": { "type": "reference", - "id": 2634, + "id": 2636, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -36505,7 +36563,7 @@ } }, { - "id": 2475, + "id": 2477, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -36547,7 +36605,7 @@ } }, { - "id": 2467, + "id": 2469, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -36570,7 +36628,7 @@ } }, { - "id": 2498, + "id": 2500, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -36608,7 +36666,7 @@ } }, { - "id": 2462, + "id": 2464, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -36637,7 +36695,7 @@ } }, { - "id": 2482, + "id": 2484, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -36675,7 +36733,7 @@ } }, { - "id": 2481, + "id": 2483, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -36707,7 +36765,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -36717,7 +36775,7 @@ } }, { - "id": 2494, + "id": 2496, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -36758,7 +36816,7 @@ } }, { - "id": 2476, + "id": 2478, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -36800,7 +36858,7 @@ } }, { - "id": 2495, + "id": 2497, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -36838,7 +36896,7 @@ } }, { - "id": 2472, + "id": 2474, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -36876,7 +36934,7 @@ } }, { - "id": 2473, + "id": 2475, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -36914,7 +36972,7 @@ } }, { - "id": 2497, + "id": 2499, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -36951,7 +37009,7 @@ } }, { - "id": 2478, + "id": 2480, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -36981,7 +37039,7 @@ ], "type": { "type": "reference", - "id": 2593, + "id": 2595, "name": "FrameParams" }, "inheritedFrom": { @@ -36990,7 +37048,7 @@ } }, { - "id": 2483, + "id": 2485, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -37026,7 +37084,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -37036,7 +37094,7 @@ } }, { - "id": 2464, + "id": 2466, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -37065,7 +37123,7 @@ } }, { - "id": 2461, + "id": 2463, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -37094,7 +37152,7 @@ } }, { - "id": 2466, + "id": 2468, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -37128,7 +37186,7 @@ } }, { - "id": 2460, + "id": 2462, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -37161,7 +37219,7 @@ } }, { - "id": 2463, + "id": 2465, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -37190,7 +37248,7 @@ } }, { - "id": 2491, + "id": 2493, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -37228,7 +37286,7 @@ } }, { - "id": 2500, + "id": 2502, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -37266,7 +37324,7 @@ } }, { - "id": 2485, + "id": 2487, "name": "locale", "kind": 1024, "kindString": "Property", @@ -37304,7 +37362,7 @@ } }, { - "id": 2499, + "id": 2501, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -37342,7 +37400,7 @@ } }, { - "id": 2493, + "id": 2495, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -37380,7 +37438,7 @@ } }, { - "id": 2469, + "id": 2471, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -37422,7 +37480,7 @@ } }, { - "id": 2470, + "id": 2472, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -37454,7 +37512,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2817, + "id": 2819, "name": "RuntimeParameter" } }, @@ -37464,7 +37522,7 @@ } }, { - "id": 2468, + "id": 2470, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -37498,7 +37556,7 @@ } }, { - "id": 2502, + "id": 2504, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -37535,7 +37593,7 @@ } }, { - "id": 2458, + "id": 2460, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -37564,7 +37622,7 @@ } }, { - "id": 2465, + "id": 2467, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -37593,7 +37651,7 @@ } }, { - "id": 2484, + "id": 2486, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -37629,7 +37687,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -37644,42 +37702,42 @@ "title": "Properties", "kind": 1024, "children": [ - 2486, - 2474, - 2471, - 2503, - 2490, - 2475, - 2467, - 2498, - 2462, - 2482, - 2481, - 2494, + 2488, 2476, - 2495, - 2472, 2473, - 2497, - 2478, - 2483, + 2505, + 2492, + 2477, + 2469, + 2500, 2464, - 2461, + 2484, + 2483, + 2496, + 2478, + 2497, + 2474, + 2475, + 2499, + 2480, + 2485, 2466, - 2460, 2463, - 2491, - 2500, - 2485, - 2499, - 2493, - 2469, - 2470, 2468, - 2502, - 2458, + 2462, 2465, - 2484 + 2493, + 2502, + 2487, + 2501, + 2495, + 2471, + 2472, + 2470, + 2504, + 2460, + 2467, + 2486 ] } ], @@ -37733,7 +37791,7 @@ ] }, { - "id": 2340, + "id": 2342, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -37748,7 +37806,7 @@ }, "children": [ { - "id": 2355, + "id": 2357, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -37779,20 +37837,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2356, + "id": 2358, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2357, + "id": 2359, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2358, + "id": 2360, "name": "key", "kind": 32768, "flags": {}, @@ -37828,7 +37886,7 @@ } }, { - "id": 2379, + "id": 2381, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -37870,7 +37928,7 @@ } }, { - "id": 2376, + "id": 2378, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -37900,7 +37958,7 @@ ], "type": { "type": "reference", - "id": 2232, + "id": 2234, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -37909,7 +37967,7 @@ } }, { - "id": 2373, + "id": 2375, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -37950,7 +38008,7 @@ } }, { - "id": 2359, + "id": 2361, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -37979,7 +38037,7 @@ ], "type": { "type": "reference", - "id": 2634, + "id": 2636, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -37988,7 +38046,7 @@ } }, { - "id": 2380, + "id": 2382, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -38030,7 +38088,7 @@ } }, { - "id": 2342, + "id": 2344, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -38064,7 +38122,7 @@ } }, { - "id": 2341, + "id": 2343, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -38105,7 +38163,7 @@ } }, { - "id": 2367, + "id": 2369, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -38143,7 +38201,7 @@ } }, { - "id": 2351, + "id": 2353, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -38181,7 +38239,7 @@ } }, { - "id": 2350, + "id": 2352, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -38213,7 +38271,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -38223,7 +38281,7 @@ } }, { - "id": 2363, + "id": 2365, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -38264,7 +38322,7 @@ } }, { - "id": 2381, + "id": 2383, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -38306,7 +38364,7 @@ } }, { - "id": 2364, + "id": 2366, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -38344,7 +38402,7 @@ } }, { - "id": 2377, + "id": 2379, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -38382,7 +38440,7 @@ } }, { - "id": 2378, + "id": 2380, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -38420,7 +38478,7 @@ } }, { - "id": 2345, + "id": 2347, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -38454,7 +38512,7 @@ } }, { - "id": 2366, + "id": 2368, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -38491,7 +38549,7 @@ } }, { - "id": 2347, + "id": 2349, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -38521,7 +38579,7 @@ ], "type": { "type": "reference", - "id": 2593, + "id": 2595, "name": "FrameParams" }, "inheritedFrom": { @@ -38530,7 +38588,7 @@ } }, { - "id": 2352, + "id": 2354, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -38566,7 +38624,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -38576,7 +38634,7 @@ } }, { - "id": 2360, + "id": 2362, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -38614,7 +38672,7 @@ } }, { - "id": 2369, + "id": 2371, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -38652,7 +38710,7 @@ } }, { - "id": 2354, + "id": 2356, "name": "locale", "kind": 1024, "kindString": "Property", @@ -38690,7 +38748,7 @@ } }, { - "id": 2368, + "id": 2370, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -38728,7 +38786,7 @@ } }, { - "id": 2362, + "id": 2364, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -38766,7 +38824,7 @@ } }, { - "id": 2370, + "id": 2372, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -38804,7 +38862,7 @@ } }, { - "id": 2374, + "id": 2376, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -38846,7 +38904,7 @@ } }, { - "id": 2375, + "id": 2377, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -38878,7 +38936,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2817, + "id": 2819, "name": "RuntimeParameter" } }, @@ -38888,7 +38946,7 @@ } }, { - "id": 2344, + "id": 2346, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -38922,7 +38980,7 @@ } }, { - "id": 2372, + "id": 2374, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -38959,7 +39017,7 @@ } }, { - "id": 2343, + "id": 2345, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -38993,7 +39051,7 @@ } }, { - "id": 2353, + "id": 2355, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -39029,7 +39087,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -39044,38 +39102,38 @@ "title": "Properties", "kind": 1024, "children": [ - 2355, - 2379, - 2376, - 2373, - 2359, - 2380, - 2342, - 2341, - 2367, - 2351, - 2350, - 2363, + 2357, 2381, - 2364, - 2377, 2378, - 2345, + 2375, + 2361, + 2382, + 2344, + 2343, + 2369, + 2353, + 2352, + 2365, + 2383, 2366, + 2379, + 2380, 2347, - 2352, - 2360, - 2369, - 2354, 2368, + 2349, + 2354, 2362, + 2371, + 2356, 2370, - 2374, - 2375, - 2344, + 2364, 2372, - 2343, - 2353 + 2376, + 2377, + 2346, + 2374, + 2345, + 2355 ] } ], @@ -39098,7 +39156,7 @@ ] }, { - "id": 2286, + "id": 2288, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -39114,7 +39172,7 @@ }, "children": [ { - "id": 2322, + "id": 2324, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -39145,20 +39203,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2323, + "id": 2325, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2324, + "id": 2326, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2325, + "id": 2327, "name": "key", "kind": 32768, "flags": {}, @@ -39194,7 +39252,7 @@ } }, { - "id": 2298, + "id": 2300, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -39228,7 +39286,7 @@ } }, { - "id": 2288, + "id": 2290, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -39262,7 +39320,7 @@ } }, { - "id": 2287, + "id": 2289, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -39296,7 +39354,7 @@ } }, { - "id": 2310, + "id": 2312, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -39338,7 +39396,7 @@ } }, { - "id": 2301, + "id": 2303, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -39375,7 +39433,7 @@ } }, { - "id": 2307, + "id": 2309, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -39405,7 +39463,7 @@ ], "type": { "type": "reference", - "id": 2232, + "id": 2234, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -39414,7 +39472,7 @@ } }, { - "id": 2339, + "id": 2341, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -39455,7 +39513,7 @@ } }, { - "id": 2326, + "id": 2328, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -39484,7 +39542,7 @@ ], "type": { "type": "reference", - "id": 2634, + "id": 2636, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -39493,7 +39551,7 @@ } }, { - "id": 2303, + "id": 2305, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -39531,7 +39589,7 @@ } }, { - "id": 2311, + "id": 2313, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -39573,7 +39631,7 @@ } }, { - "id": 2294, + "id": 2296, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -39607,7 +39665,7 @@ } }, { - "id": 2293, + "id": 2295, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -39643,7 +39701,7 @@ } }, { - "id": 2334, + "id": 2336, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -39681,7 +39739,7 @@ } }, { - "id": 2318, + "id": 2320, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -39719,7 +39777,7 @@ } }, { - "id": 2317, + "id": 2319, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -39751,7 +39809,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -39761,7 +39819,7 @@ } }, { - "id": 2330, + "id": 2332, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -39802,7 +39860,7 @@ } }, { - "id": 2312, + "id": 2314, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -39844,7 +39902,7 @@ } }, { - "id": 2291, + "id": 2293, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -39878,7 +39936,7 @@ } }, { - "id": 2331, + "id": 2333, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -39916,7 +39974,7 @@ } }, { - "id": 2308, + "id": 2310, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -39954,7 +40012,7 @@ } }, { - "id": 2309, + "id": 2311, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -39992,7 +40050,7 @@ } }, { - "id": 2297, + "id": 2299, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -40026,7 +40084,7 @@ } }, { - "id": 2333, + "id": 2335, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -40063,7 +40121,7 @@ } }, { - "id": 2304, + "id": 2306, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -40101,7 +40159,7 @@ } }, { - "id": 2292, + "id": 2294, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -40135,7 +40193,7 @@ } }, { - "id": 2314, + "id": 2316, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -40165,7 +40223,7 @@ ], "type": { "type": "reference", - "id": 2593, + "id": 2595, "name": "FrameParams" }, "inheritedFrom": { @@ -40174,7 +40232,7 @@ } }, { - "id": 2319, + "id": 2321, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -40210,7 +40268,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -40220,7 +40278,7 @@ } }, { - "id": 2289, + "id": 2291, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -40254,7 +40312,7 @@ } }, { - "id": 2290, + "id": 2292, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -40288,7 +40346,7 @@ } }, { - "id": 2299, + "id": 2301, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -40322,7 +40380,7 @@ } }, { - "id": 2327, + "id": 2329, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -40360,7 +40418,7 @@ } }, { - "id": 2302, + "id": 2304, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -40390,7 +40448,7 @@ } }, { - "id": 2336, + "id": 2338, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -40428,7 +40486,7 @@ } }, { - "id": 2321, + "id": 2323, "name": "locale", "kind": 1024, "kindString": "Property", @@ -40466,7 +40524,7 @@ } }, { - "id": 2335, + "id": 2337, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -40504,7 +40562,7 @@ } }, { - "id": 2329, + "id": 2331, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -40542,7 +40600,7 @@ } }, { - "id": 2305, + "id": 2307, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -40584,7 +40642,7 @@ } }, { - "id": 2306, + "id": 2308, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -40616,7 +40674,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2817, + "id": 2819, "name": "RuntimeParameter" } }, @@ -40626,7 +40684,7 @@ } }, { - "id": 2296, + "id": 2298, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -40656,7 +40714,7 @@ } }, { - "id": 2295, + "id": 2297, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -40685,7 +40743,7 @@ } }, { - "id": 2338, + "id": 2340, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -40722,7 +40780,7 @@ } }, { - "id": 2300, + "id": 2302, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -40752,7 +40810,7 @@ } }, { - "id": 2320, + "id": 2322, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -40788,7 +40846,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -40803,50 +40861,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2322, - 2298, - 2288, - 2287, - 2310, - 2301, - 2307, - 2339, - 2326, + 2324, + 2300, + 2290, + 2289, + 2312, 2303, + 2309, + 2341, + 2328, + 2305, + 2313, + 2296, + 2295, + 2336, + 2320, + 2319, + 2332, + 2314, + 2293, + 2333, + 2310, 2311, + 2299, + 2335, + 2306, 2294, - 2293, - 2334, - 2318, - 2317, - 2330, - 2312, + 2316, + 2321, 2291, + 2292, + 2301, + 2329, + 2304, + 2338, + 2323, + 2337, 2331, + 2307, 2308, - 2309, + 2298, 2297, - 2333, - 2304, - 2292, - 2314, - 2319, - 2289, - 2290, - 2299, - 2327, + 2340, 2302, - 2336, - 2321, - 2335, - 2329, - 2305, - 2306, - 2296, - 2295, - 2338, - 2300, - 2320 + 2322 ] } ], @@ -41180,7 +41238,7 @@ ], "type": { "type": "reference", - "id": 2634, + "id": 2636, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -41297,7 +41355,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -41453,7 +41511,7 @@ ], "type": { "type": "reference", - "id": 2593, + "id": 2595, "name": "FrameParams" }, "inheritedFrom": { @@ -41498,7 +41556,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -41771,7 +41829,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -42027,7 +42085,7 @@ ], "type": { "type": "reference", - "id": 2634, + "id": 2636, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -42216,7 +42274,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -42478,7 +42536,7 @@ ], "type": { "type": "reference", - "id": 2593, + "id": 2595, "name": "FrameParams" }, "inheritedFrom": { @@ -42523,7 +42581,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -42861,7 +42919,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2817, + "id": 2819, "name": "RuntimeParameter" } } @@ -42997,7 +43055,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2094, + "id": 2096, "name": "Action" } }, @@ -43160,14 +43218,14 @@ ] }, { - "id": 2855, + "id": 2857, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2856, + "id": 2858, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -43175,7 +43233,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5779, + "line": 5800, "character": 4 } ], @@ -43188,7 +43246,7 @@ } }, { - "id": 2857, + "id": 2859, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -43196,7 +43254,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5780, + "line": 5801, "character": 4 } ], @@ -43214,21 +43272,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2856, - 2857 + 2858, + 2859 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5778, + "line": 5799, "character": 17 } ] }, { - "id": 2647, + "id": 2649, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -43238,7 +43296,7 @@ }, "children": [ { - "id": 2649, + "id": 2651, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -43268,20 +43326,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2650, + "id": 2652, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2651, + "id": 2653, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2652, + "id": 2654, "name": "selector", "kind": 32768, "flags": {}, @@ -43294,7 +43352,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2653, + "id": 2655, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43307,14 +43365,14 @@ } ], "indexSignature": { - "id": 2654, + "id": 2656, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2655, + "id": 2657, "name": "declaration", "kind": 32768, "flags": {}, @@ -43336,7 +43394,7 @@ } }, { - "id": 2648, + "id": 2650, "name": "variables", "kind": 1024, "kindString": "Property", @@ -43355,7 +43413,7 @@ ], "type": { "type": "reference", - "id": 2656, + "id": 2658, "name": "CustomCssVariables" } } @@ -43365,8 +43423,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2649, - 2648 + 2651, + 2650 ] } ], @@ -43671,7 +43729,7 @@ ] }, { - "id": 2617, + "id": 2619, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -43698,7 +43756,7 @@ } }, { - "id": 2621, + "id": 2623, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -43713,7 +43771,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2622, + "id": 2624, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43736,7 +43794,7 @@ ], "signatures": [ { - "id": 2623, + "id": 2625, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43746,19 +43804,19 @@ }, "parameters": [ { - "id": 2624, + "id": 2626, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2629, + "id": 2631, "name": "MessagePayload" } }, { - "id": 2625, + "id": 2627, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -43768,7 +43826,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2626, + "id": 2628, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43782,7 +43840,7 @@ ], "signatures": [ { - "id": 2627, + "id": 2629, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43792,7 +43850,7 @@ }, "parameters": [ { - "id": 2628, + "id": 2630, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -43823,7 +43881,7 @@ } }, { - "id": 2618, + "id": 2620, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -43847,14 +43905,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2619, + "id": 2621, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2620, + "id": 2622, "name": "start", "kind": 1024, "kindString": "Property", @@ -43882,7 +43940,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2620 + 2622 ] } ], @@ -43897,7 +43955,7 @@ } }, { - "id": 2629, + "id": 2631, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -43921,14 +43979,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2630, + "id": 2632, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2632, + "id": 2634, "name": "data", "kind": 1024, "kindString": "Property", @@ -43946,7 +44004,7 @@ } }, { - "id": 2633, + "id": 2635, "name": "status", "kind": 1024, "kindString": "Property", @@ -43966,7 +44024,7 @@ } }, { - "id": 2631, + "id": 2633, "name": "type", "kind": 1024, "kindString": "Property", @@ -43989,9 +44047,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2632, - 2633, - 2631 + 2634, + 2635, + 2633 ] } ], @@ -44405,7 +44463,7 @@ }, "type": { "type": "reference", - "id": 2236, + "id": 2238, "name": "EmbedConfig" } } @@ -44505,7 +44563,7 @@ }, "type": { "type": "reference", - "id": 2236, + "id": 2238, "name": "EmbedConfig" } } @@ -44652,7 +44710,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2588, + "id": 2590, "name": "PrefetchFeatures" } } @@ -44724,7 +44782,7 @@ ] }, { - "id": 2904, + "id": 2906, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -44740,7 +44798,7 @@ ], "signatures": [ { - "id": 2905, + "id": 2907, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -44934,7 +44992,7 @@ ] }, { - "id": 2827, + "id": 2829, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -44948,7 +45006,7 @@ ], "signatures": [ { - "id": 2828, + "id": 2830, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -44958,7 +45016,7 @@ }, "parameters": [ { - "id": 2829, + "id": 2831, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -44970,7 +45028,7 @@ } }, { - "id": 2830, + "id": 2832, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -44981,7 +45039,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2831, + "id": 2833, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -45004,30 +45062,30 @@ "title": "Enumerations", "kind": 4, "children": [ - 2094, + 2096, 1747, 1732, 1739, 1894, - 2232, - 2899, - 2895, - 2891, - 2090, + 2234, + 2901, + 2897, + 2893, + 2092, 1926, - 2599, - 2849, - 2843, - 2610, - 2019, - 2852, - 2885, - 2820, + 2601, + 2851, + 2845, + 2612, + 2020, + 2854, + 2887, + 2822, 1885, - 2588, - 2847, + 2590, + 2849, 1910, - 2878 + 2880 ] }, { @@ -45050,28 +45108,28 @@ "title": "Interfaces", "kind": 256, "children": [ - 2504, + 2506, 1749, 1260, 1526, - 2858, - 2656, - 2644, - 2634, - 2236, - 2593, - 2382, + 2860, + 2658, + 2646, + 2636, + 2238, + 2595, + 2384, 1906, - 2817, - 2457, - 2340, - 2286, + 2819, + 2459, + 2342, + 2288, 1875, 1231, 1486, 1882, - 2855, - 2647, + 2857, + 2649, 21, 25 ] @@ -45080,10 +45138,10 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2617, - 2621, - 2618, - 2629 + 2619, + 2623, + 2620, + 2631 ] }, { @@ -45099,9 +45157,9 @@ 1, 4, 7, - 2904, + 2906, 37, - 2827 + 2829 ] } ], From e35d1b5589a4a8abc855f7d4b144f99a3f7d70d8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Oct 2025 14:21:36 -0700 Subject: [PATCH 25/31] Bump vite from 6.3.5 to 6.4.1 (#341) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index eaaf10267..abbc77b8d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@thoughtspot/visual-embed-sdk", - "version": "1.42.2", + "version": "1.42.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@thoughtspot/visual-embed-sdk", - "version": "1.42.2", + "version": "1.42.3", "license": "ThoughtSpot Development Tools End User License Agreement", "dependencies": { "classnames": "^2.3.1", @@ -19000,11 +19000,10 @@ } }, "node_modules/vite": { - "version": "6.3.5", - "resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz", - "integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==", + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/vite/-/vite-6.4.1.tgz", + "integrity": "sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==", "dev": true, - "license": "MIT", "dependencies": { "esbuild": "^0.25.0", "fdir": "^6.4.4", @@ -33630,9 +33629,9 @@ } }, "vite": { - "version": "6.3.5", - "resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz", - "integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==", + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/vite/-/vite-6.4.1.tgz", + "integrity": "sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==", "dev": true, "requires": { "esbuild": "^0.25.0", From f0d8a8a058644dcae6625e1850b76af88e58e2af Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Oct 2025 14:21:53 -0700 Subject: [PATCH 26/31] Bump tar-fs from 3.1.0 to 3.1.1 (#340) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/package-lock.json b/package-lock.json index abbc77b8d..f8f1558b0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17712,11 +17712,10 @@ } }, "node_modules/tar-fs": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.1.0.tgz", - "integrity": "sha512-5Mty5y/sOF1YWj1J6GiBodjlDc05CUR8PKXrsnFAiSG0xA+GHeWLovaZPYUDXkH/1iKRf2+M5+OrRgzC7O9b7w==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.1.1.tgz", + "integrity": "sha512-LZA0oaPOc2fVo82Txf3gw+AkEd38szODlptMYejQUhndHMLQ9M059uXR+AfS7DNo0NpINvSqDsvyaCrBVkptWg==", "dev": true, - "license": "MIT", "dependencies": { "pump": "^3.0.0", "tar-stream": "^3.1.5" @@ -32707,9 +32706,9 @@ "dev": true }, "tar-fs": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.1.0.tgz", - "integrity": "sha512-5Mty5y/sOF1YWj1J6GiBodjlDc05CUR8PKXrsnFAiSG0xA+GHeWLovaZPYUDXkH/1iKRf2+M5+OrRgzC7O9b7w==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.1.1.tgz", + "integrity": "sha512-LZA0oaPOc2fVo82Txf3gw+AkEd38szODlptMYejQUhndHMLQ9M059uXR+AfS7DNo0NpINvSqDsvyaCrBVkptWg==", "dev": true, "requires": { "bare-fs": "^4.0.1", From 3b0df963523c9b02cf98f538c0863800481ee2e6 Mon Sep 17 00:00:00 2001 From: ShashiSubramanya <76986173+ShashiSubramanya@users.noreply.github.com> Date: Fri, 31 Oct 2025 11:33:37 +0530 Subject: [PATCH 27/31] doc update for HostEvent.UpdateParameters and formatting fix (#339) --- src/types.ts | 23 +++++++++++++++-------- static/typedoc/typedoc.json | 29 ++++++++++++++++++++++++----- 2 files changed, 39 insertions(+), 13 deletions(-) diff --git a/src/types.ts b/src/types.ts index 3c3415587..83aa4b77c 100644 --- a/src/types.ts +++ b/src/types.ts @@ -4070,15 +4070,21 @@ export enum HostEvent { ResetLiveboardPersonalisedView = 'ResetLiveboardPersonalisedView', /** * Triggers an action to update Parameter values on embedded - * Answers, Liveboard and Spotter answer in Edit mode. + * Answers, Liveboard, and Spotter answer in Edit mode. + * @param - `name` - Name of the Parameter + * @param - `value` - The value to set for the Parameter. + * + * Optionally, to control the visibility of the Parameter chip, + * use the `isVisibleToUser` attribute when applying an override. * * @example * ```js * liveboardEmbed.trigger(HostEvent.UpdateParameters, [{ - * name: "Color", - * value: "almond" + * name: "Integer Range Param", + * value: 10, + * isVisibleToUser: false * }]) - * + * ``` * @version SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl, 10.1.0.sw */ UpdateParameters = 'UpdateParameters', @@ -4125,10 +4131,11 @@ export enum HostEvent { * If no parameters are specified, the save action is * triggered with a modal to prompt users to * add a name and description for the Answer. - * @param - optional attributes to set Answer properties. - * `name` - Name string for the Answer. - * `description` - Description text for the Answer. - * @param - `vizId` refers to the Answer ID in Spotter embed and is required in Spotter embed. + * @param - `vizId` refers to the Answer ID in Spotter embed + * and is required in Spotter embed. + * Optional attributes to set Answer properties include: + * @param - `name` - Name string for the Answer. + * @param - `description` - Description text for the Answer. * @example * ```js * const saveAnswerResponse = await searchEmbed.trigger(HostEvent.SaveAnswer, { diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 0e8a0557d..856e28e52 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -8701,12 +8701,17 @@ "tags": [ { "tag": "param", - "text": "optional attributes to set Answer properties.\n `name` - Name string for the Answer.\n `description` - Description text for the Answer.", + "text": "`vizId` refers to the Answer ID in Spotter embed\nand is required in Spotter embed.\nOptional attributes to set Answer properties include:", "param": "-" }, { "tag": "param", - "text": "`vizId` refers to the Answer ID in Spotter embed and is required in Spotter embed.", + "text": "`name` - Name string for the Answer.", + "param": "-" + }, + { + "tag": "param", + "text": "`description` - Description text for the Answer.", "param": "-" }, { @@ -9275,11 +9280,25 @@ "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Triggers an action to update Parameter values on embedded\nAnswers, Liveboard and Spotter answer in Edit mode.", + "shortText": "Triggers an action to update Parameter values on embedded\nAnswers, Liveboard, and Spotter answer in Edit mode.", "tags": [ + { + "tag": "param", + "text": "`name` - Name of the Parameter", + "param": "-" + }, + { + "tag": "param", + "text": "`value` - The value to set for the Parameter.\n\nOptionally, to control the visibility of the Parameter chip,\nuse the `isVisibleToUser` attribute when applying an override.\n", + "param": "-" + }, { "tag": "example", - "text": "\n```js\nliveboardEmbed.trigger(HostEvent.UpdateParameters, [{\nname: \"Color\",\nvalue: \"almond\"\n}])\n\n@version SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl, 10.1.0.sw\n" + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.UpdateParameters, [{\n name: \"Integer Range Param\",\n value: 10,\n isVisibleToUser: false\n}])\n```" + }, + { + "tag": "version", + "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl, 10.1.0.sw\n" } ] }, @@ -45170,4 +45189,4 @@ "character": 0 } ] -} \ No newline at end of file +} From 96447fe2fdfd89bbd4a9d6239f958603c18484c4 Mon Sep 17 00:00:00 2001 From: ruchI9897 <59597701+ruchI9897@users.noreply.github.com> Date: Sun, 2 Nov 2025 01:33:12 +0530 Subject: [PATCH 28/31] fixed spotter documentation (#337) --- src/types.ts | 161 +- static/typedoc/typedoc.json | 4309 ++++++++++++++++++----------------- 2 files changed, 2300 insertions(+), 2170 deletions(-) diff --git a/src/types.ts b/src/types.ts index 83aa4b77c..c1fa5ae75 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1881,7 +1881,7 @@ export enum EmbedEvent { */ Load = 'load', /** - * Data pertaining to an Answer or Liveboard is received. + * Data pertaining to an Answer, Liveboard or Spotter visualization is received. * The event payload includes the raw data of the object. * @return data - Answer of Liveboard data * @version SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 8.4.1.sw @@ -3264,7 +3264,7 @@ export enum HostEvent { * the following parameters: * * @param - * `vizId`- GUID of the saved Answer or visualization to pin to a Liveboard. + * `vizId`- GUID of the saved Answer or Spotter visualization ID to pin to a Liveboard. * Optional when pinning a new chart or table generated from a Search query. * **Required** in Spotter Embed. * @param @@ -3316,10 +3316,16 @@ export enum HostEvent { * ``` * @example * ```js - * const pinResponse = await spotterEmbed.trigger(HostEvent.Pin, { - * vizId:'730496d6-6903-4601-937e-2c691821af3c' - * }); - * ``` + + * // You can use the Data event dispatched on each answer creation to get the vizId and use in Pin host event. + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; + * }); + * + * spotterEmbed.trigger(HostEvent.Pin, { vizId: latestSpotterVizId }); + * ``` + * * @version SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1.sw */ Pin = 'pin', @@ -3394,10 +3400,15 @@ export enum HostEvent { * ``` * @example * ```js - * spotterEmbed.trigger(HostEvent.DownloadAsPdf, { - * vizId:'730496d6-6903-4601-937e-2c691821af3c' - * }); - * ``` + + * // You can use the Data event dispatched on each answer creation to get the vizId and use in DownloadAsPdf host event. + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; + * }); + * + * spotterEmbed.trigger(HostEvent.DownloadAsPdf, { vizId: latestSpotterVizId }); + * ``` * * @version SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1.sw */ @@ -3434,10 +3445,14 @@ export enum HostEvent { * ``` * @example * ```js - * const pinResponse = await spotterEmbed.trigger(HostEvent.MakeACopy, { - * vizId:'730496d6-6903-4601-937e-2c691821af3c' - * }); - * ``` + * // You can use the Data event dispatched on each answer creation to get the vizId and use in MakeACopy host event. + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; + * }); + * + * spotterEmbed.trigger(HostEvent.MakeACopy, { vizId: latestSpotterVizId }); + * ``` * @version SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1.sw */ MakeACopy = 'makeACopy', @@ -3522,15 +3537,7 @@ export enum HostEvent { * ``` * @example * ```js - * const pinResponse = await spotterEmbed.trigger(HostEvent.Edit, { - * vizId:'730496d6-6903-4601-937e-2c691821af3c' - * }); - * ``` - * @example - * ```js - * const editResponse = await spotterEmbed.trigger(HostEvent.Edit, { - * vizId:'730496d6-6903-4601-937e-2c691821af3c' - * }); + * spotterEmbed.trigger(HostEvent.Edit); * ``` * @version SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1.sw */ @@ -3579,16 +3586,23 @@ export enum HostEvent { * ); * }) * ``` - * @example + * * @example * ```js - * spotterEmbed.trigger(HostEvent.GetTML, { - * vizId: '730496d6-6903-4601-937e-2c691821af3c' + + * // You can use the Data event dispatched on each answer creation to get the vizId and use in Pin host event. + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; + * }); + * + * spotterEmbed.trigger(HostEvent.GetTML, { + * vizId: latestSpotterVizId * }).then((tml) => { * console.log( * tml.answer.search_query // TML representation of the search query * ); * }) - * ``` + * ``` * @version SDK: 1.18.0 | ThoughtSpot: 8.10.0.cl, 9.0.1.sw * @important */ @@ -3652,7 +3666,7 @@ export enum HostEvent { /** * Trigger the **Download** action on charts in * the embedded view. - * @param - `vizId` refers to the Answer ID in Spotter embed and is required in Spotter embed. + * @param - `vizId` refers to the Visualization ID in Spotter embed and is required in Spotter embed. * @example * ```js * liveboardEmbed.trigger(HostEvent.Download, {vizId: @@ -3662,10 +3676,14 @@ export enum HostEvent { * embed.trigger(HostEvent.Download) * ``` * ```js - * spotterEmbed.trigger(HostEvent.Download, { - * vizId:'730496d6-6903-4601-937e-2c691821af3c' - * }); - * ``` + * // You can use the Data event dispatched on each answer creation to get the vizId and use in Download host event. + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; + * }); + * + * spotterEmbed.trigger(HostEvent.Download, { vizId: latestSpotterVizId }); + * ``` * @deprecated from SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl ,9.4.1.sw * Use {@link DownloadAsPng} * @version SDK: 1.19.0 | ThoughtSpot: 9.0.0.cl, 9.0.1.sw @@ -3683,9 +3701,13 @@ export enum HostEvent { * * searchEmbed.trigger(HostEvent.DownloadAsPng) * - * spotterEmbed.trigger(HostEvent.DownloadAsPng, { - * vizId:"730496d6-6903-4601-937e-2c691821af3c" - * }) + * // You can use the Data event dispatched on each answer creation to get the vizId and use in DownloadAsPng host event. + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; + * }); + * + * spotterEmbed.trigger(HostEvent.DownloadAsPng, { vizId: latestSpotterVizId }); * ``` * * @version SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl, 9.4.1.sw @@ -3694,7 +3716,7 @@ export enum HostEvent { /** * Trigger the **Download** > **CSV** action on tables in * the embedded view. - * @param - `vizId` refers to the Answer ID in Spotter embed and is required in Spotter embed. + * @param - `vizId` refers to the Visualization ID in Spotter embed and is required in Spotter embed. * @example * ```js * liveboardEmbed.trigger(HostEvent.DownloadAsCsv, {vizId: @@ -3707,9 +3729,13 @@ export enum HostEvent { * searchEmbed.trigger(HostEvent.DownloadAsCsv) * ``` * ```js - * spotterEmbed.trigger(HostEvent.DownloadAsCsv, { - * vizId:"730496d6-6903-4601-937e-2c691821af3c" - * }) + * // You can use the Data event dispatched on each answer creation to get the vizId and use in DownloadAsCsv host event. + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; + * }); + * + * spotterEmbed.trigger(HostEvent.DownloadAsCsv, { vizId: latestSpotterVizId }); * ``` * @version SDK: 1.19.0 | ThoughtSpot: 9.0.0.cl, 9.0.1.sw */ @@ -3717,7 +3743,7 @@ export enum HostEvent { /** * Trigger the **Download** > **XLSX** action on tables * in the embedded view. - * @param - `vizId` refers to the Answer ID in Spotter embed and is required in Spotter embed. + * @param - `vizId` refers to the Visualization ID in Spotter embed and is required in Spotter embed. * @example * ```js * liveboardEmbed.trigger(HostEvent.DownloadAsXlsx, {vizId: @@ -3730,9 +3756,13 @@ export enum HostEvent { * searchEmbed.trigger(HostEvent.DownloadAsXlsx) * ``` * ```js - * spotterEmbed.trigger(HostEvent.downloadAsXLSX, { - * vizId:"730496d6-6903-4601-937e-2c691821af3c" - * }) + * // You can use the Data event dispatched on each answer creation to get the vizId and use in DownloadAsXlsx host event. + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; + * }); + * + * spotterEmbed.trigger(HostEvent.DownloadAsXlsx, { vizId: latestSpotterVizId }); * ``` * @version SDK: 1.19.0 | ThoughtSpot: 9.0.0.cl, 9.0.1.sw */ @@ -3769,7 +3799,7 @@ export enum HostEvent { * ``` * * ```js - * // Save an Answer in Spotter (requires vizId) + * // Save a Visualization in Spotter (requires vizId) * spotterEmbed.trigger(HostEvent.Save, { * vizId: "730496d6-6903-4601-937e-2c691821af3c" * }) @@ -4097,11 +4127,13 @@ export enum HostEvent { * }); *``` *```js - * spotterEmbed.trigger(HostEvent.GetParameters, { - * vizId: '730496d6-6903-4601-937e-2c691821af3c' - * }).then((parameter) => { - * console.log('parameters', parameter); - * }); + * // You can use the Data event dispatched on each answer creation to get the vizId and use in GetParameters host event. + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; + * }); + * + * spotterEmbed.trigger(HostEvent.GetParameters, { vizId: latestSpotterVizId }); *``` * @version SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl, 10.1.0.sw */ @@ -4145,11 +4177,13 @@ export enum HostEvent { * ``` * @example * ```js - * const saveAnswerResponse = await spotterEmbed.trigger(HostEvent.SaveAnswer, { - * vizId: '730496d6-6903-4601-937e-2c691821af3c', - * name: "Sales by states", - * description: "Total sales by states in MidWest" + * // You can use the Data event dispatched on each answer creation to get the vizId and use in SaveAnswer host event. + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; * }); + * + * spotterEmbed.trigger(HostEvent.SaveAnswer, { vizId: latestSpotterVizId }); * ``` * @version SDK: 1.36.0 | ThoughtSpot: 10.6.0.cl */ @@ -4233,12 +4267,15 @@ export enum HostEvent { DeleteLastPrompt = 'DeleteLastPrompt', /** * Toggle the visualization to chart or table view. - * @param - `vizId ` refers to the answer id in spotter Embed, it is required in spotter Embed. + * @param - `vizId ` refers to the Visualization ID in Spotter embed and is required. * @example * ```js - * spotterEmbed.trigger(HostEvent.AnswerChartSwitcher, { - * vizId:'b535c760-8bbe-4e6f-bb26-af56b4129a1e' + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; * }); + * + * spotterEmbed.trigger(HostEvent.AnswerChartSwitcher, { vizId: latestSpotterVizId }); *``` * @version SDK: 1.40.0 | ThoughtSpot: 10.11.0.cl */ @@ -4267,12 +4304,16 @@ export enum HostEvent { */ VisibleEmbedCoordinates = 'visibleEmbedCoordinates', /** - * Trigger the *Ask Spotter* action for visualizations - * @param - `vizId` refers to the Answer ID in Spotter embed and is required in Spotter embed. + * Trigger the *Spotter* action for visualizations present on the liveboard's vizzes. + * @param - `vizId` refers to the Visualization ID in Spotter embed and is required. * @example * ```js - * spotterEmbed.trigger(HostEvent.AskSpotter, - * {vizId:'730496d6-6903-4601-937e-2c691821af3c'}) + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; + * }); + * + * spotterEmbed.trigger(HostEvent.AskSpotter, { vizId: latestSpotterVizId }); * ``` * @version SDK: 1.41.0 | ThoughtSpot: 10.12.0.cl */ diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 856e28e52..e6f0dc737 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 2096, + "id": 2097, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 2209, + "id": 2210, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -48,14 +48,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5490, + "line": 5560, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2116, + "id": 2117, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -76,14 +76,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4636, + "line": 4706, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 2109, + "id": 2110, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -104,14 +104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4565, + "line": 4635, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 2108, + "id": 2109, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -128,14 +128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4554, + "line": 4624, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 2114, + "id": 2115, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -152,14 +152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4617, + "line": 4687, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 2115, + "id": 2116, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -176,14 +176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4626, + "line": 4696, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 2117, + "id": 2118, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -204,14 +204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4646, + "line": 4716, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 2191, + "id": 2192, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -232,14 +232,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5284, + "line": 5354, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 2164, + "id": 2165, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -260,14 +260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5006, + "line": 5076, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 2206, + "id": 2207, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -288,14 +288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5457, + "line": 5527, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 2163, + "id": 2164, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -316,14 +316,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4994, + "line": 5064, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2162, + "id": 2163, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -344,14 +344,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4982, + "line": 5052, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2205, + "id": 2206, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -373,14 +373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5446, + "line": 5516, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 2175, + "id": 2176, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -401,14 +401,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5119, + "line": 5189, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 2178, + "id": 2179, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -429,14 +429,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5153, + "line": 5223, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 2183, + "id": 2184, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -457,14 +457,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5208, + "line": 5278, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 2177, + "id": 2178, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -485,14 +485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5142, + "line": 5212, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 2180, + "id": 2181, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -513,14 +513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5176, + "line": 5246, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 2184, + "id": 2185, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -541,14 +541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5218, + "line": 5288, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 2181, + "id": 2182, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -569,14 +569,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5187, + "line": 5257, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 2186, + "id": 2187, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -597,14 +597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5240, + "line": 5310, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 2182, + "id": 2183, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -625,14 +625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5197, + "line": 5267, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 2179, + "id": 2180, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -653,14 +653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5164, + "line": 5234, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 2185, + "id": 2186, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -681,14 +681,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5228, + "line": 5298, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 2176, + "id": 2177, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -709,14 +709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5130, + "line": 5200, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 2218, + "id": 2219, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -737,14 +737,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5588, + "line": 5658, "character": 4 } ], "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 2113, + "id": 2114, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -761,14 +761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4608, + "line": 4678, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 2112, + "id": 2113, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -789,14 +789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4599, + "line": 4669, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 2111, + "id": 2112, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -817,14 +817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4587, + "line": 4657, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 2225, + "id": 2226, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -845,14 +845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5664, + "line": 5734, "character": 4 } ], "defaultValue": "\"columnRename\"" }, { - "id": 2110, + "id": 2111, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -869,14 +869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4576, + "line": 4646, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 2155, + "id": 2156, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -884,14 +884,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4933, + "line": 5003, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 2103, + "id": 2104, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -908,14 +908,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4513, + "line": 4583, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2154, + "id": 2155, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -932,14 +932,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4932, + "line": 5002, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2226, + "id": 2227, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -960,14 +960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5674, + "line": 5744, "character": 4 } ], "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 2203, + "id": 2204, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -988,14 +988,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5421, + "line": 5491, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 2166, + "id": 2167, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1016,14 +1016,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5026, + "line": 5096, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2171, + "id": 2172, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1044,14 +1044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5077, + "line": 5147, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 2223, + "id": 2224, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1072,14 +1072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5645, + "line": 5715, "character": 4 } ], "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 2215, + "id": 2216, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1100,14 +1100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5557, + "line": 5627, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 2217, + "id": 2218, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1128,14 +1128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5576, + "line": 5646, "character": 4 } ], "defaultValue": "\"disableChipReorder\"" }, { - "id": 2125, + "id": 2126, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1152,14 +1152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4696, + "line": 4766, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 2128, + "id": 2129, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1176,14 +1176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4729, + "line": 4799, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2127, + "id": 2128, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1201,14 +1201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4719, + "line": 4789, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2126, + "id": 2127, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1225,14 +1225,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4706, + "line": 4776, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2129, + "id": 2130, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1249,14 +1249,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4739, + "line": 4809, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2159, + "id": 2160, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1273,14 +1273,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4949, + "line": 5019, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 2153, + "id": 2154, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1297,14 +1297,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4922, + "line": 4992, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 2152, + "id": 2153, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1321,14 +1321,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4913, + "line": 4983, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 2137, + "id": 2138, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1345,14 +1345,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4815, + "line": 4885, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2102, + "id": 2103, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1369,14 +1369,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4504, + "line": 4574, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 2165, + "id": 2166, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1397,14 +1397,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5015, + "line": 5085, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 2157, + "id": 2158, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1412,14 +1412,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4938, + "line": 5008, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 2222, + "id": 2223, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1440,14 +1440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5634, + "line": 5704, "character": 4 } ], "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 2195, + "id": 2196, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1468,14 +1468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5328, + "line": 5398, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 2210, + "id": 2211, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1496,14 +1496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5503, + "line": 5573, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 2134, + "id": 2135, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1520,14 +1520,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4783, + "line": 4853, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2138, + "id": 2139, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1544,14 +1544,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4823, + "line": 4893, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 2224, + "id": 2225, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1572,14 +1572,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5655, + "line": 5725, "character": 4 } ], "defaultValue": "\"editTokens\"" }, { - "id": 2192, + "id": 2193, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1600,14 +1600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5294, + "line": 5364, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 2193, + "id": 2194, "name": "EnableIterativeChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1628,14 +1628,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5305, + "line": 5375, "character": 4 } ], "defaultValue": "\"enableIterativeChangeAnalysis\"" }, { - "id": 2151, + "id": 2152, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1652,14 +1652,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4902, + "line": 4972, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2131, + "id": 2132, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1677,14 +1677,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4755, + "line": 4825, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2132, + "id": 2133, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1701,14 +1701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4765, + "line": 4835, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 2227, + "id": 2228, "name": "InConversationTraining", "kind": 16, "kindString": "Enumeration member", @@ -1729,14 +1729,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5690, + "line": 5760, "character": 4 } ], "defaultValue": "\"InConversationTraining\"" }, { - "id": 2216, + "id": 2217, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1757,14 +1757,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5567, + "line": 5637, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 2145, + "id": 2146, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1781,14 +1781,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4864, + "line": 4934, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2233, + "id": 2234, "name": "LiveboardStylePanel", "kind": 16, "kindString": "Enumeration member", @@ -1809,14 +1809,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5756, + "line": 5826, "character": 4 } ], "defaultValue": "\"liveboardStylePanel\"" }, { - "id": 2201, + "id": 2202, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1837,14 +1837,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5389, + "line": 5459, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 2101, + "id": 2102, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1861,14 +1861,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4495, + "line": 4565, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2199, + "id": 2200, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1885,14 +1885,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5369, + "line": 5439, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2170, + "id": 2171, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1913,14 +1913,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5067, + "line": 5137, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2214, + "id": 2215, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1941,14 +1941,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5546, + "line": 5616, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 2190, + "id": 2191, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1969,14 +1969,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5274, + "line": 5344, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 2197, + "id": 2198, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1996,14 +1996,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5349, + "line": 5419, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 2198, + "id": 2199, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -2020,14 +2020,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5358, + "line": 5428, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 2208, + "id": 2209, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -2048,14 +2048,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5479, + "line": 5549, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 2211, + "id": 2212, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2076,14 +2076,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5514, + "line": 5584, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 2200, + "id": 2201, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2104,14 +2104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5379, + "line": 5449, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 2148, + "id": 2149, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2128,14 +2128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4881, + "line": 4951, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2231, + "id": 2232, "name": "PngScreenshotInEmail", "kind": 16, "kindString": "Enumeration member", @@ -2152,14 +2152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5734, + "line": 5804, "character": 4 } ], "defaultValue": "\"pngScreenshotInEmail\"" }, { - "id": 2135, + "id": 2136, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2176,14 +2176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4793, + "line": 4863, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2219, + "id": 2220, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2204,14 +2204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5600, + "line": 5670, "character": 4 } ], "defaultValue": "\"previewDataSpotter\"" }, { - "id": 2161, + "id": 2162, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2229,14 +2229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4972, + "line": 5042, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 2139, + "id": 2140, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2253,14 +2253,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4833, + "line": 4903, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2232, + "id": 2233, "name": "RemoveAttachment", "kind": 16, "kindString": "Enumeration member", @@ -2281,14 +2281,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5746, + "line": 5816, "character": 4 } ], "defaultValue": "\"removeAttachment\"" }, { - "id": 2174, + "id": 2175, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2309,14 +2309,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5108, + "line": 5178, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 2207, + "id": 2208, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2337,14 +2337,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5468, + "line": 5538, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 2188, + "id": 2189, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2365,14 +2365,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5254, + "line": 5324, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 2167, + "id": 2168, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2396,14 +2396,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5036, + "line": 5106, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 2160, + "id": 2161, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2420,14 +2420,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4958, + "line": 5028, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 2189, + "id": 2190, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2448,14 +2448,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5264, + "line": 5334, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 2220, + "id": 2221, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2476,14 +2476,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5612, + "line": 5682, "character": 4 } ], "defaultValue": "\"resetSpotterChat\"" }, { - "id": 2196, + "id": 2197, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2504,14 +2504,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5340, + "line": 5410, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 2097, + "id": 2098, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2528,14 +2528,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4464, + "line": 4534, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2100, + "id": 2101, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2552,14 +2552,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4482, + "line": 4552, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 2105, + "id": 2106, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2576,14 +2576,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4527, + "line": 4597, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2106, + "id": 2107, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2600,14 +2600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4536, + "line": 4606, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2158, + "id": 2159, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2615,14 +2615,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4939, + "line": 5009, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 2107, + "id": 2108, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2639,14 +2639,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4545, + "line": 4615, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2122, + "id": 2123, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2657,14 +2657,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4671, + "line": 4741, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 2194, + "id": 2195, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2685,14 +2685,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5315, + "line": 5385, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 2124, + "id": 2125, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2709,14 +2709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4686, + "line": 4756, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2119, + "id": 2120, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2733,14 +2733,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4659, + "line": 4729, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2221, + "id": 2222, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2761,14 +2761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5623, + "line": 5693, "character": 4 } ], "defaultValue": "\"spotterFeedback\"" }, { - "id": 2230, + "id": 2231, "name": "SpotterTokenQuickEdit", "kind": 16, "kindString": "Enumeration member", @@ -2789,14 +2789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5723, + "line": 5793, "character": 4 } ], "defaultValue": "\"SpotterTokenQuickEdit\"" }, { - "id": 2228, + "id": 2229, "name": "SpotterWarningsBanner", "kind": 16, "kindString": "Enumeration member", @@ -2817,14 +2817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5701, + "line": 5771, "character": 4 } ], "defaultValue": "\"SpotterWarningsBanner\"" }, { - "id": 2229, + "id": 2230, "name": "SpotterWarningsOnTokens", "kind": 16, "kindString": "Enumeration member", @@ -2845,14 +2845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5712, + "line": 5782, "character": 4 } ], "defaultValue": "\"SpotterWarningsOnTokens\"" }, { - "id": 2150, + "id": 2151, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2869,14 +2869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4894, + "line": 4964, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2169, + "id": 2170, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2897,14 +2897,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5057, + "line": 5127, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2168, + "id": 2169, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2925,14 +2925,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5046, + "line": 5116, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2172, + "id": 2173, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2953,14 +2953,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5087, + "line": 5157, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 2173, + "id": 2174, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2981,14 +2981,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5097, + "line": 5167, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 2202, + "id": 2203, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -3013,14 +3013,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5408, + "line": 5478, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 2136, + "id": 2137, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -3037,14 +3037,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4805, + "line": 4875, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 2213, + "id": 2214, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3065,14 +3065,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5536, + "line": 5606, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 2133, + "id": 2134, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -3089,14 +3089,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4774, + "line": 4844, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2204, + "id": 2205, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -3117,14 +3117,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5432, + "line": 5502, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 2212, + "id": 2213, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3145,7 +3145,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5525, + "line": 5595, "character": 4 } ], @@ -3157,132 +3157,132 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2209, - 2116, + 2210, + 2117, + 2110, 2109, - 2108, - 2114, 2115, - 2117, - 2191, + 2116, + 2118, + 2192, + 2165, + 2207, 2164, - 2206, 2163, - 2162, - 2205, - 2175, + 2206, + 2176, + 2179, + 2184, 2178, + 2181, + 2185, + 2182, + 2187, 2183, - 2177, 2180, - 2184, - 2181, 2186, - 2182, - 2179, - 2185, - 2176, - 2218, + 2177, + 2219, + 2114, 2113, 2112, + 2226, 2111, - 2225, - 2110, + 2156, + 2104, 2155, - 2103, - 2154, - 2226, - 2203, - 2166, - 2171, - 2223, - 2215, - 2217, - 2125, - 2128, - 2127, + 2227, + 2204, + 2167, + 2172, + 2224, + 2216, + 2218, 2126, 2129, - 2159, + 2128, + 2127, + 2130, + 2160, + 2154, 2153, - 2152, - 2137, - 2102, - 2165, - 2157, - 2222, - 2195, - 2210, - 2134, 2138, - 2224, - 2192, - 2193, - 2151, - 2131, - 2132, - 2227, - 2216, - 2145, - 2233, - 2201, - 2101, - 2199, - 2170, - 2214, - 2190, - 2197, - 2198, - 2208, + 2103, + 2166, + 2158, + 2223, + 2196, 2211, - 2200, - 2148, - 2231, 2135, - 2219, - 2161, 2139, + 2225, + 2193, + 2194, + 2152, + 2132, + 2133, + 2228, + 2217, + 2146, + 2234, + 2202, + 2102, + 2200, + 2171, + 2215, + 2191, + 2198, + 2199, + 2209, + 2212, + 2201, + 2149, 2232, - 2174, - 2207, - 2188, - 2167, - 2160, - 2189, + 2136, 2220, - 2196, - 2097, - 2100, - 2105, + 2162, + 2140, + 2233, + 2175, + 2208, + 2189, + 2168, + 2161, + 2190, + 2221, + 2197, + 2098, + 2101, 2106, - 2158, 2107, - 2122, - 2194, - 2124, - 2119, - 2221, - 2230, - 2228, + 2159, + 2108, + 2123, + 2195, + 2125, + 2120, + 2222, + 2231, 2229, - 2150, + 2230, + 2151, + 2170, 2169, - 2168, - 2172, 2173, - 2202, - 2136, - 2213, - 2133, - 2204, - 2212 + 2174, + 2203, + 2137, + 2214, + 2134, + 2205, + 2213 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4455, + "line": 4525, "character": 12 } ] @@ -3837,7 +3837,7 @@ ] }, { - "id": 2234, + "id": 2235, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3847,7 +3847,7 @@ }, "children": [ { - "id": 2237, + "id": 2238, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3855,14 +3855,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5777, + "line": 5847, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 2235, + "id": 2236, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3870,14 +3870,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5775, + "line": 5845, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 2236, + "id": 2237, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3885,7 +3885,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5776, + "line": 5846, "character": 4 } ], @@ -3897,22 +3897,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2237, - 2235, - 2236 + 2238, + 2236, + 2237 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5774, + "line": 5844, "character": 12 } ] }, { - "id": 2901, + "id": 2904, "name": "CustomActionTarget", "kind": 4, "kindString": "Enumeration", @@ -3922,7 +3922,7 @@ }, "children": [ { - "id": 2904, + "id": 2907, "name": "ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -3930,14 +3930,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5862, + "line": 5932, "character": 4 } ], "defaultValue": "\"ANSWER\"" }, { - "id": 2902, + "id": 2905, "name": "LIVEBOARD", "kind": 16, "kindString": "Enumeration member", @@ -3945,14 +3945,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5860, + "line": 5930, "character": 4 } ], "defaultValue": "\"LIVEBOARD\"" }, { - "id": 2905, + "id": 2908, "name": "SPOTTER", "kind": 16, "kindString": "Enumeration member", @@ -3960,14 +3960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5863, + "line": 5933, "character": 4 } ], "defaultValue": "\"SPOTTER\"" }, { - "id": 2903, + "id": 2906, "name": "VIZ", "kind": 16, "kindString": "Enumeration member", @@ -3975,7 +3975,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5861, + "line": 5931, "character": 4 } ], @@ -3987,23 +3987,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2904, - 2902, + 2907, 2905, - 2903 + 2908, + 2906 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5859, + "line": 5929, "character": 12 } ] }, { - "id": 2897, + "id": 2900, "name": "CustomActionsPosition", "kind": 4, "kindString": "Enumeration", @@ -4013,7 +4013,7 @@ }, "children": [ { - "id": 2900, + "id": 2903, "name": "CONTEXTMENU", "kind": 16, "kindString": "Enumeration member", @@ -4021,14 +4021,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5853, + "line": 5923, "character": 4 } ], "defaultValue": "\"CONTEXTMENU\"" }, { - "id": 2899, + "id": 2902, "name": "MENU", "kind": 16, "kindString": "Enumeration member", @@ -4036,14 +4036,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5852, + "line": 5922, "character": 4 } ], "defaultValue": "\"MENU\"" }, { - "id": 2898, + "id": 2901, "name": "PRIMARY", "kind": 16, "kindString": "Enumeration member", @@ -4051,7 +4051,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5851, + "line": 5921, "character": 4 } ], @@ -4063,22 +4063,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2900, - 2899, - 2898 + 2903, + 2902, + 2901 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5850, + "line": 5920, "character": 12 } ] }, { - "id": 2893, + "id": 2896, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -4088,7 +4088,7 @@ }, "children": [ { - "id": 2895, + "id": 2898, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4106,7 +4106,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 2894, + "id": 2897, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4124,7 +4124,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 2896, + "id": 2899, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -4147,9 +4147,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2895, - 2894, - 2896 + 2898, + 2897, + 2899 ] } ], @@ -4162,7 +4162,7 @@ ] }, { - "id": 2092, + "id": 2093, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -4172,7 +4172,7 @@ }, "children": [ { - "id": 2094, + "id": 2095, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -4183,14 +4183,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4286, + "line": 4356, "character": 4 } ], "defaultValue": "\"collapse\"" }, { - "id": 2095, + "id": 2096, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -4201,14 +4201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4290, + "line": 4360, "character": 4 } ], "defaultValue": "\"expand\"" }, { - "id": 2093, + "id": 2094, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -4219,7 +4219,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4282, + "line": 4352, "character": 4 } ], @@ -4231,16 +4231,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2094, 2095, - 2093 + 2096, + 2094 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4278, + "line": 4348, "character": 12 } ] @@ -4292,7 +4292,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2302, + "line": 2315, "character": 4 } ], @@ -4320,7 +4320,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2187, + "line": 2200, "character": 4 } ], @@ -4352,7 +4352,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1953, + "line": 1966, "character": 4 } ], @@ -4380,7 +4380,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2509, + "line": 2522, "character": 4 } ], @@ -4412,7 +4412,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2045, + "line": 2058, "character": 4 } ], @@ -4440,7 +4440,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2477, + "line": 2490, "character": 4 } ], @@ -4468,7 +4468,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2291, + "line": 2304, "character": 4 } ], @@ -4508,7 +4508,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2718, + "line": 2731, "character": 4 } ], @@ -4536,7 +4536,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2058, + "line": 2071, "character": 4 } ], @@ -4568,7 +4568,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1855, + "line": 1868, "character": 4 } ], @@ -4596,7 +4596,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2585, + "line": 2598, "character": 4 } ], @@ -4624,7 +4624,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2455, + "line": 2468, "character": 4 } ], @@ -4652,7 +4652,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2605, + "line": 2618, "character": 4 } ], @@ -4680,7 +4680,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2392, + "line": 2405, "character": 4 } ], @@ -4704,7 +4704,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2669, + "line": 2682, "character": 4 } ], @@ -4729,7 +4729,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2849, + "line": 2862, "character": 4 } ], @@ -4753,7 +4753,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2854, + "line": 2867, "character": 4 } ], @@ -4777,7 +4777,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2709, + "line": 2722, "character": 4 } ], @@ -4805,7 +4805,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2616, + "line": 2629, "character": 4 } ], @@ -4841,7 +4841,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1970, + "line": 1983, "character": 4 } ], @@ -4854,7 +4854,7 @@ "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Data pertaining to an Answer or Liveboard is received.\nThe event payload includes the raw data of the object.", + "shortText": "Data pertaining to an Answer, Liveboard or Spotter visualization is received.\nThe event payload includes the raw data of the object.", "tags": [ { "tag": "returns", @@ -4877,7 +4877,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1883, + "line": 1896, "character": 4 } ], @@ -4909,7 +4909,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1941, + "line": 1954, "character": 4 } ], @@ -4937,7 +4937,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2567, + "line": 2580, "character": 4 } ], @@ -4969,7 +4969,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2704, + "line": 2717, "character": 4 } ], @@ -4997,7 +4997,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2154, + "line": 2167, "character": 4 } ], @@ -5025,7 +5025,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2143, + "line": 2156, "character": 4 } ], @@ -5054,7 +5054,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2221, + "line": 2234, "character": 4 } ], @@ -5082,7 +5082,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2263, + "line": 2276, "character": 4 } ], @@ -5110,7 +5110,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2249, + "line": 2262, "character": 4 } ], @@ -5138,7 +5138,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2235, + "line": 2248, "character": 4 } ], @@ -5166,7 +5166,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2277, + "line": 2290, "character": 4 } ], @@ -5194,7 +5194,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2381, + "line": 2394, "character": 4 } ], @@ -5222,7 +5222,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2369, + "line": 2382, "character": 4 } ], @@ -5266,7 +5266,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1929, + "line": 1942, "character": 4 } ], @@ -5294,7 +5294,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2531, + "line": 2544, "character": 4 } ], @@ -5322,7 +5322,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2415, + "line": 2428, "character": 4 } ], @@ -5359,7 +5359,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2035, + "line": 2048, "character": 4 } ], @@ -5387,7 +5387,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2595, + "line": 2608, "character": 4 } ], @@ -5415,7 +5415,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2430, + "line": 2443, "character": 4 } ], @@ -5439,7 +5439,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2646, + "line": 2659, "character": 4 } ], @@ -5467,7 +5467,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2100, + "line": 2113, "character": 4 } ], @@ -5495,7 +5495,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1843, + "line": 1856, "character": 4 } ], @@ -5523,7 +5523,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2921, + "line": 2934, "character": 4 } ], @@ -5551,7 +5551,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2910, + "line": 2923, "character": 4 } ], @@ -5579,7 +5579,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2498, + "line": 2511, "character": 4 } ], @@ -5611,7 +5611,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2176, + "line": 2189, "character": 4 } ], @@ -5643,7 +5643,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1869, + "line": 1882, "character": 4 } ], @@ -5671,7 +5671,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2542, + "line": 2555, "character": 4 } ], @@ -5699,7 +5699,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2126, + "line": 2139, "character": 4 } ], @@ -5736,7 +5736,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2782, + "line": 2795, "character": 4 } ], @@ -5764,7 +5764,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2966, + "line": 2979, "character": 4 } ], @@ -5788,7 +5788,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2793, + "line": 2806, "character": 4 } ], @@ -5816,7 +5816,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2321, + "line": 2334, "character": 4 } ], @@ -5848,7 +5848,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2557, + "line": 2570, "character": 4 } ], @@ -5876,7 +5876,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2888, + "line": 2901, "character": 4 } ], @@ -5904,7 +5904,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1892, + "line": 1905, "character": 4 } ], @@ -5928,7 +5928,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2723, + "line": 2736, "character": 4 } ], @@ -5968,7 +5968,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2697, + "line": 2710, "character": 4 } ], @@ -5996,7 +5996,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2932, + "line": 2945, "character": 4 } ], @@ -6024,7 +6024,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2110, + "line": 2123, "character": 4 } ], @@ -6048,7 +6048,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2652, + "line": 2665, "character": 4 } ], @@ -6072,7 +6072,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2659, + "line": 2672, "character": 4 } ], @@ -6100,7 +6100,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2205, + "line": 2218, "character": 4 } ], @@ -6128,7 +6128,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2441, + "line": 2454, "character": 4 } ], @@ -6168,7 +6168,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2688, + "line": 2701, "character": 4 } ], @@ -6196,7 +6196,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2520, + "line": 2533, "character": 4 } ], @@ -6224,7 +6224,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2576, + "line": 2589, "character": 4 } ], @@ -6252,7 +6252,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2357, + "line": 2370, "character": 4 } ], @@ -6280,7 +6280,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2466, + "line": 2479, "character": 4 } ], @@ -6308,7 +6308,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2339, + "line": 2352, "character": 4 } ], @@ -6336,7 +6336,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2877, + "line": 2890, "character": 4 } ], @@ -6364,7 +6364,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2943, + "line": 2956, "character": 4 } ], @@ -6392,7 +6392,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2899, + "line": 2912, "character": 4 } ], @@ -6421,7 +6421,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2836, + "line": 2849, "character": 4 } ], @@ -6445,7 +6445,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2664, + "line": 2677, "character": 4 } ], @@ -6485,7 +6485,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2679, + "line": 2692, "character": 4 } ], @@ -6513,7 +6513,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2403, + "line": 2416, "character": 4 } ], @@ -6549,7 +6549,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2001, + "line": 2014, "character": 4 } ], @@ -6581,7 +6581,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1982, + "line": 1995, "character": 4 } ], @@ -6609,7 +6609,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2627, + "line": 2640, "character": 4 } ], @@ -6707,13 +6707,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1830, + "line": 1843, "character": 12 } ] }, { - "id": 2601, + "id": 2604, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -6723,7 +6723,7 @@ }, "children": [ { - "id": 2605, + "id": 2608, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -6746,7 +6746,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2609, + "id": 2612, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6770,7 +6770,7 @@ "defaultValue": "\"create\"" }, { - "id": 2611, + "id": 2614, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -6794,7 +6794,7 @@ "defaultValue": "\"favorites\"" }, { - "id": 2603, + "id": 2606, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6817,7 +6817,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2608, + "id": 2611, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6840,7 +6840,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2604, + "id": 2607, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6863,7 +6863,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2606, + "id": 2609, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6886,7 +6886,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2602, + "id": 2605, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6909,7 +6909,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2607, + "id": 2610, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6932,7 +6932,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2610, + "id": 2613, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -6961,16 +6961,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2605, - 2609, - 2611, - 2603, 2608, - 2604, + 2612, + 2614, 2606, - 2602, + 2611, 2607, - 2610 + 2609, + 2605, + 2610, + 2613 ] } ], @@ -6983,7 +6983,7 @@ ] }, { - "id": 2851, + "id": 2854, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -6999,7 +6999,7 @@ }, "children": [ { - "id": 2852, + "id": 2855, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -7017,7 +7017,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2853, + "id": 2856, "name": "ModularWithStylingChanges", "kind": 16, "kindString": "Enumeration member", @@ -7040,8 +7040,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2852, - 2853 + 2855, + 2856 ] } ], @@ -7054,14 +7054,14 @@ ] }, { - "id": 2845, + "id": 2848, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2847, + "id": 2850, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -7076,7 +7076,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2848, + "id": 2851, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -7091,7 +7091,7 @@ "defaultValue": "\"none\"" }, { - "id": 2846, + "id": 2849, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -7111,9 +7111,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2847, - 2848, - 2846 + 2850, + 2851, + 2849 ] } ], @@ -7126,7 +7126,7 @@ ] }, { - "id": 2612, + "id": 2615, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -7142,7 +7142,7 @@ }, "children": [ { - "id": 2615, + "id": 2618, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -7153,14 +7153,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1711, + "line": 1724, "character": 4 } ], "defaultValue": "\"FAVORITE\"" }, { - "id": 2618, + "id": 2621, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -7171,14 +7171,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1723, + "line": 1736, "character": 4 } ], "defaultValue": "\"LEARNING\"" }, { - "id": 2616, + "id": 2619, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -7189,14 +7189,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1715, + "line": 1728, "character": 4 } ], "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2613, + "id": 2616, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7207,14 +7207,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1703, + "line": 1716, "character": 4 } ], "defaultValue": "\"SEARCH\"" }, { - "id": 2617, + "id": 2620, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -7225,14 +7225,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1719, + "line": 1732, "character": 4 } ], "defaultValue": "\"TRENDING\"" }, { - "id": 2614, + "id": 2617, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -7243,7 +7243,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1707, + "line": 1720, "character": 4 } ], @@ -7255,19 +7255,19 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2615, 2618, + 2621, + 2619, 2616, - 2613, - 2617, - 2614 + 2620, + 2617 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1699, + "line": 1712, "character": 12 } ] @@ -7323,7 +7323,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3401, + "line": 3425, "character": 4 } ], @@ -7356,7 +7356,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3217, + "line": 3230, "character": 4 } ], @@ -7373,12 +7373,12 @@ "tags": [ { "tag": "param", - "text": "`vizId ` refers to the answer id in spotter Embed, it is required in spotter Embed.", + "text": "`vizId ` refers to the Visualization ID in Spotter embed and is required.", "param": "-" }, { "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.AnswerChartSwitcher, {\n vizId:'b535c760-8bbe-4e6f-bb26-af56b4129a1e'\n});\n```" + "text": "\n```js\nlet latestSpotterVizId = '';\nspotterEmbed.on(EmbedEvent.Data, (payload) => {\n latestSpotterVizId = payload.data.id;\n});\n\nspotterEmbed.trigger(HostEvent.AnswerChartSwitcher, { vizId: latestSpotterVizId });\n```" }, { "tag": "version", @@ -7389,7 +7389,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4225, + "line": 4282, "character": 4 } ], @@ -7417,7 +7417,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4032, + "line": 4075, "character": 4 } ], @@ -7430,16 +7430,16 @@ "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Trigger the *Ask Spotter* action for visualizations", + "shortText": "Trigger the *Spotter* action for visualizations present on the liveboard's vizzes.", "tags": [ { "tag": "param", - "text": "`vizId` refers to the Answer ID in Spotter embed and is required in Spotter embed.", + "text": "`vizId` refers to the Visualization ID in Spotter embed and is required.", "param": "-" }, { "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.AskSpotter,\n{vizId:'730496d6-6903-4601-937e-2c691821af3c'})\n```" + "text": "\n```js\nlet latestSpotterVizId = '';\nspotterEmbed.on(EmbedEvent.Data, (payload) => {\n latestSpotterVizId = payload.data.id;\n});\n\nspotterEmbed.trigger(HostEvent.AskSpotter, { vizId: latestSpotterVizId });\n```" }, { "tag": "version", @@ -7450,7 +7450,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4259, + "line": 4320, "character": 4 } ], @@ -7483,7 +7483,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3541, + "line": 3561, "character": 4 } ], @@ -7520,7 +7520,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3471, + "line": 3499, "character": 4 } ], @@ -7553,7 +7553,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3618, + "line": 3645, "character": 4 } ], @@ -7581,12 +7581,40 @@ "sources": [ { "fileName": "types.ts", - "line": 4213, + "line": 4267, "character": 4 } ], "defaultValue": "\"DeleteLastPrompt\"" }, + { + "id": 2092, + "name": "DestroyEmbed", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggered when the embed is needed to be destroyed. This is used to clean up any embed related resources internally.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.DestroyEmbed);\n```" + }, + { + "tag": "version", + "text": "SDK: 1.41.0 | ThoughtSpot: 10.12.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 4340, + "character": 4 + } + ], + "defaultValue": "\"EmbedDestroyed\"" + }, { "id": 2055, "name": "Download", @@ -7598,12 +7626,12 @@ "tags": [ { "tag": "param", - "text": "`vizId` refers to the Answer ID in Spotter embed and is required in Spotter embed.", + "text": "`vizId` refers to the Visualization ID in Spotter embed and is required in Spotter embed.", "param": "-" }, { "tag": "example", - "text": "\n```js\nliveboardEmbed.trigger(HostEvent.Download, {vizId:\n'730496d6-6903-4601-937e-2c691821af3c'})\n```\n```js\nembed.trigger(HostEvent.Download)\n```\n```js\nspotterEmbed.trigger(HostEvent.Download, {\n vizId:'730496d6-6903-4601-937e-2c691821af3c'\n });\n```" + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.Download, {vizId:\n'730496d6-6903-4601-937e-2c691821af3c'})\n```\n```js\nembed.trigger(HostEvent.Download)\n```\n```js\n// You can use the Data event dispatched on each answer creation to get the vizId and use in Download host event.\nlet latestSpotterVizId = '';\nspotterEmbed.on(EmbedEvent.Data, (payload) => {\n latestSpotterVizId = payload.data.id;\n});\n\nspotterEmbed.trigger(HostEvent.Download, { vizId: latestSpotterVizId });\n```" }, { "tag": "deprecated", @@ -7618,7 +7646,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3660, + "line": 3691, "character": 4 } ], @@ -7635,12 +7663,12 @@ "tags": [ { "tag": "param", - "text": "`vizId` refers to the Answer ID in Spotter embed and is required in Spotter embed.", + "text": "`vizId` refers to the Visualization ID in Spotter embed and is required in Spotter embed.", "param": "-" }, { "tag": "example", - "text": "\n```js\nliveboardEmbed.trigger(HostEvent.DownloadAsCsv, {vizId:\n'730496d6-6903-4601-937e-2c691821af3c'})\n```\n```js\nvizEmbed.trigger(HostEvent.DownloadAsCsv)\n```\n```js\nsearchEmbed.trigger(HostEvent.DownloadAsCsv)\n```\n```js\nspotterEmbed.trigger(HostEvent.DownloadAsCsv, {\n vizId:\"730496d6-6903-4601-937e-2c691821af3c\"\n})\n```" + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.DownloadAsCsv, {vizId:\n'730496d6-6903-4601-937e-2c691821af3c'})\n```\n```js\nvizEmbed.trigger(HostEvent.DownloadAsCsv)\n```\n```js\nsearchEmbed.trigger(HostEvent.DownloadAsCsv)\n```\n```js\n// You can use the Data event dispatched on each answer creation to get the vizId and use in DownloadAsCsv host event.\nlet latestSpotterVizId = '';\nspotterEmbed.on(EmbedEvent.Data, (payload) => {\n latestSpotterVizId = payload.data.id;\n});\n\nspotterEmbed.trigger(HostEvent.DownloadAsCsv, { vizId: latestSpotterVizId });\n```" }, { "tag": "version", @@ -7651,7 +7679,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3703, + "line": 3742, "character": 4 } ], @@ -7677,7 +7705,7 @@ }, { "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.DownloadAsPdf, {\n vizId:'730496d6-6903-4601-937e-2c691821af3c'\n });\n```\n" + "text": "\n```js\n\n// You can use the Data event dispatched on each answer creation to get the vizId and use in DownloadAsPdf host event.\nlet latestSpotterVizId = '';\nspotterEmbed.on(EmbedEvent.Data, (payload) => {\n latestSpotterVizId = payload.data.id;\n});\n\nspotterEmbed.trigger(HostEvent.DownloadAsPdf, { vizId: latestSpotterVizId });\n```\n" }, { "tag": "version", @@ -7688,7 +7716,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3391, + "line": 3415, "character": 4 } ], @@ -7705,7 +7733,7 @@ "tags": [ { "tag": "example", - "text": "\n```js\nliveboardEmbed.trigger(HostEvent.DownloadAsPng,\n{vizId:'730496d6-6903-4601-937e-2c691821af3c'})\n\nvizEmbed.trigger(HostEvent.DownloadAsPng)\n\nsearchEmbed.trigger(HostEvent.DownloadAsPng)\n\nspotterEmbed.trigger(HostEvent.DownloadAsPng, {\n vizId:\"730496d6-6903-4601-937e-2c691821af3c\"\n})\n```\n" + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.DownloadAsPng,\n{vizId:'730496d6-6903-4601-937e-2c691821af3c'})\n\nvizEmbed.trigger(HostEvent.DownloadAsPng)\n\nsearchEmbed.trigger(HostEvent.DownloadAsPng)\n\n// You can use the Data event dispatched on each answer creation to get the vizId and use in DownloadAsPng host event.\nlet latestSpotterVizId = '';\nspotterEmbed.on(EmbedEvent.Data, (payload) => {\n latestSpotterVizId = payload.data.id;\n});\n\nspotterEmbed.trigger(HostEvent.DownloadAsPng, { vizId: latestSpotterVizId });\n```\n" }, { "tag": "version", @@ -7716,7 +7744,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3680, + "line": 3715, "character": 4 } ], @@ -7733,12 +7761,12 @@ "tags": [ { "tag": "param", - "text": "`vizId` refers to the Answer ID in Spotter embed and is required in Spotter embed.", + "text": "`vizId` refers to the Visualization ID in Spotter embed and is required in Spotter embed.", "param": "-" }, { "tag": "example", - "text": "\n```js\nliveboardEmbed.trigger(HostEvent.DownloadAsXlsx, {vizId:\n'730496d6-6903-4601-937e-2c691821af3c'})\n```\n```js\nvizEmbed.trigger(HostEvent.DownloadAsXlsx)\n```\n```js\nsearchEmbed.trigger(HostEvent.DownloadAsXlsx)\n```\n```js\nspotterEmbed.trigger(HostEvent.downloadAsXLSX, {\n vizId:\"730496d6-6903-4601-937e-2c691821af3c\"\n})\n```" + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.DownloadAsXlsx, {vizId:\n'730496d6-6903-4601-937e-2c691821af3c'})\n```\n```js\nvizEmbed.trigger(HostEvent.DownloadAsXlsx)\n```\n```js\nsearchEmbed.trigger(HostEvent.DownloadAsXlsx)\n```\n```js\n// You can use the Data event dispatched on each answer creation to get the vizId and use in DownloadAsXlsx host event.\nlet latestSpotterVizId = '';\nspotterEmbed.on(EmbedEvent.Data, (payload) => {\n latestSpotterVizId = payload.data.id;\n});\n\nspotterEmbed.trigger(HostEvent.DownloadAsXlsx, { vizId: latestSpotterVizId });\n```" }, { "tag": "version", @@ -7749,7 +7777,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3726, + "line": 3769, "character": 4 } ], @@ -7806,7 +7834,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3094, + "line": 3107, "character": 4 } ], @@ -7838,11 +7866,7 @@ }, { "tag": "example", - "text": "\n```js\nconst pinResponse = await spotterEmbed.trigger(HostEvent.Edit, {\n vizId:'730496d6-6903-4601-937e-2c691821af3c'\n });\n```" - }, - { - "tag": "example", - "text": "\n```js\nconst editResponse = await spotterEmbed.trigger(HostEvent.Edit, {\n vizId:'730496d6-6903-4601-937e-2c691821af3c'\n });\n```" + "text": "\n```js\nspotterEmbed.trigger(HostEvent.Edit);\n```" }, { "tag": "version", @@ -7853,7 +7877,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3524, + "line": 3544, "character": 4 } ], @@ -7886,7 +7910,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4186, + "line": 4240, "character": 4 } ], @@ -7914,7 +7938,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3360, + "line": 3379, "character": 4 } ], @@ -7947,7 +7971,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3454, + "line": 3482, "character": 4 } ], @@ -7975,7 +7999,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3350, + "line": 3369, "character": 4 } ], @@ -8008,7 +8032,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4022, + "line": 4065, "character": 4 } ], @@ -8036,7 +8060,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3849, + "line": 3892, "character": 4 } ], @@ -8064,7 +8088,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3114, + "line": 3127, "character": 4 } ], @@ -8081,7 +8105,7 @@ "tags": [ { "tag": "param", - "text": "`vizId` refers to the Answer ID in Spotter embed and is required in Spotter embed.\n```js\nliveboardEmbed.trigger(HostEvent.GetParameters).then((parameter) => {\n console.log('parameters', parameter);\n});\n```\n```js\nspotterEmbed.trigger(HostEvent.GetParameters, {\n vizId: '730496d6-6903-4601-937e-2c691821af3c'\n}).then((parameter) => {\n console.log('parameters', parameter);\n});\n```", + "text": "`vizId` refers to the Answer ID in Spotter embed and is required in Spotter embed.\n```js\nliveboardEmbed.trigger(HostEvent.GetParameters).then((parameter) => {\n console.log('parameters', parameter);\n});\n```\n```js\n// You can use the Data event dispatched on each answer creation to get the vizId and use in GetParameters host event.\nlet latestSpotterVizId = '';\nspotterEmbed.on(EmbedEvent.Data, (payload) => {\n latestSpotterVizId = payload.data.id;\n});\n\nspotterEmbed.trigger(HostEvent.GetParameters, { vizId: latestSpotterVizId });\n```", "param": "-" }, { @@ -8093,7 +8117,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4089, + "line": 4140, "character": 4 } ], @@ -8110,11 +8134,7 @@ "tags": [ { "tag": "example", - "text": "\n```js\nsearchEmbed.trigger(HostEvent.GetTML).then((tml) => {\n console.log(\n tml.answer.search_query // TML representation of the search query\n );\n})\n```" - }, - { - "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.GetTML, {\n vizId: '730496d6-6903-4601-937e-2c691821af3c'\n}).then((tml) => {\n console.log(\n tml.answer.search_query // TML representation of the search query\n );\n})\n```" + "text": "\n```js\nsearchEmbed.trigger(HostEvent.GetTML).then((tml) => {\n console.log(\n tml.answer.search_query // TML representation of the search query\n );\n})\n```\n* @example\n```js\n\n// You can use the Data event dispatched on each answer creation to get the vizId and use in Pin host event.\nlet latestSpotterVizId = '';\nspotterEmbed.on(EmbedEvent.Data, (payload) => {\n latestSpotterVizId = payload.data.id;\n});\n\nspotterEmbed.trigger(HostEvent.GetTML, {\n vizId: latestSpotterVizId\n}).then((tml) => {\n console.log(\n tml.answer.search_query // TML representation of the search query\n );\n})\n```" }, { "tag": "version", @@ -8129,7 +8149,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3582, + "line": 3609, "character": 4 } ], @@ -8157,7 +8177,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3952, + "line": 3995, "character": 4 } ], @@ -8185,7 +8205,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3322, + "line": 3341, "character": 4 } ], @@ -8218,7 +8238,7 @@ }, { "tag": "example", - "text": "\n```js\nconst pinResponse = await spotterEmbed.trigger(HostEvent.MakeACopy, {\n vizId:'730496d6-6903-4601-937e-2c691821af3c'\n });\n```" + "text": "\n```js\n// You can use the Data event dispatched on each answer creation to get the vizId and use in MakeACopy host event.\nlet latestSpotterVizId = '';\nspotterEmbed.on(EmbedEvent.Data, (payload) => {\n latestSpotterVizId = payload.data.id;\n});\n\nspotterEmbed.trigger(HostEvent.MakeACopy, { vizId: latestSpotterVizId });\n```" }, { "tag": "version", @@ -8229,7 +8249,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3430, + "line": 3458, "character": 4 } ], @@ -8270,7 +8290,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3492, + "line": 3520, "character": 4 } ], @@ -8303,7 +8323,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3826, + "line": 3869, "character": 4 } ], @@ -8336,7 +8356,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3187, + "line": 3200, "character": 4 } ], @@ -8373,7 +8393,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3207, + "line": 3220, "character": 4 } ], @@ -8390,7 +8410,7 @@ "tags": [ { "tag": "param", - "text": "\n`vizId`- GUID of the saved Answer or visualization to pin to a Liveboard.\n Optional when pinning a new chart or table generated from a Search query.\n **Required** in Spotter Embed." + "text": "\n`vizId`- GUID of the saved Answer or Spotter visualization ID to pin to a Liveboard.\n Optional when pinning a new chart or table generated from a Search query.\n **Required** in Spotter Embed." }, { "tag": "param", @@ -8430,7 +8450,7 @@ }, { "tag": "example", - "text": "\n```js\nconst pinResponse = await spotterEmbed.trigger(HostEvent.Pin, {\n vizId:'730496d6-6903-4601-937e-2c691821af3c'\n });\n```" + "text": "\n```js\n\n// You can use the Data event dispatched on each answer creation to get the vizId and use in Pin host event.\nlet latestSpotterVizId = '';\nspotterEmbed.on(EmbedEvent.Data, (payload) => {\n latestSpotterVizId = payload.data.id;\n});\n\nspotterEmbed.trigger(HostEvent.Pin, { vizId: latestSpotterVizId });\n```\n" }, { "tag": "version", @@ -8441,7 +8461,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3312, + "line": 3331, "character": 4 } ], @@ -8474,7 +8494,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3558, + "line": 3578, "character": 4 } ], @@ -8502,7 +8522,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4195, + "line": 4249, "character": 4 } ], @@ -8534,7 +8554,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3444, + "line": 3472, "character": 4 } ], @@ -8567,7 +8587,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3227, + "line": 3240, "character": 4 } ], @@ -8595,7 +8615,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4057, + "line": 4100, "character": 4 } ], @@ -8623,7 +8643,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3838, + "line": 3881, "character": 4 } ], @@ -8651,7 +8671,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4204, + "line": 4258, "character": 4 } ], @@ -8673,7 +8693,7 @@ }, { "tag": "example", - "text": "\n```js\n// Save changes in a Liveboard\nliveboardEmbed.trigger(HostEvent.Save)\n```\n\n```js\n// Save the current Answer in Search embed\nsearchEmbed.trigger(HostEvent.Save)\n```\n\n```js\n// Save an Answer in Spotter (requires vizId)\nspotterEmbed.trigger(HostEvent.Save, {\n vizId: \"730496d6-6903-4601-937e-2c691821af3c\"\n})\n```\n\n```js\n// How to get the vizId in Spotter?\n\n// You can use the Data event dispatched on each answer creation to get the vizId.\nlet latestSpotterVizId = '';\nspotterEmbed.on(EmbedEvent.Data, (payload) => {\n latestSpotterVizId = payload.data.id;\n});\n\nspotterEmbed.trigger(HostEvent.Save, { vizId: latestSpotterVizId });\n```\n" + "text": "\n```js\n// Save changes in a Liveboard\nliveboardEmbed.trigger(HostEvent.Save)\n```\n\n```js\n// Save the current Answer in Search embed\nsearchEmbed.trigger(HostEvent.Save)\n```\n\n```js\n// Save a Visualization in Spotter (requires vizId)\nspotterEmbed.trigger(HostEvent.Save, {\n vizId: \"730496d6-6903-4601-937e-2c691821af3c\"\n})\n```\n\n```js\n// How to get the vizId in Spotter?\n\n// You can use the Data event dispatched on each answer creation to get the vizId.\nlet latestSpotterVizId = '';\nspotterEmbed.on(EmbedEvent.Data, (payload) => {\n latestSpotterVizId = payload.data.id;\n});\n\nspotterEmbed.trigger(HostEvent.Save, { vizId: latestSpotterVizId });\n```\n" }, { "tag": "version", @@ -8684,7 +8704,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3779, + "line": 3822, "character": 4 } ], @@ -8720,7 +8740,7 @@ }, { "tag": "example", - "text": "\n```js\nconst saveAnswerResponse = await spotterEmbed.trigger(HostEvent.SaveAnswer, {\n vizId: '730496d6-6903-4601-937e-2c691821af3c',\n name: \"Sales by states\",\n description: \"Total sales by states in MidWest\"\n});\n```" + "text": "\n```js\n// You can use the Data event dispatched on each answer creation to get the vizId and use in SaveAnswer host event.\nlet latestSpotterVizId = '';\nspotterEmbed.on(EmbedEvent.Data, (payload) => {\n latestSpotterVizId = payload.data.id;\n});\n\nspotterEmbed.trigger(HostEvent.SaveAnswer, { vizId: latestSpotterVizId });\n```" }, { "tag": "version", @@ -8731,7 +8751,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4136, + "line": 4190, "character": 4 } ], @@ -8759,7 +8779,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3331, + "line": 3350, "character": 4 } ], @@ -8787,7 +8807,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3340, + "line": 3359, "character": 4 } ], @@ -8826,7 +8846,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3043, + "line": 3056, "character": 4 } ], @@ -8859,7 +8879,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3139, + "line": 3152, "character": 4 } ], @@ -8892,7 +8912,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3978, + "line": 4021, "character": 4 } ], @@ -8925,7 +8945,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3965, + "line": 4008, "character": 4 } ], @@ -8958,7 +8978,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3127, + "line": 3140, "character": 4 } ], @@ -8986,7 +9006,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3739, + "line": 3782, "character": 4 } ], @@ -9019,7 +9039,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3601, + "line": 3628, "character": 4 } ], @@ -9052,7 +9072,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3638, + "line": 3665, "character": 4 } ], @@ -9090,7 +9110,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4176, + "line": 4230, "character": 4 } ], @@ -9123,7 +9143,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3810, + "line": 3853, "character": 4 } ], @@ -9156,7 +9176,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3794, + "line": 3837, "character": 4 } ], @@ -9189,7 +9209,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4161, + "line": 4215, "character": 4 } ], @@ -9217,7 +9237,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4048, + "line": 4091, "character": 4 } ], @@ -9267,7 +9287,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3939, + "line": 3982, "character": 4 } ], @@ -9305,7 +9325,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4071, + "line": 4120, "character": 4 } ], @@ -9329,7 +9349,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4097, + "line": 4148, "character": 4 } ], @@ -9367,7 +9387,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3175, + "line": 3188, "character": 4 } ], @@ -9405,7 +9425,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3992, + "line": 4035, "character": 4 } ], @@ -9433,7 +9453,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3369, + "line": 3388, "character": 4 } ], @@ -9461,7 +9481,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3243, + "line": 3256, "character": 4 } ], @@ -9482,6 +9502,7 @@ 2046, 2053, 2086, + 2092, 2055, 2057, 2041, @@ -9543,13 +9564,13 @@ "sources": [ { "fileName": "types.ts", - "line": 3023, + "line": 3036, "character": 12 } ] }, { - "id": 2854, + "id": 2857, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -9565,7 +9586,7 @@ }, "children": [ { - "id": 2855, + "id": 2858, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -9583,7 +9604,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2856, + "id": 2859, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -9606,8 +9627,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2855, - 2856 + 2858, + 2859 ] } ], @@ -9620,7 +9641,7 @@ ] }, { - "id": 2887, + "id": 2890, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -9636,7 +9657,7 @@ }, "children": [ { - "id": 2890, + "id": 2893, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -9647,14 +9668,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1744, + "line": 1757, "character": 4 } ], "defaultValue": "\"AUTHOR\"" }, { - "id": 2891, + "id": 2894, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -9665,14 +9686,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1748, + "line": 1761, "character": 4 } ], "defaultValue": "\"DATE_SORT\"" }, { - "id": 2888, + "id": 2891, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -9683,14 +9704,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1736, + "line": 1749, "character": 4 } ], "defaultValue": "\"FAVOURITE\"" }, { - "id": 2892, + "id": 2895, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -9701,14 +9722,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1752, + "line": 1765, "character": 4 } ], "defaultValue": "\"SHARE\"" }, { - "id": 2889, + "id": 2892, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -9719,7 +9740,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1740, + "line": 1753, "character": 4 } ], @@ -9731,24 +9752,24 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2890, + 2893, + 2894, 2891, - 2888, - 2892, - 2889 + 2895, + 2892 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1732, + "line": 1745, "character": 12 } ] }, { - "id": 2822, + "id": 2825, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -9758,7 +9779,7 @@ }, "children": [ { - "id": 2827, + "id": 2830, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -9779,14 +9800,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5937, + "line": 6007, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2824, + "id": 2827, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -9807,14 +9828,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5898, + "line": 5968, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2826, + "id": 2829, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -9835,14 +9856,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5923, + "line": 5993, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2823, + "id": 2826, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -9863,14 +9884,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5886, + "line": 5956, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2828, + "id": 2831, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -9891,14 +9912,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5949, + "line": 6019, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2825, + "id": 2828, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -9919,7 +9940,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5910, + "line": 5980, "character": 4 } ], @@ -9931,19 +9952,19 @@ "title": "Enumeration members", "kind": 16, "children": [ + 2830, 2827, - 2824, + 2829, 2826, - 2823, - 2828, - 2825 + 2831, + 2828 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5873, + "line": 5943, "character": 12 } ] @@ -10109,14 +10130,14 @@ ] }, { - "id": 2590, + "id": 2593, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2591, + "id": 2594, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -10124,14 +10145,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5764, + "line": 5834, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2593, + "id": 2596, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10139,14 +10160,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5766, + "line": 5836, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2592, + "id": 2595, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10154,14 +10175,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5765, + "line": 5835, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2594, + "id": 2597, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10169,7 +10190,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5767, + "line": 5837, "character": 4 } ], @@ -10181,23 +10202,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2591, - 2593, - 2592, - 2594 + 2594, + 2596, + 2595, + 2597 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5763, + "line": 5833, "character": 12 } ] }, { - "id": 2849, + "id": 2852, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -10213,7 +10234,7 @@ }, "children": [ { - "id": 2850, + "id": 2853, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -10236,7 +10257,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2850 + 2853 ] } ], @@ -10270,7 +10291,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1660, + "line": 1673, "character": 4 } ], @@ -10288,7 +10309,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1680, + "line": 1693, "character": 4 } ], @@ -10306,7 +10327,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1676, + "line": 1689, "character": 4 } ], @@ -10324,7 +10345,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1668, + "line": 1681, "character": 4 } ], @@ -10342,7 +10363,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1672, + "line": 1685, "character": 4 } ], @@ -10360,7 +10381,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1656, + "line": 1669, "character": 4 } ], @@ -10378,7 +10399,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1664, + "line": 1677, "character": 4 } ], @@ -10396,7 +10417,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1632, + "line": 1645, "character": 4 } ], @@ -10414,7 +10435,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1652, + "line": 1665, "character": 4 } ], @@ -10432,7 +10453,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1648, + "line": 1661, "character": 4 } ], @@ -10450,7 +10471,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1684, + "line": 1697, "character": 4 } ], @@ -10468,7 +10489,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1644, + "line": 1657, "character": 4 } ], @@ -10486,7 +10507,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1640, + "line": 1653, "character": 4 } ], @@ -10504,7 +10525,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1636, + "line": 1649, "character": 4 } ], @@ -10522,7 +10543,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1688, + "line": 1701, "character": 4 } ], @@ -10555,20 +10576,20 @@ "sources": [ { "fileName": "types.ts", - "line": 1628, + "line": 1641, "character": 12 } ] }, { - "id": 2880, + "id": 2883, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2885, + "id": 2888, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -10583,7 +10604,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2884, + "id": 2887, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -10598,7 +10619,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2883, + "id": 2886, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -10613,7 +10634,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2886, + "id": 2889, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -10628,7 +10649,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2881, + "id": 2884, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -10643,7 +10664,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2882, + "id": 2885, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -10663,12 +10684,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2885, - 2884, - 2883, + 2888, + 2887, 2886, - 2881, - 2882 + 2889, + 2884, + 2885 ] } ], @@ -10788,7 +10809,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2857, + "id": 2860, "name": "VizPoint" } } @@ -11976,7 +11997,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2619, + "id": 2622, "name": "DOMSelector" } }, @@ -11988,7 +12009,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2506, + "id": 2509, "name": "AppViewConfig" } } @@ -12066,7 +12087,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1596, "character": 17 } ], @@ -12206,7 +12227,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1570, + "line": 1583, "character": 11 } ], @@ -12397,7 +12418,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1406, + "line": 1419, "character": 11 } ], @@ -12434,7 +12455,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1542, + "line": 1555, "character": 11 } ], @@ -12599,7 +12620,7 @@ }, "type": { "type": "reference", - "id": 2623, + "id": 2626, "name": "MessageCallback" } } @@ -12630,7 +12651,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1692, + "line": 1705, "character": 11 } ], @@ -12678,7 +12699,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2623, + "id": 2626, "name": "MessageCallback" } }, @@ -12690,7 +12711,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2620, + "id": 2623, "name": "MessageOptions" }, "defaultValue": "..." @@ -12797,7 +12818,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1417, + "line": 1430, "character": 17 } ], @@ -12897,7 +12918,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1465, + "line": 1478, "character": 17 } ], @@ -12943,7 +12964,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1523, + "line": 1536, "character": 11 } ], @@ -13132,7 +13153,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2880, + "id": 2883, "name": "UIPassthroughEvent" } } @@ -13930,7 +13951,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1596, "character": 17 } ], @@ -14042,7 +14063,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1570, + "line": 1583, "character": 11 } ], @@ -14237,7 +14258,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1406, + "line": 1419, "character": 11 } ], @@ -14276,7 +14297,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1542, + "line": 1555, "character": 11 } ], @@ -14365,7 +14386,7 @@ }, "type": { "type": "reference", - "id": 2623, + "id": 2626, "name": "MessageCallback" } } @@ -14449,7 +14470,7 @@ }, "type": { "type": "reference", - "id": 2623, + "id": 2626, "name": "MessageCallback" } }, @@ -14464,7 +14485,7 @@ }, "type": { "type": "reference", - "id": 2620, + "id": 2623, "name": "MessageOptions" }, "defaultValue": "..." @@ -14588,7 +14609,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1417, + "line": 1430, "character": 17 } ], @@ -14689,7 +14710,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1465, + "line": 1478, "character": 17 } ], @@ -14737,7 +14758,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1523, + "line": 1536, "character": 11 } ], @@ -14930,7 +14951,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2880, + "id": 2883, "name": "UIPassthroughEvent" } } @@ -15096,7 +15117,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2619, + "id": 2622, "name": "DOMSelector" } }, @@ -15108,7 +15129,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2384, + "id": 2387, "name": "LiveboardViewConfig" } } @@ -15186,7 +15207,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1596, "character": 17 } ], @@ -15327,7 +15348,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1570, + "line": 1583, "character": 11 } ], @@ -15518,7 +15539,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1406, + "line": 1419, "character": 11 } ], @@ -15555,7 +15576,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1542, + "line": 1555, "character": 11 } ], @@ -15710,7 +15731,7 @@ }, "type": { "type": "reference", - "id": 2623, + "id": 2626, "name": "MessageCallback" } } @@ -15741,7 +15762,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1692, + "line": 1705, "character": 11 } ], @@ -15789,7 +15810,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2623, + "id": 2626, "name": "MessageCallback" } }, @@ -15801,7 +15822,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2620, + "id": 2623, "name": "MessageOptions" }, "defaultValue": "..." @@ -15908,7 +15929,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1417, + "line": 1430, "character": 17 } ], @@ -16008,7 +16029,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1465, + "line": 1478, "character": 17 } ], @@ -16054,7 +16075,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1523, + "line": 1536, "character": 11 } ], @@ -16243,7 +16264,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2880, + "id": 2883, "name": "UIPassthroughEvent" } } @@ -16408,7 +16429,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2619, + "id": 2622, "name": "DOMSelector" } }, @@ -16420,7 +16441,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2459, + "id": 2462, "name": "SageViewConfig" } } @@ -16498,7 +16519,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1596, "character": 17 } ], @@ -16639,7 +16660,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1570, + "line": 1583, "character": 11 } ], @@ -16830,7 +16851,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1406, + "line": 1419, "character": 11 } ], @@ -16867,7 +16888,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1542, + "line": 1555, "character": 11 } ], @@ -16954,7 +16975,7 @@ }, "type": { "type": "reference", - "id": 2623, + "id": 2626, "name": "MessageCallback" } } @@ -16985,7 +17006,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1692, + "line": 1705, "character": 11 } ], @@ -17033,7 +17054,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2623, + "id": 2626, "name": "MessageCallback" } }, @@ -17045,7 +17066,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2620, + "id": 2623, "name": "MessageOptions" }, "defaultValue": "..." @@ -17152,7 +17173,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1417, + "line": 1430, "character": 17 } ], @@ -17253,7 +17274,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1465, + "line": 1478, "character": 17 } ], @@ -17299,7 +17320,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1523, + "line": 1536, "character": 11 } ], @@ -17488,7 +17509,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2880, + "id": 2883, "name": "UIPassthroughEvent" } } @@ -17663,7 +17684,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2342, + "id": 2345, "name": "SearchBarViewConfig" } } @@ -17741,7 +17762,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1596, "character": 17 } ], @@ -17849,7 +17870,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1570, + "line": 1583, "character": 11 } ], @@ -18040,7 +18061,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1406, + "line": 1419, "character": 11 } ], @@ -18077,7 +18098,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1542, + "line": 1555, "character": 11 } ], @@ -18164,7 +18185,7 @@ }, "type": { "type": "reference", - "id": 2623, + "id": 2626, "name": "MessageCallback" } } @@ -18246,7 +18267,7 @@ }, "type": { "type": "reference", - "id": 2623, + "id": 2626, "name": "MessageCallback" } }, @@ -18261,7 +18282,7 @@ }, "type": { "type": "reference", - "id": 2620, + "id": 2623, "name": "MessageOptions" }, "defaultValue": "..." @@ -18381,7 +18402,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1417, + "line": 1430, "character": 17 } ], @@ -18481,7 +18502,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1465, + "line": 1478, "character": 17 } ], @@ -18527,7 +18548,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1523, + "line": 1536, "character": 11 } ], @@ -18716,7 +18737,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2880, + "id": 2883, "name": "UIPassthroughEvent" } } @@ -18875,7 +18896,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2619, + "id": 2622, "name": "DOMSelector" } }, @@ -18887,7 +18908,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2288, + "id": 2291, "name": "SearchViewConfig" } } @@ -18965,7 +18986,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1596, "character": 17 } ], @@ -19105,7 +19126,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1570, + "line": 1583, "character": 11 } ], @@ -19296,7 +19317,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1406, + "line": 1419, "character": 11 } ], @@ -19333,7 +19354,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1542, + "line": 1555, "character": 11 } ], @@ -19420,7 +19441,7 @@ }, "type": { "type": "reference", - "id": 2623, + "id": 2626, "name": "MessageCallback" } } @@ -19502,7 +19523,7 @@ }, "type": { "type": "reference", - "id": 2623, + "id": 2626, "name": "MessageCallback" } }, @@ -19517,7 +19538,7 @@ }, "type": { "type": "reference", - "id": 2620, + "id": 2623, "name": "MessageOptions" }, "defaultValue": "..." @@ -19637,7 +19658,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1417, + "line": 1430, "character": 17 } ], @@ -19737,7 +19758,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1465, + "line": 1478, "character": 17 } ], @@ -19783,7 +19804,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1523, + "line": 1536, "character": 11 } ], @@ -19972,7 +19993,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2880, + "id": 2883, "name": "UIPassthroughEvent" } } @@ -20731,7 +20752,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1596, "character": 17 } ], @@ -20839,7 +20860,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1570, + "line": 1583, "character": 11 } ], @@ -21030,7 +21051,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1406, + "line": 1419, "character": 11 } ], @@ -21067,7 +21088,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1542, + "line": 1555, "character": 11 } ], @@ -21154,7 +21175,7 @@ }, "type": { "type": "reference", - "id": 2623, + "id": 2626, "name": "MessageCallback" } } @@ -21236,7 +21257,7 @@ }, "type": { "type": "reference", - "id": 2623, + "id": 2626, "name": "MessageCallback" } }, @@ -21251,7 +21272,7 @@ }, "type": { "type": "reference", - "id": 2620, + "id": 2623, "name": "MessageOptions" }, "defaultValue": "..." @@ -21371,7 +21392,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1417, + "line": 1430, "character": 17 } ], @@ -21468,7 +21489,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1465, + "line": 1478, "character": 17 } ], @@ -21514,7 +21535,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1523, + "line": 1536, "character": 11 } ], @@ -21703,7 +21724,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2880, + "id": 2883, "name": "UIPassthroughEvent" } } @@ -21825,7 +21846,7 @@ ] }, { - "id": 2506, + "id": 2509, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -21841,7 +21862,7 @@ }, "children": [ { - "id": 2544, + "id": 2547, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -21865,27 +21886,27 @@ "sources": [ { "fileName": "types.ts", - "line": 873, + "line": 886, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2545, + "id": 2548, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2546, + "id": 2549, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2547, + "id": 2550, "name": "key", "kind": 32768, "flags": {}, @@ -21921,7 +21942,7 @@ } }, { - "id": 2568, + "id": 2571, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -21949,7 +21970,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1279, + "line": 1292, "character": 4 } ], @@ -21963,7 +21984,7 @@ } }, { - "id": 2526, + "id": 2529, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -22000,7 +22021,7 @@ } }, { - "id": 2565, + "id": 2568, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -22024,13 +22045,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1243, + "line": 1256, "character": 4 } ], "type": { "type": "reference", - "id": 2234, + "id": 2235, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -22039,7 +22060,7 @@ } }, { - "id": 2585, + "id": 2588, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -22063,7 +22084,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1499, + "line": 1512, "character": 4 } ], @@ -22077,7 +22098,7 @@ } }, { - "id": 2562, + "id": 2565, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -22101,7 +22122,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1086, + "line": 1099, "character": 4 } ], @@ -22118,7 +22139,7 @@ } }, { - "id": 2548, + "id": 2551, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -22141,13 +22162,13 @@ "sources": [ { "fileName": "types.ts", - "line": 880, + "line": 893, "character": 4 } ], "type": { "type": "reference", - "id": 2636, + "id": 2639, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -22156,7 +22177,7 @@ } }, { - "id": 2527, + "id": 2530, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -22190,12 +22211,12 @@ ], "type": { "type": "reference", - "id": 2893, + "id": 2896, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2569, + "id": 2572, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -22223,7 +22244,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1295, + "line": 1308, "character": 4 } ], @@ -22237,7 +22258,7 @@ } }, { - "id": 2509, + "id": 2512, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -22275,7 +22296,7 @@ } }, { - "id": 2556, + "id": 2559, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -22299,7 +22320,7 @@ "sources": [ { "fileName": "types.ts", - "line": 988, + "line": 1001, "character": 4 } ], @@ -22313,7 +22334,7 @@ } }, { - "id": 2540, + "id": 2543, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -22337,7 +22358,7 @@ "sources": [ { "fileName": "types.ts", - "line": 795, + "line": 808, "character": 4 } ], @@ -22351,7 +22372,7 @@ } }, { - "id": 2539, + "id": 2542, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -22375,7 +22396,7 @@ "sources": [ { "fileName": "types.ts", - "line": 779, + "line": 792, "character": 4 } ], @@ -22383,7 +22404,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -22393,7 +22414,7 @@ } }, { - "id": 2525, + "id": 2528, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -22431,7 +22452,7 @@ } }, { - "id": 2552, + "id": 2555, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -22458,7 +22479,7 @@ "sources": [ { "fileName": "types.ts", - "line": 944, + "line": 957, "character": 4 } ], @@ -22472,7 +22493,7 @@ } }, { - "id": 2579, + "id": 2582, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -22500,7 +22521,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1397, + "line": 1410, "character": 4 } ], @@ -22514,7 +22535,7 @@ } }, { - "id": 2584, + "id": 2587, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -22542,7 +22563,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1483, + "line": 1496, "character": 4 } ], @@ -22556,7 +22577,7 @@ } }, { - "id": 2570, + "id": 2573, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -22584,7 +22605,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1311, + "line": 1324, "character": 4 } ], @@ -22598,7 +22619,7 @@ } }, { - "id": 2510, + "id": 2513, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -22634,7 +22655,7 @@ } }, { - "id": 2522, + "id": 2525, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -22672,7 +22693,7 @@ } }, { - "id": 2553, + "id": 2556, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -22696,7 +22717,7 @@ "sources": [ { "fileName": "types.ts", - "line": 961, + "line": 974, "character": 4 } ], @@ -22710,7 +22731,7 @@ } }, { - "id": 2566, + "id": 2569, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -22734,7 +22755,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1254, + "line": 1267, "character": 4 } ], @@ -22748,7 +22769,7 @@ } }, { - "id": 2567, + "id": 2570, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -22772,7 +22793,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1264, + "line": 1277, "character": 4 } ], @@ -22786,7 +22807,7 @@ } }, { - "id": 2555, + "id": 2558, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -22809,7 +22830,7 @@ "sources": [ { "fileName": "types.ts", - "line": 972, + "line": 985, "character": 4 } ], @@ -22823,7 +22844,7 @@ } }, { - "id": 2536, + "id": 2539, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -22847,13 +22868,13 @@ "sources": [ { "fileName": "types.ts", - "line": 752, + "line": 765, "character": 4 } ], "type": { "type": "reference", - "id": 2595, + "id": 2598, "name": "FrameParams" }, "inheritedFrom": { @@ -22862,7 +22883,7 @@ } }, { - "id": 2523, + "id": 2526, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -22896,7 +22917,7 @@ } }, { - "id": 2541, + "id": 2544, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -22924,7 +22945,7 @@ "sources": [ { "fileName": "types.ts", - "line": 813, + "line": 826, "character": 4 } ], @@ -22932,7 +22953,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -22942,7 +22963,7 @@ } }, { - "id": 2574, + "id": 2577, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -22966,7 +22987,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1179, + "line": 1192, "character": 4 } ], @@ -22974,7 +22995,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2601, + "id": 2604, "name": "HomeLeftNavItem" } }, @@ -22984,7 +23005,7 @@ } }, { - "id": 2572, + "id": 2575, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -23008,7 +23029,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1134, + "line": 1147, "character": 4 } ], @@ -23016,7 +23037,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2612, + "id": 2615, "name": "HomepageModule" } }, @@ -23026,7 +23047,7 @@ } }, { - "id": 2571, + "id": 2574, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -23050,7 +23071,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1112, + "line": 1125, "character": 4 } ], @@ -23058,7 +23079,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2887, + "id": 2890, "name": "ListPageColumns" } }, @@ -23068,7 +23089,7 @@ } }, { - "id": 2514, + "id": 2517, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -23106,7 +23127,7 @@ } }, { - "id": 2511, + "id": 2514, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -23144,7 +23165,7 @@ } }, { - "id": 2508, + "id": 2511, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -23182,7 +23203,7 @@ } }, { - "id": 2582, + "id": 2585, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -23210,7 +23231,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1450, + "line": 1463, "character": 4 } ], @@ -23224,7 +23245,7 @@ } }, { - "id": 2575, + "id": 2578, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -23252,7 +23273,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1333, + "line": 1346, "character": 4 } ], @@ -23266,7 +23287,7 @@ } }, { - "id": 2513, + "id": 2516, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -23304,7 +23325,7 @@ } }, { - "id": 2512, + "id": 2515, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -23342,7 +23363,7 @@ } }, { - "id": 2520, + "id": 2523, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -23379,7 +23400,7 @@ } }, { - "id": 2515, + "id": 2518, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -23417,7 +23438,7 @@ } }, { - "id": 2519, + "id": 2522, "name": "hideTagFilterChips", "kind": 1024, "kindString": "Property", @@ -23451,7 +23472,7 @@ } }, { - "id": 2529, + "id": 2532, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -23477,12 +23498,12 @@ ], "type": { "type": "reference", - "id": 2845, + "id": 2848, "name": "HomePageSearchBarMode" } }, { - "id": 2549, + "id": 2552, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -23506,7 +23527,7 @@ "sources": [ { "fileName": "types.ts", - "line": 896, + "line": 909, "character": 4 } ], @@ -23520,7 +23541,7 @@ } }, { - "id": 2587, + "id": 2590, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -23544,7 +23565,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1532, + "line": 1545, "character": 4 } ], @@ -23558,7 +23579,7 @@ } }, { - "id": 2589, + "id": 2592, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -23582,7 +23603,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1563, + "line": 1576, "character": 4 } ], @@ -23596,7 +23617,7 @@ } }, { - "id": 2588, + "id": 2591, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -23620,7 +23641,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1547, + "line": 1560, "character": 4 } ], @@ -23634,7 +23655,7 @@ } }, { - "id": 2580, + "id": 2583, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -23662,7 +23683,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1414, + "line": 1427, "character": 4 } ], @@ -23676,7 +23697,7 @@ } }, { - "id": 2578, + "id": 2581, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -23700,7 +23721,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1380, + "line": 1393, "character": 4 } ], @@ -23714,7 +23735,7 @@ } }, { - "id": 2531, + "id": 2534, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -23748,7 +23769,7 @@ } }, { - "id": 2528, + "id": 2531, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -23777,7 +23798,7 @@ } }, { - "id": 2532, + "id": 2535, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -23811,7 +23832,7 @@ } }, { - "id": 2530, + "id": 2533, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -23849,7 +23870,7 @@ } }, { - "id": 2533, + "id": 2536, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -23886,7 +23907,7 @@ } }, { - "id": 2534, + "id": 2537, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -23920,7 +23941,7 @@ } }, { - "id": 2558, + "id": 2561, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -23944,7 +23965,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1022, + "line": 1035, "character": 4 } ], @@ -23958,7 +23979,7 @@ } }, { - "id": 2586, + "id": 2589, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -23982,7 +24003,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1514, + "line": 1527, "character": 4 } ], @@ -23996,7 +24017,7 @@ } }, { - "id": 2543, + "id": 2546, "name": "locale", "kind": 1024, "kindString": "Property", @@ -24020,7 +24041,7 @@ "sources": [ { "fileName": "types.ts", - "line": 849, + "line": 862, "character": 4 } ], @@ -24034,7 +24055,7 @@ } }, { - "id": 2524, + "id": 2527, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -24072,7 +24093,7 @@ } }, { - "id": 2557, + "id": 2560, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -24096,7 +24117,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1007, + "line": 1020, "character": 4 } ], @@ -24110,7 +24131,7 @@ } }, { - "id": 2517, + "id": 2520, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -24145,7 +24166,7 @@ } }, { - "id": 2516, + "id": 2519, "name": "path", "kind": 1024, "kindString": "Property", @@ -24179,7 +24200,7 @@ } }, { - "id": 2551, + "id": 2554, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -24203,7 +24224,7 @@ "sources": [ { "fileName": "types.ts", - "line": 923, + "line": 936, "character": 4 } ], @@ -24217,7 +24238,7 @@ } }, { - "id": 2559, + "id": 2562, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -24241,7 +24262,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1038, + "line": 1051, "character": 4 } ], @@ -24255,7 +24276,7 @@ } }, { - "id": 2573, + "id": 2576, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -24279,7 +24300,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1156, + "line": 1169, "character": 4 } ], @@ -24287,7 +24308,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2612, + "id": 2615, "name": "HomepageModule" } }, @@ -24297,7 +24318,7 @@ } }, { - "id": 2563, + "id": 2566, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -24321,7 +24342,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1207, + "line": 1220, "character": 4 } ], @@ -24339,7 +24360,7 @@ } }, { - "id": 2564, + "id": 2567, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -24363,7 +24384,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1228, + "line": 1241, "character": 4 } ], @@ -24371,7 +24392,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2819, + "id": 2822, "name": "RuntimeParameter" } }, @@ -24381,7 +24402,7 @@ } }, { - "id": 2561, + "id": 2564, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -24404,7 +24425,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1058, + "line": 1071, "character": 4 } ], @@ -24418,7 +24439,7 @@ } }, { - "id": 2577, + "id": 2580, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -24446,7 +24467,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1365, + "line": 1378, "character": 4 } ], @@ -24460,7 +24481,7 @@ } }, { - "id": 2583, + "id": 2586, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -24488,7 +24509,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1467, + "line": 1480, "character": 4 } ], @@ -24502,7 +24523,7 @@ } }, { - "id": 2576, + "id": 2579, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -24530,7 +24551,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1349, + "line": 1362, "character": 4 } ], @@ -24544,7 +24565,7 @@ } }, { - "id": 2581, + "id": 2584, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -24572,7 +24593,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1431, + "line": 1444, "character": 4 } ], @@ -24586,7 +24607,7 @@ } }, { - "id": 2507, + "id": 2510, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -24624,7 +24645,7 @@ } }, { - "id": 2518, + "id": 2521, "name": "tag", "kind": 1024, "kindString": "Property", @@ -24658,7 +24679,7 @@ } }, { - "id": 2542, + "id": 2545, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -24686,7 +24707,7 @@ "sources": [ { "fileName": "types.ts", - "line": 834, + "line": 847, "character": 4 } ], @@ -24694,7 +24715,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -24709,79 +24730,79 @@ "title": "Properties", "kind": 1024, "children": [ - 2544, + 2547, + 2571, + 2529, 2568, - 2526, + 2588, 2565, - 2585, - 2562, - 2548, - 2527, - 2569, - 2509, - 2556, - 2540, - 2539, + 2551, + 2530, + 2572, + 2512, + 2559, + 2543, + 2542, + 2528, + 2555, + 2582, + 2587, + 2573, + 2513, 2525, - 2552, - 2579, - 2584, + 2556, + 2569, 2570, - 2510, - 2522, - 2553, - 2566, - 2567, - 2555, - 2536, - 2523, - 2541, + 2558, + 2539, + 2526, + 2544, + 2577, + 2575, 2574, - 2572, - 2571, + 2517, 2514, 2511, - 2508, - 2582, - 2575, - 2513, - 2512, - 2520, - 2515, - 2519, - 2529, - 2549, - 2587, - 2589, - 2588, - 2580, + 2585, 2578, - 2531, - 2528, + 2516, + 2515, + 2523, + 2518, + 2522, 2532, - 2530, - 2533, + 2552, + 2590, + 2592, + 2591, + 2583, + 2581, 2534, - 2558, - 2586, - 2543, - 2524, - 2557, - 2517, - 2516, - 2551, - 2559, - 2573, - 2563, - 2564, + 2531, + 2535, + 2533, + 2536, + 2537, 2561, - 2577, - 2583, + 2589, + 2546, + 2527, + 2560, + 2520, + 2519, + 2554, + 2562, 2576, - 2581, - 2507, - 2518, - 2542 + 2566, + 2567, + 2564, + 2580, + 2586, + 2579, + 2584, + 2510, + 2521, + 2545 ] } ], @@ -25552,7 +25573,7 @@ "sources": [ { "fileName": "types.ts", - "line": 873, + "line": 886, "character": 4 } ], @@ -25633,7 +25654,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1086, + "line": 1099, "character": 4 } ], @@ -25674,13 +25695,13 @@ "sources": [ { "fileName": "types.ts", - "line": 880, + "line": 893, "character": 4 } ], "type": { "type": "reference", - "id": 2636, + "id": 2639, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -25714,7 +25735,7 @@ "sources": [ { "fileName": "types.ts", - "line": 988, + "line": 1001, "character": 4 } ], @@ -25753,7 +25774,7 @@ "sources": [ { "fileName": "types.ts", - "line": 795, + "line": 808, "character": 4 } ], @@ -25792,7 +25813,7 @@ "sources": [ { "fileName": "types.ts", - "line": 779, + "line": 792, "character": 4 } ], @@ -25800,7 +25821,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -25838,7 +25859,7 @@ "sources": [ { "fileName": "types.ts", - "line": 944, + "line": 957, "character": 4 } ], @@ -25877,7 +25898,7 @@ "sources": [ { "fileName": "types.ts", - "line": 961, + "line": 974, "character": 4 } ], @@ -25915,7 +25936,7 @@ "sources": [ { "fileName": "types.ts", - "line": 972, + "line": 985, "character": 4 } ], @@ -25954,13 +25975,13 @@ "sources": [ { "fileName": "types.ts", - "line": 752, + "line": 765, "character": 4 } ], "type": { "type": "reference", - "id": 2595, + "id": 2598, "name": "FrameParams" }, "inheritedFrom": { @@ -25998,7 +26019,7 @@ "sources": [ { "fileName": "types.ts", - "line": 813, + "line": 826, "character": 4 } ], @@ -26006,7 +26027,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -26041,7 +26062,7 @@ "sources": [ { "fileName": "types.ts", - "line": 896, + "line": 909, "character": 4 } ], @@ -26080,7 +26101,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1022, + "line": 1035, "character": 4 } ], @@ -26119,7 +26140,7 @@ "sources": [ { "fileName": "types.ts", - "line": 849, + "line": 862, "character": 4 } ], @@ -26158,7 +26179,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1007, + "line": 1020, "character": 4 } ], @@ -26197,7 +26218,7 @@ "sources": [ { "fileName": "types.ts", - "line": 923, + "line": 936, "character": 4 } ], @@ -26235,7 +26256,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1058, + "line": 1071, "character": 4 } ], @@ -26278,7 +26299,7 @@ "sources": [ { "fileName": "types.ts", - "line": 834, + "line": 847, "character": 4 } ], @@ -26286,7 +26307,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -26410,7 +26431,7 @@ "sources": [ { "fileName": "types.ts", - "line": 873, + "line": 886, "character": 4 } ], @@ -26491,7 +26512,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1086, + "line": 1099, "character": 4 } ], @@ -26532,13 +26553,13 @@ "sources": [ { "fileName": "types.ts", - "line": 880, + "line": 893, "character": 4 } ], "type": { "type": "reference", - "id": 2636, + "id": 2639, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -26615,7 +26636,7 @@ "sources": [ { "fileName": "types.ts", - "line": 988, + "line": 1001, "character": 4 } ], @@ -26693,7 +26714,7 @@ "sources": [ { "fileName": "types.ts", - "line": 795, + "line": 808, "character": 4 } ], @@ -26732,7 +26753,7 @@ "sources": [ { "fileName": "types.ts", - "line": 779, + "line": 792, "character": 4 } ], @@ -26740,7 +26761,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -26778,7 +26799,7 @@ "sources": [ { "fileName": "types.ts", - "line": 944, + "line": 957, "character": 4 } ], @@ -26860,7 +26881,7 @@ "sources": [ { "fileName": "types.ts", - "line": 961, + "line": 974, "character": 4 } ], @@ -26976,7 +26997,7 @@ "sources": [ { "fileName": "types.ts", - "line": 972, + "line": 985, "character": 4 } ], @@ -27015,13 +27036,13 @@ "sources": [ { "fileName": "types.ts", - "line": 752, + "line": 765, "character": 4 } ], "type": { "type": "reference", - "id": 2595, + "id": 2598, "name": "FrameParams" }, "inheritedFrom": { @@ -27059,7 +27080,7 @@ "sources": [ { "fileName": "types.ts", - "line": 813, + "line": 826, "character": 4 } ], @@ -27067,7 +27088,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -27180,7 +27201,7 @@ "sources": [ { "fileName": "types.ts", - "line": 896, + "line": 909, "character": 4 } ], @@ -27219,7 +27240,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1022, + "line": 1035, "character": 4 } ], @@ -27258,7 +27279,7 @@ "sources": [ { "fileName": "types.ts", - "line": 849, + "line": 862, "character": 4 } ], @@ -27297,7 +27318,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1007, + "line": 1020, "character": 4 } ], @@ -27336,7 +27357,7 @@ "sources": [ { "fileName": "types.ts", - "line": 923, + "line": 936, "character": 4 } ], @@ -27426,7 +27447,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2819, + "id": 2822, "name": "RuntimeParameter" } }, @@ -27488,7 +27509,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1058, + "line": 1071, "character": 4 } ], @@ -27570,7 +27591,7 @@ "sources": [ { "fileName": "types.ts", - "line": 834, + "line": 847, "character": 4 } ], @@ -27578,7 +27599,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -27669,7 +27690,7 @@ ] }, { - "id": 2860, + "id": 2863, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -27684,7 +27705,7 @@ }, "children": [ { - "id": 2861, + "id": 2864, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -27694,21 +27715,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5808, + "line": 5878, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2862, + "id": 2865, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2863, + "id": 2866, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -27716,18 +27737,18 @@ "sources": [ { "fileName": "types.ts", - "line": 5809, + "line": 5879, "character": 8 } ], "type": { "type": "reference", - "id": 2857, + "id": 2860, "name": "VizPoint" } }, { - "id": 2864, + "id": 2867, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -27735,7 +27756,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5810, + "line": 5880, "character": 8 } ], @@ -27743,7 +27764,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2857, + "id": 2860, "name": "VizPoint" } } @@ -27754,8 +27775,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2863, - 2864 + 2866, + 2867 ] } ] @@ -27763,7 +27784,7 @@ } }, { - "id": 2865, + "id": 2868, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -27771,21 +27792,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5812, + "line": 5882, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2866, + "id": 2869, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2874, + "id": 2877, "name": "columns", "kind": 1024, "kindString": "Property", @@ -27793,7 +27814,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5820, + "line": 5890, "character": 8 } ], @@ -27806,7 +27827,7 @@ } }, { - "id": 2875, + "id": 2878, "name": "data", "kind": 1024, "kindString": "Property", @@ -27814,7 +27835,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5821, + "line": 5891, "character": 8 } ], @@ -27827,7 +27848,7 @@ } }, { - "id": 2868, + "id": 2871, "name": "id", "kind": 1024, "kindString": "Property", @@ -27835,7 +27856,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5814, + "line": 5884, "character": 8 } ], @@ -27845,7 +27866,7 @@ } }, { - "id": 2867, + "id": 2870, "name": "name", "kind": 1024, "kindString": "Property", @@ -27853,7 +27874,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5813, + "line": 5883, "character": 8 } ], @@ -27863,7 +27884,7 @@ } }, { - "id": 2869, + "id": 2872, "name": "sources", "kind": 1024, "kindString": "Property", @@ -27871,21 +27892,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5815, + "line": 5885, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2870, + "id": 2873, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2871, + "id": 2874, "name": "header", "kind": 1024, "kindString": "Property", @@ -27893,21 +27914,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5816, + "line": 5886, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2872, + "id": 2875, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2873, + "id": 2876, "name": "guid", "kind": 1024, "kindString": "Property", @@ -27915,7 +27936,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5817, + "line": 5887, "character": 16 } ], @@ -27930,7 +27951,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2873 + 2876 ] } ] @@ -27943,7 +27964,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2871 + 2874 ] } ] @@ -27956,23 +27977,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2874, - 2875, - 2868, - 2867, - 2869 + 2877, + 2878, + 2871, + 2870, + 2872 ] } ], "indexSignature": { - "id": 2876, + "id": 2879, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2877, + "id": 2880, "name": "key", "kind": 32768, "flags": {}, @@ -27991,7 +28012,7 @@ } }, { - "id": 2878, + "id": 2881, "name": "session", "kind": 1024, "kindString": "Property", @@ -27999,7 +28020,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5824, + "line": 5894, "character": 4 } ], @@ -28010,7 +28031,7 @@ } }, { - "id": 2879, + "id": 2882, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -28020,7 +28041,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5825, + "line": 5895, "character": 4 } ], @@ -28035,23 +28056,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2861, - 2865, - 2878, - 2879 + 2864, + 2868, + 2881, + 2882 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5807, + "line": 5877, "character": 17 } ] }, { - "id": 2658, + "id": 2661, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -28061,7 +28082,7 @@ }, "children": [ { - "id": 2712, + "id": 2715, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -28084,7 +28105,7 @@ } }, { - "id": 2711, + "id": 2714, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -28107,7 +28128,7 @@ } }, { - "id": 2681, + "id": 2684, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -28130,7 +28151,7 @@ } }, { - "id": 2682, + "id": 2685, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -28153,7 +28174,7 @@ } }, { - "id": 2684, + "id": 2687, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -28176,7 +28197,7 @@ } }, { - "id": 2683, + "id": 2686, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -28199,7 +28220,7 @@ } }, { - "id": 2663, + "id": 2666, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -28222,7 +28243,7 @@ } }, { - "id": 2724, + "id": 2727, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -28245,7 +28266,7 @@ } }, { - "id": 2725, + "id": 2728, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -28268,7 +28289,7 @@ } }, { - "id": 2722, + "id": 2725, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -28291,7 +28312,7 @@ } }, { - "id": 2723, + "id": 2726, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -28314,7 +28335,7 @@ } }, { - "id": 2686, + "id": 2689, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -28337,7 +28358,7 @@ } }, { - "id": 2691, + "id": 2694, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -28360,7 +28381,7 @@ } }, { - "id": 2688, + "id": 2691, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -28383,7 +28404,7 @@ } }, { - "id": 2690, + "id": 2693, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -28406,7 +28427,7 @@ } }, { - "id": 2689, + "id": 2692, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -28429,7 +28450,7 @@ } }, { - "id": 2687, + "id": 2690, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -28452,7 +28473,7 @@ } }, { - "id": 2696, + "id": 2699, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -28475,7 +28496,7 @@ } }, { - "id": 2693, + "id": 2696, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -28498,7 +28519,7 @@ } }, { - "id": 2695, + "id": 2698, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -28521,7 +28542,7 @@ } }, { - "id": 2694, + "id": 2697, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -28544,7 +28565,7 @@ } }, { - "id": 2692, + "id": 2695, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -28567,7 +28588,7 @@ } }, { - "id": 2700, + "id": 2703, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -28590,7 +28611,7 @@ } }, { - "id": 2699, + "id": 2702, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -28613,7 +28634,7 @@ } }, { - "id": 2698, + "id": 2701, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -28636,7 +28657,7 @@ } }, { - "id": 2697, + "id": 2700, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -28659,7 +28680,7 @@ } }, { - "id": 2685, + "id": 2688, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -28682,7 +28703,7 @@ } }, { - "id": 2818, + "id": 2821, "name": "--ts-var-cca-modal-summary-header-background", "kind": 1024, "kindString": "Property", @@ -28705,7 +28726,7 @@ } }, { - "id": 2813, + "id": 2816, "name": "--ts-var-change-analysis-insights-background", "kind": 1024, "kindString": "Property", @@ -28728,7 +28749,7 @@ } }, { - "id": 2808, + "id": 2811, "name": "--ts-var-chart-heatmap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28751,7 +28772,7 @@ } }, { - "id": 2807, + "id": 2810, "name": "--ts-var-chart-heatmap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28774,7 +28795,7 @@ } }, { - "id": 2810, + "id": 2813, "name": "--ts-var-chart-treemap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28797,7 +28818,7 @@ } }, { - "id": 2809, + "id": 2812, "name": "--ts-var-chart-treemap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28820,7 +28841,7 @@ } }, { - "id": 2747, + "id": 2750, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -28843,7 +28864,7 @@ } }, { - "id": 2750, + "id": 2753, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -28866,7 +28887,7 @@ } }, { - "id": 2745, + "id": 2748, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -28889,7 +28910,7 @@ } }, { - "id": 2748, + "id": 2751, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -28912,7 +28933,7 @@ } }, { - "id": 2749, + "id": 2752, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -28935,7 +28956,7 @@ } }, { - "id": 2744, + "id": 2747, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -28958,7 +28979,7 @@ } }, { - "id": 2746, + "id": 2749, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -28981,7 +29002,7 @@ } }, { - "id": 2717, + "id": 2720, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -29004,7 +29025,7 @@ } }, { - "id": 2716, + "id": 2719, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -29027,7 +29048,7 @@ } }, { - "id": 2719, + "id": 2722, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -29050,7 +29071,7 @@ } }, { - "id": 2718, + "id": 2721, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -29073,7 +29094,7 @@ } }, { - "id": 2715, + "id": 2718, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -29096,7 +29117,7 @@ } }, { - "id": 2713, + "id": 2716, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -29119,7 +29140,7 @@ } }, { - "id": 2714, + "id": 2717, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -29142,7 +29163,7 @@ } }, { - "id": 2720, + "id": 2723, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -29165,7 +29186,7 @@ } }, { - "id": 2721, + "id": 2724, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -29188,7 +29209,7 @@ } }, { - "id": 2732, + "id": 2735, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -29211,7 +29232,7 @@ } }, { - "id": 2733, + "id": 2736, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -29234,7 +29255,7 @@ } }, { - "id": 2736, + "id": 2739, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -29257,7 +29278,7 @@ } }, { - "id": 2734, + "id": 2737, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -29280,7 +29301,7 @@ } }, { - "id": 2735, + "id": 2738, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -29303,7 +29324,7 @@ } }, { - "id": 2743, + "id": 2746, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -29326,7 +29347,7 @@ } }, { - "id": 2742, + "id": 2745, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -29349,7 +29370,7 @@ } }, { - "id": 2741, + "id": 2744, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -29372,7 +29393,7 @@ } }, { - "id": 2740, + "id": 2743, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -29395,7 +29416,7 @@ } }, { - "id": 2806, + "id": 2809, "name": "--ts-var-kpi-analyze-text-color", "kind": 1024, "kindString": "Property", @@ -29418,7 +29439,7 @@ } }, { - "id": 2805, + "id": 2808, "name": "--ts-var-kpi-comparison-color", "kind": 1024, "kindString": "Property", @@ -29441,7 +29462,7 @@ } }, { - "id": 2804, + "id": 2807, "name": "--ts-var-kpi-hero-color", "kind": 1024, "kindString": "Property", @@ -29464,7 +29485,7 @@ } }, { - "id": 2812, + "id": 2815, "name": "--ts-var-kpi-negative-change-color", "kind": 1024, "kindString": "Property", @@ -29487,7 +29508,7 @@ } }, { - "id": 2811, + "id": 2814, "name": "--ts-var-kpi-positive-change-color", "kind": 1024, "kindString": "Property", @@ -29510,7 +29531,7 @@ } }, { - "id": 2738, + "id": 2741, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -29533,7 +29554,7 @@ } }, { - "id": 2737, + "id": 2740, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -29556,7 +29577,7 @@ } }, { - "id": 2765, + "id": 2768, "name": "--ts-var-liveboard-answer-viz-padding", "kind": 1024, "kindString": "Property", @@ -29579,7 +29600,7 @@ } }, { - "id": 2778, + "id": 2781, "name": "--ts-var-liveboard-chip--active-background", "kind": 1024, "kindString": "Property", @@ -29603,7 +29624,7 @@ } }, { - "id": 2777, + "id": 2780, "name": "--ts-var-liveboard-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -29627,7 +29648,7 @@ } }, { - "id": 2775, + "id": 2778, "name": "--ts-var-liveboard-chip-background", "kind": 1024, "kindString": "Property", @@ -29651,7 +29672,7 @@ } }, { - "id": 2776, + "id": 2779, "name": "--ts-var-liveboard-chip-color", "kind": 1024, "kindString": "Property", @@ -29675,7 +29696,7 @@ } }, { - "id": 2783, + "id": 2786, "name": "--ts-var-liveboard-cross-filter-layout-background", "kind": 1024, "kindString": "Property", @@ -29698,7 +29719,7 @@ } }, { - "id": 2781, + "id": 2784, "name": "--ts-var-liveboard-dual-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -29721,7 +29742,7 @@ } }, { - "id": 2780, + "id": 2783, "name": "--ts-var-liveboard-edit-bar-background", "kind": 1024, "kindString": "Property", @@ -29744,7 +29765,7 @@ } }, { - "id": 2766, + "id": 2769, "name": "--ts-var-liveboard-group-background", "kind": 1024, "kindString": "Property", @@ -29768,7 +29789,7 @@ } }, { - "id": 2767, + "id": 2770, "name": "--ts-var-liveboard-group-border-color", "kind": 1024, "kindString": "Property", @@ -29792,7 +29813,7 @@ } }, { - "id": 2771, + "id": 2774, "name": "--ts-var-liveboard-group-description-font-color", "kind": 1024, "kindString": "Property", @@ -29816,7 +29837,7 @@ } }, { - "id": 2759, + "id": 2762, "name": "--ts-var-liveboard-group-padding", "kind": 1024, "kindString": "Property", @@ -29840,7 +29861,7 @@ } }, { - "id": 2774, + "id": 2777, "name": "--ts-var-liveboard-group-tile-background", "kind": 1024, "kindString": "Property", @@ -29864,7 +29885,7 @@ } }, { - "id": 2773, + "id": 2776, "name": "--ts-var-liveboard-group-tile-description-font-color", "kind": 1024, "kindString": "Property", @@ -29888,7 +29909,7 @@ } }, { - "id": 2764, + "id": 2767, "name": "--ts-var-liveboard-group-tile-padding", "kind": 1024, "kindString": "Property", @@ -29912,7 +29933,7 @@ } }, { - "id": 2772, + "id": 2775, "name": "--ts-var-liveboard-group-tile-title-font-color", "kind": 1024, "kindString": "Property", @@ -29936,7 +29957,7 @@ } }, { - "id": 2762, + "id": 2765, "name": "--ts-var-liveboard-group-tile-title-font-size", "kind": 1024, "kindString": "Property", @@ -29960,7 +29981,7 @@ } }, { - "id": 2763, + "id": 2766, "name": "--ts-var-liveboard-group-tile-title-font-weight", "kind": 1024, "kindString": "Property", @@ -29984,7 +30005,7 @@ } }, { - "id": 2770, + "id": 2773, "name": "--ts-var-liveboard-group-title-font-color", "kind": 1024, "kindString": "Property", @@ -30008,7 +30029,7 @@ } }, { - "id": 2760, + "id": 2763, "name": "--ts-var-liveboard-group-title-font-size", "kind": 1024, "kindString": "Property", @@ -30032,7 +30053,7 @@ } }, { - "id": 2761, + "id": 2764, "name": "--ts-var-liveboard-group-title-font-weight", "kind": 1024, "kindString": "Property", @@ -30056,7 +30077,7 @@ } }, { - "id": 2797, + "id": 2800, "name": "--ts-var-liveboard-header-action-button-active-color", "kind": 1024, "kindString": "Property", @@ -30079,7 +30100,7 @@ } }, { - "id": 2794, + "id": 2797, "name": "--ts-var-liveboard-header-action-button-background", "kind": 1024, "kindString": "Property", @@ -30102,7 +30123,7 @@ } }, { - "id": 2795, + "id": 2798, "name": "--ts-var-liveboard-header-action-button-font-color", "kind": 1024, "kindString": "Property", @@ -30125,7 +30146,7 @@ } }, { - "id": 2796, + "id": 2799, "name": "--ts-var-liveboard-header-action-button-hover-color", "kind": 1024, "kindString": "Property", @@ -30148,7 +30169,7 @@ } }, { - "id": 2752, + "id": 2755, "name": "--ts-var-liveboard-header-background", "kind": 1024, "kindString": "Property", @@ -30171,7 +30192,7 @@ } }, { - "id": 2803, + "id": 2806, "name": "--ts-var-liveboard-header-badge-active-color", "kind": 1024, "kindString": "Property", @@ -30194,7 +30215,7 @@ } }, { - "id": 2798, + "id": 2801, "name": "--ts-var-liveboard-header-badge-background", "kind": 1024, "kindString": "Property", @@ -30217,7 +30238,7 @@ } }, { - "id": 2799, + "id": 2802, "name": "--ts-var-liveboard-header-badge-font-color", "kind": 1024, "kindString": "Property", @@ -30240,7 +30261,7 @@ } }, { - "id": 2802, + "id": 2805, "name": "--ts-var-liveboard-header-badge-hover-color", "kind": 1024, "kindString": "Property", @@ -30263,7 +30284,7 @@ } }, { - "id": 2800, + "id": 2803, "name": "--ts-var-liveboard-header-badge-modified-background", "kind": 1024, "kindString": "Property", @@ -30286,7 +30307,7 @@ } }, { - "id": 2801, + "id": 2804, "name": "--ts-var-liveboard-header-badge-modified-font-color", "kind": 1024, "kindString": "Property", @@ -30309,7 +30330,7 @@ } }, { - "id": 2753, + "id": 2756, "name": "--ts-var-liveboard-header-font-color", "kind": 1024, "kindString": "Property", @@ -30332,7 +30353,7 @@ } }, { - "id": 2751, + "id": 2754, "name": "--ts-var-liveboard-layout-background", "kind": 1024, "kindString": "Property", @@ -30355,7 +30376,7 @@ } }, { - "id": 2769, + "id": 2772, "name": "--ts-var-liveboard-notetitle-body-font-color", "kind": 1024, "kindString": "Property", @@ -30378,7 +30399,7 @@ } }, { - "id": 2768, + "id": 2771, "name": "--ts-var-liveboard-notetitle-heading-font-color", "kind": 1024, "kindString": "Property", @@ -30401,7 +30422,7 @@ } }, { - "id": 2782, + "id": 2785, "name": "--ts-var-liveboard-single-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -30424,7 +30445,7 @@ } }, { - "id": 2784, + "id": 2787, "name": "--ts-var-liveboard-tab-active-border-color", "kind": 1024, "kindString": "Property", @@ -30447,7 +30468,7 @@ } }, { - "id": 2785, + "id": 2788, "name": "--ts-var-liveboard-tab-hover-color", "kind": 1024, "kindString": "Property", @@ -30470,7 +30491,7 @@ } }, { - "id": 2755, + "id": 2758, "name": "--ts-var-liveboard-tile-background", "kind": 1024, "kindString": "Property", @@ -30493,7 +30514,7 @@ } }, { - "id": 2754, + "id": 2757, "name": "--ts-var-liveboard-tile-border-color", "kind": 1024, "kindString": "Property", @@ -30516,7 +30537,7 @@ } }, { - "id": 2756, + "id": 2759, "name": "--ts-var-liveboard-tile-border-radius", "kind": 1024, "kindString": "Property", @@ -30539,7 +30560,7 @@ } }, { - "id": 2757, + "id": 2760, "name": "--ts-var-liveboard-tile-padding", "kind": 1024, "kindString": "Property", @@ -30562,7 +30583,7 @@ } }, { - "id": 2758, + "id": 2761, "name": "--ts-var-liveboard-tile-table-header-background", "kind": 1024, "kindString": "Property", @@ -30585,7 +30606,7 @@ } }, { - "id": 2786, + "id": 2789, "name": "--ts-var-liveboard-tile-title-fontsize", "kind": 1024, "kindString": "Property", @@ -30608,7 +30629,7 @@ } }, { - "id": 2787, + "id": 2790, "name": "--ts-var-liveboard-tile-title-fontweight", "kind": 1024, "kindString": "Property", @@ -30631,7 +30652,7 @@ } }, { - "id": 2730, + "id": 2733, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -30654,7 +30675,7 @@ } }, { - "id": 2727, + "id": 2730, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -30677,7 +30698,7 @@ } }, { - "id": 2726, + "id": 2729, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -30700,7 +30721,7 @@ } }, { - "id": 2728, + "id": 2731, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -30723,7 +30744,7 @@ } }, { - "id": 2731, + "id": 2734, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -30746,7 +30767,7 @@ } }, { - "id": 2729, + "id": 2732, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -30769,7 +30790,7 @@ } }, { - "id": 2664, + "id": 2667, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -30792,7 +30813,7 @@ } }, { - "id": 2665, + "id": 2668, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -30815,7 +30836,7 @@ } }, { - "id": 2792, + "id": 2795, "name": "--ts-var-parameter-chip-active-background", "kind": 1024, "kindString": "Property", @@ -30838,7 +30859,7 @@ } }, { - "id": 2793, + "id": 2796, "name": "--ts-var-parameter-chip-active-text-color", "kind": 1024, "kindString": "Property", @@ -30861,7 +30882,7 @@ } }, { - "id": 2788, + "id": 2791, "name": "--ts-var-parameter-chip-background", "kind": 1024, "kindString": "Property", @@ -30884,7 +30905,7 @@ } }, { - "id": 2790, + "id": 2793, "name": "--ts-var-parameter-chip-hover-background", "kind": 1024, "kindString": "Property", @@ -30907,7 +30928,7 @@ } }, { - "id": 2791, + "id": 2794, "name": "--ts-var-parameter-chip-hover-text-color", "kind": 1024, "kindString": "Property", @@ -30930,7 +30951,7 @@ } }, { - "id": 2789, + "id": 2792, "name": "--ts-var-parameter-chip-text-color", "kind": 1024, "kindString": "Property", @@ -30953,7 +30974,7 @@ } }, { - "id": 2659, + "id": 2662, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -30976,7 +30997,7 @@ } }, { - "id": 2660, + "id": 2663, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -30999,7 +31020,7 @@ } }, { - "id": 2661, + "id": 2664, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -31022,7 +31043,7 @@ } }, { - "id": 2662, + "id": 2665, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -31045,7 +31066,7 @@ } }, { - "id": 2673, + "id": 2676, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -31068,7 +31089,7 @@ } }, { - "id": 2677, + "id": 2680, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -31091,7 +31112,7 @@ } }, { - "id": 2678, + "id": 2681, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -31114,7 +31135,7 @@ } }, { - "id": 2676, + "id": 2679, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -31137,7 +31158,7 @@ } }, { - "id": 2672, + "id": 2675, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -31160,7 +31181,7 @@ } }, { - "id": 2675, + "id": 2678, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -31183,7 +31204,7 @@ } }, { - "id": 2669, + "id": 2672, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -31206,7 +31227,7 @@ } }, { - "id": 2670, + "id": 2673, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -31229,7 +31250,7 @@ } }, { - "id": 2671, + "id": 2674, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -31252,7 +31273,7 @@ } }, { - "id": 2666, + "id": 2669, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -31275,7 +31296,7 @@ } }, { - "id": 2667, + "id": 2670, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -31298,7 +31319,7 @@ } }, { - "id": 2668, + "id": 2671, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -31321,7 +31342,7 @@ } }, { - "id": 2674, + "id": 2677, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -31344,7 +31365,7 @@ } }, { - "id": 2739, + "id": 2742, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -31367,7 +31388,7 @@ } }, { - "id": 2779, + "id": 2782, "name": "--ts-var-side-panel-width", "kind": 1024, "kindString": "Property", @@ -31390,7 +31411,7 @@ } }, { - "id": 2817, + "id": 2820, "name": "--ts-var-spotiq-analyze-crosscorrelation-card-background", "kind": 1024, "kindString": "Property", @@ -31413,7 +31434,7 @@ } }, { - "id": 2814, + "id": 2817, "name": "--ts-var-spotiq-analyze-forecasting-card-background", "kind": 1024, "kindString": "Property", @@ -31436,7 +31457,7 @@ } }, { - "id": 2815, + "id": 2818, "name": "--ts-var-spotiq-analyze-outlier-card-background", "kind": 1024, "kindString": "Property", @@ -31459,7 +31480,7 @@ } }, { - "id": 2816, + "id": 2819, "name": "--ts-var-spotiq-analyze-trend-card-background", "kind": 1024, "kindString": "Property", @@ -31482,7 +31503,7 @@ } }, { - "id": 2679, + "id": 2682, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -31505,7 +31526,7 @@ } }, { - "id": 2680, + "id": 2683, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -31528,7 +31549,7 @@ } }, { - "id": 2709, + "id": 2712, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -31551,7 +31572,7 @@ } }, { - "id": 2707, + "id": 2710, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -31574,7 +31595,7 @@ } }, { - "id": 2708, + "id": 2711, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -31597,7 +31618,7 @@ } }, { - "id": 2704, + "id": 2707, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -31620,7 +31641,7 @@ } }, { - "id": 2705, + "id": 2708, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -31643,7 +31664,7 @@ } }, { - "id": 2706, + "id": 2709, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -31666,7 +31687,7 @@ } }, { - "id": 2710, + "id": 2713, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -31689,7 +31710,7 @@ } }, { - "id": 2701, + "id": 2704, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -31712,7 +31733,7 @@ } }, { - "id": 2702, + "id": 2705, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -31735,7 +31756,7 @@ } }, { - "id": 2703, + "id": 2706, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -31763,166 +31784,166 @@ "title": "Properties", "kind": 1024, "children": [ - 2712, - 2711, - 2681, - 2682, + 2715, + 2714, 2684, - 2683, - 2663, - 2724, - 2725, - 2722, - 2723, + 2685, + 2687, 2686, - 2691, - 2688, - 2690, + 2666, + 2727, + 2728, + 2725, + 2726, 2689, - 2687, - 2696, - 2693, - 2695, 2694, + 2691, + 2693, 2692, - 2700, + 2690, 2699, + 2696, 2698, 2697, - 2685, - 2818, - 2813, - 2808, - 2807, + 2695, + 2703, + 2702, + 2701, + 2700, + 2688, + 2821, + 2816, + 2811, 2810, - 2809, - 2747, + 2813, + 2812, 2750, - 2745, + 2753, 2748, + 2751, + 2752, + 2747, 2749, - 2744, - 2746, - 2717, - 2716, - 2719, - 2718, - 2715, - 2713, - 2714, 2720, + 2719, + 2722, 2721, - 2732, - 2733, - 2736, - 2734, + 2718, + 2716, + 2717, + 2723, + 2724, 2735, + 2736, + 2739, + 2737, + 2738, + 2746, + 2745, + 2744, 2743, - 2742, + 2809, + 2808, + 2807, + 2815, + 2814, 2741, 2740, - 2806, - 2805, - 2804, - 2812, - 2811, - 2738, - 2737, - 2765, + 2768, + 2781, + 2780, 2778, + 2779, + 2786, + 2784, + 2783, + 2769, + 2770, + 2774, + 2762, 2777, - 2775, 2776, - 2783, - 2781, - 2780, - 2766, 2767, - 2771, - 2759, - 2774, + 2775, + 2765, + 2766, 2773, - 2764, - 2772, - 2762, 2763, - 2770, - 2760, - 2761, + 2764, + 2800, 2797, - 2794, - 2795, - 2796, - 2752, - 2803, 2798, 2799, - 2802, - 2800, - 2801, - 2753, - 2751, - 2769, - 2768, - 2782, - 2784, - 2785, 2755, - 2754, + 2806, + 2801, + 2802, + 2805, + 2803, + 2804, 2756, - 2757, - 2758, - 2786, + 2754, + 2772, + 2771, + 2785, 2787, - 2730, - 2727, - 2726, - 2728, - 2731, - 2729, - 2664, - 2665, - 2792, - 2793, 2788, + 2758, + 2757, + 2759, + 2760, + 2761, + 2789, 2790, + 2733, + 2730, + 2729, + 2731, + 2734, + 2732, + 2667, + 2668, + 2795, + 2796, 2791, - 2789, - 2659, - 2660, - 2661, + 2793, + 2794, + 2792, 2662, - 2673, - 2677, - 2678, + 2663, + 2664, + 2665, 2676, - 2672, + 2680, + 2681, + 2679, 2675, + 2678, + 2672, + 2673, + 2674, 2669, 2670, 2671, - 2666, - 2667, - 2668, - 2674, - 2739, - 2779, + 2677, + 2742, + 2782, + 2820, 2817, - 2814, - 2815, - 2816, - 2679, - 2680, - 2709, + 2818, + 2819, + 2682, + 2683, + 2712, + 2710, + 2711, 2707, 2708, + 2709, + 2713, 2704, 2705, - 2706, - 2710, - 2701, - 2702, - 2703 + 2706 ] } ], @@ -31935,7 +31956,7 @@ ] }, { - "id": 2646, + "id": 2649, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -31945,7 +31966,7 @@ }, "children": [ { - "id": 2648, + "id": 2651, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -31961,12 +31982,12 @@ ], "type": { "type": "reference", - "id": 2649, + "id": 2652, "name": "customCssInterface" } }, { - "id": 2647, + "id": 2650, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -31991,8 +32012,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2648, - 2647 + 2651, + 2650 ] } ], @@ -32005,7 +32026,7 @@ ] }, { - "id": 2636, + "id": 2639, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -32021,7 +32042,7 @@ }, "children": [ { - "id": 2638, + "id": 2641, "name": "content", "kind": 1024, "kindString": "Property", @@ -32038,14 +32059,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2639, + "id": 2642, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2641, + "id": 2644, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -32075,7 +32096,7 @@ } }, { - "id": 2642, + "id": 2645, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -32095,7 +32116,7 @@ } }, { - "id": 2640, + "id": 2643, "name": "strings", "kind": 1024, "kindString": "Property", @@ -32138,21 +32159,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2641, - 2642, - 2640 + 2644, + 2645, + 2643 ] } ], "indexSignature": { - "id": 2643, + "id": 2646, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2644, + "id": 2647, "name": "key", "kind": 32768, "flags": {}, @@ -32171,7 +32192,7 @@ } }, { - "id": 2645, + "id": 2648, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -32191,7 +32212,7 @@ } }, { - "id": 2637, + "id": 2640, "name": "style", "kind": 1024, "kindString": "Property", @@ -32207,7 +32228,7 @@ ], "type": { "type": "reference", - "id": 2646, + "id": 2649, "name": "CustomStyles" } } @@ -32217,9 +32238,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2638, - 2645, - 2637 + 2641, + 2648, + 2640 ] } ], @@ -32232,7 +32253,7 @@ ] }, { - "id": 2238, + "id": 2239, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -32248,7 +32269,7 @@ }, "children": [ { - "id": 2280, + "id": 2281, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -32278,20 +32299,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2281, + "id": 2282, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2282, + "id": 2283, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2283, + "id": 2284, "name": "key", "kind": 32768, "flags": {}, @@ -32323,7 +32344,7 @@ } }, { - "id": 2241, + "id": 2242, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -32346,7 +32367,7 @@ } }, { - "id": 2262, + "id": 2263, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -32388,7 +32409,7 @@ } }, { - "id": 2264, + "id": 2265, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -32417,7 +32438,7 @@ } }, { - "id": 2240, + "id": 2241, "name": "authType", "kind": 1024, "kindString": "Property", @@ -32439,7 +32460,7 @@ } }, { - "id": 2253, + "id": 2254, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -32468,7 +32489,7 @@ } }, { - "id": 2265, + "id": 2266, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -32501,7 +32522,7 @@ } }, { - "id": 2256, + "id": 2257, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -32530,7 +32551,40 @@ } }, { - "id": 2277, + "id": 2290, + "name": "cleanupTimeout", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The timeout for the cleanup to be completed before destroying the embed.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.41.0 | ThoughtSpot: 10.12.0.cl" + }, + { + "tag": "default", + "text": "5000\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 707, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2278, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -32559,7 +32613,7 @@ } }, { - "id": 2287, + "id": 2288, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -32595,7 +32649,7 @@ } }, { - "id": 2284, + "id": 2285, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -32638,7 +32692,7 @@ } }, { - "id": 2261, + "id": 2262, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -32663,12 +32717,12 @@ ], "type": { "type": "reference", - "id": 2636, + "id": 2639, "name": "CustomisationsInterface" } }, { - "id": 2275, + "id": 2276, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -32697,7 +32751,7 @@ } }, { - "id": 2258, + "id": 2259, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -32727,7 +32781,7 @@ } }, { - "id": 2286, + "id": 2287, "name": "disableFullscreenPresentation", "kind": 1024, "kindString": "Property", @@ -32764,7 +32818,7 @@ } }, { - "id": 2279, + "id": 2280, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -32793,7 +32847,7 @@ } }, { - "id": 2254, + "id": 2255, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -32826,7 +32880,7 @@ } }, { - "id": 2285, + "id": 2286, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -32846,7 +32900,7 @@ } }, { - "id": 2274, + "id": 2275, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -32875,7 +32929,7 @@ } }, { - "id": 2252, + "id": 2253, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -32904,7 +32958,7 @@ } }, { - "id": 2247, + "id": 2248, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -32938,7 +32992,7 @@ } }, { - "id": 2273, + "id": 2274, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -32971,12 +33025,12 @@ ], "type": { "type": "reference", - "id": 2822, + "id": 2825, "name": "LogLevel" } }, { - "id": 2255, + "id": 2256, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -33005,7 +33059,7 @@ } }, { - "id": 2246, + "id": 2247, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -33038,7 +33092,7 @@ } }, { - "id": 2276, + "id": 2277, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -33067,7 +33121,7 @@ } }, { - "id": 2245, + "id": 2246, "name": "password", "kind": 1024, "kindString": "Property", @@ -33091,7 +33145,7 @@ } }, { - "id": 2271, + "id": 2272, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -33120,7 +33174,7 @@ } }, { - "id": 2257, + "id": 2258, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -33153,7 +33207,7 @@ } }, { - "id": 2248, + "id": 2249, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -33183,7 +33237,7 @@ } }, { - "id": 2250, + "id": 2251, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -33212,7 +33266,7 @@ } }, { - "id": 2272, + "id": 2273, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -33241,7 +33295,7 @@ } }, { - "id": 2251, + "id": 2252, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -33270,7 +33324,7 @@ } }, { - "id": 2260, + "id": 2261, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -33293,7 +33347,7 @@ } }, { - "id": 2259, + "id": 2260, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -33322,7 +33376,7 @@ } }, { - "id": 2239, + "id": 2240, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -33343,7 +33397,7 @@ } }, { - "id": 2263, + "id": 2264, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -33366,7 +33420,7 @@ } }, { - "id": 2244, + "id": 2245, "name": "username", "kind": 1024, "kindString": "Property", @@ -33389,7 +33443,40 @@ } }, { - "id": 2242, + "id": 2289, + "name": "waitForCleanupOnDestroy", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Wait for the cleanup to be completed before destroying the embed.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.41.0 | ThoughtSpot: 10.12.0.cl" + }, + { + "tag": "default", + "text": "false\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 701, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2243, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -33405,7 +33492,7 @@ ], "signatures": [ { - "id": 2243, + "id": 2244, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -33433,50 +33520,52 @@ "title": "Properties", "kind": 1024, "children": [ - 2280, + 2281, + 2242, + 2263, + 2265, 2241, + 2254, + 2266, + 2257, + 2290, + 2278, + 2288, + 2285, 2262, - 2264, - 2240, - 2253, - 2265, - 2256, - 2277, + 2276, + 2259, 2287, - 2284, - 2261, - 2275, - 2258, + 2280, + 2255, 2286, - 2279, - 2254, - 2285, + 2275, + 2253, + 2248, 2274, - 2252, + 2256, 2247, - 2273, - 2255, + 2277, 2246, - 2276, - 2245, - 2271, - 2257, - 2248, - 2250, 2272, + 2258, + 2249, 2251, + 2273, + 2252, + 2261, 2260, - 2259, - 2239, - 2263, - 2244 + 2240, + 2264, + 2245, + 2289 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2242 + 2243 ] } ], @@ -33489,7 +33578,7 @@ ] }, { - "id": 2595, + "id": 2598, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -33505,7 +33594,7 @@ }, "children": [ { - "id": 2597, + "id": 2600, "name": "height", "kind": 1024, "kindString": "Property", @@ -33518,7 +33607,7 @@ "sources": [ { "fileName": "types.ts", - "line": 712, + "line": 725, "character": 4 } ], @@ -33537,7 +33626,7 @@ } }, { - "id": 2598, + "id": 2601, "name": "loading", "kind": 1024, "kindString": "Property", @@ -33550,7 +33639,7 @@ "sources": [ { "fileName": "types.ts", - "line": 718, + "line": 731, "character": 4 } ], @@ -33573,7 +33662,7 @@ } }, { - "id": 2596, + "id": 2599, "name": "width", "kind": 1024, "kindString": "Property", @@ -33586,7 +33675,7 @@ "sources": [ { "fileName": "types.ts", - "line": 708, + "line": 721, "character": 4 } ], @@ -33610,21 +33699,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2597, - 2598, - 2596 + 2600, + 2601, + 2599 ] } ], "sources": [ { "fileName": "types.ts", - "line": 704, + "line": 717, "character": 17 } ], "indexSignature": { - "id": 2599, + "id": 2602, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -33634,7 +33723,7 @@ }, "parameters": [ { - "id": 2600, + "id": 2603, "name": "key", "kind": 32768, "flags": {}, @@ -33668,7 +33757,7 @@ } }, { - "id": 2384, + "id": 2387, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -33684,7 +33773,7 @@ }, "children": [ { - "id": 2395, + "id": 2398, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -33718,7 +33807,7 @@ } }, { - "id": 2417, + "id": 2420, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -33742,27 +33831,27 @@ "sources": [ { "fileName": "types.ts", - "line": 873, + "line": 886, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2418, + "id": 2421, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2419, + "id": 2422, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2420, + "id": 2423, "name": "key", "kind": 32768, "flags": {}, @@ -33798,7 +33887,7 @@ } }, { - "id": 2441, + "id": 2444, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -33826,7 +33915,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1279, + "line": 1292, "character": 4 } ], @@ -33840,7 +33929,7 @@ } }, { - "id": 2438, + "id": 2441, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -33864,13 +33953,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1243, + "line": 1256, "character": 4 } ], "type": { "type": "reference", - "id": 2234, + "id": 2235, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -33879,7 +33968,7 @@ } }, { - "id": 2454, + "id": 2457, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -33903,7 +33992,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1499, + "line": 1512, "character": 4 } ], @@ -33917,7 +34006,7 @@ } }, { - "id": 2435, + "id": 2438, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -33941,7 +34030,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1086, + "line": 1099, "character": 4 } ], @@ -33958,7 +34047,7 @@ } }, { - "id": 2421, + "id": 2424, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -33981,13 +34070,13 @@ "sources": [ { "fileName": "types.ts", - "line": 880, + "line": 893, "character": 4 } ], "type": { "type": "reference", - "id": 2636, + "id": 2639, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -33996,7 +34085,7 @@ } }, { - "id": 2442, + "id": 2445, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -34024,7 +34113,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1295, + "line": 1308, "character": 4 } ], @@ -34038,7 +34127,7 @@ } }, { - "id": 2386, + "id": 2389, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -34076,7 +34165,7 @@ } }, { - "id": 2429, + "id": 2432, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -34100,7 +34189,7 @@ "sources": [ { "fileName": "types.ts", - "line": 988, + "line": 1001, "character": 4 } ], @@ -34114,7 +34203,7 @@ } }, { - "id": 2413, + "id": 2416, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -34138,7 +34227,7 @@ "sources": [ { "fileName": "types.ts", - "line": 795, + "line": 808, "character": 4 } ], @@ -34152,7 +34241,7 @@ } }, { - "id": 2412, + "id": 2415, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -34176,7 +34265,7 @@ "sources": [ { "fileName": "types.ts", - "line": 779, + "line": 792, "character": 4 } ], @@ -34184,7 +34273,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -34194,7 +34283,7 @@ } }, { - "id": 2425, + "id": 2428, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -34221,7 +34310,7 @@ "sources": [ { "fileName": "types.ts", - "line": 944, + "line": 957, "character": 4 } ], @@ -34235,7 +34324,7 @@ } }, { - "id": 2448, + "id": 2451, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -34263,7 +34352,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1397, + "line": 1410, "character": 4 } ], @@ -34277,7 +34366,7 @@ } }, { - "id": 2453, + "id": 2456, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -34305,7 +34394,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1483, + "line": 1496, "character": 4 } ], @@ -34319,7 +34408,7 @@ } }, { - "id": 2443, + "id": 2446, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -34347,7 +34436,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1311, + "line": 1324, "character": 4 } ], @@ -34361,7 +34450,7 @@ } }, { - "id": 2426, + "id": 2429, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -34385,7 +34474,7 @@ "sources": [ { "fileName": "types.ts", - "line": 961, + "line": 974, "character": 4 } ], @@ -34399,7 +34488,7 @@ } }, { - "id": 2387, + "id": 2390, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -34435,7 +34524,7 @@ } }, { - "id": 2439, + "id": 2442, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -34459,7 +34548,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1254, + "line": 1267, "character": 4 } ], @@ -34473,7 +34562,7 @@ } }, { - "id": 2440, + "id": 2443, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -34497,7 +34586,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1264, + "line": 1277, "character": 4 } ], @@ -34511,7 +34600,7 @@ } }, { - "id": 2428, + "id": 2431, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -34534,7 +34623,7 @@ "sources": [ { "fileName": "types.ts", - "line": 972, + "line": 985, "character": 4 } ], @@ -34548,7 +34637,7 @@ } }, { - "id": 2409, + "id": 2412, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -34572,13 +34661,13 @@ "sources": [ { "fileName": "types.ts", - "line": 752, + "line": 765, "character": 4 } ], "type": { "type": "reference", - "id": 2595, + "id": 2598, "name": "FrameParams" }, "inheritedFrom": { @@ -34587,7 +34676,7 @@ } }, { - "id": 2385, + "id": 2388, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -34621,7 +34710,7 @@ } }, { - "id": 2414, + "id": 2417, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -34649,7 +34738,7 @@ "sources": [ { "fileName": "types.ts", - "line": 813, + "line": 826, "character": 4 } ], @@ -34657,7 +34746,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -34667,7 +34756,7 @@ } }, { - "id": 2401, + "id": 2404, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -34704,7 +34793,7 @@ } }, { - "id": 2451, + "id": 2454, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -34732,7 +34821,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1450, + "line": 1463, "character": 4 } ], @@ -34746,7 +34835,7 @@ } }, { - "id": 2444, + "id": 2447, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -34774,7 +34863,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1333, + "line": 1346, "character": 4 } ], @@ -34788,7 +34877,7 @@ } }, { - "id": 2396, + "id": 2399, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -34822,7 +34911,7 @@ } }, { - "id": 2422, + "id": 2425, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -34846,7 +34935,7 @@ "sources": [ { "fileName": "types.ts", - "line": 896, + "line": 909, "character": 4 } ], @@ -34860,7 +34949,7 @@ } }, { - "id": 2456, + "id": 2459, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -34884,7 +34973,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1532, + "line": 1545, "character": 4 } ], @@ -34898,7 +34987,7 @@ } }, { - "id": 2458, + "id": 2461, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -34922,7 +35011,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1563, + "line": 1576, "character": 4 } ], @@ -34936,7 +35025,7 @@ } }, { - "id": 2457, + "id": 2460, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -34960,7 +35049,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1547, + "line": 1560, "character": 4 } ], @@ -34974,7 +35063,7 @@ } }, { - "id": 2449, + "id": 2452, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -35002,7 +35091,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1414, + "line": 1427, "character": 4 } ], @@ -35016,7 +35105,7 @@ } }, { - "id": 2447, + "id": 2450, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -35040,7 +35129,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1380, + "line": 1393, "character": 4 } ], @@ -35054,7 +35143,7 @@ } }, { - "id": 2403, + "id": 2406, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -35088,7 +35177,7 @@ } }, { - "id": 2404, + "id": 2407, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -35122,7 +35211,7 @@ } }, { - "id": 2405, + "id": 2408, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -35159,7 +35248,7 @@ } }, { - "id": 2406, + "id": 2409, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -35193,7 +35282,7 @@ } }, { - "id": 2431, + "id": 2434, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -35217,7 +35306,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1022, + "line": 1035, "character": 4 } ], @@ -35231,7 +35320,7 @@ } }, { - "id": 2388, + "id": 2391, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -35265,7 +35354,7 @@ } }, { - "id": 2394, + "id": 2397, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -35299,7 +35388,7 @@ } }, { - "id": 2455, + "id": 2458, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -35323,7 +35412,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1514, + "line": 1527, "character": 4 } ], @@ -35337,7 +35426,7 @@ } }, { - "id": 2416, + "id": 2419, "name": "locale", "kind": 1024, "kindString": "Property", @@ -35361,7 +35450,7 @@ "sources": [ { "fileName": "types.ts", - "line": 849, + "line": 862, "character": 4 } ], @@ -35375,7 +35464,7 @@ } }, { - "id": 2430, + "id": 2433, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -35399,7 +35488,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1007, + "line": 1020, "character": 4 } ], @@ -35413,7 +35502,7 @@ } }, { - "id": 2424, + "id": 2427, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -35437,7 +35526,7 @@ "sources": [ { "fileName": "types.ts", - "line": 923, + "line": 936, "character": 4 } ], @@ -35451,7 +35540,7 @@ } }, { - "id": 2391, + "id": 2394, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -35485,7 +35574,7 @@ } }, { - "id": 2432, + "id": 2435, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -35509,7 +35598,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1038, + "line": 1051, "character": 4 } ], @@ -35523,7 +35612,7 @@ } }, { - "id": 2436, + "id": 2439, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -35547,7 +35636,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1207, + "line": 1220, "character": 4 } ], @@ -35565,7 +35654,7 @@ } }, { - "id": 2437, + "id": 2440, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -35589,7 +35678,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1228, + "line": 1241, "character": 4 } ], @@ -35597,7 +35686,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2819, + "id": 2822, "name": "RuntimeParameter" } }, @@ -35607,7 +35696,7 @@ } }, { - "id": 2434, + "id": 2437, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -35630,7 +35719,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1058, + "line": 1071, "character": 4 } ], @@ -35644,7 +35733,7 @@ } }, { - "id": 2446, + "id": 2449, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -35672,7 +35761,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1365, + "line": 1378, "character": 4 } ], @@ -35686,7 +35775,7 @@ } }, { - "id": 2452, + "id": 2455, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -35714,7 +35803,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1467, + "line": 1480, "character": 4 } ], @@ -35728,7 +35817,7 @@ } }, { - "id": 2445, + "id": 2448, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -35756,7 +35845,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1349, + "line": 1362, "character": 4 } ], @@ -35770,7 +35859,7 @@ } }, { - "id": 2450, + "id": 2453, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -35798,7 +35887,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1431, + "line": 1444, "character": 4 } ], @@ -35812,7 +35901,7 @@ } }, { - "id": 2397, + "id": 2400, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -35846,7 +35935,7 @@ } }, { - "id": 2407, + "id": 2410, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -35879,7 +35968,7 @@ } }, { - "id": 2415, + "id": 2418, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -35907,7 +35996,7 @@ "sources": [ { "fileName": "types.ts", - "line": 834, + "line": 847, "character": 4 } ], @@ -35915,7 +36004,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -35925,7 +36014,7 @@ } }, { - "id": 2402, + "id": 2405, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -35962,7 +36051,7 @@ } }, { - "id": 2392, + "id": 2395, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -35999,7 +36088,7 @@ } }, { - "id": 2390, + "id": 2393, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -36038,66 +36127,66 @@ "title": "Properties", "kind": 1024, "children": [ - 2395, - 2417, + 2398, + 2420, + 2444, 2441, + 2457, 2438, - 2454, - 2435, - 2421, - 2442, - 2386, - 2429, - 2413, - 2412, - 2425, - 2448, - 2453, - 2443, - 2426, - 2387, - 2439, - 2440, + 2424, + 2445, + 2389, + 2432, + 2416, + 2415, 2428, - 2409, - 2385, - 2414, - 2401, 2451, - 2444, - 2396, - 2422, 2456, - 2458, - 2457, - 2449, - 2447, - 2403, - 2404, - 2405, - 2406, + 2446, + 2429, + 2390, + 2442, + 2443, 2431, + 2412, 2388, - 2394, - 2455, - 2416, - 2430, - 2424, - 2391, - 2432, - 2436, - 2437, - 2434, - 2446, + 2417, + 2404, + 2454, + 2447, + 2399, + 2425, + 2459, + 2461, + 2460, 2452, - 2445, 2450, - 2397, + 2406, 2407, - 2415, - 2402, - 2392, - 2390 + 2408, + 2409, + 2434, + 2391, + 2397, + 2458, + 2419, + 2433, + 2427, + 2394, + 2435, + 2439, + 2440, + 2437, + 2449, + 2455, + 2448, + 2453, + 2400, + 2410, + 2418, + 2405, + 2395, + 2393 ] } ], @@ -36145,7 +36234,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1763, + "line": 1776, "character": 4 } ], @@ -36166,7 +36255,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1767, + "line": 1780, "character": 4 } ], @@ -36188,7 +36277,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1773, + "line": 1786, "character": 4 } ], @@ -36232,13 +36321,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1759, + "line": 1772, "character": 17 } ] }, { - "id": 2819, + "id": 2822, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -36248,7 +36337,7 @@ }, "children": [ { - "id": 2820, + "id": 2823, "name": "name", "kind": 1024, "kindString": "Property", @@ -36259,7 +36348,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1783, + "line": 1796, "character": 4 } ], @@ -36269,7 +36358,7 @@ } }, { - "id": 2821, + "id": 2824, "name": "value", "kind": 1024, "kindString": "Property", @@ -36280,7 +36369,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1787, + "line": 1800, "character": 4 } ], @@ -36308,21 +36397,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2820, - 2821 + 2823, + 2824 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1779, + "line": 1792, "character": 17 } ] }, { - "id": 2459, + "id": 2462, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -36342,7 +36431,7 @@ }, "children": [ { - "id": 2488, + "id": 2491, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -36366,27 +36455,27 @@ "sources": [ { "fileName": "types.ts", - "line": 873, + "line": 886, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2489, + "id": 2492, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2490, + "id": 2493, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2491, + "id": 2494, "name": "key", "kind": 32768, "flags": {}, @@ -36422,7 +36511,7 @@ } }, { - "id": 2476, + "id": 2479, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -36450,7 +36539,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1279, + "line": 1292, "character": 4 } ], @@ -36464,7 +36553,7 @@ } }, { - "id": 2473, + "id": 2476, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -36488,13 +36577,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1243, + "line": 1256, "character": 4 } ], "type": { "type": "reference", - "id": 2234, + "id": 2235, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -36503,7 +36592,7 @@ } }, { - "id": 2505, + "id": 2508, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -36527,7 +36616,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1086, + "line": 1099, "character": 4 } ], @@ -36544,7 +36633,7 @@ } }, { - "id": 2492, + "id": 2495, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -36567,13 +36656,13 @@ "sources": [ { "fileName": "types.ts", - "line": 880, + "line": 893, "character": 4 } ], "type": { "type": "reference", - "id": 2636, + "id": 2639, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -36582,7 +36671,7 @@ } }, { - "id": 2477, + "id": 2480, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -36610,7 +36699,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1295, + "line": 1308, "character": 4 } ], @@ -36624,7 +36713,7 @@ } }, { - "id": 2469, + "id": 2472, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -36647,7 +36736,7 @@ } }, { - "id": 2500, + "id": 2503, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -36671,7 +36760,7 @@ "sources": [ { "fileName": "types.ts", - "line": 988, + "line": 1001, "character": 4 } ], @@ -36685,7 +36774,7 @@ } }, { - "id": 2464, + "id": 2467, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -36714,7 +36803,7 @@ } }, { - "id": 2484, + "id": 2487, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -36738,7 +36827,7 @@ "sources": [ { "fileName": "types.ts", - "line": 795, + "line": 808, "character": 4 } ], @@ -36752,7 +36841,7 @@ } }, { - "id": 2483, + "id": 2486, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -36776,7 +36865,7 @@ "sources": [ { "fileName": "types.ts", - "line": 779, + "line": 792, "character": 4 } ], @@ -36784,7 +36873,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -36794,7 +36883,7 @@ } }, { - "id": 2496, + "id": 2499, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -36821,7 +36910,7 @@ "sources": [ { "fileName": "types.ts", - "line": 944, + "line": 957, "character": 4 } ], @@ -36835,7 +36924,7 @@ } }, { - "id": 2478, + "id": 2481, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -36863,7 +36952,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1311, + "line": 1324, "character": 4 } ], @@ -36877,7 +36966,7 @@ } }, { - "id": 2497, + "id": 2500, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -36901,7 +36990,7 @@ "sources": [ { "fileName": "types.ts", - "line": 961, + "line": 974, "character": 4 } ], @@ -36915,7 +37004,7 @@ } }, { - "id": 2474, + "id": 2477, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -36939,7 +37028,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1254, + "line": 1267, "character": 4 } ], @@ -36953,7 +37042,7 @@ } }, { - "id": 2475, + "id": 2478, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -36977,7 +37066,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1264, + "line": 1277, "character": 4 } ], @@ -36991,7 +37080,7 @@ } }, { - "id": 2499, + "id": 2502, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -37014,7 +37103,7 @@ "sources": [ { "fileName": "types.ts", - "line": 972, + "line": 985, "character": 4 } ], @@ -37028,7 +37117,7 @@ } }, { - "id": 2480, + "id": 2483, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -37052,13 +37141,13 @@ "sources": [ { "fileName": "types.ts", - "line": 752, + "line": 765, "character": 4 } ], "type": { "type": "reference", - "id": 2595, + "id": 2598, "name": "FrameParams" }, "inheritedFrom": { @@ -37067,7 +37156,7 @@ } }, { - "id": 2485, + "id": 2488, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -37095,7 +37184,7 @@ "sources": [ { "fileName": "types.ts", - "line": 813, + "line": 826, "character": 4 } ], @@ -37103,7 +37192,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -37113,7 +37202,7 @@ } }, { - "id": 2466, + "id": 2469, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -37142,7 +37231,7 @@ } }, { - "id": 2463, + "id": 2466, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -37171,7 +37260,7 @@ } }, { - "id": 2468, + "id": 2471, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -37205,7 +37294,7 @@ } }, { - "id": 2462, + "id": 2465, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -37238,7 +37327,7 @@ } }, { - "id": 2465, + "id": 2468, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -37267,7 +37356,7 @@ } }, { - "id": 2493, + "id": 2496, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -37291,7 +37380,7 @@ "sources": [ { "fileName": "types.ts", - "line": 896, + "line": 909, "character": 4 } ], @@ -37305,7 +37394,7 @@ } }, { - "id": 2502, + "id": 2505, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -37329,7 +37418,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1022, + "line": 1035, "character": 4 } ], @@ -37343,7 +37432,7 @@ } }, { - "id": 2487, + "id": 2490, "name": "locale", "kind": 1024, "kindString": "Property", @@ -37367,7 +37456,7 @@ "sources": [ { "fileName": "types.ts", - "line": 849, + "line": 862, "character": 4 } ], @@ -37381,7 +37470,7 @@ } }, { - "id": 2501, + "id": 2504, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -37405,7 +37494,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1007, + "line": 1020, "character": 4 } ], @@ -37419,7 +37508,7 @@ } }, { - "id": 2495, + "id": 2498, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -37443,7 +37532,7 @@ "sources": [ { "fileName": "types.ts", - "line": 923, + "line": 936, "character": 4 } ], @@ -37457,7 +37546,7 @@ } }, { - "id": 2471, + "id": 2474, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -37481,7 +37570,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1207, + "line": 1220, "character": 4 } ], @@ -37499,7 +37588,7 @@ } }, { - "id": 2472, + "id": 2475, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -37523,7 +37612,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1228, + "line": 1241, "character": 4 } ], @@ -37531,7 +37620,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2819, + "id": 2822, "name": "RuntimeParameter" } }, @@ -37541,7 +37630,7 @@ } }, { - "id": 2470, + "id": 2473, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -37575,7 +37664,7 @@ } }, { - "id": 2504, + "id": 2507, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -37598,7 +37687,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1058, + "line": 1071, "character": 4 } ], @@ -37612,7 +37701,7 @@ } }, { - "id": 2460, + "id": 2463, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -37641,7 +37730,7 @@ } }, { - "id": 2467, + "id": 2470, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -37670,7 +37759,7 @@ } }, { - "id": 2486, + "id": 2489, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -37698,7 +37787,7 @@ "sources": [ { "fileName": "types.ts", - "line": 834, + "line": 847, "character": 4 } ], @@ -37706,7 +37795,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -37721,42 +37810,42 @@ "title": "Properties", "kind": 1024, "children": [ - 2488, + 2491, + 2479, 2476, - 2473, - 2505, - 2492, - 2477, - 2469, + 2508, + 2495, + 2480, + 2472, + 2503, + 2467, + 2487, + 2486, + 2499, + 2481, 2500, - 2464, - 2484, + 2477, + 2478, + 2502, 2483, + 2488, + 2469, + 2466, + 2471, + 2465, + 2468, 2496, - 2478, - 2497, + 2505, + 2490, + 2504, + 2498, 2474, 2475, - 2499, - 2480, - 2485, - 2466, + 2473, + 2507, 2463, - 2468, - 2462, - 2465, - 2493, - 2502, - 2487, - 2501, - 2495, - 2471, - 2472, 2470, - 2504, - 2460, - 2467, - 2486 + 2489 ] } ], @@ -37810,7 +37899,7 @@ ] }, { - "id": 2342, + "id": 2345, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -37825,7 +37914,7 @@ }, "children": [ { - "id": 2357, + "id": 2360, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -37849,27 +37938,27 @@ "sources": [ { "fileName": "types.ts", - "line": 873, + "line": 886, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2358, + "id": 2361, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2359, + "id": 2362, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2360, + "id": 2363, "name": "key", "kind": 32768, "flags": {}, @@ -37905,7 +37994,7 @@ } }, { - "id": 2381, + "id": 2384, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -37933,7 +38022,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1279, + "line": 1292, "character": 4 } ], @@ -37947,7 +38036,7 @@ } }, { - "id": 2378, + "id": 2381, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -37971,13 +38060,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1243, + "line": 1256, "character": 4 } ], "type": { "type": "reference", - "id": 2234, + "id": 2235, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -37986,7 +38075,7 @@ } }, { - "id": 2375, + "id": 2378, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -38010,7 +38099,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1086, + "line": 1099, "character": 4 } ], @@ -38027,7 +38116,7 @@ } }, { - "id": 2361, + "id": 2364, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -38050,13 +38139,13 @@ "sources": [ { "fileName": "types.ts", - "line": 880, + "line": 893, "character": 4 } ], "type": { "type": "reference", - "id": 2636, + "id": 2639, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -38065,7 +38154,7 @@ } }, { - "id": 2382, + "id": 2385, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -38093,7 +38182,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1295, + "line": 1308, "character": 4 } ], @@ -38107,7 +38196,7 @@ } }, { - "id": 2344, + "id": 2347, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -38141,7 +38230,7 @@ } }, { - "id": 2343, + "id": 2346, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -38182,7 +38271,7 @@ } }, { - "id": 2369, + "id": 2372, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -38206,7 +38295,7 @@ "sources": [ { "fileName": "types.ts", - "line": 988, + "line": 1001, "character": 4 } ], @@ -38220,7 +38309,7 @@ } }, { - "id": 2353, + "id": 2356, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -38244,7 +38333,7 @@ "sources": [ { "fileName": "types.ts", - "line": 795, + "line": 808, "character": 4 } ], @@ -38258,7 +38347,7 @@ } }, { - "id": 2352, + "id": 2355, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -38282,7 +38371,7 @@ "sources": [ { "fileName": "types.ts", - "line": 779, + "line": 792, "character": 4 } ], @@ -38290,7 +38379,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -38300,7 +38389,7 @@ } }, { - "id": 2365, + "id": 2368, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -38327,7 +38416,7 @@ "sources": [ { "fileName": "types.ts", - "line": 944, + "line": 957, "character": 4 } ], @@ -38341,7 +38430,7 @@ } }, { - "id": 2383, + "id": 2386, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -38369,7 +38458,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1311, + "line": 1324, "character": 4 } ], @@ -38383,7 +38472,7 @@ } }, { - "id": 2366, + "id": 2369, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -38407,7 +38496,7 @@ "sources": [ { "fileName": "types.ts", - "line": 961, + "line": 974, "character": 4 } ], @@ -38421,7 +38510,7 @@ } }, { - "id": 2379, + "id": 2382, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -38445,7 +38534,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1254, + "line": 1267, "character": 4 } ], @@ -38459,7 +38548,7 @@ } }, { - "id": 2380, + "id": 2383, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -38483,7 +38572,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1264, + "line": 1277, "character": 4 } ], @@ -38497,7 +38586,7 @@ } }, { - "id": 2347, + "id": 2350, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -38531,7 +38620,7 @@ } }, { - "id": 2368, + "id": 2371, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -38554,7 +38643,7 @@ "sources": [ { "fileName": "types.ts", - "line": 972, + "line": 985, "character": 4 } ], @@ -38568,7 +38657,7 @@ } }, { - "id": 2349, + "id": 2352, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -38592,13 +38681,13 @@ "sources": [ { "fileName": "types.ts", - "line": 752, + "line": 765, "character": 4 } ], "type": { "type": "reference", - "id": 2595, + "id": 2598, "name": "FrameParams" }, "inheritedFrom": { @@ -38607,7 +38696,7 @@ } }, { - "id": 2354, + "id": 2357, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -38635,7 +38724,7 @@ "sources": [ { "fileName": "types.ts", - "line": 813, + "line": 826, "character": 4 } ], @@ -38643,7 +38732,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -38653,7 +38742,7 @@ } }, { - "id": 2362, + "id": 2365, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -38677,7 +38766,7 @@ "sources": [ { "fileName": "types.ts", - "line": 896, + "line": 909, "character": 4 } ], @@ -38691,7 +38780,7 @@ } }, { - "id": 2371, + "id": 2374, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -38715,7 +38804,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1022, + "line": 1035, "character": 4 } ], @@ -38729,7 +38818,7 @@ } }, { - "id": 2356, + "id": 2359, "name": "locale", "kind": 1024, "kindString": "Property", @@ -38753,7 +38842,7 @@ "sources": [ { "fileName": "types.ts", - "line": 849, + "line": 862, "character": 4 } ], @@ -38767,7 +38856,7 @@ } }, { - "id": 2370, + "id": 2373, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -38791,7 +38880,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1007, + "line": 1020, "character": 4 } ], @@ -38805,7 +38894,7 @@ } }, { - "id": 2364, + "id": 2367, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -38829,7 +38918,7 @@ "sources": [ { "fileName": "types.ts", - "line": 923, + "line": 936, "character": 4 } ], @@ -38843,7 +38932,7 @@ } }, { - "id": 2372, + "id": 2375, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -38867,7 +38956,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1038, + "line": 1051, "character": 4 } ], @@ -38881,7 +38970,7 @@ } }, { - "id": 2376, + "id": 2379, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -38905,7 +38994,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1207, + "line": 1220, "character": 4 } ], @@ -38923,7 +39012,7 @@ } }, { - "id": 2377, + "id": 2380, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -38947,7 +39036,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1228, + "line": 1241, "character": 4 } ], @@ -38955,7 +39044,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2819, + "id": 2822, "name": "RuntimeParameter" } }, @@ -38965,7 +39054,7 @@ } }, { - "id": 2346, + "id": 2349, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -38999,7 +39088,7 @@ } }, { - "id": 2374, + "id": 2377, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -39022,7 +39111,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1058, + "line": 1071, "character": 4 } ], @@ -39036,7 +39125,7 @@ } }, { - "id": 2345, + "id": 2348, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -39070,7 +39159,7 @@ } }, { - "id": 2355, + "id": 2358, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -39098,7 +39187,7 @@ "sources": [ { "fileName": "types.ts", - "line": 834, + "line": 847, "character": 4 } ], @@ -39106,7 +39195,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -39121,38 +39210,38 @@ "title": "Properties", "kind": 1024, "children": [ - 2357, + 2360, + 2384, 2381, 2378, - 2375, - 2361, - 2382, - 2344, - 2343, + 2364, + 2385, + 2347, + 2346, + 2372, + 2356, + 2355, + 2368, + 2386, 2369, - 2353, + 2382, + 2383, + 2350, + 2371, 2352, + 2357, 2365, - 2383, - 2366, + 2374, + 2359, + 2373, + 2367, + 2375, 2379, 2380, - 2347, - 2368, 2349, - 2354, - 2362, - 2371, - 2356, - 2370, - 2364, - 2372, - 2376, 2377, - 2346, - 2374, - 2345, - 2355 + 2348, + 2358 ] } ], @@ -39175,7 +39264,7 @@ ] }, { - "id": 2288, + "id": 2291, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -39191,7 +39280,7 @@ }, "children": [ { - "id": 2324, + "id": 2327, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -39215,27 +39304,27 @@ "sources": [ { "fileName": "types.ts", - "line": 873, + "line": 886, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2325, + "id": 2328, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2326, + "id": 2329, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2327, + "id": 2330, "name": "key", "kind": 32768, "flags": {}, @@ -39271,7 +39360,7 @@ } }, { - "id": 2300, + "id": 2303, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -39305,7 +39394,7 @@ } }, { - "id": 2290, + "id": 2293, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -39339,7 +39428,7 @@ } }, { - "id": 2289, + "id": 2292, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -39373,7 +39462,7 @@ } }, { - "id": 2312, + "id": 2315, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -39401,7 +39490,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1279, + "line": 1292, "character": 4 } ], @@ -39415,7 +39504,7 @@ } }, { - "id": 2303, + "id": 2306, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -39452,7 +39541,7 @@ } }, { - "id": 2309, + "id": 2312, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -39476,13 +39565,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1243, + "line": 1256, "character": 4 } ], "type": { "type": "reference", - "id": 2234, + "id": 2235, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -39491,7 +39580,7 @@ } }, { - "id": 2341, + "id": 2344, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -39515,7 +39604,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1086, + "line": 1099, "character": 4 } ], @@ -39532,7 +39621,7 @@ } }, { - "id": 2328, + "id": 2331, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -39555,13 +39644,13 @@ "sources": [ { "fileName": "types.ts", - "line": 880, + "line": 893, "character": 4 } ], "type": { "type": "reference", - "id": 2636, + "id": 2639, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -39570,7 +39659,7 @@ } }, { - "id": 2305, + "id": 2308, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -39608,7 +39697,7 @@ } }, { - "id": 2313, + "id": 2316, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -39636,7 +39725,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1295, + "line": 1308, "character": 4 } ], @@ -39650,7 +39739,7 @@ } }, { - "id": 2296, + "id": 2299, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -39684,7 +39773,7 @@ } }, { - "id": 2295, + "id": 2298, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -39720,7 +39809,7 @@ } }, { - "id": 2336, + "id": 2339, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -39744,7 +39833,7 @@ "sources": [ { "fileName": "types.ts", - "line": 988, + "line": 1001, "character": 4 } ], @@ -39758,7 +39847,7 @@ } }, { - "id": 2320, + "id": 2323, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -39782,7 +39871,7 @@ "sources": [ { "fileName": "types.ts", - "line": 795, + "line": 808, "character": 4 } ], @@ -39796,7 +39885,7 @@ } }, { - "id": 2319, + "id": 2322, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -39820,7 +39909,7 @@ "sources": [ { "fileName": "types.ts", - "line": 779, + "line": 792, "character": 4 } ], @@ -39828,7 +39917,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -39838,7 +39927,7 @@ } }, { - "id": 2332, + "id": 2335, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -39865,7 +39954,7 @@ "sources": [ { "fileName": "types.ts", - "line": 944, + "line": 957, "character": 4 } ], @@ -39879,7 +39968,7 @@ } }, { - "id": 2314, + "id": 2317, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -39907,7 +39996,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1311, + "line": 1324, "character": 4 } ], @@ -39921,7 +40010,7 @@ } }, { - "id": 2293, + "id": 2296, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -39955,7 +40044,7 @@ } }, { - "id": 2333, + "id": 2336, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -39979,7 +40068,7 @@ "sources": [ { "fileName": "types.ts", - "line": 961, + "line": 974, "character": 4 } ], @@ -39993,7 +40082,7 @@ } }, { - "id": 2310, + "id": 2313, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -40017,7 +40106,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1254, + "line": 1267, "character": 4 } ], @@ -40031,7 +40120,7 @@ } }, { - "id": 2311, + "id": 2314, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -40055,7 +40144,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1264, + "line": 1277, "character": 4 } ], @@ -40069,7 +40158,7 @@ } }, { - "id": 2299, + "id": 2302, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -40103,7 +40192,7 @@ } }, { - "id": 2335, + "id": 2338, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -40126,7 +40215,7 @@ "sources": [ { "fileName": "types.ts", - "line": 972, + "line": 985, "character": 4 } ], @@ -40140,7 +40229,7 @@ } }, { - "id": 2306, + "id": 2309, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -40178,7 +40267,7 @@ } }, { - "id": 2294, + "id": 2297, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -40212,7 +40301,7 @@ } }, { - "id": 2316, + "id": 2319, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -40236,13 +40325,13 @@ "sources": [ { "fileName": "types.ts", - "line": 752, + "line": 765, "character": 4 } ], "type": { "type": "reference", - "id": 2595, + "id": 2598, "name": "FrameParams" }, "inheritedFrom": { @@ -40251,7 +40340,7 @@ } }, { - "id": 2321, + "id": 2324, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -40279,7 +40368,7 @@ "sources": [ { "fileName": "types.ts", - "line": 813, + "line": 826, "character": 4 } ], @@ -40287,7 +40376,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -40297,7 +40386,7 @@ } }, { - "id": 2291, + "id": 2294, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -40331,7 +40420,7 @@ } }, { - "id": 2292, + "id": 2295, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -40365,7 +40454,7 @@ } }, { - "id": 2301, + "id": 2304, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -40399,7 +40488,7 @@ } }, { - "id": 2329, + "id": 2332, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -40423,7 +40512,7 @@ "sources": [ { "fileName": "types.ts", - "line": 896, + "line": 909, "character": 4 } ], @@ -40437,7 +40526,7 @@ } }, { - "id": 2304, + "id": 2307, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -40467,7 +40556,7 @@ } }, { - "id": 2338, + "id": 2341, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -40491,7 +40580,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1022, + "line": 1035, "character": 4 } ], @@ -40505,7 +40594,7 @@ } }, { - "id": 2323, + "id": 2326, "name": "locale", "kind": 1024, "kindString": "Property", @@ -40529,7 +40618,7 @@ "sources": [ { "fileName": "types.ts", - "line": 849, + "line": 862, "character": 4 } ], @@ -40543,7 +40632,7 @@ } }, { - "id": 2337, + "id": 2340, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -40567,7 +40656,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1007, + "line": 1020, "character": 4 } ], @@ -40581,7 +40670,7 @@ } }, { - "id": 2331, + "id": 2334, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -40605,7 +40694,7 @@ "sources": [ { "fileName": "types.ts", - "line": 923, + "line": 936, "character": 4 } ], @@ -40619,7 +40708,7 @@ } }, { - "id": 2307, + "id": 2310, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -40643,7 +40732,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1207, + "line": 1220, "character": 4 } ], @@ -40661,7 +40750,7 @@ } }, { - "id": 2308, + "id": 2311, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -40685,7 +40774,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1228, + "line": 1241, "character": 4 } ], @@ -40693,7 +40782,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2819, + "id": 2822, "name": "RuntimeParameter" } }, @@ -40703,7 +40792,7 @@ } }, { - "id": 2298, + "id": 2301, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -40733,7 +40822,7 @@ } }, { - "id": 2297, + "id": 2300, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -40762,7 +40851,7 @@ } }, { - "id": 2340, + "id": 2343, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -40785,7 +40874,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1058, + "line": 1071, "character": 4 } ], @@ -40799,7 +40888,7 @@ } }, { - "id": 2302, + "id": 2305, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -40829,7 +40918,7 @@ } }, { - "id": 2322, + "id": 2325, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -40857,7 +40946,7 @@ "sources": [ { "fileName": "types.ts", - "line": 834, + "line": 847, "character": 4 } ], @@ -40865,7 +40954,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -40880,50 +40969,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2324, - 2300, - 2290, - 2289, - 2312, + 2327, 2303, - 2309, - 2341, - 2328, - 2305, - 2313, - 2296, - 2295, - 2336, - 2320, - 2319, - 2332, - 2314, 2293, - 2333, - 2310, - 2311, - 2299, - 2335, - 2306, - 2294, - 2316, - 2321, - 2291, 2292, - 2301, - 2329, - 2304, - 2338, - 2323, - 2337, + 2315, + 2306, + 2312, + 2344, 2331, - 2307, 2308, + 2316, + 2299, 2298, + 2339, + 2323, + 2322, + 2335, + 2317, + 2296, + 2336, + 2313, + 2314, + 2302, + 2338, + 2309, 2297, + 2319, + 2324, + 2294, + 2295, + 2304, + 2332, + 2307, + 2341, + 2326, 2340, - 2302, - 2322 + 2334, + 2310, + 2311, + 2301, + 2300, + 2343, + 2305, + 2325 ] } ], @@ -41131,7 +41220,7 @@ "sources": [ { "fileName": "types.ts", - "line": 873, + "line": 886, "character": 4 } ], @@ -41211,7 +41300,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1086, + "line": 1099, "character": 4 } ], @@ -41251,13 +41340,13 @@ "sources": [ { "fileName": "types.ts", - "line": 880, + "line": 893, "character": 4 } ], "type": { "type": "reference", - "id": 2636, + "id": 2639, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -41290,7 +41379,7 @@ "sources": [ { "fileName": "types.ts", - "line": 988, + "line": 1001, "character": 4 } ], @@ -41328,7 +41417,7 @@ "sources": [ { "fileName": "types.ts", - "line": 795, + "line": 808, "character": 4 } ], @@ -41366,7 +41455,7 @@ "sources": [ { "fileName": "types.ts", - "line": 779, + "line": 792, "character": 4 } ], @@ -41374,7 +41463,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -41411,7 +41500,7 @@ "sources": [ { "fileName": "types.ts", - "line": 944, + "line": 957, "character": 4 } ], @@ -41449,7 +41538,7 @@ "sources": [ { "fileName": "types.ts", - "line": 961, + "line": 974, "character": 4 } ], @@ -41486,7 +41575,7 @@ "sources": [ { "fileName": "types.ts", - "line": 972, + "line": 985, "character": 4 } ], @@ -41524,13 +41613,13 @@ "sources": [ { "fileName": "types.ts", - "line": 752, + "line": 765, "character": 4 } ], "type": { "type": "reference", - "id": 2595, + "id": 2598, "name": "FrameParams" }, "inheritedFrom": { @@ -41567,7 +41656,7 @@ "sources": [ { "fileName": "types.ts", - "line": 813, + "line": 826, "character": 4 } ], @@ -41575,7 +41664,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -41609,7 +41698,7 @@ "sources": [ { "fileName": "types.ts", - "line": 896, + "line": 909, "character": 4 } ], @@ -41647,7 +41736,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1022, + "line": 1035, "character": 4 } ], @@ -41685,7 +41774,7 @@ "sources": [ { "fileName": "types.ts", - "line": 849, + "line": 862, "character": 4 } ], @@ -41723,7 +41812,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1007, + "line": 1020, "character": 4 } ], @@ -41761,7 +41850,7 @@ "sources": [ { "fileName": "types.ts", - "line": 923, + "line": 936, "character": 4 } ], @@ -41798,7 +41887,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1058, + "line": 1071, "character": 4 } ], @@ -41840,7 +41929,7 @@ "sources": [ { "fileName": "types.ts", - "line": 834, + "line": 847, "character": 4 } ], @@ -41848,7 +41937,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -41978,7 +42067,7 @@ "sources": [ { "fileName": "types.ts", - "line": 873, + "line": 886, "character": 4 } ], @@ -42058,7 +42147,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1086, + "line": 1099, "character": 4 } ], @@ -42098,13 +42187,13 @@ "sources": [ { "fileName": "types.ts", - "line": 880, + "line": 893, "character": 4 } ], "type": { "type": "reference", - "id": 2636, + "id": 2639, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -42175,7 +42264,7 @@ "sources": [ { "fileName": "types.ts", - "line": 988, + "line": 1001, "character": 4 } ], @@ -42247,7 +42336,7 @@ "sources": [ { "fileName": "types.ts", - "line": 795, + "line": 808, "character": 4 } ], @@ -42285,7 +42374,7 @@ "sources": [ { "fileName": "types.ts", - "line": 779, + "line": 792, "character": 4 } ], @@ -42293,7 +42382,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -42330,7 +42419,7 @@ "sources": [ { "fileName": "types.ts", - "line": 944, + "line": 957, "character": 4 } ], @@ -42406,7 +42495,7 @@ "sources": [ { "fileName": "types.ts", - "line": 961, + "line": 974, "character": 4 } ], @@ -42511,7 +42600,7 @@ "sources": [ { "fileName": "types.ts", - "line": 972, + "line": 985, "character": 4 } ], @@ -42549,13 +42638,13 @@ "sources": [ { "fileName": "types.ts", - "line": 752, + "line": 765, "character": 4 } ], "type": { "type": "reference", - "id": 2595, + "id": 2598, "name": "FrameParams" }, "inheritedFrom": { @@ -42592,7 +42681,7 @@ "sources": [ { "fileName": "types.ts", - "line": 813, + "line": 826, "character": 4 } ], @@ -42600,7 +42689,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -42702,7 +42791,7 @@ "sources": [ { "fileName": "types.ts", - "line": 896, + "line": 909, "character": 4 } ], @@ -42740,7 +42829,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1022, + "line": 1035, "character": 4 } ], @@ -42778,7 +42867,7 @@ "sources": [ { "fileName": "types.ts", - "line": 849, + "line": 862, "character": 4 } ], @@ -42816,7 +42905,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1007, + "line": 1020, "character": 4 } ], @@ -42854,7 +42943,7 @@ "sources": [ { "fileName": "types.ts", - "line": 923, + "line": 936, "character": 4 } ], @@ -42938,7 +43027,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2819, + "id": 2822, "name": "RuntimeParameter" } } @@ -42990,7 +43079,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1058, + "line": 1071, "character": 4 } ], @@ -43066,7 +43155,7 @@ "sources": [ { "fileName": "types.ts", - "line": 834, + "line": 847, "character": 4 } ], @@ -43074,7 +43163,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2097, "name": "Action" } }, @@ -43237,14 +43326,14 @@ ] }, { - "id": 2857, + "id": 2860, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2858, + "id": 2861, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -43252,7 +43341,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5800, + "line": 5870, "character": 4 } ], @@ -43265,7 +43354,7 @@ } }, { - "id": 2859, + "id": 2862, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -43273,7 +43362,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5801, + "line": 5871, "character": 4 } ], @@ -43291,21 +43380,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2858, - 2859 + 2861, + 2862 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5799, + "line": 5869, "character": 17 } ] }, { - "id": 2649, + "id": 2652, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -43315,7 +43404,7 @@ }, "children": [ { - "id": 2651, + "id": 2654, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -43345,20 +43434,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2652, + "id": 2655, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2653, + "id": 2656, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2654, + "id": 2657, "name": "selector", "kind": 32768, "flags": {}, @@ -43371,7 +43460,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2655, + "id": 2658, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43384,14 +43473,14 @@ } ], "indexSignature": { - "id": 2656, + "id": 2659, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2657, + "id": 2660, "name": "declaration", "kind": 32768, "flags": {}, @@ -43413,7 +43502,7 @@ } }, { - "id": 2650, + "id": 2653, "name": "variables", "kind": 1024, "kindString": "Property", @@ -43432,7 +43521,7 @@ ], "type": { "type": "reference", - "id": 2658, + "id": 2661, "name": "CustomCssVariables" } } @@ -43442,8 +43531,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2651, - 2650 + 2654, + 2653 ] } ], @@ -43473,7 +43562,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 49, + "line": 51, "character": 4 } ], @@ -43493,7 +43582,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 48, + "line": 50, "character": 4 } ], @@ -43524,7 +43613,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 47, + "line": 49, "character": 4 } ], @@ -43551,7 +43640,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 46, + "line": 48, "character": 17 } ] @@ -43574,7 +43663,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 59, + "line": 61, "character": 4 } ], @@ -43603,7 +43692,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 57, + "line": 59, "character": 4 } ], @@ -43623,7 +43712,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 58, + "line": 60, "character": 4 } ], @@ -43641,7 +43730,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 53, + "line": 55, "character": 4 } ], @@ -43665,7 +43754,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 54, + "line": 56, "character": 8 } ], @@ -43685,7 +43774,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 55, + "line": 57, "character": 8 } ], @@ -43742,13 +43831,13 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 52, + "line": 54, "character": 17 } ] }, { - "id": 2619, + "id": 2622, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -43775,7 +43864,7 @@ } }, { - "id": 2623, + "id": 2626, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -43783,14 +43872,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1596, + "line": 1609, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2624, + "id": 2627, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43807,13 +43896,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1596, + "line": 1609, "character": 30 } ], "signatures": [ { - "id": 2625, + "id": 2628, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43823,19 +43912,19 @@ }, "parameters": [ { - "id": 2626, + "id": 2629, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2631, + "id": 2634, "name": "MessagePayload" } }, { - "id": 2627, + "id": 2630, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -43845,7 +43934,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2628, + "id": 2631, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43853,13 +43942,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1603, + "line": 1616, "character": 16 } ], "signatures": [ { - "id": 2629, + "id": 2632, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43869,7 +43958,7 @@ }, "parameters": [ { - "id": 2630, + "id": 2633, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -43900,7 +43989,7 @@ } }, { - "id": 2620, + "id": 2623, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -43917,21 +44006,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1585, + "line": 1598, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2621, + "id": 2624, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2622, + "id": 2625, "name": "start", "kind": 1024, "kindString": "Property", @@ -43944,7 +44033,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1590, + "line": 1603, "character": 4 } ], @@ -43959,14 +44048,14 @@ "title": "Properties", "kind": 1024, "children": [ - 2622 + 2625 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1585, + "line": 1598, "character": 29 } ] @@ -43974,7 +44063,7 @@ } }, { - "id": 2631, + "id": 2634, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -43991,21 +44080,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1572, + "line": 1585, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2632, + "id": 2635, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2634, + "id": 2637, "name": "data", "kind": 1024, "kindString": "Property", @@ -44013,7 +44102,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1576, + "line": 1589, "character": 4 } ], @@ -44023,7 +44112,7 @@ } }, { - "id": 2635, + "id": 2638, "name": "status", "kind": 1024, "kindString": "Property", @@ -44033,7 +44122,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1578, + "line": 1591, "character": 4 } ], @@ -44043,7 +44132,7 @@ } }, { - "id": 2633, + "id": 2636, "name": "type", "kind": 1024, "kindString": "Property", @@ -44051,7 +44140,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1574, + "line": 1587, "character": 4 } ], @@ -44066,16 +44155,16 @@ "title": "Properties", "kind": 1024, "children": [ - 2634, - 2635, - 2633 + 2637, + 2638, + 2636 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1572, + "line": 1585, "character": 29 } ] @@ -44177,7 +44266,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 346, + "line": 348, "character": 13 } ], @@ -44245,7 +44334,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 413, + "line": 415, "character": 13 } ], @@ -44482,7 +44571,7 @@ }, "type": { "type": "reference", - "id": 2238, + "id": 2239, "name": "EmbedConfig" } } @@ -44541,7 +44630,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 238, + "line": 240, "character": 13 } ], @@ -44582,7 +44671,7 @@ }, "type": { "type": "reference", - "id": 2238, + "id": 2239, "name": "EmbedConfig" } } @@ -44606,7 +44695,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 296, + "line": 298, "character": 13 } ], @@ -44673,7 +44762,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 109, + "line": 111, "character": 13 } ], @@ -44729,7 +44818,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2590, + "id": 2593, "name": "PrefetchFeatures" } } @@ -44801,7 +44890,7 @@ ] }, { - "id": 2906, + "id": 2909, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -44817,7 +44906,7 @@ ], "signatures": [ { - "id": 2907, + "id": 2910, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -45011,7 +45100,7 @@ ] }, { - "id": 2829, + "id": 2832, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -45025,7 +45114,7 @@ ], "signatures": [ { - "id": 2830, + "id": 2833, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -45035,7 +45124,7 @@ }, "parameters": [ { - "id": 2831, + "id": 2834, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -45047,7 +45136,7 @@ } }, { - "id": 2832, + "id": 2835, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -45058,7 +45147,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2833, + "id": 2836, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -45081,30 +45170,30 @@ "title": "Enumerations", "kind": 4, "children": [ - 2096, + 2097, 1747, 1732, 1739, 1894, - 2234, - 2901, - 2897, - 2893, - 2092, + 2235, + 2904, + 2900, + 2896, + 2093, 1926, - 2601, - 2851, - 2845, - 2612, - 2020, + 2604, 2854, - 2887, - 2822, + 2848, + 2615, + 2020, + 2857, + 2890, + 2825, 1885, - 2590, - 2849, + 2593, + 2852, 1910, - 2880 + 2883 ] }, { @@ -45127,28 +45216,28 @@ "title": "Interfaces", "kind": 256, "children": [ - 2506, + 2509, 1749, 1260, 1526, - 2860, - 2658, - 2646, - 2636, - 2238, - 2595, - 2384, + 2863, + 2661, + 2649, + 2639, + 2239, + 2598, + 2387, 1906, - 2819, - 2459, - 2342, - 2288, + 2822, + 2462, + 2345, + 2291, 1875, 1231, 1486, 1882, - 2857, - 2649, + 2860, + 2652, 21, 25 ] @@ -45157,10 +45246,10 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2619, + 2622, + 2626, 2623, - 2620, - 2631 + 2634 ] }, { @@ -45176,9 +45265,9 @@ 1, 4, 7, - 2906, + 2909, 37, - 2829 + 2832 ] } ], @@ -45189,4 +45278,4 @@ "character": 0 } ] -} +} \ No newline at end of file From a45b52a4cf59f59149ae21ecef90dde8ec1fa456 Mon Sep 17 00:00:00 2001 From: Aditya Mittal <114516106+adityamittal3107@users.noreply.github.com> Date: Tue, 4 Nov 2025 04:07:20 +0530 Subject: [PATCH 29/31] Major version bump (#343) --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index f8f1558b0..66b24bcad 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@thoughtspot/visual-embed-sdk", - "version": "1.42.3", + "version": "1.43.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@thoughtspot/visual-embed-sdk", - "version": "1.42.3", + "version": "1.43.0", "license": "ThoughtSpot Development Tools End User License Agreement", "dependencies": { "classnames": "^2.3.1", diff --git a/package.json b/package.json index f4114d32e..7898d1083 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@thoughtspot/visual-embed-sdk", - "version": "1.42.3", + "version": "1.43.0", "description": "ThoughtSpot Embed SDK", "module": "lib/src/index.js", "main": "dist/tsembed.js", From debcb9bd1e08041eaa8c47f0b4f65baa3474cacf Mon Sep 17 00:00:00 2001 From: Justin Mathew <42416647+sastaachar@users.noreply.github.com> Date: Wed, 5 Nov 2025 03:02:00 +0530 Subject: [PATCH 30/31] SCAL-269016 : Intercept v2 (#328) --- eslint.config.mjs | 8 +- src/api-intercept.spec.ts | 856 +++++++++++++++++++++++++ src/api-intercept.ts | 204 ++++++ src/embed/app.ts | 14 - src/embed/hostEventClient/contracts.ts | 10 + src/embed/search.ts | 15 +- src/embed/ts-embed.spec.ts | 748 +++++++++++++-------- src/embed/ts-embed.ts | 112 +++- src/index.ts | 2 + src/react/all-types-export.ts | 1 + src/types.ts | 159 ++++- src/utils/logger.ts | 3 +- src/utils/processData.spec.ts | 1 - src/utils/processData.ts | 21 +- 14 files changed, 1814 insertions(+), 340 deletions(-) create mode 100644 src/api-intercept.spec.ts create mode 100644 src/api-intercept.ts diff --git a/eslint.config.mjs b/eslint.config.mjs index ca936c440..879d8e50f 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -1,5 +1,4 @@ import { defineConfig } from 'eslint/config'; -import globals from 'globals'; import tseslint from 'typescript-eslint'; import pluginReact from 'eslint-plugin-react'; import importPlugin from 'eslint-plugin-import'; @@ -48,7 +47,8 @@ export default defineConfig([ maxLength: 90, ignoreUrls: true, }, - ] - } + ], + 'import/no-cycle': "error" + }, }, -]); \ No newline at end of file +]); diff --git a/src/api-intercept.spec.ts b/src/api-intercept.spec.ts new file mode 100644 index 000000000..845753776 --- /dev/null +++ b/src/api-intercept.spec.ts @@ -0,0 +1,856 @@ +import * as apiIntercept from './api-intercept'; +import * as config from './config'; +import * as embedConfig from './embed/embedConfig'; +import { InterceptedApiType, EmbedEvent, BaseViewConfig } from './types'; +import { embedEventStatus } from './utils'; +import { logger } from './utils/logger'; + +jest.mock('./config'); +jest.mock('./embed/embedConfig'); +jest.mock('./utils/logger'); + +const mockGetThoughtSpotHost = config.getThoughtSpotHost as jest.Mock; +const mockGetEmbedConfig = embedConfig.getEmbedConfig as jest.Mock; +const mockLogger = logger as jest.Mocked; + +describe('api-intercept', () => { + const thoughtSpotHost = 'https://test.thoughtspot.com'; + let originalJsonParse: any; + + beforeAll(() => { + originalJsonParse = JSON.parse; + }); + + beforeEach(() => { + jest.clearAllMocks(); + mockGetThoughtSpotHost.mockReturnValue(thoughtSpotHost); + mockGetEmbedConfig.mockReturnValue({}); + // Restore JSON.parse before each test + JSON.parse = originalJsonParse; + }); + + afterEach(() => { + // Ensure JSON.parse is restored after each test + JSON.parse = originalJsonParse; + }); + + describe('getInterceptInitData', () => { + it('should return default intercept flags when no intercepts are configured', () => { + const viewConfig: BaseViewConfig = {}; + + const result = apiIntercept.getInterceptInitData(viewConfig); + + expect(result).toEqual({ + interceptUrls: [], + interceptTimeout: undefined, + }); + }); + + it('should expand InterceptedApiType.AnswerData to specific URLs', () => { + const viewConfig: BaseViewConfig = { + interceptUrls: [InterceptedApiType.AnswerData] + }; + + const result = apiIntercept.getInterceptInitData(viewConfig); + + expect(result.interceptUrls).toEqual([ + `${thoughtSpotHost}/prism/?op=GetChartWithData`, + `${thoughtSpotHost}/prism/?op=GetTableWithHeadlineData`, + `${thoughtSpotHost}/prism/?op=GetTableWithData`, + ]); + }); + + it('should expand InterceptedApiType.LiveboardData to specific URLs', () => { + const viewConfig: BaseViewConfig = { + interceptUrls: [InterceptedApiType.LiveboardData] + }; + + const result = apiIntercept.getInterceptInitData(viewConfig); + + expect(result.interceptUrls).toEqual([ + `${thoughtSpotHost}/prism/?op=LoadContextBook` + ]); + }); + + it('should handle multiple intercept types', () => { + const viewConfig: BaseViewConfig = { + interceptUrls: [ + InterceptedApiType.AnswerData, + InterceptedApiType.LiveboardData + ] + }; + + const result = apiIntercept.getInterceptInitData(viewConfig); + + expect(result.interceptUrls).toContain(`${thoughtSpotHost}/prism/?op=GetChartWithData`); + expect(result.interceptUrls).toContain(`${thoughtSpotHost}/prism/?op=LoadContextBook`); + expect(result.interceptUrls.length).toBe(4); + }); + + it('should handle custom URL strings', () => { + const customUrl = '/api/custom-endpoint'; + const viewConfig: BaseViewConfig = { + interceptUrls: [customUrl] + }; + + const result = apiIntercept.getInterceptInitData(viewConfig); + + expect(result.interceptUrls).toEqual([`${thoughtSpotHost}${customUrl}`]); + }); + + it('should handle full URL strings', () => { + const fullUrl = 'https://example.com/api/endpoint'; + const viewConfig: BaseViewConfig = { + interceptUrls: [fullUrl] + }; + + const result = apiIntercept.getInterceptInitData(viewConfig); + + expect(result.interceptUrls).toEqual([fullUrl]); + }); + + it('should handle InterceptedApiType.ALL', () => { + const viewConfig: BaseViewConfig = { + interceptUrls: [InterceptedApiType.ALL] + }; + + const result = apiIntercept.getInterceptInitData(viewConfig); + + expect(result.interceptUrls).toEqual([InterceptedApiType.ALL]); + }); + + it('should prioritize ALL over other intercept types', () => { + const viewConfig: BaseViewConfig = { + interceptUrls: [ + InterceptedApiType.AnswerData, + InterceptedApiType.ALL, + '/api/custom' + ] + }; + + const result = apiIntercept.getInterceptInitData(viewConfig); + + expect(result.interceptUrls).toEqual([InterceptedApiType.ALL]); + }); + + it('should handle legacy isOnBeforeGetVizDataInterceptEnabled flag', () => { + const viewConfig: any = { + isOnBeforeGetVizDataInterceptEnabled: true + }; + + const result = apiIntercept.getInterceptInitData(viewConfig); + + expect(result.interceptUrls).toContain(`${thoughtSpotHost}/prism/?op=GetChartWithData`); + }); + + it('should combine legacy flag with interceptUrls', () => { + const viewConfig: any = { + isOnBeforeGetVizDataInterceptEnabled: true, + interceptUrls: [InterceptedApiType.LiveboardData] + }; + + const result = apiIntercept.getInterceptInitData(viewConfig); + + expect(result.interceptUrls).toContain(`${thoughtSpotHost}/prism/?op=GetChartWithData`); + expect(result.interceptUrls).toContain(`${thoughtSpotHost}/prism/?op=LoadContextBook`); + }); + + it('should pass through interceptTimeout', () => { + const viewConfig: BaseViewConfig = { + interceptUrls: [], + interceptTimeout: 5000 + }; + + const result = apiIntercept.getInterceptInitData(viewConfig); + + expect(result.interceptTimeout).toBe(5000); + }); + + it('should deduplicate URLs when same type is added multiple times', () => { + const viewConfig: BaseViewConfig = { + interceptUrls: [ + InterceptedApiType.AnswerData, + InterceptedApiType.AnswerData + ] + }; + + const result = apiIntercept.getInterceptInitData(viewConfig); + + expect(result.interceptUrls.length).toBe(3); // 3 answer data URLs + }); + }); + + describe('handleInterceptEvent', () => { + let executeEvent: jest.Mock; + let getUnsavedAnswerTml: jest.Mock; + let viewConfig: BaseViewConfig; + + beforeEach(() => { + executeEvent = jest.fn(); + getUnsavedAnswerTml = jest.fn().mockResolvedValue({ answer: { tml: 'test-tml' } }); + viewConfig = {}; + }); + + it('should handle valid intercept data', async () => { + const eventData = { + data: JSON.stringify({ + input: '/prism/?op=GetChartWithData', + init: { + method: 'POST', + body: JSON.stringify({ + variables: { + session: { sessionId: 'session-123' }, + contextBookId: 'viz-456' + } + }) + } + }) + }; + + await apiIntercept.handleInterceptEvent({ + eventData, + executeEvent, + viewConfig, + getUnsavedAnswerTml + }); + + expect(executeEvent).toHaveBeenCalledWith( + EmbedEvent.ApiIntercept, + expect.objectContaining({ + input: '/prism/?op=GetChartWithData', + urlType: InterceptedApiType.AnswerData + }) + ); + }); + + it('should trigger legacy OnBeforeGetVizDataIntercept for answer data URLs', async () => { + viewConfig.isOnBeforeGetVizDataInterceptEnabled = true; + const eventData = { + data: JSON.stringify({ + input: '/prism/?op=GetChartWithData', + init: { + method: 'POST', + body: JSON.stringify({ + variables: { + session: { sessionId: 'session-123' }, + contextBookId: 'viz-456' + } + }) + } + }) + }; + + await apiIntercept.handleInterceptEvent({ + eventData, + executeEvent, + viewConfig, + getUnsavedAnswerTml + }); + + expect(getUnsavedAnswerTml).toHaveBeenCalledWith({ + sessionId: 'session-123', + vizId: 'viz-456' + }); + + expect(executeEvent).toHaveBeenCalledWith( + EmbedEvent.OnBeforeGetVizDataIntercept, + { + data: { + data: { answer: { tml: 'test-tml' } }, + status: embedEventStatus.END, + type: EmbedEvent.OnBeforeGetVizDataIntercept + } + } + ); + + expect(executeEvent).toHaveBeenCalledWith( + EmbedEvent.ApiIntercept, + expect.any(Object) + ); + }); + + it('should not trigger legacy intercept for non-answer data URLs', async () => { + viewConfig.isOnBeforeGetVizDataInterceptEnabled = true; + const eventData = { + data: JSON.stringify({ + input: '/prism/?op=LoadContextBook', + init: { + method: 'POST', + body: '{}' + } + }) + }; + + await apiIntercept.handleInterceptEvent({ + eventData, + executeEvent, + viewConfig, + getUnsavedAnswerTml + }); + + expect(getUnsavedAnswerTml).not.toHaveBeenCalled(); + expect(executeEvent).toHaveBeenCalledTimes(1); + expect(executeEvent).toHaveBeenCalledWith( + EmbedEvent.ApiIntercept, + expect.any(Object) + ); + }); + + it('should handle GetTableWithHeadlineData URL as answer data', async () => { + viewConfig.isOnBeforeGetVizDataInterceptEnabled = true; + const eventData = { + data: JSON.stringify({ + input: '/prism/?op=GetTableWithHeadlineData', + init: { + body: JSON.stringify({ + variables: { session: { sessionId: 'test' } } + }) + } + }) + }; + + await apiIntercept.handleInterceptEvent({ + eventData, + executeEvent, + viewConfig, + getUnsavedAnswerTml + }); + + expect(getUnsavedAnswerTml).toHaveBeenCalled(); + }); + + it('should handle GetTableWithData URL as answer data', async () => { + viewConfig.isOnBeforeGetVizDataInterceptEnabled = true; + const eventData = { + data: JSON.stringify({ + input: '/prism/?op=GetTableWithData', + init: { + body: JSON.stringify({ + variables: { session: { sessionId: 'test' } } + }) + } + }) + }; + + await apiIntercept.handleInterceptEvent({ + eventData, + executeEvent, + viewConfig, + getUnsavedAnswerTml + }); + + expect(getUnsavedAnswerTml).toHaveBeenCalled(); + }); + + it('should handle invalid JSON in event data', async () => { + const eventData = { + data: 'invalid-json' + }; + + await apiIntercept.handleInterceptEvent({ + eventData, + executeEvent, + viewConfig, + getUnsavedAnswerTml + }); + + expect(executeEvent).toHaveBeenCalledWith( + EmbedEvent.Error, + { error: 'Error parsing api intercept body' } + ); + expect(mockLogger.error).toHaveBeenCalled(); + }); + + it('should handle init with non-JSON body', async () => { + const eventData = { + data: JSON.stringify({ + input: '/api/test', + init: { + method: 'POST', + body: 'plain-text-body' + } + }) + }; + + await apiIntercept.handleInterceptEvent({ + eventData, + executeEvent, + viewConfig, + getUnsavedAnswerTml + }); + + expect(executeEvent).toHaveBeenCalledWith( + EmbedEvent.ApiIntercept, + expect.objectContaining({ + init: expect.objectContaining({ + body: 'plain-text-body' + }) + }) + ); + }); + + it('should handle malformed event data structure with property access error', async () => { + // Create an object with a getter that throws when accessing 'input' + global.JSON.parse = jest.fn().mockImplementationOnce((str) => { + // Return an object with a getter that throws + return new Proxy({}, { + get(target, prop) { + if (prop === 'input') { + throw new Error('Property access error'); + } + return undefined; + } + }); + }); + + const eventData = { + data: JSON.stringify({ input: '/test', init: {} }) + }; + + await apiIntercept.handleInterceptEvent({ + eventData, + executeEvent, + viewConfig, + getUnsavedAnswerTml + }); + + expect(executeEvent).toHaveBeenCalledWith( + EmbedEvent.Error, + { error: 'Error parsing api intercept body' } + ); + expect(mockLogger.error).toHaveBeenCalled(); + + // Explicitly restore for this test + global.JSON.parse = originalJsonParse; + }); + + it('should determine urlType as ALL for unknown URLs', async () => { + const eventData = { + data: JSON.stringify({ + input: '/unknown/endpoint', + init: { method: 'GET' } + }) + }; + + await apiIntercept.handleInterceptEvent({ + eventData, + executeEvent, + viewConfig, + getUnsavedAnswerTml + }); + + expect(executeEvent).toHaveBeenCalledWith( + EmbedEvent.ApiIntercept, + expect.objectContaining({ + urlType: InterceptedApiType.ALL + }) + ); + }); + + it('should determine urlType as LiveboardData for liveboard URLs', async () => { + const eventData = { + data: JSON.stringify({ + input: '/prism/?op=LoadContextBook', + init: { method: 'POST' } + }) + }; + + await apiIntercept.handleInterceptEvent({ + eventData, + executeEvent, + viewConfig, + getUnsavedAnswerTml + }); + + expect(executeEvent).toHaveBeenCalledWith( + EmbedEvent.ApiIntercept, + expect.objectContaining({ + urlType: InterceptedApiType.LiveboardData + }) + ); + }); + + it('should handle event data with missing init', async () => { + const eventData = { + data: JSON.stringify({ + input: '/prism/?op=GetChartWithData' + }) + }; + + await apiIntercept.handleInterceptEvent({ + eventData, + executeEvent, + viewConfig, + getUnsavedAnswerTml + }); + + // When init is missing, accessing init.body throws an error + expect(executeEvent).toHaveBeenCalledWith( + EmbedEvent.Error, + { error: 'Error parsing api intercept body' } + ); + }); + + it('should handle event data with missing body', async () => { + const eventData = { + data: JSON.stringify({ + input: '/prism/?op=GetChartWithData', + init: {} + }) + }; + + await apiIntercept.handleInterceptEvent({ + eventData, + executeEvent, + viewConfig, + getUnsavedAnswerTml + }); + + expect(executeEvent).toHaveBeenCalledWith( + EmbedEvent.ApiIntercept, + expect.any(Object) + ); + }); + + it('should handle event data with missing variables in body', async () => { + const eventData = { + data: JSON.stringify({ + input: '/prism/?op=GetChartWithData', + init: { + body: JSON.stringify({}) + } + }) + }; + + await apiIntercept.handleInterceptEvent({ + eventData, + executeEvent, + viewConfig, + getUnsavedAnswerTml + }); + + expect(executeEvent).toHaveBeenCalledWith( + EmbedEvent.ApiIntercept, + expect.any(Object) + ); + }); + + it('should handle event data with missing session in variables', async () => { + const eventData = { + data: JSON.stringify({ + input: '/prism/?op=GetChartWithData', + init: { + body: JSON.stringify({ + variables: {} + }) + } + }) + }; + + await apiIntercept.handleInterceptEvent({ + eventData, + executeEvent, + viewConfig, + getUnsavedAnswerTml + }); + + expect(executeEvent).toHaveBeenCalledWith( + EmbedEvent.ApiIntercept, + expect.any(Object) + ); + }); + }); + + describe('processApiInterceptResponse', () => { + it('should process legacy format with error', () => { + const legacyPayload = { + data: { + error: { + errorText: 'Test Error', + errorDescription: 'Test Description' + }, + execute: false + } + }; + + const result = apiIntercept.processApiInterceptResponse(legacyPayload); + + expect(result).toEqual({ + data: { + execute: false, + response: { + body: { + errors: [ + { + title: 'Test Error', + description: 'Test Description', + isUserError: true, + }, + ], + data: {}, + }, + }, + } + }); + }); + + it('should pass through new format unchanged', () => { + const newPayload = { + execute: true, + response: { + body: { data: 'test' } + } + }; + + const result = apiIntercept.processApiInterceptResponse(newPayload); + + expect(result).toEqual(newPayload); + }); + + it('should handle payload without data property', () => { + const payload = { + execute: true + }; + + const result = apiIntercept.processApiInterceptResponse(payload); + + expect(result).toEqual(payload); + }); + + it('should handle payload with data but no error', () => { + const payload = { + data: { + execute: true, + someOtherProperty: 'value' + } + }; + + const result = apiIntercept.processApiInterceptResponse(payload); + + expect(result).toEqual(payload); + }); + + it('should handle null payload', () => { + const result = apiIntercept.processApiInterceptResponse(null); + + expect(result).toBeNull(); + }); + + it('should handle undefined payload', () => { + const result = apiIntercept.processApiInterceptResponse(undefined); + + expect(result).toBeUndefined(); + }); + + it('should handle payload with null data', () => { + const payload: any = { + data: null + }; + + const result = apiIntercept.processApiInterceptResponse(payload); + + expect(result).toEqual(payload); + }); + + it('should handle payload with data.error set to null', () => { + const payload: any = { + data: { + error: null, + execute: true + } + }; + + const result = apiIntercept.processApiInterceptResponse(payload); + + expect(result).toEqual(payload); + }); + + it('should handle payload with data.error set to undefined', () => { + const payload: any = { + data: { + error: undefined, + execute: true + } + }; + + const result = apiIntercept.processApiInterceptResponse(payload); + + expect(result).toEqual(payload); + }); + + it('should handle payload with data.error set to false', () => { + const payload = { + data: { + error: false, + execute: true + } + }; + + const result = apiIntercept.processApiInterceptResponse(payload); + + expect(result).toEqual(payload); + }); + + it('should handle payload with data.error set to 0', () => { + const payload = { + data: { + error: 0, + execute: true + } + }; + + const result = apiIntercept.processApiInterceptResponse(payload); + + expect(result).toEqual(payload); + }); + + it('should handle payload with data.error set to empty string', () => { + const payload = { + data: { + error: '', + execute: true + } + }; + + const result = apiIntercept.processApiInterceptResponse(payload); + + expect(result).toEqual(payload); + }); + }); + + describe('processLegacyInterceptResponse', () => { + it('should convert legacy error format to new format', () => { + const legacyPayload = { + data: { + error: { + errorText: 'Custom Error', + errorDescription: 'Custom Description' + }, + execute: false + } + }; + + const result = apiIntercept.processLegacyInterceptResponse(legacyPayload); + + expect(result).toEqual({ + data: { + execute: false, + response: { + body: { + errors: [ + { + title: 'Custom Error', + description: 'Custom Description', + isUserError: true, + }, + ], + data: {}, + }, + }, + } + }); + }); + + it('should handle missing error properties', () => { + const legacyPayload = { + data: { + error: {}, + execute: true + } + }; + + const result = apiIntercept.processLegacyInterceptResponse(legacyPayload); + + expect(result.data.response.body.errors[0]).toEqual({ + title: undefined, + description: undefined, + isUserError: true, + }); + }); + + it('should handle missing execute property', () => { + const legacyPayload = { + data: { + error: { + errorText: 'Error', + errorDescription: 'Description' + } + } + }; + + const result = apiIntercept.processLegacyInterceptResponse(legacyPayload); + + expect(result.data.execute).toBeUndefined(); + }); + + it('should always include empty data object', () => { + const legacyPayload = { + data: { + error: { + errorText: 'Error', + errorDescription: 'Description' + }, + execute: false + } + }; + + const result = apiIntercept.processLegacyInterceptResponse(legacyPayload); + + expect(result.data.response.body.data).toEqual({}); + }); + + it('should always set isUserError to true', () => { + const legacyPayload = { + data: { + error: { + errorText: 'Error', + errorDescription: 'Description' + }, + execute: false + } + }; + + const result = apiIntercept.processLegacyInterceptResponse(legacyPayload); + + expect(result.data.response.body.errors[0].isUserError).toBe(true); + }); + + it('should handle payload with null data', () => { + const legacyPayload: any = { + data: null + }; + + const result = apiIntercept.processLegacyInterceptResponse(legacyPayload); + + expect(result.data.execute).toBeUndefined(); + expect(result.data.response.body.errors[0].title).toBeUndefined(); + expect(result.data.response.body.errors[0].description).toBeUndefined(); + }); + + it('should handle payload with null error', () => { + const legacyPayload: any = { + data: { + error: null, + execute: true + } + }; + + const result = apiIntercept.processLegacyInterceptResponse(legacyPayload); + + expect(result.data.execute).toBe(true); + expect(result.data.response.body.errors[0].title).toBeUndefined(); + expect(result.data.response.body.errors[0].description).toBeUndefined(); + }); + + it('should handle payload with undefined properties', () => { + const legacyPayload = {}; + + const result = apiIntercept.processLegacyInterceptResponse(legacyPayload); + + expect(result.data.execute).toBeUndefined(); + expect(result.data.response.body.errors[0].title).toBeUndefined(); + expect(result.data.response.body.errors[0].description).toBeUndefined(); + }); + }); +}); + diff --git a/src/api-intercept.ts b/src/api-intercept.ts new file mode 100644 index 000000000..824594d81 --- /dev/null +++ b/src/api-intercept.ts @@ -0,0 +1,204 @@ +import { getThoughtSpotHost } from "./config"; +import { getEmbedConfig } from "./embed/embedConfig"; +import { InterceptedApiType, BaseViewConfig, ApiInterceptFlags, EmbedEvent } from "./types"; +import { embedEventStatus } from "./utils"; +import { logger } from "./utils/logger"; + +const DefaultInterceptUrlsMap: Record, string[]> = { + [InterceptedApiType.AnswerData]: [ + '/prism/?op=GetChartWithData', + '/prism/?op=GetTableWithHeadlineData', + '/prism/?op=GetTableWithData', + ] as string[], + [InterceptedApiType.LiveboardData]: [ + '/prism/?op=LoadContextBook' + ] as string[], +}; + +const formatInterceptUrl = (url: string) => { + const host = getThoughtSpotHost(getEmbedConfig()); + if (url.startsWith('/')) return `${host}${url}`; + return url; +} + +interface LegacyInterceptFlags { + isOnBeforeGetVizDataInterceptEnabled: boolean; +} +/** + * Converts user passed url values to proper urls + * [ANSER_DATA] => ['https://host/pris/op?=op'] + * @param interceptUrls + * @returns + */ +const processInterceptUrls = (interceptUrls: (string | InterceptedApiType)[]) => { + let processedUrls = [...interceptUrls]; + Object.entries(DefaultInterceptUrlsMap).forEach(([apiType, apiTypeUrls]) => { + if (!processedUrls.includes(apiType)) return; + processedUrls = processedUrls.filter(url => url !== apiType); + processedUrls = [...processedUrls, ...apiTypeUrls]; + }) + return processedUrls.map(url => formatInterceptUrl(url)); +} + +/** + * Returns the data to be sent to embed to setup intercepts + * the urls to intercept, timeout etc + * @param viewConfig + * @returns + */ +export const getInterceptInitData = (viewConfig: BaseViewConfig): Required> => { + const combinedUrls = [...(viewConfig.interceptUrls || [])]; + + if ((viewConfig as LegacyInterceptFlags).isOnBeforeGetVizDataInterceptEnabled) { + combinedUrls.push(InterceptedApiType.AnswerData); + } + + const shouldInterceptAll = combinedUrls.includes(InterceptedApiType.ALL); + const interceptUrls = shouldInterceptAll ? [InterceptedApiType.ALL] : processInterceptUrls(combinedUrls); + + const interceptTimeout = viewConfig.interceptTimeout; + + return { + interceptUrls, + interceptTimeout, + }; +} + +const parseJson = (jsonString: string): [any, Error | null] => { + try { + const json = JSON.parse(jsonString); + return [json, null]; + } catch (error) { + return [null, error]; + } +} + +/** + * Parse the api intercept data and return the parsed data and error if any + * Embed returns the input and init from the fetch call + */ +const parseInterceptData = (eventDataString: any) => { + + try { + const [parsedData, error] = parseJson(eventDataString); + if (error) { + return [null, error]; + } + + const { input, init } = parsedData; + + const [parsedBody, bodyParseError] = parseJson(init.body); + if (!bodyParseError) { + init.body = parsedBody; + } + + const parsedInit = { input, init }; + return [parsedInit, null]; + } catch (error) { + return [null, error]; + } +} + +const getUrlType = (url: string) => { + for (const [apiType, apiTypeUrls] of Object.entries(DefaultInterceptUrlsMap)) { + if (apiTypeUrls.includes(url)) return apiType as InterceptedApiType; + } + // TODO: have a unknown type maybe ?? + return InterceptedApiType.ALL; +} + +/** + * Handle Api intercept event and simulate legacy onBeforeGetVizDataIntercept event + * + * embed sends -> ApiIntercept -> we send + * ApiIntercept + * OnBeforeGetVizDataIntercept (if url is part of DefaultUrlMap.AnswerData) + * + * @param params + * @returns + */ +export const handleInterceptEvent = async (params: { + eventData: any, + executeEvent: (eventType: EmbedEvent, data: any) => void, + viewConfig: BaseViewConfig, + getUnsavedAnswerTml: (props: { sessionId?: string, vizId?: string }) => Promise<{ tml: string }> +}) => { + + const { eventData, executeEvent, viewConfig, getUnsavedAnswerTml } = params; + + const [interceptData, bodyParseError] = parseInterceptData(eventData.data); + + if (bodyParseError) { + executeEvent(EmbedEvent.Error, { + error: 'Error parsing api intercept body', + }); + logger.error('Error parsing request body', bodyParseError); + return; + } + + + const { input: requestUrl, init } = interceptData; + + const sessionId = init?.body?.variables?.session?.sessionId; + const vizId = init?.body?.variables?.contextBookId; + + const answerDataUrls = DefaultInterceptUrlsMap[InterceptedApiType.AnswerData]; + const legacyInterceptEnabled = viewConfig.isOnBeforeGetVizDataInterceptEnabled; + const isAnswerDataUrl = answerDataUrls.includes(requestUrl); + const sendLegacyIntercept = isAnswerDataUrl && legacyInterceptEnabled; + if (sendLegacyIntercept) { + const answerTml = await getUnsavedAnswerTml({ sessionId, vizId }); + // Build the legacy payload for backwards compatibility + const legacyPayload = { + data: { + data: answerTml, + status: embedEventStatus.END, + type: EmbedEvent.OnBeforeGetVizDataIntercept + } + } + executeEvent(EmbedEvent.OnBeforeGetVizDataIntercept, legacyPayload); + } + + const urlType = getUrlType(requestUrl); + executeEvent(EmbedEvent.ApiIntercept, { ...interceptData, urlType }); +} + +/** + * Support both the legacy and new format of the api intercept response + * @param payload + * @returns + */ +export const processApiInterceptResponse = (payload: any) => { + const isLegacyFormat = payload?.data?.error; + + if (isLegacyFormat) { + return processLegacyInterceptResponse(payload); + } + + return payload; +} + +export const processLegacyInterceptResponse = (payload: any) => { + + const errorText = payload?.data?.error?.errorText; + const errorDescription = payload?.data?.error?.errorDescription; + + const payloadToSend = { + execute: payload?.data?.execute, + response: { + body: { + errors: [ + { + title: errorText, + description: errorDescription, + isUserError: true, + }, + ], + data: {}, + }, + }, + }; + + + return { data: payloadToSend }; +} diff --git a/src/embed/app.ts b/src/embed/app.ts index 6adecdd17..189f0835f 100644 --- a/src/embed/app.ts +++ b/src/embed/app.ts @@ -512,11 +512,6 @@ export interface AppViewConfig extends AllEmbedViewConfig { * ``` */ dataPanelCustomGroupsAccordionInitialState?: DataPanelCustomColumnGroupsAccordionState; - /** - * Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`. - * @version SDK : 1.29.0 | ThoughtSpot: 10.1.0.cl - */ - isOnBeforeGetVizDataInterceptEnabled?: boolean; /** * Flag to use home page search bar mode * @@ -668,8 +663,6 @@ export class AppEmbed extends V1Embed { collapseSearchBarInitially = false, enable2ColumnLayout, enableCustomColumnGroups = false, - isOnBeforeGetVizDataInterceptEnabled = false, - dataPanelCustomGroupsAccordionInitialState = DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL, collapseSearchBar = true, isLiveboardCompactHeaderEnabled = false, @@ -752,13 +745,6 @@ export class AppEmbed extends V1Embed { params[Param.enableAskSage] = enableAskSage; } - if (isOnBeforeGetVizDataInterceptEnabled) { - - params[ - Param.IsOnBeforeGetVizDataInterceptEnabled - ] = isOnBeforeGetVizDataInterceptEnabled; - } - if (homePageSearchBarMode) { params[Param.HomePageSearchBarMode] = homePageSearchBarMode; } diff --git a/src/embed/hostEventClient/contracts.ts b/src/embed/hostEventClient/contracts.ts index f82077b70..0f2e07f12 100644 --- a/src/embed/hostEventClient/contracts.ts +++ b/src/embed/hostEventClient/contracts.ts @@ -7,6 +7,7 @@ export enum UIPassthroughEvent { GetAvailableUIPassthroughs = 'getAvailableUiPassthroughs', GetAnswerConfig = 'getAnswerPageConfig', GetLiveboardConfig = 'getPinboardPageConfig', + GetUnsavedAnswerTML = 'getUnsavedAnswerTML', } // UI Passthrough Contract @@ -63,6 +64,15 @@ export type UIPassthroughContractBase = { request: any; response: any; }; + [UIPassthroughEvent.GetUnsavedAnswerTML]: { + request: { + sessionId?: string; + vizId?: string; + }; + response: { + tml: string; + }; + }; }; // UI Passthrough Request and Response diff --git a/src/embed/search.ts b/src/embed/search.ts index 534db212f..e572b9acb 100644 --- a/src/embed/search.ts +++ b/src/embed/search.ts @@ -26,6 +26,7 @@ import { ERROR_MESSAGE } from '../errors'; import { getAuthPromise } from './base'; import { getReleaseVersion } from '../auth'; import { getEmbedConfig } from './embedConfig'; +import { getInterceptInitData } from '../api-intercept'; /** * Configuration for search options. @@ -276,13 +277,6 @@ export interface SearchViewConfig * @deprecated Use {@link collapseSearchBar} instead */ collapseSearchBarInitially?: boolean; - /** - * Flag to enable onBeforeSearchExecute Embed Event - * - * Supported embed types: `SearchEmbed` - * @version: SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl - */ - isOnBeforeGetVizDataInterceptEnabled?: boolean; /** * This controls the initial behaviour of custom column groups accordion. * It takes DataPanelCustomColumnGroupsAccordionState enum values as input. @@ -397,8 +391,6 @@ export class SearchEmbed extends TsEmbed { runtimeParameters, collapseSearchBarInitially = false, enableCustomColumnGroups = false, - isOnBeforeGetVizDataInterceptEnabled = false, - dataPanelCustomGroupsAccordionInitialState = DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL, focusSearchBarOnRender = true, excludeRuntimeParametersfromURL, @@ -442,11 +434,6 @@ export class SearchEmbed extends TsEmbed { queryParams[Param.HideSearchBar] = true; } - if (isOnBeforeGetVizDataInterceptEnabled) { - - queryParams[Param.IsOnBeforeGetVizDataInterceptEnabled] = isOnBeforeGetVizDataInterceptEnabled; - } - if (!focusSearchBarOnRender) { queryParams[Param.FocusSearchBarOnRender] = focusSearchBarOnRender; } diff --git a/src/embed/ts-embed.spec.ts b/src/embed/ts-embed.spec.ts index 9e1ef6492..f676c566e 100644 --- a/src/embed/ts-embed.spec.ts +++ b/src/embed/ts-embed.spec.ts @@ -28,6 +28,7 @@ import { ContextMenuTriggerOptions, CustomActionTarget, CustomActionsPosition, + DefaultAppInitData, } from '../types'; import { executeAfterWait, @@ -60,10 +61,12 @@ import { processTrigger } from '../utils/processTrigger'; import { UIPassthroughEvent } from './hostEventClient/contracts'; import * as sessionInfoService from '../utils/sessionInfoService'; import * as authToken from '../authToken'; +import * as apiIntercept from '../api-intercept'; jest.mock('../utils/processTrigger'); const mockProcessTrigger = processTrigger as jest.Mock; +const mockHandleInterceptEvent = jest.spyOn(apiIntercept, 'handleInterceptEvent'); const defaultViewConfig = { frameParams: { width: 1280, @@ -110,6 +113,31 @@ const customVariablesForThirdPartyTools = { key2: '*%^', }; +const getMockAppInitPayload = (data: any) => { + const defaultData: DefaultAppInitData = { + customisations, + authToken: '', + hostConfig: undefined, + runtimeFilterParams: null, + runtimeParameterParams: null, + hiddenHomeLeftNavItems: [], + hiddenHomepageModules: [], + hiddenListColumns: [], + customActions: [], + reorderedHomepageModules: [], + customVariablesForThirdPartyTools, + interceptTimeout: undefined, + interceptUrls: [], + }; + return { + type: EmbedEvent.APP_INIT, + data: { + ...defaultData, + ...data, + }, + }; +} + describe('Unit test case for ts embed', () => { const mockMixPanelEvent = jest.spyOn(mixpanelInstance, 'uploadMixpanelEvent'); beforeEach(() => { @@ -337,22 +365,7 @@ describe('Unit test case for ts embed', () => { postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith({ - type: EmbedEvent.APP_INIT, - data: { - customisations, - authToken: '', - runtimeFilterParams: null, - runtimeParameterParams: null, - hiddenHomeLeftNavItems: [], - hiddenHomepageModules: [], - hiddenListColumns: [], - customActions: [], - hostConfig: undefined, - reorderedHomepageModules: [], - customVariablesForThirdPartyTools, - }, - }); + expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({})); }); }); @@ -374,22 +387,9 @@ describe('Unit test case for ts embed', () => { postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith({ - type: EmbedEvent.APP_INIT, - data: { - customisations: customisationsView, - authToken: '', - runtimeFilterParams: null, - runtimeParameterParams: null, - hiddenHomeLeftNavItems: [], - hiddenHomepageModules: [], - hiddenListColumns: [], - customActions: [], - hostConfig: undefined, - reorderedHomepageModules: [], - customVariablesForThirdPartyTools, - }, - }); + expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({ + customisations: customisationsView, + })); }); }); @@ -416,22 +416,9 @@ describe('Unit test case for ts embed', () => { postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith({ - type: EmbedEvent.APP_INIT, - data: { - customisations, - authToken: '', - hostConfig: undefined, - runtimeFilterParams: null, - runtimeParameterParams: null, - hiddenHomeLeftNavItems: [], - hiddenHomepageModules: [HomepageModule.MyLibrary, HomepageModule.Learning], - hiddenListColumns: [], - customActions: [], - reorderedHomepageModules: [], - customVariablesForThirdPartyTools, - }, - }); + expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({ + hiddenHomepageModules: [HomepageModule.MyLibrary, HomepageModule.Learning], + })); }); }); @@ -455,22 +442,7 @@ describe('Unit test case for ts embed', () => { postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith({ - type: EmbedEvent.APP_INIT, - data: { - customisations, - authToken: '', - hostConfig: undefined, - runtimeFilterParams: null, - runtimeParameterParams: null, - hiddenHomeLeftNavItems: [], - hiddenHomepageModules: [], - hiddenListColumns: [], - customActions: [], - reorderedHomepageModules: [], - customVariablesForThirdPartyTools, - }, - }); + expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({})); }); }); @@ -497,23 +469,10 @@ describe('Unit test case for ts embed', () => { postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith({ - type: EmbedEvent.APP_INIT, - data: { - customisations, - authToken: '', - hostConfig: undefined, - runtimeFilterParams: null, - runtimeParameterParams: null, - hiddenHomeLeftNavItems: [], - hiddenHomepageModules: [], - hiddenListColumns: [], - customActions: [], - reorderedHomepageModules: - [HomepageModule.MyLibrary, HomepageModule.Watchlist], - customVariablesForThirdPartyTools, - }, - }); + expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({ + reorderedHomepageModules: + [HomepageModule.MyLibrary, HomepageModule.Watchlist], + })); }); }); @@ -543,22 +502,9 @@ describe('Unit test case for ts embed', () => { postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith({ - type: EmbedEvent.APP_INIT, - data: { - customisations, - authToken: '', - runtimeFilterParams: null, - runtimeParameterParams: 'param1=color¶mVal1=blue', - hiddenHomeLeftNavItems: [], - hiddenHomepageModules: [], - hiddenListColumns: [], - customActions: [], - hostConfig: undefined, - reorderedHomepageModules: [], - customVariablesForThirdPartyTools, - }, - }); + expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({ + runtimeParameterParams: 'param1=color¶mVal1=blue', + })); }); }); @@ -589,22 +535,9 @@ describe('Unit test case for ts embed', () => { postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith({ - type: EmbedEvent.APP_INIT, - data: { - customisations, - authToken: '', - runtimeFilterParams: 'col1=color&op1=EQ&val1=blue', - runtimeParameterParams: null, - hiddenHomeLeftNavItems: [], - hiddenHomepageModules: [], - hiddenListColumns: [], - customActions: [], - hostConfig: undefined, - reorderedHomepageModules: [], - customVariablesForThirdPartyTools, - }, - }); + expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({ + runtimeFilterParams: 'col1=color&op1=EQ&val1=blue', + })); }); }); @@ -634,22 +567,7 @@ describe('Unit test case for ts embed', () => { postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith({ - type: EmbedEvent.APP_INIT, - data: { - customisations, - authToken: '', - runtimeFilterParams: null, - runtimeParameterParams: null, - hiddenHomeLeftNavItems: [], - hiddenHomepageModules: [], - hiddenListColumns: [], - customActions: [], - hostConfig: undefined, - reorderedHomepageModules: [], - customVariablesForThirdPartyTools, - }, - }); + expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({})); }); }); @@ -680,22 +598,7 @@ describe('Unit test case for ts embed', () => { postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith({ - type: EmbedEvent.APP_INIT, - data: { - customisations, - authToken: '', - runtimeFilterParams: null, - runtimeParameterParams: null, - hiddenHomeLeftNavItems: [], - hiddenHomepageModules: [], - hiddenListColumns: [], - customActions: [], - hostConfig: undefined, - reorderedHomepageModules: [], - customVariablesForThirdPartyTools, - }, - }); + expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({})); }); }); @@ -723,23 +626,10 @@ describe('Unit test case for ts embed', () => { }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith({ - type: EmbedEvent.APP_INIT, - data: { - customisations, - authToken: '', - hostConfig: undefined, - runtimeFilterParams: null, - runtimeParameterParams: null, - hiddenHomeLeftNavItems: - [HomeLeftNavItem.Home, HomeLeftNavItem.MonitorSubscription], - hiddenHomepageModules: [], - hiddenListColumns: [], - customActions: [], - reorderedHomepageModules: [], - customVariablesForThirdPartyTools, - }, - }); + expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({ + hiddenHomeLeftNavItems: + [HomeLeftNavItem.Home, HomeLeftNavItem.MonitorSubscription], + })); }); }); @@ -894,22 +784,10 @@ describe('Unit test case for ts embed', () => { postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith({ - type: EmbedEvent.APP_INIT, - data: { - customisations, - authToken: 'test_auth_token1', - runtimeFilterParams: null, - runtimeParameterParams: null, - hiddenHomeLeftNavItems: [], - hiddenHomepageModules: [], - hiddenListColumns: [], - customActions: [], - hostConfig: undefined, - reorderedHomepageModules: [], - customVariablesForThirdPartyTools: {}, - }, - }); + expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({ + authToken: 'test_auth_token1', + customVariablesForThirdPartyTools: {}, + })); }); jest.spyOn(authService, 'verifyTokenService').mockClear(); @@ -965,36 +843,25 @@ describe('Unit test case for ts embed', () => { }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith({ - type: EmbedEvent.APP_INIT, - data: { - customisations: { - content: { - strings: { - Liveboard: 'Dashboard', - }, - stringIDsUrl: 'https://sample-string-ids-url.com', - stringIDs: { - 'liveboard.header.title': 'Dashboard name', - }, + expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({ + customisations: { + content: { + strings: { + Liveboard: 'Dashboard', }, - style: { - customCSS: {}, - customCSSUrl: undefined, + stringIDsUrl: 'https://sample-string-ids-url.com', + stringIDs: { + 'liveboard.header.title': 'Dashboard name', }, }, - authToken: 'test_auth_token1', - runtimeFilterParams: null, - runtimeParameterParams: null, - hiddenHomeLeftNavItems: [], - hiddenHomepageModules: [], - hiddenListColumns: [], - customActions: [], - hostConfig: undefined, - reorderedHomepageModules: [], - customVariablesForThirdPartyTools: {}, + style: { + customCSS: {}, + customCSSUrl: undefined, + }, }, - }); + authToken: 'test_auth_token1', + customVariablesForThirdPartyTools: {}, + })); const customisationContent = mockPort.postMessage.mock.calls[0][0].data.customisations.content; expect(customisationContent.stringIDsUrl) .toBe('https://sample-string-ids-url.com'); @@ -1045,7 +912,7 @@ describe('Unit test case for ts embed', () => { type: EmbedEvent.APP_INIT, data: {}, }; - + // Create a SearchEmbed with valid custom actions to test // CustomActionsValidationResult const searchEmbed = new SearchEmbed(getRootEl(), { @@ -1067,7 +934,7 @@ describe('Unit test case for ts embed', () => { } ] }); - + searchEmbed.render(); const mockPort: any = { postMessage: jest.fn(), @@ -1079,44 +946,34 @@ describe('Unit test case for ts embed', () => { }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith({ - type: EmbedEvent.APP_INIT, - data: { - customisations: { - content: {}, - style: { - customCSS: {}, - customCSSUrl: undefined, - }, + expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({ + customisations: { + content: {}, + style: { + customCSS: {}, + customCSSUrl: undefined, }, - authToken: 'test_auth_token1', - runtimeFilterParams: null, - runtimeParameterParams: null, - hiddenHomeLeftNavItems: [], - hiddenHomepageModules: [], - hiddenListColumns: [], - customActions: [ - { - id: 'action2', - name: 'Another Valid Action', - target: CustomActionTarget.VIZ, - position: CustomActionsPosition.MENU, - metadataIds: { vizIds: ['viz456'] } - }, - { - id: 'action1', - name: 'Valid Action', - target: CustomActionTarget.LIVEBOARD, - position: CustomActionsPosition.PRIMARY, - metadataIds: { liveboardIds: ['lb123'] } - } - ], // Actions should be sorted by name - hostConfig: undefined, - reorderedHomepageModules: [], - customVariablesForThirdPartyTools: {}, }, - }); - + authToken: 'test_auth_token1', + customActions: [ + { + id: 'action2', + name: 'Another Valid Action', + target: CustomActionTarget.VIZ, + position: CustomActionsPosition.MENU, + metadataIds: { vizIds: ['viz456'] } + }, + { + id: 'action1', + name: 'Valid Action', + target: CustomActionTarget.LIVEBOARD, + position: CustomActionsPosition.PRIMARY, + metadataIds: { liveboardIds: ['lb123'] } + } + ], // Actions should be sorted by name + customVariablesForThirdPartyTools: {}, + })); + // Verify that CustomActionsValidationResult structure is // correct const appInitData = mockPort.postMessage.mock.calls[0][0].data; @@ -1137,7 +994,7 @@ describe('Unit test case for ts embed', () => { }) ]) ); - + // Verify actions are sorted by name (alphabetically) expect(appInitData.customActions[0].name).toBe('Another Valid Action'); expect(appInitData.customActions[1].name).toBe('Valid Action'); @@ -2444,7 +2301,7 @@ describe('Unit test case for ts embed', () => { }); afterAll((): void => { - window.location = location as any; + (window.location as any) = location; }); it('get url params for TS', () => { @@ -3362,7 +3219,7 @@ describe('Unit test case for ts embed', () => { new Error('Auth failed'), ); const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); - const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {}); + const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => { }); await searchEmbed.render(); await executeAfterWait(() => { expect(getRootEl().innerHTML).toContain('Not logged in'); @@ -3371,7 +3228,7 @@ describe('Unit test case for ts embed', () => { window.dispatchEvent(onlineEvent); }).not.toThrow(); }); - + errorSpy.mockReset(); }); @@ -3510,9 +3367,9 @@ describe('Unit test case for ts embed', () => { appEmbed.destroy(); - // Should be called immediately when waitForCleanupOnDestroy is true + // Should be called immediately when config is enabled expect(triggerSpy).toHaveBeenCalledWith(HostEvent.DestroyEmbed); - + // Wait for the timeout to complete await new Promise(resolve => setTimeout(resolve, 1100)); @@ -3535,7 +3392,7 @@ describe('Unit test case for ts embed', () => { await appEmbed.render(); // Mock trigger to resolve quickly (before timeout) - const triggerSpy = jest.spyOn(appEmbed, 'trigger').mockImplementation(() => + const triggerSpy = jest.spyOn(appEmbed, 'trigger').mockImplementation(() => new Promise(resolve => setTimeout(() => resolve(null), 100)) ); const removeChildSpy = jest.spyOn(Node.prototype, 'removeChild').mockImplementation(() => getRootEl()); @@ -3565,7 +3422,7 @@ describe('Unit test case for ts embed', () => { await appEmbed.render(); // Mock trigger to take longer than timeout - const triggerSpy = jest.spyOn(appEmbed, 'trigger').mockImplementation(() => + const triggerSpy = jest.spyOn(appEmbed, 'trigger').mockImplementation(() => new Promise(resolve => setTimeout(() => resolve(null), 500)) ); const removeChildSpy = jest.spyOn(Node.prototype, 'removeChild').mockImplementation(() => getRootEl()); @@ -3580,4 +3437,395 @@ describe('Unit test case for ts embed', () => { }); }); }); + + describe('handleApiInterceptEvent', () => { + beforeEach(() => { + document.body.innerHTML = getDocumentBody(); + init({ + thoughtSpotHost: 'tshost', + authType: AuthType.None, + }); + jest.clearAllMocks(); + mockHandleInterceptEvent.mockClear(); + }); + + test('should call handleInterceptEvent with correct parameters', async () => { + const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); + await searchEmbed.render(); + + const mockEventData = { + type: EmbedEvent.ApiIntercept, + data: JSON.stringify({ + input: '/prism/?op=GetChartWithData', + init: { + method: 'POST', + body: JSON.stringify({ + variables: { + session: { sessionId: 'session-123' }, + contextBookId: 'viz-456' + } + }) + } + }) + }; + + const mockPort: any = { + postMessage: jest.fn(), + }; + + await executeAfterWait(() => { + const iframe = getIFrameEl(); + postMessageToParent(iframe.contentWindow, mockEventData, mockPort); + }); + + await executeAfterWait(() => { + expect(mockHandleInterceptEvent).toHaveBeenCalledTimes(1); + const call = mockHandleInterceptEvent.mock.calls[0][0]; + expect(call.eventData).toEqual(mockEventData); + expect(call.executeEvent).toBeInstanceOf(Function); + expect(call.getUnsavedAnswerTml).toBeInstanceOf(Function); + expect(call.viewConfig).toMatchObject(defaultViewConfig); + }); + }); + + test('should execute callbacks through executeEvent function', async () => { + let capturedExecuteEvent: any; + mockHandleInterceptEvent.mockImplementation((params) => { + capturedExecuteEvent = params.executeEvent; + }); + + const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); + const mockCallback = jest.fn(); + searchEmbed.on(EmbedEvent.CustomAction, mockCallback); + await searchEmbed.render(); + + const mockEventData = { + type: EmbedEvent.ApiIntercept, + data: JSON.stringify({ + input: '/prism/?op=GetChartWithData', + init: {} + }) + }; + + const mockPort: any = { + postMessage: jest.fn(), + }; + + await executeAfterWait(() => { + const iframe = getIFrameEl(); + postMessageToParent(iframe.contentWindow, mockEventData, mockPort); + }); + + await executeAfterWait(() => { + expect(capturedExecuteEvent).toBeDefined(); + + // Simulate executeEvent being called by handleInterceptEvent + const testData = { test: 'data' }; + capturedExecuteEvent(EmbedEvent.CustomAction, testData); + + // executeEvent passes data as first param to callback + expect(mockCallback).toHaveBeenCalled(); + expect(mockCallback.mock.calls[0][0]).toEqual(testData); + }); + }); + + test('should call triggerUIPassThrough through getUnsavedAnswerTml function', async () => { + let capturedGetUnsavedAnswerTml: any; + mockHandleInterceptEvent.mockImplementation((params) => { + capturedGetUnsavedAnswerTml = params.getUnsavedAnswerTml; + }); + + const mockTmlResponse = { tml: 'test-tml-content' }; + mockProcessTrigger.mockResolvedValue([{ value: mockTmlResponse }]); + + const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); + await searchEmbed.render(); + + const mockEventData = { + type: EmbedEvent.ApiIntercept, + data: JSON.stringify({ + input: '/prism/?op=GetChartWithData', + init: {} + }) + }; + + const mockPort: any = { + postMessage: jest.fn(), + }; + + await executeAfterWait(() => { + const iframe = getIFrameEl(); + postMessageToParent(iframe.contentWindow, mockEventData, mockPort); + }); + + await executeAfterWait(async () => { + expect(capturedGetUnsavedAnswerTml).toBeDefined(); + + // Clear previous calls + mockProcessTrigger.mockClear(); + + // Simulate getUnsavedAnswerTml being called by + // handleInterceptEvent + const result = await capturedGetUnsavedAnswerTml({ + sessionId: 'session-123', + vizId: 'viz-456' + }); + + expect(mockProcessTrigger).toHaveBeenCalled(); + const callArgs = mockProcessTrigger.mock.calls[0]; + // Verify UIPassthrough event is triggered with the right params + expect(callArgs[1]).toBe('UiPassthrough'); + expect(callArgs[3]).toMatchObject({ + type: 'getUnsavedAnswerTML', + parameters: { + sessionId: 'session-123', + vizId: 'viz-456' + } + }); + expect(result).toEqual(mockTmlResponse); + }); + }); + + test('should pass viewConfig to handleInterceptEvent', async () => { + const customViewConfig = { + ...defaultViewConfig, + interceptUrls: ['/api/test'], + interceptTimeout: 5000, + }; + + const searchEmbed = new SearchEmbed(getRootEl(), customViewConfig); + await searchEmbed.render(); + + const mockEventData = { + type: EmbedEvent.ApiIntercept, + data: JSON.stringify({ + input: '/api/test', + init: {} + }) + }; + + const mockPort: any = { + postMessage: jest.fn(), + }; + + await executeAfterWait(() => { + const iframe = getIFrameEl(); + postMessageToParent(iframe.contentWindow, mockEventData, mockPort); + }); + + await executeAfterWait(() => { + const call = mockHandleInterceptEvent.mock.calls[0][0]; + expect(call.viewConfig).toMatchObject({ + interceptUrls: ['/api/test'], + interceptTimeout: 5000, + }); + }); + }); + + test('should handle ApiIntercept event with eventPort', async () => { + const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); + await searchEmbed.render(); + + const mockEventData = { + type: EmbedEvent.ApiIntercept, + data: JSON.stringify({ + input: '/prism/?op=GetChartWithData', + init: {} + }) + }; + + const mockPort: any = { + postMessage: jest.fn(), + }; + + await executeAfterWait(() => { + const iframe = getIFrameEl(); + postMessageToParent(iframe.contentWindow, mockEventData, mockPort); + }); + + await executeAfterWait(() => { + expect(mockHandleInterceptEvent).toHaveBeenCalled(); + + // Verify the executeEvent function uses the port + const executeEventFn = mockHandleInterceptEvent.mock.calls[0][0].executeEvent; + expect(executeEventFn).toBeDefined(); + }); + }); + + test('should not process non-ApiIntercept events through handleApiInterceptEvent', async () => { + const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); + await searchEmbed.render(); + + const mockEventData = { + type: EmbedEvent.Save, + data: { answerId: '123' }, + }; + + const mockPort: any = { + postMessage: jest.fn(), + }; + + await executeAfterWait(() => { + const iframe = getIFrameEl(); + postMessageToParent(iframe.contentWindow, mockEventData, mockPort); + }); + + await executeAfterWait(() => { + expect(mockHandleInterceptEvent).not.toHaveBeenCalled(); + }); + }); + + test('should handle multiple ApiIntercept events', async () => { + const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); + await searchEmbed.render(); + + const mockEventData1 = { + type: EmbedEvent.ApiIntercept, + data: JSON.stringify({ + input: '/prism/?op=GetChartWithData', + init: {} + }) + }; + + const mockEventData2 = { + type: EmbedEvent.ApiIntercept, + data: JSON.stringify({ + input: '/prism/?op=LoadContextBook', + init: {} + }) + }; + + const mockPort: any = { + postMessage: jest.fn(), + }; + + await executeAfterWait(() => { + const iframe = getIFrameEl(); + postMessageToParent(iframe.contentWindow, mockEventData1, mockPort); + }); + + await executeAfterWait(() => { + postMessageToParent(getIFrameEl().contentWindow, mockEventData2, mockPort); + }); + + await executeAfterWait(() => { + expect(mockHandleInterceptEvent).toHaveBeenCalledTimes(2); + }); + }); + + test('should pass eventPort to executeCallbacks', async () => { + let capturedExecuteEvent: any; + mockHandleInterceptEvent.mockImplementation((params) => { + capturedExecuteEvent = params.executeEvent; + }); + + const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); + const mockCallback = jest.fn(); + searchEmbed.on(EmbedEvent.ApiIntercept, mockCallback); + await searchEmbed.render(); + + const mockEventData = { + type: EmbedEvent.ApiIntercept, + data: JSON.stringify({ + input: '/prism/?op=GetChartWithData', + init: {} + }) + }; + + const mockPort: any = { + postMessage: jest.fn(), + }; + + await executeAfterWait(() => { + const iframe = getIFrameEl(); + postMessageToParent(iframe.contentWindow, mockEventData, mockPort); + }); + + await executeAfterWait(() => { + expect(capturedExecuteEvent).toBeDefined(); + + // Call executeEvent with a response + const responseData = { execute: true }; + capturedExecuteEvent(EmbedEvent.ApiIntercept, responseData); + + // Verify the callback was invoked with the data + expect(mockCallback).toHaveBeenCalled(); + expect(mockCallback.mock.calls[0][0]).toEqual(responseData); + }); + }); + + test('should handle getUnsavedAnswerTml with empty response', async () => { + let capturedGetUnsavedAnswerTml: any; + mockHandleInterceptEvent.mockImplementation((params) => { + capturedGetUnsavedAnswerTml = params.getUnsavedAnswerTml; + }); + + mockProcessTrigger.mockResolvedValue([]); + + const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); + await searchEmbed.render(); + + const mockEventData = { + type: EmbedEvent.ApiIntercept, + data: JSON.stringify({ + input: '/prism/?op=GetChartWithData', + init: {} + }) + }; + + const mockPort: any = { + postMessage: jest.fn(), + }; + + await executeAfterWait(() => { + const iframe = getIFrameEl(); + postMessageToParent(iframe.contentWindow, mockEventData, mockPort); + }); + + await executeAfterWait(async () => { + expect(capturedGetUnsavedAnswerTml).toBeDefined(); + + const result = await capturedGetUnsavedAnswerTml({ + sessionId: 'session-123', + vizId: 'viz-456' + }); + + expect(result).toBeUndefined(); + }); + }); + + test('should work with LiveboardEmbed', async () => { + const liveboardEmbed = new LiveboardEmbed(getRootEl(), { + ...defaultViewConfig, + liveboardId: 'test-liveboard-id', + }); + await liveboardEmbed.render(); + + const mockEventData = { + type: EmbedEvent.ApiIntercept, + data: JSON.stringify({ + input: '/prism/?op=LoadContextBook', + init: {} + }) + }; + + const mockPort: any = { + postMessage: jest.fn(), + }; + + await executeAfterWait(() => { + const iframe = getIFrameEl(); + postMessageToParent(iframe.contentWindow, mockEventData, mockPort); + }); + + await executeAfterWait(() => { + expect(mockHandleInterceptEvent).toHaveBeenCalledTimes(1); + expect(mockHandleInterceptEvent).toHaveBeenCalledWith( + expect.objectContaining({ + eventData: mockEventData, + }) + ); + }); + }); + }); }); diff --git a/src/embed/ts-embed.ts b/src/embed/ts-embed.ts index d7c185ef9..1687fe5a7 100644 --- a/src/embed/ts-embed.ts +++ b/src/embed/ts-embed.ts @@ -71,6 +71,7 @@ import { getEmbedConfig } from './embedConfig'; import { ERROR_MESSAGE } from '../errors'; import { getPreauthInfo } from '../utils/sessionInfoService'; import { HostEventClient } from './hostEventClient/host-event-client'; +import { getInterceptInitData, handleInterceptEvent, processApiInterceptResponse, processLegacyInterceptResponse } from '../api-intercept'; const { version } = pkgInfo; @@ -201,7 +202,7 @@ export class TsEmbed { }); const embedConfig = getEmbedConfig(); this.embedConfig = embedConfig; - + this.hostEventClient = new HostEventClient(this.iFrame); this.isReadyForRenderPromise = getInitPromise().then(async () => { if (!embedConfig.authTriggerContainer && !embedConfig.useEventForSAMLPopup) { @@ -336,33 +337,53 @@ export class TsEmbed { this.subscribedListeners.offline = offlineEventListener; } + private handleApiInterceptEvent({ eventData, eventPort }: { eventData: any, eventPort: MessagePort | void }) { + const executeEvent = (_eventType: EmbedEvent, data: any) => { + this.executeCallbacks(_eventType, data, eventPort); + } + const getUnsavedAnswerTml = async (props: { sessionId?: string, vizId?: string }) => { + const response = await this.triggerUIPassThrough(UIPassthroughEvent.GetUnsavedAnswerTML, props); + return response.filter((item) => item.value)?.[0]?.value; + } + handleInterceptEvent({ eventData, executeEvent, viewConfig: this.viewConfig, getUnsavedAnswerTml }); + } + + private messageEventListener = (event: MessageEvent) => { + const eventType = this.getEventType(event); + const eventPort = this.getEventPort(event); + const eventData = this.formatEventData(event, eventType); + if (event.source === this.iFrame.contentWindow) { + const processedEventData = processEventData( + eventType, + eventData, + this.thoughtSpotHost, + this.isPreRendered ? this.preRenderWrapper : this.el, + ); + + if (eventType === EmbedEvent.ApiIntercept) { + this.handleApiInterceptEvent({ eventData, eventPort }); + return; + } + + this.executeCallbacks( + eventType, + processedEventData, + eventPort, + ); + } + }; /** * Subscribe to message events that depend on successful iframe setup */ private subscribeToMessageEvents() { this.unsubscribeToMessageEvents(); - const messageEventListener = (event: MessageEvent) => { - const eventType = this.getEventType(event); - const eventPort = this.getEventPort(event); - const eventData = this.formatEventData(event, eventType); - if (event.source === this.iFrame.contentWindow) { - this.executeCallbacks( - eventType, - processEventData( - eventType, - eventData, - this.thoughtSpotHost, - this.isPreRendered ? this.preRenderWrapper : this.el, - ), - eventPort, - ); - } - }; - window.addEventListener('message', messageEventListener); + window.addEventListener('message', this.messageEventListener); - this.subscribedListeners.message = messageEventListener; + this.subscribedListeners.message = this.messageEventListener; } + + /** * Adds event listeners for both network and message events. * This maintains backward compatibility with the existing method. @@ -376,6 +397,7 @@ export class TsEmbed { this.subscribeToMessageEvents(); } + private unsubscribeToNetworkEvents() { if (this.subscribedListeners.online) { window.removeEventListener('online', this.subscribedListeners.online); @@ -426,7 +448,7 @@ export class TsEmbed { message: customActionsResult.errors, }); } - return { + const baseInitData = { customisations: getCustomisations(this.embedConfig, this.viewConfig), authToken, runtimeFilterParams: this.viewConfig.excludeRuntimeFiltersfromURL @@ -445,7 +467,10 @@ export class TsEmbed { this.embedConfig.customVariablesForThirdPartyTools || {}, hiddenListColumns: this.viewConfig.hiddenListColumns || [], customActions: customActionsResult.actions, + ...getInterceptInitData(this.viewConfig), }; + + return baseInitData; } protected async getAppInitData() { @@ -557,7 +582,7 @@ export class TsEmbed { protected getUpdateEmbedParamsObject() { let queryParams = this.getEmbedParamsObject(); - queryParams = { ...this.viewConfig, ...queryParams }; + queryParams = { ...this.viewConfig, ...queryParams, ...this.getAppInitData() }; return queryParams; } @@ -1023,6 +1048,30 @@ export class TsEmbed { this.iFrame.style.height = getCssDimension(height); } + /** + * We can process the customer given payload before sending it to the embed port + * Embed event handler -> responder -> createEmbedEventResponder -> send response + * @param eventPort The event port for a specific MessageChannel + * @param eventType The event type + * @returns + */ + protected createEmbedEventResponder = (eventPort: MessagePort | void, eventType: EmbedEvent) => { + + const getPayloadToSend = (payload: any) => { + if (eventType === EmbedEvent.OnBeforeGetVizDataIntercept) { + return processLegacyInterceptResponse(payload); + } + if (eventType === EmbedEvent.ApiIntercept) { + return processApiInterceptResponse(payload); + } + return payload; + } + return (payload: any) => { + const payloadToSend = getPayloadToSend(payload); + this.triggerEventOnPort(eventPort, payloadToSend); + } + } + /** * Executes all registered event handlers for a particular event type * @param eventType The event type @@ -1047,9 +1096,8 @@ export class TsEmbed { // payload || (!callbackObj.options.start && dataStatus === embedEventStatus.END) ) { - callbackObj.callback(data, (payload) => { - this.triggerEventOnPort(eventPort, payload); - }); + const responder = this.createEmbedEventResponder(eventPort, eventType); + callbackObj.callback(data, responder); } }); } @@ -1191,12 +1239,12 @@ export class TsEmbed { } } - /** - * @hidden - * Internal state to track if the embed container is loaded. - * This is used to trigger events after the embed container is loaded. - */ - public isEmbedContainerLoaded = false; + /** + * @hidden + * Internal state to track if the embed container is loaded. + * This is used to trigger events after the embed container is loaded. + */ + public isEmbedContainerLoaded = false; /** * @hidden @@ -1348,7 +1396,7 @@ export class TsEmbed { } this.isPreRendered = true; this.showPreRenderByDefault = showPreRenderByDefault; - + const isAlreadyRendered = this.connectPreRendered(); if (isAlreadyRendered && !replaceExistingPreRender) { return this; diff --git a/src/index.ts b/src/index.ts index 9b4c18fde..9d38a3a54 100644 --- a/src/index.ts +++ b/src/index.ts @@ -64,6 +64,7 @@ import { ListPageColumns, CustomActionsPosition, CustomActionTarget, + InterceptedApiType, } from './types'; import { CustomCssVariables } from './css-variables'; import { SageEmbed, SageViewConfig } from './embed/sage'; @@ -152,6 +153,7 @@ export { DataPanelCustomColumnGroupsAccordionState, CustomActionsPosition, CustomActionTarget, + InterceptedApiType, }; export { resetCachedAuthToken } from './authToken'; diff --git a/src/react/all-types-export.ts b/src/react/all-types-export.ts index edf35b594..eee507bfc 100644 --- a/src/react/all-types-export.ts +++ b/src/react/all-types-export.ts @@ -59,6 +59,7 @@ export { resetCachedAuthToken, UIPassthroughEvent, DataPanelCustomColumnGroupsAccordionState, + InterceptedApiType, CustomActionsPosition, CustomActionTarget, } from '../index'; diff --git a/src/types.ts b/src/types.ts index c1fa5ae75..a12f1d0c4 100644 --- a/src/types.ts +++ b/src/types.ts @@ -739,7 +739,7 @@ export interface FrameParams { /** * The common configuration object for an embedded view. */ -export interface BaseViewConfig { +export interface BaseViewConfig extends ApiInterceptFlags { /** * @hidden */ @@ -2743,21 +2743,24 @@ export enum EmbedEvent { * Prerequisite: Set `isOnBeforeGetVizDataInterceptEnabled` to `true` * for this embed event to get emitted. - * @param: payload - * @param: responder + * @param:payload The payload received from the embed related to the Data API call. + * @param:responder * Contains elements that lets developers define whether ThoughtSpot * should run the search, and if not, what error message * should be shown to the user. * - * execute: When execute returns `true`, the search will be run. + * `execute` - When execute returns `true`, the search will be run. * When execute returns `false`, the search will not be executed. * - * error: Developers can customize the error message text when `execute` - * returns `false` using the error parameter in responder. + * `error` - Developers can customize the error message text when `execute` + * is `false` using the `errorText` and `errorDescription` parameters in responder. + * + * `errorText` - The error message text to be shown to the user. + * `errorDescription (ThoughtSpot: 10.15.0.cl and above)` - The error description to be shown to the user. * @version SDK : 1.29.0 | ThoughtSpot: 10.3.0.cl * @example *```js - * .on(EmbedEvent.OnBeforeGetVizDataIntercept, + * embed.on(EmbedEvent.OnBeforeGetVizDataIntercept, * (payload, responder) => { * responder({ * data: { @@ -2773,7 +2776,7 @@ export enum EmbedEvent { * ``` * *```js - * .on(EmbedEvent.OnBeforeGetVizDataIntercept, + * embed.on(EmbedEvent.OnBeforeGetVizDataIntercept, * (payload, responder) => { * const query = payload.data.data.answer.search_query * responder({ @@ -2784,7 +2787,8 @@ export enum EmbedEvent { * error: { * //Provide a custom error message to explain to your end user * // why their search did not run, and which searches are accepted by your custom logic. - * errorText: "You can't use this query :" + query + ". + * errorText: "Error Occurred", + * errorDescription: "You can't use this query :" + query + ". * The 'sales' measures can never be used at the 'county' level. * Please try another measure, or remove 'county' from your search." * } @@ -2977,6 +2981,72 @@ export enum EmbedEvent { * @version SDK: 1.41.0 | ThoughtSpot: 10.12.0.cl */ OrgSwitched = 'orgSwitched', + /** + * Emitted when the user intercepts a URL. + * + * Supported on all embed types. + * + * @example + * + * ```js + * embed.on(EmbedEvent.ApiIntercept, (payload, responder) => { + * console.log('payload', payload); + * responder({ + * data: { + * execute: false, + * error: { + * errorText: 'Error Occurred', + * } + * } + * }) + * }) + * ``` + * + * ```js + * // We can also send a response for the intercepted api + * embed.on(EmbedEvent.ApiIntercept, (payload, responder) => { + * console.log('payload', payload); + * responder({ + * data: { + * execute: false, + * response: { + * body: { + * data: { + * // Some api response + * }, + * } + * } + * } + * }) + * }) + * + * // here embed will use the response from the responder as the response for the api + * ``` + * + * ```js + * // We can also send error in response for the intercepted api + * embed.on(EmbedEvent.ApiIntercept, (payload, responder) => { + * console.log('payload', payload); + * responder({ + * data: { + * execute: false, + * response: { + * body: { + * errors: [{ + * title: 'Error Occurred', + * description: 'Error Description', + * isUserError: true, + * }], + * data: {}, + * }, + * } + * } + * }) + * }) + * ``` + * @version SDK: 1.43.0 | ThoughtSpot: 10.15.0.cl + */ + ApiIntercept = 'ApiIntercept', } /** @@ -4344,7 +4414,7 @@ export enum HostEvent { * The different visual modes that the data sources panel within * search could appear in, such as hidden, collapsed, or expanded. */ - + export enum DataSourceVisualMode { /** * The data source panel is hidden. @@ -4364,7 +4434,7 @@ export enum DataSourceVisualMode { * The query params passed down to the embedded ThoughtSpot app * containing configuration and/or visual information. */ - + export enum Param { EmbedApp = 'embedApp', DataSources = 'dataSources', @@ -4521,7 +4591,7 @@ export enum Param { * ``` * See also link:https://developers.thoughtspot.com/docs/actions[Action IDs in the SDK] */ - + export enum Action { /** * The **Save** action on an Answer or Liveboard. @@ -6031,4 +6101,69 @@ export interface DefaultAppInitData { customVariablesForThirdPartyTools: Record; hiddenListColumns: ListPageColumns[]; customActions: CustomAction[]; + interceptTimeout: number | undefined; + interceptUrls: (string | InterceptedApiType)[]; +} + +/** + * Enum for the type of API intercepted + */ +export enum InterceptedApiType { + /** + * The apis that are use to get the data for the embed + */ + AnswerData = 'AnswerData', + /** + * This will intercept all the apis + */ + ALL = 'ALL', + /** + * The apis that are use to get the data for the liveboard + */ + LiveboardData = 'LiveboardData', +} + + +export type ApiInterceptFlags = { + /** + * Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`. + * + * Can be used for Serach and App Embed from SDK 1.29.0 + * + * @version SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl + */ + isOnBeforeGetVizDataInterceptEnabled?: boolean; + /** + * This allows to intercept the urls passed, once intercepted the api will only + * run based on the reponse from the responder of ApiIntercept event. + * + * @example + * ```js + * const embed = new LiveboardEmbed('#embed', { + * ...viewConfig, + * enableApiIntercept: true, + * interceptUrls: [InterceptedApiType.DATA], + * }) + * ``` + * + * @version SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl + */ + interceptUrls?: (string | InterceptedApiType)[]; + /** + * The timeout for the intercept, default is 30000ms + * the api will error out if the timeout is reached + * + * @example + * ```js + * const embed = new LiveboardEmbed('#embed', { + * ...viewConfig, + * enableApiIntercept: true, + * interceptUrls: [InterceptedApiType.ALL], + * interceptTimeout: 1000, + * }) + * ``` + * + * @version SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl + */ + interceptTimeout?: number; } diff --git a/src/utils/logger.ts b/src/utils/logger.ts index d52c6730d..86f10dc94 100644 --- a/src/utils/logger.ts +++ b/src/utils/logger.ts @@ -1,4 +1,3 @@ -import { isUndefined } from '../utils'; import { LogLevel } from '../types'; const logFunctions: { @@ -42,7 +41,7 @@ class Logger { public canLog(logLevel: LogLevel): boolean { if (logLevel === LogLevel.SILENT) return false; - if (!isUndefined(globalLogLevelOverride)) { + if (globalLogLevelOverride !== undefined) { return compareLogLevels(globalLogLevelOverride, logLevel) >= 0; } return compareLogLevels(this.logLevel, logLevel) >= 0; diff --git a/src/utils/processData.spec.ts b/src/utils/processData.spec.ts index beb06d81a..5f4dc3c61 100644 --- a/src/utils/processData.spec.ts +++ b/src/utils/processData.spec.ts @@ -1,4 +1,3 @@ -import { disable } from 'mixpanel-browser'; import * as processDataInstance from './processData'; import * as answerServiceInstance from './graphql/answerService/answerService'; import * as auth from '../auth'; diff --git a/src/utils/processData.ts b/src/utils/processData.ts index 2d06c5bac..5f34f0066 100644 --- a/src/utils/processData.ts +++ b/src/utils/processData.ts @@ -10,7 +10,6 @@ import { AuthType, CustomActionPayload, EmbedEvent } from '../types'; import { AnswerService } from './graphql/answerService/answerService'; import { resetCachedAuthToken } from '../authToken'; import { ERROR_MESSAGE } from '../errors'; -import { logger } from '../utils/logger'; import { handleExitPresentMode } from '../utils'; import { resetCachedPreauthInfo, resetCachedSessionInfo } from './sessionInfoService'; @@ -21,7 +20,7 @@ import { resetCachedPreauthInfo, resetCachedSessionInfo } from './sessionInfoSer function processExitPresentMode(e: any) { const embedConfig = getEmbedConfig(); const disableFullscreenPresentation = embedConfig?.disableFullscreenPresentation ?? true; - + if (!disableFullscreenPresentation) { handleExitPresentMode(); } @@ -103,7 +102,7 @@ export function processAuthFailure(e: any, containerEl: Element) { const { loginFailedMessage, authType, disableLoginFailurePage, autoLogin, } = getEmbedConfig(); - + const isEmbeddedSSO = authType === AuthType.EmbeddedSSO; const isTrustedAuth = authType === AuthType.TrustedAuthToken || authType === AuthType.TrustedAuthTokenCookieless; const isEmbeddedSSOInfoFailure = isEmbeddedSSO && e?.data?.type === AuthFailureType.UNAUTHENTICATED_FAILURE; @@ -144,26 +143,26 @@ function processAuthLogout(e: any, containerEl: Element) { */ export function processEventData( type: EmbedEvent, - e: any, + eventData: any, thoughtSpotHost: string, containerEl: Element, ): any { switch (type) { case EmbedEvent.CustomAction: - return processCustomAction(e, thoughtSpotHost); + return processCustomAction(eventData, thoughtSpotHost); case EmbedEvent.AuthInit: - return processAuthInit(e); + return processAuthInit(eventData); case EmbedEvent.NoCookieAccess: - return processNoCookieAccess(e, containerEl); + return processNoCookieAccess(eventData, containerEl); case EmbedEvent.AuthFailure: - return processAuthFailure(e, containerEl); + return processAuthFailure(eventData, containerEl); case EmbedEvent.AuthLogout: - return processAuthLogout(e, containerEl); + return processAuthLogout(eventData, containerEl); case EmbedEvent.ExitPresentMode: - return processExitPresentMode(e); + return processExitPresentMode(eventData); case EmbedEvent.CLEAR_INFO_CACHE: return processClearInfoCache(); default: } - return e; + return eventData; } From fac9f2e14bcd01d4c8a7eb1ecb392baa170fb607 Mon Sep 17 00:00:00 2001 From: koradauday-wq Date: Fri, 14 Nov 2025 10:33:46 +0530 Subject: [PATCH 31/31] [SCAL-281270] - Update the release version in embed app documentation for data-panel-v2 from 1.43.0 to 1.41.1 --- src/embed/conversation.ts | 2 +- src/types.ts | 343 +- static/typedoc/typedoc.json | 8434 ++++++++++++++++++++--------------- 3 files changed, 4942 insertions(+), 3837 deletions(-) diff --git a/src/embed/conversation.ts b/src/embed/conversation.ts index 1fc0d1d26..df13ba1c6 100644 --- a/src/embed/conversation.ts +++ b/src/embed/conversation.ts @@ -62,7 +62,7 @@ export interface SpotterEmbedViewConfig extends Omit with embed component name. For example, SageEmbed, AppEmbed, or SearchBarEmbed diff --git a/src/types.ts b/src/types.ts index a12f1d0c4..721253b15 100644 --- a/src/types.ts +++ b/src/types.ts @@ -14,7 +14,7 @@ import type { SessionInterface } from './utils/graphql/answerService/answerServi * the embedded app * @group Authentication / Init */ - + export enum AuthType { /** * No authentication on the SDK. Pass-through to the embedded App. Alias for @@ -262,7 +262,7 @@ export interface customCssInterface { * }; * ``` */ - + rules_UNSTABLE?: { [selector: string]: { [declaration: string]: string; @@ -681,12 +681,12 @@ export interface EmbedConfig { * ... // other embed config options * customActions: [ * { - * name: 'customAction', + * name: 'customAction', * id: 'customAction', * target: CustomActionTarget.VISUALIZATION, * position: CustomActionPosition.PRIMARY, * } - * } + * } * ] * }) * ``` @@ -708,7 +708,7 @@ export interface EmbedConfig { } // eslint-disable-next-line @typescript-eslint/no-empty-object-type -export interface LayoutConfig { } +export interface LayoutConfig {} /** * Embedded iframe configuration @@ -770,7 +770,7 @@ export interface BaseViewConfig extends ApiInterceptFlags { /** * @hidden */ - + styleSheet__unstable?: string; /** * The list of actions to disable from the primary menu, more menu @@ -970,7 +970,7 @@ export interface BaseViewConfig extends ApiInterceptFlags { * ``` * @version SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl */ - + enableV2Shell_experimental?: boolean; /** * For internal tracking of the embed component type. @@ -1058,7 +1058,7 @@ export interface BaseViewConfig extends ApiInterceptFlags { /** * Show alert messages and toast messages in the embed. * Supported embed in all embed types. - * + * * @version SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw * @example * ```js @@ -1075,7 +1075,7 @@ export interface BaseViewConfig extends ApiInterceptFlags { * actions enable users to trigger custom workflows — such as navigating to an * external app, calling an API, or opening a modal — based on the data context of * what they clicked can be used to trigger custom logic when the action is clicked. - * + * * Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SageEmbed`, `SearchEmbed`, `SpotterEmbed` * @version SDK: 1.43.0 | ThoughtSpot: 10.14.0.cl * @example @@ -1086,12 +1086,12 @@ export interface BaseViewConfig extends ApiInterceptFlags { * ... // other embed config options * customActions: [ * { - * name: 'customAction', + * name: 'customAction', * id: 'customAction', * target: CustomActionTarget.VISUALIZATION, * position: CustomActionPosition.PRIMARY, * } - * } + * } * ] * }) * ``` @@ -1107,7 +1107,7 @@ export interface HomePageConfig { * Hide list page columns * For example: hiddenListColumns = [ListPageColumns.Author] * - * **Note**: This option is currently available only in full app embedding and requires importing the ListPageColumns enum. + * **Note**: This option is currently available only in full app embedding and requires importing the ListPageColumns enum. * At present, it can be used with Liveboard and Answer list pages, and starting with version 10.14.0.cl, it will also be supported for the Home page. * * Supported embed types: `AppEmbed` @@ -1115,7 +1115,7 @@ export interface HomePageConfig { * @example * ```js * import { ListPageColumns } from '@thoughtspot/visual-embed-sdk'; - * + * * const embed = new AppEmbed('#tsEmbed', { * ... //other embed view config * hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author], @@ -1137,7 +1137,7 @@ export interface HomePageConfig { * @example * ```js * import { HomepageModule } from '@thoughtspot/visual-embed-sdk'; - * + * * const embed = new AppEmbed('#tsEmbed', { * ... //other embed view config * hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning], @@ -1159,7 +1159,7 @@ export interface HomePageConfig { * @example * ```js * import { HomepageModule } from '@thoughtspot/visual-embed-sdk'; - * + * * const embed = new AppEmbed('#tsEmbed', { * ... //other embed view config * reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary], @@ -1176,7 +1176,7 @@ export interface HomePageConfig { * @example * ```js * import { HomeLeftNavItem } from '@thoughtspot/visual-embed-sdk'; - * + * * const embed = new AppEmbed('#tsEmbed', { * ... //other embed view config * hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers], @@ -1295,7 +1295,7 @@ export interface SearchLiveboardCommonViewConfig { * * Supported embed types: `SageEmbed`, `AppEmbed`, `SearchBarEmbed`, `LiveboardEmbed`, `SearchEmbed` * @default true - * @version SDK: 1.43.0 | ThoughtSpot Cloud: 10.14.0.cl + * @version SDK: 1.41.1 | ThoughtSpot Cloud: 10.14.0.cl * @example * ```js * // Replace with embed component name. For example, SageEmbed, AppEmbed, or SearchBarEmbed @@ -1444,7 +1444,7 @@ export interface LiveboardAppEmbedViewConfig { showLiveboardVerifiedBadge?: boolean; /** * This flag is used to enable/disable hide irrelevant filters in Liveboard tab - * + * * **Note**: This feature is supported only if compact header is enabled on your Liveboard. To enable compact header, use the `isLiveboardCompactHeaderEnabled` attribute. * * Supported embed types: `AppEmbed`, `LiveboardEmbed` @@ -1495,20 +1495,20 @@ export interface LiveboardAppEmbedViewConfig { */ enableAskSage?: boolean; /** - * This flag is used to show or hide checkboxes for including or excluding - * the cover and filters pages in the Liveboard PDF. - * - * Supported embed types: `AppEmbed`, `LiveboardEmbed` - * @version SDK: 1.40.0 | ThoughtSpot:10.8.0.cl - * @example - * ```js - * // Replace with embed component name. For example, AppEmbed or LiveboardEmbed - * const embed = new ('#tsEmbed', { - * ... // other embed view config - * coverAndFilterOptionInPDF: false, - * }) - * ``` - */ + * This flag is used to show or hide checkboxes for including or excluding + * the cover and filters pages in the Liveboard PDF. + * + * Supported embed types: `AppEmbed`, `LiveboardEmbed` + * @version SDK: 1.40.0 | ThoughtSpot:10.8.0.cl + * @example + * ```js + * // Replace with embed component name. For example, AppEmbed or LiveboardEmbed + * const embed = new ('#tsEmbed', { + * ... // other embed view config + * coverAndFilterOptionInPDF: false, + * }) + * ``` + */ coverAndFilterOptionInPDF?: boolean; /** * This flag is used to enable or disable the XLSX/CSV download option for Liveboards. @@ -1576,7 +1576,11 @@ export interface LiveboardAppEmbedViewConfig { isEnhancedFilterInteractivityEnabled?: boolean; } -export interface AllEmbedViewConfig extends BaseViewConfig, SearchLiveboardCommonViewConfig, HomePageConfig, LiveboardAppEmbedViewConfig { } +export interface AllEmbedViewConfig + extends BaseViewConfig, + SearchLiveboardCommonViewConfig, + HomePageConfig, + LiveboardAppEmbedViewConfig {} /** * MessagePayload: Embed event payload: message type, data and status (start/end) @@ -1637,7 +1641,7 @@ export type QueryParams = { /** * A map of the supported runtime filter operations */ - + export enum RuntimeFilterOp { /** * Equals @@ -1708,7 +1712,7 @@ export enum RuntimeFilterOp { * `modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl). * @version SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw */ - + export enum HomepageModule { /** * Search bar @@ -1741,7 +1745,7 @@ export enum HomepageModule { * **Note**: This option is applicable to full app embedding only. * @version SDK: 1.38.0 | ThoughtSpot: 10.9.0.cl */ - + export enum ListPageColumns { /** * Favourite @@ -1839,7 +1843,7 @@ export interface RuntimeParameter { * ``` * @group Events */ - + export enum EmbedEvent { /** * Rendering has initialized. @@ -2852,17 +2856,17 @@ export enum EmbedEvent { */ TableVizRendered = 'TableVizRendered', /** - * Emitted when the liveboard is created from pin modal or Liveboard list page. - * You can use this event as a hook to trigger - * other events on liveboard creation. - * - * ```js - * liveboardEmbed.on(EmbedEvent.CreateLiveboard, (payload) => { - * console.log('payload', payload); - * }) - *``` - * @version SDK : 1.37.0 | ThoughtSpot: 10.8.0.cl - */ + * Emitted when the liveboard is created from pin modal or Liveboard list page. + * You can use this event as a hook to trigger + * other events on liveboard creation. + * + * ```js + * liveboardEmbed.on(EmbedEvent.CreateLiveboard, (payload) => { + * console.log('payload', payload); + * }) + *``` + * @version SDK : 1.37.0 | ThoughtSpot: 10.8.0.cl + */ CreateLiveboard = 'createLiveboard', /** * Emitted when a user creates a Model. @@ -2985,9 +2989,9 @@ export enum EmbedEvent { * Emitted when the user intercepts a URL. * * Supported on all embed types. - * + * * @example - * + * * ```js * embed.on(EmbedEvent.ApiIntercept, (payload, responder) => { * console.log('payload', payload); @@ -3001,7 +3005,7 @@ export enum EmbedEvent { * }) * }) * ``` - * + * * ```js * // We can also send a response for the intercepted api * embed.on(EmbedEvent.ApiIntercept, (payload, responder) => { @@ -3019,10 +3023,10 @@ export enum EmbedEvent { * } * }) * }) - * + * * // here embed will use the response from the responder as the response for the api * ``` - * + * * ```js * // We can also send error in response for the intercepted api * embed.on(EmbedEvent.ApiIntercept, (payload, responder) => { @@ -3102,7 +3106,7 @@ export enum EmbedEvent { * ``` * @group Events */ - + export enum HostEvent { /** * Triggers a search operation with the search tokens specified in @@ -3515,14 +3519,14 @@ export enum HostEvent { * ``` * @example * ```js - * // You can use the Data event dispatched on each answer creation to get the vizId and use in MakeACopy host event. - * let latestSpotterVizId = ''; - * spotterEmbed.on(EmbedEvent.Data, (payload) => { - * latestSpotterVizId = payload.data.id; - * }); - * - * spotterEmbed.trigger(HostEvent.MakeACopy, { vizId: latestSpotterVizId }); - * ``` + * // You can use the Data event dispatched on each answer creation to get the vizId and use in MakeACopy host event. + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; + * }); + * + * spotterEmbed.trigger(HostEvent.MakeACopy, { vizId: latestSpotterVizId }); + * ``` * @version SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1.sw */ MakeACopy = 'makeACopy', @@ -3596,7 +3600,7 @@ export enum HostEvent { * @param - object - To trigger the action for a specific visualization * in Liveboard embed, pass in `vizId` as a key. * @param - `vizId` refers to the Answer ID in Spotter embed and is required in Spotter embed. - * + * * @example * ```js * liveboardEmbed.trigger(HostEvent.Edit) @@ -3746,14 +3750,14 @@ export enum HostEvent { * embed.trigger(HostEvent.Download) * ``` * ```js - * // You can use the Data event dispatched on each answer creation to get the vizId and use in Download host event. - * let latestSpotterVizId = ''; - * spotterEmbed.on(EmbedEvent.Data, (payload) => { - * latestSpotterVizId = payload.data.id; - * }); - * - * spotterEmbed.trigger(HostEvent.Download, { vizId: latestSpotterVizId }); - * ``` + * // You can use the Data event dispatched on each answer creation to get the vizId and use in Download host event. + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; + * }); + * + * spotterEmbed.trigger(HostEvent.Download, { vizId: latestSpotterVizId }); + * ``` * @deprecated from SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl ,9.4.1.sw * Use {@link DownloadAsPng} * @version SDK: 1.19.0 | ThoughtSpot: 9.0.0.cl, 9.0.1.sw @@ -3770,16 +3774,16 @@ export enum HostEvent { * vizEmbed.trigger(HostEvent.DownloadAsPng) * * searchEmbed.trigger(HostEvent.DownloadAsPng) - * - * // You can use the Data event dispatched on each answer creation to get the vizId and use in DownloadAsPng host event. - * let latestSpotterVizId = ''; - * spotterEmbed.on(EmbedEvent.Data, (payload) => { - * latestSpotterVizId = payload.data.id; - * }); - * - * spotterEmbed.trigger(HostEvent.DownloadAsPng, { vizId: latestSpotterVizId }); + * + * // You can use the Data event dispatched on each answer creation to get the vizId and use in DownloadAsPng host event. + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; + * }); + * + * spotterEmbed.trigger(HostEvent.DownloadAsPng, { vizId: latestSpotterVizId }); * ``` - * + * * @version SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl, 9.4.1.sw */ DownloadAsPng = 'downloadAsPng', @@ -3799,13 +3803,13 @@ export enum HostEvent { * searchEmbed.trigger(HostEvent.DownloadAsCsv) * ``` * ```js - * // You can use the Data event dispatched on each answer creation to get the vizId and use in DownloadAsCsv host event. - * let latestSpotterVizId = ''; - * spotterEmbed.on(EmbedEvent.Data, (payload) => { - * latestSpotterVizId = payload.data.id; - * }); - * - * spotterEmbed.trigger(HostEvent.DownloadAsCsv, { vizId: latestSpotterVizId }); + * // You can use the Data event dispatched on each answer creation to get the vizId and use in DownloadAsCsv host event. + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; + * }); + * + * spotterEmbed.trigger(HostEvent.DownloadAsCsv, { vizId: latestSpotterVizId }); * ``` * @version SDK: 1.19.0 | ThoughtSpot: 9.0.0.cl, 9.0.1.sw */ @@ -3826,13 +3830,13 @@ export enum HostEvent { * searchEmbed.trigger(HostEvent.DownloadAsXlsx) * ``` * ```js - * // You can use the Data event dispatched on each answer creation to get the vizId and use in DownloadAsXlsx host event. - * let latestSpotterVizId = ''; - * spotterEmbed.on(EmbedEvent.Data, (payload) => { - * latestSpotterVizId = payload.data.id; - * }); - * - * spotterEmbed.trigger(HostEvent.DownloadAsXlsx, { vizId: latestSpotterVizId }); + * // You can use the Data event dispatched on each answer creation to get the vizId and use in DownloadAsXlsx host event. + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; + * }); + * + * spotterEmbed.trigger(HostEvent.DownloadAsXlsx, { vizId: latestSpotterVizId }); * ``` * @version SDK: 1.19.0 | ThoughtSpot: 9.0.0.cl, 9.0.1.sw */ @@ -3850,45 +3854,45 @@ export enum HostEvent { * @version SDK: 1.19.0 | ThoughtSpot: 9.0.0.cl, 9.0.1.sw */ Share = 'share', - /** - * Trigger the **Save** action on a Liveboard, Answer, or Spotter. - * Saves the changes. - * - * @param - `vizId` refers to the Spotter Visualization Id used in Spotter embed. - * It is required and can be retrieved from the data embed event. - * - * @example - * ```js - * // Save changes in a Liveboard - * liveboardEmbed.trigger(HostEvent.Save) - * ``` - * - * ```js - * // Save the current Answer in Search embed - * searchEmbed.trigger(HostEvent.Save) - * ``` - * - * ```js - * // Save a Visualization in Spotter (requires vizId) - * spotterEmbed.trigger(HostEvent.Save, { - * vizId: "730496d6-6903-4601-937e-2c691821af3c" - * }) - * ``` - * - * ```js - * // How to get the vizId in Spotter? - * - * // You can use the Data event dispatched on each answer creation to get the vizId. - * let latestSpotterVizId = ''; - * spotterEmbed.on(EmbedEvent.Data, (payload) => { - * latestSpotterVizId = payload.data.id; - * }); - * - * spotterEmbed.trigger(HostEvent.Save, { vizId: latestSpotterVizId }); - * ``` - * - * @version SDK: 1.19.0 | ThoughtSpot: 9.0.0.cl, 9.0.1.sw - */ + /** + * Trigger the **Save** action on a Liveboard, Answer, or Spotter. + * Saves the changes. + * + * @param - `vizId` refers to the Spotter Visualization Id used in Spotter embed. + * It is required and can be retrieved from the data embed event. + * + * @example + * ```js + * // Save changes in a Liveboard + * liveboardEmbed.trigger(HostEvent.Save) + * ``` + * + * ```js + * // Save the current Answer in Search embed + * searchEmbed.trigger(HostEvent.Save) + * ``` + * + * ```js + * // Save a Visualization in Spotter (requires vizId) + * spotterEmbed.trigger(HostEvent.Save, { + * vizId: "730496d6-6903-4601-937e-2c691821af3c" + * }) + * ``` + * + * ```js + * // How to get the vizId in Spotter? + * + * // You can use the Data event dispatched on each answer creation to get the vizId. + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; + * }); + * + * spotterEmbed.trigger(HostEvent.Save, { vizId: latestSpotterVizId }); + * ``` + * + * @version SDK: 1.19.0 | ThoughtSpot: 9.0.0.cl, 9.0.1.sw + */ Save = 'save', /** * Trigger the **Sync to Sheets** action on an embedded visualization or Answer @@ -4197,13 +4201,13 @@ export enum HostEvent { * }); *``` *```js - * // You can use the Data event dispatched on each answer creation to get the vizId and use in GetParameters host event. - * let latestSpotterVizId = ''; - * spotterEmbed.on(EmbedEvent.Data, (payload) => { - * latestSpotterVizId = payload.data.id; - * }); - * - * spotterEmbed.trigger(HostEvent.GetParameters, { vizId: latestSpotterVizId }); + * // You can use the Data event dispatched on each answer creation to get the vizId and use in GetParameters host event. + * let latestSpotterVizId = ''; + * spotterEmbed.on(EmbedEvent.Data, (payload) => { + * latestSpotterVizId = payload.data.id; + * }); + * + * spotterEmbed.trigger(HostEvent.GetParameters, { vizId: latestSpotterVizId }); *``` * @version SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl, 10.1.0.sw */ @@ -4252,8 +4256,8 @@ export enum HostEvent { * spotterEmbed.on(EmbedEvent.Data, (payload) => { * latestSpotterVizId = payload.data.id; * }); - * - * spotterEmbed.trigger(HostEvent.SaveAnswer, { vizId: latestSpotterVizId }); + * + * spotterEmbed.trigger(HostEvent.SaveAnswer, { vizId: latestSpotterVizId }); * ``` * @version SDK: 1.36.0 | ThoughtSpot: 10.6.0.cl */ @@ -4344,8 +4348,8 @@ export enum HostEvent { * spotterEmbed.on(EmbedEvent.Data, (payload) => { * latestSpotterVizId = payload.data.id; * }); - * - * spotterEmbed.trigger(HostEvent.AnswerChartSwitcher, { vizId: latestSpotterVizId }); + * + * spotterEmbed.trigger(HostEvent.AnswerChartSwitcher, { vizId: latestSpotterVizId }); *``` * @version SDK: 1.40.0 | ThoughtSpot: 10.11.0.cl */ @@ -4382,8 +4386,8 @@ export enum HostEvent { * spotterEmbed.on(EmbedEvent.Data, (payload) => { * latestSpotterVizId = payload.data.id; * }); - * - * spotterEmbed.trigger(HostEvent.AskSpotter, { vizId: latestSpotterVizId }); + * + * spotterEmbed.trigger(HostEvent.AskSpotter, { vizId: latestSpotterVizId }); * ``` * @version SDK: 1.41.0 | ThoughtSpot: 10.12.0.cl */ @@ -4392,7 +4396,7 @@ export enum HostEvent { /** * @hidden * Triggers the update of the embed params. - * + * * @example * ```js * liveboardEmbed.trigger(HostEvent.UpdateEmbedParams, viewConfig); @@ -5925,15 +5929,15 @@ export interface ColumnValue { [key: string]: any; }; value: - | string - | number - | boolean - | { - v: { - s: number; - e: number; - }; - }; + | string + | number + | boolean + | { + v: { + s: number; + e: number; + }; + }; } export interface VizPoint { @@ -5978,7 +5982,7 @@ export interface CustomAction { dataModelIds?: { modelIds?: string[]; modelColumnNames?: string[]; - } + }; orgIds?: string[]; groupIds?: string[]; } @@ -6123,20 +6127,19 @@ export enum InterceptedApiType { LiveboardData = 'LiveboardData', } - export type ApiInterceptFlags = { /** - * Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`. - * - * Can be used for Serach and App Embed from SDK 1.29.0 - * - * @version SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl - */ + * Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`. + * + * Can be used for Serach and App Embed from SDK 1.29.0 + * + * @version SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl + */ isOnBeforeGetVizDataInterceptEnabled?: boolean; /** - * This allows to intercept the urls passed, once intercepted the api will only + * This allows to intercept the urls passed, once intercepted the api will only * run based on the reponse from the responder of ApiIntercept event. - * + * * @example * ```js * const embed = new LiveboardEmbed('#embed', { @@ -6145,14 +6148,14 @@ export type ApiInterceptFlags = { * interceptUrls: [InterceptedApiType.DATA], * }) * ``` - * + * * @version SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl */ interceptUrls?: (string | InterceptedApiType)[]; /** * The timeout for the intercept, default is 30000ms * the api will error out if the timeout is reached - * + * * @example * ```js * const embed = new LiveboardEmbed('#embed', { @@ -6162,8 +6165,8 @@ export type ApiInterceptFlags = { * interceptTimeout: 1000, * }) * ``` - * + * * @version SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl */ interceptTimeout?: number; -} +}; diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index e6f0dc737..423df3776 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 2097, + "id": 2166, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 2210, + "id": 2279, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -48,14 +48,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5560, + "line": 5634, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2117, + "id": 2186, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -76,14 +76,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4706, + "line": 4780, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 2110, + "id": 2179, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -104,14 +104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4635, + "line": 4709, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 2109, + "id": 2178, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -128,14 +128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4624, + "line": 4698, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 2115, + "id": 2184, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -152,14 +152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4687, + "line": 4761, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 2116, + "id": 2185, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -176,14 +176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4696, + "line": 4770, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 2118, + "id": 2187, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -204,14 +204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4716, + "line": 4790, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 2192, + "id": 2261, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -232,14 +232,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5354, + "line": 5428, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 2165, + "id": 2234, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -260,14 +260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5076, + "line": 5150, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 2207, + "id": 2276, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -288,14 +288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5527, + "line": 5601, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 2164, + "id": 2233, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -316,14 +316,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5064, + "line": 5138, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2163, + "id": 2232, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -344,14 +344,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5052, + "line": 5126, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2206, + "id": 2275, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -373,14 +373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5516, + "line": 5590, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 2176, + "id": 2245, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -401,14 +401,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5189, + "line": 5263, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 2179, + "id": 2248, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -429,14 +429,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5223, + "line": 5297, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 2184, + "id": 2253, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -457,14 +457,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5278, + "line": 5352, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 2178, + "id": 2247, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -485,14 +485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5212, + "line": 5286, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 2181, + "id": 2250, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -513,14 +513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5246, + "line": 5320, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 2185, + "id": 2254, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -541,14 +541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5288, + "line": 5362, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 2182, + "id": 2251, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -569,14 +569,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5257, + "line": 5331, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 2187, + "id": 2256, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -597,14 +597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5310, + "line": 5384, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 2183, + "id": 2252, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -625,14 +625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5267, + "line": 5341, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 2180, + "id": 2249, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -653,14 +653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5234, + "line": 5308, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 2186, + "id": 2255, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -681,14 +681,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5298, + "line": 5372, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 2177, + "id": 2246, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -709,14 +709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5200, + "line": 5274, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 2219, + "id": 2288, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -737,14 +737,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5658, + "line": 5732, "character": 4 } ], "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 2114, + "id": 2183, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -761,14 +761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4678, + "line": 4752, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 2113, + "id": 2182, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -789,14 +789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4669, + "line": 4743, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 2112, + "id": 2181, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -817,14 +817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4657, + "line": 4731, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 2226, + "id": 2295, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -845,14 +845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5734, + "line": 5808, "character": 4 } ], "defaultValue": "\"columnRename\"" }, { - "id": 2111, + "id": 2180, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -869,14 +869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4646, + "line": 4720, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 2156, + "id": 2225, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -884,14 +884,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5003, + "line": 5077, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 2104, + "id": 2173, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -908,14 +908,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4583, + "line": 4657, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2155, + "id": 2224, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -932,14 +932,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5002, + "line": 5076, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2227, + "id": 2296, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -960,14 +960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5744, + "line": 5818, "character": 4 } ], "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 2204, + "id": 2273, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -988,14 +988,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5491, + "line": 5565, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 2167, + "id": 2236, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1016,14 +1016,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5096, + "line": 5170, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2172, + "id": 2241, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1044,14 +1044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5147, + "line": 5221, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 2224, + "id": 2293, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1072,14 +1072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5715, + "line": 5789, "character": 4 } ], "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 2216, + "id": 2285, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1100,14 +1100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5627, + "line": 5701, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 2218, + "id": 2287, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1128,14 +1128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5646, + "line": 5720, "character": 4 } ], "defaultValue": "\"disableChipReorder\"" }, { - "id": 2126, + "id": 2195, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1152,14 +1152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4766, + "line": 4840, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 2129, + "id": 2198, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1176,14 +1176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4799, + "line": 4873, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2128, + "id": 2197, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1201,14 +1201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4789, + "line": 4863, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2127, + "id": 2196, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1225,14 +1225,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4776, + "line": 4850, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2130, + "id": 2199, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1249,14 +1249,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4809, + "line": 4883, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2160, + "id": 2229, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1273,14 +1273,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5019, + "line": 5093, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 2154, + "id": 2223, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1297,14 +1297,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4992, + "line": 5066, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 2153, + "id": 2222, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1321,14 +1321,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4983, + "line": 5057, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 2138, + "id": 2207, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1345,14 +1345,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4885, + "line": 4959, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2103, + "id": 2172, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1369,14 +1369,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4574, + "line": 4648, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 2166, + "id": 2235, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1397,14 +1397,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5085, + "line": 5159, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 2158, + "id": 2227, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1412,14 +1412,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5008, + "line": 5082, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 2223, + "id": 2292, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1440,14 +1440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5704, + "line": 5778, "character": 4 } ], "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 2196, + "id": 2265, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1468,14 +1468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5398, + "line": 5472, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 2211, + "id": 2280, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1496,14 +1496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5573, + "line": 5647, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 2135, + "id": 2204, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1520,14 +1520,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4853, + "line": 4927, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2139, + "id": 2208, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1544,14 +1544,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4893, + "line": 4967, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 2225, + "id": 2294, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1572,14 +1572,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5725, + "line": 5799, "character": 4 } ], "defaultValue": "\"editTokens\"" }, { - "id": 2193, + "id": 2262, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1600,14 +1600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5364, + "line": 5438, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 2194, + "id": 2263, "name": "EnableIterativeChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1628,14 +1628,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5375, + "line": 5449, "character": 4 } ], "defaultValue": "\"enableIterativeChangeAnalysis\"" }, { - "id": 2152, + "id": 2221, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1652,14 +1652,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4972, + "line": 5046, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2132, + "id": 2201, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1677,14 +1677,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4825, + "line": 4899, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2133, + "id": 2202, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1701,14 +1701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4835, + "line": 4909, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 2228, + "id": 2297, "name": "InConversationTraining", "kind": 16, "kindString": "Enumeration member", @@ -1729,14 +1729,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5760, + "line": 5834, "character": 4 } ], "defaultValue": "\"InConversationTraining\"" }, { - "id": 2217, + "id": 2286, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1757,14 +1757,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5637, + "line": 5711, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 2146, + "id": 2215, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1781,14 +1781,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4934, + "line": 5008, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2234, + "id": 2303, "name": "LiveboardStylePanel", "kind": 16, "kindString": "Enumeration member", @@ -1809,14 +1809,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5826, + "line": 5900, "character": 4 } ], "defaultValue": "\"liveboardStylePanel\"" }, { - "id": 2202, + "id": 2271, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1837,14 +1837,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5459, + "line": 5533, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 2102, + "id": 2171, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1861,14 +1861,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4565, + "line": 4639, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2200, + "id": 2269, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1885,14 +1885,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5439, + "line": 5513, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2171, + "id": 2240, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1913,14 +1913,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5137, + "line": 5211, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2215, + "id": 2284, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1941,14 +1941,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5616, + "line": 5690, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 2191, + "id": 2260, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1969,14 +1969,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5344, + "line": 5418, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 2198, + "id": 2267, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1996,14 +1996,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5419, + "line": 5493, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 2199, + "id": 2268, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -2020,14 +2020,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5428, + "line": 5502, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 2209, + "id": 2278, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -2048,14 +2048,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5549, + "line": 5623, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 2212, + "id": 2281, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2076,14 +2076,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5584, + "line": 5658, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 2201, + "id": 2270, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2104,14 +2104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5449, + "line": 5523, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 2149, + "id": 2218, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2128,14 +2128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4951, + "line": 5025, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2232, + "id": 2301, "name": "PngScreenshotInEmail", "kind": 16, "kindString": "Enumeration member", @@ -2152,14 +2152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5804, + "line": 5878, "character": 4 } ], "defaultValue": "\"pngScreenshotInEmail\"" }, { - "id": 2136, + "id": 2205, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2176,14 +2176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4863, + "line": 4937, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2220, + "id": 2289, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2204,14 +2204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5670, + "line": 5744, "character": 4 } ], "defaultValue": "\"previewDataSpotter\"" }, { - "id": 2162, + "id": 2231, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2229,14 +2229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5042, + "line": 5116, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 2140, + "id": 2209, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2253,14 +2253,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4903, + "line": 4977, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2233, + "id": 2302, "name": "RemoveAttachment", "kind": 16, "kindString": "Enumeration member", @@ -2281,14 +2281,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5816, + "line": 5890, "character": 4 } ], "defaultValue": "\"removeAttachment\"" }, { - "id": 2175, + "id": 2244, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2309,14 +2309,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5178, + "line": 5252, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 2208, + "id": 2277, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2337,14 +2337,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5538, + "line": 5612, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 2189, + "id": 2258, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2365,14 +2365,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5324, + "line": 5398, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 2168, + "id": 2237, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2396,14 +2396,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5106, + "line": 5180, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 2161, + "id": 2230, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2420,14 +2420,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5028, + "line": 5102, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 2190, + "id": 2259, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2448,14 +2448,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5334, + "line": 5408, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 2221, + "id": 2290, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2476,14 +2476,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5682, + "line": 5756, "character": 4 } ], "defaultValue": "\"resetSpotterChat\"" }, { - "id": 2197, + "id": 2266, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2504,14 +2504,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5410, + "line": 5484, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 2098, + "id": 2167, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2528,14 +2528,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4534, + "line": 4608, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2101, + "id": 2170, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2552,14 +2552,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4552, + "line": 4626, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 2106, + "id": 2175, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2576,14 +2576,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4597, + "line": 4671, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2107, + "id": 2176, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2600,14 +2600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4606, + "line": 4680, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2159, + "id": 2228, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2615,14 +2615,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5009, + "line": 5083, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 2108, + "id": 2177, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2639,14 +2639,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4615, + "line": 4689, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2123, + "id": 2192, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2657,14 +2657,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4741, + "line": 4815, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 2195, + "id": 2264, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2685,14 +2685,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5385, + "line": 5459, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 2125, + "id": 2194, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2709,14 +2709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4756, + "line": 4830, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2120, + "id": 2189, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2733,14 +2733,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4729, + "line": 4803, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2222, + "id": 2291, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2761,14 +2761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5693, + "line": 5767, "character": 4 } ], "defaultValue": "\"spotterFeedback\"" }, { - "id": 2231, + "id": 2300, "name": "SpotterTokenQuickEdit", "kind": 16, "kindString": "Enumeration member", @@ -2789,14 +2789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5793, + "line": 5867, "character": 4 } ], "defaultValue": "\"SpotterTokenQuickEdit\"" }, { - "id": 2229, + "id": 2298, "name": "SpotterWarningsBanner", "kind": 16, "kindString": "Enumeration member", @@ -2817,14 +2817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5771, + "line": 5845, "character": 4 } ], "defaultValue": "\"SpotterWarningsBanner\"" }, { - "id": 2230, + "id": 2299, "name": "SpotterWarningsOnTokens", "kind": 16, "kindString": "Enumeration member", @@ -2845,14 +2845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5782, + "line": 5856, "character": 4 } ], "defaultValue": "\"SpotterWarningsOnTokens\"" }, { - "id": 2151, + "id": 2220, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2869,14 +2869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4964, + "line": 5038, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2170, + "id": 2239, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2897,14 +2897,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5127, + "line": 5201, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2169, + "id": 2238, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2925,14 +2925,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5116, + "line": 5190, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2173, + "id": 2242, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2953,14 +2953,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5157, + "line": 5231, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 2174, + "id": 2243, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2981,14 +2981,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5167, + "line": 5241, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 2203, + "id": 2272, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -3013,14 +3013,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5478, + "line": 5552, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 2137, + "id": 2206, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -3037,14 +3037,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4875, + "line": 4949, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 2214, + "id": 2283, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3065,14 +3065,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5606, + "line": 5680, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 2134, + "id": 2203, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -3089,14 +3089,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4844, + "line": 4918, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2205, + "id": 2274, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -3117,14 +3117,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5502, + "line": 5576, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 2213, + "id": 2282, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3145,7 +3145,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5595, + "line": 5669, "character": 4 } ], @@ -3157,138 +3157,138 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2210, - 2117, - 2110, - 2109, - 2115, - 2116, - 2118, - 2192, - 2165, - 2207, - 2164, - 2163, - 2206, - 2176, + 2279, + 2186, 2179, - 2184, 2178, - 2181, + 2184, 2185, - 2182, 2187, + 2261, + 2234, + 2276, + 2233, + 2232, + 2275, + 2245, + 2248, + 2253, + 2247, + 2250, + 2254, + 2251, + 2256, + 2252, + 2249, + 2255, + 2246, + 2288, 2183, + 2182, + 2181, + 2295, 2180, - 2186, - 2177, - 2219, - 2114, - 2113, - 2112, - 2226, - 2111, - 2156, - 2104, - 2155, - 2227, - 2204, - 2167, - 2172, - 2224, - 2216, - 2218, - 2126, - 2129, - 2128, - 2127, - 2130, - 2160, - 2154, - 2153, - 2138, - 2103, - 2166, - 2158, - 2223, - 2196, - 2211, - 2135, - 2139, 2225, - 2193, - 2194, - 2152, - 2132, - 2133, - 2228, - 2217, - 2146, - 2234, - 2202, - 2102, - 2200, - 2171, - 2215, - 2191, + 2173, + 2224, + 2296, + 2273, + 2236, + 2241, + 2293, + 2285, + 2287, + 2195, 2198, + 2197, + 2196, 2199, - 2209, - 2212, - 2201, - 2149, - 2232, - 2136, - 2220, - 2162, - 2140, - 2233, - 2175, + 2229, + 2223, + 2222, + 2207, + 2172, + 2235, + 2227, + 2292, + 2265, + 2280, + 2204, 2208, - 2189, - 2168, - 2161, - 2190, + 2294, + 2262, + 2263, 2221, - 2197, - 2098, - 2101, - 2106, - 2107, - 2159, - 2108, - 2123, - 2195, - 2125, - 2120, - 2222, + 2201, + 2202, + 2297, + 2286, + 2215, + 2303, + 2271, + 2171, + 2269, + 2240, + 2284, + 2260, + 2267, + 2268, + 2278, + 2281, + 2270, + 2218, + 2301, + 2205, + 2289, 2231, - 2229, + 2209, + 2302, + 2244, + 2277, + 2258, + 2237, 2230, - 2151, + 2259, + 2290, + 2266, + 2167, 2170, - 2169, - 2173, - 2174, + 2175, + 2176, + 2228, + 2177, + 2192, + 2264, + 2194, + 2189, + 2291, + 2300, + 2298, + 2299, + 2220, + 2239, + 2238, + 2242, + 2243, + 2272, + 2206, + 2283, 2203, - 2137, - 2214, - 2134, - 2205, - 2213 + 2274, + 2282 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4525, + "line": 4599, "character": 12 } ] }, { - "id": 1747, + "id": 1815, "name": "AuthEvent", "kind": 4, "kindString": "Enumeration", @@ -3304,7 +3304,7 @@ }, "children": [ { - "id": 1748, + "id": 1816, "name": "TRIGGER_SSO_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3327,7 +3327,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1748 + 1816 ] } ], @@ -3340,7 +3340,7 @@ ] }, { - "id": 1732, + "id": 1800, "name": "AuthFailureType", "kind": 4, "kindString": "Enumeration", @@ -3356,7 +3356,7 @@ }, "children": [ { - "id": 1735, + "id": 1803, "name": "EXPIRY", "kind": 16, "kindString": "Enumeration member", @@ -3371,7 +3371,7 @@ "defaultValue": "\"EXPIRY\"" }, { - "id": 1737, + "id": 1805, "name": "IDLE_SESSION_TIMEOUT", "kind": 16, "kindString": "Enumeration member", @@ -3386,7 +3386,7 @@ "defaultValue": "\"IDLE_SESSION_TIMEOUT\"" }, { - "id": 1734, + "id": 1802, "name": "NO_COOKIE_ACCESS", "kind": 16, "kindString": "Enumeration member", @@ -3401,7 +3401,7 @@ "defaultValue": "\"NO_COOKIE_ACCESS\"" }, { - "id": 1736, + "id": 1804, "name": "OTHER", "kind": 16, "kindString": "Enumeration member", @@ -3416,7 +3416,7 @@ "defaultValue": "\"OTHER\"" }, { - "id": 1733, + "id": 1801, "name": "SDK", "kind": 16, "kindString": "Enumeration member", @@ -3431,7 +3431,7 @@ "defaultValue": "\"SDK\"" }, { - "id": 1738, + "id": 1806, "name": "UNAUTHENTICATED_FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3451,12 +3451,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1735, - 1737, - 1734, - 1736, - 1733, - 1738 + 1803, + 1805, + 1802, + 1804, + 1801, + 1806 ] } ], @@ -3469,7 +3469,7 @@ ] }, { - "id": 1739, + "id": 1807, "name": "AuthStatus", "kind": 4, "kindString": "Enumeration", @@ -3485,7 +3485,7 @@ }, "children": [ { - "id": 1740, + "id": 1808, "name": "FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3503,7 +3503,7 @@ "defaultValue": "\"FAILURE\"" }, { - "id": 1744, + "id": 1812, "name": "LOGOUT", "kind": 16, "kindString": "Enumeration member", @@ -3521,7 +3521,7 @@ "defaultValue": "\"LOGOUT\"" }, { - "id": 1746, + "id": 1814, "name": "SAML_POPUP_CLOSED_NO_AUTH", "kind": 16, "kindString": "Enumeration member", @@ -3539,7 +3539,7 @@ "defaultValue": "\"SAML_POPUP_CLOSED_NO_AUTH\"" }, { - "id": 1741, + "id": 1809, "name": "SDK_SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3557,7 +3557,7 @@ "defaultValue": "\"SDK_SUCCESS\"" }, { - "id": 1743, + "id": 1811, "name": "SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3575,7 +3575,7 @@ "defaultValue": "\"SUCCESS\"" }, { - "id": 1745, + "id": 1813, "name": "WAITING_FOR_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3604,12 +3604,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1740, - 1744, - 1746, - 1741, - 1743, - 1745 + 1808, + 1812, + 1814, + 1809, + 1811, + 1813 ] } ], @@ -3622,7 +3622,7 @@ ] }, { - "id": 1894, + "id": 1962, "name": "AuthType", "kind": 4, "kindString": "Enumeration", @@ -3638,7 +3638,7 @@ }, "children": [ { - "id": 1905, + "id": 1973, "name": "Basic", "kind": 16, "kindString": "Enumeration member", @@ -3657,7 +3657,7 @@ "defaultValue": "\"Basic\"" }, { - "id": 1896, + "id": 1964, "name": "EmbeddedSSO", "kind": 16, "kindString": "Enumeration member", @@ -3686,7 +3686,7 @@ "defaultValue": "\"EmbeddedSSO\"" }, { - "id": 1895, + "id": 1963, "name": "None", "kind": 16, "kindString": "Enumeration member", @@ -3710,7 +3710,7 @@ "defaultValue": "\"None\"" }, { - "id": 1901, + "id": 1969, "name": "OIDCRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3728,7 +3728,7 @@ "defaultValue": "\"SSO_OIDC\"" }, { - "id": 1899, + "id": 1967, "name": "SAMLRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3761,7 +3761,7 @@ "defaultValue": "\"SSO_SAML\"" }, { - "id": 1903, + "id": 1971, "name": "TrustedAuthToken", "kind": 16, "kindString": "Enumeration member", @@ -3785,7 +3785,7 @@ "defaultValue": "\"AuthServer\"" }, { - "id": 1904, + "id": 1972, "name": "TrustedAuthTokenCookieless", "kind": 16, "kindString": "Enumeration member", @@ -3818,13 +3818,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1905, - 1896, - 1895, - 1901, - 1899, - 1903, - 1904 + 1973, + 1964, + 1963, + 1969, + 1967, + 1971, + 1972 ] } ], @@ -3837,7 +3837,7 @@ ] }, { - "id": 2235, + "id": 2304, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3847,7 +3847,7 @@ }, "children": [ { - "id": 2238, + "id": 2307, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3855,14 +3855,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5847, + "line": 5921, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 2236, + "id": 2305, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3870,14 +3870,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5845, + "line": 5919, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 2237, + "id": 2306, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3885,7 +3885,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5846, + "line": 5920, "character": 4 } ], @@ -3897,22 +3897,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2238, - 2236, - 2237 + 2307, + 2305, + 2306 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5844, + "line": 5918, "character": 12 } ] }, { - "id": 2904, + "id": 2987, "name": "CustomActionTarget", "kind": 4, "kindString": "Enumeration", @@ -3922,7 +3922,7 @@ }, "children": [ { - "id": 2907, + "id": 2990, "name": "ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -3930,14 +3930,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5932, + "line": 6006, "character": 4 } ], "defaultValue": "\"ANSWER\"" }, { - "id": 2905, + "id": 2988, "name": "LIVEBOARD", "kind": 16, "kindString": "Enumeration member", @@ -3945,14 +3945,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5930, + "line": 6004, "character": 4 } ], "defaultValue": "\"LIVEBOARD\"" }, { - "id": 2908, + "id": 2991, "name": "SPOTTER", "kind": 16, "kindString": "Enumeration member", @@ -3960,14 +3960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5933, + "line": 6007, "character": 4 } ], "defaultValue": "\"SPOTTER\"" }, { - "id": 2906, + "id": 2989, "name": "VIZ", "kind": 16, "kindString": "Enumeration member", @@ -3975,7 +3975,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5931, + "line": 6005, "character": 4 } ], @@ -3987,23 +3987,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2907, - 2905, - 2908, - 2906 + 2990, + 2988, + 2991, + 2989 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5929, + "line": 6003, "character": 12 } ] }, { - "id": 2900, + "id": 2983, "name": "CustomActionsPosition", "kind": 4, "kindString": "Enumeration", @@ -4013,7 +4013,7 @@ }, "children": [ { - "id": 2903, + "id": 2986, "name": "CONTEXTMENU", "kind": 16, "kindString": "Enumeration member", @@ -4021,14 +4021,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5923, + "line": 5997, "character": 4 } ], "defaultValue": "\"CONTEXTMENU\"" }, { - "id": 2902, + "id": 2985, "name": "MENU", "kind": 16, "kindString": "Enumeration member", @@ -4036,14 +4036,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5922, + "line": 5996, "character": 4 } ], "defaultValue": "\"MENU\"" }, { - "id": 2901, + "id": 2984, "name": "PRIMARY", "kind": 16, "kindString": "Enumeration member", @@ -4051,7 +4051,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5921, + "line": 5995, "character": 4 } ], @@ -4063,22 +4063,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2903, - 2902, - 2901 + 2986, + 2985, + 2984 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5920, + "line": 5994, "character": 12 } ] }, { - "id": 2896, + "id": 2979, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -4088,7 +4088,7 @@ }, "children": [ { - "id": 2898, + "id": 2981, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4106,7 +4106,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 2897, + "id": 2980, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4124,7 +4124,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 2899, + "id": 2982, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -4147,9 +4147,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2898, - 2897, - 2899 + 2981, + 2980, + 2982 ] } ], @@ -4162,7 +4162,7 @@ ] }, { - "id": 2093, + "id": 2162, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -4172,7 +4172,7 @@ }, "children": [ { - "id": 2095, + "id": 2164, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -4183,14 +4183,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4356, + "line": 4430, "character": 4 } ], "defaultValue": "\"collapse\"" }, { - "id": 2096, + "id": 2165, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -4201,14 +4201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4360, + "line": 4434, "character": 4 } ], "defaultValue": "\"expand\"" }, { - "id": 2094, + "id": 2163, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -4219,7 +4219,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4352, + "line": 4426, "character": 4 } ], @@ -4231,22 +4231,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2095, - 2096, - 2094 + 2164, + 2165, + 2163 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4348, + "line": 4422, "character": 12 } ] }, { - "id": 1926, + "id": 1994, "name": "EmbedEvent", "kind": 4, "kindString": "Enumeration", @@ -4271,7 +4271,7 @@ }, "children": [ { - "id": 1962, + "id": 2030, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -4292,14 +4292,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2315, + "line": 2319, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 1954, + "id": 2022, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -4320,14 +4320,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2200, + "line": 2204, "character": 4 } ], "defaultValue": "\"*\"" }, { - "id": 1934, + "id": 2002, "name": "AddRemoveColumns", "kind": 16, "kindString": "Enumeration member", @@ -4352,14 +4352,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1966, + "line": 1970, "character": 4 } ], "defaultValue": "\"addRemoveColumns\"" }, { - "id": 1979, + "id": 2047, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -4380,14 +4380,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2522, + "line": 2526, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 1939, + "id": 2007, "name": "Alert", "kind": 16, "kindString": "Enumeration member", @@ -4412,14 +4412,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2058, + "line": 2062, "character": 4 } ], "defaultValue": "\"alert\"" }, { - "id": 1975, + "id": 2043, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -4440,14 +4440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2490, + "line": 2494, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1961, + "id": 2029, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -4468,14 +4468,43 @@ "sources": [ { "fileName": "types.ts", - "line": 2304, + "line": 2308, "character": 4 } ], "defaultValue": "\"answerDelete\"" }, { - "id": 2002, + "id": 2088, + "name": "ApiIntercept", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when the user intercepts a URL.", + "text": "Supported on all embed types.\n", + "tags": [ + { + "tag": "example", + "text": "\n\n```js\nembed.on(EmbedEvent.ApiIntercept, (payload, responder) => {\n console.log('payload', payload);\n responder({\n data: {\n execute: false,\n error: {\n errorText: 'Error Occurred',\n }\n }\n })\n})\n```\n\n```js\n// We can also send a response for the intercepted api\nembed.on(EmbedEvent.ApiIntercept, (payload, responder) => {\n console.log('payload', payload);\n responder({\n data: {\n execute: false,\n response: {\n body: {\n data: {\n // Some api response\n },\n }\n }\n }\n })\n})\n\n// here embed will use the response from the responder as the response for the api\n```\n\n```js\n// We can also send error in response for the intercepted api\nembed.on(EmbedEvent.ApiIntercept, (payload, responder) => {\n console.log('payload', payload);\n responder({\n data: {\n execute: false,\n response: {\n body: {\n errors: [{\n title: 'Error Occurred',\n description: 'Error Description',\n isUserError: true,\n }],\n data: {},\n },\n }\n }\n })\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3053, + "character": 4 + } + ], + "defaultValue": "\"ApiIntercept\"" + }, + { + "id": 2070, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -4508,14 +4537,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2731, + "line": 2735, "character": 4 } ], "defaultValue": "\"AskSageInit\"" }, { - "id": 1940, + "id": 2008, "name": "AuthExpire", "kind": 16, "kindString": "Enumeration member", @@ -4536,14 +4565,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2071, + "line": 2075, "character": 4 } ], "defaultValue": "\"ThoughtspotAuthExpired\"" }, { - "id": 1928, + "id": 1996, "name": "AuthInit", "kind": 16, "kindString": "Enumeration member", @@ -4568,14 +4597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1868, + "line": 1872, "character": 4 } ], "defaultValue": "\"authInit\"" }, { - "id": 1986, + "id": 2054, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -4596,14 +4625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2598, + "line": 2602, "character": 4 } ], "defaultValue": "\"cancel\"" }, { - "id": 1973, + "id": 2041, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -4624,14 +4653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2468, + "line": 2472, "character": 4 } ], "defaultValue": "\"copyAEdit\"" }, { - "id": 1988, + "id": 2056, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -4652,14 +4681,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2618, + "line": 2622, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1968, + "id": 2036, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -4680,14 +4709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2405, + "line": 2409, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1996, + "id": 2064, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -4704,14 +4733,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2682, + "line": 2686, "character": 4 } ], "defaultValue": "\"createConnection\"" }, { - "id": 2007, + "id": 2075, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -4729,14 +4758,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2862, + "line": 2870, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 2008, + "id": 2076, "name": "CreateModel", "kind": 16, "kindString": "Enumeration member", @@ -4753,14 +4782,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2867, + "line": 2875, "character": 4 } ], "defaultValue": "\"createModel\"" }, { - "id": 2001, + "id": 2069, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -4777,14 +4806,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2722, + "line": 2726, "character": 4 } ], "defaultValue": "\"createWorksheet\"" }, { - "id": 1989, + "id": 2057, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4805,14 +4834,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2629, + "line": 2633, "character": 4 } ], "defaultValue": "\"cross-filter-changed\"" }, { - "id": 1935, + "id": 2003, "name": "CustomAction", "kind": 16, "kindString": "Enumeration member", @@ -4841,14 +4870,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1983, + "line": 1987, "character": 4 } ], "defaultValue": "\"customAction\"" }, { - "id": 1930, + "id": 1998, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -4877,14 +4906,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1896, + "line": 1900, "character": 4 } ], "defaultValue": "\"data\"" }, { - "id": 1933, + "id": 2001, "name": "DataSourceSelected", "kind": 16, "kindString": "Enumeration member", @@ -4909,14 +4938,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1954, + "line": 1958, "character": 4 } ], "defaultValue": "\"dataSourceSelected\"" }, { - "id": 1984, + "id": 2052, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -4937,14 +4966,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2580, + "line": 2584, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2000, + "id": 2068, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -4969,14 +4998,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2717, + "line": 2721, "character": 4 } ], "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 1952, + "id": 2020, "name": "DialogClose", "kind": 16, "kindString": "Enumeration member", @@ -4997,14 +5026,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2167, + "line": 2171, "character": 4 } ], "defaultValue": "\"dialog-close\"" }, { - "id": 1951, + "id": 2019, "name": "DialogOpen", "kind": 16, "kindString": "Enumeration member", @@ -5025,14 +5054,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2156, + "line": 2160, "character": 4 } ], "defaultValue": "\"dialog-open\"" }, { - "id": 1956, + "id": 2024, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -5054,14 +5083,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2234, + "line": 2238, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 1959, + "id": 2027, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -5082,14 +5111,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2276, + "line": 2280, "character": 4 } ], "defaultValue": "\"downloadAsCsv\"" }, { - "id": 1958, + "id": 2026, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -5110,14 +5139,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2262, + "line": 2266, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1957, + "id": 2025, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -5138,14 +5167,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2248, + "line": 2252, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1960, + "id": 2028, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -5166,14 +5195,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2290, + "line": 2294, "character": 4 } ], "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 1967, + "id": 2035, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -5194,14 +5223,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2394, + "line": 2398, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1966, + "id": 2034, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -5222,14 +5251,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2382, + "line": 2386, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1932, + "id": 2000, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -5266,14 +5295,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1942, + "line": 1946, "character": 4 } ], "defaultValue": "\"drillDown\"" }, { - "id": 1981, + "id": 2049, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -5294,14 +5323,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2544, + "line": 2548, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1970, + "id": 2038, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -5322,14 +5351,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2428, + "line": 2432, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 1938, + "id": 2006, "name": "Error", "kind": 16, "kindString": "Enumeration member", @@ -5359,14 +5388,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2048, + "line": 2052, "character": 4 } ], "defaultValue": "\"Error\"" }, { - "id": 1987, + "id": 2055, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -5387,14 +5416,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2608, + "line": 2612, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1971, + "id": 2039, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -5415,14 +5444,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2443, + "line": 2447, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1992, + "id": 2060, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5439,14 +5468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2659, + "line": 2663, "character": 4 } ], "defaultValue": "\"filterChanged\"" }, { - "id": 1946, + "id": 2014, "name": "GetDataClick", "kind": 16, "kindString": "Enumeration member", @@ -5467,14 +5496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2113, + "line": 2117, "character": 4 } ], "defaultValue": "\"getDataClick\"" }, { - "id": 1927, + "id": 1995, "name": "Init", "kind": 16, "kindString": "Enumeration member", @@ -5495,14 +5524,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1856, + "line": 1860, "character": 4 } ], "defaultValue": "\"init\"" }, { - "id": 2015, + "id": 2083, "name": "LastPromptDeleted", "kind": 16, "kindString": "Enumeration member", @@ -5523,14 +5552,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2934, + "line": 2942, "character": 4 } ], "defaultValue": "\"LastPromptDeleted\"" }, { - "id": 2014, + "id": 2082, "name": "LastPromptEdited", "kind": 16, "kindString": "Enumeration member", @@ -5551,14 +5580,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2923, + "line": 2931, "character": 4 } ], "defaultValue": "\"LastPromptEdited\"" }, { - "id": 1978, + "id": 2046, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -5579,14 +5608,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2511, + "line": 2515, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1953, + "id": 2021, "name": "LiveboardRendered", "kind": 16, "kindString": "Enumeration member", @@ -5611,14 +5640,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2189, + "line": 2193, "character": 4 } ], "defaultValue": "\"PinboardRendered\"" }, { - "id": 1929, + "id": 1997, "name": "Load", "kind": 16, "kindString": "Enumeration member", @@ -5643,14 +5672,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1882, + "line": 1886, "character": 4 } ], "defaultValue": "\"load\"" }, { - "id": 1982, + "id": 2050, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -5671,14 +5700,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2555, + "line": 2559, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1949, + "id": 2017, "name": "NoCookieAccess", "kind": 16, "kindString": "Enumeration member", @@ -5699,14 +5728,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2139, + "line": 2143, "character": 4 } ], "defaultValue": "\"noCookieAccess\"" }, { - "id": 2004, + "id": 2072, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", @@ -5716,12 +5745,12 @@ "text": "Prerequisite: Set `isOnBeforeGetVizDataInterceptEnabled` to `true`\nfor this embed event to get emitted.", "tags": [ { - "tag": "param:", - "text": "payload" + "tag": "param:payload", + "text": "The payload received from the embed related to the Data API call." }, { - "tag": "param:", - "text": "responder\nContains elements that lets developers define whether ThoughtSpot\nshould run the search, and if not, what error message\nshould be shown to the user.\n\nexecute: When execute returns `true`, the search will be run.\nWhen execute returns `false`, the search will not be executed.\n\nerror: Developers can customize the error message text when `execute`\nreturns `false` using the error parameter in responder." + "tag": "param:responder", + "text": "\nContains elements that lets developers define whether ThoughtSpot\nshould run the search, and if not, what error message\nshould be shown to the user.\n\n`execute` - When execute returns `true`, the search will be run.\nWhen execute returns `false`, the search will not be executed.\n\n`error` - Developers can customize the error message text when `execute`\nis `false` using the `errorText` and `errorDescription` parameters in responder.\n\n`errorText` - The error message text to be shown to the user.\n`errorDescription (ThoughtSpot: 10.15.0.cl and above)` - The error description to be shown to the user." }, { "tag": "version", @@ -5729,21 +5758,21 @@ }, { "tag": "example", - "text": "\n```js\n.on(EmbedEvent.OnBeforeGetVizDataIntercept,\n(payload, responder) => {\n responder({\n data: {\n execute:false,\n error: {\n //Provide a custom error message to explain to your end user\n //why their search did not run\n errorText: \"This search query cannot be run.\n Please contact your administrator for more details.\"\n }\n }})\n})\n```\n\n```js\n.on(EmbedEvent.OnBeforeGetVizDataIntercept,\n(payload, responder) => {\nconst query = payload.data.data.answer.search_query\nresponder({\n data: {\n // returns true as long as the query does not include\n // both the 'sales' AND the 'county' column\n execute: !(query.includes(\"sales\")&&query.includes(\"county\")),\n error: {\n //Provide a custom error message to explain to your end user\n // why their search did not run, and which searches are accepted by your custom logic.\n errorText: \"You can't use this query :\" + query + \".\n The 'sales' measures can never be used at the 'county' level.\n Please try another measure, or remove 'county' from your search.\"\n }\n }})\n})\n```\n" + "text": "\n```js\nembed.on(EmbedEvent.OnBeforeGetVizDataIntercept,\n(payload, responder) => {\n responder({\n data: {\n execute:false,\n error: {\n //Provide a custom error message to explain to your end user\n //why their search did not run\n errorText: \"This search query cannot be run.\n Please contact your administrator for more details.\"\n }\n }})\n})\n```\n\n```js\nembed.on(EmbedEvent.OnBeforeGetVizDataIntercept,\n(payload, responder) => {\nconst query = payload.data.data.answer.search_query\nresponder({\n data: {\n // returns true as long as the query does not include\n // both the 'sales' AND the 'county' column\n execute: !(query.includes(\"sales\")&&query.includes(\"county\")),\n error: {\n //Provide a custom error message to explain to your end user\n // why their search did not run, and which searches are accepted by your custom logic.\n errorText: \"Error Occurred\",\n errorDescription: \"You can't use this query :\" + query + \".\n The 'sales' measures can never be used at the 'county' level.\n Please try another measure, or remove 'county' from your search.\"\n }\n }})\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 2795, + "line": 2803, "character": 4 } ], "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 2019, + "id": 2087, "name": "OrgSwitched", "kind": 16, "kindString": "Enumeration member", @@ -5764,14 +5793,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2979, + "line": 2987, "character": 4 } ], "defaultValue": "\"orgSwitched\"" }, { - "id": 2005, + "id": 2073, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5788,14 +5817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2806, + "line": 2814, "character": 4 } ], "defaultValue": "\"parameterChanged\"" }, { - "id": 1963, + "id": 2031, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -5816,14 +5845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2334, + "line": 2338, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1983, + "id": 2051, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -5848,14 +5877,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2570, + "line": 2574, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2012, + "id": 2080, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -5876,14 +5905,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2901, + "line": 2909, "character": 4 } ], "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 1931, + "id": 1999, "name": "QueryChanged", "kind": 16, "kindString": "Enumeration member", @@ -5904,14 +5933,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1905, + "line": 1909, "character": 4 } ], "defaultValue": "\"queryChanged\"" }, { - "id": 2003, + "id": 2071, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -5928,14 +5957,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2736, + "line": 2740, "character": 4 } ], "defaultValue": "\"rename\"" }, { - "id": 1999, + "id": 2067, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -5968,14 +5997,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2710, + "line": 2714, "character": 4 } ], "defaultValue": "\"resetLiveboard\"" }, { - "id": 2016, + "id": 2084, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -5996,14 +6025,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2945, + "line": 2953, "character": 4 } ], "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 1947, + "id": 2015, "name": "RouteChange", "kind": 16, "kindString": "Enumeration member", @@ -6024,14 +6053,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2123, + "line": 2127, "character": 4 } ], "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 1993, + "id": 2061, "name": "SageEmbedQuery", "kind": 16, "kindString": "Enumeration member", @@ -6048,14 +6077,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2665, + "line": 2669, "character": 4 } ], "defaultValue": "\"sageEmbedQuery\"" }, { - "id": 1994, + "id": 2062, "name": "SageWorksheetUpdated", "kind": 16, "kindString": "Enumeration member", @@ -6072,14 +6101,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2672, + "line": 2676, "character": 4 } ], "defaultValue": "\"sageWorksheetUpdated\"" }, { - "id": 1955, + "id": 2023, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -6100,14 +6129,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2218, + "line": 2222, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1972, + "id": 2040, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -6128,14 +6157,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2454, + "line": 2458, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 1998, + "id": 2066, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6168,14 +6197,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2701, + "line": 2705, "character": 4 } ], "defaultValue": "\"savePersonalisedView\"" }, { - "id": 1980, + "id": 2048, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -6196,14 +6225,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2533, + "line": 2537, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1985, + "id": 2053, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -6224,14 +6253,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2589, + "line": 2593, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1965, + "id": 2033, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -6252,14 +6281,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2370, + "line": 2374, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1974, + "id": 2042, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -6280,14 +6309,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2479, + "line": 2483, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1964, + "id": 2032, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -6308,14 +6337,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2352, + "line": 2356, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2011, + "id": 2079, "name": "SpotterData", "kind": 16, "kindString": "Enumeration member", @@ -6336,14 +6365,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2890, + "line": 2898, "character": 4 } ], "defaultValue": "\"SpotterData\"" }, { - "id": 2017, + "id": 2085, "name": "SpotterInit", "kind": 16, "kindString": "Enumeration member", @@ -6364,14 +6393,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2956, + "line": 2964, "character": 4 } ], "defaultValue": "\"spotterInit\"" }, { - "id": 2013, + "id": 2081, "name": "SpotterQueryTriggered", "kind": 16, "kindString": "Enumeration member", @@ -6392,14 +6421,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2912, + "line": 2920, "character": 4 } ], "defaultValue": "\"SpotterQueryTriggered\"" }, { - "id": 2006, + "id": 2074, "name": "TableVizRendered", "kind": 16, "kindString": "Enumeration member", @@ -6421,14 +6450,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2849, + "line": 2857, "character": 4 } ], "defaultValue": "\"TableVizRendered\"" }, { - "id": 1995, + "id": 2063, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -6445,14 +6474,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2677, + "line": 2681, "character": 4 } ], "defaultValue": "\"updateConnection\"" }, { - "id": 1997, + "id": 2065, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6485,14 +6514,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2692, + "line": 2696, "character": 4 } ], "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 1969, + "id": 2037, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -6513,14 +6542,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2416, + "line": 2420, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1937, + "id": 2005, "name": "VizPointClick", "kind": 16, "kindString": "Enumeration member", @@ -6549,14 +6578,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2014, + "line": 2018, "character": 4 } ], "defaultValue": "\"vizPointClick\"" }, { - "id": 1936, + "id": 2004, "name": "VizPointDoubleClick", "kind": 16, "kindString": "Enumeration member", @@ -6581,14 +6610,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1995, + "line": 1999, "character": 4 } ], "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 1990, + "id": 2058, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -6609,7 +6638,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2640, + "line": 2644, "character": 4 } ], @@ -6621,99 +6650,100 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1962, - 1954, - 1934, - 1979, - 1939, - 1975, - 1961, + 2030, + 2022, 2002, - 1940, - 1928, - 1986, - 1973, - 1988, - 1968, - 1996, + 2047, 2007, + 2043, + 2029, + 2088, + 2070, 2008, - 2001, - 1989, - 1935, - 1930, - 1933, - 1984, - 2000, - 1952, - 1951, - 1956, - 1959, - 1958, - 1957, - 1960, - 1967, - 1966, - 1932, - 1981, - 1970, - 1938, - 1987, - 1971, - 1992, - 1946, - 1927, - 2015, - 2014, - 1978, - 1953, - 1929, - 1982, - 1949, - 2004, - 2019, - 2005, - 1963, - 1983, - 2012, - 1931, + 1996, + 2054, + 2041, + 2056, + 2036, + 2064, + 2075, + 2076, + 2069, + 2057, 2003, - 1999, - 2016, - 1947, - 1993, - 1994, - 1955, - 1972, 1998, - 1980, - 1985, - 1965, - 1974, - 1964, - 2011, - 2017, - 2013, + 2001, + 2052, + 2068, + 2020, + 2019, + 2024, + 2027, + 2026, + 2025, + 2028, + 2035, + 2034, + 2000, + 2049, + 2038, 2006, + 2055, + 2039, + 2060, + 2014, 1995, + 2083, + 2082, + 2046, + 2021, 1997, - 1969, - 1937, - 1936, - 1990 + 2050, + 2017, + 2072, + 2087, + 2073, + 2031, + 2051, + 2080, + 1999, + 2071, + 2067, + 2084, + 2015, + 2061, + 2062, + 2023, + 2040, + 2066, + 2048, + 2053, + 2033, + 2042, + 2032, + 2079, + 2085, + 2081, + 2074, + 2063, + 2065, + 2037, + 2005, + 2004, + 2058 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1843, + "line": 1847, "character": 12 } ] }, { - "id": 2604, + "id": 2686, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -6723,7 +6753,7 @@ }, "children": [ { - "id": 2608, + "id": 2690, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -6746,7 +6776,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2612, + "id": 2694, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6770,7 +6800,7 @@ "defaultValue": "\"create\"" }, { - "id": 2614, + "id": 2696, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -6794,7 +6824,7 @@ "defaultValue": "\"favorites\"" }, { - "id": 2606, + "id": 2688, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6817,7 +6847,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2611, + "id": 2693, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6840,7 +6870,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2607, + "id": 2689, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6863,7 +6893,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2609, + "id": 2691, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6886,7 +6916,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2605, + "id": 2687, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6909,7 +6939,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2610, + "id": 2692, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6932,7 +6962,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2613, + "id": 2695, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -6961,16 +6991,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2608, - 2612, - 2614, - 2606, - 2611, - 2607, - 2609, - 2605, - 2610, - 2613 + 2690, + 2694, + 2696, + 2688, + 2693, + 2689, + 2691, + 2687, + 2692, + 2695 ] } ], @@ -6983,7 +7013,7 @@ ] }, { - "id": 2854, + "id": 2936, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -6999,7 +7029,7 @@ }, "children": [ { - "id": 2855, + "id": 2937, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -7017,7 +7047,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2856, + "id": 2938, "name": "ModularWithStylingChanges", "kind": 16, "kindString": "Enumeration member", @@ -7040,8 +7070,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2855, - 2856 + 2937, + 2938 ] } ], @@ -7054,14 +7084,14 @@ ] }, { - "id": 2848, + "id": 2930, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2850, + "id": 2932, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -7076,7 +7106,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2851, + "id": 2933, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -7091,7 +7121,7 @@ "defaultValue": "\"none\"" }, { - "id": 2849, + "id": 2931, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -7111,9 +7141,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2850, - 2851, - 2849 + 2932, + 2933, + 2931 ] } ], @@ -7126,7 +7156,7 @@ ] }, { - "id": 2615, + "id": 2697, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -7142,7 +7172,7 @@ }, "children": [ { - "id": 2618, + "id": 2700, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -7153,14 +7183,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1724, + "line": 1728, "character": 4 } ], "defaultValue": "\"FAVORITE\"" }, { - "id": 2621, + "id": 2703, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -7171,14 +7201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1736, + "line": 1740, "character": 4 } ], "defaultValue": "\"LEARNING\"" }, { - "id": 2619, + "id": 2701, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -7189,14 +7219,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1728, + "line": 1732, "character": 4 } ], "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2616, + "id": 2698, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7207,14 +7237,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1716, + "line": 1720, "character": 4 } ], "defaultValue": "\"SEARCH\"" }, { - "id": 2620, + "id": 2702, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -7225,14 +7255,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1732, + "line": 1736, "character": 4 } ], "defaultValue": "\"TRENDING\"" }, { - "id": 2617, + "id": 2699, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -7243,7 +7273,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1720, + "line": 1724, "character": 4 } ], @@ -7255,25 +7285,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2618, - 2621, - 2619, - 2616, - 2620, - 2617 + 2700, + 2703, + 2701, + 2698, + 2702, + 2699 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1712, + "line": 1716, "character": 12 } ] }, { - "id": 2020, + "id": 2089, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -7302,7 +7332,7 @@ }, "children": [ { - "id": 2042, + "id": 2111, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -7323,14 +7353,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3425, + "line": 3499, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2031, + "id": 2100, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -7356,14 +7386,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3230, + "line": 3304, "character": 4 } ], "defaultValue": "\"addColumns\"" }, { - "id": 2087, + "id": 2156, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -7389,14 +7419,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4282, + "line": 4356, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2072, + "id": 2141, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -7417,14 +7447,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4075, + "line": 4149, "character": 4 } ], "defaultValue": "\"AskSage\"" }, { - "id": 2090, + "id": 2159, "name": "AskSpotter", "kind": 16, "kindString": "Enumeration member", @@ -7450,14 +7480,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4320, + "line": 4394, "character": 4 } ], "defaultValue": "\"AskSpotter\"" }, { - "id": 2049, + "id": 2118, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -7483,14 +7513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3561, + "line": 3635, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2046, + "id": 2115, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -7520,14 +7550,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3499, + "line": 3573, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2053, + "id": 2122, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -7553,14 +7583,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3645, + "line": 3719, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2086, + "id": 2155, "name": "DeleteLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -7581,14 +7611,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4267, + "line": 4341, "character": 4 } ], "defaultValue": "\"DeleteLastPrompt\"" }, { - "id": 2092, + "id": 2161, "name": "DestroyEmbed", "kind": 16, "kindString": "Enumeration member", @@ -7609,14 +7639,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4340, + "line": 4414, "character": 4 } ], "defaultValue": "\"EmbedDestroyed\"" }, { - "id": 2055, + "id": 2124, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -7646,14 +7676,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3691, + "line": 3765, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2057, + "id": 2126, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -7679,14 +7709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3742, + "line": 3816, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2041, + "id": 2110, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -7716,14 +7746,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3415, + "line": 3489, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2056, + "id": 2125, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -7744,14 +7774,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3715, + "line": 3789, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2058, + "id": 2127, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -7777,14 +7807,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3769, + "line": 3843, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2022, + "id": 2091, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -7834,14 +7864,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3107, + "line": 3181, "character": 4 } ], "defaultValue": "\"triggerDrillDown\"" }, { - "id": 2048, + "id": 2117, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -7877,14 +7907,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3544, + "line": 3618, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2083, + "id": 2152, "name": "EditLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -7910,14 +7940,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4240, + "line": 4314, "character": 4 } ], "defaultValue": "\"EditLastPrompt\"" }, { - "id": 2039, + "id": 2108, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -7938,14 +7968,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3379, + "line": 3453, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2045, + "id": 2114, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -7971,14 +8001,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3482, + "line": 3556, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2038, + "id": 2107, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -7999,14 +8029,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3369, + "line": 3443, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2071, + "id": 2140, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -8032,14 +8062,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4065, + "line": 4139, "character": 4 } ], "defaultValue": "\"getAnswerSession\"" }, { - "id": 2065, + "id": 2134, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -8060,14 +8090,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3892, + "line": 3966, "character": 4 } ], "defaultValue": "\"getFilters\"" }, { - "id": 2025, + "id": 2094, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -8088,14 +8118,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3127, + "line": 3201, "character": 4 } ], "defaultValue": "\"GetIframeUrl\"" }, { - "id": 2076, + "id": 2145, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -8117,14 +8147,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4140, + "line": 4214, "character": 4 } ], "defaultValue": "\"GetParameters\"" }, { - "id": 2051, + "id": 2120, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -8149,14 +8179,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3609, + "line": 3683, "character": 4 } ], "defaultValue": "\"getTML\"" }, { - "id": 2067, + "id": 2136, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -8177,14 +8207,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3995, + "line": 4069, "character": 4 } ], "defaultValue": "\"getTabs\"" }, { - "id": 2035, + "id": 2104, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -8205,14 +8235,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3341, + "line": 3415, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2043, + "id": 2112, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -8249,14 +8279,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3458, + "line": 3532, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2047, + "id": 2116, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -8290,14 +8320,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3520, + "line": 3594, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2063, + "id": 2132, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -8323,14 +8353,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3869, + "line": 3943, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2029, + "id": 2098, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -8356,14 +8386,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3200, + "line": 3274, "character": 4 } ], "defaultValue": "\"Navigate\"" }, { - "id": 2030, + "id": 2099, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -8393,14 +8423,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3220, + "line": 3294, "character": 4 } ], "defaultValue": "\"openFilter\"" }, { - "id": 2034, + "id": 2103, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -8461,14 +8491,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3331, + "line": 3405, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2050, + "id": 2119, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -8494,14 +8524,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3578, + "line": 3652, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2084, + "id": 2153, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -8522,14 +8552,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4249, + "line": 4323, "character": 4 } ], "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 2044, + "id": 2113, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -8554,14 +8584,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3472, + "line": 3546, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2032, + "id": 2101, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -8587,14 +8617,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3240, + "line": 3314, "character": 4 } ], "defaultValue": "\"removeColumn\"" }, { - "id": 2074, + "id": 2143, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8615,14 +8645,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4100, + "line": 4174, "character": 4 } ], "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 2064, + "id": 2133, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -8643,14 +8673,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3881, + "line": 3955, "character": 4 } ], "defaultValue": "\"resetSearch\"" }, { - "id": 2085, + "id": 2154, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -8671,14 +8701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4258, + "line": 4332, "character": 4 } ], "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 2060, + "id": 2129, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -8704,14 +8734,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3822, + "line": 3896, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2079, + "id": 2148, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -8751,14 +8781,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4190, + "line": 4264, "character": 4 } ], "defaultValue": "\"saveAnswer\"" }, { - "id": 2036, + "id": 2105, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -8779,14 +8809,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3350, + "line": 3424, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2037, + "id": 2106, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -8807,14 +8837,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3359, + "line": 3433, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2021, + "id": 2090, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -8846,14 +8876,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3056, + "line": 3130, "character": 4 } ], "defaultValue": "\"search\"" }, { - "id": 2027, + "id": 2096, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -8879,14 +8909,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3152, + "line": 3226, "character": 4 } ], "defaultValue": "\"SetActiveTab\"" }, { - "id": 2069, + "id": 2138, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -8912,14 +8942,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4021, + "line": 4095, "character": 4 } ], "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 2068, + "id": 2137, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -8945,14 +8975,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4008, + "line": 4082, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 2026, + "id": 2095, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -8978,14 +9008,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3140, + "line": 3214, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 2059, + "id": 2128, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -9006,14 +9036,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3782, + "line": 3856, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2052, + "id": 2121, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -9039,14 +9069,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3628, + "line": 3702, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2054, + "id": 2123, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -9072,14 +9102,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3665, + "line": 3739, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2082, + "id": 2151, "name": "SpotterSearch", "kind": 16, "kindString": "Enumeration member", @@ -9110,14 +9140,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4230, + "line": 4304, "character": 4 } ], "defaultValue": "\"SpotterSearch\"" }, { - "id": 2062, + "id": 2131, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -9143,14 +9173,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3853, + "line": 3927, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2061, + "id": 2130, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -9176,14 +9206,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3837, + "line": 3911, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2081, + "id": 2150, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -9209,14 +9239,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4215, + "line": 4289, "character": 4 } ], "defaultValue": "\"TransformTableVizData\"" }, { - "id": 2073, + "id": 2142, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -9237,14 +9267,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4091, + "line": 4165, "character": 4 } ], "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 2066, + "id": 2135, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -9287,14 +9317,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3982, + "line": 4056, "character": 4 } ], "defaultValue": "\"updateFilters\"" }, { - "id": 2075, + "id": 2144, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -9325,14 +9355,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4120, + "line": 4194, "character": 4 } ], "defaultValue": "\"UpdateParameters\"" }, { - "id": 2077, + "id": 2146, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -9349,14 +9379,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4148, + "line": 4222, "character": 4 } ], "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 2028, + "id": 2097, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -9387,14 +9417,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3188, + "line": 3262, "character": 4 } ], "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 2070, + "id": 2139, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -9425,14 +9455,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4035, + "line": 4109, "character": 4 } ], "defaultValue": "\"updateSageQuery\"" }, { - "id": 2040, + "id": 2109, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -9453,14 +9483,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3388, + "line": 3462, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2033, + "id": 2102, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -9481,7 +9511,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3256, + "line": 3330, "character": 4 } ], @@ -9493,84 +9523,168 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2042, - 2031, - 2087, - 2072, + 2111, + 2100, + 2156, + 2141, + 2159, + 2118, + 2115, + 2122, + 2155, + 2161, + 2124, + 2126, + 2110, + 2125, + 2127, + 2091, + 2117, + 2152, + 2108, + 2114, + 2107, + 2140, + 2134, + 2094, + 2145, + 2120, + 2136, + 2104, + 2112, + 2116, + 2132, + 2098, + 2099, + 2103, + 2119, + 2153, + 2113, + 2101, + 2143, + 2133, + 2154, + 2129, + 2148, + 2105, + 2106, 2090, - 2049, - 2046, - 2053, - 2086, - 2092, - 2055, - 2057, - 2041, - 2056, - 2058, - 2022, - 2048, - 2083, - 2039, - 2045, - 2038, - 2071, - 2065, - 2025, - 2076, - 2051, - 2067, - 2035, - 2043, - 2047, - 2063, - 2029, - 2030, - 2034, - 2050, - 2084, - 2044, - 2032, - 2074, - 2064, - 2085, - 2060, - 2079, - 2036, - 2037, - 2021, - 2027, - 2069, - 2068, - 2026, - 2059, - 2052, - 2054, - 2082, - 2062, - 2061, - 2081, - 2073, - 2066, - 2075, - 2077, - 2028, - 2070, - 2040, - 2033 + 2096, + 2138, + 2137, + 2095, + 2128, + 2121, + 2123, + 2151, + 2131, + 2130, + 2150, + 2142, + 2135, + 2144, + 2146, + 2097, + 2139, + 2109, + 2102 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3036, + "line": 3110, "character": 12 } ] }, { - "id": 2857, + "id": 2992, + "name": "InterceptedApiType", + "kind": 4, + "kindString": "Enumeration", + "flags": {}, + "comment": { + "shortText": "Enum for the type of API intercepted" + }, + "children": [ + { + "id": 2994, + "name": "ALL", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "This will intercept all the apis" + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6123, + "character": 4 + } + ], + "defaultValue": "\"ALL\"" + }, + { + "id": 2993, + "name": "AnswerData", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "The apis that are use to get the data for the embed" + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6119, + "character": 4 + } + ], + "defaultValue": "\"AnswerData\"" + }, + { + "id": 2995, + "name": "LiveboardData", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "The apis that are use to get the data for the liveboard" + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6127, + "character": 4 + } + ], + "defaultValue": "\"LiveboardData\"" + } + ], + "groups": [ + { + "title": "Enumeration members", + "kind": 16, + "children": [ + 2994, + 2993, + 2995 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 6115, + "character": 12 + } + ] + }, + { + "id": 2939, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -9586,7 +9700,7 @@ }, "children": [ { - "id": 2858, + "id": 2940, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -9604,7 +9718,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2859, + "id": 2941, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -9627,8 +9741,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2858, - 2859 + 2940, + 2941 ] } ], @@ -9641,7 +9755,7 @@ ] }, { - "id": 2890, + "id": 2973, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -9657,7 +9771,7 @@ }, "children": [ { - "id": 2893, + "id": 2976, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -9668,14 +9782,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1757, + "line": 1761, "character": 4 } ], "defaultValue": "\"AUTHOR\"" }, { - "id": 2894, + "id": 2977, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -9686,14 +9800,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1761, + "line": 1765, "character": 4 } ], "defaultValue": "\"DATE_SORT\"" }, { - "id": 2891, + "id": 2974, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -9704,14 +9818,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1749, + "line": 1753, "character": 4 } ], "defaultValue": "\"FAVOURITE\"" }, { - "id": 2895, + "id": 2978, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -9722,14 +9836,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1765, + "line": 1769, "character": 4 } ], "defaultValue": "\"SHARE\"" }, { - "id": 2892, + "id": 2975, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -9740,7 +9854,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1753, + "line": 1757, "character": 4 } ], @@ -9752,24 +9866,24 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2893, - 2894, - 2891, - 2895, - 2892 + 2976, + 2977, + 2974, + 2978, + 2975 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1745, + "line": 1749, "character": 12 } ] }, { - "id": 2825, + "id": 2907, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -9779,7 +9893,7 @@ }, "children": [ { - "id": 2830, + "id": 2912, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -9800,14 +9914,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6007, + "line": 6081, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2827, + "id": 2909, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -9828,14 +9942,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5968, + "line": 6042, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2829, + "id": 2911, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -9856,14 +9970,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5993, + "line": 6067, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2826, + "id": 2908, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -9884,14 +9998,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5956, + "line": 6030, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2831, + "id": 2913, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -9912,14 +10026,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6019, + "line": 6093, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2828, + "id": 2910, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -9940,7 +10054,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5980, + "line": 6054, "character": 4 } ], @@ -9952,25 +10066,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2830, - 2827, - 2829, - 2826, - 2831, - 2828 + 2912, + 2909, + 2911, + 2908, + 2913, + 2910 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5943, + "line": 6017, "character": 12 } ] }, { - "id": 1885, + "id": 1953, "name": "Page", "kind": 4, "kindString": "Enumeration", @@ -9980,7 +10094,7 @@ }, "children": [ { - "id": 1888, + "id": 1956, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -9998,7 +10112,7 @@ "defaultValue": "\"answers\"" }, { - "id": 1891, + "id": 1959, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -10016,7 +10130,7 @@ "defaultValue": "\"data\"" }, { - "id": 1886, + "id": 1954, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -10034,7 +10148,7 @@ "defaultValue": "\"home\"" }, { - "id": 1889, + "id": 1957, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -10052,7 +10166,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 1893, + "id": 1961, "name": "Monitor", "kind": 16, "kindString": "Enumeration member", @@ -10070,7 +10184,7 @@ "defaultValue": "\"monitor\"" }, { - "id": 1887, + "id": 1955, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -10088,7 +10202,7 @@ "defaultValue": "\"search\"" }, { - "id": 1892, + "id": 1960, "name": "SpotIQ", "kind": 16, "kindString": "Enumeration member", @@ -10111,13 +10225,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1888, - 1891, - 1886, - 1889, - 1893, - 1887, - 1892 + 1956, + 1959, + 1954, + 1957, + 1961, + 1955, + 1960 ] } ], @@ -10130,14 +10244,14 @@ ] }, { - "id": 2593, + "id": 2675, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2594, + "id": 2676, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -10145,14 +10259,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5834, + "line": 5908, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2596, + "id": 2678, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10160,14 +10274,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5836, + "line": 5910, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2595, + "id": 2677, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10175,14 +10289,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5835, + "line": 5909, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2597, + "id": 2679, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10190,7 +10304,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5837, + "line": 5911, "character": 4 } ], @@ -10202,23 +10316,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2594, - 2596, - 2595, - 2597 + 2676, + 2678, + 2677, + 2679 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5833, + "line": 5907, "character": 12 } ] }, { - "id": 2852, + "id": 2934, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -10234,7 +10348,7 @@ }, "children": [ { - "id": 2853, + "id": 2935, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -10257,7 +10371,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2853 + 2935 ] } ], @@ -10270,7 +10384,7 @@ ] }, { - "id": 1910, + "id": 1978, "name": "RuntimeFilterOp", "kind": 4, "kindString": "Enumeration", @@ -10280,7 +10394,7 @@ }, "children": [ { - "id": 1918, + "id": 1986, "name": "BEGINS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -10291,14 +10405,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1673, + "line": 1677, "character": 4 } ], "defaultValue": "\"BEGINS_WITH\"" }, { - "id": 1923, + "id": 1991, "name": "BW", "kind": 16, "kindString": "Enumeration member", @@ -10309,14 +10423,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1693, + "line": 1697, "character": 4 } ], "defaultValue": "\"BW\"" }, { - "id": 1922, + "id": 1990, "name": "BW_INC", "kind": 16, "kindString": "Enumeration member", @@ -10327,14 +10441,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1689, + "line": 1693, "character": 4 } ], "defaultValue": "\"BW_INC\"" }, { - "id": 1920, + "id": 1988, "name": "BW_INC_MAX", "kind": 16, "kindString": "Enumeration member", @@ -10345,14 +10459,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1681, + "line": 1685, "character": 4 } ], "defaultValue": "\"BW_INC_MAX\"" }, { - "id": 1921, + "id": 1989, "name": "BW_INC_MIN", "kind": 16, "kindString": "Enumeration member", @@ -10363,14 +10477,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1685, + "line": 1689, "character": 4 } ], "defaultValue": "\"BW_INC_MIN\"" }, { - "id": 1917, + "id": 1985, "name": "CONTAINS", "kind": 16, "kindString": "Enumeration member", @@ -10381,14 +10495,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1669, + "line": 1673, "character": 4 } ], "defaultValue": "\"CONTAINS\"" }, { - "id": 1919, + "id": 1987, "name": "ENDS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -10399,14 +10513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1677, + "line": 1681, "character": 4 } ], "defaultValue": "\"ENDS_WITH\"" }, { - "id": 1911, + "id": 1979, "name": "EQ", "kind": 16, "kindString": "Enumeration member", @@ -10417,14 +10531,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1645, + "line": 1649, "character": 4 } ], "defaultValue": "\"EQ\"" }, { - "id": 1916, + "id": 1984, "name": "GE", "kind": 16, "kindString": "Enumeration member", @@ -10435,14 +10549,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1665, + "line": 1669, "character": 4 } ], "defaultValue": "\"GE\"" }, { - "id": 1915, + "id": 1983, "name": "GT", "kind": 16, "kindString": "Enumeration member", @@ -10453,14 +10567,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1661, + "line": 1665, "character": 4 } ], "defaultValue": "\"GT\"" }, { - "id": 1924, + "id": 1992, "name": "IN", "kind": 16, "kindString": "Enumeration member", @@ -10471,14 +10585,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1697, + "line": 1701, "character": 4 } ], "defaultValue": "\"IN\"" }, { - "id": 1914, + "id": 1982, "name": "LE", "kind": 16, "kindString": "Enumeration member", @@ -10489,14 +10603,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1657, + "line": 1661, "character": 4 } ], "defaultValue": "\"LE\"" }, { - "id": 1913, + "id": 1981, "name": "LT", "kind": 16, "kindString": "Enumeration member", @@ -10507,14 +10621,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1653, + "line": 1657, "character": 4 } ], "defaultValue": "\"LT\"" }, { - "id": 1912, + "id": 1980, "name": "NE", "kind": 16, "kindString": "Enumeration member", @@ -10525,14 +10639,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1649, + "line": 1653, "character": 4 } ], "defaultValue": "\"NE\"" }, { - "id": 1925, + "id": 1993, "name": "NOT_IN", "kind": 16, "kindString": "Enumeration member", @@ -10543,7 +10657,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1701, + "line": 1705, "character": 4 } ], @@ -10555,41 +10669,41 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1918, - 1923, - 1922, - 1920, - 1921, - 1917, - 1919, - 1911, - 1916, - 1915, - 1924, - 1914, - 1913, - 1912, - 1925 + 1986, + 1991, + 1990, + 1988, + 1989, + 1985, + 1987, + 1979, + 1984, + 1983, + 1992, + 1982, + 1981, + 1980, + 1993 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1641, + "line": 1645, "character": 12 } ] }, { - "id": 2883, + "id": 2965, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2888, + "id": 2970, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -10604,7 +10718,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2887, + "id": 2969, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -10619,7 +10733,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2886, + "id": 2968, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -10634,7 +10748,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2889, + "id": 2971, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -10649,7 +10763,22 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2884, + "id": 2972, + "name": "GetUnsavedAnswerTML", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "embed/hostEventClient/contracts.ts", + "line": 10, + "character": 2 + } + ], + "defaultValue": "\"getUnsavedAnswerTML\"" + }, + { + "id": 2966, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -10664,7 +10793,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2885, + "id": 2967, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -10684,12 +10813,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2888, - 2887, - 2886, - 2889, - 2884, - 2885 + 2970, + 2969, + 2968, + 2971, + 2972, + 2966, + 2967 ] } ], @@ -10702,7 +10832,7 @@ ] }, { - "id": 1802, + "id": 1870, "name": "AnswerService", "kind": 128, "kindString": "Class", @@ -10731,7 +10861,7 @@ }, "children": [ { - "id": 1803, + "id": 1871, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -10748,7 +10878,7 @@ ], "signatures": [ { - "id": 1804, + "id": 1872, "name": "new AnswerService", "kind": 16384, "kindString": "Constructor signature", @@ -10758,7 +10888,7 @@ }, "parameters": [ { - "id": 1805, + "id": 1873, "name": "session", "kind": 32768, "kindString": "Parameter", @@ -10766,12 +10896,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1875, + "id": 1943, "name": "SessionInterface" } }, { - "id": 1806, + "id": 1874, "name": "answer", "kind": 32768, "kindString": "Parameter", @@ -10783,7 +10913,7 @@ } }, { - "id": 1807, + "id": 1875, "name": "thoughtSpotHost", "kind": 32768, "kindString": "Parameter", @@ -10795,7 +10925,7 @@ } }, { - "id": 1808, + "id": 1876, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -10809,7 +10939,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2860, + "id": 2942, "name": "VizPoint" } } @@ -10817,14 +10947,14 @@ ], "type": { "type": "reference", - "id": 1802, + "id": 1870, "name": "AnswerService" } } ] }, { - "id": 1817, + "id": 1885, "name": "addColumns", "kind": 2048, "kindString": "Method", @@ -10840,7 +10970,7 @@ ], "signatures": [ { - "id": 1818, + "id": 1886, "name": "addColumns", "kind": 4096, "kindString": "Call signature", @@ -10851,7 +10981,7 @@ }, "parameters": [ { - "id": 1819, + "id": 1887, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -10880,7 +11010,7 @@ ] }, { - "id": 1820, + "id": 1888, "name": "addColumnsByName", "kind": 2048, "kindString": "Method", @@ -10896,7 +11026,7 @@ ], "signatures": [ { - "id": 1821, + "id": 1889, "name": "addColumnsByName", "kind": 4096, "kindString": "Call signature", @@ -10912,7 +11042,7 @@ }, "parameters": [ { - "id": 1822, + "id": 1890, "name": "columnNames", "kind": 32768, "kindString": "Parameter", @@ -10941,7 +11071,7 @@ ] }, { - "id": 1869, + "id": 1937, "name": "addDisplayedVizToLiveboard", "kind": 2048, "kindString": "Method", @@ -10957,14 +11087,14 @@ ], "signatures": [ { - "id": 1870, + "id": 1938, "name": "addDisplayedVizToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1871, + "id": 1939, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -10989,7 +11119,7 @@ ] }, { - "id": 1823, + "id": 1891, "name": "addFilter", "kind": 2048, "kindString": "Method", @@ -11005,7 +11135,7 @@ ], "signatures": [ { - "id": 1824, + "id": 1892, "name": "addFilter", "kind": 4096, "kindString": "Call signature", @@ -11016,7 +11146,7 @@ }, "parameters": [ { - "id": 1825, + "id": 1893, "name": "columnName", "kind": 32768, "kindString": "Parameter", @@ -11028,7 +11158,7 @@ } }, { - "id": 1826, + "id": 1894, "name": "operator", "kind": 32768, "kindString": "Parameter", @@ -11036,12 +11166,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1910, + "id": 1978, "name": "RuntimeFilterOp" } }, { - "id": 1827, + "id": 1895, "name": "values", "kind": 32768, "kindString": "Parameter", @@ -11087,7 +11217,7 @@ ] }, { - "id": 1859, + "id": 1927, "name": "executeQuery", "kind": 2048, "kindString": "Method", @@ -11103,7 +11233,7 @@ ], "signatures": [ { - "id": 1860, + "id": 1928, "name": "executeQuery", "kind": 4096, "kindString": "Call signature", @@ -11114,7 +11244,7 @@ }, "parameters": [ { - "id": 1861, + "id": 1929, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -11128,7 +11258,7 @@ } }, { - "id": 1862, + "id": 1930, "name": "variables", "kind": 32768, "kindString": "Parameter", @@ -11156,7 +11286,7 @@ ] }, { - "id": 1837, + "id": 1905, "name": "fetchCSVBlob", "kind": 2048, "kindString": "Method", @@ -11172,7 +11302,7 @@ ], "signatures": [ { - "id": 1838, + "id": 1906, "name": "fetchCSVBlob", "kind": 4096, "kindString": "Call signature", @@ -11183,7 +11313,7 @@ }, "parameters": [ { - "id": 1839, + "id": 1907, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11196,7 +11326,7 @@ "defaultValue": "'en-us'" }, { - "id": 1840, + "id": 1908, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -11225,7 +11355,7 @@ ] }, { - "id": 1830, + "id": 1898, "name": "fetchData", "kind": 2048, "kindString": "Method", @@ -11241,7 +11371,7 @@ ], "signatures": [ { - "id": 1831, + "id": 1899, "name": "fetchData", "kind": 4096, "kindString": "Call signature", @@ -11252,7 +11382,7 @@ }, "parameters": [ { - "id": 1832, + "id": 1900, "name": "offset", "kind": 32768, "kindString": "Parameter", @@ -11265,7 +11395,7 @@ "defaultValue": "0" }, { - "id": 1833, + "id": 1901, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -11284,14 +11414,14 @@ { "type": "reflection", "declaration": { - "id": 1834, + "id": 1902, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1835, + "id": 1903, "name": "columns", "kind": 1024, "kindString": "Property", @@ -11302,7 +11432,7 @@ } }, { - "id": 1836, + "id": 1904, "name": "data", "kind": 1024, "kindString": "Property", @@ -11318,8 +11448,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1835, - 1836 + 1903, + 1904 ] } ] @@ -11332,7 +11462,7 @@ ] }, { - "id": 1841, + "id": 1909, "name": "fetchPNGBlob", "kind": 2048, "kindString": "Method", @@ -11348,7 +11478,7 @@ ], "signatures": [ { - "id": 1842, + "id": 1910, "name": "fetchPNGBlob", "kind": 4096, "kindString": "Call signature", @@ -11359,7 +11489,7 @@ }, "parameters": [ { - "id": 1843, + "id": 1911, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11372,7 +11502,7 @@ "defaultValue": "'en-us'" }, { - "id": 1844, + "id": 1912, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -11387,7 +11517,7 @@ "defaultValue": "false" }, { - "id": 1845, + "id": 1913, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -11416,7 +11546,7 @@ ] }, { - "id": 1865, + "id": 1933, "name": "getAnswer", "kind": 2048, "kindString": "Method", @@ -11432,7 +11562,7 @@ ], "signatures": [ { - "id": 1866, + "id": 1934, "name": "getAnswer", "kind": 4096, "kindString": "Call signature", @@ -11451,7 +11581,7 @@ ] }, { - "id": 1846, + "id": 1914, "name": "getFetchCSVBlobUrl", "kind": 2048, "kindString": "Method", @@ -11467,7 +11597,7 @@ ], "signatures": [ { - "id": 1847, + "id": 1915, "name": "getFetchCSVBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -11478,7 +11608,7 @@ }, "parameters": [ { - "id": 1848, + "id": 1916, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11491,7 +11621,7 @@ "defaultValue": "'en-us'" }, { - "id": 1849, + "id": 1917, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -11512,7 +11642,7 @@ ] }, { - "id": 1850, + "id": 1918, "name": "getFetchPNGBlobUrl", "kind": 2048, "kindString": "Method", @@ -11528,7 +11658,7 @@ ], "signatures": [ { - "id": 1851, + "id": 1919, "name": "getFetchPNGBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -11538,7 +11668,7 @@ }, "parameters": [ { - "id": 1852, + "id": 1920, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -11551,7 +11681,7 @@ "defaultValue": "'en-us'" }, { - "id": 1853, + "id": 1921, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -11564,7 +11694,7 @@ "defaultValue": "false" }, { - "id": 1854, + "id": 1922, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -11587,7 +11717,7 @@ ] }, { - "id": 1828, + "id": 1896, "name": "getSQLQuery", "kind": 2048, "kindString": "Method", @@ -11603,7 +11733,7 @@ ], "signatures": [ { - "id": 1829, + "id": 1897, "name": "getSQLQuery", "kind": 4096, "kindString": "Call signature", @@ -11622,7 +11752,7 @@ ] }, { - "id": 1863, + "id": 1931, "name": "getSession", "kind": 2048, "kindString": "Method", @@ -11638,7 +11768,7 @@ ], "signatures": [ { - "id": 1864, + "id": 1932, "name": "getSession", "kind": 4096, "kindString": "Call signature", @@ -11649,14 +11779,14 @@ }, "type": { "type": "reference", - "id": 1875, + "id": 1943, "name": "SessionInterface" } } ] }, { - "id": 1812, + "id": 1880, "name": "getSourceDetail", "kind": 2048, "kindString": "Method", @@ -11672,7 +11802,7 @@ ], "signatures": [ { - "id": 1813, + "id": 1881, "name": "getSourceDetail", "kind": 4096, "kindString": "Call signature", @@ -11694,7 +11824,7 @@ ] }, { - "id": 1867, + "id": 1935, "name": "getTML", "kind": 2048, "kindString": "Method", @@ -11710,7 +11840,7 @@ ], "signatures": [ { - "id": 1868, + "id": 1936, "name": "getTML", "kind": 4096, "kindString": "Call signature", @@ -11729,7 +11859,7 @@ ] }, { - "id": 1855, + "id": 1923, "name": "getUnderlyingDataForPoint", "kind": 2048, "kindString": "Method", @@ -11745,7 +11875,7 @@ ], "signatures": [ { - "id": 1856, + "id": 1924, "name": "getUnderlyingDataForPoint", "kind": 4096, "kindString": "Call signature", @@ -11765,7 +11895,7 @@ }, "parameters": [ { - "id": 1857, + "id": 1925, "name": "outputColumnNames", "kind": 32768, "kindString": "Parameter", @@ -11780,7 +11910,7 @@ } }, { - "id": 1858, + "id": 1926, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -11792,7 +11922,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1882, + "id": 1950, "name": "UnderlyingDataPoint" } } @@ -11803,7 +11933,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1870, "name": "AnswerService" } ], @@ -11813,7 +11943,7 @@ ] }, { - "id": 1814, + "id": 1882, "name": "removeColumns", "kind": 2048, "kindString": "Method", @@ -11829,7 +11959,7 @@ ], "signatures": [ { - "id": 1815, + "id": 1883, "name": "removeColumns", "kind": 4096, "kindString": "Call signature", @@ -11840,7 +11970,7 @@ }, "parameters": [ { - "id": 1816, + "id": 1884, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -11869,7 +11999,7 @@ ] }, { - "id": 1872, + "id": 1940, "name": "setTMLOverride", "kind": 2048, "kindString": "Method", @@ -11885,14 +12015,14 @@ ], "signatures": [ { - "id": 1873, + "id": 1941, "name": "setTMLOverride", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1874, + "id": 1942, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -11916,31 +12046,31 @@ "title": "Constructors", "kind": 512, "children": [ - 1803 + 1871 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1817, - 1820, - 1869, - 1823, - 1859, - 1837, - 1830, - 1841, - 1865, - 1846, - 1850, - 1828, - 1863, - 1812, - 1867, - 1855, - 1814, - 1872 + 1885, + 1888, + 1937, + 1891, + 1927, + 1905, + 1898, + 1909, + 1933, + 1914, + 1918, + 1896, + 1931, + 1880, + 1935, + 1923, + 1882, + 1940 ] } ], @@ -11953,7 +12083,7 @@ ] }, { - "id": 989, + "id": 1024, "name": "AppEmbed", "kind": 128, "kindString": "Class", @@ -11969,7 +12099,7 @@ }, "children": [ { - "id": 990, + "id": 1025, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -11977,46 +12107,46 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 630, + "line": 625, "character": 4 } ], "signatures": [ { - "id": 991, + "id": 1026, "name": "new AppEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 992, + "id": 1027, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2622, + "id": 2704, "name": "DOMSelector" } }, { - "id": 993, + "id": 1028, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2509, + "id": 2589, "name": "AppViewConfig" } } ], "type": { "type": "reference", - "id": 989, + "id": 1024, "name": "AppEmbed" }, "overwrites": { @@ -12031,7 +12161,7 @@ } }, { - "id": 1027, + "id": 1062, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -12041,13 +12171,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1007, + "line": 993, "character": 11 } ], "signatures": [ { - "id": 1028, + "id": 1063, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -12077,7 +12207,7 @@ } }, { - "id": 1196, + "id": 1238, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -12087,13 +12217,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1596, + "line": 1644, "character": 17 } ], "signatures": [ { - "id": 1197, + "id": 1239, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -12109,7 +12239,7 @@ }, "parameters": [ { - "id": 1198, + "id": 1240, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -12130,7 +12260,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1870, "name": "AnswerService" } ], @@ -12148,7 +12278,7 @@ } }, { - "id": 1004, + "id": 1039, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -12158,13 +12288,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 876, + "line": 862, "character": 11 } ], "signatures": [ { - "id": 1005, + "id": 1040, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -12180,7 +12310,7 @@ ] }, { - "id": 1165, + "id": 1207, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -12190,13 +12320,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1331, + "line": 1379, "character": 11 } ], "signatures": [ { - "id": 1166, + "id": 1208, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -12217,7 +12347,7 @@ } }, { - "id": 1191, + "id": 1233, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -12227,13 +12357,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1631, "character": 11 } ], "signatures": [ { - "id": 1192, + "id": 1234, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -12255,14 +12385,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1193, + "id": 1235, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1195, + "id": 1237, "name": "child", "kind": 1024, "kindString": "Property", @@ -12274,7 +12404,7 @@ "defaultValue": "..." }, { - "id": 1194, + "id": 1236, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -12291,8 +12421,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1195, - 1194 + 1237, + 1236 ] } ] @@ -12310,7 +12440,7 @@ } }, { - "id": 1173, + "id": 1215, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -12320,13 +12450,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1366, + "line": 1414, "character": 11 } ], "signatures": [ { - "id": 1174, + "id": 1216, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -12342,7 +12472,7 @@ }, "parameters": [ { - "id": 1175, + "id": 1217, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -12350,20 +12480,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1176, + "id": 1218, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1177, + "id": 1219, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1178, + "id": 1220, "name": "key", "kind": 32768, "flags": {}, @@ -12408,7 +12538,7 @@ } }, { - "id": 1179, + "id": 1221, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -12418,13 +12548,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1419, + "line": 1467, "character": 11 } ], "signatures": [ { - "id": 1180, + "id": 1222, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -12445,7 +12575,7 @@ } }, { - "id": 1189, + "id": 1231, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -12455,13 +12585,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1555, + "line": 1603, "character": 11 } ], "signatures": [ { - "id": 1190, + "id": 1232, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -12485,7 +12615,7 @@ } }, { - "id": 1023, + "id": 1058, "name": "navigateToPage", "kind": 2048, "kindString": "Method", @@ -12495,13 +12625,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 981, + "line": 967, "character": 11 } ], "signatures": [ { - "id": 1024, + "id": 1059, "name": "navigateToPage", "kind": 4096, "kindString": "Call signature", @@ -12517,7 +12647,7 @@ }, "parameters": [ { - "id": 1025, + "id": 1060, "name": "path", "kind": 32768, "kindString": "Parameter", @@ -12540,7 +12670,7 @@ } }, { - "id": 1026, + "id": 1061, "name": "noReload", "kind": 32768, "kindString": "Parameter", @@ -12563,7 +12693,7 @@ ] }, { - "id": 1136, + "id": 1178, "name": "off", "kind": 2048, "kindString": "Method", @@ -12573,13 +12703,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1161, + "line": 1209, "character": 11 } ], "signatures": [ { - "id": 1137, + "id": 1179, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -12595,7 +12725,7 @@ }, "parameters": [ { - "id": 1138, + "id": 1180, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12605,12 +12735,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1994, "name": "EmbedEvent" } }, { - "id": 1139, + "id": 1181, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -12620,7 +12750,7 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2708, "name": "MessageCallback" } } @@ -12641,7 +12771,7 @@ } }, { - "id": 1042, + "id": 1077, "name": "on", "kind": 2048, "kindString": "Method", @@ -12651,13 +12781,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1705, + "line": 1753, "character": 11 } ], "signatures": [ { - "id": 1043, + "id": 1078, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -12680,38 +12810,38 @@ }, "parameters": [ { - "id": 1044, + "id": 1079, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1926, + "id": 1994, "name": "EmbedEvent" } }, { - "id": 1045, + "id": 1080, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2626, + "id": 2708, "name": "MessageCallback" } }, { - "id": 1046, + "id": 1081, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2623, + "id": 2705, "name": "MessageOptions" }, "defaultValue": "..." @@ -12733,7 +12863,7 @@ } }, { - "id": 1169, + "id": 1211, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -12743,13 +12873,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1392, "character": 17 } ], "signatures": [ { - "id": 1170, + "id": 1212, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -12759,7 +12889,7 @@ }, "parameters": [ { - "id": 1171, + "id": 1213, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -12774,7 +12904,7 @@ "defaultValue": "false" }, { - "id": 1172, + "id": 1214, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -12808,7 +12938,7 @@ } }, { - "id": 1181, + "id": 1223, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -12818,13 +12948,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1430, + "line": 1478, "character": 17 } ], "signatures": [ { - "id": 1182, + "id": 1224, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -12861,7 +12991,7 @@ } }, { - "id": 1035, + "id": 1070, "name": "render", "kind": 2048, "kindString": "Method", @@ -12871,13 +13001,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1036, + "line": 1022, "character": 17 } ], "signatures": [ { - "id": 1036, + "id": 1071, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -12890,7 +13020,7 @@ "typeArguments": [ { "type": "reference", - "id": 989, + "id": 1024, "name": "AppEmbed" } ], @@ -12908,7 +13038,7 @@ } }, { - "id": 1185, + "id": 1227, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -12918,13 +13048,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1478, + "line": 1526, "character": 17 } ], "signatures": [ { - "id": 1186, + "id": 1228, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -12954,7 +13084,7 @@ } }, { - "id": 1187, + "id": 1229, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -12964,13 +13094,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1536, + "line": 1584, "character": 11 } ], "signatures": [ { - "id": 1188, + "id": 1230, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -13000,7 +13130,7 @@ } }, { - "id": 1154, + "id": 1196, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -13010,13 +13140,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1271, + "line": 1319, "character": 17 } ], "signatures": [ { - "id": 1155, + "id": 1197, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -13027,19 +13157,19 @@ }, "typeParameter": [ { - "id": 1156, + "id": 1198, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2020, + "id": 2089, "name": "HostEvent" } }, { - "id": 1157, + "id": 1199, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -13048,7 +13178,7 @@ ], "parameters": [ { - "id": 1158, + "id": 1200, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -13062,7 +13192,7 @@ } }, { - "id": 1159, + "id": 1201, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -13119,7 +13249,7 @@ } }, { - "id": 1160, + "id": 1202, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -13129,13 +13259,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1307, + "line": 1355, "character": 17 } ], "signatures": [ { - "id": 1161, + "id": 1203, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -13146,21 +13276,21 @@ }, "typeParameter": [ { - "id": 1162, + "id": 1204, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2965, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1163, + "id": 1205, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -13174,7 +13304,7 @@ } }, { - "id": 1164, + "id": 1206, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -13227,38 +13357,38 @@ "title": "Constructors", "kind": 512, "children": [ - 990 + 1025 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1027, + 1062, + 1238, + 1039, + 1207, + 1233, + 1215, + 1221, + 1231, + 1058, + 1178, + 1077, + 1211, + 1223, + 1070, + 1227, + 1229, 1196, - 1004, - 1165, - 1191, - 1173, - 1179, - 1189, - 1023, - 1136, - 1042, - 1169, - 1181, - 1035, - 1185, - 1187, - 1154, - 1160 + 1202 ] } ], "sources": [ { "fileName": "embed/app.ts", - "line": 624, + "line": 619, "character": 13 } ], @@ -13270,7 +13400,7 @@ ] }, { - "id": 1289, + "id": 1337, "name": "BodylessConversation", "kind": 128, "kindString": "Class", @@ -13294,7 +13424,7 @@ }, "children": [ { - "id": 1290, + "id": 1338, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -13308,45 +13438,45 @@ ], "signatures": [ { - "id": 1291, + "id": 1339, "name": "new BodylessConversation", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1292, + "id": 1340, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1260, + "id": 1305, "name": "BodylessConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1289, + "id": 1337, "name": "BodylessConversation" }, "overwrites": { "type": "reference", - "id": 1201, + "id": 1243, "name": "SpotterAgentEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1200, + "id": 1242, "name": "SpotterAgentEmbed.constructor" } }, { - "id": 1293, + "id": 1341, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -13362,14 +13492,14 @@ ], "signatures": [ { - "id": 1294, + "id": 1342, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1295, + "id": 1343, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -13389,14 +13519,14 @@ { "type": "reflection", "declaration": { - "id": 1296, + "id": 1344, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1298, + "id": 1346, "name": "container", "kind": 1024, "kindString": "Property", @@ -13407,7 +13537,7 @@ } }, { - "id": 1297, + "id": 1345, "name": "error", "kind": 1024, "kindString": "Property", @@ -13418,7 +13548,7 @@ } }, { - "id": 1299, + "id": 1347, "name": "viz", "kind": 1024, "kindString": "Property", @@ -13435,9 +13565,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1298, - 1297, - 1299 + 1346, + 1345, + 1347 ] } ] @@ -13446,14 +13576,14 @@ { "type": "reflection", "declaration": { - "id": 1300, + "id": 1348, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1301, + "id": 1349, "name": "container", "kind": 1024, "kindString": "Property", @@ -13464,7 +13594,7 @@ } }, { - "id": 1303, + "id": 1351, "name": "error", "kind": 1024, "kindString": "Property", @@ -13475,7 +13605,7 @@ } }, { - "id": 1302, + "id": 1350, "name": "viz", "kind": 1024, "kindString": "Property", @@ -13492,9 +13622,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1301, - 1303, - 1302 + 1349, + 1351, + 1350 ] } ] @@ -13507,19 +13637,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1205, + "id": 1247, "name": "SpotterAgentEmbed.sendMessage" } } ], "inheritedFrom": { "type": "reference", - "id": 1204, + "id": 1246, "name": "SpotterAgentEmbed.sendMessage" } }, { - "id": 1304, + "id": 1352, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -13535,7 +13665,7 @@ ], "signatures": [ { - "id": 1305, + "id": 1353, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -13546,7 +13676,7 @@ }, "parameters": [ { - "id": 1306, + "id": 1354, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -13569,14 +13699,14 @@ { "type": "reflection", "declaration": { - "id": 1307, + "id": 1355, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1309, + "id": 1357, "name": "data", "kind": 1024, "kindString": "Property", @@ -13588,7 +13718,7 @@ "defaultValue": "..." }, { - "id": 1308, + "id": 1356, "name": "error", "kind": 1024, "kindString": "Property", @@ -13604,8 +13734,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1309, - 1308 + 1357, + 1356 ] } ] @@ -13614,14 +13744,14 @@ { "type": "reflection", "declaration": { - "id": 1310, + "id": 1358, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1311, + "id": 1359, "name": "data", "kind": 1024, "kindString": "Property", @@ -13629,14 +13759,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1312, + "id": 1360, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1318, + "id": 1366, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -13648,7 +13778,7 @@ "defaultValue": "..." }, { - "id": 1317, + "id": 1365, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -13660,7 +13790,7 @@ "defaultValue": "..." }, { - "id": 1313, + "id": 1361, "name": "convId", "kind": 1024, "kindString": "Property", @@ -13672,7 +13802,7 @@ "defaultValue": "..." }, { - "id": 1316, + "id": 1364, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -13684,7 +13814,7 @@ "defaultValue": "..." }, { - "id": 1314, + "id": 1362, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -13696,7 +13826,7 @@ "defaultValue": "..." }, { - "id": 1315, + "id": 1363, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -13713,12 +13843,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1318, - 1317, - 1313, - 1316, - 1314, - 1315 + 1366, + 1365, + 1361, + 1364, + 1362, + 1363 ] } ] @@ -13727,7 +13857,7 @@ "defaultValue": "..." }, { - "id": 1319, + "id": 1367, "name": "error", "kind": 1024, "kindString": "Property", @@ -13743,8 +13873,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1311, - 1319 + 1359, + 1367 ] } ] @@ -13757,14 +13887,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1216, + "id": 1258, "name": "SpotterAgentEmbed.sendMessageData" } } ], "inheritedFrom": { "type": "reference", - "id": 1215, + "id": 1257, "name": "SpotterAgentEmbed.sendMessageData" } } @@ -13774,15 +13904,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1290 + 1338 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1293, - 1304 + 1341, + 1352 ] } ], @@ -13796,13 +13926,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1199, + "id": 1241, "name": "SpotterAgentEmbed" } ] }, { - "id": 1566, + "id": 1627, "name": "ConversationEmbed", "kind": 128, "kindString": "Class", @@ -13830,7 +13960,7 @@ }, "children": [ { - "id": 1567, + "id": 1628, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -13844,14 +13974,14 @@ ], "signatures": [ { - "id": 1568, + "id": 1629, "name": "new ConversationEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1569, + "id": 1630, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -13862,38 +13992,38 @@ } }, { - "id": 1570, + "id": 1631, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1526, + "id": 1584, "name": "ConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1566, + "id": 1627, "name": "ConversationEmbed" }, "overwrites": { "type": "reference", - "id": 1322, + "id": 1370, "name": "SpotterEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1321, + "id": 1369, "name": "SpotterEmbed.constructor" } }, { - "id": 1710, + "id": 1778, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -13903,13 +14033,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1396, + "line": 1444, "character": 11 } ], "signatures": [ { - "id": 1711, + "id": 1779, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -13929,19 +14059,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1465, + "id": 1520, "name": "SpotterEmbed.destroy" } } ], "inheritedFrom": { "type": "reference", - "id": 1464, + "id": 1519, "name": "SpotterEmbed.destroy" } }, { - "id": 1729, + "id": 1797, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -13951,13 +14081,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1596, + "line": 1644, "character": 17 } ], "signatures": [ { - "id": 1730, + "id": 1798, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -13973,7 +14103,7 @@ }, "parameters": [ { - "id": 1731, + "id": 1799, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -13994,7 +14124,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1870, "name": "AnswerService" } ], @@ -14002,19 +14132,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1484, + "id": 1539, "name": "SpotterEmbed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "id": 1483, + "id": 1538, "name": "SpotterEmbed.getAnswerService" } }, { - "id": 1574, + "id": 1635, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -14030,7 +14160,7 @@ ], "signatures": [ { - "id": 1575, + "id": 1636, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -14041,19 +14171,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1329, + "id": 1377, "name": "SpotterEmbed.getIframeSrc" } } ], "inheritedFrom": { "type": "reference", - "id": 1328, + "id": 1376, "name": "SpotterEmbed.getIframeSrc" } }, { - "id": 1724, + "id": 1792, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -14063,13 +14193,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1631, "character": 11 } ], "signatures": [ { - "id": 1725, + "id": 1793, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -14091,14 +14221,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1726, + "id": 1794, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1728, + "id": 1796, "name": "child", "kind": 1024, "kindString": "Property", @@ -14110,7 +14240,7 @@ "defaultValue": "..." }, { - "id": 1727, + "id": 1795, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -14127,8 +14257,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1728, - 1727 + 1796, + 1795 ] } ] @@ -14136,19 +14266,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1479, + "id": 1534, "name": "SpotterEmbed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "id": 1478, + "id": 1533, "name": "SpotterEmbed.getPreRenderIds" } }, { - "id": 1704, + "id": 1772, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -14158,13 +14288,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1366, + "line": 1414, "character": 11 } ], "signatures": [ { - "id": 1705, + "id": 1773, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -14180,7 +14310,7 @@ }, "parameters": [ { - "id": 1706, + "id": 1774, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -14188,20 +14318,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1707, + "id": 1775, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1708, + "id": 1776, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1709, + "id": 1777, "name": "key", "kind": 32768, "flags": {}, @@ -14236,19 +14366,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1459, + "id": 1514, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "id": 1458, + "id": 1513, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } }, { - "id": 1712, + "id": 1780, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -14258,13 +14388,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1419, + "line": 1467, "character": 11 } ], "signatures": [ { - "id": 1713, + "id": 1781, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -14275,19 +14405,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1467, + "id": 1522, "name": "SpotterEmbed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "id": 1466, + "id": 1521, "name": "SpotterEmbed.getUnderlyingFrameElement" } }, { - "id": 1722, + "id": 1790, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -14297,13 +14427,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1555, + "line": 1603, "character": 11 } ], "signatures": [ { - "id": 1723, + "id": 1791, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -14317,19 +14447,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1477, + "id": 1532, "name": "SpotterEmbed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1476, + "id": 1531, "name": "SpotterEmbed.hidePreRender" } }, { - "id": 1669, + "id": 1737, "name": "off", "kind": 2048, "kindString": "Method", @@ -14339,13 +14469,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1161, + "line": 1209, "character": 11 } ], "signatures": [ { - "id": 1670, + "id": 1738, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -14361,7 +14491,7 @@ }, "parameters": [ { - "id": 1671, + "id": 1739, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14371,12 +14501,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1994, "name": "EmbedEvent" } }, { - "id": 1672, + "id": 1740, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14386,7 +14516,7 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2708, "name": "MessageCallback" } } @@ -14397,19 +14527,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1424, + "id": 1479, "name": "SpotterEmbed.off" } } ], "inheritedFrom": { "type": "reference", - "id": 1423, + "id": 1478, "name": "SpotterEmbed.off" } }, { - "id": 1663, + "id": 1731, "name": "on", "kind": 2048, "kindString": "Method", @@ -14419,13 +14549,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1132, + "line": 1180, "character": 11 } ], "signatures": [ { - "id": 1664, + "id": 1732, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -14445,7 +14575,7 @@ }, "parameters": [ { - "id": 1665, + "id": 1733, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14455,12 +14585,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1994, "name": "EmbedEvent" } }, { - "id": 1666, + "id": 1734, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14470,12 +14600,12 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2708, "name": "MessageCallback" } }, { - "id": 1667, + "id": 1735, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -14485,13 +14615,13 @@ }, "type": { "type": "reference", - "id": 2623, + "id": 2705, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1668, + "id": 1736, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -14510,19 +14640,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1418, + "id": 1473, "name": "SpotterEmbed.on" } } ], "inheritedFrom": { "type": "reference", - "id": 1417, + "id": 1472, "name": "SpotterEmbed.on" } }, { - "id": 1700, + "id": 1768, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -14532,13 +14662,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1392, "character": 17 } ], "signatures": [ { - "id": 1701, + "id": 1769, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -14548,7 +14678,7 @@ }, "parameters": [ { - "id": 1702, + "id": 1770, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -14563,7 +14693,7 @@ "defaultValue": "false" }, { - "id": 1703, + "id": 1771, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -14587,19 +14717,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1455, + "id": 1510, "name": "SpotterEmbed.preRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1454, + "id": 1509, "name": "SpotterEmbed.preRender" } }, { - "id": 1714, + "id": 1782, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -14609,13 +14739,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1430, + "line": 1478, "character": 17 } ], "signatures": [ { - "id": 1715, + "id": 1783, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -14642,19 +14772,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1469, + "id": 1524, "name": "SpotterEmbed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "id": 1468, + "id": 1523, "name": "SpotterEmbed.prerenderGeneric" } }, { - "id": 1576, + "id": 1637, "name": "render", "kind": 2048, "kindString": "Method", @@ -14670,7 +14800,7 @@ ], "signatures": [ { - "id": 1577, + "id": 1638, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -14680,7 +14810,7 @@ "typeArguments": [ { "type": "reference", - "id": 1320, + "id": 1368, "name": "SpotterEmbed" } ], @@ -14688,19 +14818,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1331, + "id": 1379, "name": "SpotterEmbed.render" } } ], "inheritedFrom": { "type": "reference", - "id": 1330, + "id": 1378, "name": "SpotterEmbed.render" } }, { - "id": 1718, + "id": 1786, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -14710,13 +14840,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1478, + "line": 1526, "character": 17 } ], "signatures": [ { - "id": 1719, + "id": 1787, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -14736,19 +14866,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1473, + "id": 1528, "name": "SpotterEmbed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1472, + "id": 1527, "name": "SpotterEmbed.showPreRender" } }, { - "id": 1720, + "id": 1788, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -14758,13 +14888,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1536, + "line": 1584, "character": 11 } ], "signatures": [ { - "id": 1721, + "id": 1789, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -14784,19 +14914,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1475, + "id": 1530, "name": "SpotterEmbed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "id": 1474, + "id": 1529, "name": "SpotterEmbed.syncPreRenderStyle" } }, { - "id": 1687, + "id": 1755, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -14806,13 +14936,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1271, + "line": 1319, "character": 17 } ], "signatures": [ { - "id": 1688, + "id": 1756, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -14823,19 +14953,19 @@ }, "typeParameter": [ { - "id": 1689, + "id": 1757, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2020, + "id": 2089, "name": "HostEvent" } }, { - "id": 1690, + "id": 1758, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -14844,7 +14974,7 @@ ], "parameters": [ { - "id": 1691, + "id": 1759, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14858,7 +14988,7 @@ } }, { - "id": 1692, + "id": 1760, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -14905,19 +15035,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1442, + "id": 1497, "name": "SpotterEmbed.trigger" } } ], "inheritedFrom": { "type": "reference", - "id": 1441, + "id": 1496, "name": "SpotterEmbed.trigger" } }, { - "id": 1693, + "id": 1761, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -14927,13 +15057,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1307, + "line": 1355, "character": 17 } ], "signatures": [ { - "id": 1694, + "id": 1762, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -14944,21 +15074,21 @@ }, "typeParameter": [ { - "id": 1695, + "id": 1763, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2965, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1696, + "id": 1764, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -14972,7 +15102,7 @@ } }, { - "id": 1697, + "id": 1765, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -15010,14 +15140,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1448, + "id": 1503, "name": "SpotterEmbed.triggerUIPassThrough" } } ], "inheritedFrom": { "type": "reference", - "id": 1447, + "id": 1502, "name": "SpotterEmbed.triggerUIPassThrough" } } @@ -15027,29 +15157,29 @@ "title": "Constructors", "kind": 512, "children": [ - 1567 + 1628 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1710, - 1729, - 1574, - 1724, - 1704, - 1712, - 1722, - 1669, - 1663, - 1700, - 1714, - 1576, - 1718, - 1720, - 1687, - 1693 + 1778, + 1797, + 1635, + 1792, + 1772, + 1780, + 1790, + 1737, + 1731, + 1768, + 1782, + 1637, + 1786, + 1788, + 1755, + 1761 ] } ], @@ -15063,13 +15193,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1320, + "id": 1368, "name": "SpotterEmbed" } ] }, { - "id": 590, + "id": 611, "name": "LiveboardEmbed", "kind": 128, "kindString": "Class", @@ -15089,7 +15219,7 @@ }, "children": [ { - "id": 591, + "id": 612, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -15103,40 +15233,40 @@ ], "signatures": [ { - "id": 592, + "id": 613, "name": "new LiveboardEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 593, + "id": 614, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2622, + "id": 2704, "name": "DOMSelector" } }, { - "id": 594, + "id": 615, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2387, + "id": 2461, "name": "LiveboardViewConfig" } } ], "type": { "type": "reference", - "id": 590, + "id": 611, "name": "LiveboardEmbed" }, "overwrites": { @@ -15151,7 +15281,7 @@ } }, { - "id": 646, + "id": 667, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -15167,7 +15297,7 @@ ], "signatures": [ { - "id": 647, + "id": 668, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -15197,7 +15327,7 @@ } }, { - "id": 810, + "id": 838, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -15207,13 +15337,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1596, + "line": 1644, "character": 17 } ], "signatures": [ { - "id": 811, + "id": 839, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -15229,7 +15359,7 @@ }, "parameters": [ { - "id": 812, + "id": 840, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15250,7 +15380,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1870, "name": "AnswerService" } ], @@ -15268,7 +15398,7 @@ } }, { - "id": 783, + "id": 811, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -15278,13 +15408,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1331, + "line": 1379, "character": 11 } ], "signatures": [ { - "id": 784, + "id": 812, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -15305,7 +15435,7 @@ } }, { - "id": 661, + "id": 682, "name": "getLiveboardUrl", "kind": 2048, "kindString": "Method", @@ -15321,7 +15451,7 @@ ], "signatures": [ { - "id": 662, + "id": 683, "name": "getLiveboardUrl", "kind": 4096, "kindString": "Call signature", @@ -15338,7 +15468,7 @@ ] }, { - "id": 805, + "id": 833, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -15348,13 +15478,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1631, "character": 11 } ], "signatures": [ { - "id": 806, + "id": 834, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -15376,14 +15506,14 @@ "type": { "type": "reflection", "declaration": { - "id": 807, + "id": 835, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 809, + "id": 837, "name": "child", "kind": 1024, "kindString": "Property", @@ -15395,7 +15525,7 @@ "defaultValue": "..." }, { - "id": 808, + "id": 836, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -15412,8 +15542,8 @@ "title": "Properties", "kind": 1024, "children": [ - 809, - 808 + 837, + 836 ] } ] @@ -15431,7 +15561,7 @@ } }, { - "id": 789, + "id": 817, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -15441,13 +15571,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1366, + "line": 1414, "character": 11 } ], "signatures": [ { - "id": 790, + "id": 818, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -15463,7 +15593,7 @@ }, "parameters": [ { - "id": 791, + "id": 819, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -15471,20 +15601,20 @@ "type": { "type": "reflection", "declaration": { - "id": 792, + "id": 820, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 793, + "id": 821, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 794, + "id": 822, "name": "key", "kind": 32768, "flags": {}, @@ -15529,7 +15659,7 @@ } }, { - "id": 795, + "id": 823, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -15539,13 +15669,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1419, + "line": 1467, "character": 11 } ], "signatures": [ { - "id": 796, + "id": 824, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -15566,7 +15696,7 @@ } }, { - "id": 803, + "id": 831, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -15576,13 +15706,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1555, + "line": 1603, "character": 11 } ], "signatures": [ { - "id": 804, + "id": 832, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -15606,7 +15736,7 @@ } }, { - "id": 656, + "id": 677, "name": "navigateToLiveboard", "kind": 2048, "kindString": "Method", @@ -15622,14 +15752,14 @@ ], "signatures": [ { - "id": 657, + "id": 678, "name": "navigateToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 658, + "id": 679, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -15640,7 +15770,7 @@ } }, { - "id": 659, + "id": 680, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15653,7 +15783,7 @@ } }, { - "id": 660, + "id": 681, "name": "activeTabId", "kind": 32768, "kindString": "Parameter", @@ -15674,7 +15804,7 @@ ] }, { - "id": 760, + "id": 788, "name": "off", "kind": 2048, "kindString": "Method", @@ -15684,13 +15814,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1161, + "line": 1209, "character": 11 } ], "signatures": [ { - "id": 761, + "id": 789, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -15706,7 +15836,7 @@ }, "parameters": [ { - "id": 762, + "id": 790, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15716,12 +15846,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1994, "name": "EmbedEvent" } }, { - "id": 763, + "id": 791, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -15731,7 +15861,7 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2708, "name": "MessageCallback" } } @@ -15752,7 +15882,7 @@ } }, { - "id": 668, + "id": 689, "name": "on", "kind": 2048, "kindString": "Method", @@ -15762,13 +15892,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1705, + "line": 1753, "character": 11 } ], "signatures": [ { - "id": 669, + "id": 690, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -15791,38 +15921,38 @@ }, "parameters": [ { - "id": 670, + "id": 691, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1926, + "id": 1994, "name": "EmbedEvent" } }, { - "id": 671, + "id": 692, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2626, + "id": 2708, "name": "MessageCallback" } }, { - "id": 672, + "id": 693, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2623, + "id": 2705, "name": "MessageOptions" }, "defaultValue": "..." @@ -15844,7 +15974,7 @@ } }, { - "id": 785, + "id": 813, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -15854,13 +15984,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1392, "character": 17 } ], "signatures": [ { - "id": 786, + "id": 814, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -15870,7 +16000,7 @@ }, "parameters": [ { - "id": 787, + "id": 815, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -15885,7 +16015,7 @@ "defaultValue": "false" }, { - "id": 788, + "id": 816, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -15919,7 +16049,7 @@ } }, { - "id": 797, + "id": 825, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -15929,13 +16059,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1430, + "line": 1478, "character": 17 } ], "signatures": [ { - "id": 798, + "id": 826, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -15972,7 +16102,7 @@ } }, { - "id": 654, + "id": 675, "name": "render", "kind": 2048, "kindString": "Method", @@ -15988,7 +16118,7 @@ ], "signatures": [ { - "id": 655, + "id": 676, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -16001,7 +16131,7 @@ "typeArguments": [ { "type": "reference", - "id": 590, + "id": 611, "name": "LiveboardEmbed" } ], @@ -16019,7 +16149,7 @@ } }, { - "id": 799, + "id": 827, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -16029,13 +16159,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1478, + "line": 1526, "character": 17 } ], "signatures": [ { - "id": 800, + "id": 828, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -16065,7 +16195,7 @@ } }, { - "id": 801, + "id": 829, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -16075,13 +16205,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1536, + "line": 1584, "character": 11 } ], "signatures": [ { - "id": 802, + "id": 830, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -16111,7 +16241,7 @@ } }, { - "id": 640, + "id": 661, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -16127,7 +16257,7 @@ ], "signatures": [ { - "id": 641, + "id": 662, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -16138,19 +16268,19 @@ }, "typeParameter": [ { - "id": 642, + "id": 663, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2020, + "id": 2089, "name": "HostEvent" } }, { - "id": 643, + "id": 664, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -16159,7 +16289,7 @@ ], "parameters": [ { - "id": 644, + "id": 665, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16173,7 +16303,7 @@ } }, { - "id": 645, + "id": 666, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -16230,7 +16360,7 @@ } }, { - "id": 778, + "id": 806, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -16240,13 +16370,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1307, + "line": 1355, "character": 17 } ], "signatures": [ { - "id": 779, + "id": 807, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -16257,21 +16387,21 @@ }, "typeParameter": [ { - "id": 780, + "id": 808, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2965, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 781, + "id": 809, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -16285,7 +16415,7 @@ } }, { - "id": 782, + "id": 810, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -16338,31 +16468,31 @@ "title": "Constructors", "kind": 512, "children": [ - 591 + 612 ] }, { "title": "Methods", "kind": 2048, "children": [ - 646, - 810, - 783, + 667, + 838, + 811, + 682, + 833, + 817, + 823, + 831, + 677, + 788, + 689, + 813, + 825, + 675, + 827, + 829, 661, - 805, - 789, - 795, - 803, - 656, - 760, - 668, - 785, - 797, - 654, - 799, - 801, - 640, - 778 + 806 ] } ], @@ -16381,7 +16511,7 @@ ] }, { - "id": 813, + "id": 841, "name": "SageEmbed", "kind": 128, "kindString": "Class", @@ -16401,7 +16531,7 @@ }, "children": [ { - "id": 814, + "id": 842, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -16415,40 +16545,40 @@ ], "signatures": [ { - "id": 815, + "id": 843, "name": "new SageEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 816, + "id": 844, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2622, + "id": 2704, "name": "DOMSelector" } }, { - "id": 817, + "id": 845, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2462, + "id": 2539, "name": "SageViewConfig" } } ], "type": { "type": "reference", - "id": 813, + "id": 841, "name": "SageEmbed" }, "overwrites": { @@ -16463,7 +16593,7 @@ } }, { - "id": 967, + "id": 1002, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -16473,13 +16603,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1396, + "line": 1444, "character": 11 } ], "signatures": [ { - "id": 968, + "id": 1003, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -16509,7 +16639,7 @@ } }, { - "id": 986, + "id": 1021, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -16519,13 +16649,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1596, + "line": 1644, "character": 17 } ], "signatures": [ { - "id": 987, + "id": 1022, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -16541,7 +16671,7 @@ }, "parameters": [ { - "id": 988, + "id": 1023, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -16562,7 +16692,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1870, "name": "AnswerService" } ], @@ -16580,7 +16710,7 @@ } }, { - "id": 823, + "id": 851, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -16596,7 +16726,7 @@ ], "signatures": [ { - "id": 824, + "id": 852, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -16613,7 +16743,7 @@ ] }, { - "id": 953, + "id": 988, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -16623,13 +16753,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1331, + "line": 1379, "character": 11 } ], "signatures": [ { - "id": 954, + "id": 989, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -16650,7 +16780,7 @@ } }, { - "id": 981, + "id": 1016, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -16660,13 +16790,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1631, "character": 11 } ], "signatures": [ { - "id": 982, + "id": 1017, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -16688,14 +16818,14 @@ "type": { "type": "reflection", "declaration": { - "id": 983, + "id": 1018, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 985, + "id": 1020, "name": "child", "kind": 1024, "kindString": "Property", @@ -16707,7 +16837,7 @@ "defaultValue": "..." }, { - "id": 984, + "id": 1019, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -16724,8 +16854,8 @@ "title": "Properties", "kind": 1024, "children": [ - 985, - 984 + 1020, + 1019 ] } ] @@ -16743,7 +16873,7 @@ } }, { - "id": 961, + "id": 996, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -16753,13 +16883,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1366, + "line": 1414, "character": 11 } ], "signatures": [ { - "id": 962, + "id": 997, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -16775,7 +16905,7 @@ }, "parameters": [ { - "id": 963, + "id": 998, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -16783,20 +16913,20 @@ "type": { "type": "reflection", "declaration": { - "id": 964, + "id": 999, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 965, + "id": 1000, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 966, + "id": 1001, "name": "key", "kind": 32768, "flags": {}, @@ -16841,7 +16971,7 @@ } }, { - "id": 969, + "id": 1004, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -16851,13 +16981,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1419, + "line": 1467, "character": 11 } ], "signatures": [ { - "id": 970, + "id": 1005, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -16878,7 +17008,7 @@ } }, { - "id": 979, + "id": 1014, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -16888,13 +17018,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1555, + "line": 1603, "character": 11 } ], "signatures": [ { - "id": 980, + "id": 1015, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -16918,7 +17048,7 @@ } }, { - "id": 924, + "id": 959, "name": "off", "kind": 2048, "kindString": "Method", @@ -16928,13 +17058,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1161, + "line": 1209, "character": 11 } ], "signatures": [ { - "id": 925, + "id": 960, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -16950,7 +17080,7 @@ }, "parameters": [ { - "id": 926, + "id": 961, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16960,12 +17090,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1994, "name": "EmbedEvent" } }, { - "id": 927, + "id": 962, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -16975,7 +17105,7 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2708, "name": "MessageCallback" } } @@ -16996,7 +17126,7 @@ } }, { - "id": 832, + "id": 860, "name": "on", "kind": 2048, "kindString": "Method", @@ -17006,13 +17136,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1705, + "line": 1753, "character": 11 } ], "signatures": [ { - "id": 833, + "id": 861, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -17035,38 +17165,38 @@ }, "parameters": [ { - "id": 834, + "id": 862, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1926, + "id": 1994, "name": "EmbedEvent" } }, { - "id": 835, + "id": 863, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2626, + "id": 2708, "name": "MessageCallback" } }, { - "id": 836, + "id": 864, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2623, + "id": 2705, "name": "MessageOptions" }, "defaultValue": "..." @@ -17088,7 +17218,7 @@ } }, { - "id": 957, + "id": 992, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -17098,13 +17228,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1392, "character": 17 } ], "signatures": [ { - "id": 958, + "id": 993, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -17114,7 +17244,7 @@ }, "parameters": [ { - "id": 959, + "id": 994, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -17129,7 +17259,7 @@ "defaultValue": "false" }, { - "id": 960, + "id": 995, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -17163,7 +17293,7 @@ } }, { - "id": 971, + "id": 1006, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -17173,13 +17303,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1430, + "line": 1478, "character": 17 } ], "signatures": [ { - "id": 972, + "id": 1007, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -17216,7 +17346,7 @@ } }, { - "id": 825, + "id": 853, "name": "render", "kind": 2048, "kindString": "Method", @@ -17232,7 +17362,7 @@ ], "signatures": [ { - "id": 826, + "id": 854, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -17246,7 +17376,7 @@ "typeArguments": [ { "type": "reference", - "id": 813, + "id": 841, "name": "SageEmbed" } ], @@ -17264,7 +17394,7 @@ } }, { - "id": 975, + "id": 1010, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -17274,13 +17404,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1478, + "line": 1526, "character": 17 } ], "signatures": [ { - "id": 976, + "id": 1011, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -17310,7 +17440,7 @@ } }, { - "id": 977, + "id": 1012, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -17320,13 +17450,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1536, + "line": 1584, "character": 11 } ], "signatures": [ { - "id": 978, + "id": 1013, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -17356,7 +17486,7 @@ } }, { - "id": 942, + "id": 977, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -17366,13 +17496,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1271, + "line": 1319, "character": 17 } ], "signatures": [ { - "id": 943, + "id": 978, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -17383,19 +17513,19 @@ }, "typeParameter": [ { - "id": 944, + "id": 979, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2020, + "id": 2089, "name": "HostEvent" } }, { - "id": 945, + "id": 980, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -17404,7 +17534,7 @@ ], "parameters": [ { - "id": 946, + "id": 981, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17418,7 +17548,7 @@ } }, { - "id": 947, + "id": 982, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -17475,7 +17605,7 @@ } }, { - "id": 948, + "id": 983, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -17485,13 +17615,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1307, + "line": 1355, "character": 17 } ], "signatures": [ { - "id": 949, + "id": 984, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -17502,21 +17632,21 @@ }, "typeParameter": [ { - "id": 950, + "id": 985, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2965, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 951, + "id": 986, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -17530,7 +17660,7 @@ } }, { - "id": 952, + "id": 987, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -17583,30 +17713,30 @@ "title": "Constructors", "kind": 512, "children": [ - 814 + 842 ] }, { "title": "Methods", "kind": 2048, "children": [ - 967, - 986, - 823, - 953, - 981, - 961, - 969, - 979, - 924, - 832, - 957, - 971, - 825, - 975, + 1002, + 1021, + 851, + 988, + 1016, + 996, + 1004, + 1014, + 959, + 860, + 992, + 1006, + 853, + 1010, + 1012, 977, - 942, - 948 + 983 ] } ], @@ -17625,7 +17755,7 @@ ] }, { - "id": 231, + "id": 238, "name": "SearchBarEmbed", "kind": 128, "kindString": "Class", @@ -17645,7 +17775,7 @@ }, "children": [ { - "id": 232, + "id": 239, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -17659,14 +17789,14 @@ ], "signatures": [ { - "id": 233, + "id": 240, "name": "new SearchBarEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 234, + "id": 241, "name": "domSelector", "kind": 32768, "kindString": "Parameter", @@ -17677,21 +17807,21 @@ } }, { - "id": 235, + "id": 242, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2345, + "id": 2416, "name": "SearchBarViewConfig" } } ], "type": { "type": "reference", - "id": 231, + "id": 238, "name": "SearchBarEmbed" }, "overwrites": { @@ -17706,7 +17836,7 @@ } }, { - "id": 382, + "id": 396, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -17716,13 +17846,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1396, + "line": 1444, "character": 11 } ], "signatures": [ { - "id": 383, + "id": 397, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -17752,7 +17882,7 @@ } }, { - "id": 401, + "id": 415, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -17762,13 +17892,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1596, + "line": 1644, "character": 17 } ], "signatures": [ { - "id": 402, + "id": 416, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -17784,7 +17914,7 @@ }, "parameters": [ { - "id": 403, + "id": 417, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -17805,7 +17935,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1870, "name": "AnswerService" } ], @@ -17823,7 +17953,7 @@ } }, { - "id": 368, + "id": 382, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -17833,13 +17963,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1331, + "line": 1379, "character": 11 } ], "signatures": [ { - "id": 369, + "id": 383, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -17860,7 +17990,7 @@ } }, { - "id": 396, + "id": 410, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -17870,13 +18000,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1631, "character": 11 } ], "signatures": [ { - "id": 397, + "id": 411, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -17898,14 +18028,14 @@ "type": { "type": "reflection", "declaration": { - "id": 398, + "id": 412, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 400, + "id": 414, "name": "child", "kind": 1024, "kindString": "Property", @@ -17917,7 +18047,7 @@ "defaultValue": "..." }, { - "id": 399, + "id": 413, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -17934,8 +18064,8 @@ "title": "Properties", "kind": 1024, "children": [ - 400, - 399 + 414, + 413 ] } ] @@ -17953,7 +18083,7 @@ } }, { - "id": 376, + "id": 390, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -17963,13 +18093,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1366, + "line": 1414, "character": 11 } ], "signatures": [ { - "id": 377, + "id": 391, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -17985,7 +18115,7 @@ }, "parameters": [ { - "id": 378, + "id": 392, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -17993,20 +18123,20 @@ "type": { "type": "reflection", "declaration": { - "id": 379, + "id": 393, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 380, + "id": 394, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 381, + "id": 395, "name": "key", "kind": 32768, "flags": {}, @@ -18051,7 +18181,7 @@ } }, { - "id": 384, + "id": 398, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -18061,13 +18191,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1419, + "line": 1467, "character": 11 } ], "signatures": [ { - "id": 385, + "id": 399, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -18088,7 +18218,7 @@ } }, { - "id": 394, + "id": 408, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -18098,13 +18228,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1555, + "line": 1603, "character": 11 } ], "signatures": [ { - "id": 395, + "id": 409, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -18128,7 +18258,7 @@ } }, { - "id": 339, + "id": 353, "name": "off", "kind": 2048, "kindString": "Method", @@ -18138,13 +18268,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1161, + "line": 1209, "character": 11 } ], "signatures": [ { - "id": 340, + "id": 354, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -18160,7 +18290,7 @@ }, "parameters": [ { - "id": 341, + "id": 355, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18170,12 +18300,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1994, "name": "EmbedEvent" } }, { - "id": 342, + "id": 356, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18185,7 +18315,7 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2708, "name": "MessageCallback" } } @@ -18206,7 +18336,7 @@ } }, { - "id": 333, + "id": 347, "name": "on", "kind": 2048, "kindString": "Method", @@ -18216,13 +18346,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1132, + "line": 1180, "character": 11 } ], "signatures": [ { - "id": 334, + "id": 348, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -18242,7 +18372,7 @@ }, "parameters": [ { - "id": 335, + "id": 349, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18252,12 +18382,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1994, "name": "EmbedEvent" } }, { - "id": 336, + "id": 350, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18267,12 +18397,12 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2708, "name": "MessageCallback" } }, { - "id": 337, + "id": 351, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -18282,13 +18412,13 @@ }, "type": { "type": "reference", - "id": 2623, + "id": 2705, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 338, + "id": 352, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -18317,7 +18447,7 @@ } }, { - "id": 372, + "id": 386, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -18327,13 +18457,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1392, "character": 17 } ], "signatures": [ { - "id": 373, + "id": 387, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -18343,7 +18473,7 @@ }, "parameters": [ { - "id": 374, + "id": 388, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -18358,7 +18488,7 @@ "defaultValue": "false" }, { - "id": 375, + "id": 389, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -18392,7 +18522,7 @@ } }, { - "id": 386, + "id": 400, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -18402,13 +18532,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1430, + "line": 1478, "character": 17 } ], "signatures": [ { - "id": 387, + "id": 401, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -18445,7 +18575,7 @@ } }, { - "id": 242, + "id": 249, "name": "render", "kind": 2048, "kindString": "Method", @@ -18461,7 +18591,7 @@ ], "signatures": [ { - "id": 243, + "id": 250, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -18474,7 +18604,7 @@ "typeArguments": [ { "type": "reference", - "id": 231, + "id": 238, "name": "SearchBarEmbed" } ], @@ -18492,7 +18622,7 @@ } }, { - "id": 390, + "id": 404, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -18502,13 +18632,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1478, + "line": 1526, "character": 17 } ], "signatures": [ { - "id": 391, + "id": 405, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -18538,7 +18668,7 @@ } }, { - "id": 392, + "id": 406, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -18548,13 +18678,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1536, + "line": 1584, "character": 11 } ], "signatures": [ { - "id": 393, + "id": 407, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -18584,7 +18714,7 @@ } }, { - "id": 357, + "id": 371, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -18594,13 +18724,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1271, + "line": 1319, "character": 17 } ], "signatures": [ { - "id": 358, + "id": 372, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -18611,19 +18741,19 @@ }, "typeParameter": [ { - "id": 359, + "id": 373, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2020, + "id": 2089, "name": "HostEvent" } }, { - "id": 360, + "id": 374, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -18632,7 +18762,7 @@ ], "parameters": [ { - "id": 361, + "id": 375, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18646,7 +18776,7 @@ } }, { - "id": 362, + "id": 376, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -18703,7 +18833,7 @@ } }, { - "id": 363, + "id": 377, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -18713,13 +18843,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1307, + "line": 1355, "character": 17 } ], "signatures": [ { - "id": 364, + "id": 378, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -18730,21 +18860,21 @@ }, "typeParameter": [ { - "id": 365, + "id": 379, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2965, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 366, + "id": 380, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -18758,7 +18888,7 @@ } }, { - "id": 367, + "id": 381, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -18811,29 +18941,29 @@ "title": "Constructors", "kind": 512, "children": [ - 232 + 239 ] }, { "title": "Methods", "kind": 2048, "children": [ - 382, - 401, - 368, 396, - 376, - 384, - 394, - 339, - 333, - 372, - 386, - 242, + 415, + 382, + 410, 390, - 392, - 357, - 363 + 398, + 408, + 353, + 347, + 386, + 400, + 249, + 404, + 406, + 371, + 377 ] } ], @@ -18876,7 +19006,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 347, + "line": 341, "character": 4 } ], @@ -18896,7 +19026,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2622, + "id": 2704, "name": "DOMSelector" } }, @@ -18908,7 +19038,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2291, + "id": 2360, "name": "SearchViewConfig" } } @@ -18930,7 +19060,7 @@ } }, { - "id": 209, + "id": 216, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -18940,13 +19070,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1396, + "line": 1444, "character": 11 } ], "signatures": [ { - "id": 210, + "id": 217, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -18976,7 +19106,7 @@ } }, { - "id": 228, + "id": 235, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -18986,13 +19116,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1596, + "line": 1644, "character": 17 } ], "signatures": [ { - "id": 229, + "id": 236, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -19008,7 +19138,7 @@ }, "parameters": [ { - "id": 230, + "id": 237, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -19029,7 +19159,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1870, "name": "AnswerService" } ], @@ -19057,7 +19187,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 510, + "line": 497, "character": 11 } ], @@ -19079,7 +19209,7 @@ ] }, { - "id": 195, + "id": 202, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -19089,13 +19219,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1331, + "line": 1379, "character": 11 } ], "signatures": [ { - "id": 196, + "id": 203, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -19116,7 +19246,7 @@ } }, { - "id": 223, + "id": 230, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -19126,13 +19256,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1631, "character": 11 } ], "signatures": [ { - "id": 224, + "id": 231, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -19154,14 +19284,14 @@ "type": { "type": "reflection", "declaration": { - "id": 225, + "id": 232, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 227, + "id": 234, "name": "child", "kind": 1024, "kindString": "Property", @@ -19173,7 +19303,7 @@ "defaultValue": "..." }, { - "id": 226, + "id": 233, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -19190,8 +19320,8 @@ "title": "Properties", "kind": 1024, "children": [ - 227, - 226 + 234, + 233 ] } ] @@ -19209,7 +19339,7 @@ } }, { - "id": 203, + "id": 210, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -19219,13 +19349,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1366, + "line": 1414, "character": 11 } ], "signatures": [ { - "id": 204, + "id": 211, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -19241,7 +19371,7 @@ }, "parameters": [ { - "id": 205, + "id": 212, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -19249,20 +19379,20 @@ "type": { "type": "reflection", "declaration": { - "id": 206, + "id": 213, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 207, + "id": 214, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 208, + "id": 215, "name": "key", "kind": 32768, "flags": {}, @@ -19307,7 +19437,7 @@ } }, { - "id": 211, + "id": 218, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -19317,13 +19447,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1419, + "line": 1467, "character": 11 } ], "signatures": [ { - "id": 212, + "id": 219, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -19344,7 +19474,7 @@ } }, { - "id": 221, + "id": 228, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -19354,13 +19484,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1555, + "line": 1603, "character": 11 } ], "signatures": [ { - "id": 222, + "id": 229, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -19384,7 +19514,7 @@ } }, { - "id": 166, + "id": 173, "name": "off", "kind": 2048, "kindString": "Method", @@ -19394,13 +19524,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1161, + "line": 1209, "character": 11 } ], "signatures": [ { - "id": 167, + "id": 174, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -19416,7 +19546,7 @@ }, "parameters": [ { - "id": 168, + "id": 175, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19426,12 +19556,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1994, "name": "EmbedEvent" } }, { - "id": 169, + "id": 176, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19441,7 +19571,7 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2708, "name": "MessageCallback" } } @@ -19462,7 +19592,7 @@ } }, { - "id": 160, + "id": 167, "name": "on", "kind": 2048, "kindString": "Method", @@ -19472,13 +19602,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1132, + "line": 1180, "character": 11 } ], "signatures": [ { - "id": 161, + "id": 168, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -19498,7 +19628,7 @@ }, "parameters": [ { - "id": 162, + "id": 169, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19508,12 +19638,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1994, "name": "EmbedEvent" } }, { - "id": 163, + "id": 170, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19523,12 +19653,12 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2708, "name": "MessageCallback" } }, { - "id": 164, + "id": 171, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -19538,13 +19668,13 @@ }, "type": { "type": "reference", - "id": 2623, + "id": 2705, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 165, + "id": 172, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -19573,7 +19703,7 @@ } }, { - "id": 199, + "id": 206, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -19583,13 +19713,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1392, "character": 17 } ], "signatures": [ { - "id": 200, + "id": 207, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -19599,7 +19729,7 @@ }, "parameters": [ { - "id": 201, + "id": 208, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -19614,7 +19744,7 @@ "defaultValue": "false" }, { - "id": 202, + "id": 209, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -19648,7 +19778,7 @@ } }, { - "id": 213, + "id": 220, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -19658,13 +19788,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1430, + "line": 1478, "character": 17 } ], "signatures": [ { - "id": 214, + "id": 221, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -19711,7 +19841,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 521, + "line": 508, "character": 17 } ], @@ -19748,7 +19878,7 @@ } }, { - "id": 217, + "id": 224, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -19758,13 +19888,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1478, + "line": 1526, "character": 17 } ], "signatures": [ { - "id": 218, + "id": 225, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -19794,7 +19924,7 @@ } }, { - "id": 219, + "id": 226, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -19804,13 +19934,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1536, + "line": 1584, "character": 11 } ], "signatures": [ { - "id": 220, + "id": 227, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -19840,7 +19970,7 @@ } }, { - "id": 184, + "id": 191, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -19850,13 +19980,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1271, + "line": 1319, "character": 17 } ], "signatures": [ { - "id": 185, + "id": 192, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -19867,19 +19997,19 @@ }, "typeParameter": [ { - "id": 186, + "id": 193, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2020, + "id": 2089, "name": "HostEvent" } }, { - "id": 187, + "id": 194, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -19888,7 +20018,7 @@ ], "parameters": [ { - "id": 188, + "id": 195, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19902,7 +20032,7 @@ } }, { - "id": 189, + "id": 196, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -19959,7 +20089,7 @@ } }, { - "id": 190, + "id": 197, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -19969,13 +20099,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1307, + "line": 1355, "character": 17 } ], "signatures": [ { - "id": 191, + "id": 198, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -19986,21 +20116,21 @@ }, "typeParameter": [ { - "id": 192, + "id": 199, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2965, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 193, + "id": 200, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -20014,7 +20144,7 @@ } }, { - "id": 194, + "id": 201, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -20074,30 +20204,30 @@ "title": "Methods", "kind": 2048, "children": [ - 209, - 228, + 216, + 235, 75, - 195, - 223, - 203, - 211, - 221, - 166, - 160, - 199, - 213, + 202, + 230, + 210, + 218, + 228, + 173, + 167, + 206, + 220, 77, - 217, - 219, - 184, - 190 + 224, + 226, + 191, + 197 ] } ], "sources": [ { "fileName": "embed/search.ts", - "line": 341, + "line": 335, "character": 13 } ], @@ -20109,7 +20239,7 @@ ] }, { - "id": 1199, + "id": 1241, "name": "SpotterAgentEmbed", "kind": 128, "kindString": "Class", @@ -20133,7 +20263,7 @@ }, "children": [ { - "id": 1200, + "id": 1242, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -20147,35 +20277,35 @@ ], "signatures": [ { - "id": 1201, + "id": 1243, "name": "new SpotterAgentEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1202, + "id": 1244, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1231, + "id": 1273, "name": "SpotterAgentEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1199, + "id": 1241, "name": "SpotterAgentEmbed" } } ] }, { - "id": 1204, + "id": 1246, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -20191,14 +20321,14 @@ ], "signatures": [ { - "id": 1205, + "id": 1247, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1206, + "id": 1248, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -20218,14 +20348,14 @@ { "type": "reflection", "declaration": { - "id": 1207, + "id": 1249, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1209, + "id": 1251, "name": "container", "kind": 1024, "kindString": "Property", @@ -20236,7 +20366,7 @@ } }, { - "id": 1208, + "id": 1250, "name": "error", "kind": 1024, "kindString": "Property", @@ -20247,7 +20377,7 @@ } }, { - "id": 1210, + "id": 1252, "name": "viz", "kind": 1024, "kindString": "Property", @@ -20264,9 +20394,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1209, - 1208, - 1210 + 1251, + 1250, + 1252 ] } ] @@ -20275,14 +20405,14 @@ { "type": "reflection", "declaration": { - "id": 1211, + "id": 1253, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1212, + "id": 1254, "name": "container", "kind": 1024, "kindString": "Property", @@ -20293,7 +20423,7 @@ } }, { - "id": 1214, + "id": 1256, "name": "error", "kind": 1024, "kindString": "Property", @@ -20304,7 +20434,7 @@ } }, { - "id": 1213, + "id": 1255, "name": "viz", "kind": 1024, "kindString": "Property", @@ -20321,9 +20451,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1212, - 1214, - 1213 + 1254, + 1256, + 1255 ] } ] @@ -20338,7 +20468,7 @@ ] }, { - "id": 1215, + "id": 1257, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -20354,7 +20484,7 @@ ], "signatures": [ { - "id": 1216, + "id": 1258, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -20365,7 +20495,7 @@ }, "parameters": [ { - "id": 1217, + "id": 1259, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -20388,14 +20518,14 @@ { "type": "reflection", "declaration": { - "id": 1218, + "id": 1260, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1220, + "id": 1262, "name": "data", "kind": 1024, "kindString": "Property", @@ -20407,7 +20537,7 @@ "defaultValue": "..." }, { - "id": 1219, + "id": 1261, "name": "error", "kind": 1024, "kindString": "Property", @@ -20423,8 +20553,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1220, - 1219 + 1262, + 1261 ] } ] @@ -20433,14 +20563,14 @@ { "type": "reflection", "declaration": { - "id": 1221, + "id": 1263, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1222, + "id": 1264, "name": "data", "kind": 1024, "kindString": "Property", @@ -20448,14 +20578,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1223, + "id": 1265, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1229, + "id": 1271, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -20467,7 +20597,7 @@ "defaultValue": "..." }, { - "id": 1228, + "id": 1270, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -20479,7 +20609,7 @@ "defaultValue": "..." }, { - "id": 1224, + "id": 1266, "name": "convId", "kind": 1024, "kindString": "Property", @@ -20491,7 +20621,7 @@ "defaultValue": "..." }, { - "id": 1227, + "id": 1269, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -20503,7 +20633,7 @@ "defaultValue": "..." }, { - "id": 1225, + "id": 1267, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -20515,7 +20645,7 @@ "defaultValue": "..." }, { - "id": 1226, + "id": 1268, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -20532,12 +20662,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1229, - 1228, - 1224, - 1227, - 1225, - 1226 + 1271, + 1270, + 1266, + 1269, + 1267, + 1268 ] } ] @@ -20546,7 +20676,7 @@ "defaultValue": "..." }, { - "id": 1230, + "id": 1272, "name": "error", "kind": 1024, "kindString": "Property", @@ -20562,8 +20692,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1222, - 1230 + 1264, + 1272 ] } ] @@ -20583,15 +20713,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1200 + 1242 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1204, - 1215 + 1246, + 1257 ] } ], @@ -20605,13 +20735,13 @@ "extendedBy": [ { "type": "reference", - "id": 1289, + "id": 1337, "name": "BodylessConversation" } ] }, { - "id": 1320, + "id": 1368, "name": "SpotterEmbed", "kind": 128, "kindString": "Class", @@ -20635,7 +20765,7 @@ }, "children": [ { - "id": 1321, + "id": 1369, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -20649,14 +20779,14 @@ ], "signatures": [ { - "id": 1322, + "id": 1370, "name": "new SpotterEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1323, + "id": 1371, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -20667,21 +20797,21 @@ } }, { - "id": 1324, + "id": 1372, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1486, + "id": 1541, "name": "SpotterEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1320, + "id": 1368, "name": "SpotterEmbed" }, "overwrites": { @@ -20696,7 +20826,7 @@ } }, { - "id": 1464, + "id": 1519, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -20706,13 +20836,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1396, + "line": 1444, "character": 11 } ], "signatures": [ { - "id": 1465, + "id": 1520, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -20742,7 +20872,7 @@ } }, { - "id": 1483, + "id": 1538, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -20752,13 +20882,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1596, + "line": 1644, "character": 17 } ], "signatures": [ { - "id": 1484, + "id": 1539, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -20774,7 +20904,7 @@ }, "parameters": [ { - "id": 1485, + "id": 1540, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -20795,7 +20925,7 @@ "typeArguments": [ { "type": "reference", - "id": 1802, + "id": 1870, "name": "AnswerService" } ], @@ -20813,7 +20943,7 @@ } }, { - "id": 1328, + "id": 1376, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -20829,7 +20959,7 @@ ], "signatures": [ { - "id": 1329, + "id": 1377, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -20850,7 +20980,7 @@ } }, { - "id": 1478, + "id": 1533, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -20860,13 +20990,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1583, + "line": 1631, "character": 11 } ], "signatures": [ { - "id": 1479, + "id": 1534, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -20888,14 +21018,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1480, + "id": 1535, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1482, + "id": 1537, "name": "child", "kind": 1024, "kindString": "Property", @@ -20907,7 +21037,7 @@ "defaultValue": "..." }, { - "id": 1481, + "id": 1536, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -20924,8 +21054,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1482, - 1481 + 1537, + 1536 ] } ] @@ -20943,7 +21073,7 @@ } }, { - "id": 1458, + "id": 1513, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -20953,13 +21083,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1366, + "line": 1414, "character": 11 } ], "signatures": [ { - "id": 1459, + "id": 1514, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -20975,7 +21105,7 @@ }, "parameters": [ { - "id": 1460, + "id": 1515, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -20983,20 +21113,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1461, + "id": 1516, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1462, + "id": 1517, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1463, + "id": 1518, "name": "key", "kind": 32768, "flags": {}, @@ -21041,7 +21171,7 @@ } }, { - "id": 1466, + "id": 1521, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -21051,13 +21181,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1419, + "line": 1467, "character": 11 } ], "signatures": [ { - "id": 1467, + "id": 1522, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -21078,7 +21208,7 @@ } }, { - "id": 1476, + "id": 1531, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -21088,13 +21218,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1555, + "line": 1603, "character": 11 } ], "signatures": [ { - "id": 1477, + "id": 1532, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -21118,7 +21248,7 @@ } }, { - "id": 1423, + "id": 1478, "name": "off", "kind": 2048, "kindString": "Method", @@ -21128,13 +21258,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1161, + "line": 1209, "character": 11 } ], "signatures": [ { - "id": 1424, + "id": 1479, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -21150,7 +21280,7 @@ }, "parameters": [ { - "id": 1425, + "id": 1480, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21160,12 +21290,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1994, "name": "EmbedEvent" } }, { - "id": 1426, + "id": 1481, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -21175,7 +21305,7 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2708, "name": "MessageCallback" } } @@ -21196,7 +21326,7 @@ } }, { - "id": 1417, + "id": 1472, "name": "on", "kind": 2048, "kindString": "Method", @@ -21206,13 +21336,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1132, + "line": 1180, "character": 11 } ], "signatures": [ { - "id": 1418, + "id": 1473, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -21232,7 +21362,7 @@ }, "parameters": [ { - "id": 1419, + "id": 1474, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21242,12 +21372,12 @@ }, "type": { "type": "reference", - "id": 1926, + "id": 1994, "name": "EmbedEvent" } }, { - "id": 1420, + "id": 1475, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -21257,12 +21387,12 @@ }, "type": { "type": "reference", - "id": 2626, + "id": 2708, "name": "MessageCallback" } }, { - "id": 1421, + "id": 1476, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -21272,13 +21402,13 @@ }, "type": { "type": "reference", - "id": 2623, + "id": 2705, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1422, + "id": 1477, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -21307,7 +21437,7 @@ } }, { - "id": 1454, + "id": 1509, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -21317,13 +21447,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1344, + "line": 1392, "character": 17 } ], "signatures": [ { - "id": 1455, + "id": 1510, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -21333,7 +21463,7 @@ }, "parameters": [ { - "id": 1456, + "id": 1511, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -21348,7 +21478,7 @@ "defaultValue": "false" }, { - "id": 1457, + "id": 1512, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -21382,7 +21512,7 @@ } }, { - "id": 1468, + "id": 1523, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -21392,13 +21522,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1430, + "line": 1478, "character": 17 } ], "signatures": [ { - "id": 1469, + "id": 1524, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -21435,7 +21565,7 @@ } }, { - "id": 1330, + "id": 1378, "name": "render", "kind": 2048, "kindString": "Method", @@ -21451,7 +21581,7 @@ ], "signatures": [ { - "id": 1331, + "id": 1379, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -21461,7 +21591,7 @@ "typeArguments": [ { "type": "reference", - "id": 1320, + "id": 1368, "name": "SpotterEmbed" } ], @@ -21479,7 +21609,7 @@ } }, { - "id": 1472, + "id": 1527, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -21489,13 +21619,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1478, + "line": 1526, "character": 17 } ], "signatures": [ { - "id": 1473, + "id": 1528, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -21525,7 +21655,7 @@ } }, { - "id": 1474, + "id": 1529, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -21535,13 +21665,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1536, + "line": 1584, "character": 11 } ], "signatures": [ { - "id": 1475, + "id": 1530, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -21571,7 +21701,7 @@ } }, { - "id": 1441, + "id": 1496, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -21581,13 +21711,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1271, + "line": 1319, "character": 17 } ], "signatures": [ { - "id": 1442, + "id": 1497, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -21598,19 +21728,19 @@ }, "typeParameter": [ { - "id": 1443, + "id": 1498, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2020, + "id": 2089, "name": "HostEvent" } }, { - "id": 1444, + "id": 1499, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -21619,7 +21749,7 @@ ], "parameters": [ { - "id": 1445, + "id": 1500, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21633,7 +21763,7 @@ } }, { - "id": 1446, + "id": 1501, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -21690,7 +21820,7 @@ } }, { - "id": 1447, + "id": 1502, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -21700,13 +21830,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1307, + "line": 1355, "character": 17 } ], "signatures": [ { - "id": 1448, + "id": 1503, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -21717,21 +21847,21 @@ }, "typeParameter": [ { - "id": 1449, + "id": 1504, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2883, + "id": 2965, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1450, + "id": 1505, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -21745,7 +21875,7 @@ } }, { - "id": 1451, + "id": 1506, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -21798,29 +21928,29 @@ "title": "Constructors", "kind": 512, "children": [ - 1321 + 1369 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1464, - 1483, - 1328, + 1519, + 1538, + 1376, + 1533, + 1513, + 1521, + 1531, 1478, - 1458, - 1466, - 1476, - 1423, - 1417, - 1454, - 1468, - 1330, 1472, - 1474, - 1441, - 1447 + 1509, + 1523, + 1378, + 1527, + 1529, + 1496, + 1502 ] } ], @@ -21840,13 +21970,13 @@ "extendedBy": [ { "type": "reference", - "id": 1566, + "id": 1627, "name": "ConversationEmbed" } ] }, { - "id": 2509, + "id": 2589, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -21862,7 +21992,7 @@ }, "children": [ { - "id": 2547, + "id": 2626, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -21893,20 +22023,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2548, + "id": 2627, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2549, + "id": 2628, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2550, + "id": 2629, "name": "key", "kind": 32768, "flags": {}, @@ -21942,7 +22072,7 @@ } }, { - "id": 2571, + "id": 2653, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -21984,7 +22114,7 @@ } }, { - "id": 2529, + "id": 2609, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -22021,7 +22151,7 @@ } }, { - "id": 2568, + "id": 2650, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -22051,7 +22181,7 @@ ], "type": { "type": "reference", - "id": 2235, + "id": 2304, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -22060,7 +22190,7 @@ } }, { - "id": 2588, + "id": 2670, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -22098,7 +22228,7 @@ } }, { - "id": 2565, + "id": 2644, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -22115,7 +22245,7 @@ }, { "tag": "example", - "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\n// Use supported embed types such as AppEmbed or LiveboardEmbed\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n name: 'customAction', \n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n } \n ]\n})\n```\n" + "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\n// Use supported embed types such as AppEmbed or LiveboardEmbed\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n name: 'customAction',\n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n }\n ]\n})\n```\n" } ] }, @@ -22139,7 +22269,7 @@ } }, { - "id": 2551, + "id": 2630, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -22168,7 +22298,7 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2721, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -22177,7 +22307,7 @@ } }, { - "id": 2530, + "id": 2610, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -22211,12 +22341,12 @@ ], "type": { "type": "reference", - "id": 2896, + "id": 2979, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2572, + "id": 2654, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -22233,7 +22363,7 @@ }, { "tag": "version", - "text": "SDK: 1.43.0 | ThoughtSpot Cloud: 10.14.0.cl" + "text": "SDK: 1.41.1 | ThoughtSpot Cloud: 10.14.0.cl" }, { "tag": "example", @@ -22258,7 +22388,7 @@ } }, { - "id": 2512, + "id": 2592, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -22296,7 +22426,7 @@ } }, { - "id": 2559, + "id": 2638, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -22334,7 +22464,7 @@ } }, { - "id": 2543, + "id": 2622, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -22372,7 +22502,7 @@ } }, { - "id": 2542, + "id": 2621, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -22404,7 +22534,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -22414,7 +22544,7 @@ } }, { - "id": 2528, + "id": 2608, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -22452,7 +22582,7 @@ } }, { - "id": 2555, + "id": 2634, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -22493,7 +22623,7 @@ } }, { - "id": 2582, + "id": 2664, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -22535,7 +22665,7 @@ } }, { - "id": 2587, + "id": 2669, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -22577,7 +22707,7 @@ } }, { - "id": 2573, + "id": 2655, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -22619,7 +22749,7 @@ } }, { - "id": 2513, + "id": 2593, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -22655,7 +22785,7 @@ } }, { - "id": 2525, + "id": 2605, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -22693,7 +22823,7 @@ } }, { - "id": 2556, + "id": 2635, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -22731,7 +22861,7 @@ } }, { - "id": 2569, + "id": 2651, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -22769,7 +22899,7 @@ } }, { - "id": 2570, + "id": 2652, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -22807,7 +22937,7 @@ } }, { - "id": 2558, + "id": 2637, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -22844,7 +22974,7 @@ } }, { - "id": 2539, + "id": 2618, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -22874,7 +23004,7 @@ ], "type": { "type": "reference", - "id": 2598, + "id": 2680, "name": "FrameParams" }, "inheritedFrom": { @@ -22883,7 +23013,7 @@ } }, { - "id": 2526, + "id": 2606, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -22917,7 +23047,7 @@ } }, { - "id": 2544, + "id": 2623, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -22953,7 +23083,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -22963,7 +23093,7 @@ } }, { - "id": 2577, + "id": 2659, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -22995,7 +23125,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2604, + "id": 2686, "name": "HomeLeftNavItem" } }, @@ -23005,7 +23135,7 @@ } }, { - "id": 2575, + "id": 2657, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -23037,7 +23167,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2615, + "id": 2697, "name": "HomepageModule" } }, @@ -23047,7 +23177,7 @@ } }, { - "id": 2574, + "id": 2656, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -23079,7 +23209,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2890, + "id": 2973, "name": "ListPageColumns" } }, @@ -23089,7 +23219,7 @@ } }, { - "id": 2517, + "id": 2597, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -23127,7 +23257,7 @@ } }, { - "id": 2514, + "id": 2594, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -23165,7 +23295,7 @@ } }, { - "id": 2511, + "id": 2591, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -23203,7 +23333,7 @@ } }, { - "id": 2585, + "id": 2667, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -23245,7 +23375,7 @@ } }, { - "id": 2578, + "id": 2660, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -23287,7 +23417,7 @@ } }, { - "id": 2516, + "id": 2596, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -23325,7 +23455,7 @@ } }, { - "id": 2515, + "id": 2595, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -23363,7 +23493,7 @@ } }, { - "id": 2523, + "id": 2603, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -23400,7 +23530,7 @@ } }, { - "id": 2518, + "id": 2598, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -23438,7 +23568,7 @@ } }, { - "id": 2522, + "id": 2602, "name": "hideTagFilterChips", "kind": 1024, "kindString": "Property", @@ -23472,7 +23602,7 @@ } }, { - "id": 2532, + "id": 2611, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -23492,18 +23622,18 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 526, + "line": 521, "character": 4 } ], "type": { "type": "reference", - "id": 2848, + "id": 2930, "name": "HomePageSearchBarMode" } }, { - "id": 2552, + "id": 2631, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -23541,7 +23671,84 @@ } }, { - "id": 2590, + "id": 2647, + "name": "interceptTimeout", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6171, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "AllEmbedViewConfig.interceptTimeout" + } + }, + { + "id": 2646, + "name": "interceptUrls", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6154, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "AllEmbedViewConfig.interceptUrls" + } + }, + { + "id": 2672, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -23579,7 +23786,7 @@ } }, { - "id": 2592, + "id": 2674, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -23617,7 +23824,7 @@ } }, { - "id": 2591, + "id": 2673, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -23655,7 +23862,7 @@ } }, { - "id": 2583, + "id": 2665, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -23697,7 +23904,7 @@ } }, { - "id": 2581, + "id": 2663, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -23735,7 +23942,7 @@ } }, { - "id": 2534, + "id": 2613, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -23759,7 +23966,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 558, + "line": 553, "character": 4 } ], @@ -23769,7 +23976,7 @@ } }, { - "id": 2531, + "id": 2645, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -23778,27 +23985,32 @@ }, "comment": { "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", "tags": [ { "tag": "version", - "text": "SDK : 1.29.0 | ThoughtSpot: 10.1.0.cl\n" + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/app.ts", - "line": 519, + "fileName": "types.ts", + "line": 6138, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "AllEmbedViewConfig.isOnBeforeGetVizDataInterceptEnabled" } }, { - "id": 2535, + "id": 2614, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -23822,7 +24034,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 575, + "line": 570, "character": 4 } ], @@ -23832,7 +24044,7 @@ } }, { - "id": 2533, + "id": 2612, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -23860,7 +24072,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 541, + "line": 536, "character": 4 } ], @@ -23870,7 +24082,7 @@ } }, { - "id": 2536, + "id": 2615, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -23897,7 +24109,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 593, + "line": 588, "character": 4 } ], @@ -23907,7 +24119,7 @@ } }, { - "id": 2537, + "id": 2616, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -23931,7 +24143,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 617, + "line": 612, "character": 4 } ], @@ -23941,7 +24153,7 @@ } }, { - "id": 2561, + "id": 2640, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -23979,7 +24191,7 @@ } }, { - "id": 2589, + "id": 2671, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -24017,7 +24229,7 @@ } }, { - "id": 2546, + "id": 2625, "name": "locale", "kind": 1024, "kindString": "Property", @@ -24055,7 +24267,7 @@ } }, { - "id": 2527, + "id": 2607, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -24093,7 +24305,7 @@ } }, { - "id": 2560, + "id": 2639, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -24131,7 +24343,7 @@ } }, { - "id": 2520, + "id": 2600, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -24161,12 +24373,12 @@ ], "type": { "type": "reference", - "id": 1885, + "id": 1953, "name": "Page" } }, { - "id": 2519, + "id": 2599, "name": "path", "kind": 1024, "kindString": "Property", @@ -24200,7 +24412,7 @@ } }, { - "id": 2554, + "id": 2633, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -24238,7 +24450,7 @@ } }, { - "id": 2562, + "id": 2641, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -24276,7 +24488,7 @@ } }, { - "id": 2576, + "id": 2658, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -24308,7 +24520,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2615, + "id": 2697, "name": "HomepageModule" } }, @@ -24318,7 +24530,7 @@ } }, { - "id": 2566, + "id": 2648, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -24350,7 +24562,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1974, "name": "RuntimeFilter" } }, @@ -24360,7 +24572,7 @@ } }, { - "id": 2567, + "id": 2649, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -24392,7 +24604,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2904, "name": "RuntimeParameter" } }, @@ -24402,7 +24614,7 @@ } }, { - "id": 2564, + "id": 2643, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -24439,7 +24651,7 @@ } }, { - "id": 2580, + "id": 2662, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -24481,7 +24693,7 @@ } }, { - "id": 2586, + "id": 2668, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -24523,7 +24735,7 @@ } }, { - "id": 2579, + "id": 2661, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -24565,7 +24777,7 @@ } }, { - "id": 2584, + "id": 2666, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -24607,7 +24819,7 @@ } }, { - "id": 2510, + "id": 2590, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -24645,7 +24857,7 @@ } }, { - "id": 2521, + "id": 2601, "name": "tag", "kind": 1024, "kindString": "Property", @@ -24679,7 +24891,7 @@ } }, { - "id": 2545, + "id": 2624, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -24715,7 +24927,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -24730,79 +24942,81 @@ "title": "Properties", "kind": 1024, "children": [ - 2547, - 2571, - 2529, - 2568, - 2588, - 2565, - 2551, - 2530, - 2572, - 2512, - 2559, - 2543, - 2542, - 2528, - 2555, - 2582, - 2587, - 2573, - 2513, - 2525, - 2556, - 2569, - 2570, - 2558, - 2539, - 2526, - 2544, - 2577, - 2575, - 2574, - 2517, - 2514, - 2511, - 2585, - 2578, - 2516, - 2515, - 2523, - 2518, - 2522, - 2532, - 2552, - 2590, + 2626, + 2653, + 2609, + 2650, + 2670, + 2644, + 2630, + 2610, + 2654, 2592, + 2638, + 2622, + 2621, + 2608, + 2634, + 2664, + 2669, + 2655, + 2593, + 2605, + 2635, + 2651, + 2652, + 2637, + 2618, + 2606, + 2623, + 2659, + 2657, + 2656, + 2597, + 2594, 2591, - 2583, - 2581, - 2534, - 2531, - 2535, - 2533, - 2536, - 2537, - 2561, - 2589, - 2546, - 2527, - 2560, - 2520, - 2519, - 2554, - 2562, - 2576, - 2566, - 2567, - 2564, - 2580, - 2586, - 2579, - 2584, - 2510, - 2521, - 2545 + 2667, + 2660, + 2596, + 2595, + 2603, + 2598, + 2602, + 2611, + 2631, + 2647, + 2646, + 2672, + 2674, + 2673, + 2665, + 2663, + 2613, + 2645, + 2614, + 2612, + 2615, + 2616, + 2640, + 2671, + 2625, + 2607, + 2639, + 2600, + 2599, + 2633, + 2641, + 2658, + 2648, + 2649, + 2643, + 2662, + 2668, + 2661, + 2666, + 2590, + 2601, + 2624 ] } ], @@ -24821,7 +25035,7 @@ ] }, { - "id": 1749, + "id": 1817, "name": "AuthEventEmitter", "kind": 256, "kindString": "Interface", @@ -24837,14 +25051,14 @@ }, "children": [ { - "id": 1786, + "id": 1854, "name": "emit", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1787, + "id": 1855, "name": "emit", "kind": 4096, "kindString": "Call signature", @@ -24854,19 +25068,19 @@ }, "parameters": [ { - "id": 1788, + "id": 1856, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1748, + "id": 1816, "name": "TRIGGER_SSO_POPUP" } }, { - "id": 1789, + "id": 1857, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -24890,14 +25104,14 @@ ] }, { - "id": 1790, + "id": 1858, "name": "off", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1791, + "id": 1859, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -24907,7 +25121,7 @@ }, "parameters": [ { - "id": 1792, + "id": 1860, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24915,12 +25129,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1739, + "id": 1807, "name": "AuthStatus" } }, { - "id": 1793, + "id": 1861, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -24929,21 +25143,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1794, + "id": 1862, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1795, + "id": 1863, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1796, + "id": 1864, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -24969,7 +25183,7 @@ } }, { - "id": 1797, + "id": 1865, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -24981,7 +25195,7 @@ } }, { - "id": 1798, + "id": 1866, "name": "once", "kind": 32768, "kindString": "Parameter", @@ -24997,21 +25211,21 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1817, "name": "AuthEventEmitter" } } ] }, { - "id": 1750, + "id": 1818, "name": "on", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1751, + "id": 1819, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -25021,7 +25235,7 @@ }, "parameters": [ { - "id": 1752, + "id": 1820, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25029,12 +25243,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1740, + "id": 1808, "name": "FAILURE" } }, { - "id": 1753, + "id": 1821, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25045,28 +25259,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1754, + "id": 1822, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1755, + "id": 1823, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1756, + "id": 1824, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1732, + "id": 1800, "name": "AuthFailureType" } } @@ -25083,12 +25297,12 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1817, "name": "AuthEventEmitter" } }, { - "id": 1757, + "id": 1825, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -25098,7 +25312,7 @@ }, "parameters": [ { - "id": 1758, + "id": 1826, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25109,29 +25323,29 @@ "types": [ { "type": "reference", - "id": 1741, + "id": 1809, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1744, + "id": 1812, "name": "LOGOUT" }, { "type": "reference", - "id": 1745, + "id": 1813, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1746, + "id": 1814, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1759, + "id": 1827, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25142,14 +25356,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1760, + "id": 1828, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1761, + "id": 1829, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -25166,31 +25380,31 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1817, "name": "AuthEventEmitter" } }, { - "id": 1762, + "id": 1830, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1763, + "id": 1831, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1743, + "id": 1811, "name": "SUCCESS" } }, { - "id": 1764, + "id": 1832, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25198,21 +25412,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1765, + "id": 1833, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1766, + "id": 1834, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1767, + "id": 1835, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -25235,40 +25449,40 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1817, "name": "AuthEventEmitter" } } ] }, { - "id": 1768, + "id": 1836, "name": "once", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1769, + "id": 1837, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1770, + "id": 1838, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1740, + "id": 1808, "name": "FAILURE" } }, { - "id": 1771, + "id": 1839, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25276,28 +25490,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1772, + "id": 1840, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1773, + "id": 1841, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1774, + "id": 1842, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1732, + "id": 1800, "name": "AuthFailureType" } } @@ -25314,19 +25528,19 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1817, "name": "AuthEventEmitter" } }, { - "id": 1775, + "id": 1843, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1776, + "id": 1844, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25336,29 +25550,29 @@ "types": [ { "type": "reference", - "id": 1741, + "id": 1809, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1744, + "id": 1812, "name": "LOGOUT" }, { "type": "reference", - "id": 1745, + "id": 1813, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1746, + "id": 1814, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1777, + "id": 1845, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25366,14 +25580,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1778, + "id": 1846, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1779, + "id": 1847, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -25390,31 +25604,31 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1817, "name": "AuthEventEmitter" } }, { - "id": 1780, + "id": 1848, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1781, + "id": 1849, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1743, + "id": 1811, "name": "SUCCESS" } }, { - "id": 1782, + "id": 1850, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -25422,21 +25636,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1783, + "id": 1851, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1784, + "id": 1852, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1785, + "id": 1853, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -25459,21 +25673,21 @@ ], "type": { "type": "reference", - "id": 1749, + "id": 1817, "name": "AuthEventEmitter" } } ] }, { - "id": 1799, + "id": 1867, "name": "removeAllListeners", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1800, + "id": 1868, "name": "removeAllListeners", "kind": 4096, "kindString": "Call signature", @@ -25483,7 +25697,7 @@ }, "parameters": [ { - "id": 1801, + "id": 1869, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -25493,14 +25707,14 @@ }, "type": { "type": "reference", - "id": 1739, + "id": 1807, "name": "AuthStatus" } } ], "type": { "type": "reference", - "id": 1749, + "id": 1817, "name": "AuthEventEmitter" } } @@ -25512,11 +25726,11 @@ "title": "Methods", "kind": 2048, "children": [ - 1786, - 1790, - 1750, - 1768, - 1799 + 1854, + 1858, + 1818, + 1836, + 1867 ] } ], @@ -25529,7 +25743,7 @@ ] }, { - "id": 1260, + "id": 1305, "name": "BodylessConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -25549,7 +25763,7 @@ }, "children": [ { - "id": 1271, + "id": 1316, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -25580,20 +25794,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1272, + "id": 1317, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1273, + "id": 1318, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1274, + "id": 1319, "name": "key", "kind": 32768, "flags": {}, @@ -25625,12 +25839,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1242, + "id": 1284, "name": "SpotterAgentEmbedViewConfig.additionalFlags" } }, { - "id": 1288, + "id": 1333, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -25647,7 +25861,7 @@ }, { "tag": "example", - "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\n// Use supported embed types such as AppEmbed or LiveboardEmbed\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n name: 'customAction', \n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n } \n ]\n})\n```\n" + "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\n// Use supported embed types such as AppEmbed or LiveboardEmbed\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n name: 'customAction',\n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n }\n ]\n})\n```\n" } ] }, @@ -25667,12 +25881,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1259, + "id": 1301, "name": "SpotterAgentEmbedViewConfig.customActions" } }, { - "id": 1275, + "id": 1320, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -25701,17 +25915,17 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2721, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1246, + "id": 1288, "name": "SpotterAgentEmbedViewConfig.customizations" } }, { - "id": 1283, + "id": 1328, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -25745,12 +25959,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1254, + "id": 1296, "name": "SpotterAgentEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1267, + "id": 1312, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -25784,12 +25998,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1238, + "id": 1280, "name": "SpotterAgentEmbedViewConfig.disabledActionReason" } }, { - "id": 1266, + "id": 1311, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -25821,18 +26035,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1237, + "id": 1279, "name": "SpotterAgentEmbedViewConfig.disabledActions" } }, { - "id": 1279, + "id": 1324, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -25869,12 +26083,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1250, + "id": 1292, "name": "SpotterAgentEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1280, + "id": 1325, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -25908,12 +26122,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1251, + "id": 1293, "name": "SpotterAgentEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1282, + "id": 1327, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -25946,12 +26160,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1253, + "id": 1295, "name": "SpotterAgentEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1263, + "id": 1308, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -25981,17 +26195,17 @@ ], "type": { "type": "reference", - "id": 2598, + "id": 2680, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1234, + "id": 1276, "name": "SpotterAgentEmbedViewConfig.frameParams" } }, { - "id": 1268, + "id": 1313, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -26027,18 +26241,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1239, + "id": 1281, "name": "SpotterAgentEmbedViewConfig.hiddenActions" } }, { - "id": 1276, + "id": 1321, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -26072,12 +26286,126 @@ }, "inheritedFrom": { "type": "reference", - "id": 1247, + "id": 1289, "name": "SpotterAgentEmbedViewConfig.insertAsSibling" } }, { - "id": 1285, + "id": 1336, + "name": "interceptTimeout", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6171, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "id": 1304, + "name": "SpotterAgentEmbedViewConfig.interceptTimeout" + } + }, + { + "id": 1335, + "name": "interceptUrls", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6154, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "id": 1303, + "name": "SpotterAgentEmbedViewConfig.interceptUrls" + } + }, + { + "id": 1334, + "name": "isOnBeforeGetVizDataInterceptEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6138, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "id": 1302, + "name": "SpotterAgentEmbedViewConfig.isOnBeforeGetVizDataInterceptEnabled" + } + }, + { + "id": 1330, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -26111,12 +26439,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1256, + "id": 1298, "name": "SpotterAgentEmbedViewConfig.linkOverride" } }, { - "id": 1270, + "id": 1315, "name": "locale", "kind": 1024, "kindString": "Property", @@ -26150,12 +26478,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1241, + "id": 1283, "name": "SpotterAgentEmbedViewConfig.locale" } }, { - "id": 1284, + "id": 1329, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -26189,12 +26517,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1255, + "id": 1297, "name": "SpotterAgentEmbedViewConfig.overrideOrgId" } }, { - "id": 1278, + "id": 1323, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -26228,12 +26556,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1249, + "id": 1291, "name": "SpotterAgentEmbedViewConfig.preRenderId" } }, { - "id": 1287, + "id": 1332, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -26266,12 +26594,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1258, + "id": 1300, "name": "SpotterAgentEmbedViewConfig.showAlerts" } }, { - "id": 1269, + "id": 1314, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -26307,18 +26635,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1240, + "id": 1282, "name": "SpotterAgentEmbedViewConfig.visibleActions" } }, { - "id": 1261, + "id": 1306, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -26339,7 +26667,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1232, + "id": 1274, "name": "SpotterAgentEmbedViewConfig.worksheetId" } } @@ -26349,25 +26677,28 @@ "title": "Properties", "kind": 1024, "children": [ - 1271, - 1288, - 1275, - 1283, - 1267, - 1266, - 1279, - 1280, - 1282, - 1263, - 1268, - 1276, - 1285, - 1270, - 1284, - 1278, - 1287, - 1269, - 1261 + 1316, + 1333, + 1320, + 1328, + 1312, + 1311, + 1324, + 1325, + 1327, + 1308, + 1313, + 1321, + 1336, + 1335, + 1334, + 1330, + 1315, + 1329, + 1323, + 1332, + 1314, + 1306 ] } ], @@ -26381,13 +26712,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1231, + "id": 1273, "name": "SpotterAgentEmbedViewConfig" } ] }, { - "id": 1526, + "id": 1584, "name": "ConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -26407,7 +26738,7 @@ }, "children": [ { - "id": 1548, + "id": 1606, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -26438,20 +26769,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1549, + "id": 1607, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1550, + "id": 1608, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1551, + "id": 1609, "name": "key", "kind": 32768, "flags": {}, @@ -26483,12 +26814,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1508, + "id": 1563, "name": "SpotterEmbedViewConfig.additionalFlags" } }, { - "id": 1565, + "id": 1623, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -26505,7 +26836,7 @@ }, { "tag": "example", - "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\n// Use supported embed types such as AppEmbed or LiveboardEmbed\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n name: 'customAction', \n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n } \n ]\n})\n```\n" + "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\n// Use supported embed types such as AppEmbed or LiveboardEmbed\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n name: 'customAction',\n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n }\n ]\n})\n```\n" } ] }, @@ -26525,12 +26856,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1525, + "id": 1580, "name": "SpotterEmbedViewConfig.customActions" } }, { - "id": 1552, + "id": 1610, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -26559,17 +26890,17 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2721, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1512, + "id": 1567, "name": "SpotterEmbedViewConfig.customizations" } }, { - "id": 1531, + "id": 1589, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -26586,7 +26917,7 @@ }, { "tag": "version", - "text": "SDK: 1.43.0 | ThoughtSpot Cloud: 10.14.0.cl" + "text": "SDK: 1.41.1 | ThoughtSpot Cloud: 10.14.0.cl" }, { "tag": "example", @@ -26607,12 +26938,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1491, + "id": 1546, "name": "SpotterEmbedViewConfig.dataPanelV2" } }, { - "id": 1560, + "id": 1618, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -26646,12 +26977,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1520, + "id": 1575, "name": "SpotterEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1529, + "id": 1587, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -26685,12 +27016,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1489, + "id": 1544, "name": "SpotterEmbedViewConfig.disableSourceSelection" } }, { - "id": 1544, + "id": 1602, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -26724,12 +27055,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1504, + "id": 1559, "name": "SpotterEmbedViewConfig.disabledActionReason" } }, { - "id": 1543, + "id": 1601, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -26761,18 +27092,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1503, + "id": 1558, "name": "SpotterEmbedViewConfig.disabledActions" } }, { - "id": 1556, + "id": 1614, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -26809,12 +27140,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1516, + "id": 1571, "name": "SpotterEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1538, + "id": 1596, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -26852,12 +27183,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1498, + "id": 1553, "name": "SpotterEmbedViewConfig.enablePastConversationsSidebar" } }, { - "id": 1557, + "id": 1615, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -26891,12 +27222,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1517, + "id": 1572, "name": "SpotterEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1535, + "id": 1593, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -26930,12 +27261,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1495, + "id": 1550, "name": "SpotterEmbedViewConfig.excludeRuntimeFiltersfromURL" } }, { - "id": 1537, + "id": 1595, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -26969,12 +27300,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1497, + "id": 1552, "name": "SpotterEmbedViewConfig.excludeRuntimeParametersfromURL" } }, { - "id": 1559, + "id": 1617, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -27007,12 +27338,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1519, + "id": 1574, "name": "SpotterEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1540, + "id": 1598, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -27042,17 +27373,17 @@ ], "type": { "type": "reference", - "id": 2598, + "id": 2680, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1500, + "id": 1555, "name": "SpotterEmbedViewConfig.frameParams" } }, { - "id": 1545, + "id": 1603, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -27088,18 +27419,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1505, + "id": 1560, "name": "SpotterEmbedViewConfig.hiddenActions" } }, { - "id": 1533, + "id": 1591, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -27133,12 +27464,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1493, + "id": 1548, "name": "SpotterEmbedViewConfig.hideSampleQuestions" } }, { - "id": 1530, + "id": 1588, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -27172,12 +27503,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1490, + "id": 1545, "name": "SpotterEmbedViewConfig.hideSourceSelection" } }, { - "id": 1553, + "id": 1611, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -27211,12 +27542,126 @@ }, "inheritedFrom": { "type": "reference", - "id": 1513, + "id": 1568, "name": "SpotterEmbedViewConfig.insertAsSibling" } }, { - "id": 1562, + "id": 1626, + "name": "interceptTimeout", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6171, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "id": 1583, + "name": "SpotterEmbedViewConfig.interceptTimeout" + } + }, + { + "id": 1625, + "name": "interceptUrls", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6154, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "id": 1582, + "name": "SpotterEmbedViewConfig.interceptUrls" + } + }, + { + "id": 1624, + "name": "isOnBeforeGetVizDataInterceptEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6138, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "id": 1581, + "name": "SpotterEmbedViewConfig.isOnBeforeGetVizDataInterceptEnabled" + } + }, + { + "id": 1620, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -27250,12 +27695,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1522, + "id": 1577, "name": "SpotterEmbedViewConfig.linkOverride" } }, { - "id": 1547, + "id": 1605, "name": "locale", "kind": 1024, "kindString": "Property", @@ -27289,12 +27734,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1507, + "id": 1562, "name": "SpotterEmbedViewConfig.locale" } }, { - "id": 1561, + "id": 1619, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -27328,12 +27773,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1521, + "id": 1576, "name": "SpotterEmbedViewConfig.overrideOrgId" } }, { - "id": 1555, + "id": 1613, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -27367,12 +27812,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1515, + "id": 1570, "name": "SpotterEmbedViewConfig.preRenderId" } }, { - "id": 1534, + "id": 1592, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -27404,18 +27849,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1974, "name": "RuntimeFilter" } }, "inheritedFrom": { "type": "reference", - "id": 1494, + "id": 1549, "name": "SpotterEmbedViewConfig.runtimeFilters" } }, { - "id": 1536, + "id": 1594, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -27447,18 +27892,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2904, "name": "RuntimeParameter" } }, "inheritedFrom": { "type": "reference", - "id": 1496, + "id": 1551, "name": "SpotterEmbedViewConfig.runtimeParameters" } }, { - "id": 1528, + "id": 1586, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -27481,12 +27926,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1488, + "id": 1543, "name": "SpotterEmbedViewConfig.searchOptions" } }, { - "id": 1564, + "id": 1622, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -27519,12 +27964,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1524, + "id": 1579, "name": "SpotterEmbedViewConfig.showAlerts" } }, { - "id": 1532, + "id": 1590, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -27558,12 +28003,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1492, + "id": 1547, "name": "SpotterEmbedViewConfig.showSpotterLimitations" } }, { - "id": 1546, + "id": 1604, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -27599,18 +28044,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1506, + "id": 1561, "name": "SpotterEmbedViewConfig.visibleActions" } }, { - "id": 1527, + "id": 1585, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -27631,7 +28076,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1487, + "id": 1542, "name": "SpotterEmbedViewConfig.worksheetId" } } @@ -27641,36 +28086,39 @@ "title": "Properties", "kind": 1024, "children": [ - 1548, - 1565, - 1552, - 1531, - 1560, - 1529, - 1544, - 1543, - 1556, - 1538, - 1557, - 1535, - 1537, - 1559, - 1540, - 1545, - 1533, - 1530, - 1553, - 1562, - 1547, - 1561, - 1555, - 1534, - 1536, - 1528, - 1564, - 1532, - 1546, - 1527 + 1606, + 1623, + 1610, + 1589, + 1618, + 1587, + 1602, + 1601, + 1614, + 1596, + 1615, + 1593, + 1595, + 1617, + 1598, + 1603, + 1591, + 1588, + 1611, + 1626, + 1625, + 1624, + 1620, + 1605, + 1619, + 1613, + 1592, + 1594, + 1586, + 1622, + 1590, + 1604, + 1585 ] } ], @@ -27684,13 +28132,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1486, + "id": 1541, "name": "SpotterEmbedViewConfig" } ] }, { - "id": 2863, + "id": 2945, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -27705,7 +28153,7 @@ }, "children": [ { - "id": 2864, + "id": 2946, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -27715,21 +28163,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5878, + "line": 5952, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2865, + "id": 2947, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2866, + "id": 2948, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -27737,18 +28185,18 @@ "sources": [ { "fileName": "types.ts", - "line": 5879, + "line": 5953, "character": 8 } ], "type": { "type": "reference", - "id": 2860, + "id": 2942, "name": "VizPoint" } }, { - "id": 2867, + "id": 2949, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -27756,7 +28204,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5880, + "line": 5954, "character": 8 } ], @@ -27764,7 +28212,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2860, + "id": 2942, "name": "VizPoint" } } @@ -27775,8 +28223,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2866, - 2867 + 2948, + 2949 ] } ] @@ -27784,7 +28232,7 @@ } }, { - "id": 2868, + "id": 2950, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -27792,21 +28240,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5882, + "line": 5956, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2869, + "id": 2951, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2877, + "id": 2959, "name": "columns", "kind": 1024, "kindString": "Property", @@ -27814,7 +28262,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5890, + "line": 5964, "character": 8 } ], @@ -27827,7 +28275,7 @@ } }, { - "id": 2878, + "id": 2960, "name": "data", "kind": 1024, "kindString": "Property", @@ -27835,7 +28283,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5891, + "line": 5965, "character": 8 } ], @@ -27848,7 +28296,7 @@ } }, { - "id": 2871, + "id": 2953, "name": "id", "kind": 1024, "kindString": "Property", @@ -27856,7 +28304,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5884, + "line": 5958, "character": 8 } ], @@ -27866,7 +28314,7 @@ } }, { - "id": 2870, + "id": 2952, "name": "name", "kind": 1024, "kindString": "Property", @@ -27874,7 +28322,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5883, + "line": 5957, "character": 8 } ], @@ -27884,7 +28332,7 @@ } }, { - "id": 2872, + "id": 2954, "name": "sources", "kind": 1024, "kindString": "Property", @@ -27892,21 +28340,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5885, + "line": 5959, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2873, + "id": 2955, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2874, + "id": 2956, "name": "header", "kind": 1024, "kindString": "Property", @@ -27914,21 +28362,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5886, + "line": 5960, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2875, + "id": 2957, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2876, + "id": 2958, "name": "guid", "kind": 1024, "kindString": "Property", @@ -27936,7 +28384,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5887, + "line": 5961, "character": 16 } ], @@ -27951,7 +28399,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2876 + 2958 ] } ] @@ -27964,7 +28412,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2874 + 2956 ] } ] @@ -27977,23 +28425,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2877, - 2878, - 2871, - 2870, - 2872 + 2959, + 2960, + 2953, + 2952, + 2954 ] } ], "indexSignature": { - "id": 2879, + "id": 2961, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2880, + "id": 2962, "name": "key", "kind": 32768, "flags": {}, @@ -28012,7 +28460,7 @@ } }, { - "id": 2881, + "id": 2963, "name": "session", "kind": 1024, "kindString": "Property", @@ -28020,18 +28468,18 @@ "sources": [ { "fileName": "types.ts", - "line": 5894, + "line": 5968, "character": 4 } ], "type": { "type": "reference", - "id": 1875, + "id": 1943, "name": "SessionInterface" } }, { - "id": 2882, + "id": 2964, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -28041,7 +28489,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5895, + "line": 5969, "character": 4 } ], @@ -28056,23 +28504,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2864, - 2868, - 2881, - 2882 + 2946, + 2950, + 2963, + 2964 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5877, + "line": 5951, "character": 17 } ] }, { - "id": 2661, + "id": 2743, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -28082,7 +28530,7 @@ }, "children": [ { - "id": 2715, + "id": 2797, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -28105,7 +28553,7 @@ } }, { - "id": 2714, + "id": 2796, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -28128,7 +28576,7 @@ } }, { - "id": 2684, + "id": 2766, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -28151,7 +28599,7 @@ } }, { - "id": 2685, + "id": 2767, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -28174,7 +28622,7 @@ } }, { - "id": 2687, + "id": 2769, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -28197,7 +28645,7 @@ } }, { - "id": 2686, + "id": 2768, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -28220,7 +28668,7 @@ } }, { - "id": 2666, + "id": 2748, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -28243,7 +28691,7 @@ } }, { - "id": 2727, + "id": 2809, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -28266,7 +28714,7 @@ } }, { - "id": 2728, + "id": 2810, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -28289,7 +28737,7 @@ } }, { - "id": 2725, + "id": 2807, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -28312,7 +28760,7 @@ } }, { - "id": 2726, + "id": 2808, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -28335,7 +28783,7 @@ } }, { - "id": 2689, + "id": 2771, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -28358,7 +28806,7 @@ } }, { - "id": 2694, + "id": 2776, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -28381,7 +28829,7 @@ } }, { - "id": 2691, + "id": 2773, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -28404,7 +28852,7 @@ } }, { - "id": 2693, + "id": 2775, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -28427,7 +28875,7 @@ } }, { - "id": 2692, + "id": 2774, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -28450,7 +28898,7 @@ } }, { - "id": 2690, + "id": 2772, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -28473,7 +28921,7 @@ } }, { - "id": 2699, + "id": 2781, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -28496,7 +28944,7 @@ } }, { - "id": 2696, + "id": 2778, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -28519,7 +28967,7 @@ } }, { - "id": 2698, + "id": 2780, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -28542,7 +28990,7 @@ } }, { - "id": 2697, + "id": 2779, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -28565,7 +29013,7 @@ } }, { - "id": 2695, + "id": 2777, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -28588,7 +29036,7 @@ } }, { - "id": 2703, + "id": 2785, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -28611,7 +29059,7 @@ } }, { - "id": 2702, + "id": 2784, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -28634,7 +29082,7 @@ } }, { - "id": 2701, + "id": 2783, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -28657,7 +29105,7 @@ } }, { - "id": 2700, + "id": 2782, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -28680,7 +29128,7 @@ } }, { - "id": 2688, + "id": 2770, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -28703,7 +29151,7 @@ } }, { - "id": 2821, + "id": 2903, "name": "--ts-var-cca-modal-summary-header-background", "kind": 1024, "kindString": "Property", @@ -28726,7 +29174,7 @@ } }, { - "id": 2816, + "id": 2898, "name": "--ts-var-change-analysis-insights-background", "kind": 1024, "kindString": "Property", @@ -28749,7 +29197,7 @@ } }, { - "id": 2811, + "id": 2893, "name": "--ts-var-chart-heatmap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28772,7 +29220,7 @@ } }, { - "id": 2810, + "id": 2892, "name": "--ts-var-chart-heatmap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28795,7 +29243,7 @@ } }, { - "id": 2813, + "id": 2895, "name": "--ts-var-chart-treemap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -28818,7 +29266,7 @@ } }, { - "id": 2812, + "id": 2894, "name": "--ts-var-chart-treemap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -28841,7 +29289,7 @@ } }, { - "id": 2750, + "id": 2832, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -28864,7 +29312,7 @@ } }, { - "id": 2753, + "id": 2835, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -28887,7 +29335,7 @@ } }, { - "id": 2748, + "id": 2830, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -28910,7 +29358,7 @@ } }, { - "id": 2751, + "id": 2833, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -28933,7 +29381,7 @@ } }, { - "id": 2752, + "id": 2834, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -28956,7 +29404,7 @@ } }, { - "id": 2747, + "id": 2829, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -28979,7 +29427,7 @@ } }, { - "id": 2749, + "id": 2831, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -29002,7 +29450,7 @@ } }, { - "id": 2720, + "id": 2802, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -29025,7 +29473,7 @@ } }, { - "id": 2719, + "id": 2801, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -29048,7 +29496,7 @@ } }, { - "id": 2722, + "id": 2804, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -29071,7 +29519,7 @@ } }, { - "id": 2721, + "id": 2803, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -29094,7 +29542,7 @@ } }, { - "id": 2718, + "id": 2800, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -29117,7 +29565,7 @@ } }, { - "id": 2716, + "id": 2798, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -29140,7 +29588,7 @@ } }, { - "id": 2717, + "id": 2799, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -29163,7 +29611,7 @@ } }, { - "id": 2723, + "id": 2805, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -29186,7 +29634,7 @@ } }, { - "id": 2724, + "id": 2806, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -29209,7 +29657,7 @@ } }, { - "id": 2735, + "id": 2817, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -29232,7 +29680,7 @@ } }, { - "id": 2736, + "id": 2818, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -29255,7 +29703,7 @@ } }, { - "id": 2739, + "id": 2821, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -29278,7 +29726,7 @@ } }, { - "id": 2737, + "id": 2819, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -29301,7 +29749,7 @@ } }, { - "id": 2738, + "id": 2820, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -29324,7 +29772,7 @@ } }, { - "id": 2746, + "id": 2828, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -29347,7 +29795,7 @@ } }, { - "id": 2745, + "id": 2827, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -29370,7 +29818,7 @@ } }, { - "id": 2744, + "id": 2826, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -29393,7 +29841,7 @@ } }, { - "id": 2743, + "id": 2825, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -29416,7 +29864,7 @@ } }, { - "id": 2809, + "id": 2891, "name": "--ts-var-kpi-analyze-text-color", "kind": 1024, "kindString": "Property", @@ -29439,7 +29887,7 @@ } }, { - "id": 2808, + "id": 2890, "name": "--ts-var-kpi-comparison-color", "kind": 1024, "kindString": "Property", @@ -29462,7 +29910,7 @@ } }, { - "id": 2807, + "id": 2889, "name": "--ts-var-kpi-hero-color", "kind": 1024, "kindString": "Property", @@ -29485,7 +29933,7 @@ } }, { - "id": 2815, + "id": 2897, "name": "--ts-var-kpi-negative-change-color", "kind": 1024, "kindString": "Property", @@ -29508,7 +29956,7 @@ } }, { - "id": 2814, + "id": 2896, "name": "--ts-var-kpi-positive-change-color", "kind": 1024, "kindString": "Property", @@ -29531,7 +29979,7 @@ } }, { - "id": 2741, + "id": 2823, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -29554,7 +30002,7 @@ } }, { - "id": 2740, + "id": 2822, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -29577,7 +30025,7 @@ } }, { - "id": 2768, + "id": 2850, "name": "--ts-var-liveboard-answer-viz-padding", "kind": 1024, "kindString": "Property", @@ -29600,7 +30048,7 @@ } }, { - "id": 2781, + "id": 2863, "name": "--ts-var-liveboard-chip--active-background", "kind": 1024, "kindString": "Property", @@ -29624,7 +30072,7 @@ } }, { - "id": 2780, + "id": 2862, "name": "--ts-var-liveboard-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -29648,7 +30096,7 @@ } }, { - "id": 2778, + "id": 2860, "name": "--ts-var-liveboard-chip-background", "kind": 1024, "kindString": "Property", @@ -29672,7 +30120,7 @@ } }, { - "id": 2779, + "id": 2861, "name": "--ts-var-liveboard-chip-color", "kind": 1024, "kindString": "Property", @@ -29696,7 +30144,7 @@ } }, { - "id": 2786, + "id": 2868, "name": "--ts-var-liveboard-cross-filter-layout-background", "kind": 1024, "kindString": "Property", @@ -29719,7 +30167,7 @@ } }, { - "id": 2784, + "id": 2866, "name": "--ts-var-liveboard-dual-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -29742,7 +30190,7 @@ } }, { - "id": 2783, + "id": 2865, "name": "--ts-var-liveboard-edit-bar-background", "kind": 1024, "kindString": "Property", @@ -29765,7 +30213,7 @@ } }, { - "id": 2769, + "id": 2851, "name": "--ts-var-liveboard-group-background", "kind": 1024, "kindString": "Property", @@ -29789,7 +30237,7 @@ } }, { - "id": 2770, + "id": 2852, "name": "--ts-var-liveboard-group-border-color", "kind": 1024, "kindString": "Property", @@ -29813,7 +30261,7 @@ } }, { - "id": 2774, + "id": 2856, "name": "--ts-var-liveboard-group-description-font-color", "kind": 1024, "kindString": "Property", @@ -29837,7 +30285,7 @@ } }, { - "id": 2762, + "id": 2844, "name": "--ts-var-liveboard-group-padding", "kind": 1024, "kindString": "Property", @@ -29861,7 +30309,7 @@ } }, { - "id": 2777, + "id": 2859, "name": "--ts-var-liveboard-group-tile-background", "kind": 1024, "kindString": "Property", @@ -29885,7 +30333,7 @@ } }, { - "id": 2776, + "id": 2858, "name": "--ts-var-liveboard-group-tile-description-font-color", "kind": 1024, "kindString": "Property", @@ -29909,7 +30357,7 @@ } }, { - "id": 2767, + "id": 2849, "name": "--ts-var-liveboard-group-tile-padding", "kind": 1024, "kindString": "Property", @@ -29933,7 +30381,7 @@ } }, { - "id": 2775, + "id": 2857, "name": "--ts-var-liveboard-group-tile-title-font-color", "kind": 1024, "kindString": "Property", @@ -29957,7 +30405,7 @@ } }, { - "id": 2765, + "id": 2847, "name": "--ts-var-liveboard-group-tile-title-font-size", "kind": 1024, "kindString": "Property", @@ -29981,7 +30429,7 @@ } }, { - "id": 2766, + "id": 2848, "name": "--ts-var-liveboard-group-tile-title-font-weight", "kind": 1024, "kindString": "Property", @@ -30005,7 +30453,7 @@ } }, { - "id": 2773, + "id": 2855, "name": "--ts-var-liveboard-group-title-font-color", "kind": 1024, "kindString": "Property", @@ -30029,7 +30477,7 @@ } }, { - "id": 2763, + "id": 2845, "name": "--ts-var-liveboard-group-title-font-size", "kind": 1024, "kindString": "Property", @@ -30053,7 +30501,7 @@ } }, { - "id": 2764, + "id": 2846, "name": "--ts-var-liveboard-group-title-font-weight", "kind": 1024, "kindString": "Property", @@ -30077,7 +30525,7 @@ } }, { - "id": 2800, + "id": 2882, "name": "--ts-var-liveboard-header-action-button-active-color", "kind": 1024, "kindString": "Property", @@ -30100,7 +30548,7 @@ } }, { - "id": 2797, + "id": 2879, "name": "--ts-var-liveboard-header-action-button-background", "kind": 1024, "kindString": "Property", @@ -30123,7 +30571,7 @@ } }, { - "id": 2798, + "id": 2880, "name": "--ts-var-liveboard-header-action-button-font-color", "kind": 1024, "kindString": "Property", @@ -30146,7 +30594,7 @@ } }, { - "id": 2799, + "id": 2881, "name": "--ts-var-liveboard-header-action-button-hover-color", "kind": 1024, "kindString": "Property", @@ -30169,7 +30617,7 @@ } }, { - "id": 2755, + "id": 2837, "name": "--ts-var-liveboard-header-background", "kind": 1024, "kindString": "Property", @@ -30192,7 +30640,7 @@ } }, { - "id": 2806, + "id": 2888, "name": "--ts-var-liveboard-header-badge-active-color", "kind": 1024, "kindString": "Property", @@ -30215,7 +30663,7 @@ } }, { - "id": 2801, + "id": 2883, "name": "--ts-var-liveboard-header-badge-background", "kind": 1024, "kindString": "Property", @@ -30238,7 +30686,7 @@ } }, { - "id": 2802, + "id": 2884, "name": "--ts-var-liveboard-header-badge-font-color", "kind": 1024, "kindString": "Property", @@ -30261,7 +30709,7 @@ } }, { - "id": 2805, + "id": 2887, "name": "--ts-var-liveboard-header-badge-hover-color", "kind": 1024, "kindString": "Property", @@ -30284,7 +30732,7 @@ } }, { - "id": 2803, + "id": 2885, "name": "--ts-var-liveboard-header-badge-modified-background", "kind": 1024, "kindString": "Property", @@ -30307,7 +30755,7 @@ } }, { - "id": 2804, + "id": 2886, "name": "--ts-var-liveboard-header-badge-modified-font-color", "kind": 1024, "kindString": "Property", @@ -30330,7 +30778,7 @@ } }, { - "id": 2756, + "id": 2838, "name": "--ts-var-liveboard-header-font-color", "kind": 1024, "kindString": "Property", @@ -30353,7 +30801,7 @@ } }, { - "id": 2754, + "id": 2836, "name": "--ts-var-liveboard-layout-background", "kind": 1024, "kindString": "Property", @@ -30376,7 +30824,7 @@ } }, { - "id": 2772, + "id": 2854, "name": "--ts-var-liveboard-notetitle-body-font-color", "kind": 1024, "kindString": "Property", @@ -30399,7 +30847,7 @@ } }, { - "id": 2771, + "id": 2853, "name": "--ts-var-liveboard-notetitle-heading-font-color", "kind": 1024, "kindString": "Property", @@ -30422,7 +30870,7 @@ } }, { - "id": 2785, + "id": 2867, "name": "--ts-var-liveboard-single-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -30445,7 +30893,7 @@ } }, { - "id": 2787, + "id": 2869, "name": "--ts-var-liveboard-tab-active-border-color", "kind": 1024, "kindString": "Property", @@ -30468,7 +30916,7 @@ } }, { - "id": 2788, + "id": 2870, "name": "--ts-var-liveboard-tab-hover-color", "kind": 1024, "kindString": "Property", @@ -30491,7 +30939,7 @@ } }, { - "id": 2758, + "id": 2840, "name": "--ts-var-liveboard-tile-background", "kind": 1024, "kindString": "Property", @@ -30514,7 +30962,7 @@ } }, { - "id": 2757, + "id": 2839, "name": "--ts-var-liveboard-tile-border-color", "kind": 1024, "kindString": "Property", @@ -30537,7 +30985,7 @@ } }, { - "id": 2759, + "id": 2841, "name": "--ts-var-liveboard-tile-border-radius", "kind": 1024, "kindString": "Property", @@ -30560,7 +31008,7 @@ } }, { - "id": 2760, + "id": 2842, "name": "--ts-var-liveboard-tile-padding", "kind": 1024, "kindString": "Property", @@ -30583,7 +31031,7 @@ } }, { - "id": 2761, + "id": 2843, "name": "--ts-var-liveboard-tile-table-header-background", "kind": 1024, "kindString": "Property", @@ -30606,7 +31054,7 @@ } }, { - "id": 2789, + "id": 2871, "name": "--ts-var-liveboard-tile-title-fontsize", "kind": 1024, "kindString": "Property", @@ -30629,7 +31077,7 @@ } }, { - "id": 2790, + "id": 2872, "name": "--ts-var-liveboard-tile-title-fontweight", "kind": 1024, "kindString": "Property", @@ -30652,7 +31100,7 @@ } }, { - "id": 2733, + "id": 2815, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -30675,7 +31123,7 @@ } }, { - "id": 2730, + "id": 2812, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -30698,7 +31146,7 @@ } }, { - "id": 2729, + "id": 2811, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -30721,7 +31169,7 @@ } }, { - "id": 2731, + "id": 2813, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -30744,7 +31192,7 @@ } }, { - "id": 2734, + "id": 2816, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -30767,7 +31215,7 @@ } }, { - "id": 2732, + "id": 2814, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -30790,7 +31238,7 @@ } }, { - "id": 2667, + "id": 2749, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -30813,7 +31261,7 @@ } }, { - "id": 2668, + "id": 2750, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -30836,7 +31284,7 @@ } }, { - "id": 2795, + "id": 2877, "name": "--ts-var-parameter-chip-active-background", "kind": 1024, "kindString": "Property", @@ -30859,7 +31307,7 @@ } }, { - "id": 2796, + "id": 2878, "name": "--ts-var-parameter-chip-active-text-color", "kind": 1024, "kindString": "Property", @@ -30882,7 +31330,7 @@ } }, { - "id": 2791, + "id": 2873, "name": "--ts-var-parameter-chip-background", "kind": 1024, "kindString": "Property", @@ -30905,7 +31353,7 @@ } }, { - "id": 2793, + "id": 2875, "name": "--ts-var-parameter-chip-hover-background", "kind": 1024, "kindString": "Property", @@ -30928,7 +31376,7 @@ } }, { - "id": 2794, + "id": 2876, "name": "--ts-var-parameter-chip-hover-text-color", "kind": 1024, "kindString": "Property", @@ -30951,7 +31399,7 @@ } }, { - "id": 2792, + "id": 2874, "name": "--ts-var-parameter-chip-text-color", "kind": 1024, "kindString": "Property", @@ -30974,7 +31422,7 @@ } }, { - "id": 2662, + "id": 2744, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -30997,7 +31445,7 @@ } }, { - "id": 2663, + "id": 2745, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -31020,7 +31468,7 @@ } }, { - "id": 2664, + "id": 2746, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -31043,7 +31491,7 @@ } }, { - "id": 2665, + "id": 2747, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -31066,7 +31514,7 @@ } }, { - "id": 2676, + "id": 2758, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -31089,7 +31537,7 @@ } }, { - "id": 2680, + "id": 2762, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -31112,7 +31560,7 @@ } }, { - "id": 2681, + "id": 2763, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -31135,7 +31583,7 @@ } }, { - "id": 2679, + "id": 2761, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -31158,7 +31606,7 @@ } }, { - "id": 2675, + "id": 2757, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -31181,7 +31629,7 @@ } }, { - "id": 2678, + "id": 2760, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -31204,7 +31652,7 @@ } }, { - "id": 2672, + "id": 2754, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -31227,7 +31675,7 @@ } }, { - "id": 2673, + "id": 2755, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -31250,7 +31698,7 @@ } }, { - "id": 2674, + "id": 2756, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -31273,7 +31721,7 @@ } }, { - "id": 2669, + "id": 2751, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -31296,7 +31744,7 @@ } }, { - "id": 2670, + "id": 2752, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -31319,7 +31767,7 @@ } }, { - "id": 2671, + "id": 2753, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -31342,7 +31790,7 @@ } }, { - "id": 2677, + "id": 2759, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -31365,7 +31813,7 @@ } }, { - "id": 2742, + "id": 2824, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -31388,7 +31836,7 @@ } }, { - "id": 2782, + "id": 2864, "name": "--ts-var-side-panel-width", "kind": 1024, "kindString": "Property", @@ -31411,7 +31859,7 @@ } }, { - "id": 2820, + "id": 2902, "name": "--ts-var-spotiq-analyze-crosscorrelation-card-background", "kind": 1024, "kindString": "Property", @@ -31434,7 +31882,7 @@ } }, { - "id": 2817, + "id": 2899, "name": "--ts-var-spotiq-analyze-forecasting-card-background", "kind": 1024, "kindString": "Property", @@ -31457,7 +31905,7 @@ } }, { - "id": 2818, + "id": 2900, "name": "--ts-var-spotiq-analyze-outlier-card-background", "kind": 1024, "kindString": "Property", @@ -31480,7 +31928,7 @@ } }, { - "id": 2819, + "id": 2901, "name": "--ts-var-spotiq-analyze-trend-card-background", "kind": 1024, "kindString": "Property", @@ -31503,7 +31951,7 @@ } }, { - "id": 2682, + "id": 2764, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -31526,7 +31974,7 @@ } }, { - "id": 2683, + "id": 2765, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -31549,7 +31997,7 @@ } }, { - "id": 2712, + "id": 2794, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -31572,7 +32020,7 @@ } }, { - "id": 2710, + "id": 2792, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -31595,7 +32043,7 @@ } }, { - "id": 2711, + "id": 2793, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -31618,7 +32066,7 @@ } }, { - "id": 2707, + "id": 2789, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -31641,7 +32089,7 @@ } }, { - "id": 2708, + "id": 2790, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -31664,7 +32112,7 @@ } }, { - "id": 2709, + "id": 2791, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -31687,7 +32135,7 @@ } }, { - "id": 2713, + "id": 2795, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -31710,7 +32158,7 @@ } }, { - "id": 2704, + "id": 2786, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -31733,7 +32181,7 @@ } }, { - "id": 2705, + "id": 2787, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -31756,7 +32204,7 @@ } }, { - "id": 2706, + "id": 2788, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -31784,166 +32232,166 @@ "title": "Properties", "kind": 1024, "children": [ - 2715, - 2714, - 2684, - 2685, - 2687, - 2686, - 2666, - 2727, - 2728, - 2725, - 2726, - 2689, - 2694, - 2691, - 2693, - 2692, - 2690, - 2699, - 2696, - 2698, - 2697, - 2695, - 2703, - 2702, - 2701, - 2700, - 2688, - 2821, - 2816, - 2811, - 2810, - 2813, - 2812, - 2750, - 2753, + 2797, + 2796, + 2766, + 2767, + 2769, + 2768, 2748, - 2751, - 2752, - 2747, - 2749, - 2720, - 2719, - 2722, - 2721, - 2718, - 2716, - 2717, - 2723, - 2724, - 2735, - 2736, - 2739, - 2737, - 2738, - 2746, - 2745, - 2744, - 2743, 2809, - 2808, + 2810, 2807, - 2815, - 2814, - 2741, - 2740, - 2768, + 2808, + 2771, + 2776, + 2773, + 2775, + 2774, + 2772, 2781, - 2780, 2778, + 2780, 2779, - 2786, + 2777, + 2785, 2784, 2783, - 2769, + 2782, 2770, - 2774, - 2762, - 2777, - 2776, - 2767, - 2775, - 2765, - 2766, - 2773, - 2763, - 2764, + 2903, + 2898, + 2893, + 2892, + 2895, + 2894, + 2832, + 2835, + 2830, + 2833, + 2834, + 2829, + 2831, + 2802, + 2801, + 2804, + 2803, 2800, - 2797, 2798, 2799, - 2755, - 2806, - 2801, - 2802, 2805, - 2803, - 2804, - 2756, - 2754, - 2772, - 2771, - 2785, - 2787, - 2788, + 2806, + 2817, + 2818, + 2821, + 2819, + 2820, + 2828, + 2827, + 2826, + 2825, + 2891, + 2890, + 2889, + 2897, + 2896, + 2823, + 2822, + 2850, + 2863, + 2862, + 2860, + 2861, + 2868, + 2866, + 2865, + 2851, + 2852, + 2856, + 2844, + 2859, + 2858, + 2849, + 2857, + 2847, + 2848, + 2855, + 2845, + 2846, + 2882, + 2879, + 2880, + 2881, + 2837, + 2888, + 2883, + 2884, + 2887, + 2885, + 2886, + 2838, + 2836, + 2854, + 2853, + 2867, + 2869, + 2870, + 2840, + 2839, + 2841, + 2842, + 2843, + 2871, + 2872, + 2815, + 2812, + 2811, + 2813, + 2816, + 2814, + 2749, + 2750, + 2877, + 2878, + 2873, + 2875, + 2876, + 2874, + 2744, + 2745, + 2746, + 2747, 2758, + 2762, + 2763, + 2761, 2757, - 2759, 2760, - 2761, + 2754, + 2755, + 2756, + 2751, + 2752, + 2753, + 2759, + 2824, + 2864, + 2902, + 2899, + 2900, + 2901, + 2764, + 2765, + 2794, + 2792, + 2793, 2789, 2790, - 2733, - 2730, - 2729, - 2731, - 2734, - 2732, - 2667, - 2668, - 2795, - 2796, 2791, - 2793, - 2794, - 2792, - 2662, - 2663, - 2664, - 2665, - 2676, - 2680, - 2681, - 2679, - 2675, - 2678, - 2672, - 2673, - 2674, - 2669, - 2670, - 2671, - 2677, - 2742, - 2782, - 2820, - 2817, - 2818, - 2819, - 2682, - 2683, - 2712, - 2710, - 2711, - 2707, - 2708, - 2709, - 2713, - 2704, - 2705, - 2706 + 2795, + 2786, + 2787, + 2788 ] } ], @@ -31956,7 +32404,7 @@ ] }, { - "id": 2649, + "id": 2731, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -31966,7 +32414,7 @@ }, "children": [ { - "id": 2651, + "id": 2733, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -31982,12 +32430,12 @@ ], "type": { "type": "reference", - "id": 2652, + "id": 2734, "name": "customCssInterface" } }, { - "id": 2650, + "id": 2732, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -32012,8 +32460,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2651, - 2650 + 2733, + 2732 ] } ], @@ -32026,7 +32474,7 @@ ] }, { - "id": 2639, + "id": 2721, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -32042,7 +32490,7 @@ }, "children": [ { - "id": 2641, + "id": 2723, "name": "content", "kind": 1024, "kindString": "Property", @@ -32059,14 +32507,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2642, + "id": 2724, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2644, + "id": 2726, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -32096,7 +32544,7 @@ } }, { - "id": 2645, + "id": 2727, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -32116,7 +32564,7 @@ } }, { - "id": 2643, + "id": 2725, "name": "strings", "kind": 1024, "kindString": "Property", @@ -32159,21 +32607,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2644, - 2645, - 2643 + 2726, + 2727, + 2725 ] } ], "indexSignature": { - "id": 2646, + "id": 2728, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2647, + "id": 2729, "name": "key", "kind": 32768, "flags": {}, @@ -32192,7 +32640,7 @@ } }, { - "id": 2648, + "id": 2730, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -32212,7 +32660,7 @@ } }, { - "id": 2640, + "id": 2722, "name": "style", "kind": 1024, "kindString": "Property", @@ -32228,7 +32676,7 @@ ], "type": { "type": "reference", - "id": 2649, + "id": 2731, "name": "CustomStyles" } } @@ -32238,9 +32686,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2641, - 2648, - 2640 + 2723, + 2730, + 2722 ] } ], @@ -32253,7 +32701,7 @@ ] }, { - "id": 2239, + "id": 2308, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -32269,7 +32717,7 @@ }, "children": [ { - "id": 2281, + "id": 2350, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -32299,20 +32747,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2282, + "id": 2351, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2283, + "id": 2352, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2284, + "id": 2353, "name": "key", "kind": 32768, "flags": {}, @@ -32344,7 +32792,7 @@ } }, { - "id": 2242, + "id": 2311, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -32367,7 +32815,7 @@ } }, { - "id": 2263, + "id": 2332, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -32409,7 +32857,7 @@ } }, { - "id": 2265, + "id": 2334, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -32438,7 +32886,7 @@ } }, { - "id": 2241, + "id": 2310, "name": "authType", "kind": 1024, "kindString": "Property", @@ -32455,12 +32903,12 @@ ], "type": { "type": "reference", - "id": 1894, + "id": 1962, "name": "AuthType" } }, { - "id": 2254, + "id": 2323, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -32489,7 +32937,7 @@ } }, { - "id": 2266, + "id": 2335, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -32522,7 +32970,7 @@ } }, { - "id": 2257, + "id": 2326, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -32551,7 +32999,7 @@ } }, { - "id": 2290, + "id": 2359, "name": "cleanupTimeout", "kind": 1024, "kindString": "Property", @@ -32584,7 +33032,7 @@ } }, { - "id": 2278, + "id": 2347, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -32613,7 +33061,7 @@ } }, { - "id": 2288, + "id": 2357, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -32629,7 +33077,7 @@ }, { "tag": "example", - "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\ninit({\n ... // other embed config options\n customActions: [\n {\n name: 'customAction', \n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n } \n ]\n})\n```\n" + "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\ninit({\n ... // other embed config options\n customActions: [\n {\n name: 'customAction',\n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n }\n ]\n})\n```\n" } ] }, @@ -32649,7 +33097,7 @@ } }, { - "id": 2285, + "id": 2354, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -32692,7 +33140,7 @@ } }, { - "id": 2262, + "id": 2331, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -32717,12 +33165,12 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2721, "name": "CustomisationsInterface" } }, { - "id": 2276, + "id": 2345, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -32751,7 +33199,7 @@ } }, { - "id": 2259, + "id": 2328, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -32781,7 +33229,7 @@ } }, { - "id": 2287, + "id": 2356, "name": "disableFullscreenPresentation", "kind": 1024, "kindString": "Property", @@ -32818,7 +33266,7 @@ } }, { - "id": 2280, + "id": 2349, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -32847,7 +33295,7 @@ } }, { - "id": 2255, + "id": 2324, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -32880,7 +33328,7 @@ } }, { - "id": 2286, + "id": 2355, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -32900,7 +33348,7 @@ } }, { - "id": 2275, + "id": 2344, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -32929,7 +33377,7 @@ } }, { - "id": 2253, + "id": 2322, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -32958,7 +33406,7 @@ } }, { - "id": 2248, + "id": 2317, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -32992,7 +33440,7 @@ } }, { - "id": 2274, + "id": 2343, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -33025,12 +33473,12 @@ ], "type": { "type": "reference", - "id": 2825, + "id": 2907, "name": "LogLevel" } }, { - "id": 2256, + "id": 2325, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -33059,7 +33507,7 @@ } }, { - "id": 2247, + "id": 2316, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -33092,7 +33540,7 @@ } }, { - "id": 2277, + "id": 2346, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -33121,7 +33569,7 @@ } }, { - "id": 2246, + "id": 2315, "name": "password", "kind": 1024, "kindString": "Property", @@ -33145,7 +33593,7 @@ } }, { - "id": 2272, + "id": 2341, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -33174,7 +33622,7 @@ } }, { - "id": 2258, + "id": 2327, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -33207,7 +33655,7 @@ } }, { - "id": 2249, + "id": 2318, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -33237,7 +33685,7 @@ } }, { - "id": 2251, + "id": 2320, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -33266,7 +33714,7 @@ } }, { - "id": 2273, + "id": 2342, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -33295,7 +33743,7 @@ } }, { - "id": 2252, + "id": 2321, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -33324,7 +33772,7 @@ } }, { - "id": 2261, + "id": 2330, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -33347,7 +33795,7 @@ } }, { - "id": 2260, + "id": 2329, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -33376,7 +33824,7 @@ } }, { - "id": 2240, + "id": 2309, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -33397,7 +33845,7 @@ } }, { - "id": 2264, + "id": 2333, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -33420,7 +33868,7 @@ } }, { - "id": 2245, + "id": 2314, "name": "username", "kind": 1024, "kindString": "Property", @@ -33443,7 +33891,7 @@ } }, { - "id": 2289, + "id": 2358, "name": "waitForCleanupOnDestroy", "kind": 1024, "kindString": "Property", @@ -33476,7 +33924,7 @@ } }, { - "id": 2243, + "id": 2312, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -33492,7 +33940,7 @@ ], "signatures": [ { - "id": 2244, + "id": 2313, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -33520,52 +33968,52 @@ "title": "Properties", "kind": 1024, "children": [ - 2281, - 2242, - 2263, - 2265, - 2241, - 2254, - 2266, - 2257, - 2290, - 2278, - 2288, - 2285, - 2262, - 2276, - 2259, - 2287, - 2280, - 2255, - 2286, - 2275, - 2253, - 2248, - 2274, - 2256, - 2247, - 2277, - 2246, - 2272, - 2258, - 2249, - 2251, - 2273, - 2252, - 2261, - 2260, - 2240, - 2264, - 2245, - 2289 + 2350, + 2311, + 2332, + 2334, + 2310, + 2323, + 2335, + 2326, + 2359, + 2347, + 2357, + 2354, + 2331, + 2345, + 2328, + 2356, + 2349, + 2324, + 2355, + 2344, + 2322, + 2317, + 2343, + 2325, + 2316, + 2346, + 2315, + 2341, + 2327, + 2318, + 2320, + 2342, + 2321, + 2330, + 2329, + 2309, + 2333, + 2314, + 2358 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2243 + 2312 ] } ], @@ -33578,7 +34026,7 @@ ] }, { - "id": 2598, + "id": 2680, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -33594,7 +34042,7 @@ }, "children": [ { - "id": 2600, + "id": 2682, "name": "height", "kind": 1024, "kindString": "Property", @@ -33626,7 +34074,7 @@ } }, { - "id": 2601, + "id": 2683, "name": "loading", "kind": 1024, "kindString": "Property", @@ -33662,7 +34110,7 @@ } }, { - "id": 2599, + "id": 2681, "name": "width", "kind": 1024, "kindString": "Property", @@ -33699,9 +34147,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2600, - 2601, - 2599 + 2682, + 2683, + 2681 ] } ], @@ -33713,7 +34161,7 @@ } ], "indexSignature": { - "id": 2602, + "id": 2684, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -33723,7 +34171,7 @@ }, "parameters": [ { - "id": 2603, + "id": 2685, "name": "key", "kind": 32768, "flags": {}, @@ -33757,7 +34205,7 @@ } }, { - "id": 2387, + "id": 2461, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -33773,7 +34221,7 @@ }, "children": [ { - "id": 2398, + "id": 2472, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -33807,7 +34255,7 @@ } }, { - "id": 2420, + "id": 2494, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -33838,20 +34286,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2421, + "id": 2495, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2422, + "id": 2496, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2423, + "id": 2497, "name": "key", "kind": 32768, "flags": {}, @@ -33887,7 +34335,7 @@ } }, { - "id": 2444, + "id": 2521, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -33929,7 +34377,7 @@ } }, { - "id": 2441, + "id": 2518, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -33959,7 +34407,7 @@ ], "type": { "type": "reference", - "id": 2235, + "id": 2304, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -33968,7 +34416,7 @@ } }, { - "id": 2457, + "id": 2534, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -34006,7 +34454,7 @@ } }, { - "id": 2438, + "id": 2512, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -34023,7 +34471,7 @@ }, { "tag": "example", - "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\n// Use supported embed types such as AppEmbed or LiveboardEmbed\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n name: 'customAction', \n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n } \n ]\n})\n```\n" + "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\n// Use supported embed types such as AppEmbed or LiveboardEmbed\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n name: 'customAction',\n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n }\n ]\n})\n```\n" } ] }, @@ -34047,7 +34495,7 @@ } }, { - "id": 2424, + "id": 2498, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -34076,7 +34524,7 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2721, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -34085,7 +34533,7 @@ } }, { - "id": 2445, + "id": 2522, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -34102,7 +34550,7 @@ }, { "tag": "version", - "text": "SDK: 1.43.0 | ThoughtSpot Cloud: 10.14.0.cl" + "text": "SDK: 1.41.1 | ThoughtSpot Cloud: 10.14.0.cl" }, { "tag": "example", @@ -34127,7 +34575,7 @@ } }, { - "id": 2389, + "id": 2463, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -34165,7 +34613,7 @@ } }, { - "id": 2432, + "id": 2506, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -34203,7 +34651,7 @@ } }, { - "id": 2416, + "id": 2490, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -34241,7 +34689,7 @@ } }, { - "id": 2415, + "id": 2489, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -34273,7 +34721,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -34283,7 +34731,7 @@ } }, { - "id": 2428, + "id": 2502, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -34324,7 +34772,7 @@ } }, { - "id": 2451, + "id": 2528, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -34366,7 +34814,7 @@ } }, { - "id": 2456, + "id": 2533, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -34408,7 +34856,7 @@ } }, { - "id": 2446, + "id": 2523, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -34450,7 +34898,7 @@ } }, { - "id": 2429, + "id": 2503, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -34488,7 +34936,7 @@ } }, { - "id": 2390, + "id": 2464, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -34524,7 +34972,7 @@ } }, { - "id": 2442, + "id": 2519, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -34562,7 +35010,7 @@ } }, { - "id": 2443, + "id": 2520, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -34600,7 +35048,7 @@ } }, { - "id": 2431, + "id": 2505, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -34637,7 +35085,7 @@ } }, { - "id": 2412, + "id": 2486, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -34667,7 +35115,7 @@ ], "type": { "type": "reference", - "id": 2598, + "id": 2680, "name": "FrameParams" }, "inheritedFrom": { @@ -34676,7 +35124,7 @@ } }, { - "id": 2388, + "id": 2462, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -34710,7 +35158,7 @@ } }, { - "id": 2417, + "id": 2491, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -34746,7 +35194,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -34756,7 +35204,7 @@ } }, { - "id": 2404, + "id": 2478, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -34793,7 +35241,7 @@ } }, { - "id": 2454, + "id": 2531, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -34835,7 +35283,7 @@ } }, { - "id": 2447, + "id": 2524, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -34877,7 +35325,7 @@ } }, { - "id": 2399, + "id": 2473, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -34911,7 +35359,7 @@ } }, { - "id": 2425, + "id": 2499, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -34949,7 +35397,84 @@ } }, { - "id": 2459, + "id": 2515, + "name": "interceptTimeout", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6171, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseViewConfig.interceptTimeout" + } + }, + { + "id": 2514, + "name": "interceptUrls", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6154, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseViewConfig.interceptUrls" + } + }, + { + "id": 2536, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -34987,7 +35512,7 @@ } }, { - "id": 2461, + "id": 2538, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -35025,7 +35550,7 @@ } }, { - "id": 2460, + "id": 2537, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -35063,7 +35588,7 @@ } }, { - "id": 2452, + "id": 2529, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -35105,7 +35630,7 @@ } }, { - "id": 2450, + "id": 2527, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -35143,7 +35668,7 @@ } }, { - "id": 2406, + "id": 2480, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -35177,7 +35702,41 @@ } }, { - "id": 2407, + "id": 2513, + "name": "isOnBeforeGetVizDataInterceptEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6138, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseViewConfig.isOnBeforeGetVizDataInterceptEnabled" + } + }, + { + "id": 2481, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -35211,7 +35770,7 @@ } }, { - "id": 2408, + "id": 2482, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -35248,7 +35807,7 @@ } }, { - "id": 2409, + "id": 2483, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -35282,7 +35841,7 @@ } }, { - "id": 2434, + "id": 2508, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -35320,7 +35879,7 @@ } }, { - "id": 2391, + "id": 2465, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -35354,7 +35913,7 @@ } }, { - "id": 2397, + "id": 2471, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -35388,7 +35947,7 @@ } }, { - "id": 2458, + "id": 2535, "name": "liveboardXLSXCSVDownload", "kind": 1024, "kindString": "Property", @@ -35426,7 +35985,7 @@ } }, { - "id": 2419, + "id": 2493, "name": "locale", "kind": 1024, "kindString": "Property", @@ -35464,7 +36023,7 @@ } }, { - "id": 2433, + "id": 2507, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -35502,7 +36061,7 @@ } }, { - "id": 2427, + "id": 2501, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -35540,7 +36099,7 @@ } }, { - "id": 2394, + "id": 2468, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -35574,7 +36133,7 @@ } }, { - "id": 2435, + "id": 2509, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -35612,7 +36171,7 @@ } }, { - "id": 2439, + "id": 2516, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -35644,7 +36203,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1974, "name": "RuntimeFilter" } }, @@ -35654,7 +36213,7 @@ } }, { - "id": 2440, + "id": 2517, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -35686,7 +36245,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2904, "name": "RuntimeParameter" } }, @@ -35696,7 +36255,7 @@ } }, { - "id": 2437, + "id": 2511, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -35733,7 +36292,7 @@ } }, { - "id": 2449, + "id": 2526, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -35775,7 +36334,7 @@ } }, { - "id": 2455, + "id": 2532, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -35817,7 +36376,7 @@ } }, { - "id": 2448, + "id": 2525, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -35859,7 +36418,7 @@ } }, { - "id": 2453, + "id": 2530, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -35901,7 +36460,7 @@ } }, { - "id": 2400, + "id": 2474, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -35935,7 +36494,7 @@ } }, { - "id": 2410, + "id": 2484, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -35968,7 +36527,7 @@ } }, { - "id": 2418, + "id": 2492, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -36004,7 +36563,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -36014,7 +36573,7 @@ } }, { - "id": 2405, + "id": 2479, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -36051,7 +36610,7 @@ } }, { - "id": 2395, + "id": 2469, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -36088,7 +36647,7 @@ } }, { - "id": 2393, + "id": 2467, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -36127,66 +36686,69 @@ "title": "Properties", "kind": 1024, "children": [ - 2398, - 2420, - 2444, - 2441, - 2457, - 2438, - 2424, - 2445, - 2389, - 2432, - 2416, - 2415, - 2428, - 2451, - 2456, - 2446, - 2429, - 2390, - 2442, - 2443, - 2431, - 2412, - 2388, - 2417, - 2404, - 2454, - 2447, - 2399, - 2425, - 2459, - 2461, - 2460, - 2452, - 2450, - 2406, - 2407, - 2408, - 2409, - 2434, - 2391, - 2397, - 2458, - 2419, - 2433, - 2427, - 2394, - 2435, - 2439, - 2440, - 2437, - 2449, - 2455, - 2448, - 2453, - 2400, - 2410, - 2418, - 2405, - 2395, - 2393 + 2472, + 2494, + 2521, + 2518, + 2534, + 2512, + 2498, + 2522, + 2463, + 2506, + 2490, + 2489, + 2502, + 2528, + 2533, + 2523, + 2503, + 2464, + 2519, + 2520, + 2505, + 2486, + 2462, + 2491, + 2478, + 2531, + 2524, + 2473, + 2499, + 2515, + 2514, + 2536, + 2538, + 2537, + 2529, + 2527, + 2480, + 2513, + 2481, + 2482, + 2483, + 2508, + 2465, + 2471, + 2535, + 2493, + 2507, + 2501, + 2468, + 2509, + 2516, + 2517, + 2511, + 2526, + 2532, + 2525, + 2530, + 2474, + 2484, + 2492, + 2479, + 2469, + 2467 ] } ], @@ -36213,7 +36775,7 @@ ] }, { - "id": 1906, + "id": 1974, "name": "RuntimeFilter", "kind": 256, "kindString": "Interface", @@ -36223,7 +36785,7 @@ }, "children": [ { - "id": 1907, + "id": 1975, "name": "columnName", "kind": 1024, "kindString": "Property", @@ -36234,7 +36796,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1776, + "line": 1780, "character": 4 } ], @@ -36244,7 +36806,7 @@ } }, { - "id": 1908, + "id": 1976, "name": "operator", "kind": 1024, "kindString": "Property", @@ -36255,18 +36817,18 @@ "sources": [ { "fileName": "types.ts", - "line": 1780, + "line": 1784, "character": 4 } ], "type": { "type": "reference", - "id": 1910, + "id": 1978, "name": "RuntimeFilterOp" } }, { - "id": 1909, + "id": 1977, "name": "values", "kind": 1024, "kindString": "Property", @@ -36277,7 +36839,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1786, + "line": 1790, "character": 4 } ], @@ -36312,22 +36874,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1907, - 1908, - 1909 + 1975, + 1976, + 1977 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1772, + "line": 1776, "character": 17 } ] }, { - "id": 2822, + "id": 2904, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -36337,7 +36899,7 @@ }, "children": [ { - "id": 2823, + "id": 2905, "name": "name", "kind": 1024, "kindString": "Property", @@ -36348,7 +36910,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1796, + "line": 1800, "character": 4 } ], @@ -36358,7 +36920,7 @@ } }, { - "id": 2824, + "id": 2906, "name": "value", "kind": 1024, "kindString": "Property", @@ -36369,7 +36931,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1800, + "line": 1804, "character": 4 } ], @@ -36397,21 +36959,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2823, - 2824 + 2905, + 2906 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1792, + "line": 1796, "character": 17 } ] }, { - "id": 2462, + "id": 2539, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -36431,7 +36993,7 @@ }, "children": [ { - "id": 2491, + "id": 2568, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -36462,20 +37024,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2492, + "id": 2569, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2493, + "id": 2570, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2494, + "id": 2571, "name": "key", "kind": 32768, "flags": {}, @@ -36511,7 +37073,7 @@ } }, { - "id": 2479, + "id": 2556, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -36553,7 +37115,7 @@ } }, { - "id": 2476, + "id": 2553, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -36583,7 +37145,7 @@ ], "type": { "type": "reference", - "id": 2235, + "id": 2304, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -36592,7 +37154,7 @@ } }, { - "id": 2508, + "id": 2585, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -36609,7 +37171,7 @@ }, { "tag": "example", - "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\n// Use supported embed types such as AppEmbed or LiveboardEmbed\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n name: 'customAction', \n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n } \n ]\n})\n```\n" + "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\n// Use supported embed types such as AppEmbed or LiveboardEmbed\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n name: 'customAction',\n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n }\n ]\n})\n```\n" } ] }, @@ -36633,7 +37195,7 @@ } }, { - "id": 2495, + "id": 2572, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -36662,7 +37224,7 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2721, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -36671,7 +37233,7 @@ } }, { - "id": 2480, + "id": 2557, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -36688,7 +37250,7 @@ }, { "tag": "version", - "text": "SDK: 1.43.0 | ThoughtSpot Cloud: 10.14.0.cl" + "text": "SDK: 1.41.1 | ThoughtSpot Cloud: 10.14.0.cl" }, { "tag": "example", @@ -36713,7 +37275,7 @@ } }, { - "id": 2472, + "id": 2549, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -36736,7 +37298,7 @@ } }, { - "id": 2503, + "id": 2580, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -36774,7 +37336,7 @@ } }, { - "id": 2467, + "id": 2544, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -36803,7 +37365,7 @@ } }, { - "id": 2487, + "id": 2564, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -36841,7 +37403,7 @@ } }, { - "id": 2486, + "id": 2563, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -36873,7 +37435,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -36883,7 +37445,7 @@ } }, { - "id": 2499, + "id": 2576, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -36924,7 +37486,7 @@ } }, { - "id": 2481, + "id": 2558, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -36966,7 +37528,7 @@ } }, { - "id": 2500, + "id": 2577, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -37004,7 +37566,7 @@ } }, { - "id": 2477, + "id": 2554, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -37042,7 +37604,7 @@ } }, { - "id": 2478, + "id": 2555, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -37080,7 +37642,7 @@ } }, { - "id": 2502, + "id": 2579, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -37117,7 +37679,7 @@ } }, { - "id": 2483, + "id": 2560, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -37147,7 +37709,7 @@ ], "type": { "type": "reference", - "id": 2598, + "id": 2680, "name": "FrameParams" }, "inheritedFrom": { @@ -37156,7 +37718,7 @@ } }, { - "id": 2488, + "id": 2565, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -37192,7 +37754,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -37202,7 +37764,7 @@ } }, { - "id": 2469, + "id": 2546, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -37231,7 +37793,7 @@ } }, { - "id": 2466, + "id": 2543, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -37260,7 +37822,7 @@ } }, { - "id": 2471, + "id": 2548, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -37294,7 +37856,7 @@ } }, { - "id": 2465, + "id": 2542, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -37327,7 +37889,7 @@ } }, { - "id": 2468, + "id": 2545, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -37356,7 +37918,7 @@ } }, { - "id": 2496, + "id": 2573, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -37394,7 +37956,118 @@ } }, { - "id": 2505, + "id": 2588, + "name": "interceptTimeout", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6171, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.interceptTimeout" + } + }, + { + "id": 2587, + "name": "interceptUrls", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6154, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.interceptUrls" + } + }, + { + "id": 2586, + "name": "isOnBeforeGetVizDataInterceptEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6138, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.isOnBeforeGetVizDataInterceptEnabled" + } + }, + { + "id": 2582, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -37432,7 +38105,7 @@ } }, { - "id": 2490, + "id": 2567, "name": "locale", "kind": 1024, "kindString": "Property", @@ -37470,7 +38143,7 @@ } }, { - "id": 2504, + "id": 2581, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -37508,7 +38181,7 @@ } }, { - "id": 2498, + "id": 2575, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -37546,7 +38219,7 @@ } }, { - "id": 2474, + "id": 2551, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -37578,7 +38251,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1974, "name": "RuntimeFilter" } }, @@ -37588,7 +38261,7 @@ } }, { - "id": 2475, + "id": 2552, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -37620,7 +38293,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2904, "name": "RuntimeParameter" } }, @@ -37630,7 +38303,7 @@ } }, { - "id": 2473, + "id": 2550, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -37664,7 +38337,7 @@ } }, { - "id": 2507, + "id": 2584, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -37701,7 +38374,7 @@ } }, { - "id": 2463, + "id": 2540, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -37730,7 +38403,7 @@ } }, { - "id": 2470, + "id": 2547, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -37759,7 +38432,7 @@ } }, { - "id": 2489, + "id": 2566, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -37795,7 +38468,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -37810,42 +38483,45 @@ "title": "Properties", "kind": 1024, "children": [ - 2491, - 2479, - 2476, - 2508, - 2495, - 2480, - 2472, - 2503, - 2467, - 2487, - 2486, - 2499, - 2481, - 2500, - 2477, - 2478, - 2502, - 2483, - 2488, - 2469, - 2466, - 2471, - 2465, - 2468, - 2496, - 2505, - 2490, - 2504, - 2498, - 2474, - 2475, - 2473, - 2507, - 2463, - 2470, - 2489 + 2568, + 2556, + 2553, + 2585, + 2572, + 2557, + 2549, + 2580, + 2544, + 2564, + 2563, + 2576, + 2558, + 2577, + 2554, + 2555, + 2579, + 2560, + 2565, + 2546, + 2543, + 2548, + 2542, + 2545, + 2573, + 2588, + 2587, + 2586, + 2582, + 2567, + 2581, + 2575, + 2551, + 2552, + 2550, + 2584, + 2540, + 2547, + 2566 ] } ], @@ -37899,7 +38575,7 @@ ] }, { - "id": 2345, + "id": 2416, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -37914,7 +38590,7 @@ }, "children": [ { - "id": 2360, + "id": 2431, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -37945,20 +38621,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2361, + "id": 2432, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2362, + "id": 2433, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2363, + "id": 2434, "name": "key", "kind": 32768, "flags": {}, @@ -37994,7 +38670,7 @@ } }, { - "id": 2384, + "id": 2458, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -38036,7 +38712,7 @@ } }, { - "id": 2381, + "id": 2455, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -38066,7 +38742,7 @@ ], "type": { "type": "reference", - "id": 2235, + "id": 2304, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -38075,7 +38751,7 @@ } }, { - "id": 2378, + "id": 2449, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -38092,7 +38768,7 @@ }, { "tag": "example", - "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\n// Use supported embed types such as AppEmbed or LiveboardEmbed\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n name: 'customAction', \n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n } \n ]\n})\n```\n" + "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\n// Use supported embed types such as AppEmbed or LiveboardEmbed\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n name: 'customAction',\n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n }\n ]\n})\n```\n" } ] }, @@ -38116,7 +38792,7 @@ } }, { - "id": 2364, + "id": 2435, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -38145,7 +38821,7 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2721, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -38154,7 +38830,7 @@ } }, { - "id": 2385, + "id": 2459, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -38171,7 +38847,7 @@ }, { "tag": "version", - "text": "SDK: 1.43.0 | ThoughtSpot Cloud: 10.14.0.cl" + "text": "SDK: 1.41.1 | ThoughtSpot Cloud: 10.14.0.cl" }, { "tag": "example", @@ -38196,7 +38872,7 @@ } }, { - "id": 2347, + "id": 2418, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -38230,7 +38906,7 @@ } }, { - "id": 2346, + "id": 2417, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -38271,7 +38947,7 @@ } }, { - "id": 2372, + "id": 2443, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -38309,7 +38985,7 @@ } }, { - "id": 2356, + "id": 2427, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -38347,7 +39023,7 @@ } }, { - "id": 2355, + "id": 2426, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -38379,7 +39055,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -38389,7 +39065,7 @@ } }, { - "id": 2368, + "id": 2439, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -38430,7 +39106,7 @@ } }, { - "id": 2386, + "id": 2460, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -38472,7 +39148,7 @@ } }, { - "id": 2369, + "id": 2440, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -38510,7 +39186,7 @@ } }, { - "id": 2382, + "id": 2456, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -38548,7 +39224,7 @@ } }, { - "id": 2383, + "id": 2457, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -38586,7 +39262,7 @@ } }, { - "id": 2350, + "id": 2421, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -38620,7 +39296,7 @@ } }, { - "id": 2371, + "id": 2442, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -38657,7 +39333,7 @@ } }, { - "id": 2352, + "id": 2423, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -38687,7 +39363,7 @@ ], "type": { "type": "reference", - "id": 2598, + "id": 2680, "name": "FrameParams" }, "inheritedFrom": { @@ -38696,7 +39372,7 @@ } }, { - "id": 2357, + "id": 2428, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -38732,7 +39408,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -38742,7 +39418,7 @@ } }, { - "id": 2365, + "id": 2436, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -38780,7 +39456,118 @@ } }, { - "id": 2374, + "id": 2452, + "name": "interceptTimeout", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6171, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseViewConfig.interceptTimeout" + } + }, + { + "id": 2451, + "name": "interceptUrls", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6154, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseViewConfig.interceptUrls" + } + }, + { + "id": 2450, + "name": "isOnBeforeGetVizDataInterceptEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6138, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseViewConfig.isOnBeforeGetVizDataInterceptEnabled" + } + }, + { + "id": 2445, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -38818,7 +39605,7 @@ } }, { - "id": 2359, + "id": 2430, "name": "locale", "kind": 1024, "kindString": "Property", @@ -38856,7 +39643,7 @@ } }, { - "id": 2373, + "id": 2444, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -38894,7 +39681,7 @@ } }, { - "id": 2367, + "id": 2438, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -38932,7 +39719,7 @@ } }, { - "id": 2375, + "id": 2446, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -38970,7 +39757,7 @@ } }, { - "id": 2379, + "id": 2453, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -39002,7 +39789,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1974, "name": "RuntimeFilter" } }, @@ -39012,7 +39799,7 @@ } }, { - "id": 2380, + "id": 2454, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -39044,7 +39831,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2904, "name": "RuntimeParameter" } }, @@ -39054,7 +39841,7 @@ } }, { - "id": 2349, + "id": 2420, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -39088,7 +39875,7 @@ } }, { - "id": 2377, + "id": 2448, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -39125,7 +39912,7 @@ } }, { - "id": 2348, + "id": 2419, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -39159,7 +39946,7 @@ } }, { - "id": 2358, + "id": 2429, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -39195,7 +39982,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -39210,38 +39997,41 @@ "title": "Properties", "kind": 1024, "children": [ - 2360, - 2384, - 2381, - 2378, - 2364, - 2385, - 2347, - 2346, - 2372, - 2356, - 2355, - 2368, - 2386, - 2369, - 2382, - 2383, - 2350, - 2371, - 2352, - 2357, - 2365, - 2374, - 2359, - 2373, - 2367, - 2375, - 2379, - 2380, - 2349, - 2377, - 2348, - 2358 + 2431, + 2458, + 2455, + 2449, + 2435, + 2459, + 2418, + 2417, + 2443, + 2427, + 2426, + 2439, + 2460, + 2440, + 2456, + 2457, + 2421, + 2442, + 2423, + 2428, + 2436, + 2452, + 2451, + 2450, + 2445, + 2430, + 2444, + 2438, + 2446, + 2453, + 2454, + 2420, + 2448, + 2419, + 2429 ] } ], @@ -39264,7 +40054,7 @@ ] }, { - "id": 2291, + "id": 2360, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -39280,7 +40070,7 @@ }, "children": [ { - "id": 2327, + "id": 2395, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -39311,20 +40101,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2328, + "id": 2396, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2329, + "id": 2397, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2330, + "id": 2398, "name": "key", "kind": 32768, "flags": {}, @@ -39360,7 +40150,7 @@ } }, { - "id": 2303, + "id": 2372, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -39384,7 +40174,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 249, + "line": 250, "character": 4 } ], @@ -39394,7 +40184,7 @@ } }, { - "id": 2293, + "id": 2362, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -39418,7 +40208,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 102, + "line": 103, "character": 4 } ], @@ -39428,7 +40218,7 @@ } }, { - "id": 2292, + "id": 2361, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -39452,7 +40242,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 87, + "line": 88, "character": 4 } ], @@ -39462,7 +40252,7 @@ } }, { - "id": 2315, + "id": 2383, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -39504,7 +40294,7 @@ } }, { - "id": 2306, + "id": 2375, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -39531,7 +40321,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 278, + "line": 279, "character": 4 } ], @@ -39541,7 +40331,7 @@ } }, { - "id": 2312, + "id": 2380, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -39571,7 +40361,7 @@ ], "type": { "type": "reference", - "id": 2235, + "id": 2304, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -39580,7 +40370,7 @@ } }, { - "id": 2344, + "id": 2412, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -39597,7 +40387,7 @@ }, { "tag": "example", - "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\n// Use supported embed types such as AppEmbed or LiveboardEmbed\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n name: 'customAction', \n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n } \n ]\n})\n```\n" + "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\n// Use supported embed types such as AppEmbed or LiveboardEmbed\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n name: 'customAction',\n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n }\n ]\n})\n```\n" } ] }, @@ -39621,7 +40411,7 @@ } }, { - "id": 2331, + "id": 2399, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -39650,7 +40440,7 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2721, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -39659,7 +40449,7 @@ } }, { - "id": 2308, + "id": 2376, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -39687,7 +40477,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 306, + "line": 300, "character": 4 } ], @@ -39697,7 +40487,7 @@ } }, { - "id": 2316, + "id": 2384, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -39714,7 +40504,7 @@ }, { "tag": "version", - "text": "SDK: 1.43.0 | ThoughtSpot Cloud: 10.14.0.cl" + "text": "SDK: 1.41.1 | ThoughtSpot Cloud: 10.14.0.cl" }, { "tag": "example", @@ -39739,7 +40529,7 @@ } }, { - "id": 2299, + "id": 2368, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -39763,7 +40553,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 189, + "line": 190, "character": 4 } ], @@ -39773,7 +40563,7 @@ } }, { - "id": 2298, + "id": 2367, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -39796,7 +40586,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 175, + "line": 176, "character": 4 } ], @@ -39809,7 +40599,7 @@ } }, { - "id": 2339, + "id": 2407, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -39847,7 +40637,7 @@ } }, { - "id": 2323, + "id": 2391, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -39885,7 +40675,7 @@ } }, { - "id": 2322, + "id": 2390, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -39917,7 +40707,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -39927,7 +40717,7 @@ } }, { - "id": 2335, + "id": 2403, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -39968,7 +40758,7 @@ } }, { - "id": 2317, + "id": 2385, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -40010,7 +40800,7 @@ } }, { - "id": 2296, + "id": 2365, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -40034,7 +40824,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 146, + "line": 147, "character": 4 } ], @@ -40044,7 +40834,7 @@ } }, { - "id": 2336, + "id": 2404, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -40082,7 +40872,7 @@ } }, { - "id": 2313, + "id": 2381, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -40120,7 +40910,7 @@ } }, { - "id": 2314, + "id": 2382, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -40158,7 +40948,7 @@ } }, { - "id": 2302, + "id": 2371, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -40182,7 +40972,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 235, + "line": 236, "character": 4 } ], @@ -40192,7 +40982,7 @@ } }, { - "id": 2338, + "id": 2406, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -40229,7 +41019,7 @@ } }, { - "id": 2309, + "id": 2377, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -40257,7 +41047,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 322, + "line": 316, "character": 4 } ], @@ -40267,7 +41057,7 @@ } }, { - "id": 2297, + "id": 2366, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -40291,7 +41081,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 160, + "line": 161, "character": 4 } ], @@ -40301,7 +41091,7 @@ } }, { - "id": 2319, + "id": 2387, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -40331,7 +41121,7 @@ ], "type": { "type": "reference", - "id": 2598, + "id": 2680, "name": "FrameParams" }, "inheritedFrom": { @@ -40340,7 +41130,7 @@ } }, { - "id": 2324, + "id": 2392, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -40376,7 +41166,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -40386,7 +41176,7 @@ } }, { - "id": 2294, + "id": 2363, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -40410,7 +41200,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 116, + "line": 117, "character": 4 } ], @@ -40420,7 +41210,7 @@ } }, { - "id": 2295, + "id": 2364, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -40444,7 +41234,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 132, + "line": 133, "character": 4 } ], @@ -40454,7 +41244,7 @@ } }, { - "id": 2304, + "id": 2373, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -40478,7 +41268,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 264, + "line": 265, "character": 4 } ], @@ -40488,7 +41278,7 @@ } }, { - "id": 2332, + "id": 2400, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -40526,7 +41316,84 @@ } }, { - "id": 2307, + "id": 2415, + "name": "interceptTimeout", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6171, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.interceptTimeout" + } + }, + { + "id": 2414, + "name": "interceptUrls", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6154, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.interceptUrls" + } + }, + { + "id": 2413, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -40534,29 +41401,33 @@ "isOptional": true }, "comment": { - "shortText": "Flag to enable onBeforeSearchExecute Embed Event", - "text": "Supported embed types: `SearchEmbed`", + "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", "tags": [ { - "tag": "version:", - "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 285, + "fileName": "types.ts", + "line": 6138, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.isOnBeforeGetVizDataInterceptEnabled" } }, { - "id": 2341, + "id": 2409, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -40594,7 +41465,7 @@ } }, { - "id": 2326, + "id": 2394, "name": "locale", "kind": 1024, "kindString": "Property", @@ -40632,7 +41503,7 @@ } }, { - "id": 2340, + "id": 2408, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -40670,7 +41541,7 @@ } }, { - "id": 2334, + "id": 2402, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -40708,7 +41579,7 @@ } }, { - "id": 2310, + "id": 2378, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -40740,7 +41611,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1974, "name": "RuntimeFilter" } }, @@ -40750,7 +41621,7 @@ } }, { - "id": 2311, + "id": 2379, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -40782,7 +41653,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2904, "name": "RuntimeParameter" } }, @@ -40792,7 +41663,7 @@ } }, { - "id": 2301, + "id": 2370, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -40812,7 +41683,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 217, + "line": 218, "character": 4 } ], @@ -40822,7 +41693,7 @@ } }, { - "id": 2300, + "id": 2369, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -40841,7 +41712,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 196, + "line": 197, "character": 4 } ], @@ -40851,7 +41722,7 @@ } }, { - "id": 2343, + "id": 2411, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -40888,7 +41759,7 @@ } }, { - "id": 2305, + "id": 2374, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -40908,7 +41779,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 271, + "line": 272, "character": 4 } ], @@ -40918,7 +41789,7 @@ } }, { - "id": 2325, + "id": 2393, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -40954,7 +41825,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -40969,57 +41840,59 @@ "title": "Properties", "kind": 1024, "children": [ - 2327, - 2303, - 2293, - 2292, - 2315, - 2306, - 2312, - 2344, - 2331, - 2308, - 2316, - 2299, - 2298, - 2339, - 2323, - 2322, - 2335, - 2317, - 2296, - 2336, - 2313, - 2314, - 2302, - 2338, - 2309, - 2297, - 2319, - 2324, - 2294, - 2295, - 2304, - 2332, - 2307, - 2341, - 2326, - 2340, - 2334, - 2310, - 2311, - 2301, - 2300, - 2343, - 2305, - 2325 + 2395, + 2372, + 2362, + 2361, + 2383, + 2375, + 2380, + 2412, + 2399, + 2376, + 2384, + 2368, + 2367, + 2407, + 2391, + 2390, + 2403, + 2385, + 2365, + 2404, + 2381, + 2382, + 2371, + 2406, + 2377, + 2366, + 2387, + 2392, + 2363, + 2364, + 2373, + 2400, + 2415, + 2414, + 2413, + 2409, + 2394, + 2408, + 2402, + 2378, + 2379, + 2370, + 2369, + 2411, + 2374, + 2393 ] } ], "sources": [ { "fileName": "embed/search.ts", - "line": 71, + "line": 72, "character": 17 } ], @@ -41045,14 +41918,14 @@ ] }, { - "id": 1875, + "id": 1943, "name": "SessionInterface", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1878, + "id": 1946, "name": "acSession", "kind": 1024, "kindString": "Property", @@ -41067,14 +41940,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1879, + "id": 1947, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1881, + "id": 1949, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -41092,7 +41965,7 @@ } }, { - "id": 1880, + "id": 1948, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -41115,8 +41988,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1881, - 1880 + 1949, + 1948 ] } ] @@ -41124,7 +41997,7 @@ } }, { - "id": 1877, + "id": 1945, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -41142,7 +42015,7 @@ } }, { - "id": 1876, + "id": 1944, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -41165,9 +42038,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1878, - 1877, - 1876 + 1946, + 1945, + 1944 ] } ], @@ -41180,7 +42053,7 @@ ] }, { - "id": 1231, + "id": 1273, "name": "SpotterAgentEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -41196,7 +42069,7 @@ }, "children": [ { - "id": 1242, + "id": 1284, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -41227,20 +42100,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1243, + "id": 1285, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1244, + "id": 1286, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1245, + "id": 1287, "name": "key", "kind": 32768, "flags": {}, @@ -41276,7 +42149,7 @@ } }, { - "id": 1259, + "id": 1301, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -41293,7 +42166,7 @@ }, { "tag": "example", - "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\n// Use supported embed types such as AppEmbed or LiveboardEmbed\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n name: 'customAction', \n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n } \n ]\n})\n```\n" + "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\n// Use supported embed types such as AppEmbed or LiveboardEmbed\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n name: 'customAction',\n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n }\n ]\n})\n```\n" } ] }, @@ -41317,7 +42190,7 @@ } }, { - "id": 1246, + "id": 1288, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -41346,7 +42219,7 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2721, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -41355,7 +42228,7 @@ } }, { - "id": 1254, + "id": 1296, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -41393,7 +42266,7 @@ } }, { - "id": 1238, + "id": 1280, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -41431,7 +42304,7 @@ } }, { - "id": 1237, + "id": 1279, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -41463,7 +42336,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -41473,7 +42346,7 @@ } }, { - "id": 1250, + "id": 1292, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -41514,7 +42387,7 @@ } }, { - "id": 1251, + "id": 1293, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -41552,7 +42425,7 @@ } }, { - "id": 1253, + "id": 1295, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -41589,7 +42462,7 @@ } }, { - "id": 1234, + "id": 1276, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -41619,7 +42492,7 @@ ], "type": { "type": "reference", - "id": 2598, + "id": 2680, "name": "FrameParams" }, "inheritedFrom": { @@ -41628,7 +42501,7 @@ } }, { - "id": 1239, + "id": 1281, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -41664,7 +42537,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -41674,7 +42547,7 @@ } }, { - "id": 1247, + "id": 1289, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -41712,7 +42585,118 @@ } }, { - "id": 1256, + "id": 1304, + "name": "interceptTimeout", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6171, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.interceptTimeout" + } + }, + { + "id": 1303, + "name": "interceptUrls", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6154, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.interceptUrls" + } + }, + { + "id": 1302, + "name": "isOnBeforeGetVizDataInterceptEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6138, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.isOnBeforeGetVizDataInterceptEnabled" + } + }, + { + "id": 1298, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -41750,7 +42734,7 @@ } }, { - "id": 1241, + "id": 1283, "name": "locale", "kind": 1024, "kindString": "Property", @@ -41788,7 +42772,7 @@ } }, { - "id": 1255, + "id": 1297, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -41826,7 +42810,7 @@ } }, { - "id": 1249, + "id": 1291, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -41864,7 +42848,7 @@ } }, { - "id": 1258, + "id": 1300, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -41901,7 +42885,7 @@ } }, { - "id": 1240, + "id": 1282, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -41937,7 +42921,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -41947,7 +42931,7 @@ } }, { - "id": 1232, + "id": 1274, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -41973,25 +42957,28 @@ "title": "Properties", "kind": 1024, "children": [ - 1242, - 1259, - 1246, - 1254, - 1238, - 1237, - 1250, - 1251, - 1253, - 1234, - 1239, - 1247, - 1256, - 1241, - 1255, - 1249, - 1258, - 1240, - 1232 + 1284, + 1301, + 1288, + 1296, + 1280, + 1279, + 1292, + 1293, + 1295, + 1276, + 1281, + 1289, + 1304, + 1303, + 1302, + 1298, + 1283, + 1297, + 1291, + 1300, + 1282, + 1274 ] } ], @@ -42021,13 +43008,13 @@ "extendedBy": [ { "type": "reference", - "id": 1260, + "id": 1305, "name": "BodylessConversationViewConfig" } ] }, { - "id": 1486, + "id": 1541, "name": "SpotterEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -42043,7 +43030,7 @@ }, "children": [ { - "id": 1508, + "id": 1563, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -42074,20 +43061,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1509, + "id": 1564, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1510, + "id": 1565, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1511, + "id": 1566, "name": "key", "kind": 32768, "flags": {}, @@ -42123,7 +43110,7 @@ } }, { - "id": 1525, + "id": 1580, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -42140,7 +43127,7 @@ }, { "tag": "example", - "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\n// Use supported embed types such as AppEmbed or LiveboardEmbed\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n name: 'customAction', \n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n } \n ]\n})\n```\n" + "text": "\n```js\nimport { CustomActionPosition, CustomActionTarget } from '@thoughtspot/visual-embed-sdk';\n// Use supported embed types such as AppEmbed or LiveboardEmbed\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n name: 'customAction',\n id: 'customAction',\n target: CustomActionTarget.VISUALIZATION,\n position: CustomActionPosition.PRIMARY,\n }\n }\n ]\n})\n```\n" } ] }, @@ -42164,7 +43151,7 @@ } }, { - "id": 1512, + "id": 1567, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -42193,7 +43180,7 @@ ], "type": { "type": "reference", - "id": 2639, + "id": 2721, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -42202,7 +43189,7 @@ } }, { - "id": 1491, + "id": 1546, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -42219,7 +43206,7 @@ }, { "tag": "version", - "text": "SDK: 1.43.0 | ThoughtSpot Cloud: 10.14.0.cl" + "text": "SDK: 1.41.1 | ThoughtSpot Cloud: 10.14.0.cl" }, { "tag": "example", @@ -42240,7 +43227,7 @@ } }, { - "id": 1520, + "id": 1575, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -42278,7 +43265,7 @@ } }, { - "id": 1489, + "id": 1544, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -42312,7 +43299,7 @@ } }, { - "id": 1504, + "id": 1559, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -42350,7 +43337,7 @@ } }, { - "id": 1503, + "id": 1558, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -42382,7 +43369,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -42392,7 +43379,7 @@ } }, { - "id": 1516, + "id": 1571, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -42433,7 +43420,7 @@ } }, { - "id": 1498, + "id": 1553, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -42471,7 +43458,7 @@ } }, { - "id": 1517, + "id": 1572, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -42509,7 +43496,7 @@ } }, { - "id": 1495, + "id": 1550, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -42543,7 +43530,7 @@ } }, { - "id": 1497, + "id": 1552, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -42577,7 +43564,7 @@ } }, { - "id": 1519, + "id": 1574, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -42614,7 +43601,7 @@ } }, { - "id": 1500, + "id": 1555, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -42644,7 +43631,7 @@ ], "type": { "type": "reference", - "id": 2598, + "id": 2680, "name": "FrameParams" }, "inheritedFrom": { @@ -42653,7 +43640,7 @@ } }, { - "id": 1505, + "id": 1560, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -42689,7 +43676,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -42699,7 +43686,7 @@ } }, { - "id": 1493, + "id": 1548, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -42733,7 +43720,7 @@ } }, { - "id": 1490, + "id": 1545, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -42767,7 +43754,7 @@ } }, { - "id": 1513, + "id": 1568, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -42805,7 +43792,118 @@ } }, { - "id": 1522, + "id": 1583, + "name": "interceptTimeout", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The timeout for the intercept, default is 30000ms\nthe api will error out if the timeout is reached", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.ALL],\n interceptTimeout: 1000,\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6171, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.interceptTimeout" + } + }, + { + "id": 1582, + "name": "interceptUrls", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This allows to intercept the urls passed, once intercepted the api will only\nrun based on the reponse from the responder of ApiIntercept event.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ...viewConfig,\n enableApiIntercept: true,\n interceptUrls: [InterceptedApiType.DATA],\n})\n```\n" + }, + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6154, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.interceptUrls" + } + }, + { + "id": 1581, + "name": "isOnBeforeGetVizDataInterceptEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "text": "Can be used for Serach and App Embed from SDK 1.29.0\n", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.43.0 | ThoughtSpot: 10.15.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 6138, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.isOnBeforeGetVizDataInterceptEnabled" + } + }, + { + "id": 1577, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -42843,7 +43941,7 @@ } }, { - "id": 1507, + "id": 1562, "name": "locale", "kind": 1024, "kindString": "Property", @@ -42881,7 +43979,7 @@ } }, { - "id": 1521, + "id": 1576, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -42919,7 +44017,7 @@ } }, { - "id": 1515, + "id": 1570, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -42957,7 +44055,7 @@ } }, { - "id": 1494, + "id": 1549, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -42989,13 +44087,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1906, + "id": 1974, "name": "RuntimeFilter" } } }, { - "id": 1496, + "id": 1551, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -43027,13 +44125,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2822, + "id": 2904, "name": "RuntimeParameter" } } }, { - "id": 1488, + "id": 1543, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -43056,7 +44154,7 @@ } }, { - "id": 1524, + "id": 1579, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -43093,7 +44191,7 @@ } }, { - "id": 1492, + "id": 1547, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -43127,7 +44225,7 @@ } }, { - "id": 1506, + "id": 1561, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -43163,7 +44261,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2097, + "id": 2166, "name": "Action" } }, @@ -43173,7 +44271,7 @@ } }, { - "id": 1487, + "id": 1542, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -43199,36 +44297,39 @@ "title": "Properties", "kind": 1024, "children": [ - 1508, - 1525, - 1512, - 1491, - 1520, - 1489, - 1504, - 1503, - 1516, - 1498, - 1517, - 1495, - 1497, - 1519, - 1500, - 1505, - 1493, - 1490, - 1513, - 1522, - 1507, - 1521, - 1515, - 1494, - 1496, - 1488, - 1524, - 1492, - 1506, - 1487 + 1563, + 1580, + 1567, + 1546, + 1575, + 1544, + 1559, + 1558, + 1571, + 1553, + 1572, + 1550, + 1552, + 1574, + 1555, + 1560, + 1548, + 1545, + 1568, + 1583, + 1582, + 1581, + 1577, + 1562, + 1576, + 1570, + 1549, + 1551, + 1543, + 1579, + 1547, + 1561, + 1542 ] } ], @@ -43258,20 +44359,20 @@ "extendedBy": [ { "type": "reference", - "id": 1526, + "id": 1584, "name": "ConversationViewConfig" } ] }, { - "id": 1882, + "id": 1950, "name": "UnderlyingDataPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1883, + "id": 1951, "name": "columnId", "kind": 1024, "kindString": "Property", @@ -43289,7 +44390,7 @@ } }, { - "id": 1884, + "id": 1952, "name": "dataValue", "kind": 1024, "kindString": "Property", @@ -43312,8 +44413,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1883, - 1884 + 1951, + 1952 ] } ], @@ -43326,14 +44427,14 @@ ] }, { - "id": 2860, + "id": 2942, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2861, + "id": 2943, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -43341,7 +44442,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5870, + "line": 5944, "character": 4 } ], @@ -43354,7 +44455,7 @@ } }, { - "id": 2862, + "id": 2944, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -43362,7 +44463,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5871, + "line": 5945, "character": 4 } ], @@ -43380,21 +44481,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2861, - 2862 + 2943, + 2944 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5869, + "line": 5943, "character": 17 } ] }, { - "id": 2652, + "id": 2734, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -43404,7 +44505,7 @@ }, "children": [ { - "id": 2654, + "id": 2736, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -43434,20 +44535,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2655, + "id": 2737, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2656, + "id": 2738, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2657, + "id": 2739, "name": "selector", "kind": 32768, "flags": {}, @@ -43460,7 +44561,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2658, + "id": 2740, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43473,14 +44574,14 @@ } ], "indexSignature": { - "id": 2659, + "id": 2741, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2660, + "id": 2742, "name": "declaration", "kind": 32768, "flags": {}, @@ -43502,7 +44603,7 @@ } }, { - "id": 2653, + "id": 2735, "name": "variables", "kind": 1024, "kindString": "Property", @@ -43521,7 +44622,7 @@ ], "type": { "type": "reference", - "id": 2661, + "id": 2743, "name": "CustomCssVariables" } } @@ -43531,8 +44632,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2654, - 2653 + 2736, + 2735 ] } ], @@ -43837,7 +44938,7 @@ ] }, { - "id": 2622, + "id": 2704, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -43864,7 +44965,7 @@ } }, { - "id": 2626, + "id": 2708, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -43872,14 +44973,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1609, + "line": 1613, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2627, + "id": 2709, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43896,13 +44997,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1609, + "line": 1613, "character": 30 } ], "signatures": [ { - "id": 2628, + "id": 2710, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43912,19 +45013,19 @@ }, "parameters": [ { - "id": 2629, + "id": 2711, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2634, + "id": 2716, "name": "MessagePayload" } }, { - "id": 2630, + "id": 2712, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -43934,7 +45035,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2631, + "id": 2713, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -43942,13 +45043,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1616, + "line": 1620, "character": 16 } ], "signatures": [ { - "id": 2632, + "id": 2714, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -43958,7 +45059,7 @@ }, "parameters": [ { - "id": 2633, + "id": 2715, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -43989,7 +45090,7 @@ } }, { - "id": 2623, + "id": 2705, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -44006,21 +45107,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1598, + "line": 1602, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2624, + "id": 2706, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2625, + "id": 2707, "name": "start", "kind": 1024, "kindString": "Property", @@ -44033,7 +45134,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1603, + "line": 1607, "character": 4 } ], @@ -44048,14 +45149,14 @@ "title": "Properties", "kind": 1024, "children": [ - 2625 + 2707 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1598, + "line": 1602, "character": 29 } ] @@ -44063,7 +45164,7 @@ } }, { - "id": 2634, + "id": 2716, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -44080,21 +45181,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1585, + "line": 1589, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2635, + "id": 2717, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2637, + "id": 2719, "name": "data", "kind": 1024, "kindString": "Property", @@ -44102,7 +45203,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1589, + "line": 1593, "character": 4 } ], @@ -44112,7 +45213,7 @@ } }, { - "id": 2638, + "id": 2720, "name": "status", "kind": 1024, "kindString": "Property", @@ -44122,7 +45223,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1591, + "line": 1595, "character": 4 } ], @@ -44132,7 +45233,7 @@ } }, { - "id": 2636, + "id": 2718, "name": "type", "kind": 1024, "kindString": "Property", @@ -44140,7 +45241,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1587, + "line": 1591, "character": 4 } ], @@ -44155,16 +45256,16 @@ "title": "Properties", "kind": 1024, "children": [ - 2637, - 2638, - 2636 + 2719, + 2720, + 2718 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1585, + "line": 1589, "character": 29 } ] @@ -44222,7 +45323,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1802, + "id": 1870, "name": "AnswerService" } } @@ -44484,7 +45585,7 @@ ], "type": { "type": "reference", - "id": 1802, + "id": 1870, "name": "AnswerService" } }, @@ -44571,7 +45672,7 @@ }, "type": { "type": "reference", - "id": 2239, + "id": 2308, "name": "EmbedConfig" } } @@ -44671,14 +45772,14 @@ }, "type": { "type": "reference", - "id": 2239, + "id": 2308, "name": "EmbedConfig" } } ], "type": { "type": "reference", - "id": 1749, + "id": 1817, "name": "AuthEventEmitter" } } @@ -44818,7 +45919,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2593, + "id": 2675, "name": "PrefetchFeatures" } } @@ -44890,7 +45991,7 @@ ] }, { - "id": 2909, + "id": 2996, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -44906,7 +46007,7 @@ ], "signatures": [ { - "id": 2910, + "id": 2997, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -45100,7 +46201,7 @@ ] }, { - "id": 2832, + "id": 2914, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -45114,7 +46215,7 @@ ], "signatures": [ { - "id": 2833, + "id": 2915, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -45124,7 +46225,7 @@ }, "parameters": [ { - "id": 2834, + "id": 2916, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -45136,7 +46237,7 @@ } }, { - "id": 2835, + "id": 2917, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -45147,7 +46248,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2836, + "id": 2918, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -45170,74 +46271,75 @@ "title": "Enumerations", "kind": 4, "children": [ - 2097, - 1747, - 1732, - 1739, - 1894, - 2235, - 2904, - 2900, - 2896, - 2093, - 1926, - 2604, - 2854, - 2848, - 2615, - 2020, - 2857, - 2890, - 2825, - 1885, - 2593, - 2852, - 1910, - 2883 + 2166, + 1815, + 1800, + 1807, + 1962, + 2304, + 2987, + 2983, + 2979, + 2162, + 1994, + 2686, + 2936, + 2930, + 2697, + 2089, + 2992, + 2939, + 2973, + 2907, + 1953, + 2675, + 2934, + 1978, + 2965 ] }, { "title": "Classes", "kind": 128, "children": [ - 1802, - 989, - 1289, - 1566, - 590, - 813, - 231, + 1870, + 1024, + 1337, + 1627, + 611, + 841, + 238, 55, - 1199, - 1320 + 1241, + 1368 ] }, { "title": "Interfaces", "kind": 256, "children": [ - 2509, - 1749, - 1260, - 1526, - 2863, - 2661, - 2649, - 2639, - 2239, - 2598, - 2387, - 1906, - 2822, - 2462, - 2345, - 2291, - 1875, - 1231, - 1486, - 1882, - 2860, - 2652, + 2589, + 1817, + 1305, + 1584, + 2945, + 2743, + 2731, + 2721, + 2308, + 2680, + 2461, + 1974, + 2904, + 2539, + 2416, + 2360, + 1943, + 1273, + 1541, + 1950, + 2942, + 2734, 21, 25 ] @@ -45246,10 +46348,10 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2622, - 2626, - 2623, - 2634 + 2704, + 2708, + 2705, + 2716 ] }, { @@ -45265,9 +46367,9 @@ 1, 4, 7, - 2909, + 2996, 37, - 2832 + 2914 ] } ],